diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d138d83eee..fcd3732236 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/javascript-node/.devcontainer/base.Dockerfile -# [Choice] Node.js version: 18 -ARG VARIANT="18" +# [Choice] Node.js version: 22 +ARG VARIANT="22" FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:1-${VARIANT} # Install chromium and point the CHROME_BIN environment variable to it diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 00526ee7ae..4e4a8440a4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,12 +21,12 @@ jobs: - windows-latest name: Run on ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 22 - uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 name: Install pnpm diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 087709e914..4d8225e4d5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,46 +1,46 @@ -name: "Publish" +name: 'Publish' on: workflow_dispatch: inputs: next_version: - type: "string" - description: "version (e.g. 3.4.0-alpha.0)" + type: 'string' + description: 'version (e.g. 3.4.0-alpha.0)' required: true skip_publish: - type: "boolean" - description: "mark in case only the version update shall be executed, skipping the release to npm" + type: 'boolean' + description: 'mark in case only the version update shall be executed, skipping the release to npm' required: true skip_push: - type: "boolean" - description: "mark in case the version update shall not be pushed back to the repository" + type: 'boolean' + description: 'mark in case the version update shall not be pushed back to the repository' required: true stable_release: - type: "boolean" - description: "mark in case this is a full stable release (flag is ignored in case publish is skipped)" + type: 'boolean' + description: 'mark in case this is a full stable release (flag is ignored in case publish is skipped)' required: true jobs: publish: permissions: - contents: "write" - id-token: "write" - runs-on: "ubuntu-latest" + contents: 'write' + id-token: 'write' + runs-on: 'ubuntu-latest' steps: - - uses: "actions/checkout@v4" + - uses: 'actions/checkout@v4' with: - token: "${{ secrets.JSONFORMS_PUBLISH_PAT }}" + token: '${{ secrets.JSONFORMS_PUBLISH_PAT }}' - - name: "Configure Git Credentials" + - name: 'Configure Git Credentials' run: | git config user.name "jsonforms-publish[bot]" git config user.email "jsonforms-publish@eclipsesource.com" - - name: "Setup node" - uses: "actions/setup-node@v3" + - name: 'Setup node' + uses: 'actions/setup-node@v4' with: - node-version: "18" - registry-url: "https://registry.npmjs.org" + node-version: '22' + registry-url: 'https://registry.npmjs.org' - uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 name: Install pnpm @@ -48,19 +48,19 @@ jobs: with: run_install: false - - name: "Install Packages" - run: "pnpm i --frozen-lockfile" + - name: 'Install Packages' + run: 'pnpm i --frozen-lockfile' - - name: "Build" - run: "pnpm run build" + - name: 'Build' + run: 'pnpm run build' - - name: "Test" - run: "pnpm run test" + - name: 'Test' + run: 'pnpm run test' - - name: "Versioning" - run: "pnpm exec lerna version ${{ github.event.inputs.next_version }} --no-push --force-publish --yes" + - name: 'Versioning' + run: 'pnpm exec lerna version ${{ github.event.inputs.next_version }} --no-push --force-publish --yes' - - name: "Adjust PeerDependencies" + - name: 'Adjust PeerDependencies' run: | cd packages/angular && pnpm pkg set peerDependencies.@jsonforms/core="${{ github.event.inputs.next_version }}" cd ../angular-material && pnpm pkg set peerDependencies.@jsonforms/core="${{ github.event.inputs.next_version }}" && pnpm pkg set peerDependencies.@jsonforms/angular="${{ github.event.inputs.next_version }}" @@ -72,20 +72,20 @@ jobs: cd ../vue-vanilla && pnpm pkg set peerDependencies.@jsonforms/core="${{ github.event.inputs.next_version }}" && pnpm pkg set peerDependencies.@jsonforms/vue="${{ github.event.inputs.next_version }}" cd ../vue-vuetify && pnpm pkg set peerDependencies.@jsonforms/core="${{ github.event.inputs.next_version }}" && pnpm pkg set peerDependencies.@jsonforms/vue="${{ github.event.inputs.next_version }}" - - name: "Tag and Commit" + - name: 'Tag and Commit' run: | git add -A && git commit --amend --no-edit git tag v${{ github.event.inputs.next_version }} -f - - name: "push" - if: "github.event.inputs.skip_push == 'false'" + - name: 'push' + if: github.event.inputs.skip_push == 'false' run: | git push git push origin v${{ github.event.inputs.next_version }} - - name: "Publish to npm" - if: "github.event.inputs.skip_publish == 'false'" + - name: 'Publish to npm' + if: github.event.inputs.skip_publish == 'false' run: "pnpm publish --recursive ${{ github.event.inputs.stable_release == 'true' && ' ' || '--tag next' }}" env: - NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" - NPM_CONFIG_PROVENANCE: "true" + NODE_AUTH_TOKEN: '${{ secrets.NPM_TOKEN }}' + NPM_CONFIG_PROVENANCE: 'true' diff --git a/README.md b/README.md index 8f03d753d4..31741d36bf 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Independently of the assigned milestone, contributions are always accepted and a ### First time setup -- Install [node.js](https://nodejs.org/) (only Node v18.19+ < 19 is currently supported) +- Install [node.js](https://nodejs.org/) (only Node v22+ < 23 is currently supported) - Install pnpm: (use pnpm 10.4.1+) or use [corepack](https://nodejs.org/docs/latest-v18.x/api/corepack.html) to enable the recommended version - Clone this repository - Install dependencies: `pnpm i --frozen-lockfile` diff --git a/package.json b/package.json index 0ff91b29b1..93cbb9ac06 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "jsonforms-monorepo", "engines": { - "node": "^18.19.0", + "node": "^22", "pnpm": "^10.4.1" }, - "packageManager": "pnpm@10.4.1+sha256.4b702887986995933d4300836b04d6d02a43bc72b52e4f7e93a4ca608b959197", + "packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b", "scripts": { "lerna": "lerna", "preparePublish": "git clean -dfx && pnpm i --frozen-lockfile && pnpm run clean && pnpm run build && pnpm run doc && pnpm run test", diff --git a/packages/angular-material/package.json b/packages/angular-material/package.json index 634ddcfdc0..33c79334c5 100644 --- a/packages/angular-material/package.json +++ b/packages/angular-material/package.json @@ -103,7 +103,7 @@ "@ngtools/webpack": "^18.0.0", "@types/jasmine": "~3.8.0", "@types/lodash": "4.14.149", - "@types/node": "^18.19.4", + "@types/node": "^22.13.8", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "babel-loader": "^8.0.6", diff --git a/packages/examples/package.json b/packages/examples/package.json index 87c4d6c868..3e28096c0a 100644 --- a/packages/examples/package.json +++ b/packages/examples/package.json @@ -51,7 +51,7 @@ }, "devDependencies": { "@jsonforms/core": "workspace:*", - "@types/node": "^18.19.4", + "@types/node": "^22.13.8", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "eslint": "^8.56.0", diff --git a/packages/vue-vanilla/package.json b/packages/vue-vanilla/package.json index f33f699234..94b7a45ec2 100644 --- a/packages/vue-vanilla/package.json +++ b/packages/vue-vanilla/package.json @@ -60,7 +60,7 @@ "@types/chai": "^4.2.11", "@types/jest": "^27.4.1", "@types/mocha": "^5.2.4", - "@types/node": "^18.19.4", + "@types/node": "^22.13.8", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "@vue/cli-plugin-babel": "~5.0.8", diff --git a/packages/vue-vuetify/package.json b/packages/vue-vuetify/package.json index 2571836abe..86aa5afa36 100644 --- a/packages/vue-vuetify/package.json +++ b/packages/vue-vuetify/package.json @@ -77,7 +77,7 @@ "@tsconfig/node20": "^20.1.4", "@types/jsdom": "^21.1.6", "@types/lodash": "^4.14.172", - "@types/node": "^20.12.5", + "@types/node": "^22.13.8", "@types/splitpanes": "^2.2.6", "@vitejs/plugin-vue": "^5.0.4", "@vitest/coverage-v8": "^1.6.0", diff --git a/packages/vue/package.json b/packages/vue/package.json index a1720ae882..daa8efa0b9 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -53,7 +53,7 @@ "@jsonforms/core": "workspace:*", "@rollup/plugin-alias": "^3.1.8", "@types/jest": "^27.4.1", - "@types/node": "^18.19.4", + "@types/node": "^22.13.8", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "@vue/cli-plugin-babel": "~5.0.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bf833409e3..27fff02da9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,10 +10,10 @@ importers: devDependencies: '@angular/cli': specifier: ^18.0.0 - version: 18.2.12 + version: 18.2.12(chokidar@3.6.0) '@angular/core': specifier: ^18.0.0 - version: 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) + version: 18.2.13(rxjs@7.8.1)(zone.js@0.14.10) '@babel/plugin-proposal-nullish-coalescing-operator': specifier: ^7.16.5 version: 7.18.6(@babel/core@7.25.2) @@ -58,7 +58,7 @@ importers: version: 3.3.0 lerna: specifier: ^6.6.2 - version: 6.6.2 + version: 6.6.2(encoding@0.1.13) nan: specifier: ^2.14.2 version: 2.19.0 @@ -79,7 +79,7 @@ importers: version: 9.5.1(typescript@5.5.4)(webpack@5.91.0) ts-node: specifier: ^10.4.0 - version: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) + version: 10.9.2(@types/node@22.13.8)(typescript@5.5.4) tslib: specifier: ^2.5.0 version: 2.6.2 @@ -101,40 +101,40 @@ importers: devDependencies: '@angular-eslint/eslint-plugin': specifier: ^18.0.0 - version: 18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + version: 18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@angular-eslint/eslint-plugin-template': specifier: ^18.0.0 - version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@angular-eslint/schematics': specifier: ^18.0.0 - version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(chokidar@3.6.0)(eslint@8.57.0)(typescript@5.5.4) '@angular-eslint/template-parser': specifier: ^18.0.0 version: 18.4.3(eslint@8.57.0)(typescript@5.5.4) '@angular/compiler': specifier: ^18.0.0 - version: 18.2.13(@angular/core@18.2.13) + version: 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) '@angular/compiler-cli': specifier: ^18.0.0 - version: 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + version: 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) '@angular/core': specifier: ^18.0.0 version: 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) '@angular/forms': specifier: ^18.0.0 - version: 18.2.13(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7) + version: 18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(rxjs@6.6.7) '@jsonforms/core': specifier: workspace:* version: link:../core '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) ava: specifier: ^6.1.2 - version: 6.1.3 + version: 6.1.3(encoding@0.1.13) copy-webpack-plugin: specifier: ^5.0.5 version: 5.1.2(webpack@5.94.0) @@ -146,13 +146,13 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) ng-packagr: specifier: ^18.0.0 - version: 18.2.1(@angular/compiler-cli@18.2.13)(tslib@2.6.2)(typescript@5.5.4) + version: 18.2.1(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4) nyc: specifier: ^15.1.0 version: 15.1.0 @@ -189,55 +189,55 @@ importers: devDependencies: '@angular-devkit/build-angular': specifier: ^18.0.0 - version: 18.2.12(@angular/compiler-cli@18.2.13)(@types/node@18.19.33)(karma@6.4.3)(ng-packagr@18.2.1)(protractor@7.0.0)(typescript@5.5.4) + version: 18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(@types/node@22.13.8)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.91.0))(karma@6.4.3)(ng-packagr@18.2.1(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4))(protractor@7.0.0)(stylus@0.57.0)(typescript@5.5.4) '@angular-devkit/core': specifier: ^18.0.0 - version: 18.2.12 + version: 18.2.12(chokidar@3.6.0) '@angular-eslint/eslint-plugin': specifier: ^18.0.0 - version: 18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + version: 18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@angular-eslint/eslint-plugin-template': specifier: ^18.0.0 - version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@angular-eslint/schematics': specifier: ^18.0.0 - version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + version: 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(chokidar@3.6.0)(eslint@8.57.0)(typescript@5.5.4) '@angular-eslint/template-parser': specifier: ^18.0.0 version: 18.4.3(eslint@8.57.0)(typescript@5.5.4) '@angular/animations': specifier: ^18.0.0 - version: 18.2.13(@angular/core@18.2.13) + version: 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) '@angular/cdk': specifier: ^18.0.0 - version: 18.2.14(@angular/common@18.2.13)(@angular/core@18.2.13)(rxjs@6.6.7) + version: 18.2.14(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/common': specifier: ^18.0.0 - version: 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) + version: 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/compiler': specifier: ^18.0.0 - version: 18.2.13(@angular/core@18.2.13) + version: 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) '@angular/compiler-cli': specifier: ^18.0.0 - version: 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + version: 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) '@angular/core': specifier: ^18.0.0 version: 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) '@angular/forms': specifier: ^18.0.0 - version: 18.2.13(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7) + version: 18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(rxjs@6.6.7) '@angular/material': specifier: ^18.0.0 - version: 18.2.14(@angular/animations@18.2.13)(@angular/cdk@18.2.14)(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/forms@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7) + version: 18.2.14(72f5cb6cebd09c53f429f73267659db8) '@angular/platform-browser': specifier: ^18.0.0 - version: 18.2.13(@angular/animations@18.2.13)(@angular/common@18.2.13)(@angular/core@18.2.13) + version: 18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) '@angular/platform-browser-dynamic': specifier: ^18.0.0 - version: 18.2.13(@angular/common@18.2.13)(@angular/compiler@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13) + version: 18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))) '@angular/router': specifier: ^18.0.0 - version: 18.2.13(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7) + version: 18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(rxjs@6.6.7) '@babel/plugin-proposal-nullish-coalescing-operator': specifier: ^7.16.5 version: 7.18.6(@babel/core@7.25.2) @@ -255,7 +255,7 @@ importers: version: link:../examples '@ngtools/webpack': specifier: ^18.0.0 - version: 18.2.12(@angular/compiler-cli@18.2.13)(typescript@5.5.4)(webpack@5.91.0) + version: 18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.91.0) '@types/jasmine': specifier: ~3.8.0 version: 3.8.2 @@ -263,11 +263,11 @@ importers: specifier: 4.14.149 version: 4.14.149 '@types/node': - specifier: ^18.19.4 - version: 18.19.33 + specifier: ^22.13.8 + version: 22.13.8 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) @@ -288,10 +288,10 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) html-loader: specifier: ^0.5.5 version: 0.5.5 @@ -318,7 +318,7 @@ importers: version: 2.0.1(karma@6.4.3) karma-jasmine-html-reporter: specifier: ^1.7.0 - version: 1.7.0(jasmine-core@5.1.2)(karma-jasmine@2.0.1)(karma@6.4.3) + version: 1.7.0(jasmine-core@5.1.2)(karma-jasmine@2.0.1(karma@6.4.3))(karma@6.4.3) karma-sourcemap-loader: specifier: ^0.3.8 version: 0.3.8 @@ -327,7 +327,7 @@ importers: version: 5.0.1(webpack@5.91.0) ng-packagr: specifier: ^18.0.0 - version: 18.2.1(@angular/compiler-cli@18.2.13)(tslib@2.6.2)(typescript@5.5.4) + version: 18.2.1(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4) null-loader: specifier: ^0.1.1 version: 0.1.1 @@ -391,13 +391,13 @@ importers: version: 1.0.6 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) ava: specifier: ^6.1.2 - version: 6.1.3 + version: 6.1.3(encoding@0.1.13) document-register-element: specifier: ^1.14.3 version: 1.14.10 @@ -409,10 +409,10 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) jsdom: specifier: ^22.0.0 version: 22.1.0 @@ -451,7 +451,7 @@ importers: version: 0.5.21 ts-node: specifier: ^10.4.0 - version: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) + version: 10.9.2(@types/node@22.13.8)(typescript@5.5.4) tslib: specifier: ^2.5.0 version: 2.6.2 @@ -475,11 +475,11 @@ importers: specifier: workspace:* version: link:../core '@types/node': - specifier: ^18.19.4 - version: 18.19.33 + specifier: ^22.13.8 + version: 22.13.8 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) @@ -491,10 +491,10 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) prettier: specifier: ^2.8.4 version: 2.8.8 @@ -545,7 +545,7 @@ importers: version: link:../react '@mui/material': specifier: ~5.13.0 - version: 5.13.7(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2) + version: 5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@types/react-highlight': specifier: ^0.12.5 version: 0.12.8 @@ -569,7 +569,7 @@ importers: version: 17.0.2(react@17.0.2) react-highlight: specifier: ^0.14.0 - version: 0.14.0(react-dom@17.0.2)(react@17.0.2) + version: 0.14.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react-tabs: specifier: ^3.2.3 version: 3.2.3(react@17.0.2) @@ -582,7 +582,7 @@ importers: version: 17.0.25 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) @@ -594,10 +594,10 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) eslint-plugin-react: specifier: ^7.32.2 version: 7.34.1(eslint@8.57.0) @@ -625,7 +625,7 @@ importers: version: 11.11.4(@types/react@17.0.80)(react@17.0.2) '@emotion/styled': specifier: ^11.3.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2) + version: 11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) '@jsonforms/core': specifier: workspace:* version: link:../core @@ -634,13 +634,13 @@ importers: version: link:../react '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.18(@mui/material@5.13.7)(@types/react@17.0.80)(react@17.0.2) + version: 5.15.18(@mui/material@5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) '@mui/material': specifier: ~5.13.0 - version: 5.13.7(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2) + version: 5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mui/x-date-pickers': specifier: ^7.7.1 - version: 7.7.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.7)(@types/react@17.0.80)(dayjs@1.10.7)(react-dom@17.0.2)(react@17.0.2) + version: 7.7.1(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@mui/material@5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.80)(dayjs@1.10.7)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@rollup/plugin-commonjs': specifier: ^23.0.3 version: 23.0.7(rollup@2.79.1) @@ -664,13 +664,13 @@ importers: version: 17.0.25 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) '@wojtekmaj/enzyme-adapter-react-17': specifier: ^0.6.7 - version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2)(react@17.0.2) + version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) copy-webpack-plugin: specifier: ^5.0.5 version: 5.1.2(webpack@5.91.0) @@ -685,16 +685,16 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) eslint-plugin-react: specifier: ^7.32.2 version: 7.34.1(eslint@8.57.0) jest: specifier: ^27.5.1 - version: 27.5.1(ts-node@10.9.2) + version: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jsdom: specifier: ^22.0.0 version: 22.1.0 @@ -739,7 +739,7 @@ importers: version: 0.2.4 ts-jest: specifier: ^27.1.4 - version: 27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@5.5.4) + version: 27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4) ts-loader: specifier: ^9.5.1 version: 9.5.1(typescript@5.5.4)(webpack@5.91.0) @@ -788,13 +788,13 @@ importers: version: 7.1.33 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) '@wojtekmaj/enzyme-adapter-react-17': specifier: ^0.6.7 - version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2)(react@17.0.2) + version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) cross-env: specifier: ^7.0.2 version: 7.0.3 @@ -809,16 +809,16 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) eslint-plugin-react: specifier: ^7.32.2 version: 7.34.1(eslint@8.57.0) jest: specifier: ^27.5.1 - version: 27.5.1(ts-node@10.9.2) + version: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jsdom: specifier: ^22.0.0 version: 22.1.0 @@ -839,7 +839,7 @@ importers: version: 17.0.2(react@17.0.2) react-redux: specifier: ^7.1.3 - version: 7.2.9(react-dom@17.0.2)(react@17.0.2) + version: 7.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2) redux: specifier: ^4.0.4 version: 4.2.1 @@ -863,7 +863,7 @@ importers: version: 5.12.0(rollup@2.79.1) ts-jest: specifier: ^27.1.4 - version: 27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@5.5.4) + version: 27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.25.2))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4) tslib: specifier: ^2.5.0 version: 2.6.2 @@ -909,13 +909,13 @@ importers: version: 17.0.80 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@4.9.5) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 - version: 5.62.0(eslint@8.57.0)(typescript@4.9.5) + version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) '@wojtekmaj/enzyme-adapter-react-17': specifier: ^0.6.7 - version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2)(react@17.0.2) + version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) copy-webpack-plugin: specifier: ^5.0.5 version: 5.1.2(webpack@5.91.0) @@ -930,16 +930,16 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8) + version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) eslint-plugin-react: specifier: ^7.32.2 version: 7.34.1(eslint@8.57.0) jest: specifier: ^27.5.1 - version: 27.5.1(ts-node@10.9.2) + version: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jsdom: specifier: ^22.0.0 version: 22.1.0 @@ -975,7 +975,7 @@ importers: version: 3.5.0(rollup@2.79.1) rollup-plugin-typescript2: specifier: ^0.34.1 - version: 0.34.1(rollup@2.79.1)(typescript@4.9.5) + version: 0.34.1(rollup@2.79.1)(typescript@5.5.4) rollup-plugin-visualizer: specifier: ^5.4.1 version: 5.12.0(rollup@2.79.1) @@ -984,19 +984,19 @@ importers: version: 0.2.4 ts-jest: specifier: ^27.1.4 - version: 27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.25.2))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4) ts-loader: specifier: ^9.5.1 - version: 9.5.1(typescript@4.9.5)(webpack@5.91.0) + version: 9.5.1(typescript@5.5.4)(webpack@5.91.0) ts-node: specifier: ^10.4.0 - version: 10.9.2(@types/node@20.16.1)(typescript@4.9.5) + version: 10.9.2(@types/node@22.13.8)(typescript@5.5.4) tslib: specifier: ^2.5.0 version: 2.6.2 typedoc: specifier: ~0.25.3 - version: 0.25.13(typescript@4.9.5) + version: 0.25.13(typescript@5.5.4) webpack: specifier: ^5.78.0 version: 5.91.0(webpack-cli@5.1.4) @@ -1032,32 +1032,32 @@ importers: specifier: ^27.4.1 version: 27.5.2 '@types/node': - specifier: ^18.19.4 - version: 18.19.33 + specifier: ^22.13.8 + version: 22.13.8 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) '@vue/cli-plugin-babel': specifier: ~5.0.8 - version: 5.0.8(@vue/cli-service@5.0.8)(core-js@3.37.1)(vue@3.4.27) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(core-js@3.37.1)(encoding@0.1.13)(vue@3.4.27(typescript@5.5.4)) '@vue/cli-plugin-typescript': specifier: ~5.0.8 - version: 5.0.8(@vue/cli-service@5.0.8)(eslint@8.57.0)(typescript@5.5.4)(vue@3.4.27) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13)(eslint@8.57.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4)) '@vue/cli-service': specifier: ~5.0.8 - version: 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) + version: 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) '@vue/eslint-config-typescript': specifier: ^11.0.2 - version: 11.0.3(eslint-plugin-vue@9.26.0)(eslint@8.57.0)(typescript@5.5.4) + version: 11.0.3(eslint-plugin-vue@9.26.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.5.4) '@vue/test-utils': specifier: ^2.4.5 version: 2.4.6 '@vue/vue3-jest': specifier: ^27.0.0 - version: 27.0.0(@babel/core@7.24.5)(babel-jest@27.5.1)(jest@27.5.1)(ts-jest@27.1.5)(typescript@5.5.4)(vue@3.4.27) + version: 27.0.0(@babel/core@7.24.5)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(ts-jest@27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4))(typescript@5.5.4)(vue@3.4.27(typescript@5.5.4)) core-js: specifier: ^3.9.1 version: 3.37.1 @@ -1072,7 +1072,7 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier-vue: specifier: ^4.2.0 version: 4.2.0 @@ -1081,7 +1081,7 @@ importers: version: 9.26.0(eslint@8.57.0) jest: specifier: ^27.5.1 - version: 27.5.1(ts-node@10.9.2) + version: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) prettier: specifier: ^2.8.4 version: 2.8.8 @@ -1108,7 +1108,7 @@ importers: version: 6.0.0(@vue/compiler-sfc@3.4.27) ts-jest: specifier: ^27.1.5 - version: 27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1)(jest@27.5.1)(typescript@5.5.4) + version: 27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4) tslib: specifier: ^2.5.0 version: 2.6.2 @@ -1153,29 +1153,29 @@ importers: specifier: ^5.2.4 version: 5.2.7 '@types/node': - specifier: ^18.19.4 - version: 18.19.33 + specifier: ^22.13.8 + version: 22.13.8 '@typescript-eslint/eslint-plugin': specifier: ^5.54.1 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': specifier: ^5.54.1 version: 5.62.0(eslint@8.57.0)(typescript@5.5.4) '@vue/cli-plugin-babel': specifier: ~5.0.8 - version: 5.0.8(@vue/cli-service@5.0.8)(core-js@3.37.1)(vue@3.4.27) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(core-js@3.37.1)(encoding@0.1.13)(vue@3.4.27(typescript@5.5.4)) '@vue/cli-plugin-typescript': specifier: ~5.0.8 - version: 5.0.8(@vue/cli-service@5.0.8)(eslint@8.57.0)(typescript@5.5.4)(vue@3.4.27) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13)(eslint@8.57.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4)) '@vue/cli-plugin-unit-mocha': specifier: ~5.0.8 - version: 5.0.8(@vue/cli-service@5.0.8)(webpack@5.94.0) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13)(webpack@5.94.0) '@vue/cli-service': specifier: ~5.0.8 - version: 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) + version: 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) '@vue/eslint-config-typescript': specifier: ^11.0.2 - version: 11.0.3(eslint-plugin-vue@9.26.0)(eslint@8.57.0)(typescript@5.5.4) + version: 11.0.3(eslint-plugin-vue@9.26.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.5.4) '@vue/test-utils': specifier: ^2.4.5 version: 2.4.6 @@ -1193,7 +1193,7 @@ importers: version: 8.10.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.27.5 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-prettier-vue: specifier: ^4.2.0 version: 4.2.0 @@ -1244,7 +1244,7 @@ importers: version: 3.4.27(typescript@5.5.4) vue-jest: specifier: ^5.0.0-0 - version: 5.0.0-alpha.10(@babel/core@7.24.5)(babel-jest@26.6.3)(jest@26.6.3)(typescript@5.5.4)(vue@3.4.27) + version: 5.0.0-alpha.10(@babel/core@7.24.5)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.4.27(typescript@5.5.4)) packages/vue-vuetify: devDependencies: @@ -1276,23 +1276,23 @@ importers: specifier: ^4.14.172 version: 4.17.7 '@types/node': - specifier: ^20.12.5 - version: 20.16.1 + specifier: ^22.13.8 + version: 22.13.8 '@types/splitpanes': specifier: ^2.2.6 version: 2.2.6 '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.1.2(vite@5.4.2)(vue@3.4.27) + version: 5.1.2(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))(vue@3.4.27(typescript@5.4.5)) '@vitest/coverage-v8': specifier: ^1.6.0 - version: 1.6.0(vitest@1.6.0) + version: 1.6.0(vitest@1.6.0(@types/node@22.13.8)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)) '@vue/eslint-config-prettier': specifier: ^9.0.0 - version: 9.0.0(eslint@8.57.0)(prettier@3.3.3) + version: 9.0.0(@types/eslint@8.56.10)(eslint@8.57.0)(prettier@3.3.3) '@vue/eslint-config-typescript': specifier: ^13.0.0 - version: 13.0.0(eslint-plugin-vue@9.26.0)(eslint@8.57.0)(typescript@5.4.5) + version: 13.0.0(eslint-plugin-vue@9.26.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.4.5) '@vue/test-utils': specifier: ^2.4.5 version: 2.4.6 @@ -1322,7 +1322,7 @@ importers: version: 9.26.0(eslint@8.57.0) eslint-plugin-vue-scoped-css: specifier: ^2.8.0 - version: 2.8.1(eslint@8.57.0)(vue-eslint-parser@9.4.2) + version: 2.8.1(eslint@8.57.0)(vue-eslint-parser@9.4.2(eslint@8.57.0)) jsdom: specifier: ^24.0.0 version: 24.1.1 @@ -1352,7 +1352,7 @@ importers: version: 4.4.1 rollup-plugin-postcss: specifier: ^4.0.2 - version: 4.0.2(postcss@8.4.49)(ts-node@10.9.2) + version: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.4.5)) splitpanes: specifier: ^3.1.5 version: 3.1.5 @@ -1364,22 +1364,22 @@ importers: version: 5.4.5 vite: specifier: ^5.2.8 - version: 5.4.2(@types/node@20.16.1) + version: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) vite-plugin-dts: specifier: ^3.9.1 - version: 3.9.1(@types/node@20.16.1)(typescript@5.4.5)(vite@5.4.2) + version: 3.9.1(@types/node@22.13.8)(rollup@4.22.4)(typescript@5.4.5)(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)) vite-plugin-node-polyfills: specifier: ^0.21.0 - version: 0.21.0(vite@5.4.2) + version: 0.21.0(rollup@4.22.4)(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)) vite-plugin-static-copy: specifier: ^1.0.5 - version: 1.0.6(vite@5.4.2) + version: 1.0.6(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)) vite-plugin-vuetify: specifier: ^2.0.3 - version: 2.0.4(vite@5.4.2)(vue@3.4.27)(vuetify@3.7.0) + version: 2.0.4(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))(vue@3.4.27(typescript@5.4.5))(vuetify@3.7.0) vitest: specifier: ^1.4.0 - version: 1.6.0(@types/node@20.16.1)(jsdom@24.1.1) + version: 1.6.0(@types/node@22.13.8)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) vue: specifier: ^3.4.21 version: 3.4.27(typescript@5.4.5) @@ -1391,7 +1391,7 @@ importers: version: 2.0.29(typescript@5.4.5) vuetify: specifier: ^3.6.6 - version: 3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27) + version: 3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27(typescript@5.4.5)) packages: @@ -2774,11 +2774,6 @@ packages: '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - '@cnakazawa/watch@1.0.4': - resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} - engines: {node: '>=0.1.95'} - hasBin: true - '@colors/colors@1.5.0': resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} @@ -3433,18 +3428,10 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@jest/console@26.6.2': - resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} - engines: {node: '>= 10.14.2'} - '@jest/console@27.5.1': resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/core@26.6.3': - resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} - engines: {node: '>= 10.14.2'} - '@jest/core@27.5.1': resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -3454,34 +3441,18 @@ packages: node-notifier: optional: true - '@jest/environment@26.6.2': - resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} - engines: {node: '>= 10.14.2'} - '@jest/environment@27.5.1': resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/fake-timers@26.6.2': - resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} - engines: {node: '>= 10.14.2'} - '@jest/fake-timers@27.5.1': resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/globals@26.6.2': - resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} - engines: {node: '>= 10.14.2'} - '@jest/globals@27.5.1': resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/reporters@26.6.2': - resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} - engines: {node: '>= 10.14.2'} - '@jest/reporters@27.5.1': resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -3495,42 +3466,22 @@ packages: resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - '@jest/source-map@26.6.2': - resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} - engines: {node: '>= 10.14.2'} - '@jest/source-map@27.5.1': resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/test-result@26.6.2': - resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} - engines: {node: '>= 10.14.2'} - '@jest/test-result@27.5.1': resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/test-sequencer@26.6.3': - resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} - engines: {node: '>= 10.14.2'} - '@jest/test-sequencer@27.5.1': resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/transform@26.6.2': - resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} - engines: {node: '>= 10.14.2'} - '@jest/transform@27.5.1': resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - '@jest/types@26.6.2': - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} - '@jest/types@27.5.1': resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -4461,9 +4412,6 @@ packages: '@sinonjs/commons@1.8.6': resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} - '@sinonjs/fake-timers@6.0.1': - resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} - '@sinonjs/fake-timers@8.1.0': resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} @@ -4657,14 +4605,8 @@ packages: '@types/node-forge@1.3.11': resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - '@types/node@18.19.33': - resolution: {integrity: sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==} - - '@types/node@20.16.1': - resolution: {integrity: sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==} - - '@types/node@22.10.1': - resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==} + '@types/node@22.13.8': + resolution: {integrity: sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -4771,9 +4713,6 @@ packages: '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - '@types/yargs@15.0.19': - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} - '@types/yargs@16.0.9': resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} @@ -5526,9 +5465,6 @@ packages: any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - anymatch@2.0.0: - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} - anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} @@ -5581,18 +5517,6 @@ packages: resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} engines: {node: '>= 0.4'} - arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} - - arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} - - arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} - array-buffer-byte-length@1.0.1: resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} engines: {node: '>= 0.4'} @@ -5627,10 +5551,6 @@ packages: resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} engines: {node: '>=0.10.0'} - array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} - array.prototype.filter@1.0.4: resolution: {integrity: sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==} engines: {node: '>= 0.4'} @@ -5696,10 +5616,6 @@ packages: assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} - ast-types@0.9.6: resolution: {integrity: sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==} engines: {node: '>= 0.8'} @@ -5766,12 +5682,6 @@ packages: resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} engines: {node: '>= 0.4'} - babel-jest@26.6.3: - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - babel-jest@27.5.1: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -5799,10 +5709,6 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} - babel-plugin-jest-hoist@26.6.2: - resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} - engines: {node: '>= 10.14.2'} - babel-plugin-jest-hoist@27.5.1: resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -5831,12 +5737,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - babel-preset-jest@26.6.2: - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - babel-preset-jest@27.5.1: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -5853,10 +5753,6 @@ packages: resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} engines: {node: ^4.5.0 || >= 5.9} - base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} - basic-auth@2.0.1: resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} engines: {node: '>= 0.8'} @@ -5924,10 +5820,6 @@ packages: brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} - braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -6044,10 +5936,6 @@ packages: resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==} engines: {node: ^16.14.0 || >=18.0.0} - cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} - caching-transform@4.0.0: resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} engines: {node: '>=8'} @@ -6091,10 +5979,6 @@ packages: caniuse-lite@1.0.30001685: resolution: {integrity: sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==} - capture-exit@2.0.0: - resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} - engines: {node: 6.* || 8.* || >= 10.*} - case-sensitive-paths-webpack-plugin@2.4.0: resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} engines: {node: '>=4'} @@ -6194,16 +6078,9 @@ packages: cipher-base@1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} - cjs-module-lexer@0.6.0: - resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} - cjs-module-lexer@1.3.1: resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} - class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} - clean-css@4.2.4: resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} engines: {node: '>= 4.0'} @@ -6319,10 +6196,6 @@ packages: collect-v8-coverage@1.0.2: resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} - color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} @@ -6700,10 +6573,6 @@ packages: resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==} deprecated: This package is no longer supported. - copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} - copy-webpack-plugin@11.0.0: resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} engines: {node: '>= 14.15.0'} @@ -7128,18 +6997,6 @@ packages: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} - define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} - - define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} - - define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} - del@2.2.2: resolution: {integrity: sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ==} engines: {node: '>=0.10.0'} @@ -7198,10 +7055,6 @@ packages: di@0.0.1: resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==} - diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - diff-sequences@27.5.1: resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -7350,10 +7203,6 @@ packages: elliptic@6.5.7: resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} - emittery@0.7.2: - resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} - engines: {node: '>=10'} - emittery@0.8.1: resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} engines: {node: '>=10'} @@ -7736,17 +7585,10 @@ packages: evp_bytestokey@1.0.3: resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} - exec-sh@0.3.6: - resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} - execa@1.0.0: resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} engines: {node: '>=6'} - execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} - execa@5.0.0: resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} engines: {node: '>=10'} @@ -7763,14 +7605,6 @@ packages: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} - expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} - - expect@26.6.2: - resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} - engines: {node: '>= 10.14.2'} - expect@27.5.1: resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -7782,14 +7616,6 @@ packages: resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} engines: {node: '>= 0.10.0'} - extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - - extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} - extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} @@ -7797,10 +7623,6 @@ packages: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} - extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} - extract-from-css@0.4.4: resolution: {integrity: sha512-41qWGBdtKp9U7sgBxAQ7vonYqSXzgW/SiAYzq4tdWSVhAShvpVCH1nyvPQgjse6EdgbW7Y7ERdT3674/lKr65A==} engines: {node: '>=0.10.0', npm: '>=2.0.0'} @@ -7882,10 +7704,6 @@ packages: filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} - fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} @@ -7963,10 +7781,6 @@ packages: for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} - foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} engines: {node: '>=8.0.0'} @@ -8014,10 +7828,6 @@ packages: fraction.js@4.3.7: resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} - fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} @@ -8142,10 +7952,6 @@ packages: resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} engines: {node: '>=6'} - get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} - get-stream@6.0.0: resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} engines: {node: '>=10'} @@ -8162,10 +7968,6 @@ packages: resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} - get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} - getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} @@ -8357,22 +8159,6 @@ packages: has-unicode@2.0.1: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} - - has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} - - has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} - - has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} - has@1.0.4: resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} engines: {node: '>= 0.4.0'} @@ -8579,10 +8365,6 @@ packages: resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} engines: {node: '>= 14'} - human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} - human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} @@ -8759,10 +8541,6 @@ packages: resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} engines: {node: '>=0.10.0'} - is-accessor-descriptor@1.0.1: - resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} - engines: {node: '>= 0.10'} - is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} @@ -8807,10 +8585,6 @@ packages: is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} - is-data-descriptor@1.0.1: - resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} - engines: {node: '>= 0.4'} - is-data-view@1.0.1: resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} engines: {node: '>= 0.4'} @@ -8819,14 +8593,6 @@ packages: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} - is-descriptor@0.1.7: - resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} - engines: {node: '>= 0.4'} - - is-descriptor@1.0.3: - resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} - engines: {node: '>= 0.4'} - is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} @@ -8837,14 +8603,6 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true - is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - - is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} - is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -8926,10 +8684,6 @@ packages: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} - is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} - is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -9110,10 +8864,6 @@ packages: resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} engines: {node: '>=16'} - isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} - isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} @@ -9204,10 +8954,6 @@ packages: javascript-stringify@2.1.0: resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} - jest-changed-files@26.6.2: - resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} - engines: {node: '>= 10.14.2'} - jest-changed-files@27.5.1: resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -9216,11 +8962,6 @@ packages: resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-cli@26.6.3: - resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} - engines: {node: '>= 10.14.2'} - hasBin: true - jest-cli@27.5.1: resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -9231,15 +8972,6 @@ packages: node-notifier: optional: true - jest-config@26.6.3: - resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} - engines: {node: '>= 10.14.2'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - jest-config@27.5.1: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -9249,98 +8981,50 @@ packages: ts-node: optional: true - jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} - jest-diff@27.5.1: resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-docblock@26.0.0: - resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} - engines: {node: '>= 10.14.2'} - jest-docblock@27.5.1: resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-each@26.6.2: - resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} - engines: {node: '>= 10.14.2'} - jest-each@27.5.1: resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-environment-jsdom@26.6.2: - resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} - engines: {node: '>= 10.14.2'} - jest-environment-jsdom@27.5.1: resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-environment-node@26.6.2: - resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} - engines: {node: '>= 10.14.2'} - jest-environment-node@27.5.1: resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - jest-get-type@27.5.1: resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-haste-map@26.6.2: - resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} - engines: {node: '>= 10.14.2'} - jest-haste-map@27.5.1: resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-jasmine2@26.6.3: - resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} - engines: {node: '>= 10.14.2'} - jest-jasmine2@27.5.1: resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-leak-detector@26.6.2: - resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} - engines: {node: '>= 10.14.2'} - jest-leak-detector@27.5.1: resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-matcher-utils@26.6.2: - resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} - engines: {node: '>= 10.14.2'} - jest-matcher-utils@27.5.1: resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-message-util@26.6.2: - resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} - engines: {node: '>= 10.14.2'} - jest-message-util@27.5.1: resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-mock@26.6.2: - resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} - engines: {node: '>= 10.14.2'} - jest-mock@27.5.1: resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -9354,100 +9038,50 @@ packages: jest-resolve: optional: true - jest-regex-util@26.0.0: - resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} - engines: {node: '>= 10.14.2'} - jest-regex-util@27.5.1: resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-resolve-dependencies@26.6.3: - resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} - engines: {node: '>= 10.14.2'} - jest-resolve-dependencies@27.5.1: resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-resolve@26.6.2: - resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} - engines: {node: '>= 10.14.2'} - jest-resolve@27.5.1: resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-runner@26.6.3: - resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} - engines: {node: '>= 10.14.2'} - jest-runner@27.5.1: resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-runtime@26.6.3: - resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} - engines: {node: '>= 10.14.2'} - hasBin: true - jest-runtime@27.5.1: resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-serializer@26.6.2: - resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} - engines: {node: '>= 10.14.2'} - jest-serializer@27.5.1: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-snapshot@26.6.2: - resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} - engines: {node: '>= 10.14.2'} - jest-snapshot@27.5.1: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-util@26.6.2: - resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} - engines: {node: '>= 10.14.2'} - jest-util@27.5.1: resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-validate@26.6.2: - resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} - engines: {node: '>= 10.14.2'} - jest-validate@27.5.1: resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-watcher@26.6.2: - resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} - engines: {node: '>= 10.14.2'} - jest-watcher@27.5.1: resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} - jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} - jest@26.6.3: - resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} - engines: {node: '>= 10.14.2'} - hasBin: true - jest@27.5.1: resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -9689,14 +9323,6 @@ packages: keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} - - kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} - kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -10008,10 +9634,6 @@ packages: makeerror@1.0.12: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} @@ -10020,10 +9642,6 @@ packages: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} engines: {node: '>=8'} - map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} - marked@4.3.0: resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} engines: {node: '>= 12'} @@ -10093,10 +9711,6 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - micromatch@3.1.10: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} - micromatch@4.0.7: resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} engines: {node: '>=8.6'} @@ -10250,10 +9864,6 @@ packages: resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==} engines: {node: '>=4.0.0'} - mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} - mkdirp-infer-owner@2.0.0: resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} engines: {node: '>=10'} @@ -10356,10 +9966,6 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} - native-promise-only@0.8.1: resolution: {integrity: sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==} @@ -10681,10 +10287,6 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} - object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} @@ -10696,10 +10298,6 @@ packages: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} - object.assign@4.1.5: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} @@ -10720,10 +10318,6 @@ packages: resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} engines: {node: '>= 0.4'} - object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} - object.values@1.2.0: resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} engines: {node: '>= 0.4'} @@ -10795,10 +10389,6 @@ packages: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} - p-each-series@2.2.0: - resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} - engines: {node: '>=8'} - p-finally@1.0.0: resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} @@ -10987,10 +10577,6 @@ packages: pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} - path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -11162,10 +10748,6 @@ packages: resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} engines: {node: '>= 0.12.0'} - posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} - possible-typed-array-names@1.0.0: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} @@ -11470,10 +11052,6 @@ packages: pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} - pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} - pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -11835,10 +11413,6 @@ packages: regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} - regex-parser@2.3.0: resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==} @@ -11891,14 +11465,6 @@ packages: renderkid@3.0.0: resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} - repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} - - repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} - replace-ext@1.0.1: resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} engines: {node: '>= 0.10'} @@ -12096,10 +11662,6 @@ packages: rst-selector-parser@2.2.3: resolution: {integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==} - rsvp@4.8.5: - resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} - engines: {node: 6.* || >= 7.*} - run-applescript@7.0.0: resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} engines: {node: '>=18'} @@ -12138,18 +11700,9 @@ packages: resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} - safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} - safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sane@4.1.0: - resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} - engines: {node: 6.* || 8.* || >= 10.*} - deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added - hasBin: true - sass-loader@16.0.0: resolution: {integrity: sha512-n13Z+3rU9A177dk4888czcVFiC8CL9dii4qpXWUg3YIIgZEvi9TCFKjOQcbK0kJM7DJu9VucrZFddvNfYCPwtw==} engines: {node: '>= 18.12.0'} @@ -12299,10 +11852,6 @@ packages: resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} engines: {node: '>= 0.4'} - set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} - setimmediate@1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} @@ -12407,18 +11956,6 @@ packages: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} - - snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} - - snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} - socket.io-adapter@2.5.4: resolution: {integrity: sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==} @@ -12528,10 +12065,6 @@ packages: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} - split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} - split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} @@ -12581,10 +12114,6 @@ packages: stackframe@1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} - statuses@1.5.0: resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} @@ -12903,9 +12432,6 @@ packages: peerDependencies: webpack: ^4.27.0 || ^5.0.0 - throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - throat@6.0.2: resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==} @@ -12966,22 +12492,10 @@ packages: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} - - to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} - to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} - to-through@2.0.0: resolution: {integrity: sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==} engines: {node: '>= 0.10'} @@ -13251,12 +12765,6 @@ packages: resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} engines: {node: '>=0.10.0'} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - - undici-types@6.19.8: - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici-types@6.20.0: resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} @@ -13280,10 +12788,6 @@ packages: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} engines: {node: '>=18'} - union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} - union@0.5.0: resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} engines: {node: '>= 0.8.0'} @@ -13336,10 +12840,6 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} - upath@2.0.1: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} @@ -13376,10 +12876,6 @@ packages: resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} engines: {node: '>= 0.4'} - use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} - util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -13408,10 +12904,6 @@ packages: v8-compile-cache@2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - v8-to-istanbul@7.1.2: - resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} - engines: {node: '>=10.10.0'} - v8-to-istanbul@8.1.1: resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} engines: {node: '>=10.12.0'} @@ -14227,21 +13719,21 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@angular-devkit/architect@0.1802.12': + '@angular-devkit/architect@0.1802.12(chokidar@3.6.0)': dependencies: - '@angular-devkit/core': 18.2.12 + '@angular-devkit/core': 18.2.12(chokidar@3.6.0) rxjs: 7.8.1 transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@18.2.12(@angular/compiler-cli@18.2.13)(@types/node@18.19.33)(karma@6.4.3)(ng-packagr@18.2.1)(protractor@7.0.0)(typescript@5.5.4)': + '@angular-devkit/build-angular@18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(@types/node@22.13.8)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.91.0))(karma@6.4.3)(ng-packagr@18.2.1(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4))(protractor@7.0.0)(stylus@0.57.0)(typescript@5.5.4)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1802.12 - '@angular-devkit/build-webpack': 0.1802.12(webpack-dev-server@5.0.4)(webpack@5.94.0) - '@angular-devkit/core': 18.2.12 - '@angular/build': 18.2.12(@angular/compiler-cli@18.2.13)(@types/node@18.19.33)(less@4.2.0)(postcss@8.4.41)(terser@5.31.6)(typescript@5.5.4) - '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + '@angular-devkit/architect': 0.1802.12(chokidar@3.6.0) + '@angular-devkit/build-webpack': 0.1802.12(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.91.0))(webpack@5.94.0(esbuild@0.23.0)) + '@angular-devkit/core': 18.2.12(chokidar@3.6.0) + '@angular/build': 18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(@types/node@22.13.8)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(stylus@0.57.0)(terser@5.31.6)(typescript@5.5.4) + '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) '@babel/core': 7.25.2 '@babel/generator': 7.25.0 '@babel/helper-annotate-as-pure': 7.24.7 @@ -14252,59 +13744,59 @@ snapshots: '@babel/preset-env': 7.25.3(@babel/core@7.25.2) '@babel/runtime': 7.25.0 '@discoveryjs/json-ext': 0.6.1 - '@ngtools/webpack': 18.2.12(@angular/compiler-cli@18.2.13)(typescript@5.5.4)(webpack@5.94.0) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6) + '@ngtools/webpack': 18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.94.0(esbuild@0.23.0)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)) ansi-colors: 4.1.3 autoprefixer: 10.4.20(postcss@8.4.41) - babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0) + babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0(esbuild@0.23.0)) browserslist: 4.23.0 - copy-webpack-plugin: 12.0.2(webpack@5.94.0) + copy-webpack-plugin: 12.0.2(webpack@5.94.0(esbuild@0.23.0)) critters: 0.0.24 - css-loader: 7.1.2(webpack@5.94.0) + css-loader: 7.1.2(webpack@5.94.0(esbuild@0.23.0)) esbuild-wasm: 0.23.0 fast-glob: 3.3.2 http-proxy-middleware: 3.0.3 https-proxy-agent: 7.0.5 istanbul-lib-instrument: 6.0.3 jsonc-parser: 3.3.1 - karma: 6.4.3 karma-source-map-support: 1.4.0 less: 4.2.0 - less-loader: 12.2.0(less@4.2.0)(webpack@5.94.0) - license-webpack-plugin: 4.0.2(webpack@5.94.0) + less-loader: 12.2.0(less@4.2.0)(webpack@5.94.0(esbuild@0.23.0)) + license-webpack-plugin: 4.0.2(webpack@5.94.0(esbuild@0.23.0)) loader-utils: 3.3.1 magic-string: 0.30.11 - mini-css-extract-plugin: 2.9.0(webpack@5.94.0) + mini-css-extract-plugin: 2.9.0(webpack@5.94.0(esbuild@0.23.0)) mrmime: 2.0.0 - ng-packagr: 18.2.1(@angular/compiler-cli@18.2.13)(tslib@2.6.2)(typescript@5.5.4) open: 10.1.0 ora: 5.4.1 parse5-html-rewriting-stream: 7.0.0 picomatch: 4.0.2 piscina: 4.6.1 postcss: 8.4.41 - postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0) - protractor: 7.0.0 + postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(esbuild@0.23.0)) resolve-url-loader: 5.0.0 rxjs: 7.8.1 sass: 1.77.6 - sass-loader: 16.0.0(sass@1.77.6)(webpack@5.94.0) + sass-loader: 16.0.0(sass@1.77.6)(webpack@5.94.0(esbuild@0.23.0)) semver: 7.6.3 - source-map-loader: 5.0.0(webpack@5.94.0) + source-map-loader: 5.0.0(webpack@5.94.0(esbuild@0.23.0)) source-map-support: 0.5.21 terser: 5.31.6 tree-kill: 1.2.2 tslib: 2.6.3 typescript: 5.5.4 - vite: 5.4.6(@types/node@18.19.33)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) + vite: 5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) watchpack: 2.4.1 webpack: 5.94.0(esbuild@0.23.0) - webpack-dev-middleware: 7.4.2(webpack@5.94.0) - webpack-dev-server: 5.0.4(webpack@5.91.0) + webpack-dev-middleware: 7.4.2(webpack@5.94.0(esbuild@0.23.0)) + webpack-dev-server: 5.0.4(webpack@5.94.0(esbuild@0.23.0)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(webpack@5.94.0) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.91.0))(webpack@5.94.0(esbuild@0.23.0)) optionalDependencies: esbuild: 0.23.0 + karma: 6.4.3 + ng-packagr: 18.2.1(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4) + protractor: 7.0.0 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -14323,16 +13815,16 @@ snapshots: - utf-8-validate - webpack-cli - '@angular-devkit/build-webpack@0.1802.12(webpack-dev-server@5.0.4)(webpack@5.94.0)': + '@angular-devkit/build-webpack@0.1802.12(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.91.0))(webpack@5.94.0(esbuild@0.23.0))': dependencies: - '@angular-devkit/architect': 0.1802.12 + '@angular-devkit/architect': 0.1802.12(chokidar@3.6.0) rxjs: 7.8.1 webpack: 5.94.0(esbuild@0.23.0) - webpack-dev-server: 5.0.4(webpack@5.91.0) + webpack-dev-server: 5.0.4(webpack@5.94.0(esbuild@0.23.0)) transitivePeerDependencies: - chokidar - '@angular-devkit/core@18.2.12': + '@angular-devkit/core@18.2.12(chokidar@3.6.0)': dependencies: ajv: 8.17.1 ajv-formats: 3.0.1(ajv@8.17.1) @@ -14340,10 +13832,12 @@ snapshots: picomatch: 4.0.2 rxjs: 7.8.1 source-map: 0.7.4 + optionalDependencies: + chokidar: 3.6.0 - '@angular-devkit/schematics@18.2.12': + '@angular-devkit/schematics@18.2.12(chokidar@3.6.0)': dependencies: - '@angular-devkit/core': 18.2.12 + '@angular-devkit/core': 18.2.12(chokidar@3.6.0) jsonc-parser: 3.3.1 magic-string: 0.30.11 ora: 5.4.1 @@ -14353,10 +13847,10 @@ snapshots: '@angular-eslint/bundled-angular-compiler@18.4.3': {} - '@angular-eslint/eslint-plugin-template@18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4)': + '@angular-eslint/eslint-plugin-template@18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 - '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/types': 7.18.0 '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4) aria-query: 5.3.2 @@ -14364,20 +13858,20 @@ snapshots: eslint: 8.57.0 typescript: 5.5.4 - '@angular-eslint/eslint-plugin@18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4)': + '@angular-eslint/eslint-plugin@18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 - '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4) eslint: 8.57.0 typescript: 5.5.4 - '@angular-eslint/schematics@18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4)': + '@angular-eslint/schematics@18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(chokidar@3.6.0)(eslint@8.57.0)(typescript@5.5.4)': dependencies: - '@angular-devkit/core': 18.2.12 - '@angular-devkit/schematics': 18.2.12 - '@angular-eslint/eslint-plugin': 18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) - '@angular-eslint/eslint-plugin-template': 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4) + '@angular-devkit/core': 18.2.12(chokidar@3.6.0) + '@angular-devkit/schematics': 18.2.12(chokidar@3.6.0) + '@angular-eslint/eslint-plugin': 18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) + '@angular-eslint/eslint-plugin-template': 18.4.3(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) ignore: 6.0.2 semver: 7.6.3 strip-json-comments: 3.1.1 @@ -14395,35 +13889,34 @@ snapshots: eslint-scope: 8.2.0 typescript: 5.5.4 - '@angular-eslint/utils@18.4.3(@typescript-eslint/utils@7.18.0)(eslint@8.57.0)(typescript@5.5.4)': + '@angular-eslint/utils@18.4.3(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4) eslint: 8.57.0 typescript: 5.5.4 - '@angular/animations@18.2.13(@angular/core@18.2.13)': + '@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))': dependencies: '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) tslib: 2.6.2 - '@angular/build@18.2.12(@angular/compiler-cli@18.2.13)(@types/node@18.19.33)(less@4.2.0)(postcss@8.4.41)(terser@5.31.6)(typescript@5.5.4)': + '@angular/build@18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(@types/node@22.13.8)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(stylus@0.57.0)(terser@5.31.6)(typescript@5.5.4)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1802.12 - '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + '@angular-devkit/architect': 0.1802.12(chokidar@3.6.0) + '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) '@inquirer/confirm': 3.1.22 - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)) browserslist: 4.23.0 critters: 0.0.24 esbuild: 0.23.0 fast-glob: 3.3.2 https-proxy-agent: 7.0.5 - less: 4.2.0 listr2: 8.2.4 lmdb: 3.0.13 magic-string: 0.30.11 @@ -14431,13 +13924,15 @@ snapshots: parse5-html-rewriting-stream: 7.0.0 picomatch: 4.0.2 piscina: 4.6.1 - postcss: 8.4.41 rollup: 4.22.4 sass: 1.77.6 semver: 7.6.3 typescript: 5.5.4 - vite: 5.4.6(@types/node@18.19.33)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) + vite: 5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) watchpack: 2.4.1 + optionalDependencies: + less: 4.2.0 + postcss: 8.4.41 transitivePeerDependencies: - '@types/node' - chokidar @@ -14448,23 +13943,23 @@ snapshots: - supports-color - terser - '@angular/cdk@18.2.14(@angular/common@18.2.13)(@angular/core@18.2.13)(rxjs@6.6.7)': + '@angular/cdk@18.2.14(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7)': dependencies: - '@angular/common': 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) + '@angular/common': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) rxjs: 6.6.7 tslib: 2.6.2 optionalDependencies: parse5: 7.1.2 - '@angular/cli@18.2.12': + '@angular/cli@18.2.12(chokidar@3.6.0)': dependencies: - '@angular-devkit/architect': 0.1802.12 - '@angular-devkit/core': 18.2.12 - '@angular-devkit/schematics': 18.2.12 + '@angular-devkit/architect': 0.1802.12(chokidar@3.6.0) + '@angular-devkit/core': 18.2.12(chokidar@3.6.0) + '@angular-devkit/schematics': 18.2.12(chokidar@3.6.0) '@inquirer/prompts': 5.3.8 '@listr2/prompt-adapter-inquirer': 2.0.15(@inquirer/prompts@5.3.8) - '@schematics/angular': 18.2.12 + '@schematics/angular': 18.2.12(chokidar@3.6.0) '@yarnpkg/lockfile': 1.1.0 ini: 4.1.3 jsonc-parser: 3.3.1 @@ -14481,15 +13976,15 @@ snapshots: - chokidar - supports-color - '@angular/common@18.2.13(@angular/core@18.2.13)(rxjs@6.6.7)': + '@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7)': dependencies: '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) rxjs: 6.6.7 tslib: 2.6.2 - '@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4)': + '@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4)': dependencies: - '@angular/compiler': 18.2.13(@angular/core@18.2.13) + '@angular/compiler': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) '@babel/core': 7.25.2 '@jridgewell/sourcemap-codec': 1.4.15 chokidar: 4.0.1 @@ -14502,10 +13997,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/compiler@18.2.13(@angular/core@18.2.13)': + '@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))': dependencies: - '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) tslib: 2.6.2 + optionalDependencies: + '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) '@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)': dependencies: @@ -14513,45 +14009,52 @@ snapshots: tslib: 2.6.2 zone.js: 0.14.10 - '@angular/forms@18.2.13(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7)': + '@angular/core@18.2.13(rxjs@7.8.1)(zone.js@0.14.10)': + dependencies: + rxjs: 7.8.1 + tslib: 2.6.2 + zone.js: 0.14.10 + + '@angular/forms@18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(rxjs@6.6.7)': dependencies: - '@angular/common': 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) + '@angular/common': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) - '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13)(@angular/common@18.2.13)(@angular/core@18.2.13) + '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) rxjs: 6.6.7 tslib: 2.6.2 - '@angular/material@18.2.14(@angular/animations@18.2.13)(@angular/cdk@18.2.14)(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/forms@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7)': + '@angular/material@18.2.14(72f5cb6cebd09c53f429f73267659db8)': dependencies: - '@angular/animations': 18.2.13(@angular/core@18.2.13) - '@angular/cdk': 18.2.14(@angular/common@18.2.13)(@angular/core@18.2.13)(rxjs@6.6.7) - '@angular/common': 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) + '@angular/animations': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) + '@angular/cdk': 18.2.14(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) + '@angular/common': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) - '@angular/forms': 18.2.13(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7) - '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13)(@angular/common@18.2.13)(@angular/core@18.2.13) + '@angular/forms': 18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(rxjs@6.6.7) + '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) rxjs: 6.6.7 tslib: 2.6.2 - '@angular/platform-browser-dynamic@18.2.13(@angular/common@18.2.13)(@angular/compiler@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)': + '@angular/platform-browser-dynamic@18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))': dependencies: - '@angular/common': 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) - '@angular/compiler': 18.2.13(@angular/core@18.2.13) + '@angular/common': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) + '@angular/compiler': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) - '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13)(@angular/common@18.2.13)(@angular/core@18.2.13) + '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) tslib: 2.6.2 - '@angular/platform-browser@18.2.13(@angular/animations@18.2.13)(@angular/common@18.2.13)(@angular/core@18.2.13)': + '@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))': dependencies: - '@angular/animations': 18.2.13(@angular/core@18.2.13) - '@angular/common': 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) + '@angular/common': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) tslib: 2.6.2 + optionalDependencies: + '@angular/animations': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) - '@angular/router@18.2.13(@angular/common@18.2.13)(@angular/core@18.2.13)(@angular/platform-browser@18.2.13)(rxjs@6.6.7)': + '@angular/router@18.2.13(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(@angular/platform-browser@18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(rxjs@6.6.7)': dependencies: - '@angular/common': 18.2.13(@angular/core@18.2.13)(rxjs@6.6.7) + '@angular/common': 18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7) '@angular/core': 18.2.13(rxjs@6.6.7)(zone.js@0.14.10) - '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13)(@angular/common@18.2.13)(@angular/core@18.2.13) + '@angular/platform-browser': 18.2.13(@angular/animations@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(@angular/common@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10))(rxjs@6.6.7))(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)) rxjs: 6.6.7 tslib: 2.6.2 @@ -14707,7 +14210,7 @@ snapshots: '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 @@ -15035,6 +14538,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.5 + optional: true '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)': dependencies: @@ -15226,7 +14730,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.5)': dependencies: @@ -16139,11 +15643,6 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@cnakazawa/watch@1.0.4': - dependencies: - exec-sh: 0.3.6 - minimist: 1.2.8 - '@colors/colors@1.5.0': {} '@cspotcode/source-map-support@0.8.1': @@ -16155,6 +15654,7 @@ snapshots: '@date-io/dayjs@3.0.0(dayjs@1.10.7)': dependencies: '@date-io/core': 3.0.0 + optionalDependencies: dayjs: 1.10.7 '@discoveryjs/json-ext@0.5.7': {} @@ -16200,9 +15700,10 @@ snapshots: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 17.0.80 hoist-non-react-statics: 3.3.2 react: 17.0.2 + optionalDependencies: + '@types/react': 17.0.80 '@emotion/serialize@1.1.4': dependencies: @@ -16214,7 +15715,7 @@ snapshots: '@emotion/sheet@1.2.2': {} - '@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2)': + '@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 '@emotion/babel-plugin': 11.11.0 @@ -16223,8 +15724,9 @@ snapshots: '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) '@emotion/utils': 1.2.1 - '@types/react': 17.0.80 react: 17.0.2 + optionalDependencies: + '@types/react': 17.0.80 '@emotion/unitless@0.8.1': {} @@ -16481,7 +15983,7 @@ snapshots: '@floating-ui/core': 1.6.2 '@floating-ui/utils': 0.2.2 - '@floating-ui/react-dom@2.1.0(react-dom@17.0.2)(react@17.0.2)': + '@floating-ui/react-dom@2.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@floating-ui/dom': 1.6.5 react: 17.0.2 @@ -16498,18 +16000,12 @@ snapshots: '@hapi/topo@5.1.0': dependencies: '@hapi/hoek': 9.3.0 - '@inquirer/core': 9.2.1 - '@inquirer/type': 1.5.5 - external-editor: 3.1.0 '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.3 - '@inquirer/core': 9.2.1 - '@inquirer/type': 1.5.5 debug: 4.3.7 minimatch: 3.1.2 - yoctocolors-cjs: 2.1.2 transitivePeerDependencies: - supports-color @@ -16542,7 +16038,7 @@ snapshots: '@inquirer/figures': 1.0.8 '@inquirer/type': 2.0.0 '@types/mute-stream': 0.0.4 - '@types/node': 22.10.1 + '@types/node': 22.13.8 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -16650,76 +16146,30 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@jest/console@26.6.2': - dependencies: - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - chalk: 4.1.2 - jest-message-util: 26.6.2 - jest-util: 26.6.2 - slash: 3.0.0 - '@jest/console@27.5.1': dependencies: '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 slash: 3.0.0 - '@jest/core@26.6.3(ts-node@10.9.2)': - dependencies: - '@jest/console': 26.6.2 - '@jest/reporters': 26.6.2 - '@jest/test-result': 26.6.2 - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 26.6.2 - jest-config: 26.6.3(ts-node@10.9.2) - jest-haste-map: 26.6.2 - jest-message-util: 26.6.2 - jest-regex-util: 26.0.0 - jest-resolve: 26.6.2 - jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3(ts-node@10.9.2) - jest-runtime: 26.6.3(ts-node@10.9.2) - jest-snapshot: 26.6.2 - jest-util: 26.6.2 - jest-validate: 26.6.2 - jest-watcher: 26.6.2 - micromatch: 4.0.8 - p-each-series: 2.2.0 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - - '@jest/core@27.5.1(ts-node@10.9.2)': + '@jest/core@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))': dependencies: '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 + '@jest/reporters': 27.5.1(node-notifier@8.0.2) '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 27.5.1 - jest-config: 27.5.1(ts-node@10.9.2) + jest-config: 27.5.1(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jest-haste-map: 27.5.1 jest-message-util: 27.5.1 jest-regex-util: 27.5.1 @@ -16735,6 +16185,8 @@ snapshots: rimraf: 3.0.2 slash: 3.0.0 strip-ansi: 6.0.1 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - bufferutil - canvas @@ -16742,89 +16194,36 @@ snapshots: - ts-node - utf-8-validate - '@jest/environment@26.6.2': - dependencies: - '@jest/fake-timers': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - jest-mock: 26.6.2 - '@jest/environment@27.5.1': dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 jest-mock: 27.5.1 - '@jest/fake-timers@26.6.2': - dependencies: - '@jest/types': 26.6.2 - '@sinonjs/fake-timers': 6.0.1 - '@types/node': 20.16.1 - jest-message-util: 26.6.2 - jest-mock: 26.6.2 - jest-util: 26.6.2 - '@jest/fake-timers@27.5.1': dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 18.19.33 + '@types/node': 22.13.8 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 - '@jest/globals@26.6.2': - dependencies: - '@jest/environment': 26.6.2 - '@jest/types': 26.6.2 - expect: 26.6.2 - '@jest/globals@27.5.1': dependencies: '@jest/environment': 27.5.1 '@jest/types': 27.5.1 expect: 27.5.1 - '@jest/reporters@26.6.2': - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 26.6.2 - '@jest/test-result': 26.6.2 - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 - chalk: 4.1.2 - collect-v8-coverage: 1.0.2 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 4.0.3 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.7 - jest-haste-map: 26.6.2 - jest-resolve: 26.6.2 - jest-util: 26.6.2 - jest-worker: 26.6.2 - slash: 3.0.0 - source-map: 0.6.1 - string-length: 4.0.2 - terminal-link: 2.1.1 - v8-to-istanbul: 7.1.2 - optionalDependencies: - node-notifier: 8.0.2 - transitivePeerDependencies: - - supports-color - - '@jest/reporters@27.5.1': + '@jest/reporters@27.5.1(node-notifier@8.0.2)': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 27.5.1 '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -16844,6 +16243,8 @@ snapshots: string-length: 4.0.2 terminal-link: 2.1.1 v8-to-istanbul: 8.1.1 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - supports-color @@ -16851,25 +16252,12 @@ snapshots: dependencies: '@sinclair/typebox': 0.27.8 - '@jest/source-map@26.6.2': - dependencies: - callsites: 3.1.0 - graceful-fs: 4.2.11 - source-map: 0.6.1 - '@jest/source-map@27.5.1': dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 - '@jest/test-result@26.6.2': - dependencies: - '@jest/console': 26.6.2 - '@jest/types': 26.6.2 - '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 - '@jest/test-result@27.5.1': dependencies: '@jest/console': 27.5.1 @@ -16877,20 +16265,6 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@26.6.3(ts-node@10.9.2)': - dependencies: - '@jest/test-result': 26.6.2 - graceful-fs: 4.2.11 - jest-haste-map: 26.6.2 - jest-runner: 26.6.3(ts-node@10.9.2) - jest-runtime: 26.6.3(ts-node@10.9.2) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - '@jest/test-sequencer@27.5.1': dependencies: '@jest/test-result': 27.5.1 @@ -16900,26 +16274,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/transform@26.6.2': - dependencies: - '@babel/core': 7.25.2 - '@jest/types': 26.6.2 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 1.9.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 26.6.2 - jest-regex-util: 26.0.0 - jest-util: 26.6.2 - micromatch: 4.0.8 - pirates: 4.0.6 - slash: 3.0.0 - source-map: 0.6.1 - write-file-atomic: 3.0.3 - transitivePeerDependencies: - - supports-color - '@jest/transform@27.5.1': dependencies: '@babel/core': 7.24.5 @@ -16940,19 +16294,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/types@26.6.2': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.16.1 - '@types/yargs': 15.0.19 - chalk: 4.1.2 - '@jest/types@27.5.1': dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/yargs': 16.0.9 chalk: 4.1.2 @@ -16984,7 +16330,6 @@ snapshots: dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - tslib: 2.6.3 '@jsonjoy.com/base64@1.1.2(tslib@2.6.3)': dependencies: @@ -17029,12 +16374,12 @@ snapshots: - bluebird - supports-color - '@lerna/legacy-package-management@6.6.2(nx@15.9.7)': + '@lerna/legacy-package-management@6.6.2(encoding@0.1.13)(nx@15.9.7)': dependencies: '@npmcli/arborist': 6.2.3 '@npmcli/run-script': 4.1.7 '@nrwl/devkit': 15.9.7(nx@15.9.7) - '@octokit/rest': 19.0.3 + '@octokit/rest': 19.0.3(encoding@0.1.13) byte-size: 7.0.0 chalk: 4.1.0 clone-deep: 4.0.1 @@ -17065,7 +16410,7 @@ snapshots: make-dir: 3.1.0 minimatch: 3.0.5 multimatch: 5.0.0 - node-fetch: 2.6.7 + node-fetch: 2.6.7(encoding@0.1.13) npm-package-arg: 8.1.1 npm-packlist: 5.1.1 npm-registry-fetch: 14.0.3 @@ -17122,12 +16467,12 @@ snapshots: '@lmdb/lmdb-win32-x64@3.0.13': optional: true - '@mapbox/node-pre-gyp@1.0.11': + '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)': dependencies: detect-libc: 2.0.3 https-proxy-agent: 5.0.1 make-dir: 3.1.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 @@ -17139,23 +16484,23 @@ snapshots: '@mdi/font@7.4.47': {} - '@microsoft/api-extractor-model@7.28.13(@types/node@20.16.1)': + '@microsoft/api-extractor-model@7.28.13(@types/node@22.13.8)': dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 4.0.2(@types/node@20.16.1) + '@rushstack/node-core-library': 4.0.2(@types/node@22.13.8) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.43.0(@types/node@20.16.1)': + '@microsoft/api-extractor@7.43.0(@types/node@22.13.8)': dependencies: - '@microsoft/api-extractor-model': 7.28.13(@types/node@20.16.1) + '@microsoft/api-extractor-model': 7.28.13(@types/node@22.13.8) '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 4.0.2(@types/node@20.16.1) + '@rushstack/node-core-library': 4.0.2(@types/node@22.13.8) '@rushstack/rig-package': 0.5.2 - '@rushstack/terminal': 0.10.0(@types/node@20.16.1) - '@rushstack/ts-command-line': 4.19.1(@types/node@20.16.1) + '@rushstack/terminal': 0.10.0(@types/node@22.13.8) + '@rushstack/ts-command-line': 4.19.1(@types/node@22.13.8) lodash: 4.17.21 minimatch: 3.0.5 resolve: 1.22.8 @@ -17192,53 +16537,53 @@ snapshots: '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': optional: true - '@mui/base@5.0.0-beta.40(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)': + '@mui/base@5.0.0-beta.40(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.24.7 - '@floating-ui/react-dom': 2.1.0(react-dom@17.0.2)(react@17.0.2) + '@floating-ui/react-dom': 2.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mui/types': 7.2.14(@types/react@17.0.80) '@mui/utils': 5.15.20(@types/react@17.0.80)(react@17.0.2) '@popperjs/core': 2.11.8 - '@types/react': 17.0.80 clsx: 2.1.1 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) + optionalDependencies: + '@types/react': 17.0.80 - '@mui/base@5.0.0-beta.6(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)': + '@mui/base@5.0.0-beta.6(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@17.0.80) '@mui/utils': 5.15.14(@types/react@17.0.80)(react@17.0.2) '@popperjs/core': 2.11.8 - '@types/react': 17.0.80 clsx: 1.2.1 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-is: 18.3.1 + optionalDependencies: + '@types/react': 17.0.80 '@mui/core-downloads-tracker@5.15.18': {} - '@mui/icons-material@5.15.18(@mui/material@5.13.7)(@types/react@17.0.80)(react@17.0.2)': + '@mui/icons-material@5.15.18(@mui/material@5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 - '@mui/material': 5.13.7(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2) - '@types/react': 17.0.80 + '@mui/material': 5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react: 17.0.2 + optionalDependencies: + '@types/react': 17.0.80 - '@mui/material@5.13.7(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)': + '@mui/material@5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 - '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2) - '@mui/base': 5.0.0-beta.6(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2) + '@mui/base': 5.0.0-beta.6(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mui/core-downloads-tracker': 5.15.18 - '@mui/system': 5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react@17.0.2) + '@mui/system': 5.15.15(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) '@mui/types': 7.2.14(@types/react@17.0.80) '@mui/utils': 5.15.14(@types/react@17.0.80)(react@17.0.2) - '@types/react': 17.0.80 '@types/react-transition-group': 4.4.10 clsx: 1.2.1 csstype: 3.1.3 @@ -17246,114 +16591,126 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2) + react-transition-group: 4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) + '@types/react': 17.0.80 '@mui/private-theming@5.15.14(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 '@mui/utils': 5.15.14(@types/react@17.0.80)(react@17.0.2) - '@types/react': 17.0.80 prop-types: 15.8.1 react: 17.0.2 + optionalDependencies: + '@types/react': 17.0.80 '@mui/private-theming@5.15.20(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.7 '@mui/utils': 5.15.20(@types/react@17.0.80)(react@17.0.2) - '@types/react': 17.0.80 prop-types: 15.8.1 react: 17.0.2 + optionalDependencies: + '@types/react': 17.0.80 - '@mui/styled-engine@5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@17.0.2)': + '@mui/styled-engine@5.15.14(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2) csstype: 3.1.3 prop-types: 15.8.1 react: 17.0.2 + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) - '@mui/system@5.15.15(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react@17.0.2)': + '@mui/system@5.15.15(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 - '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2) '@mui/private-theming': 5.15.14(@types/react@17.0.80)(react@17.0.2) - '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@17.0.2) + '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(react@17.0.2) '@mui/types': 7.2.14(@types/react@17.0.80) '@mui/utils': 5.15.14(@types/react@17.0.80)(react@17.0.2) - '@types/react': 17.0.80 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 17.0.2 + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) + '@types/react': 17.0.80 - '@mui/system@5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react@17.0.2)': + '@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2) '@mui/private-theming': 5.15.20(@types/react@17.0.80)(react@17.0.2) - '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@17.0.2) + '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(react@17.0.2) '@mui/types': 7.2.14(@types/react@17.0.80) '@mui/utils': 5.15.20(@types/react@17.0.80)(react@17.0.2) - '@types/react': 17.0.80 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 17.0.2 + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) + '@types/react': 17.0.80 '@mui/types@7.2.14(@types/react@17.0.80)': - dependencies: + optionalDependencies: '@types/react': 17.0.80 '@mui/utils@5.15.14(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.5 '@types/prop-types': 15.7.12 - '@types/react': 17.0.80 prop-types: 15.8.1 react: 17.0.2 react-is: 18.3.1 + optionalDependencies: + '@types/react': 17.0.80 '@mui/utils@5.15.20(@types/react@17.0.80)(react@17.0.2)': dependencies: '@babel/runtime': 7.24.7 '@types/prop-types': 15.7.12 - '@types/react': 17.0.80 prop-types: 15.8.1 react: 17.0.2 react-is: 18.3.1 + optionalDependencies: + '@types/react': 17.0.80 - '@mui/x-date-pickers@7.7.1(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.7)(@types/react@17.0.80)(dayjs@1.10.7)(react-dom@17.0.2)(react@17.0.2)': + '@mui/x-date-pickers@7.7.1(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@mui/material@5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.80)(dayjs@1.10.7)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@17.0.80)(react@17.0.2) - '@mui/base': 5.0.0-beta.40(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2) - '@mui/material': 5.13.7(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@17.0.80)(react@17.0.2) + '@mui/base': 5.0.0-beta.40(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@mui/material': 5.13.7(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) '@mui/utils': 5.15.20(@types/react@17.0.80)(react@17.0.2) '@types/react-transition-group': 4.4.10 clsx: 2.1.1 - dayjs: 1.10.7 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2) + react-transition-group: 4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@17.0.80)(react@17.0.2) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2) + dayjs: 1.10.7 transitivePeerDependencies: - '@types/react' - '@ngtools/webpack@18.2.12(@angular/compiler-cli@18.2.13)(typescript@5.5.4)(webpack@5.91.0)': + '@ngtools/webpack@18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.91.0)': dependencies: - '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) typescript: 5.5.4 webpack: 5.91.0(webpack-cli@5.1.4) - '@ngtools/webpack@18.2.12(@angular/compiler-cli@18.2.13)(typescript@5.5.4)(webpack@5.94.0)': + '@ngtools/webpack@18.2.12(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.94.0(esbuild@0.23.0))': dependencies: - '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) typescript: 5.5.4 webpack: 5.94.0(esbuild@0.23.0) @@ -17619,11 +16976,11 @@ snapshots: '@octokit/auth-token@3.0.4': {} - '@octokit/core@4.2.4': + '@octokit/core@4.2.4(encoding@0.1.13)': dependencies: '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6 - '@octokit/request': 6.2.8 + '@octokit/graphql': 5.0.6(encoding@0.1.13) + '@octokit/request': 6.2.8(encoding@0.1.13) '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 before-after-hook: 2.2.3 @@ -17637,9 +16994,9 @@ snapshots: is-plain-object: 5.0.0 universal-user-agent: 6.0.1 - '@octokit/graphql@5.0.6': + '@octokit/graphql@5.0.6(encoding@0.1.13)': dependencies: - '@octokit/request': 6.2.8 + '@octokit/request': 6.2.8(encoding@0.1.13) '@octokit/types': 9.3.2 universal-user-agent: 6.0.1 transitivePeerDependencies: @@ -17653,18 +17010,18 @@ snapshots: '@octokit/plugin-enterprise-rest@6.0.1': {} - '@octokit/plugin-paginate-rest@3.1.0(@octokit/core@4.2.4)': + '@octokit/plugin-paginate-rest@3.1.0(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) '@octokit/types': 6.41.0 - '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4)': + '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) - '@octokit/plugin-rest-endpoint-methods@6.8.1(@octokit/core@4.2.4)': + '@octokit/plugin-rest-endpoint-methods@6.8.1(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) '@octokit/types': 8.2.1 deprecation: 2.3.1 @@ -17674,23 +17031,23 @@ snapshots: deprecation: 2.3.1 once: 1.4.0 - '@octokit/request@6.2.8': + '@octokit/request@6.2.8(encoding@0.1.13)': dependencies: '@octokit/endpoint': 7.0.6 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.6.7 + node-fetch: 2.6.7(encoding@0.1.13) universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - '@octokit/rest@19.0.3': + '@octokit/rest@19.0.3(encoding@0.1.13)': dependencies: - '@octokit/core': 4.2.4 - '@octokit/plugin-paginate-rest': 3.1.0(@octokit/core@4.2.4) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) - '@octokit/plugin-rest-endpoint-methods': 6.8.1(@octokit/core@4.2.4) + '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/plugin-paginate-rest': 3.1.0(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/plugin-rest-endpoint-methods': 6.8.1(@octokit/core@4.2.4(encoding@0.1.13)) transitivePeerDependencies: - encoding @@ -17735,22 +17092,27 @@ snapshots: glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.27.0 + optionalDependencies: rollup: 2.79.1 - '@rollup/plugin-inject@5.0.5': + '@rollup/plugin-inject@5.0.5(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@rollup/pluginutils': 5.1.0(rollup@4.22.4) estree-walker: 2.0.2 magic-string: 0.30.10 + optionalDependencies: + rollup: 4.22.4 '@rollup/plugin-json@5.0.2(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + optionalDependencies: rollup: 2.79.1 '@rollup/plugin-json@6.1.0(rollup@4.22.4)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + optionalDependencies: rollup: 4.22.4 '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': @@ -17761,6 +17123,7 @@ snapshots: is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 + optionalDependencies: rollup: 2.79.1 '@rollup/plugin-node-resolve@15.2.3(rollup@4.22.4)': @@ -17771,12 +17134,14 @@ snapshots: is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 + optionalDependencies: rollup: 4.22.4 '@rollup/plugin-replace@5.0.5(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@2.79.1) magic-string: 0.30.10 + optionalDependencies: rollup: 2.79.1 '@rollup/pluginutils@4.2.1': @@ -17789,6 +17154,7 @@ snapshots: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 + optionalDependencies: rollup: 2.79.1 '@rollup/pluginutils@5.1.0(rollup@4.22.4)': @@ -17796,6 +17162,7 @@ snapshots: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 + optionalDependencies: rollup: 4.22.4 '@rollup/rollup-android-arm-eabi@4.21.0': @@ -17902,40 +17269,42 @@ snapshots: '@rushstack/eslint-patch@1.10.4': {} - '@rushstack/node-core-library@4.0.2(@types/node@20.16.1)': + '@rushstack/node-core-library@4.0.2(@types/node@22.13.8)': dependencies: - '@types/node': 20.16.1 fs-extra: 7.0.1 import-lazy: 4.0.0 jju: 1.4.0 resolve: 1.22.8 semver: 7.5.4 z-schema: 5.0.5 + optionalDependencies: + '@types/node': 22.13.8 '@rushstack/rig-package@0.5.2': dependencies: resolve: 1.22.8 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.10.0(@types/node@20.16.1)': + '@rushstack/terminal@0.10.0(@types/node@22.13.8)': dependencies: - '@rushstack/node-core-library': 4.0.2(@types/node@20.16.1) - '@types/node': 20.16.1 + '@rushstack/node-core-library': 4.0.2(@types/node@22.13.8) supports-color: 8.1.1 + optionalDependencies: + '@types/node': 22.13.8 - '@rushstack/ts-command-line@4.19.1(@types/node@20.16.1)': + '@rushstack/ts-command-line@4.19.1(@types/node@22.13.8)': dependencies: - '@rushstack/terminal': 0.10.0(@types/node@20.16.1) + '@rushstack/terminal': 0.10.0(@types/node@22.13.8) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 transitivePeerDependencies: - '@types/node' - '@schematics/angular@18.2.12': + '@schematics/angular@18.2.12(chokidar@3.6.0)': dependencies: - '@angular-devkit/core': 18.2.12 - '@angular-devkit/schematics': 18.2.12 + '@angular-devkit/core': 18.2.12(chokidar@3.6.0) + '@angular-devkit/schematics': 18.2.12(chokidar@3.6.0) jsonc-parser: 3.3.1 transitivePeerDependencies: - chokidar @@ -18009,10 +17378,6 @@ snapshots: dependencies: type-detect: 4.0.8 - '@sinonjs/fake-timers@6.0.1': - dependencies: - '@sinonjs/commons': 1.8.6 - '@sinonjs/fake-timers@8.1.0': dependencies: '@sinonjs/commons': 1.8.6 @@ -18085,32 +17450,32 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/bonjour@3.5.13': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/chai@4.3.16': {} '@types/cheerio@0.22.35': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/connect@3.4.38': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/cookie@0.4.1': {} '@types/cors@2.8.17': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/enzyme@3.10.18': dependencies: @@ -18131,7 +17496,7 @@ snapshots: '@types/express-serve-static-core@4.19.1': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -18145,20 +17510,20 @@ snapshots: '@types/fs-extra@8.1.5': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/fs-extra@9.0.13': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/hoist-non-react-statics@3.3.5': dependencies: @@ -18171,11 +17536,11 @@ snapshots: '@types/http-proxy@1.17.14': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/http-proxy@1.17.15': dependencies: - '@types/node': 20.16.1 + '@types/node': 22.13.8 '@types/istanbul-lib-coverage@2.0.6': {} @@ -18196,7 +17561,7 @@ snapshots: '@types/jsdom@21.1.7': dependencies: - '@types/node': 20.16.1 + '@types/node': 22.13.8 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 @@ -18220,21 +17585,13 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 20.16.1 + '@types/node': 22.13.8 '@types/node-forge@1.3.11': dependencies: - '@types/node': 18.19.33 - - '@types/node@18.19.33': - dependencies: - undici-types: 5.26.5 + '@types/node': 22.13.8 - '@types/node@20.16.1': - dependencies: - undici-types: 6.19.8 - - '@types/node@22.10.1': + '@types/node@22.13.8': dependencies: undici-types: 6.20.0 @@ -18308,7 +17665,7 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/serve-index@1.9.4': dependencies: @@ -18317,12 +17674,12 @@ snapshots: '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/send': 0.17.4 '@types/sockjs@0.3.36': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/splitpanes@2.2.6': dependencies: @@ -18342,37 +17699,15 @@ snapshots: '@types/ws@8.5.10': dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 '@types/yargs-parser@21.0.3': {} - '@types/yargs@15.0.19': - dependencies: - '@types/yargs-parser': 21.0.3 - '@types/yargs@16.0.9': dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@4.9.5)': - dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.57.0 - graphemer: 1.4.0 - ignore: 5.3.1 - natural-compare-lite: 1.4.0 - semver: 7.6.2 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.10.0 '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4) @@ -18386,11 +17721,12 @@ snapshots: natural-compare-lite: 1.4.0 semver: 7.6.2 tsutils: 3.21.0(typescript@5.5.4) + optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.4.5) @@ -18403,21 +17739,11 @@ snapshots: ignore: 5.3.1 natural-compare: 1.4.0 ts-api-utils: 1.3.0(typescript@5.4.5) + optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.57.0 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 @@ -18425,6 +17751,7 @@ snapshots: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4) debug: 4.3.4 eslint: 8.57.0 + optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color @@ -18437,6 +17764,7 @@ snapshots: '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.3.7 eslint: 8.57.0 + optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -18451,17 +17779,6 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.57.0 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4) @@ -18469,6 +17786,7 @@ snapshots: debug: 4.3.4 eslint: 8.57.0 tsutils: 3.21.0(typescript@5.5.4) + optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color @@ -18480,6 +17798,7 @@ snapshots: debug: 4.3.7 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) + optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -18488,19 +17807,6 @@ snapshots: '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.6.2 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.4)': dependencies: '@typescript-eslint/types': 5.62.0 @@ -18510,6 +17816,7 @@ snapshots: is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@5.5.4) + optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color @@ -18524,6 +17831,7 @@ snapshots: minimatch: 9.0.4 semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) + optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -18538,25 +17846,11 @@ snapshots: minimatch: 9.0.4 semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.5.4) + optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@4.9.5)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - eslint: 8.57.0 - eslint-scope: 5.1.1 - semver: 7.6.2 - transitivePeerDependencies: - - supports-color - - typescript - '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) @@ -18608,9 +17902,9 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vercel/nft@0.26.5': + '@vercel/nft@0.26.5(encoding@0.1.13)': dependencies: - '@mapbox/node-pre-gyp': 1.0.11 + '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) '@rollup/pluginutils': 4.2.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) @@ -18626,16 +17920,16 @@ snapshots: - encoding - supports-color - '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.6)': + '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))': dependencies: - vite: 5.4.6(@types/node@18.19.33)(less@4.2.0)(sass@1.77.6)(terser@5.31.6) + vite: 5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) - '@vitejs/plugin-vue@5.1.2(vite@5.4.2)(vue@3.4.27)': + '@vitejs/plugin-vue@5.1.2(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))(vue@3.4.27(typescript@5.4.5))': dependencies: - vite: 5.4.2(@types/node@20.16.1) + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) vue: 3.4.27(typescript@5.4.5) - '@vitest/coverage-v8@1.6.0(vitest@1.6.0)': + '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@22.13.8)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -18650,7 +17944,7 @@ snapshots: std-env: 3.7.0 strip-literal: 2.1.0 test-exclude: 6.0.0 - vitest: 1.6.0(@types/node@20.16.1)(jsdom@24.1.1) + vitest: 1.6.0(@types/node@22.13.8)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) transitivePeerDependencies: - supports-color @@ -18714,7 +18008,6 @@ snapshots: '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) @@ -18726,6 +18019,8 @@ snapshots: camelcase: 6.3.0 html-tags: 3.3.1 svg-tags: 1.0.0 + optionalDependencies: + '@babel/core': 7.24.5 transitivePeerDependencies: - supports-color @@ -18748,7 +18043,7 @@ snapshots: lodash.kebabcase: 4.1.1 svg-tags: 1.0.0 - '@vue/babel-preset-app@5.0.8(@babel/core@7.24.5)(core-js@3.37.1)(vue@3.4.27)': + '@vue/babel-preset-app@5.0.8(@babel/core@7.24.5)(core-js@3.37.1)(vue@3.4.27(typescript@5.5.4))': dependencies: '@babel/core': 7.24.5 '@babel/helper-compilation-targets': 7.23.6 @@ -18761,16 +18056,17 @@ snapshots: '@babel/preset-env': 7.24.5(@babel/core@7.24.5) '@babel/runtime': 7.24.5 '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5) - '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.24.5)(vue@3.4.27) + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.24.5)(vue@3.4.27(typescript@5.5.4)) babel-plugin-dynamic-import-node: 2.3.3 - core-js: 3.37.1 core-js-compat: 3.37.1 semver: 7.6.2 + optionalDependencies: + core-js: 3.37.1 vue: 3.4.27(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vue/babel-preset-jsx@1.4.0(@babel/core@7.24.5)(vue@3.4.27)': + '@vue/babel-preset-jsx@1.4.0(@babel/core@7.24.5)(vue@3.4.27(typescript@5.5.4))': dependencies: '@babel/core': 7.24.5 '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 @@ -18781,6 +18077,7 @@ snapshots: '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.24.5) '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.24.5) '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.24.5) + optionalDependencies: vue: 3.4.27(typescript@5.5.4) '@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.24.5)': @@ -18822,12 +18119,12 @@ snapshots: '@vue/cli-overlay@5.0.8': {} - '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8)(core-js@3.37.1)(vue@3.4.27)': + '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(core-js@3.37.1)(encoding@0.1.13)(vue@3.4.27(typescript@5.5.4))': dependencies: '@babel/core': 7.24.5 - '@vue/babel-preset-app': 5.0.8(@babel/core@7.24.5)(core-js@3.37.1)(vue@3.4.27) - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) - '@vue/cli-shared-utils': 5.0.8 + '@vue/babel-preset-app': 5.0.8(@babel/core@7.24.5)(core-js@3.37.1)(vue@3.4.27(typescript@5.5.4)) + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) + '@vue/cli-shared-utils': 5.0.8(encoding@0.1.13) babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0) thread-loader: 3.0.4(webpack@5.91.0) webpack: 5.91.0(webpack-cli@5.1.4) @@ -18841,27 +18138,29 @@ snapshots: - vue - webpack-cli - '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8)': + '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13)': dependencies: - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) - '@vue/cli-shared-utils': 5.0.8 + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) + '@vue/cli-shared-utils': 5.0.8(encoding@0.1.13) transitivePeerDependencies: - encoding - '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8)(eslint@8.57.0)(typescript@5.5.4)(vue@3.4.27)': + '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13)(eslint@8.57.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))': dependencies: '@babel/core': 7.24.5 '@types/webpack-env': 1.18.5 - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) - '@vue/cli-shared-utils': 5.0.8 + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) + '@vue/cli-shared-utils': 5.0.8(encoding@0.1.13) babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0) - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.5.4)(webpack@5.91.0) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)(webpack@5.91.0) globby: 11.1.0 thread-loader: 3.0.4(webpack@5.91.0) ts-loader: 9.5.1(typescript@5.5.4)(webpack@5.91.0) typescript: 5.5.4 vue: 3.4.27(typescript@5.5.4) webpack: 5.91.0(webpack-cli@5.1.4) + optionalDependencies: + vue-template-compiler: 2.7.16 transitivePeerDependencies: - '@swc/core' - encoding @@ -18871,10 +18170,10 @@ snapshots: - uglify-js - webpack-cli - '@vue/cli-plugin-unit-mocha@5.0.8(@vue/cli-service@5.0.8)(webpack@5.94.0)': + '@vue/cli-plugin-unit-mocha@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13)(webpack@5.94.0)': dependencies: - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) - '@vue/cli-shared-utils': 5.0.8 + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) + '@vue/cli-shared-utils': 5.0.8(encoding@0.1.13) jsdom: 18.1.1 jsdom-global: 3.0.2(jsdom@18.1.1) mocha: 8.4.0 @@ -18887,22 +18186,22 @@ snapshots: - utf-8-validate - webpack - '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8)': + '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))': dependencies: - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27) + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3) - '@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(lodash@4.17.21)(prettier@2.8.8)(vue@3.4.27)': + '@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3)': dependencies: '@babel/helper-compilation-targets': 7.23.6 '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.91.0) '@soda/get-current-script': 1.0.2 '@types/minimist': 1.2.5 '@vue/cli-overlay': 5.0.8 - '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8) - '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8) - '@vue/cli-shared-utils': 5.0.8 - '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21) - '@vue/vue-loader-v15': vue-loader@15.11.1(@vue/compiler-sfc@3.4.27)(css-loader@6.11.0)(lodash@4.17.21)(prettier@2.8.8)(webpack@5.91.0) + '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3))(encoding@0.1.13) + '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.27)(ejs@3.1.10)(encoding@0.1.13)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@5.5.4))(webpack-sources@3.2.3)) + '@vue/cli-shared-utils': 5.0.8(encoding@0.1.13) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21) + '@vue/vue-loader-v15': vue-loader@15.11.1(@vue/compiler-sfc@3.4.27)(css-loader@6.11.0(webpack@5.91.0))(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(webpack@5.91.0) '@vue/web-component-wrapper': 1.3.0 acorn: 8.11.3 acorn-walk: 8.3.2 @@ -18914,7 +18213,7 @@ snapshots: clipboardy: 2.3.0 cliui: 7.0.4 copy-webpack-plugin: 9.1.0(webpack@5.91.0) - css-loader: 6.11.0(webpack@5.94.0) + css-loader: 6.11.0(webpack@5.91.0) css-minimizer-webpack-plugin: 3.4.1(webpack@5.91.0) cssnano: 5.1.15(postcss@8.4.38) debug: 4.3.4 @@ -18939,7 +18238,7 @@ snapshots: ssri: 8.0.1 terser-webpack-plugin: 5.3.10(webpack@5.91.0) thread-loader: 3.0.4(webpack@5.91.0) - vue-loader: 17.4.2(@vue/compiler-sfc@3.4.27)(vue@3.4.27)(webpack@5.91.0) + vue-loader: 17.4.2(@vue/compiler-sfc@3.4.27)(vue@3.4.27(typescript@5.5.4))(webpack@5.91.0) vue-style-loader: 4.1.3 webpack: 5.91.0(webpack-cli@5.1.4) webpack-bundle-analyzer: 4.10.2 @@ -18948,6 +18247,9 @@ snapshots: webpack-merge: 5.10.0 webpack-virtual-modules: 0.4.6 whatwg-fetch: 3.6.20 + optionalDependencies: + vue-template-compiler: 2.7.16 + webpack-sources: 3.2.3 transitivePeerDependencies: - '@parcel/css' - '@rspack/core' @@ -19018,7 +18320,7 @@ snapshots: - webpack-cli - whiskers - '@vue/cli-shared-utils@5.0.8': + '@vue/cli-shared-utils@5.0.8(encoding@0.1.13)': dependencies: '@achrinza/node-ipc': 9.2.8 chalk: 4.1.2 @@ -19026,7 +18328,7 @@ snapshots: joi: 17.13.1 launch-editor: 2.6.1 lru-cache: 6.0.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) open: 8.4.2 ora: 5.4.1 read-pkg: 5.2.0 @@ -19078,9 +18380,9 @@ snapshots: de-indent: 1.0.2 he: 1.2.0 - '@vue/component-compiler-utils@3.3.0(lodash@4.17.21)': + '@vue/component-compiler-utils@3.3.0(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21)': dependencies: - consolidate: 0.15.1(lodash@4.17.21) + consolidate: 0.15.1(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21) hash-sum: 1.0.2 lru-cache: 4.1.5 merge-source-map: 1.1.0 @@ -19145,34 +18447,36 @@ snapshots: - walrus - whiskers - '@vue/eslint-config-prettier@9.0.0(eslint@8.57.0)(prettier@3.3.3)': + '@vue/eslint-config-prettier@9.0.0(@types/eslint@8.56.10)(eslint@8.57.0)(prettier@3.3.3)': dependencies: eslint: 8.57.0 eslint-config-prettier: 9.1.0(eslint@8.57.0) - eslint-plugin-prettier: 5.2.1(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.3.3) + eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3) prettier: 3.3.3 transitivePeerDependencies: - '@types/eslint' - '@vue/eslint-config-typescript@11.0.3(eslint-plugin-vue@9.26.0)(eslint@8.57.0)(typescript@5.5.4)': + '@vue/eslint-config-typescript@11.0.3(eslint-plugin-vue@9.26.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4) eslint: 8.57.0 eslint-plugin-vue: 9.26.0(eslint@8.57.0) - typescript: 5.5.4 vue-eslint-parser: 9.4.2(eslint@8.57.0) + optionalDependencies: + typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@vue/eslint-config-typescript@13.0.0(eslint-plugin-vue@9.26.0)(eslint@8.57.0)(typescript@5.4.5)': + '@vue/eslint-config-typescript@13.0.0(eslint-plugin-vue@9.26.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 eslint-plugin-vue: 9.26.0(eslint@8.57.0) - typescript: 5.4.5 vue-eslint-parser: 9.4.2(eslint@8.57.0) + optionalDependencies: + typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -19186,8 +18490,9 @@ snapshots: minimatch: 9.0.4 muggle-string: 0.3.1 path-browserify: 1.0.1 - typescript: 5.4.5 vue-template-compiler: 2.7.16 + optionalDependencies: + typescript: 5.4.5 '@vue/language-core@2.0.29(typescript@5.4.5)': dependencies: @@ -19199,6 +18504,7 @@ snapshots: minimatch: 9.0.4 muggle-string: 0.4.1 path-browserify: 1.0.1 + optionalDependencies: typescript: 5.4.5 '@vue/reactivity@3.4.27': @@ -19216,7 +18522,13 @@ snapshots: '@vue/shared': 3.4.27 csstype: 3.1.3 - '@vue/server-renderer@3.4.27(vue@3.4.27)': + '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.4.5))': + dependencies: + '@vue/compiler-ssr': 3.4.27 + '@vue/shared': 3.4.27 + vue: 3.4.27(typescript@5.4.5) + + '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.5.4))': dependencies: '@vue/compiler-ssr': 3.4.27 '@vue/shared': 3.4.27 @@ -19231,7 +18543,7 @@ snapshots: '@vue/tsconfig@0.5.1': {} - '@vue/vue3-jest@27.0.0(@babel/core@7.24.5)(babel-jest@27.5.1)(jest@27.5.1)(ts-jest@27.1.5)(typescript@5.5.4)(vue@3.4.27)': + '@vue/vue3-jest@27.0.0(@babel/core@7.24.5)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(ts-jest@27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4))(typescript@5.5.4)(vue@3.4.27(typescript@5.5.4))': dependencies: '@babel/core': 7.24.5 '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) @@ -19239,20 +18551,21 @@ snapshots: chalk: 2.4.2 convert-source-map: 1.9.0 css-tree: 2.3.1 - jest: 27.5.1(ts-node@10.9.2) + jest: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) source-map: 0.5.6 - ts-jest: 27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1)(jest@27.5.1)(typescript@5.5.4) tsconfig: 7.0.0 - typescript: 5.5.4 vue: 3.4.27(typescript@5.5.4) + optionalDependencies: + ts-jest: 27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4) + typescript: 5.5.4 '@vue/web-component-wrapper@1.3.0': {} - '@vuetify/loader-shared@2.0.3(vue@3.4.27)(vuetify@3.7.0)': + '@vuetify/loader-shared@2.0.3(vue@3.4.27(typescript@5.4.5))(vuetify@3.7.0)': dependencies: upath: 2.0.1 vue: 3.4.27(typescript@5.4.5) - vuetify: 3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27) + vuetify: 3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27(typescript@5.4.5)) '@webassemblyjs/ast@1.12.1': dependencies: @@ -19344,9 +18657,10 @@ snapshots: dependencies: webpack: 5.91.0(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-dev-server@4.15.2)(webpack@5.91.0) + optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@5.1.4)(webpack@5.91.0) - '@wojtekmaj/enzyme-adapter-react-17@0.6.7(enzyme@3.11.0)(react-dom@17.0.2)(react@17.0.2)': + '@wojtekmaj/enzyme-adapter-react-17@0.6.7(enzyme@3.11.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@wojtekmaj/enzyme-adapter-utils': 0.1.4(react@17.0.2) enzyme: 3.11.0 @@ -19467,11 +18781,11 @@ snapshots: ajv: 6.12.6 ajv-formats@2.1.1(ajv@8.13.0): - dependencies: + optionalDependencies: ajv: 8.13.0 ajv-formats@3.0.1(ajv@8.17.1): - dependencies: + optionalDependencies: ajv: 8.17.1 ajv-i18n@4.2.0(ajv@8.17.1): @@ -19554,13 +18868,6 @@ snapshots: any-promise@1.3.0: {} - anymatch@2.0.0: - dependencies: - micromatch: 3.1.10 - normalize-path: 2.1.1 - transitivePeerDependencies: - - supports-color - anymatch@3.1.3: dependencies: normalize-path: 3.0.0 @@ -19604,12 +18911,6 @@ snapshots: aria-query@5.3.2: {} - arr-diff@4.0.0: {} - - arr-flatten@1.1.0: {} - - arr-union@3.1.0: {} - array-buffer-byte-length@1.0.1: dependencies: call-bind: 1.0.7 @@ -19640,8 +18941,6 @@ snapshots: array-uniq@1.0.3: {} - array-unique@0.3.2: {} - array.prototype.filter@1.0.4: dependencies: call-bind: 1.0.7 @@ -19741,8 +19040,6 @@ snapshots: assertion-error@1.1.0: {} - assign-symbols@1.0.0: {} - ast-types@0.9.6: {} async-sema@3.1.1: {} @@ -19779,9 +19076,9 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - ava@6.1.3: + ava@6.1.3(encoding@0.1.13): dependencies: - '@vercel/nft': 0.26.5 + '@vercel/nft': 0.26.5(encoding@0.1.13) acorn: 8.11.3 acorn-walk: 8.3.2 ansi-styles: 6.2.1 @@ -19843,47 +19140,34 @@ snapshots: axobject-query@4.1.0: {} - babel-jest@26.6.3(@babel/core@7.24.5): + babel-jest@27.5.1(@babel/core@7.24.5): dependencies: '@babel/core': 7.24.5 - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 26.6.2(@babel/core@7.24.5) + babel-preset-jest: 27.5.1(@babel/core@7.24.5) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-jest@26.6.3(@babel/core@7.25.2): + babel-jest@27.5.1(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 - '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 26.6.2(@babel/core@7.25.2) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - - babel-jest@27.5.1(@babel/core@7.24.5): - dependencies: - '@babel/core': 7.24.5 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1(@babel/core@7.24.5) + babel-preset-jest: 27.5.1(@babel/core@7.25.2) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color + optional: true babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0): dependencies: @@ -19903,7 +19187,7 @@ snapshots: schema-utils: 2.7.1 webpack: 5.91.0(webpack-cli@5.1.4) - babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.94.0): + babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.94.0(esbuild@0.23.0)): dependencies: '@babel/core': 7.25.2 find-cache-dir: 4.0.0 @@ -19924,13 +19208,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-jest-hoist@26.6.2: - dependencies: - '@babel/template': 7.25.9 - '@babel/types': 7.26.0 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.6 - babel-plugin-jest-hoist@27.5.1: dependencies: '@babel/template': 7.24.0 @@ -20023,24 +19300,20 @@ snapshots: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2) + optional: true - babel-preset-jest@26.6.2(@babel/core@7.24.5): + babel-preset-jest@27.5.1(@babel/core@7.24.5): dependencies: '@babel/core': 7.24.5 - babel-plugin-jest-hoist: 26.6.2 + babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) - babel-preset-jest@26.6.2(@babel/core@7.25.2): - dependencies: - '@babel/core': 7.25.2 - babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2) - - babel-preset-jest@27.5.1(@babel/core@7.24.5): + babel-preset-jest@27.5.1(@babel/core@7.25.2): dependencies: - '@babel/core': 7.24.5 + '@babel/core': 7.25.2 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2) + optional: true balanced-match@1.0.2: {} @@ -20048,16 +19321,6 @@ snapshots: base64id@2.0.0: {} - base@0.11.2: - dependencies: - cache-base: 1.0.1 - class-utils: 0.3.6 - component-emitter: 1.3.1 - define-property: 1.0.0 - isobject: 3.0.1 - mixin-deep: 1.3.2 - pascalcase: 0.1.1 - basic-auth@2.0.1: dependencies: safe-buffer: 5.1.2 @@ -20140,21 +19403,6 @@ snapshots: dependencies: balanced-match: 1.0.2 - braces@2.3.2: - dependencies: - arr-flatten: 1.1.0 - array-unique: 0.3.2 - extend-shallow: 2.0.1 - fill-range: 4.0.0 - isobject: 3.0.1 - repeat-element: 1.1.4 - snapdragon: 0.8.2 - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -20345,18 +19593,6 @@ snapshots: tar: 6.2.1 unique-filename: 3.0.0 - cache-base@1.0.1: - dependencies: - collection-visit: 1.0.0 - component-emitter: 1.3.1 - get-value: 2.0.6 - has-value: 1.0.0 - isobject: 3.0.1 - set-value: 2.0.1 - to-object-path: 0.3.0 - union-value: 1.0.1 - unset-value: 1.0.0 - caching-transform@4.0.0: dependencies: hasha: 5.2.2 @@ -20407,10 +19643,6 @@ snapshots: caniuse-lite@1.0.30001685: {} - capture-exit@2.0.0: - dependencies: - rsvp: 4.8.5 - case-sensitive-paths-webpack-plugin@2.4.0: {} caseless@0.12.0: {} @@ -20536,17 +19768,8 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 - cjs-module-lexer@0.6.0: {} - cjs-module-lexer@1.3.1: {} - class-utils@0.3.6: - dependencies: - arr-union: 3.1.0 - define-property: 0.2.5 - isobject: 3.0.1 - static-extend: 0.1.2 - clean-css@4.2.4: dependencies: source-map: 0.6.1 @@ -20659,11 +19882,6 @@ snapshots: collect-v8-coverage@1.0.2: {} - collection-visit@1.0.0: - dependencies: - map-visit: 1.0.0 - object-visit: 1.0.1 - color-convert@1.9.3: dependencies: color-name: 1.1.3 @@ -20803,9 +20021,12 @@ snapshots: console-control-strings@1.1.0: {} - consolidate@0.15.1(lodash@4.17.21): + consolidate@0.15.1(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21): dependencies: bluebird: 3.7.2 + optionalDependencies: + ejs: 3.1.10 + handlebars: 4.7.8 lodash: 4.17.21 constants-browserify@1.0.0: {} @@ -20904,8 +20125,6 @@ snapshots: rimraf: 2.7.1 run-queue: 1.0.3 - copy-descriptor@0.1.1: {} - copy-webpack-plugin@11.0.0(webpack@5.91.0): dependencies: fast-glob: 3.3.2 @@ -20916,7 +20135,7 @@ snapshots: serialize-javascript: 6.0.2 webpack: 5.91.0(webpack-cli@5.1.4) - copy-webpack-plugin@12.0.2(webpack@5.94.0): + copy-webpack-plugin@12.0.2(webpack@5.94.0(esbuild@0.23.0)): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -21017,6 +20236,7 @@ snapshots: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 + optionalDependencies: typescript: 5.5.4 coveralls@3.1.1: @@ -21103,10 +20323,6 @@ snapshots: dependencies: postcss: 8.4.41 - css-declaration-sorter@6.4.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - css-loader@3.6.0(webpack@5.91.0): dependencies: camelcase: 5.3.1 @@ -21124,7 +20340,7 @@ snapshots: semver: 6.3.1 webpack: 5.91.0(webpack-cli@5.1.4) - css-loader@6.11.0(webpack@5.94.0): + css-loader@6.11.0(webpack@5.91.0): dependencies: icss-utils: 5.1.0(postcss@8.4.41) postcss: 8.4.41 @@ -21134,9 +20350,10 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.41) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.94.0 + optionalDependencies: + webpack: 5.91.0(webpack-cli@5.1.4) - css-loader@7.1.2(webpack@5.94.0): + css-loader@7.1.2(webpack@5.94.0(esbuild@0.23.0)): dependencies: icss-utils: 5.1.0(postcss@8.4.41) postcss: 8.4.41 @@ -21146,6 +20363,7 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.41) postcss-value-parser: 4.2.0 semver: 7.6.3 + optionalDependencies: webpack: 5.94.0(esbuild@0.23.0) css-minimizer-webpack-plugin@3.4.1(webpack@5.91.0): @@ -21267,39 +20485,6 @@ snapshots: postcss-svgo: 5.1.0(postcss@8.4.41) postcss-unique-selectors: 5.1.1(postcss@8.4.41) - cssnano-preset-default@5.2.14(postcss@8.4.49): - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.49) - cssnano-utils: 3.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-calc: 8.2.4(postcss@8.4.49) - postcss-colormin: 5.3.1(postcss@8.4.49) - postcss-convert-values: 5.1.3(postcss@8.4.49) - postcss-discard-comments: 5.1.2(postcss@8.4.49) - postcss-discard-duplicates: 5.1.0(postcss@8.4.49) - postcss-discard-empty: 5.1.1(postcss@8.4.49) - postcss-discard-overridden: 5.1.0(postcss@8.4.49) - postcss-merge-longhand: 5.1.7(postcss@8.4.49) - postcss-merge-rules: 5.1.4(postcss@8.4.49) - postcss-minify-font-values: 5.1.0(postcss@8.4.49) - postcss-minify-gradients: 5.1.1(postcss@8.4.49) - postcss-minify-params: 5.1.4(postcss@8.4.49) - postcss-minify-selectors: 5.2.1(postcss@8.4.49) - postcss-normalize-charset: 5.1.0(postcss@8.4.49) - postcss-normalize-display-values: 5.1.0(postcss@8.4.49) - postcss-normalize-positions: 5.1.1(postcss@8.4.49) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.49) - postcss-normalize-string: 5.1.0(postcss@8.4.49) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.49) - postcss-normalize-unicode: 5.1.1(postcss@8.4.49) - postcss-normalize-url: 5.1.0(postcss@8.4.49) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.49) - postcss-ordered-values: 5.1.3(postcss@8.4.49) - postcss-reduce-initial: 5.1.2(postcss@8.4.49) - postcss-reduce-transforms: 5.1.0(postcss@8.4.49) - postcss-svgo: 5.1.0(postcss@8.4.49) - postcss-unique-selectors: 5.1.1(postcss@8.4.49) - cssnano-utils@3.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -21308,10 +20493,6 @@ snapshots: dependencies: postcss: 8.4.41 - cssnano-utils@3.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - cssnano@5.1.15(postcss@8.4.38): dependencies: cssnano-preset-default: 5.2.14(postcss@8.4.38) @@ -21326,13 +20507,6 @@ snapshots: postcss: 8.4.41 yaml: 1.10.2 - cssnano@5.1.15(postcss@8.4.49): - dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.49) - lilconfig: 2.1.0 - postcss: 8.4.49 - yaml: 1.10.2 - csso@4.2.0: dependencies: css-tree: 1.1.3 @@ -21439,6 +20613,7 @@ snapshots: debug@4.3.1(supports-color@8.1.1): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 8.1.1 debug@4.3.4: @@ -21509,19 +20684,6 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 - define-property@0.2.5: - dependencies: - is-descriptor: 0.1.7 - - define-property@1.0.0: - dependencies: - is-descriptor: 1.0.3 - - define-property@2.0.2: - dependencies: - is-descriptor: 1.0.3 - isobject: 3.0.1 - del@2.2.2: dependencies: globby: 5.0.0 @@ -21577,8 +20739,6 @@ snapshots: di@0.0.1: {} - diff-sequences@26.6.2: {} - diff-sequences@27.5.1: {} diff-sequences@29.6.3: {} @@ -21739,8 +20899,6 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - emittery@0.7.2: {} - emittery@0.8.1: {} emittery@1.0.3: {} @@ -21772,7 +20930,7 @@ snapshots: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.17 - '@types/node': 18.19.33 + '@types/node': 22.13.8 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -22089,18 +21247,18 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4) debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 @@ -22109,7 +21267,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -22119,6 +21277,8 @@ snapshots: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -22131,20 +21291,23 @@ snapshots: prettier: 2.8.8 prettier-linter-helpers: 1.0.0 - eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8): + eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8): dependencies: eslint: 8.57.0 - eslint-config-prettier: 8.10.0(eslint@8.57.0) prettier: 2.8.8 prettier-linter-helpers: 1.0.0 + optionalDependencies: + eslint-config-prettier: 8.10.0(eslint@8.57.0) - eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3): dependencies: eslint: 8.57.0 - eslint-config-prettier: 9.1.0(eslint@8.57.0) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 + optionalDependencies: + '@types/eslint': 8.56.10 + eslint-config-prettier: 9.1.0(eslint@8.57.0) eslint-plugin-react@7.34.1(eslint@8.57.0): dependencies: @@ -22168,7 +21331,7 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.11 - eslint-plugin-vue-scoped-css@2.8.1(eslint@8.57.0)(vue-eslint-parser@9.4.2): + eslint-plugin-vue-scoped-css@2.8.1(eslint@8.57.0)(vue-eslint-parser@9.4.2(eslint@8.57.0)): dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) eslint: 8.57.0 @@ -22304,8 +21467,6 @@ snapshots: md5.js: 1.3.5 safe-buffer: 5.2.1 - exec-sh@0.3.6: {} - execa@1.0.0: dependencies: cross-spawn: 6.0.5 @@ -22316,18 +21477,6 @@ snapshots: signal-exit: 3.0.7 strip-eof: 1.0.0 - execa@4.1.0: - dependencies: - cross-spawn: 7.0.3 - get-stream: 5.2.0 - human-signals: 1.1.1 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - execa@5.0.0: dependencies: cross-spawn: 7.0.3 @@ -22366,27 +21515,6 @@ snapshots: exit@0.1.2: {} - expand-brackets@2.1.4: - dependencies: - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - posix-character-classes: 0.1.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - - expect@26.6.2: - dependencies: - '@jest/types': 26.6.2 - ansi-styles: 4.3.0 - jest-get-type: 26.3.0 - jest-matcher-utils: 26.6.2 - jest-message-util: 26.6.2 - jest-regex-util: 26.0.0 - expect@27.5.1: dependencies: '@jest/types': 27.5.1 @@ -22432,15 +21560,6 @@ snapshots: transitivePeerDependencies: - supports-color - extend-shallow@2.0.1: - dependencies: - is-extendable: 0.1.1 - - extend-shallow@3.0.2: - dependencies: - assign-symbols: 1.0.0 - is-extendable: 1.0.1 - extend@3.0.2: {} external-editor@3.1.0: @@ -22449,19 +21568,6 @@ snapshots: iconv-lite: 0.4.24 tmp: 0.0.33 - extglob@2.0.4: - dependencies: - array-unique: 0.3.2 - define-property: 1.0.0 - expand-brackets: 2.1.4 - extend-shallow: 2.0.1 - fragment-cache: 0.2.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - extract-from-css@0.4.4: dependencies: css: 2.2.4 @@ -22538,13 +21644,6 @@ snapshots: dependencies: minimatch: 5.1.6 - fill-range@4.0.0: - dependencies: - extend-shallow: 2.0.1 - is-number: 3.0.0 - repeat-string: 1.6.1 - to-regex-range: 2.1.1 - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -22633,19 +21732,17 @@ snapshots: readable-stream: 2.3.8 follow-redirects@1.15.6(debug@4.3.4): - dependencies: + optionalDependencies: debug: 4.3.4 follow-redirects@1.15.6(debug@4.3.7): - dependencies: + optionalDependencies: debug: 4.3.7 for-each@0.3.3: dependencies: is-callable: 1.2.7 - for-in@1.0.2: {} - foreground-child@2.0.0: dependencies: cross-spawn: 7.0.3 @@ -22658,7 +21755,7 @@ snapshots: forever-agent@0.6.1: {} - fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.5.4)(webpack@5.91.0): + fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)(webpack@5.91.0): dependencies: '@babel/code-frame': 7.24.2 '@types/json-schema': 7.0.15 @@ -22666,7 +21763,6 @@ snapshots: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 8.57.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -22676,6 +21772,9 @@ snapshots: tapable: 1.1.3 typescript: 5.5.4 webpack: 5.91.0(webpack-cli@5.1.4) + optionalDependencies: + eslint: 8.57.0 + vue-template-compiler: 2.7.16 form-data@2.3.3: dependencies: @@ -22706,10 +21805,6 @@ snapshots: fraction.js@4.3.7: {} - fragment-cache@0.2.1: - dependencies: - map-cache: 0.2.2 - fresh@0.5.2: {} from2@2.3.0: @@ -22859,10 +21954,6 @@ snapshots: dependencies: pump: 3.0.0 - get-stream@5.2.0: - dependencies: - pump: 3.0.0 - get-stream@6.0.0: {} get-stream@6.0.1: {} @@ -22875,8 +21966,6 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.4 - get-value@2.0.6: {} - getpass@0.1.7: dependencies: assert-plus: 1.0.0 @@ -23136,25 +22225,6 @@ snapshots: has-unicode@2.0.1: {} - has-value@0.3.1: - dependencies: - get-value: 2.0.6 - has-values: 0.1.4 - isobject: 2.1.0 - - has-value@1.0.0: - dependencies: - get-value: 2.0.6 - has-values: 1.0.0 - isobject: 3.0.1 - - has-values@0.1.4: {} - - has-values@1.0.0: - dependencies: - is-number: 3.0.0 - kind-of: 4.0.0 - has@1.0.4: {} hash-base@3.0.4: @@ -23293,6 +22363,7 @@ snapshots: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 + optionalDependencies: webpack: 5.91.0(webpack-cli@5.1.4) htmlparser2@6.1.0: @@ -23353,14 +22424,27 @@ snapshots: transitivePeerDependencies: - supports-color - http-proxy-middleware@2.0.6(@types/express@4.17.21)(debug@4.3.4): + http-proxy-middleware@2.0.6(@types/express@4.17.21): dependencies: + '@types/http-proxy': 1.17.14 + http-proxy: 1.18.1 + is-glob: 4.0.3 + is-plain-obj: 3.0.0 + micromatch: 4.0.7 + optionalDependencies: '@types/express': 4.17.21 + transitivePeerDependencies: + - debug + + http-proxy-middleware@2.0.6(@types/express@4.17.21)(debug@4.3.4): + dependencies: '@types/http-proxy': 1.17.14 http-proxy: 1.18.1(debug@4.3.4) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 + optionalDependencies: + '@types/express': 4.17.21 transitivePeerDependencies: - debug @@ -23375,6 +22459,14 @@ snapshots: transitivePeerDependencies: - supports-color + http-proxy@1.18.1: + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.6(debug@4.3.4) + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + http-proxy@1.18.1(debug@4.3.4): dependencies: eventemitter3: 4.0.7 @@ -23398,7 +22490,7 @@ snapshots: corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.3.4) + http-proxy: 1.18.1 mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 @@ -23439,8 +22531,6 @@ snapshots: transitivePeerDependencies: - supports-color - human-signals@1.1.1: {} - human-signals@2.1.0: {} human-signals@5.0.0: {} @@ -23465,13 +22555,13 @@ snapshots: dependencies: postcss: 7.0.39 - icss-utils@5.1.0(postcss@8.4.41): + icss-utils@5.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.41 + postcss: 8.4.38 - icss-utils@5.1.0(postcss@8.4.49): + icss-utils@5.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.49 + postcss: 8.4.41 ieee754@1.2.1: {} @@ -23617,10 +22707,6 @@ snapshots: is-relative: 1.0.0 is-windows: 1.0.2 - is-accessor-descriptor@1.0.1: - dependencies: - hasown: 2.0.2 - is-arguments@1.1.1: dependencies: call-bind: 1.0.7 @@ -23666,10 +22752,6 @@ snapshots: dependencies: hasown: 2.0.2 - is-data-descriptor@1.0.1: - dependencies: - hasown: 2.0.2 - is-data-view@1.0.1: dependencies: is-typed-array: 1.1.13 @@ -23678,26 +22760,10 @@ snapshots: dependencies: has-tostringtag: 1.0.2 - is-descriptor@0.1.7: - dependencies: - is-accessor-descriptor: 1.0.1 - is-data-descriptor: 1.0.1 - - is-descriptor@1.0.3: - dependencies: - is-accessor-descriptor: 1.0.1 - is-data-descriptor: 1.0.1 - is-docker@2.2.1: {} is-docker@3.0.0: {} - is-extendable@0.1.1: {} - - is-extendable@1.0.1: - dependencies: - is-plain-object: 2.0.4 - is-extglob@2.1.1: {} is-file-esm@1.0.0: @@ -23759,10 +22825,6 @@ snapshots: dependencies: has-tostringtag: 1.0.2 - is-number@3.0.0: - dependencies: - kind-of: 3.2.2 - is-number@7.0.0: {} is-obj@2.0.0: {} @@ -23895,10 +22957,6 @@ snapshots: isexe@3.1.1: {} - isobject@2.1.0: - dependencies: - isarray: 1.0.0 - isobject@3.0.1: {} isomorphic-timers-promises@1.0.1: {} @@ -24022,12 +23080,6 @@ snapshots: javascript-stringify@2.1.0: {} - jest-changed-files@26.6.2: - dependencies: - '@jest/types': 26.6.2 - execa: 4.1.0 - throat: 5.0.0 - jest-changed-files@27.5.1: dependencies: '@jest/types': 27.5.1 @@ -24039,7 +23091,7 @@ snapshots: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -24058,42 +23110,22 @@ snapshots: transitivePeerDependencies: - supports-color - jest-cli@26.6.3(ts-node@10.9.2): - dependencies: - '@jest/core': 26.6.3(ts-node@10.9.2) - '@jest/test-result': 26.6.2 - '@jest/types': 26.6.2 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - import-local: 3.1.0 - is-ci: 2.0.0 - jest-config: 26.6.3(ts-node@10.9.2) - jest-util: 26.6.2 - jest-validate: 26.6.2 - prompts: 2.4.2 - yargs: 15.4.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - - jest-cli@27.5.1(ts-node@10.9.2): + jest-cli@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)): dependencies: - '@jest/core': 27.5.1(ts-node@10.9.2) + '@jest/core': 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 27.5.1(ts-node@10.9.2) + jest-config: 27.5.1(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jest-util: 27.5.1 jest-validate: 27.5.1 prompts: 2.4.2 yargs: 16.2.0 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - bufferutil - canvas @@ -24101,34 +23133,7 @@ snapshots: - ts-node - utf-8-validate - jest-config@26.6.3(ts-node@10.9.2): - dependencies: - '@babel/core': 7.25.2 - '@jest/test-sequencer': 26.6.3(ts-node@10.9.2) - '@jest/types': 26.6.2 - babel-jest: 26.6.3(@babel/core@7.25.2) - chalk: 4.1.2 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-environment-jsdom: 26.6.2 - jest-environment-node: 26.6.2 - jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3(ts-node@10.9.2) - jest-regex-util: 26.0.0 - jest-resolve: 26.6.2 - jest-util: 26.6.2 - jest-validate: 26.6.2 - micromatch: 4.0.8 - pretty-format: 26.6.2 - ts-node: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - jest-config@27.5.1(ts-node@10.9.2): + jest-config@27.5.1(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)): dependencies: '@babel/core': 7.24.5 '@jest/test-sequencer': 27.5.1 @@ -24154,20 +23159,14 @@ snapshots: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) + optionalDependencies: + ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.5.4) transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate - jest-diff@26.6.2: - dependencies: - chalk: 4.1.2 - diff-sequences: 26.6.2 - jest-get-type: 26.3.0 - pretty-format: 26.6.2 - jest-diff@27.5.1: dependencies: chalk: 4.1.2 @@ -24175,22 +23174,10 @@ snapshots: jest-get-type: 27.5.1 pretty-format: 27.5.1 - jest-docblock@26.0.0: - dependencies: - detect-newline: 3.1.0 - jest-docblock@27.5.1: dependencies: detect-newline: 3.1.0 - jest-each@26.6.2: - dependencies: - '@jest/types': 26.6.2 - chalk: 4.1.2 - jest-get-type: 26.3.0 - jest-util: 26.6.2 - pretty-format: 26.6.2 - jest-each@27.5.1: dependencies: '@jest/types': 27.5.1 @@ -24199,27 +23186,12 @@ snapshots: jest-util: 27.5.1 pretty-format: 27.5.1 - jest-environment-jsdom@26.6.2: - dependencies: - '@jest/environment': 26.6.2 - '@jest/fake-timers': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - jest-mock: 26.6.2 - jest-util: 26.6.2 - jsdom: 16.7.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - jest-environment-jsdom@27.5.1: dependencies: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -24229,53 +23201,22 @@ snapshots: - supports-color - utf-8-validate - jest-environment-node@26.6.2: - dependencies: - '@jest/environment': 26.6.2 - '@jest/fake-timers': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - jest-mock: 26.6.2 - jest-util: 26.6.2 - jest-environment-node@27.5.1: dependencies: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 jest-mock: 27.5.1 jest-util: 27.5.1 - jest-get-type@26.3.0: {} - jest-get-type@27.5.1: {} - jest-haste-map@26.6.2: - dependencies: - '@jest/types': 26.6.2 - '@types/graceful-fs': 4.1.9 - '@types/node': 20.16.1 - anymatch: 3.1.3 - fb-watchman: 2.0.2 - graceful-fs: 4.2.11 - jest-regex-util: 26.0.0 - jest-serializer: 26.6.2 - jest-util: 26.6.2 - jest-worker: 26.6.2 - micromatch: 4.0.8 - sane: 4.1.0 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.3 - transitivePeerDependencies: - - supports-color - jest-haste-map@27.5.1: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.9 - '@types/node': 18.19.33 + '@types/node': 22.13.8 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -24288,40 +23229,13 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - jest-jasmine2@26.6.3(ts-node@10.9.2): - dependencies: - '@babel/traverse': 7.25.9 - '@jest/environment': 26.6.2 - '@jest/source-map': 26.6.2 - '@jest/test-result': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - chalk: 4.1.2 - co: 4.6.0 - expect: 26.6.2 - is-generator-fn: 2.1.0 - jest-each: 26.6.2 - jest-matcher-utils: 26.6.2 - jest-message-util: 26.6.2 - jest-runtime: 26.6.3(ts-node@10.9.2) - jest-snapshot: 26.6.2 - jest-util: 26.6.2 - pretty-format: 26.6.2 - throat: 5.0.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - jest-jasmine2@27.5.1: dependencies: '@jest/environment': 27.5.1 '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -24337,22 +23251,10 @@ snapshots: transitivePeerDependencies: - supports-color - jest-leak-detector@26.6.2: - dependencies: - jest-get-type: 26.3.0 - pretty-format: 26.6.2 - jest-leak-detector@27.5.1: dependencies: - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - - jest-matcher-utils@26.6.2: - dependencies: - chalk: 4.1.2 - jest-diff: 26.6.2 - jest-get-type: 26.3.0 - pretty-format: 26.6.2 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 jest-matcher-utils@27.5.1: dependencies: @@ -24361,18 +23263,6 @@ snapshots: jest-get-type: 27.5.1 pretty-format: 27.5.1 - jest-message-util@26.6.2: - dependencies: - '@babel/code-frame': 7.26.2 - '@jest/types': 26.6.2 - '@types/stack-utils': 2.0.3 - chalk: 4.1.2 - graceful-fs: 4.2.11 - micromatch: 4.0.8 - pretty-format: 26.6.2 - slash: 3.0.0 - stack-utils: 2.0.6 - jest-message-util@27.5.1: dependencies: '@babel/code-frame': 7.24.2 @@ -24385,36 +23275,17 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 - jest-mock@26.6.2: - dependencies: - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - jest-mock@27.5.1: dependencies: '@jest/types': 27.5.1 - '@types/node': 18.19.33 - - jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): - dependencies: - jest-resolve: 26.6.2 + '@types/node': 22.13.8 jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): - dependencies: + optionalDependencies: jest-resolve: 27.5.1 - jest-regex-util@26.0.0: {} - jest-regex-util@27.5.1: {} - jest-resolve-dependencies@26.6.3: - dependencies: - '@jest/types': 26.6.2 - jest-regex-util: 26.0.0 - jest-snapshot: 26.6.2 - transitivePeerDependencies: - - supports-color - jest-resolve-dependencies@27.5.1: dependencies: '@jest/types': 27.5.1 @@ -24423,17 +23294,6 @@ snapshots: transitivePeerDependencies: - supports-color - jest-resolve@26.6.2: - dependencies: - '@jest/types': 26.6.2 - chalk: 4.1.2 - graceful-fs: 4.2.11 - jest-pnp-resolver: 1.2.3(jest-resolve@26.6.2) - jest-util: 26.6.2 - read-pkg-up: 7.0.1 - resolve: 1.22.8 - slash: 3.0.0 - jest-resolve@27.5.1: dependencies: '@jest/types': 27.5.1 @@ -24447,35 +23307,6 @@ snapshots: resolve.exports: 1.1.1 slash: 3.0.0 - jest-runner@26.6.3(ts-node@10.9.2): - dependencies: - '@jest/console': 26.6.2 - '@jest/environment': 26.6.2 - '@jest/test-result': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - chalk: 4.1.2 - emittery: 0.7.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@10.9.2) - jest-docblock: 26.0.0 - jest-haste-map: 26.6.2 - jest-leak-detector: 26.6.2 - jest-message-util: 26.6.2 - jest-resolve: 26.6.2 - jest-runtime: 26.6.3(ts-node@10.9.2) - jest-util: 26.6.2 - jest-worker: 26.6.2 - source-map-support: 0.5.21 - throat: 5.0.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - jest-runner@27.5.1: dependencies: '@jest/console': 27.5.1 @@ -24483,7 +23314,7 @@ snapshots: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -24505,42 +23336,6 @@ snapshots: - supports-color - utf-8-validate - jest-runtime@26.6.3(ts-node@10.9.2): - dependencies: - '@jest/console': 26.6.2 - '@jest/environment': 26.6.2 - '@jest/fake-timers': 26.6.2 - '@jest/globals': 26.6.2 - '@jest/source-map': 26.6.2 - '@jest/test-result': 26.6.2 - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 - '@types/yargs': 15.0.19 - chalk: 4.1.2 - cjs-module-lexer: 0.6.0 - collect-v8-coverage: 1.0.2 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@10.9.2) - jest-haste-map: 26.6.2 - jest-message-util: 26.6.2 - jest-mock: 26.6.2 - jest-regex-util: 26.0.0 - jest-resolve: 26.6.2 - jest-snapshot: 26.6.2 - jest-util: 26.6.2 - jest-validate: 26.6.2 - slash: 3.0.0 - strip-bom: 4.0.0 - yargs: 15.4.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - jest-runtime@27.5.1: dependencies: '@jest/environment': 27.5.1 @@ -24568,36 +23363,10 @@ snapshots: transitivePeerDependencies: - supports-color - jest-serializer@26.6.2: - dependencies: - '@types/node': 20.16.1 - graceful-fs: 4.2.11 - jest-serializer@27.5.1: dependencies: - '@types/node': 18.19.33 - graceful-fs: 4.2.11 - - jest-snapshot@26.6.2: - dependencies: - '@babel/types': 7.26.0 - '@jest/types': 26.6.2 - '@types/babel__traverse': 7.20.6 - '@types/prettier': 2.7.3 - chalk: 4.1.2 - expect: 26.6.2 + '@types/node': 22.13.8 graceful-fs: 4.2.11 - jest-diff: 26.6.2 - jest-get-type: 26.3.0 - jest-haste-map: 26.6.2 - jest-matcher-utils: 26.6.2 - jest-message-util: 26.6.2 - jest-resolve: 26.6.2 - natural-compare: 1.4.0 - pretty-format: 26.6.2 - semver: 7.6.3 - transitivePeerDependencies: - - supports-color jest-snapshot@27.5.1: dependencies: @@ -24626,33 +23395,15 @@ snapshots: transitivePeerDependencies: - supports-color - jest-util@26.6.2: - dependencies: - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - chalk: 4.1.2 - graceful-fs: 4.2.11 - is-ci: 2.0.0 - micromatch: 4.0.8 - jest-util@27.5.1: dependencies: '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - jest-validate@26.6.2: - dependencies: - '@jest/types': 26.6.2 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 26.3.0 - leven: 3.1.0 - pretty-format: 26.6.2 - jest-validate@27.5.1: dependencies: '@jest/types': 27.5.1 @@ -24662,55 +23413,29 @@ snapshots: leven: 3.1.0 pretty-format: 27.5.1 - jest-watcher@26.6.2: - dependencies: - '@jest/test-result': 26.6.2 - '@jest/types': 26.6.2 - '@types/node': 20.16.1 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - jest-util: 26.6.2 - string-length: 4.0.2 - jest-watcher@27.5.1: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.19.33 + '@types/node': 22.13.8 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 string-length: 4.0.2 - jest-worker@26.6.2: - dependencies: - '@types/node': 20.16.1 - merge-stream: 2.0.0 - supports-color: 7.2.0 - jest-worker@27.5.1: dependencies: - '@types/node': 18.19.33 + '@types/node': 22.13.8 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@26.6.3(ts-node@10.9.2): - dependencies: - '@jest/core': 26.6.3(ts-node@10.9.2) - import-local: 3.1.0 - jest-cli: 26.6.3(ts-node@10.9.2) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - - jest@27.5.1(ts-node@10.9.2): + jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)): dependencies: - '@jest/core': 27.5.1(ts-node@10.9.2) + '@jest/core': 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) import-local: 3.1.0 - jest-cli: 27.5.1(ts-node@10.9.2) + jest-cli: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - bufferutil - canvas @@ -25008,7 +23733,7 @@ snapshots: transitivePeerDependencies: - supports-color - karma-jasmine-html-reporter@1.7.0(jasmine-core@5.1.2)(karma-jasmine@2.0.1)(karma@6.4.3): + karma-jasmine-html-reporter@1.7.0(jasmine-core@5.1.2)(karma-jasmine@2.0.1(karma@6.4.3))(karma@6.4.3): dependencies: jasmine-core: 5.1.2 karma: 6.4.3 @@ -25045,7 +23770,7 @@ snapshots: dom-serialize: 2.2.1 glob: 7.2.3 graceful-fs: 4.2.11 - http-proxy: 1.18.1(debug@4.3.4) + http-proxy: 1.18.1 isbinaryfile: 4.0.10 lodash: 4.17.21 log4js: 6.9.1 @@ -25070,14 +23795,6 @@ snapshots: dependencies: json-buffer: 3.0.1 - kind-of@3.2.2: - dependencies: - is-buffer: 1.1.6 - - kind-of@4.0.0: - dependencies: - is-buffer: 1.1.6 - kind-of@6.0.3: {} kleur@3.0.3: {} @@ -25112,16 +23829,16 @@ snapshots: dependencies: flush-write-stream: 1.1.1 - lerna@6.6.2: + lerna@6.6.2(encoding@0.1.13): dependencies: '@lerna/child-process': 6.6.2 '@lerna/create': 6.6.2 - '@lerna/legacy-package-management': 6.6.2(nx@15.9.7) + '@lerna/legacy-package-management': 6.6.2(encoding@0.1.13)(nx@15.9.7) '@npmcli/arborist': 6.2.3 '@npmcli/run-script': 4.1.7 '@nrwl/devkit': 15.9.7(nx@15.9.7) '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.3 + '@octokit/rest': 19.0.3(encoding@0.1.13) byte-size: 7.0.0 chalk: 4.1.0 clone-deep: 4.0.1 @@ -25156,7 +23873,7 @@ snapshots: make-dir: 3.1.0 minimatch: 3.0.5 multimatch: 5.0.0 - node-fetch: 2.6.7 + node-fetch: 2.6.7(encoding@0.1.13) npm-package-arg: 8.1.1 npm-packlist: 5.1.1 npm-registry-fetch: 14.0.5 @@ -25198,9 +23915,10 @@ snapshots: - encoding - supports-color - less-loader@12.2.0(less@4.2.0)(webpack@5.94.0): + less-loader@12.2.0(less@4.2.0)(webpack@5.94.0(esbuild@0.23.0)): dependencies: less: 4.2.0 + optionalDependencies: webpack: 5.94.0(esbuild@0.23.0) less@4.2.0: @@ -25247,10 +23965,11 @@ snapshots: transitivePeerDependencies: - supports-color - license-webpack-plugin@4.0.2(webpack@5.94.0): + license-webpack-plugin@4.0.2(webpack@5.94.0(esbuild@0.23.0)): dependencies: - webpack: 5.94.0(esbuild@0.23.0) webpack-sources: 3.2.3 + optionalDependencies: + webpack: 5.94.0(esbuild@0.23.0) lie@3.3.0: dependencies: @@ -25545,16 +24264,10 @@ snapshots: dependencies: tmpl: 1.0.5 - map-cache@0.2.2: {} - map-obj@1.0.1: {} map-obj@4.3.0: {} - map-visit@1.0.0: - dependencies: - object-visit: 1.0.1 - marked@4.3.0: {} maska@2.1.11: {} @@ -25581,11 +24294,7 @@ snapshots: memfs@3.5.3: dependencies: - '@jsonjoy.com/json-pack': 1.1.0(tslib@2.6.3) - '@jsonjoy.com/util': 1.5.0(tslib@2.6.3) fs-monkey: 1.0.6 - tree-dump: 1.0.2(tslib@2.6.3) - tslib: 2.6.3 memfs@4.14.1: dependencies: @@ -25631,24 +24340,6 @@ snapshots: methods@1.1.2: {} - micromatch@3.1.10: - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - braces: 2.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - extglob: 2.0.4 - fragment-cache: 0.2.1 - kind-of: 6.0.3 - nanomatch: 1.2.13 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - micromatch@4.0.7: dependencies: braces: 3.0.3 @@ -25690,7 +24381,7 @@ snapshots: tapable: 2.2.1 webpack: 5.91.0(webpack-cli@5.1.4) - mini-css-extract-plugin@2.9.0(webpack@5.94.0): + mini-css-extract-plugin@2.9.0(webpack@5.94.0(esbuild@0.23.0)): dependencies: schema-utils: 4.2.0 tapable: 2.2.1 @@ -25809,11 +24500,6 @@ snapshots: stream-each: 1.2.3 through2: 2.0.5 - mixin-deep@1.3.2: - dependencies: - for-in: 1.0.2 - is-extendable: 1.0.1 - mkdirp-infer-owner@2.0.0: dependencies: chownr: 2.0.0 @@ -25957,22 +24643,6 @@ snapshots: nanoid@3.3.7: {} - nanomatch@1.2.13: - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - fragment-cache: 0.2.1 - is-windows: 1.0.2 - kind-of: 6.0.3 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - native-promise-only@0.8.1: {} natural-compare-lite@1.4.0: {} @@ -25996,9 +24666,9 @@ snapshots: neo-async@2.6.2: {} - ng-packagr@18.2.1(@angular/compiler-cli@18.2.13)(tslib@2.6.2)(typescript@5.5.4): + ng-packagr@18.2.1(@angular/compiler-cli@18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4): dependencies: - '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13)(typescript@5.5.4) + '@angular/compiler-cli': 18.2.13(@angular/compiler@18.2.13(@angular/core@18.2.13(rxjs@6.6.7)(zone.js@0.14.10)))(typescript@5.5.4) '@rollup/plugin-json': 6.1.0(rollup@4.22.4) '@rollup/plugin-node-resolve': 15.2.3(rollup@4.22.4) '@rollup/wasm-node': 4.18.0 @@ -26047,13 +24717,17 @@ snapshots: node-addon-api@6.1.0: {} - node-fetch@2.6.7: + node-fetch@2.6.7(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 - node-fetch@2.7.0: + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 node-forge@1.3.1: {} @@ -26483,12 +25157,6 @@ snapshots: object-assign@4.1.1: {} - object-copy@0.1.0: - dependencies: - copy-descriptor: 0.1.1 - define-property: 0.2.5 - kind-of: 3.2.2 - object-inspect@1.13.1: {} object-is@1.1.6: @@ -26498,10 +25166,6 @@ snapshots: object-keys@1.1.1: {} - object-visit@1.0.1: - dependencies: - isobject: 3.0.1 - object.assign@4.1.5: dependencies: call-bind: 1.0.7 @@ -26534,10 +25198,6 @@ snapshots: es-abstract: 1.23.3 es-object-atoms: 1.0.0 - object.pick@1.3.0: - dependencies: - isobject: 3.0.1 - object.values@1.2.0: dependencies: call-bind: 1.0.7 @@ -26571,7 +25231,6 @@ snapshots: onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - mimic-function: 5.0.1 onetime@7.0.0: dependencies: @@ -26623,8 +25282,6 @@ snapshots: os-tmpdir@1.0.2: {} - p-each-series@2.2.0: {} - p-finally@1.0.0: {} p-limit@1.3.0: @@ -26864,8 +25521,6 @@ snapshots: no-case: 3.0.4 tslib: 2.6.2 - pascalcase@0.1.1: {} - path-browserify@1.0.1: {} path-dirname@1.0.2: {} @@ -27000,8 +25655,6 @@ snapshots: transitivePeerDependencies: - supports-color - posix-character-classes@0.1.1: {} - possible-typed-array-names@1.0.0: {} postcss-calc@8.2.4(postcss@8.4.38): @@ -27016,12 +25669,6 @@ snapshots: postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - postcss-calc@8.2.4(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-selector-parser: 6.1.0 - postcss-value-parser: 4.2.0 - postcss-colormin@5.3.1(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -27038,14 +25685,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-colormin@5.3.1(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-convert-values@5.1.3(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -27058,12 +25697,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-convert-values@5.1.3(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-discard-comments@5.1.2(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27072,10 +25705,6 @@ snapshots: dependencies: postcss: 8.4.41 - postcss-discard-comments@5.1.2(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-discard-duplicates@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27084,10 +25713,6 @@ snapshots: dependencies: postcss: 8.4.41 - postcss-discard-duplicates@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-discard-empty@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27096,10 +25721,6 @@ snapshots: dependencies: postcss: 8.4.41 - postcss-discard-empty@5.1.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-discard-overridden@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27108,16 +25729,13 @@ snapshots: dependencies: postcss: 8.4.41 - postcss-discard-overridden@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - - postcss-load-config@3.1.4(postcss@8.4.49)(ts-node@10.9.2): + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.4.5)): dependencies: lilconfig: 2.1.0 - postcss: 8.4.49 - ts-node: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) yaml: 1.10.2 + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.4.5) postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0): dependencies: @@ -27127,12 +25745,13 @@ snapshots: semver: 7.6.2 webpack: 5.91.0(webpack-cli@5.1.4) - postcss-loader@8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0): + postcss-loader@8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(esbuild@0.23.0)): dependencies: cosmiconfig: 9.0.0(typescript@5.5.4) jiti: 1.21.0 postcss: 8.4.41 semver: 7.6.3 + optionalDependencies: webpack: 5.94.0(esbuild@0.23.0) transitivePeerDependencies: - typescript @@ -27151,12 +25770,6 @@ snapshots: postcss-value-parser: 4.2.0 stylehacks: 5.1.1(postcss@8.4.41) - postcss-merge-longhand@5.1.7(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.49) - postcss-merge-rules@5.1.4(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -27173,14 +25786,6 @@ snapshots: postcss: 8.4.41 postcss-selector-parser: 6.1.0 - postcss-merge-rules@5.1.4(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-selector-parser: 6.1.0 - postcss-minify-font-values@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27191,11 +25796,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-font-values@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-minify-gradients@5.1.1(postcss@8.4.38): dependencies: colord: 2.9.3 @@ -27210,13 +25810,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-gradients@5.1.1(postcss@8.4.49): - dependencies: - colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-minify-params@5.1.4(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -27231,13 +25824,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-params@5.1.4(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - cssnano-utils: 3.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-minify-selectors@5.2.1(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27248,22 +25834,17 @@ snapshots: postcss: 8.4.41 postcss-selector-parser: 6.1.0 - postcss-minify-selectors@5.2.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-selector-parser: 6.1.0 - postcss-modules-extract-imports@2.0.0: dependencies: postcss: 7.0.39 - postcss-modules-extract-imports@3.1.0(postcss@8.4.41): + postcss-modules-extract-imports@3.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.41 + postcss: 8.4.38 - postcss-modules-extract-imports@3.1.0(postcss@8.4.49): + postcss-modules-extract-imports@3.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.49 + postcss: 8.4.41 postcss-modules-local-by-default@3.0.3: dependencies: @@ -27272,17 +25853,17 @@ snapshots: postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - postcss-modules-local-by-default@4.0.5(postcss@8.4.41): + postcss-modules-local-by-default@4.0.5(postcss@8.4.38): dependencies: - icss-utils: 5.1.0(postcss@8.4.41) - postcss: 8.4.41 + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - postcss-modules-local-by-default@4.0.5(postcss@8.4.49): + postcss-modules-local-by-default@4.0.5(postcss@8.4.41): dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 + icss-utils: 5.1.0(postcss@8.4.41) + postcss: 8.4.41 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 @@ -27291,14 +25872,14 @@ snapshots: postcss: 7.0.39 postcss-selector-parser: 6.1.0 - postcss-modules-scope@3.2.0(postcss@8.4.41): + postcss-modules-scope@3.2.0(postcss@8.4.38): dependencies: - postcss: 8.4.41 + postcss: 8.4.38 postcss-selector-parser: 6.1.0 - postcss-modules-scope@3.2.0(postcss@8.4.49): + postcss-modules-scope@3.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.49 + postcss: 8.4.41 postcss-selector-parser: 6.1.0 postcss-modules-values@3.0.0: @@ -27306,26 +25887,26 @@ snapshots: icss-utils: 4.1.1 postcss: 7.0.39 + postcss-modules-values@4.0.0(postcss@8.4.38): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-values@4.0.0(postcss@8.4.41): dependencies: icss-utils: 5.1.0(postcss@8.4.41) postcss: 8.4.41 - postcss-modules-values@4.0.0(postcss@8.4.49): - dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 - - postcss-modules@4.3.1(postcss@8.4.49): + postcss-modules@4.3.1(postcss@8.4.38): dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 lodash.camelcase: 4.3.0 - postcss: 8.4.49 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.49) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.49) - postcss-modules-scope: 3.2.0(postcss@8.4.49) - postcss-modules-values: 4.0.0(postcss@8.4.49) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) + postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) string-hash: 1.1.3 postcss-normalize-charset@5.1.0(postcss@8.4.38): @@ -27336,10 +25917,6 @@ snapshots: dependencies: postcss: 8.4.41 - postcss-normalize-charset@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-normalize-display-values@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27350,11 +25927,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-display-values@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-normalize-positions@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27365,24 +25937,14 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-positions@5.1.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@5.1.1(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - - postcss-normalize-repeat-style@5.1.1(postcss@8.4.49): + postcss-normalize-repeat-style@5.1.1(postcss@8.4.41): dependencies: - postcss: 8.4.49 + postcss: 8.4.41 postcss-value-parser: 4.2.0 postcss-normalize-string@5.1.0(postcss@8.4.38): @@ -27395,11 +25957,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-string@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27410,11 +25967,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-normalize-unicode@5.1.1(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -27427,12 +25979,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@5.1.1(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-normalize-url@5.1.0(postcss@8.4.38): dependencies: normalize-url: 6.1.0 @@ -27445,12 +25991,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-url@5.1.0(postcss@8.4.49): - dependencies: - normalize-url: 6.1.0 - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27461,11 +26001,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@5.1.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-ordered-values@5.1.3(postcss@8.4.38): dependencies: cssnano-utils: 3.1.0(postcss@8.4.38) @@ -27478,12 +26013,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-ordered-values@5.1.3(postcss@8.4.49): - dependencies: - cssnano-utils: 3.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-reduce-initial@5.1.2(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -27496,12 +26025,6 @@ snapshots: caniuse-api: 3.0.0 postcss: 8.4.41 - postcss-reduce-initial@5.1.2(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - caniuse-api: 3.0.0 - postcss: 8.4.49 - postcss-reduce-transforms@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27512,11 +26035,6 @@ snapshots: postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-reduce-transforms@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - postcss-safe-parser@6.0.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27552,12 +26070,6 @@ snapshots: postcss-value-parser: 4.2.0 svgo: 2.8.0 - postcss-svgo@5.1.0(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - svgo: 2.8.0 - postcss-unique-selectors@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -27568,11 +26080,6 @@ snapshots: postcss: 8.4.41 postcss-selector-parser: 6.1.0 - postcss-unique-selectors@5.1.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-selector-parser: 6.1.0 - postcss-value-parser@4.2.0: {} postcss@7.0.39: @@ -27613,13 +26120,6 @@ snapshots: lodash: 4.17.21 renderkid: 3.0.0 - pretty-format@26.6.2: - dependencies: - '@jest/types': 26.6.2 - ansi-regex: 5.0.1 - ansi-styles: 4.3.0 - react-is: 17.0.2 - pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 @@ -27672,7 +26172,7 @@ snapshots: promise-call-limit@1.0.2: {} promise-inflight@1.0.1(bluebird@3.7.2): - dependencies: + optionalDependencies: bluebird: 3.7.2 promise-retry@2.0.1: @@ -27827,7 +26327,7 @@ snapshots: react: 17.0.2 scheduler: 0.20.2 - react-highlight@0.14.0(react-dom@17.0.2)(react@17.0.2): + react-highlight@0.14.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): dependencies: highlight.js: 10.7.3 react: 17.0.2 @@ -27839,7 +26339,7 @@ snapshots: react-is@18.3.1: {} - react-redux@7.2.9(react-dom@17.0.2)(react@17.0.2): + react-redux@7.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2): dependencies: '@babel/runtime': 7.24.5 '@types/react-redux': 7.1.33 @@ -27847,8 +26347,9 @@ snapshots: loose-envify: 1.4.0 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) react-is: 17.0.2 + optionalDependencies: + react-dom: 17.0.2(react@17.0.2) react-shallow-renderer@16.15.0(react@17.0.2): dependencies: @@ -27870,7 +26371,7 @@ snapshots: react-shallow-renderer: 16.15.0(react@17.0.2) scheduler: 0.20.2 - react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2): + react-transition-group@4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2): dependencies: '@babel/runtime': 7.24.5 dom-helpers: 5.2.1 @@ -28018,11 +26519,6 @@ snapshots: dependencies: '@babel/runtime': 7.24.5 - regex-not@1.0.2: - dependencies: - extend-shallow: 3.0.2 - safe-regex: 1.1.0 - regex-parser@2.3.0: {} regexp.prototype.flags@1.5.2: @@ -28059,12 +26555,6 @@ snapshots: regjsparser@0.9.1: dependencies: jsesc: 0.5.0 - regenerate: 1.4.2 - regenerate-unicode-properties: 10.2.0 - regjsgen: 0.8.0 - regjsparser: 0.12.0 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 relateurl@0.2.7: {} @@ -28098,10 +26588,6 @@ snapshots: lodash: 4.17.21 strip-ansi: 6.0.1 - repeat-element@1.1.4: {} - - repeat-string@1.6.1: {} - replace-ext@1.0.1: {} request@2.88.2: @@ -28252,17 +26738,17 @@ snapshots: '@rollup/pluginutils': 5.1.0(rollup@2.79.1) rollup: 2.79.1 - rollup-plugin-postcss@4.0.2(postcss@8.4.49)(ts-node@10.9.2): + rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.4.5)): dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 - cssnano: 5.1.15(postcss@8.4.49) + cssnano: 5.1.15(postcss@8.4.38) import-cwd: 3.0.0 p-queue: 6.6.2 pify: 5.0.0 - postcss: 8.4.49 - postcss-load-config: 3.1.4(postcss@8.4.49)(ts-node@10.9.2) - postcss-modules: 4.3.1(postcss@8.4.49) + postcss: 8.4.38 + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.4.5)) + postcss-modules: 4.3.1(postcss@8.4.38) promise.series: 0.2.0 resolve: 1.22.8 rollup-pluginutils: 2.8.2 @@ -28271,16 +26757,6 @@ snapshots: transitivePeerDependencies: - ts-node - rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@4.9.5): - dependencies: - '@rollup/pluginutils': 4.2.1 - find-cache-dir: 3.3.2 - fs-extra: 10.1.0 - rollup: 2.79.1 - semver: 7.6.2 - tslib: 2.6.2 - typescript: 4.9.5 - rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@5.5.4): dependencies: '@rollup/pluginutils': 4.2.1 @@ -28295,9 +26771,10 @@ snapshots: dependencies: open: 8.4.2 picomatch: 2.3.1 - rollup: 2.79.1 source-map: 0.7.4 yargs: 17.7.2 + optionalDependencies: + rollup: 2.79.1 rollup-plugin-vue@6.0.0(@vue/compiler-sfc@3.4.27): dependencies: @@ -28369,8 +26846,6 @@ snapshots: lodash.flattendeep: 4.4.0 nearley: 2.20.1 - rsvp@4.8.5: {} - run-applescript@7.0.0: {} run-async@2.4.1: {} @@ -28410,29 +26885,12 @@ snapshots: es-errors: 1.3.0 is-regex: 1.1.4 - safe-regex@1.1.0: - dependencies: - ret: 0.1.15 - safer-buffer@2.1.2: {} - sane@4.1.0: - dependencies: - '@cnakazawa/watch': 1.0.4 - anymatch: 2.0.0 - capture-exit: 2.0.0 - exec-sh: 0.3.6 - execa: 1.0.0 - fb-watchman: 2.0.2 - micromatch: 3.1.10 - minimist: 1.2.8 - walker: 1.0.8 - transitivePeerDependencies: - - supports-color - - sass-loader@16.0.0(sass@1.77.6)(webpack@5.94.0): + sass-loader@16.0.0(sass@1.77.6)(webpack@5.94.0(esbuild@0.23.0)): dependencies: neo-async: 2.6.2 + optionalDependencies: sass: 1.77.6 webpack: 5.94.0(esbuild@0.23.0) @@ -28607,13 +27065,6 @@ snapshots: functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - set-value@2.0.1: - dependencies: - extend-shallow: 2.0.1 - is-extendable: 0.1.1 - is-plain-object: 2.0.4 - split-string: 3.1.0 - setimmediate@1.0.5: {} setprototypeof@1.1.0: {} @@ -28717,29 +27168,6 @@ snapshots: smart-buffer@4.2.0: {} - snapdragon-node@2.1.1: - dependencies: - define-property: 1.0.0 - isobject: 3.0.1 - snapdragon-util: 3.0.1 - - snapdragon-util@3.0.1: - dependencies: - kind-of: 3.2.2 - - snapdragon@0.8.2: - dependencies: - base: 0.11.2 - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - map-cache: 0.2.2 - source-map: 0.5.7 - source-map-resolve: 0.5.3 - use: 3.1.1 - transitivePeerDependencies: - - supports-color - socket.io-adapter@2.5.4: dependencies: debug: 4.3.7 @@ -28810,7 +27238,7 @@ snapshots: async: 2.6.4 loader-utils: 1.4.2 - source-map-loader@5.0.0(webpack@5.94.0): + source-map-loader@5.0.0(webpack@5.94.0(esbuild@0.23.0)): dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.0 @@ -28894,10 +27322,6 @@ snapshots: transitivePeerDependencies: - supports-color - split-string@3.1.0: - dependencies: - extend-shallow: 3.0.2 - split2@3.2.2: dependencies: readable-stream: 3.6.2 @@ -28950,11 +27374,6 @@ snapshots: stackframe@1.3.4: {} - static-extend@0.1.2: - dependencies: - define-property: 0.2.5 - object-copy: 0.1.0 - statuses@1.5.0: {} statuses@2.0.1: {} @@ -29143,12 +27562,6 @@ snapshots: postcss: 8.4.41 postcss-selector-parser: 6.1.0 - stylehacks@5.1.1(postcss@8.4.49): - dependencies: - browserslist: 4.23.0 - postcss: 8.4.49 - postcss-selector-parser: 6.1.0 - stylis@4.2.0: {} stylus@0.57.0: @@ -29281,15 +27694,16 @@ snapshots: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - terser-webpack-plugin@5.3.10(esbuild@0.23.0)(webpack@5.94.0): + terser-webpack-plugin@5.3.10(esbuild@0.23.0)(webpack@5.94.0(esbuild@0.23.0)): dependencies: '@jridgewell/trace-mapping': 0.3.25 - esbuild: 0.23.0 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.31.0 webpack: 5.94.0(esbuild@0.23.0) + optionalDependencies: + esbuild: 0.23.0 terser-webpack-plugin@5.3.10(webpack@5.91.0): dependencies: @@ -29354,8 +27768,6 @@ snapshots: schema-utils: 3.3.0 webpack: 5.91.0(webpack-cli@5.1.4) - throat@5.0.0: {} - throat@6.0.2: {} through2-filter@3.0.0: @@ -29407,26 +27819,10 @@ snapshots: to-fast-properties@2.0.0: {} - to-object-path@0.3.0: - dependencies: - kind-of: 3.2.2 - - to-regex-range@2.1.1: - dependencies: - is-number: 3.0.0 - repeat-string: 1.6.1 - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - to-regex@3.0.2: - dependencies: - define-property: 2.0.2 - extend-shallow: 3.0.2 - regex-not: 1.0.2 - safe-regex: 1.1.0 - to-through@2.0.0: dependencies: through2: 2.0.5 @@ -29485,14 +27881,11 @@ snapshots: dependencies: typescript: 5.5.4 - ts-jest@27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1)(jest@27.5.1)(typescript@5.5.4): + ts-jest@27.1.5(@babel/core@7.24.5)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4): dependencies: - '@babel/core': 7.24.5 - '@types/jest': 27.5.2 - babel-jest: 27.5.1(@babel/core@7.24.5) bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1(ts-node@10.9.2) + jest: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jest-util: 27.5.1 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -29500,29 +27893,16 @@ snapshots: semver: 7.6.2 typescript: 5.5.4 yargs-parser: 20.2.9 - - ts-jest@27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5): - dependencies: - '@babel/core': 7.25.2 + optionalDependencies: + '@babel/core': 7.24.5 '@types/jest': 27.5.2 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1(ts-node@10.9.2) - jest-util: 27.5.1 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.6.2 - typescript: 4.9.5 - yargs-parser: 20.2.9 + babel-jest: 27.5.1(@babel/core@7.24.5) - ts-jest@27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@5.5.4): + ts-jest@27.1.5(@babel/core@7.25.2)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.25.2))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4): dependencies: - '@babel/core': 7.25.2 - '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1(ts-node@10.9.2) + jest: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) jest-util: 27.5.1 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -29530,16 +27910,10 @@ snapshots: semver: 7.6.2 typescript: 5.5.4 yargs-parser: 20.2.9 - - ts-loader@9.5.1(typescript@4.9.5)(webpack@5.91.0): - dependencies: - chalk: 4.1.2 - enhanced-resolve: 5.16.1 - micromatch: 4.0.7 - semver: 7.6.2 - source-map: 0.7.4 - typescript: 4.9.5 - webpack: 5.91.0(webpack-cli@5.1.4) + optionalDependencies: + '@babel/core': 7.25.2 + '@types/jest': 27.5.2 + babel-jest: 27.5.1(@babel/core@7.25.2) ts-loader@9.5.1(typescript@5.5.4)(webpack@5.91.0): dependencies: @@ -29551,32 +27925,33 @@ snapshots: typescript: 5.5.4 webpack: 5.91.0(webpack-cli@5.1.4) - ts-node@10.9.2(@types/node@20.16.1)(typescript@4.9.5): + ts-node@10.9.2(@types/node@22.13.8)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.16.1 + '@types/node': 22.13.8 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.9.5 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optional: true - ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4): + ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.16.1 + '@types/node': 22.13.8 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -29613,11 +27988,6 @@ snapshots: tslib@2.6.3: {} - tsutils@3.21.0(typescript@4.9.5): - dependencies: - tslib: 1.14.1 - typescript: 4.9.5 - tsutils@3.21.0(typescript@5.5.4): dependencies: tslib: 1.14.1 @@ -29714,14 +28084,6 @@ snapshots: typedarray@0.0.6: {} - typedoc@0.25.13(typescript@4.9.5): - dependencies: - lunr: 2.3.9 - marked: 4.3.0 - minimatch: 9.0.4 - shiki: 0.14.7 - typescript: 4.9.5 - typedoc@0.25.13(typescript@5.4.5): dependencies: lunr: 2.3.9 @@ -29767,10 +28129,6 @@ snapshots: unc-path-regex@0.1.2: {} - undici-types@5.26.5: {} - - undici-types@6.19.8: {} - undici-types@6.20.0: {} unicode-canonical-property-names-ecmascript@2.0.0: {} @@ -29786,13 +28144,6 @@ snapshots: unicorn-magic@0.1.0: {} - union-value@1.0.1: - dependencies: - arr-union: 3.1.0 - get-value: 2.0.6 - is-extendable: 0.1.1 - set-value: 2.0.1 - union@0.5.0: dependencies: qs: 6.12.1 @@ -29840,11 +28191,6 @@ snapshots: unpipe@1.0.0: {} - unset-value@1.0.0: - dependencies: - has-value: 0.3.1 - isobject: 3.0.1 - upath@2.0.1: {} update-browserslist-db@1.0.16(browserslist@4.23.0): @@ -29879,8 +28225,6 @@ snapshots: punycode: 1.4.1 qs: 6.13.0 - use@3.1.1: {} - util-deprecate@1.0.2: {} util@0.12.5: @@ -29903,12 +28247,6 @@ snapshots: v8-compile-cache@2.3.0: {} - v8-to-istanbul@7.1.2: - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - convert-source-map: 1.9.0 - source-map: 0.7.4 - v8-to-istanbul@8.1.1: dependencies: '@types/istanbul-lib-coverage': 2.0.6 @@ -29981,13 +28319,13 @@ snapshots: remove-trailing-separator: 1.1.0 replace-ext: 1.0.1 - vite-node@1.6.0(@types/node@20.16.1): + vite-node@1.6.0(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 picocolors: 1.0.1 - vite: 5.4.2(@types/node@20.16.1) + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) transitivePeerDependencies: - '@types/node' - less @@ -29999,73 +28337,78 @@ snapshots: - supports-color - terser - vite-plugin-dts@3.9.1(@types/node@20.16.1)(typescript@5.4.5)(vite@5.4.2): + vite-plugin-dts@3.9.1(@types/node@22.13.8)(rollup@4.22.4)(typescript@5.4.5)(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)): dependencies: - '@microsoft/api-extractor': 7.43.0(@types/node@20.16.1) - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@microsoft/api-extractor': 7.43.0(@types/node@22.13.8) + '@rollup/pluginutils': 5.1.0(rollup@4.22.4) '@vue/language-core': 1.8.27(typescript@5.4.5) debug: 4.3.4 kolorist: 1.8.0 magic-string: 0.30.10 typescript: 5.4.5 - vite: 5.4.2(@types/node@20.16.1) vue-tsc: 1.8.27(typescript@5.4.5) + optionalDependencies: + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite-plugin-node-polyfills@0.21.0(vite@5.4.2): + vite-plugin-node-polyfills@0.21.0(rollup@4.22.4)(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)): dependencies: - '@rollup/plugin-inject': 5.0.5 + '@rollup/plugin-inject': 5.0.5(rollup@4.22.4) node-stdlib-browser: 1.2.0 - vite: 5.4.2(@types/node@20.16.1) + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) transitivePeerDependencies: - rollup - vite-plugin-static-copy@1.0.6(vite@5.4.2): + vite-plugin-static-copy@1.0.6(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6)): dependencies: chokidar: 3.6.0 fast-glob: 3.3.2 fs-extra: 11.2.0 picocolors: 1.0.1 - vite: 5.4.2(@types/node@20.16.1) + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) - vite-plugin-vuetify@2.0.4(vite@5.4.2)(vue@3.4.27)(vuetify@3.7.0): + vite-plugin-vuetify@2.0.4(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))(vue@3.4.27(typescript@5.4.5))(vuetify@3.7.0): dependencies: - '@vuetify/loader-shared': 2.0.3(vue@3.4.27)(vuetify@3.7.0) + '@vuetify/loader-shared': 2.0.3(vue@3.4.27(typescript@5.4.5))(vuetify@3.7.0) debug: 4.3.4 upath: 2.0.1 - vite: 5.4.2(@types/node@20.16.1) + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) vue: 3.4.27(typescript@5.4.5) - vuetify: 3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27) + vuetify: 3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27(typescript@5.4.5)) transitivePeerDependencies: - supports-color - vite@5.4.2(@types/node@20.16.1): + vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6): dependencies: - '@types/node': 20.16.1 esbuild: 0.21.5 postcss: 8.4.41 rollup: 4.21.0 optionalDependencies: + '@types/node': 22.13.8 fsevents: 2.3.3 + less: 4.2.0 + sass: 1.77.6 + stylus: 0.57.0 + terser: 5.31.6 - vite@5.4.6(@types/node@18.19.33)(less@4.2.0)(sass@1.77.6)(terser@5.31.6): + vite@5.4.6(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6): dependencies: - '@types/node': 18.19.33 esbuild: 0.21.5 - less: 4.2.0 postcss: 8.4.49 rollup: 4.21.0 - sass: 1.77.6 - terser: 5.31.6 optionalDependencies: + '@types/node': 22.13.8 fsevents: 2.3.3 + less: 4.2.0 + sass: 1.77.6 + stylus: 0.57.0 + terser: 5.31.6 - vitest@1.6.0(@types/node@20.16.1)(jsdom@24.1.1): + vitest@1.6.0(@types/node@22.13.8)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6): dependencies: - '@types/node': 20.16.1 '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 '@vitest/snapshot': 1.6.0 @@ -30075,7 +28418,6 @@ snapshots: chai: 4.4.1 debug: 4.3.4 execa: 8.0.1 - jsdom: 24.1.1 local-pkg: 0.5.0 magic-string: 0.30.10 pathe: 1.1.2 @@ -30084,9 +28426,12 @@ snapshots: strip-literal: 2.1.0 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.4.2(@types/node@20.16.1) - vite-node: 1.6.0(@types/node@20.16.1) + vite: 5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) + vite-node: 1.6.0(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6) why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 22.13.8 + jsdom: 24.1.1 transitivePeerDependencies: - less - lightningcss @@ -30124,31 +28469,34 @@ snapshots: vue-hot-reload-api@2.3.4: {} - vue-jest@5.0.0-alpha.10(@babel/core@7.24.5)(babel-jest@26.6.3)(jest@26.6.3)(typescript@5.5.4)(vue@3.4.27): + vue-jest@5.0.0-alpha.10(@babel/core@7.24.5)(babel-jest@27.5.1(@babel/core@7.24.5))(jest@27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.4.27(typescript@5.5.4)): dependencies: '@babel/core': 7.24.5 '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) - babel-jest: 26.6.3(@babel/core@7.24.5) + babel-jest: 27.5.1(@babel/core@7.24.5) chalk: 2.4.2 convert-source-map: 1.9.0 extract-from-css: 0.4.4 - jest: 26.6.3(ts-node@10.9.2) + jest: 27.5.1(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)) source-map: 0.5.6 tsconfig: 7.0.0 - typescript: 5.5.4 vue: 3.4.27(typescript@5.5.4) + optionalDependencies: + typescript: 5.5.4 - vue-loader@15.11.1(@vue/compiler-sfc@3.4.27)(css-loader@6.11.0)(lodash@4.17.21)(prettier@2.8.8)(webpack@5.91.0): + vue-loader@15.11.1(@vue/compiler-sfc@3.4.27)(css-loader@6.11.0(webpack@5.91.0))(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21)(prettier@2.8.8)(vue-template-compiler@2.7.16)(webpack@5.91.0): dependencies: - '@vue/compiler-sfc': 3.4.27 - '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21) - css-loader: 6.11.0(webpack@5.94.0) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(handlebars@4.7.8)(lodash@4.17.21) + css-loader: 6.11.0(webpack@5.91.0) hash-sum: 1.0.2 loader-utils: 1.4.2 - prettier: 2.8.8 vue-hot-reload-api: 2.3.4 vue-style-loader: 4.1.3 webpack: 5.91.0(webpack-cli@5.1.4) + optionalDependencies: + '@vue/compiler-sfc': 3.4.27 + prettier: 2.8.8 + vue-template-compiler: 2.7.16 transitivePeerDependencies: - arc-templates - atpl @@ -30204,14 +28552,15 @@ snapshots: - walrus - whiskers - vue-loader@17.4.2(@vue/compiler-sfc@3.4.27)(vue@3.4.27)(webpack@5.91.0): + vue-loader@17.4.2(@vue/compiler-sfc@3.4.27)(vue@3.4.27(typescript@5.5.4))(webpack@5.91.0): dependencies: - '@vue/compiler-sfc': 3.4.27 chalk: 4.1.2 hash-sum: 2.0.0 - vue: 3.4.27(typescript@5.5.4) watchpack: 2.4.1 webpack: 5.91.0(webpack-cli@5.1.4) + optionalDependencies: + '@vue/compiler-sfc': 3.4.27 + vue: 3.4.27(typescript@5.5.4) vue-style-loader@4.1.3: dependencies: @@ -30249,8 +28598,9 @@ snapshots: '@vue/compiler-dom': 3.4.27 '@vue/compiler-sfc': 3.4.27 '@vue/runtime-dom': 3.4.27 - '@vue/server-renderer': 3.4.27(vue@3.4.27) + '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.4.5)) '@vue/shared': 3.4.27 + optionalDependencies: typescript: 5.4.5 vue@3.4.27(typescript@5.5.4): @@ -30258,15 +28608,17 @@ snapshots: '@vue/compiler-dom': 3.4.27 '@vue/compiler-sfc': 3.4.27 '@vue/runtime-dom': 3.4.27 - '@vue/server-renderer': 3.4.27(vue@3.4.27) + '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.5.4)) '@vue/shared': 3.4.27 + optionalDependencies: typescript: 5.5.4 - vuetify@3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27): + vuetify@3.7.0(typescript@5.4.5)(vite-plugin-vuetify@2.0.4)(vue@3.4.27(typescript@5.4.5)): dependencies: - typescript: 5.4.5 - vite-plugin-vuetify: 2.0.4(vite@5.4.2)(vue@3.4.27)(vuetify@3.7.0) vue: 3.4.27(typescript@5.4.5) + optionalDependencies: + typescript: 5.4.5 + vite-plugin-vuetify: 2.0.4(vite@5.4.2(@types/node@22.13.8)(less@4.2.0)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.6))(vue@3.4.27(typescript@5.4.5))(vuetify@3.7.0) w3c-hr-time@1.0.2: dependencies: @@ -30374,8 +28726,9 @@ snapshots: interpret: 3.1.1 rechoir: 0.8.0 webpack: 5.91.0(webpack-cli@5.1.4) - webpack-dev-server: 4.15.2(webpack-cli@5.1.4)(webpack@5.91.0) webpack-merge: 5.10.0 + optionalDependencies: + webpack-dev-server: 4.15.2(webpack-cli@5.1.4)(webpack@5.91.0) webpack-dev-middleware@5.3.4(webpack@5.91.0): dependencies: @@ -30386,17 +28739,7 @@ snapshots: schema-utils: 4.2.0 webpack: 5.91.0(webpack-cli@5.1.4) - webpack-dev-middleware@7.4.2(webpack@5.91.0): - dependencies: - colorette: 2.0.20 - memfs: 4.14.1 - mime-types: 2.1.35 - on-finished: 2.4.1 - range-parser: 1.2.1 - schema-utils: 4.2.0 - webpack: 5.91.0(webpack-cli@5.1.4) - - webpack-dev-middleware@7.4.2(webpack@5.94.0): + webpack-dev-middleware@7.4.2(webpack@5.94.0(esbuild@0.23.0)): dependencies: colorette: 2.0.20 memfs: 4.14.1 @@ -30404,6 +28747,7 @@ snapshots: on-finished: 2.4.1 range-parser: 1.2.1 schema-utils: 4.2.0 + optionalDependencies: webpack: 5.94.0(esbuild@0.23.0) webpack-dev-server@4.15.2(debug@4.3.4)(webpack@5.91.0): @@ -30436,9 +28780,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.91.0(webpack-cli@5.1.4) webpack-dev-middleware: 5.3.4(webpack@5.91.0) ws: 8.17.0 + optionalDependencies: + webpack: 5.91.0(webpack-cli@5.1.4) transitivePeerDependencies: - bufferutil - debug @@ -30464,7 +28809,7 @@ snapshots: express: 4.19.2 graceful-fs: 4.2.11 html-entities: 2.5.2 - http-proxy-middleware: 2.0.6(@types/express@4.17.21)(debug@4.3.4) + http-proxy-middleware: 2.0.6(@types/express@4.17.21) ipaddr.js: 2.2.0 launch-editor: 2.6.1 open: 8.4.2 @@ -30475,17 +28820,18 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.91.0(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack-dev-server@4.15.2)(webpack@5.91.0) webpack-dev-middleware: 5.3.4(webpack@5.91.0) ws: 8.17.0 + optionalDependencies: + webpack: 5.91.0(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-dev-server@4.15.2)(webpack@5.91.0) transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate - webpack-dev-server@5.0.4(webpack@5.91.0): + webpack-dev-server@5.0.4(webpack@5.94.0(esbuild@0.23.0)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -30504,7 +28850,7 @@ snapshots: express: 4.19.2 graceful-fs: 4.2.11 html-entities: 2.5.2 - http-proxy-middleware: 2.0.6(@types/express@4.17.21)(debug@4.3.4) + http-proxy-middleware: 2.0.6(@types/express@4.17.21) ipaddr.js: 2.2.0 launch-editor: 2.6.1 open: 10.1.0 @@ -30515,9 +28861,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.91.0(webpack-cli@5.1.4) - webpack-dev-middleware: 7.4.2(webpack@5.91.0) + webpack-dev-middleware: 7.4.2(webpack@5.94.0(esbuild@0.23.0)) ws: 8.18.0 + optionalDependencies: + webpack: 5.94.0(esbuild@0.23.0) transitivePeerDependencies: - bufferutil - debug @@ -30547,10 +28894,12 @@ snapshots: webpack-sources@3.2.3: {} - webpack-subresource-integrity@5.1.0(webpack@5.94.0): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.91.0))(webpack@5.94.0(esbuild@0.23.0)): dependencies: typed-assert: 1.0.9 webpack: 5.94.0(esbuild@0.23.0) + optionalDependencies: + html-webpack-plugin: 5.6.0(webpack@5.91.0) webpack-virtual-modules@0.4.6: {} @@ -30579,8 +28928,9 @@ snapshots: tapable: 2.2.1 terser-webpack-plugin: 5.3.10(webpack@5.91.0) watchpack: 2.4.1 - webpack-cli: 5.1.4(webpack-dev-server@4.15.2)(webpack@5.91.0) webpack-sources: 3.2.3 + optionalDependencies: + webpack-cli: 5.1.4(webpack-dev-server@4.15.2)(webpack@5.91.0) transitivePeerDependencies: - '@swc/core' - esbuild @@ -30638,7 +28988,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(esbuild@0.23.0)(webpack@5.94.0) + terser-webpack-plugin: 5.3.10(esbuild@0.23.0)(webpack@5.94.0(esbuild@0.23.0)) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: