From 24529127e0bca9609d170895e079071ae61d005b Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 12:43:03 +0100 Subject: [PATCH 01/12] fix: vitest --- examples/basic-ngrx-store/project.json | 7 ++++++- examples/basic-ngrx-store/vite.config.ts | 1 + nx.json | 5 ++--- packages/ngrx-rtk-query/project.json | 8 ++------ packages/ngrx-rtk-query/vite.config.ts | 1 + 5 files changed, 12 insertions(+), 10 deletions(-) diff --git a/examples/basic-ngrx-store/project.json b/examples/basic-ngrx-store/project.json index a8539c2..b81d958 100644 --- a/examples/basic-ngrx-store/project.json +++ b/examples/basic-ngrx-store/project.json @@ -70,7 +70,12 @@ }, "test": { "executor": "@analogjs/platform:vitest", - "outputs": ["{workspaceRoot}/coverage/{projectRoot}"] + "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], + "configurations": { + "watch": { + "watch": true + } + } } } } diff --git a/examples/basic-ngrx-store/vite.config.ts b/examples/basic-ngrx-store/vite.config.ts index 07197d7..9db2719 100644 --- a/examples/basic-ngrx-store/vite.config.ts +++ b/examples/basic-ngrx-store/vite.config.ts @@ -14,6 +14,7 @@ export default defineConfig(({ mode }) => { environment: 'jsdom', setupFiles: ['src/test-setup.ts'], include: ['**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], + passWithNoTests: true, reporters: ['default'], coverage: { reportsDirectory: '../../coverage/examples/basic-ngrx-store', diff --git a/nx.json b/nx.json index 0fbf924..0fbf001 100644 --- a/nx.json +++ b/nx.json @@ -49,9 +49,8 @@ "passWithNoTests": true }, "configurations": { - "ci": { - "ci": true, - "codeCoverage": true + "watch": { + "watch": true } } }, diff --git a/packages/ngrx-rtk-query/project.json b/packages/ngrx-rtk-query/project.json index 669e5ca..a1f48e9 100644 --- a/packages/ngrx-rtk-query/project.json +++ b/packages/ngrx-rtk-query/project.json @@ -25,13 +25,9 @@ "test": { "executor": "@analogjs/platform:vitest", "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], - "options": { - "passWithNoTests": true - }, "configurations": { - "ci": { - "ci": true, - "codeCoverage": true + "watch": { + "watch": true } } }, diff --git a/packages/ngrx-rtk-query/vite.config.ts b/packages/ngrx-rtk-query/vite.config.ts index 89c7124..4fe4092 100644 --- a/packages/ngrx-rtk-query/vite.config.ts +++ b/packages/ngrx-rtk-query/vite.config.ts @@ -13,6 +13,7 @@ export default defineConfig(({ mode }) => ({ environment: 'jsdom', setupFiles: ['test-setup.ts'], include: ['**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], + passWithNoTests: true, reporters: ['default'], coverage: { reportsDirectory: '../../coverage/packages/ngrx-rtk-query', From 8848c4c85b35546f964a12c50f133b7d4f841462 Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:03:43 +0100 Subject: [PATCH 02/12] ci: add changeset check --- .github/labeler.yml | 4 +-- .github/workflows/ci.yml | 39 +++++++++++++++++++----- .github/workflows/pr-labeler.yml | 3 +- .github/workflows/prerelease-comment.yml | 2 +- .github/workflows/prerelease.yml | 2 +- .github/workflows/release.yml | 2 +- CODE_OF_CONDUCT.md | 30 +++++++++--------- package.json | 1 + 8 files changed, 54 insertions(+), 29 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 4abfafa..c79e623 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -4,10 +4,8 @@ '📌 area: examples': - any: ['examples/**/*'] -'📌 area: docs web': - - any: ['docs/**/*'] - '📚 documentation': + - any: ['docs/**/*'] - any: ['**/*.md'] '📌 area: ci': diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da1785d..9253e42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: contents: read pull-requests: read steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Lint commit messages @@ -24,11 +24,36 @@ jobs: failOnWarnings: true helpURL: https://github.com/SaulMoro/ngrx-rtk-query/blob/main/.github/CONTRIBUTING.md#-commit-message-guidelines + check-changeset: + runs-on: ubuntu-latest + name: Check Changeset + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: ./.github/composite-actions/install + - name: Check and Validate Changes in /packages/ngrx-rtk-query + run: | + git fetch origin main:main + changes=$(git diff --name-only main...${{ github.sha }} | grep '^packages/ngrx-rtk-query/' || true) + if [[ -n "$changes" ]]; then + echo "Changes detected in /packages/ngrx-rtk-query: $changes" + pnpm changeset status --since origin/main + exit_status=$? + if [[ $exit_status -eq 0 ]]; then + echo "Changeset validation succeeded." + else + echo "Changeset validation failed." + fi + else + echo "No changes detected in /packages/ngrx-rtk-query" + fi + lint: runs-on: ubuntu-latest name: Lint steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/composite-actions/install @@ -38,17 +63,17 @@ jobs: format: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/composite-actions/install - name: Validate - run: pnpm exec nx-cloud record -- nx format:check + run: pnpm exec nx-cloud record -- pnpm format:check build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/composite-actions/install @@ -60,7 +85,7 @@ jobs: needs: - build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/composite-actions/install @@ -72,7 +97,7 @@ jobs: needs: - build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ./.github/composite-actions/install diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 0bf4c2b..fbe5917 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -1,9 +1,10 @@ # Adapted from create-t3-app. -name: Label PR and check title +name: PR Checks on: pull_request_target: branches: ['*'] + types: ['opened', 'synchronize'] jobs: lint-pr-title: diff --git a/.github/workflows/prerelease-comment.yml b/.github/workflows/prerelease-comment.yml index 0999b88..beb538c 100644 --- a/.github/workflows/prerelease-comment.yml +++ b/.github/workflows/prerelease-comment.yml @@ -46,7 +46,7 @@ jobs: with: number: ${{ env.WORKFLOW_RUN_PR }} message: | - A new prerelease is available for testing. You can install this latest build in your project with: + A new ngrx-rtk-query prerelease is available for testing. You can install this latest build in your project with: ```sh pnpm install ngrx-rtk-query@${{ env.BETA_PACKAGE_VERSION }} diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 6ce1b6e..0e6529b 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04c546f..f817575 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 3c3113e..79c347b 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -17,23 +17,23 @@ diverse, inclusive, and healthy community. Examples of behavior that contributes to a positive environment for our community include: -* Demonstrating empathy and kindness toward other people -* Being respectful of differing opinions, viewpoints, and experiences -* Giving and gracefully accepting constructive feedback -* Accepting responsibility and apologizing to those affected by our mistakes, +- Demonstrating empathy and kindness toward other people +- Being respectful of differing opinions, viewpoints, and experiences +- Giving and gracefully accepting constructive feedback +- Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience -* Focusing on what is best not just for us as individuals, but for the +- Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: -* The use of sexualized language or imagery, and sexual attention or +- The use of sexualized language or imagery, and sexual attention or advances of any kind -* Trolling, insulting or derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or email +- Trolling, insulting or derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or email address, without their explicit permission -* Other conduct which could reasonably be considered inappropriate in a +- Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities @@ -60,7 +60,7 @@ representative at an online or offline event. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at -saul.moro.gomez@gmail.com. +[saul.moro.gomez@gmail.com](mailto:saul.moro.gomez@gmail.com). All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an +standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within @@ -116,7 +116,7 @@ the community. This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at -https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. +. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). @@ -124,5 +124,5 @@ enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at -https://www.contributor-covenant.org/faq. Translations are available at -https://www.contributor-covenant.org/translations. +. Translations are available at +. diff --git a/package.json b/package.json index 834c776..310ec3b 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,7 @@ "contributors:generate": "all-contributors generate", "dep-graph": "nx dep-graph", "dep-graph:watch": "nx dep-graph --watch", + "format:check": "nx format:check && prettier --check . --ignore-unknown --no-error-on-unmatched-pattern", "preinstall": "npx only-allow pnpm", "prepare": "git config core.hookspath .githooks", "pub:beta": "pnpm build:ngrx-rtk-query && cd packages/ngrx-rtk-query && pnpm pub:beta", From 70c87ea75337d16b78499fcbbf109cd2b92f8feb Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:07:01 +0100 Subject: [PATCH 03/12] ci: fix e2e tests --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 310ec3b..4048cba 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "affected:build": "nx affected:build", "affected:dep-graph": "nx affected:dep-graph", "affected:e2e": "nx affected:e2e", + "affected:e2e-ci": "nx affected:e2e-ci", "affected:e2e:watch": "nx affected:e2e --watch", "affected:lint": "nx affected:lint", "affected:test": "nx affected:test", From 228bcf75003a8fe142f09d8a97de4e5d9cda7258 Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:24:58 +0100 Subject: [PATCH 04/12] chore: initial repo --- .changeset/old-mails-dress.md | 5 +++++ .github/workflows/ci.yml | 2 +- package.json | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changeset/old-mails-dress.md diff --git a/.changeset/old-mails-dress.md b/.changeset/old-mails-dress.md new file mode 100644 index 0000000..f6a92da --- /dev/null +++ b/.changeset/old-mails-dress.md @@ -0,0 +1,5 @@ +--- +"ngrx-rtk-query": patch +--- + +new repository diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9253e42..5517f4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,4 +102,4 @@ jobs: fetch-depth: 0 - uses: ./.github/composite-actions/install - name: End-to-end test - run: pnpm affected:e2e-ci + run: pnpm affected:e2e diff --git a/package.json b/package.json index 4048cba..310ec3b 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,6 @@ "affected:build": "nx affected:build", "affected:dep-graph": "nx affected:dep-graph", "affected:e2e": "nx affected:e2e", - "affected:e2e-ci": "nx affected:e2e-ci", "affected:e2e:watch": "nx affected:e2e --watch", "affected:lint": "nx affected:lint", "affected:test": "nx affected:test", From cf55486a649fbb628a9aaefa6fe71a81582c2775 Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:29:22 +0100 Subject: [PATCH 05/12] style: fix format issues --- .prettierignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierignore b/.prettierignore index 30d16f0..b41a6c1 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,6 +4,7 @@ /coverage /tmp /.nx/cache +.changeset .angular .astro .prettierignore From 22c47d137a3d794ff3a5752a120a6a3b529151cb Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:35:33 +0100 Subject: [PATCH 06/12] ci: fix e2e playwright setup --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5517f4a..55b4bc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,6 +94,8 @@ jobs: e2e: runs-on: ubuntu-latest + container: + image: mcr.microsoft.com/playwright:v1.42.1-jammy needs: - build steps: @@ -103,3 +105,5 @@ jobs: - uses: ./.github/composite-actions/install - name: End-to-end test run: pnpm affected:e2e + env: + HOME: /root From c8a668ddc337f4056e563a61217cc6358fbd9f34 Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:39:39 +0100 Subject: [PATCH 07/12] ci: fix e2e playwright setup --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55b4bc6..092aaca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,8 +94,6 @@ jobs: e2e: runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/playwright:v1.42.1-jammy needs: - build steps: @@ -103,7 +101,7 @@ jobs: with: fetch-depth: 0 - uses: ./.github/composite-actions/install + - name: Install Playwright + run: npx playwright install --with-deps - name: End-to-end test run: pnpm affected:e2e - env: - HOME: /root From 79eb114fad21507cbe92c89cd1e0a322c281845e Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:46:38 +0100 Subject: [PATCH 08/12] ci: update pnpm/action-setup --- .github/composite-actions/install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/composite-actions/install/action.yml b/.github/composite-actions/install/action.yml index 3f2f7bf..8a64d89 100644 --- a/.github/composite-actions/install/action.yml +++ b/.github/composite-actions/install/action.yml @@ -4,7 +4,7 @@ description: 'Sets up Node.js and runs install' runs: using: composite steps: - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v3 with: run_install: false From 3ee0b4f6ceb637a473a39d874003b8b4c3f4299b Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 13:50:34 +0100 Subject: [PATCH 09/12] ci: update actions/labeler to v5 --- .github/workflows/pr-labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index fbe5917..68c2651 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -22,7 +22,7 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: '${{ secrets.GITHUB_TOKEN }}' sync-labels: true From 05a1bb27d852bca6866f8e66fd235f587665326e Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 14:03:04 +0100 Subject: [PATCH 10/12] feat(lib): update to rtk 2.2.2 --- .../basic-ngrx-store/src/mockServiceWorker.js | 2 +- package.json | 44 +- packages/ngrx-rtk-query/package.json | 9 +- pnpm-lock.yaml | 1374 +++++++++-------- 4 files changed, 775 insertions(+), 654 deletions(-) diff --git a/examples/basic-ngrx-store/src/mockServiceWorker.js b/examples/basic-ngrx-store/src/mockServiceWorker.js index 142b0ac..8949f57 100644 --- a/examples/basic-ngrx-store/src/mockServiceWorker.js +++ b/examples/basic-ngrx-store/src/mockServiceWorker.js @@ -8,7 +8,7 @@ * - Please do NOT serve this file on production. */ -const PACKAGE_VERSION = '2.2.8'; +const PACKAGE_VERSION = '2.2.9'; const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423'; const IS_MOCKED_RESPONSE = Symbol('isMockedResponse'); const activeClientIds = new Set(); diff --git a/package.json b/package.json index 310ec3b..f35ebb3 100644 --- a/package.json +++ b/package.json @@ -60,17 +60,17 @@ "*.{js,json,css,scss,ts,html}": "prettier --write --ignore-unknown" }, "dependencies": { - "@angular/animations": "~17.3.0", - "@angular/common": "~17.3.0", - "@angular/compiler": "~17.3.0", - "@angular/core": "~17.3.0", - "@angular/forms": "~17.3.0", - "@angular/platform-browser": "~17.3.0", - "@angular/platform-browser-dynamic": "~17.3.0", - "@angular/router": "~17.3.0", + "@angular/animations": "~17.3.1", + "@angular/common": "~17.3.1", + "@angular/compiler": "~17.3.1", + "@angular/core": "~17.3.1", + "@angular/forms": "~17.3.1", + "@angular/platform-browser": "~17.3.1", + "@angular/platform-browser-dynamic": "~17.3.1", + "@angular/router": "~17.3.1", "@ngrx/signals": "~17.1.1", "@ngrx/store": "~17.1.1", - "@reduxjs/toolkit": "^2.2.1", + "@reduxjs/toolkit": "^2.2.2", "rxjs": "~7.8.1", "tslib": "~2.6.2", "zone.js": "~0.14.4" @@ -78,15 +78,15 @@ "devDependencies": { "@analogjs/platform": "~1.0.1", "@analogjs/vite-plugin-angular": "~1.0.1", - "@angular-devkit/build-angular": "~17.3.0", - "@angular-devkit/core": "~17.3.0", - "@angular-devkit/schematics": "~17.3.0", + "@angular-devkit/build-angular": "~17.3.1", + "@angular-devkit/core": "~17.3.1", + "@angular-devkit/schematics": "~17.3.1", "@angular-eslint/eslint-plugin": "~17.3.0", "@angular-eslint/eslint-plugin-template": "~17.3.0", "@angular-eslint/template-parser": "~17.3.0", - "@angular/cli": "~17.3.0", - "@angular/compiler-cli": "~17.3.0", - "@angular/language-service": "~17.3.0", + "@angular/cli": "~17.3.1", + "@angular/compiler-cli": "~17.3.1", + "@angular/language-service": "~17.3.1", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.1", "@commitlint/cli": "^19.2.1", @@ -105,7 +105,7 @@ "@nx/web": "18.1.2", "@nx/workspace": "18.1.2", "@playwright/test": "^1.42.1", - "@schematics/angular": "~17.3.0", + "@schematics/angular": "~17.3.1", "@swc-node/register": "~1.9.0", "@swc/core": "~1.4.8", "@swc/helpers": "~0.5.7", @@ -116,18 +116,18 @@ "@testing-library/user-event": "^14.5.2", "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/jest": "^29.5.12", - "@types/node": "^18.19.25", + "@types/node": "^18.19.26", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "@vitest/coverage-v8": "^1.4.0", "@vitest/ui": "^1.4.0", "all-contributors-cli": "^6.26.1", - "autoprefixer": "^10.4.18", + "autoprefixer": "^10.4.19", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jest-dom": "^5.1.0", - "eslint-plugin-playwright": "^1.5.2", + "eslint-plugin-playwright": "^1.5.3", "eslint-plugin-tailwindcss": "^3.15.1", "eslint-plugin-testing-library": "^6.2.0", "eslint-plugin-vitest": "^0.3.26", @@ -137,10 +137,10 @@ "jsdom": "^24.0.0", "jsonc-eslint-parser": "^2.4.0", "lint-staged": "^15.2.2", - "msw": "^2.2.8", + "msw": "^2.2.9", "ng-packagr": "~17.3.0", "nx": "18.1.2", - "postcss": "^8.4.36", + "postcss": "^8.4.38", "postcss-url": "~10.1.3", "prettier": "^3.2.5", "prettier-plugin-astro": "^0.13.0", @@ -150,7 +150,7 @@ "tailwindcss": "^3.4.1", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", - "typescript": "^5.4.2", + "typescript": "^5.4.3", "vite": "~5.0.12", "vite-tsconfig-paths": "^4.3.2", "vitest": "^1.4.0" diff --git a/packages/ngrx-rtk-query/package.json b/packages/ngrx-rtk-query/package.json index cfac711..d07d585 100644 --- a/packages/ngrx-rtk-query/package.json +++ b/packages/ngrx-rtk-query/package.json @@ -42,10 +42,13 @@ }, "peerDependencies": { "@angular/core": ">=17.0.0", - "@reduxjs/toolkit": "~2.2.1" + "@ngrx/store": ">=17.0.0", + "@reduxjs/toolkit": "~2.2.2" }, - "optionalDependencies": { - "@ngrx/store": ">=17.0.0" + "peerDependenciesMeta": { + "@ngrx/store": { + "optional": true + } }, "publishConfig": { "access": "public", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6fd67ea..bc333b1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,38 +9,38 @@ importers: .: dependencies: '@angular/animations': - specifier: ~17.3.0 - version: 17.3.0(@angular/core@17.3.0) + specifier: ~17.3.1 + version: 17.3.1(@angular/core@17.3.1) '@angular/common': - specifier: ~17.3.0 - version: 17.3.0(@angular/core@17.3.0)(rxjs@7.8.1) + specifier: ~17.3.1 + version: 17.3.1(@angular/core@17.3.1)(rxjs@7.8.1) '@angular/compiler': - specifier: ~17.3.0 - version: 17.3.0(@angular/core@17.3.0) + specifier: ~17.3.1 + version: 17.3.1(@angular/core@17.3.1) '@angular/core': - specifier: ~17.3.0 - version: 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + specifier: ~17.3.1 + version: 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) '@angular/forms': - specifier: ~17.3.0 - version: 17.3.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(rxjs@7.8.1) + specifier: ~17.3.1 + version: 17.3.1(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(rxjs@7.8.1) '@angular/platform-browser': - specifier: ~17.3.0 - version: 17.3.0(@angular/animations@17.3.0)(@angular/common@17.3.0)(@angular/core@17.3.0) + specifier: ~17.3.1 + version: 17.3.1(@angular/animations@17.3.1)(@angular/common@17.3.1)(@angular/core@17.3.1) '@angular/platform-browser-dynamic': - specifier: ~17.3.0 - version: 17.3.0(@angular/common@17.3.0)(@angular/compiler@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0) + specifier: ~17.3.1 + version: 17.3.1(@angular/common@17.3.1)(@angular/compiler@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1) '@angular/router': - specifier: ~17.3.0 - version: 17.3.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(rxjs@7.8.1) + specifier: ~17.3.1 + version: 17.3.1(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(rxjs@7.8.1) '@ngrx/signals': specifier: ~17.1.1 - version: 17.1.1(@angular/core@17.3.0)(rxjs@7.8.1) + version: 17.1.1(@angular/core@17.3.1)(rxjs@7.8.1) '@ngrx/store': specifier: ~17.1.1 - version: 17.1.1(@angular/core@17.3.0)(rxjs@7.8.1) + version: 17.1.1(@angular/core@17.3.1)(rxjs@7.8.1) '@reduxjs/toolkit': - specifier: ^2.2.1 - version: 2.2.1 + specifier: ^2.2.2 + version: 2.2.2 rxjs: specifier: ~7.8.1 version: 7.8.1 @@ -53,37 +53,37 @@ importers: devDependencies: '@analogjs/platform': specifier: ~1.0.1 - version: 1.0.1(@angular-devkit/build-angular@17.3.0)(@nx/devkit@18.1.2)(@nx/vite@18.1.2) + version: 1.0.1(@angular-devkit/build-angular@17.3.1)(@nx/devkit@18.1.2)(@nx/vite@18.1.2) '@analogjs/vite-plugin-angular': specifier: ~1.0.1 - version: 1.0.1(@angular-devkit/build-angular@17.3.0) + version: 1.0.1(@angular-devkit/build-angular@17.3.1) '@angular-devkit/build-angular': - specifier: ~17.3.0 - version: 17.3.0(@angular/compiler-cli@17.3.0)(@swc/core@1.4.8)(@types/node@18.19.25)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.2) + specifier: ~17.3.1 + version: 17.3.1(@angular/compiler-cli@17.3.1)(@swc/core@1.4.8)(@types/node@18.19.26)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.3) '@angular-devkit/core': - specifier: ~17.3.0 - version: 17.3.0 + specifier: ~17.3.1 + version: 17.3.1 '@angular-devkit/schematics': - specifier: ~17.3.0 - version: 17.3.0 + specifier: ~17.3.1 + version: 17.3.1 '@angular-eslint/eslint-plugin': specifier: ~17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.4.2) + version: 17.3.0(eslint@8.57.0)(typescript@5.4.3) '@angular-eslint/eslint-plugin-template': specifier: ~17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.4.2) + version: 17.3.0(eslint@8.57.0)(typescript@5.4.3) '@angular-eslint/template-parser': specifier: ~17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.4.2) + version: 17.3.0(eslint@8.57.0)(typescript@5.4.3) '@angular/cli': - specifier: ~17.3.0 - version: 17.3.0 + specifier: ~17.3.1 + version: 17.3.1 '@angular/compiler-cli': - specifier: ~17.3.0 - version: 17.3.0(@angular/compiler@17.3.0)(typescript@5.4.2) + specifier: ~17.3.1 + version: 17.3.1(@angular/compiler@17.3.1)(typescript@5.4.3) '@angular/language-service': - specifier: ~17.3.0 - version: 17.3.0 + specifier: ~17.3.1 + version: 17.3.1 '@changesets/changelog-github': specifier: ^0.5.0 version: 0.5.0 @@ -92,13 +92,13 @@ importers: version: 2.27.1 '@commitlint/cli': specifier: ^19.2.1 - version: 19.2.1(@types/node@18.19.25)(typescript@5.4.2) + version: 19.2.1(@types/node@18.19.26)(typescript@5.4.3) '@commitlint/config-conventional': specifier: ^19.1.0 version: 19.1.0 '@ngrx/eslint-plugin': specifier: ~17.1.1 - version: 17.1.1(eslint@8.57.0)(typescript@5.4.2) + version: 17.1.1(eslint@8.57.0)(typescript@5.4.3) '@ngrx/schematics': specifier: ~17.1.1 version: 17.1.1 @@ -107,31 +107,31 @@ importers: version: 17.1.1(@ngrx/store@17.1.1)(rxjs@7.8.1) '@nx/angular': specifier: 18.1.2 - version: 18.1.2(@angular-devkit/build-angular@17.3.0)(@angular-devkit/core@17.3.0)(@angular-devkit/schematics@17.3.0)(@schematics/angular@17.3.0)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.2) + version: 18.1.2(@angular-devkit/build-angular@17.3.1)(@angular-devkit/core@17.3.1)(@angular-devkit/schematics@17.3.1)(@schematics/angular@17.3.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.3) '@nx/devkit': specifier: 18.1.2 version: 18.1.2(nx@18.1.2) '@nx/eslint': specifier: 18.1.2 - version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2) + version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2) '@nx/eslint-plugin': specifier: 18.1.2 - version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.2) + version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.3) '@nx/jest': specifier: 18.1.2 - version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.2) + version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.3) '@nx/js': specifier: 18.1.2 - version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/playwright': specifier: 18.1.2 - version: 18.1.2(@playwright/test@1.42.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + version: 18.1.2(@playwright/test@1.42.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/vite': specifier: 18.1.2 - version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2)(vite@5.0.12)(vitest@1.4.0) + version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3)(vite@5.0.12)(vitest@1.4.0) '@nx/web': specifier: 18.1.2 - version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/workspace': specifier: 18.1.2 version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) @@ -139,11 +139,11 @@ importers: specifier: ^1.42.1 version: 1.42.1 '@schematics/angular': - specifier: ~17.3.0 - version: 17.3.0 + specifier: ~17.3.1 + version: 17.3.1 '@swc-node/register': specifier: ~1.9.0 - version: 1.9.0(@swc/core@1.4.8)(@swc/types@0.1.6)(typescript@5.4.2) + version: 1.9.0(@swc/core@1.4.8)(@swc/types@0.1.6)(typescript@5.4.3) '@swc/core': specifier: ~1.4.8 version: 1.4.8(@swc/helpers@0.5.7) @@ -155,7 +155,7 @@ importers: version: 0.5.7(tailwindcss@3.4.1) '@testing-library/angular': specifier: ^15.2.0 - version: 15.2.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(@angular/router@17.3.0) + version: 15.2.0(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(@angular/router@17.3.1) '@testing-library/dom': specifier: ^9.3.4 version: 9.3.4 @@ -172,14 +172,14 @@ importers: specifier: ^29.5.12 version: 29.5.12 '@types/node': - specifier: ^18.19.25 - version: 18.19.25 + specifier: ^18.19.26 + version: 18.19.26 '@typescript-eslint/eslint-plugin': specifier: ^6.21.0 - version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.2) + version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.3) '@typescript-eslint/parser': specifier: ^6.21.0 - version: 6.21.0(eslint@8.57.0)(typescript@5.4.2) + version: 6.21.0(eslint@8.57.0)(typescript@5.4.3) '@vitest/coverage-v8': specifier: ^1.4.0 version: 1.4.0(vitest@1.4.0) @@ -190,8 +190,8 @@ importers: specifier: ^6.26.1 version: 6.26.1 autoprefixer: - specifier: ^10.4.18 - version: 10.4.18(postcss@8.4.36) + specifier: ^10.4.19 + version: 10.4.19(postcss@8.4.38) eslint: specifier: ^8.57.0 version: 8.57.0 @@ -205,26 +205,26 @@ importers: specifier: ^5.1.0 version: 5.1.0(@testing-library/dom@9.3.4)(eslint@8.57.0) eslint-plugin-playwright: - specifier: ^1.5.2 - version: 1.5.2(eslint@8.57.0) + specifier: ^1.5.3 + version: 1.5.3(eslint@8.57.0) eslint-plugin-tailwindcss: specifier: ^3.15.1 version: 3.15.1(tailwindcss@3.4.1) eslint-plugin-testing-library: specifier: ^6.2.0 - version: 6.2.0(eslint@8.57.0)(typescript@5.4.2) + version: 6.2.0(eslint@8.57.0)(typescript@5.4.3) eslint-plugin-vitest: specifier: ^0.3.26 - version: 0.3.26(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.2)(vitest@1.4.0) + version: 0.3.26(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.3)(vitest@1.4.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + version: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 jest-preset-angular: specifier: ^14.0.3 - version: 14.0.3(@angular-devkit/build-angular@17.3.0)(@angular/compiler-cli@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser-dynamic@17.3.0)(@babel/core@7.24.1)(jest@29.7.0)(typescript@5.4.2) + version: 14.0.3(@angular-devkit/build-angular@17.3.1)(@angular/compiler-cli@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser-dynamic@17.3.1)(@babel/core@7.24.1)(jest@29.7.0)(typescript@5.4.3) jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -235,20 +235,20 @@ importers: specifier: ^15.2.2 version: 15.2.2 msw: - specifier: ^2.2.8 - version: 2.2.8(typescript@5.4.2) + specifier: ^2.2.9 + version: 2.2.9(typescript@5.4.3) ng-packagr: specifier: ~17.3.0 - version: 17.3.0(@angular/compiler-cli@17.3.0)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.4.2) + version: 17.3.0(@angular/compiler-cli@17.3.1)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.4.3) nx: specifier: 18.1.2 version: 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) postcss: - specifier: ^8.4.36 - version: 8.4.36 + specifier: ^8.4.38 + version: 8.4.38 postcss-url: specifier: ~10.1.3 - version: 10.1.3(postcss@8.4.36) + version: 10.1.3(postcss@8.4.38) prettier: specifier: ^3.2.5 version: 3.2.5 @@ -269,38 +269,37 @@ importers: version: 3.4.1(ts-node@10.9.2) ts-jest: specifier: ^29.1.2 - version: 29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.2) + version: 29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.4.2) + version: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3) typescript: - specifier: ^5.4.2 - version: 5.4.2 + specifier: ^5.4.3 + version: 5.4.3 vite: specifier: ~5.0.12 - version: 5.0.12(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0) + version: 5.0.12(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.4.2)(vite@5.0.12) + version: 4.3.2(typescript@5.4.3)(vite@5.0.12) vitest: specifier: ^1.4.0 - version: 1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0) + version: 1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0) packages/ngrx-rtk-query: dependencies: '@angular/core': specifier: '>=17.0.0' version: 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + '@ngrx/store': + specifier: '>=17.0.0' + version: 17.1.1(@angular/core@17.3.0)(rxjs@7.8.1) '@reduxjs/toolkit': - specifier: ~2.2.1 - version: 2.2.1 + specifier: ~2.2.2 + version: 2.2.2 tslib: specifier: ^2.3.0 version: 2.6.2 - optionalDependencies: - '@ngrx/store': - specifier: '>=17.0.0' - version: 17.1.1(@angular/core@17.3.0)(rxjs@7.8.1) publishDirectory: ../../dist/packages/ngrx-rtk-query packages: @@ -327,16 +326,16 @@ packages: '@jridgewell/trace-mapping': 0.3.25 dev: true - /@analogjs/platform@1.0.1(@angular-devkit/build-angular@17.3.0)(@nx/devkit@18.1.2)(@nx/vite@18.1.2): + /@analogjs/platform@1.0.1(@angular-devkit/build-angular@17.3.1)(@nx/devkit@18.1.2)(@nx/vite@18.1.2): resolution: {integrity: sha512-ujPDt/m7ZMBZ4Pu2+PA5iLmO63sm61fiJhoZ/9P5VQWNTQJcxuUhaAqqaub/xCOI8xoFXyRfxyVW8MDhlRMqpw==} peerDependencies: '@nx/devkit': ^16.0.0 || ^17.0.0 || ^18.0.0 '@nx/vite': ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: - '@analogjs/vite-plugin-angular': 1.0.1(@angular-devkit/build-angular@17.3.0) + '@analogjs/vite-plugin-angular': 1.0.1(@angular-devkit/build-angular@17.3.1) '@analogjs/vite-plugin-nitro': 1.0.1 '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/vite': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2)(vite@5.0.12)(vitest@1.4.0) + '@nx/vite': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3)(vite@5.0.12)(vitest@1.4.0) nitropack: 2.9.4 transitivePeerDependencies: - '@angular-devkit/build-angular' @@ -361,12 +360,12 @@ packages: - xml2js dev: true - /@analogjs/vite-plugin-angular@1.0.1(@angular-devkit/build-angular@17.3.0): + /@analogjs/vite-plugin-angular@1.0.1(@angular-devkit/build-angular@17.3.1): resolution: {integrity: sha512-hDO/EmtiYfqwOhJW2dOTZmG55k3veKcXsztYVUH8n57EIcjF+OMp1Iq/rs6DElutPUOxPT2Iy/7Po+ALETDQBQ==} peerDependencies: '@angular-devkit/build-angular': ^15.0.0 || >=16.0.0 dependencies: - '@angular-devkit/build-angular': 17.3.0(@angular/compiler-cli@17.3.0)(@swc/core@1.4.8)(@types/node@18.19.25)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.2) + '@angular-devkit/build-angular': 17.3.1(@angular/compiler-cli@17.3.1)(@swc/core@1.4.8)(@types/node@18.19.26)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.3) ts-morph: 21.0.1 dev: true @@ -397,18 +396,18 @@ packages: - xml2js dev: true - /@angular-devkit/architect@0.1703.0: - resolution: {integrity: sha512-2X2cswI4TIwtQxCe5U9f4jeiDjAb8r89XLpU0QwEHyZyWx02uhYHO3FDMJq/NxCS95IUAQOBGBhbD4ey4Hl9cQ==} + /@angular-devkit/architect@0.1703.1: + resolution: {integrity: sha512-vkfvURv7O+3fHMTE9K+yUEiFS0v4JNYKsDP0LE1ChH5Ocy0bJXGcH2Cyz2W8qdJGDG/tKe41VzvOLpu88Xv3zQ==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 17.3.0 + '@angular-devkit/core': 17.3.1 rxjs: 7.8.1 transitivePeerDependencies: - chokidar dev: true - /@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0)(@swc/core@1.4.8)(@types/node@18.19.25)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.2): - resolution: {integrity: sha512-mC70mZK/liITM4VlGL6hmYPkVsZwAb+X3TxwodBl/g8p/sYijDhK/4QJHzmcHTxLYQQS6nS5CUcr9ARQFkGN2w==} + /@angular-devkit/build-angular@17.3.1(@angular/compiler-cli@17.3.1)(@swc/core@1.4.8)(@types/node@18.19.26)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.3): + resolution: {integrity: sha512-e+hZvLVH5AvHCFbVtKRd5oJeFsEmjg7kK1V6hsVxH4YE2f2x399TSr+AGxwV+R3jnjZ67ujIeXXd0Uuf1RwcSg==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: '@angular/compiler-cli': ^17.0.0 @@ -449,10 +448,10 @@ packages: optional: true dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1703.0 - '@angular-devkit/build-webpack': 0.1703.0(webpack-dev-server@4.15.1)(webpack@5.90.3) - '@angular-devkit/core': 17.3.0 - '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0)(typescript@5.4.2) + '@angular-devkit/architect': 0.1703.1 + '@angular-devkit/build-webpack': 0.1703.1(webpack-dev-server@4.15.1)(webpack@5.90.3) + '@angular-devkit/core': 17.3.1 + '@angular/compiler-cli': 17.3.1(@angular/compiler@17.3.1)(typescript@5.4.3) '@babel/core': 7.24.0 '@babel/generator': 7.23.6 '@babel/helper-annotate-as-pure': 7.22.5 @@ -463,7 +462,7 @@ packages: '@babel/preset-env': 7.24.0(@babel/core@7.24.0) '@babel/runtime': 7.24.0 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 17.3.0(@angular/compiler-cli@17.3.0)(typescript@5.4.2)(webpack@5.90.3) + '@ngtools/webpack': 17.3.1(@angular/compiler-cli@17.3.1)(typescript@5.4.3)(webpack@5.90.3) '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5) ansi-colors: 4.1.3 autoprefixer: 10.4.18(postcss@8.4.35) @@ -478,7 +477,7 @@ packages: http-proxy-middleware: 2.0.6(@types/express@4.17.21) https-proxy-agent: 7.0.4 inquirer: 9.2.15 - jest: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-environment-jsdom: 29.7.0 jsonc-parser: 3.2.1 karma-source-map-support: 1.4.0 @@ -489,14 +488,14 @@ packages: magic-string: 0.30.8 mini-css-extract-plugin: 2.8.1(webpack@5.90.3) mrmime: 2.0.0 - ng-packagr: 17.3.0(@angular/compiler-cli@17.3.0)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.4.2) + ng-packagr: 17.3.0(@angular/compiler-cli@17.3.1)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.4.3) open: 8.4.2 ora: 5.4.1 parse5-html-rewriting-stream: 7.0.0 picomatch: 4.0.1 piscina: 4.4.0 postcss: 8.4.35 - postcss-loader: 8.1.1(postcss@8.4.35)(typescript@5.4.2)(webpack@5.90.3) + postcss-loader: 8.1.1(postcss@8.4.35)(typescript@5.4.3)(webpack@5.90.3) resolve-url-loader: 5.0.0 rxjs: 7.8.1 sass: 1.71.1 @@ -508,9 +507,9 @@ packages: terser: 5.29.1 tree-kill: 1.2.2 tslib: 2.6.2 - typescript: 5.4.2 + typescript: 5.4.3 undici: 6.7.1 - vite: 5.1.5(@types/node@18.19.25)(less@4.2.0)(sass@1.71.1)(stylus@0.59.0)(terser@5.29.1) + vite: 5.1.5(@types/node@18.19.26)(less@4.2.0)(sass@1.71.1)(stylus@0.59.0)(terser@5.29.1) watchpack: 2.4.0 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) webpack-dev-middleware: 6.1.1(webpack@5.90.3) @@ -539,14 +538,14 @@ packages: - webpack-cli dev: true - /@angular-devkit/build-webpack@0.1703.0(webpack-dev-server@4.15.1)(webpack@5.90.3): - resolution: {integrity: sha512-IEaLzV5lolURJhMKM4naW6pYTDjI5E8I+97o/kbSa0yakvGOBwg7yRmfc54T1M0Z4nmifPsj4OVRGhBaa6dgXA==} + /@angular-devkit/build-webpack@0.1703.1(webpack-dev-server@4.15.1)(webpack@5.90.3): + resolution: {integrity: sha512-nVUzewX8RCzaEPQZ1JQpE42wpsYchKQwfXUSCkoUsuCMB2c6zuEz0Jt94nzJg3UjSEEV4ZqCH8v5MDOvB49Rlw==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: webpack: ^5.30.0 webpack-dev-server: ^4.0.0 dependencies: - '@angular-devkit/architect': 0.1703.0 + '@angular-devkit/architect': 0.1703.1 rxjs: 7.8.1 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) webpack-dev-server: 4.15.1(webpack@5.90.3) @@ -554,8 +553,8 @@ packages: - chokidar dev: true - /@angular-devkit/core@17.3.0: - resolution: {integrity: sha512-ldErhMYq8rcFOhWQ0syQdLy6IYb/LL0erigj7gCMOf59oJgM7B13o/ZTOCvyJttUZ9IP0HB98Gi3epEuJ30VLg==} + /@angular-devkit/core@17.3.1: + resolution: {integrity: sha512-EP7zwqBEaOPuBJwzKmh2abfgNFITGX178BOyTG6zTymeMzEbrvy2OdeQXSslkJ/RGLCpx60GT+0CFW7wGlQR6Q==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^3.5.2 @@ -571,11 +570,11 @@ packages: source-map: 0.7.4 dev: true - /@angular-devkit/schematics@17.3.0: - resolution: {integrity: sha512-EW4Y8W/KTlvvT2fw3bh9hY7quDF2b9EaF+KftEqoDRWYbw0tlF8hWIdlfA6JxQC12d6uefh3kDNj5am0Il2oNQ==} + /@angular-devkit/schematics@17.3.1: + resolution: {integrity: sha512-c3tp5zC5zp6XpK9w8wJf3d4Dyw9BNbmg/VEoXtePGivp4hzks6zuMAFknNRwdK7roOlH0HyM5No4WUZHBFpOmw==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 17.3.0 + '@angular-devkit/core': 17.3.1 jsonc-parser: 3.2.1 magic-string: 0.30.8 ora: 5.4.1 @@ -588,39 +587,39 @@ packages: resolution: {integrity: sha512-ejfNzRuBeHUV8m2fkgs+M809rj5STuCuQo4fdfc6ccQpzXDI6Ha7BKpTznWfg5g529q/wrkoGSGgFxU9Yc2/dQ==} dev: true - /@angular-eslint/eslint-plugin-template@17.3.0(eslint@8.57.0)(typescript@5.4.2): + /@angular-eslint/eslint-plugin-template@17.3.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-9l/aRfpE9MCRVDWRb+rSB9Zei0paep1vqV6M/87VUnzBnzqeMRnVuPvQowilh2zweVSGKBF25Vp4HkwOL6ExDQ==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' dependencies: '@angular-eslint/bundled-angular-compiler': 17.3.0 - '@angular-eslint/utils': 17.3.0(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@angular-eslint/utils': 17.3.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.3) aria-query: 5.3.0 axobject-query: 4.0.0 eslint: 8.57.0 - typescript: 5.4.2 + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@angular-eslint/eslint-plugin@17.3.0(eslint@8.57.0)(typescript@5.4.2): + /@angular-eslint/eslint-plugin@17.3.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-81cQbOEPoQupFX8WmpqZn+y8VA7JdVRGBtt+uJNKBXcJknTpPWdLBZRFlgVakmC24iEZ0Fint/N3NBBQI3mz2A==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' dependencies: - '@angular-eslint/utils': 17.3.0(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@angular-eslint/utils': 17.3.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 - typescript: 5.4.2 + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@angular-eslint/template-parser@17.3.0(eslint@8.57.0)(typescript@5.4.2): + /@angular-eslint/template-parser@17.3.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-m+UzAnWgtjeS0x6skSmR0eXltD/p7HZA+c8pPyAkiHQzkxE7ohhfyZc03yWGuYJvWQUqQAKKdO/nQop14TP0bg==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 @@ -629,41 +628,41 @@ packages: '@angular-eslint/bundled-angular-compiler': 17.3.0 eslint: 8.57.0 eslint-scope: 8.0.0 - typescript: 5.4.2 + typescript: 5.4.3 dev: true - /@angular-eslint/utils@17.3.0(eslint@8.57.0)(typescript@5.4.2): + /@angular-eslint/utils@17.3.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-PJT9pxWqpvI9OXO+7L5SIVhvMW+RFjeafC7PYjtvSbNFpz+kF644BiAcfMJ0YqBnkrw3JXt+RAX25CT4mXIoXw==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' dependencies: '@angular-eslint/bundled-angular-compiler': 17.3.0 - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 - typescript: 5.4.2 + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@angular/animations@17.3.0(@angular/core@17.3.0): - resolution: {integrity: sha512-H7R3c2E479CPpaX6bU84F8u4JV+IFEfM8BUOgrbcI9tF16m6C2eJbl8IqNuW0yADuTarRSlOT7TW0qyrmcxhRw==} + /@angular/animations@17.3.1(@angular/core@17.3.1): + resolution: {integrity: sha512-2TZ0M5J0IizhHpb404DeqArlv8Ki9BFz5ZUuET2uFROpKW8IMDCht8fSrn/DKHpjB9lvzPUhNFaRxNWEY6klnA==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/core': 17.3.0 + '@angular/core': 17.3.1 dependencies: - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) tslib: 2.6.2 - /@angular/cli@17.3.0: - resolution: {integrity: sha512-xwxlimNP4MECkdzjc0+m7lGxighcH0ncAfEo9yUo+r+4EFalB/Q7DAQPIU1xkbBk8iJwcFhGFAnS1IeLur15kQ==} + /@angular/cli@17.3.1: + resolution: {integrity: sha512-IVnnbRi53BZvZ3LE0PCfFefoB2uHlO1sHtilZf/xCpdV4E1Mkz0/hHln5CRHwAXErdSiY57VoMsF5tffxAfaBQ==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/architect': 0.1703.0 - '@angular-devkit/core': 17.3.0 - '@angular-devkit/schematics': 17.3.0 - '@schematics/angular': 17.3.0 + '@angular-devkit/architect': 0.1703.1 + '@angular-devkit/core': 17.3.1 + '@angular-devkit/schematics': 17.3.1 + '@schematics/angular': 17.3.1 '@yarnpkg/lockfile': 1.1.0 ansi-colors: 4.1.3 ini: 4.1.2 @@ -684,26 +683,26 @@ packages: - supports-color dev: true - /@angular/common@17.3.0(@angular/core@17.3.0)(rxjs@7.8.1): - resolution: {integrity: sha512-JnS6jbLl2RxsvGFUOBGeoyviNLEjZKRhn3uK4Ein3DENPv0BeSFMjif9Dp4ReUCnqoD4QQVG0X/r1GFaqHn2pw==} + /@angular/common@17.3.1(@angular/core@17.3.1)(rxjs@7.8.1): + resolution: {integrity: sha512-HyUTJ4RxhE3bOmFRV6Fv2y01ixbrUb8Hd4MxPm8REbNMGKsWCfXhR3FfxFL18Sc03SAF+o0Md0wwekjFKTNKfQ==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/core': 17.3.0 + '@angular/core': 17.3.1 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) rxjs: 7.8.1 tslib: 2.6.2 - /@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0)(typescript@5.4.2): - resolution: {integrity: sha512-ewo+pb0QUC69Ey15z4vPteoBeO81HitqplysOoeXbyVBjMnKmZl3343wx7ukgcI97lmj4d38d1r4AnIoO5n/Vw==} + /@angular/compiler-cli@17.3.1(@angular/compiler@17.3.1)(typescript@5.4.3): + resolution: {integrity: sha512-xLV9KU+zOpe57/2rQ59ku21EaStNpLSlR9+qkDYf8JR09fB+W9vY3UYbpi5RjHxAFIZBM5D9SFQjjll8rch26g==} engines: {node: ^18.13.0 || >=20.9.0} hasBin: true peerDependencies: - '@angular/compiler': 17.3.0 + '@angular/compiler': 17.3.1 typescript: '>=5.2 <5.5' dependencies: - '@angular/compiler': 17.3.0(@angular/core@17.3.0) + '@angular/compiler': 17.3.1(@angular/core@17.3.1) '@babel/core': 7.23.9 '@jridgewell/sourcemap-codec': 1.4.15 chokidar: 3.6.0 @@ -711,22 +710,22 @@ packages: reflect-metadata: 0.2.1 semver: 7.6.0 tslib: 2.6.2 - typescript: 5.4.2 + typescript: 5.4.3 yargs: 17.7.2 transitivePeerDependencies: - supports-color dev: true - /@angular/compiler@17.3.0(@angular/core@17.3.0): - resolution: {integrity: sha512-lZBD5mFq7SzFJydZwW2jvnQGmtcU1s3e548hl4MSZpRgt13m5UmBQKbyMOvVN2WxKvWKlmDlywsAJlMSXepYig==} + /@angular/compiler@17.3.1(@angular/core@17.3.1): + resolution: {integrity: sha512-8qqlWPGZEyD2FY5losOW3Aocro+lFysPDzsf0LHgQUM6Ub1b+pq4jUOjH6w0vzaxG3TfxkgzOQ9aNdWtSV67Rg==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/core': 17.3.0 + '@angular/core': 17.3.1 peerDependenciesMeta: '@angular/core': optional: true dependencies: - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) tslib: 2.6.2 /@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4): @@ -739,71 +738,83 @@ packages: rxjs: 7.8.1 tslib: 2.6.2 zone.js: 0.14.4 + dev: false - /@angular/forms@17.3.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(rxjs@7.8.1): - resolution: {integrity: sha512-TnLOake1fQCmmGEOZbTjP2gbKerZ/bfEMuiFfoe7R2rUvKl4xHGAHp99bqf7bUyAbB8ZgmPZc9/VHrrts8UNyA==} + /@angular/core@17.3.1(rxjs@7.8.1)(zone.js@0.14.4): + resolution: {integrity: sha512-Qf3/sgkXS1LHwOTtqAVYprySrn0YpPIZqerPc0tK+hyQfwAz5BQlpcBhbH8RWKlfCY8eO0cqo/j0+e8DQOgYfg==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/common': 17.3.0 - '@angular/core': 17.3.0 - '@angular/platform-browser': 17.3.0 rxjs: ^6.5.3 || ^7.4.0 + zone.js: ~0.14.0 dependencies: - '@angular/common': 17.3.0(@angular/core@17.3.0)(rxjs@7.8.1) - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.0(@angular/animations@17.3.0)(@angular/common@17.3.0)(@angular/core@17.3.0) + rxjs: 7.8.1 + tslib: 2.6.2 + zone.js: 0.14.4 + + /@angular/forms@17.3.1(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(rxjs@7.8.1): + resolution: {integrity: sha512-HndsO90k67sFHzd+sII+rhAUksffBvquFuAUCc6QR9WVjILxVg2fY7oBidgS1gKNqu0mptPG0GvuORnaW/0gSg==} + engines: {node: ^18.13.0 || >=20.9.0} + peerDependencies: + '@angular/common': 17.3.1 + '@angular/core': 17.3.1 + '@angular/platform-browser': 17.3.1 + rxjs: ^6.5.3 || ^7.4.0 + dependencies: + '@angular/common': 17.3.1(@angular/core@17.3.1)(rxjs@7.8.1) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/platform-browser': 17.3.1(@angular/animations@17.3.1)(@angular/common@17.3.1)(@angular/core@17.3.1) rxjs: 7.8.1 tslib: 2.6.2 dev: false - /@angular/language-service@17.3.0: - resolution: {integrity: sha512-h4bwuyeAmZkoeCM/KvhWW+p2xjKiVt4GfSWZsIuW5ilfJt7hmkUFGyu0ABCjt6fiNQRrS2tvBZdXxk+A+zX8KQ==} + /@angular/language-service@17.3.1: + resolution: {integrity: sha512-awC+KHwIRXZ7biQz0Q7q+UZuuyeWHcxjxyQtvv0n1jwwyRpUo8WAXcduKRxl/wMOrxfZkB/tpGcd1/Eeql9CCw==} engines: {node: ^18.13.0 || >=20.9.0} dev: true - /@angular/platform-browser-dynamic@17.3.0(@angular/common@17.3.0)(@angular/compiler@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0): - resolution: {integrity: sha512-oX5AG0aSjmB89SyJZGyabr6uwfWd7yJM+krcrzHxFbVhvDCwdi9G+B0ADmaUn1shaXDseOFiLpo3R/oagd2fTA==} + /@angular/platform-browser-dynamic@17.3.1(@angular/common@17.3.1)(@angular/compiler@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1): + resolution: {integrity: sha512-ACW/npNaDxUNQtEomjjv/KIBY8jHEinePff5qosnAxLE0IpA4qE9eDp36zG35xoJqrPJPYjXbZCBRqqrzM7U7Q==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/common': 17.3.0 - '@angular/compiler': 17.3.0 - '@angular/core': 17.3.0 - '@angular/platform-browser': 17.3.0 + '@angular/common': 17.3.1 + '@angular/compiler': 17.3.1 + '@angular/core': 17.3.1 + '@angular/platform-browser': 17.3.1 dependencies: - '@angular/common': 17.3.0(@angular/core@17.3.0)(rxjs@7.8.1) - '@angular/compiler': 17.3.0(@angular/core@17.3.0) - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.0(@angular/animations@17.3.0)(@angular/common@17.3.0)(@angular/core@17.3.0) + '@angular/common': 17.3.1(@angular/core@17.3.1)(rxjs@7.8.1) + '@angular/compiler': 17.3.1(@angular/core@17.3.1) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/platform-browser': 17.3.1(@angular/animations@17.3.1)(@angular/common@17.3.1)(@angular/core@17.3.1) tslib: 2.6.2 - /@angular/platform-browser@17.3.0(@angular/animations@17.3.0)(@angular/common@17.3.0)(@angular/core@17.3.0): - resolution: {integrity: sha512-sIquvbq04KMOdpk1VdVFt7kVhOk/Rk+hI3M4raarMK5EbZ16nLYzpqjc2OZetUpKy6LB/FemClgNUShj9NlrqA==} + /@angular/platform-browser@17.3.1(@angular/animations@17.3.1)(@angular/common@17.3.1)(@angular/core@17.3.1): + resolution: {integrity: sha512-8ABAL8PElSGzkIparVwifsU0NSu0DdqnWYw9YvLhhZQ6lOuWbG+dTUo/DXzmWhA6ezQWJGNakEZPJJytFIIy+A==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/animations': 17.3.0 - '@angular/common': 17.3.0 - '@angular/core': 17.3.0 + '@angular/animations': 17.3.1 + '@angular/common': 17.3.1 + '@angular/core': 17.3.1 peerDependenciesMeta: '@angular/animations': optional: true dependencies: - '@angular/animations': 17.3.0(@angular/core@17.3.0) - '@angular/common': 17.3.0(@angular/core@17.3.0)(rxjs@7.8.1) - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/animations': 17.3.1(@angular/core@17.3.1) + '@angular/common': 17.3.1(@angular/core@17.3.1)(rxjs@7.8.1) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) tslib: 2.6.2 - /@angular/router@17.3.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(rxjs@7.8.1): - resolution: {integrity: sha512-OBMAfjaSfEdEYqfYsAemDvknYZV69ABFf06hhduNLhB5QgbPrZCbNptnlrCPx4YDrzcANj2hrcyAmAVNTk8Giw==} + /@angular/router@17.3.1(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(rxjs@7.8.1): + resolution: {integrity: sha512-H6H7lY9i5Ppu0SFwwpeWqJbCFw8cILOj8Rd1+AGoCN5m3ivPtjD2Ltz62PI2zZkqx+WhQdk19l61Wm3oRqg70A==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/common': 17.3.0 - '@angular/core': 17.3.0 - '@angular/platform-browser': 17.3.0 + '@angular/common': 17.3.1 + '@angular/core': 17.3.1 + '@angular/platform-browser': 17.3.1 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/common': 17.3.0(@angular/core@17.3.0)(rxjs@7.8.1) - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.0(@angular/animations@17.3.0)(@angular/common@17.3.0)(@angular/core@17.3.0) + '@angular/common': 17.3.1(@angular/core@17.3.1)(rxjs@7.8.1) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/platform-browser': 17.3.1(@angular/animations@17.3.1)(@angular/common@17.3.1)(@angular/core@17.3.1) rxjs: 7.8.1 tslib: 2.6.2 @@ -853,7 +864,7 @@ packages: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.1 - '@babel/generator': 7.23.6 + '@babel/generator': 7.24.1 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) '@babel/helpers': 7.24.1 @@ -1768,6 +1779,19 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0) dev: true + /@babel/plugin-transform-async-generator-functions@7.24.1(@babel/core@7.24.0): + resolution: {integrity: sha512-OTkLJM0OtmzcpOgF7MREERUCdCnCBtBsq3vVFbuq/RKMK0/jdYqdMexWi3zNs7Nzd95ase65MbTGrpFJflOb6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0) + dev: true + /@babel/plugin-transform-async-generator-functions@7.24.1(@babel/core@7.24.1): resolution: {integrity: sha512-OTkLJM0OtmzcpOgF7MREERUCdCnCBtBsq3vVFbuq/RKMK0/jdYqdMexWi3zNs7Nzd95ase65MbTGrpFJflOb6A==} engines: {node: '>=6.9.0'} @@ -1793,6 +1817,18 @@ packages: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) dev: true + /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.0): + resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.0 + '@babel/helper-module-imports': 7.24.1 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) + dev: true + /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.1): resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} engines: {node: '>=6.9.0'} @@ -2878,8 +2914,8 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.0) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.0) '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.0) - '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.0) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-transform-async-generator-functions': 7.24.1(@babel/core@7.24.0) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.0) '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.0) '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.0) '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.0) @@ -3366,14 +3402,14 @@ packages: mime: 3.0.0 dev: true - /@commitlint/cli@19.2.1(@types/node@18.19.25)(typescript@5.4.2): + /@commitlint/cli@19.2.1(@types/node@18.19.26)(typescript@5.4.3): resolution: {integrity: sha512-cbkYUJsLqRomccNxvoJTyv5yn0bSy05BBizVyIcLACkRbVUqYorC351Diw/XFSWC/GtpwiwT2eOvQgFZa374bg==} engines: {node: '>=v18'} hasBin: true dependencies: '@commitlint/format': 19.0.3 '@commitlint/lint': 19.1.0 - '@commitlint/load': 19.2.0(@types/node@18.19.25)(typescript@5.4.2) + '@commitlint/load': 19.2.0(@types/node@18.19.26)(typescript@5.4.3) '@commitlint/read': 19.2.1 '@commitlint/types': 19.0.3 execa: 8.0.1 @@ -3442,7 +3478,7 @@ packages: '@commitlint/types': 19.0.3 dev: true - /@commitlint/load@19.2.0(@types/node@18.19.25)(typescript@5.4.2): + /@commitlint/load@19.2.0(@types/node@18.19.26)(typescript@5.4.3): resolution: {integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==} engines: {node: '>=v18'} dependencies: @@ -3451,8 +3487,8 @@ packages: '@commitlint/resolve-extends': 19.1.0 '@commitlint/types': 19.0.3 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.4.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.25)(cosmiconfig@9.0.0)(typescript@5.4.2) + cosmiconfig: 9.0.0(typescript@5.4.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.26)(cosmiconfig@9.0.0)(typescript@5.4.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -4294,7 +4330,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -4315,14 +4351,14 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -4350,7 +4386,7 @@ packages: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 jest-mock: 29.7.0 dev: true @@ -4377,7 +4413,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 18.19.25 + '@types/node': 18.19.26 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -4410,7 +4446,7 @@ packages: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 18.19.25 + '@types/node': 18.19.26 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -4498,7 +4534,7 @@ packages: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 18.19.25 + '@types/node': 18.19.26 '@types/yargs': 17.0.32 chalk: 4.1.2 dev: true @@ -4633,18 +4669,18 @@ packages: urlpattern-polyfill: 8.0.2 dev: true - /@ngrx/eslint-plugin@17.1.1(eslint@8.57.0)(typescript@5.4.2): + /@ngrx/eslint-plugin@17.1.1(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-Lxfd8jDTn5+OxQY5Sav5tQWBrg7YcLiSgEuUTwBQwAldqBW7G2I3HNBU6qPglwJOJ6JKgHPXCGxIkQLs1Q2wfw==} peerDependencies: eslint: '>=8.0.0' typescript: '*' dependencies: - '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 - eslint-etc: 5.2.1(eslint@8.57.0)(typescript@5.4.2) + eslint-etc: 5.2.1(eslint@8.57.0)(typescript@5.4.3) semver: 7.6.0 strip-json-comments: 3.1.1 - typescript: 5.4.2 + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true @@ -4653,7 +4689,7 @@ packages: resolution: {integrity: sha512-DaBU97P+lCRWnphvYkE0qvZW16oCpn43/IA8XktFJa6hJP/JVlqk6cLR5fhfoLL2zdhpPkj9w5vsdqIlXZYXgw==} dev: true - /@ngrx/signals@17.1.1(@angular/core@17.3.0)(rxjs@7.8.1): + /@ngrx/signals@17.1.1(@angular/core@17.3.1)(rxjs@7.8.1): resolution: {integrity: sha512-9Rlw7u8LxkyS+HMZe7DzUkV1p/2IL5tDa1ZHhX8Ldilx4HoOHvISdzCagCpXMoXDLZGEaWOA/n/BcQQxsjytEg==} peerDependencies: '@angular/core': ^17.0.0 @@ -4662,7 +4698,7 @@ packages: rxjs: optional: true dependencies: - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) rxjs: 7.8.1 tslib: 2.6.2 dev: false @@ -4673,7 +4709,7 @@ packages: '@ngrx/store': 17.1.1 rxjs: ^6.5.3 || ^7.5.0 dependencies: - '@ngrx/store': 17.1.1(@angular/core@17.3.0)(rxjs@7.8.1) + '@ngrx/store': 17.1.1(@angular/core@17.3.1)(rxjs@7.8.1) rxjs: 7.8.1 tslib: 2.6.2 dev: true @@ -4688,17 +4724,29 @@ packages: '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) rxjs: 7.8.1 tslib: 2.6.2 + dev: false - /@ngtools/webpack@17.3.0(@angular/compiler-cli@17.3.0)(typescript@5.4.2)(webpack@5.90.3): - resolution: {integrity: sha512-wNTCDPPEtjP4mxYerLVLCMwOCTEOD2HqZMVXD8pJbarrGPMuoyglUZuqNSIS5KVqR+fFez6JEUnMvC3QSqf58w==} + /@ngrx/store@17.1.1(@angular/core@17.3.1)(rxjs@7.8.1): + resolution: {integrity: sha512-MGbKLTcl4uq2Uzx+qbMYNy6xW+JnkpRiznaGFX2/NFflq/zNZsjbxZrvn4/Z6ClVYIjj3uadjM1fupwMYMJxVA==} + requiresBuild: true + peerDependencies: + '@angular/core': ^17.0.0 + rxjs: ^6.5.3 || ^7.5.0 + dependencies: + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) + rxjs: 7.8.1 + tslib: 2.6.2 + + /@ngtools/webpack@17.3.1(@angular/compiler-cli@17.3.1)(typescript@5.4.3)(webpack@5.90.3): + resolution: {integrity: sha512-6qRYFN6DqogZK0ZFrSlhg1OsIWm3lL3m+/Ixoj6/MLLjDBrTtHqmI93vg6P1EKYTH4fWChL7jtv7iS/LSZubgw==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: '@angular/compiler-cli': ^17.0.0 typescript: '>=5.2 <5.5' webpack: ^5.54.0 dependencies: - '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0)(typescript@5.4.2) - typescript: 5.4.2 + '@angular/compiler-cli': 17.3.1(@angular/compiler@17.3.1)(typescript@5.4.3) + typescript: 5.4.3 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true @@ -4809,10 +4857,10 @@ packages: - supports-color dev: true - /@nrwl/angular@18.1.2(@angular-devkit/build-angular@17.3.0)(@angular-devkit/core@17.3.0)(@angular-devkit/schematics@17.3.0)(@schematics/angular@17.3.0)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.2): + /@nrwl/angular@18.1.2(@angular-devkit/build-angular@17.3.1)(@angular-devkit/core@17.3.1)(@angular-devkit/schematics@17.3.1)(@schematics/angular@17.3.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.3): resolution: {integrity: sha512-qgzWh4ku3bV+v2ZVFbNmGpFe9xGCxYPKDPE7YKpGKjBYb+5rrFjITkbR4TD0B3mgI7iOYX6ZdkYrPjpmCsI1kA==} dependencies: - '@nx/angular': 18.1.2(@angular-devkit/build-angular@17.3.0)(@angular-devkit/core@17.3.0)(@angular-devkit/schematics@17.3.0)(@schematics/angular@17.3.0)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.2) + '@nx/angular': 18.1.2(@angular-devkit/build-angular@17.3.1)(@angular-devkit/core@17.3.1)(@angular-devkit/schematics@17.3.1)(@schematics/angular@17.3.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.3) tslib: 2.6.2 transitivePeerDependencies: - '@angular-devkit/build-angular' @@ -4858,10 +4906,10 @@ packages: - nx dev: true - /@nrwl/eslint-plugin-nx@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.2): + /@nrwl/eslint-plugin-nx@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-cmTMpG09avCHbbrpHE2rld4o+GEUX6Q7URh51QvKbeIeBvT77uEbin7EzptWJNjN4Ht9hKEAiQkZPideualWeA==} dependencies: - '@nx/eslint-plugin': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.2) + '@nx/eslint-plugin': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -4878,10 +4926,10 @@ packages: - verdaccio dev: true - /@nrwl/jest@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.2): + /@nrwl/jest@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.3): resolution: {integrity: sha512-G+Zr/MDS3k1Bg0Pmv2YWlqBhpaZq38W7GdSci4DEkdQMBZtHhoObTrAfnRXwwP5Zsh5FAXltfTdAkWn8e6lQtg==} dependencies: - '@nx/jest': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.2) + '@nx/jest': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -4898,10 +4946,10 @@ packages: - verdaccio dev: true - /@nrwl/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.3.3): + /@nrwl/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.3.3): resolution: {integrity: sha512-BTxmaF73TB9Ym8MyXUfFjeS3kyw/elORrSrEu6b4ei1Q/DszEpZHhvavN1nUebqJe3RifW9IKL2TFblSoIWCTg==} dependencies: - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.3.3) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.3.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -4915,10 +4963,10 @@ packages: - verdaccio dev: true - /@nrwl/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nrwl/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-BTxmaF73TB9Ym8MyXUfFjeS3kyw/elORrSrEu6b4ei1Q/DszEpZHhvavN1nUebqJe3RifW9IKL2TFblSoIWCTg==} dependencies: - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -4944,10 +4992,10 @@ packages: - debug dev: true - /@nrwl/vite@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2)(vite@5.0.12)(vitest@1.4.0): + /@nrwl/vite@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3)(vite@5.0.12)(vitest@1.4.0): resolution: {integrity: sha512-z6DVIZt9BK2TOSGPkCMdjpVeJXzn4qijn0OGZNB+bD2hpKjFpI3IY0yEbbNSexppkmQdovtIY95gjSdcspkEYQ==} dependencies: - '@nx/vite': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2)(vite@5.0.12)(vitest@1.4.0) + '@nx/vite': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3)(vite@5.0.12)(vitest@1.4.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -4963,10 +5011,10 @@ packages: - vitest dev: true - /@nrwl/web@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nrwl/web@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-mu8OW+wFMYgLB2R4X8gzdxLhREXJ5CIRvkS1xFmf91/pMru2kiBpiGrX3+6lvM4RcMFaY4YZiKpVp09JOeCQwQ==} dependencies: - '@nx/web': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nx/web': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -4980,10 +5028,10 @@ packages: - verdaccio dev: true - /@nrwl/webpack@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nrwl/webpack@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-ivFdNTnvLAHwWvF/83hPlBhuSvVXEblS4l4OkPRVw8kG7DjEAfvY5Zb1GsqsThTMAgtXPEVdqzofAskFr+xKPw==} dependencies: - '@nx/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nx/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -5023,7 +5071,7 @@ packages: - debug dev: true - /@nx/angular@18.1.2(@angular-devkit/build-angular@17.3.0)(@angular-devkit/core@17.3.0)(@angular-devkit/schematics@17.3.0)(@schematics/angular@17.3.0)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.2): + /@nx/angular@18.1.2(@angular-devkit/build-angular@17.3.1)(@angular-devkit/core@17.3.1)(@angular-devkit/schematics@17.3.1)(@schematics/angular@17.3.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.3): resolution: {integrity: sha512-ES9GtbIPmnz5W6Q9fZ+CkwyIRVjGkRd8Ee5eSwi0nRZDeCPSar+k9+52bpzW8VV5LbCQZKEGS8NjRhV0l+/9jw==} peerDependencies: '@angular-devkit/build-angular': '>= 15.0.0 < 18.0.0' @@ -5036,19 +5084,19 @@ packages: esbuild: optional: true dependencies: - '@angular-devkit/build-angular': 17.3.0(@angular/compiler-cli@17.3.0)(@swc/core@1.4.8)(@types/node@18.19.25)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.2) - '@angular-devkit/core': 17.3.0 - '@angular-devkit/schematics': 17.3.0 - '@nrwl/angular': 18.1.2(@angular-devkit/build-angular@17.3.0)(@angular-devkit/core@17.3.0)(@angular-devkit/schematics@17.3.0)(@schematics/angular@17.3.0)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.2) + '@angular-devkit/build-angular': 17.3.1(@angular/compiler-cli@17.3.1)(@swc/core@1.4.8)(@types/node@18.19.26)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.3) + '@angular-devkit/core': 17.3.1 + '@angular-devkit/schematics': 17.3.1 + '@nrwl/angular': 18.1.2(@angular-devkit/build-angular@17.3.1)(@angular-devkit/core@17.3.1)(@angular-devkit/schematics@17.3.1)(@schematics/angular@17.3.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(eslint@8.57.0)(nx@18.1.2)(rxjs@7.8.1)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/eslint': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) - '@nx/web': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) - '@nx/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nx/eslint': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) + '@nx/web': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) + '@nx/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/workspace': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.2) - '@schematics/angular': 17.3.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3) + '@schematics/angular': 17.3.1 + '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) chalk: 4.1.2 find-cache-dir: 3.3.2 ignore: 5.3.1 @@ -5058,7 +5106,7 @@ packages: rxjs: 7.8.1 semver: 7.6.0 tslib: 2.6.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) webpack-merge: 5.10.0 transitivePeerDependencies: - '@babel/traverse' @@ -5106,7 +5154,7 @@ packages: yargs-parser: 21.1.1 dev: true - /@nx/eslint-plugin@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.2): + /@nx/eslint-plugin@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-enlPiKl/TdW/YTxNmlBvMt4Z6hm/Ozp5R+G9d7w+e82ZwBBaJnsTZYlNGuhFmWP9ZVMCVjivJHe9da0Ea4e7yQ==} peerDependencies: '@typescript-eslint/parser': ^6.13.2 || ^7.0.0 @@ -5115,12 +5163,12 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nrwl/eslint-plugin-nx': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.2) + '@nrwl/eslint-plugin-nx': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(@typescript-eslint/parser@6.21.0)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(nx@18.1.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) chalk: 4.1.2 confusing-browser-globals: 1.0.11 eslint-config-prettier: 9.1.0(eslint@8.57.0) @@ -5141,7 +5189,7 @@ packages: - verdaccio dev: true - /@nx/eslint@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2): + /@nx/eslint@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2): resolution: {integrity: sha512-cNCbCg5/qYCXrcBuJaJjy6+aLTDcU9LfxEvuBrA3RdAVqpSj0EjxocrmXwbSZTQt6JDhgraoZqtFRxGZ+44Oww==} peerDependencies: js-yaml: 4.1.0 @@ -5150,8 +5198,8 @@ packages: optional: true dependencies: '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.3.3) - '@nx/linter': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.3.3) + '@nx/linter': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2) eslint: 8.57.0 tslib: 2.6.2 typescript: 5.3.3 @@ -5167,18 +5215,18 @@ packages: - verdaccio dev: true - /@nx/jest@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.2): + /@nx/jest@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.3): resolution: {integrity: sha512-lCWVAzeN+U5xppqU6kuJaHCdudiSxnVdoYcaW0yf5bx3XYaKIIN+2NTPxRGy/QKibnQwqv3Y5NdIFDt67OYQ4Q==} dependencies: '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 - '@nrwl/jest': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.2) + '@nrwl/jest': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(ts-node@10.9.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-resolve: 29.7.0 jest-util: 29.7.0 minimatch: 9.0.3 @@ -5201,7 +5249,7 @@ packages: - verdaccio dev: true - /@nx/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.3.3): + /@nx/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.3.3): resolution: {integrity: sha512-bq3goTS6zM6Eg3DNLAz51gB34zHqhYf7LzTFJOGDRogzmEGsttSbX46eiaD4oSpq/s4ybwRe2cHV3ZGodaZL1A==} peerDependencies: verdaccio: ^5.0.4 @@ -5216,7 +5264,7 @@ packages: '@babel/preset-env': 7.24.1(@babel/core@7.24.1) '@babel/preset-typescript': 7.24.1(@babel/core@7.24.1) '@babel/runtime': 7.24.1 - '@nrwl/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.3.3) + '@nrwl/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.3.3) '@nx/devkit': 18.1.2(nx@18.1.2) '@nx/workspace': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) @@ -5236,7 +5284,7 @@ packages: ora: 5.3.0 semver: 7.6.0 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.3.3) + ts-node: 10.9.1(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.3.3) tsconfig-paths: 4.2.0 tslib: 2.6.2 transitivePeerDependencies: @@ -5251,7 +5299,7 @@ packages: - typescript dev: true - /@nx/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nx/js@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-bq3goTS6zM6Eg3DNLAz51gB34zHqhYf7LzTFJOGDRogzmEGsttSbX46eiaD4oSpq/s4ybwRe2cHV3ZGodaZL1A==} peerDependencies: verdaccio: ^5.0.4 @@ -5266,10 +5314,10 @@ packages: '@babel/preset-env': 7.24.1(@babel/core@7.24.1) '@babel/preset-typescript': 7.24.1(@babel/core@7.24.1) '@babel/runtime': 7.24.1 - '@nrwl/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nrwl/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) '@nx/workspace': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.2) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3) babel-plugin-const-enum: 1.2.0(@babel/core@7.24.1) babel-plugin-macros: 2.8.0 babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.1) @@ -5286,7 +5334,7 @@ packages: ora: 5.3.0 semver: 7.6.0 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.4.2) + ts-node: 10.9.1(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3) tsconfig-paths: 4.2.0 tslib: 2.6.2 transitivePeerDependencies: @@ -5301,10 +5349,10 @@ packages: - typescript dev: true - /@nx/linter@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2): + /@nx/linter@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2): resolution: {integrity: sha512-bIGFQwHixXv6BuVLVIc5HYwzlodGxK9HsTp+5RtokCXZ0LIv4jkm0FsNExkBBqlaf4oLLqu0F/IZYfzhTwcCsA==} dependencies: - '@nx/eslint': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2) + '@nx/eslint': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -5408,7 +5456,7 @@ packages: dev: true optional: true - /@nx/playwright@18.1.2(@playwright/test@1.42.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nx/playwright@18.1.2(@playwright/test@1.42.1)(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-l2FA7rJab/clPVTSo00K56lrtDDS90uJAV9x3JJM6WQ9BloZBJjYG1EfPvt7NT7Tqc3fOtVUXn876U8BiR6k9A==} peerDependencies: '@playwright/test': ^1.36.0 @@ -5417,9 +5465,9 @@ packages: optional: true dependencies: '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/eslint': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.2) + '@nx/eslint': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3) '@playwright/test': 1.42.1 minimatch: 9.0.3 tslib: 2.6.2 @@ -5437,21 +5485,21 @@ packages: - verdaccio dev: true - /@nx/vite@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2)(vite@5.0.12)(vitest@1.4.0): + /@nx/vite@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3)(vite@5.0.12)(vitest@1.4.0): resolution: {integrity: sha512-k2BiPSja0hLpOw6NBCqzxg5dwvrdBbGULwv+K/g1gH9shquyqkKyGw9GTg0o9Bm007UO1U+v1niQOvs92b8dgA==} peerDependencies: vite: ^5.0.0 vitest: ^1.3.1 dependencies: - '@nrwl/vite': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2)(vite@5.0.12)(vitest@1.4.0) + '@nrwl/vite': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3)(vite@5.0.12)(vitest@1.4.0) '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3) '@swc/helpers': 0.5.7 enquirer: 2.3.6 tsconfig-paths: 4.2.0 - vite: 5.0.12(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0) - vitest: 1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0) + vite: 5.0.12(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0) + vitest: 1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -5465,12 +5513,12 @@ packages: - verdaccio dev: true - /@nx/web@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nx/web@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-SUqwXwwFMjtMakCWHb/pMxIRYiRg9GZnvaIF3/iiaRcXSldReIXbP6+weW36SLv9fjxtObV/CiW59AILwkPzHA==} dependencies: - '@nrwl/web': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nrwl/web': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) chalk: 4.1.2 detect-port: 1.5.1 http-server: 14.1.1 @@ -5488,31 +5536,31 @@ packages: - verdaccio dev: true - /@nx/webpack@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2): + /@nx/webpack@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-Mv24F7IlYRqSqsn97+WlpylCpC79v4aQubZRPE/dxx7eRqBMykg1BSy8uDI926ggkr096EUejQkN44pzu7o/gQ==} dependencies: '@babel/core': 7.24.1 - '@nrwl/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nrwl/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) - '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.25)(nx@18.1.2)(typescript@5.4.2) + '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) ajv: 8.12.0 - autoprefixer: 10.4.18(postcss@8.4.36) + autoprefixer: 10.4.19(postcss@8.4.38) babel-loader: 9.1.3(@babel/core@7.24.1)(webpack@5.90.3) browserslist: 4.23.0 chalk: 4.1.2 copy-webpack-plugin: 10.2.4(webpack@5.90.3) css-loader: 6.10.0(webpack@5.90.3) css-minimizer-webpack-plugin: 5.0.1(webpack@5.90.3) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.4.2)(webpack@5.90.3) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.4.3)(webpack@5.90.3) less: 4.1.3 less-loader: 11.1.0(less@4.1.3)(webpack@5.90.3) license-webpack-plugin: 4.0.2(webpack@5.90.3) loader-utils: 2.0.4 mini-css-extract-plugin: 2.4.7(webpack@5.90.3) parse5: 4.0.0 - postcss: 8.4.36 - postcss-import: 14.1.0(postcss@8.4.36) - postcss-loader: 6.2.1(postcss@8.4.36)(webpack@5.90.3) + postcss: 8.4.38 + postcss-import: 14.1.0(postcss@8.4.38) + postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.90.3) rxjs: 7.8.1 sass: 1.72.0 sass-loader: 12.6.0(sass@1.72.0)(webpack@5.90.3) @@ -5520,11 +5568,11 @@ packages: style-loader: 3.3.4(webpack@5.90.3) stylus: 0.59.0 stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.90.3) - terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(esbuild@0.20.1)(webpack@5.90.3) - ts-loader: 9.5.1(typescript@5.4.2)(webpack@5.90.3) + terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(webpack@5.90.3) + ts-loader: 9.5.1(typescript@5.4.3)(webpack@5.90.3) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.6.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) webpack-dev-server: 4.15.1(webpack@5.90.3) webpack-node-externals: 3.0.0 webpack-subresource-integrity: 5.1.0(webpack@5.90.3) @@ -5767,13 +5815,13 @@ packages: typescript: 5.3.3 dev: true - /@phenomnomnominal/tsquery@5.0.1(typescript@5.4.2): + /@phenomnomnominal/tsquery@5.0.1(typescript@5.4.3): resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} peerDependencies: typescript: ^3 || ^4 || ^5 dependencies: esquery: 1.5.0 - typescript: 5.4.2 + typescript: 5.4.3 dev: true /@pkgjs/parseargs@0.11.0: @@ -5800,8 +5848,8 @@ packages: resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} dev: true - /@reduxjs/toolkit@2.2.1: - resolution: {integrity: sha512-8CREoqJovQW/5I4yvvijm/emUiCCmcs4Ev4XPWd4mizSO+dD3g5G6w34QK5AGeNrSH7qM8Fl66j4vuV7dpOdkw==} + /@reduxjs/toolkit@2.2.2: + resolution: {integrity: sha512-454GZrEx3G6QSYwIx9ROaso1HR6sTH8qyZBe3KEsdWVGU3ayV8jYCwdaEJV3vl9V6+pi3GRl+7Xl7AeDna6qwQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0 @@ -6060,12 +6108,12 @@ packages: fsevents: 2.3.3 dev: true - /@schematics/angular@17.3.0: - resolution: {integrity: sha512-QqugP4Uyxk966VaUb/Jk5LQ5rE1BV4v2TmniPZtN3GZ6MDkpvPnFvlysvoq6y+7uiRhCLiT1DsBIwc9vXz3vWA==} + /@schematics/angular@17.3.1: + resolution: {integrity: sha512-B3TkpjDjZhxX+tUc2ySEHU33x82Da0sssq/EMqQ1PQBHeRMa0ecyCeExjFEs2y57ZuC+QeVTaUt+TW45lLSjQw==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 17.3.0 - '@angular-devkit/schematics': 17.3.0 + '@angular-devkit/core': 17.3.1 + '@angular-devkit/schematics': 17.3.1 jsonc-parser: 3.2.1 transitivePeerDependencies: - chokidar @@ -6151,7 +6199,7 @@ packages: '@swc/types': 0.1.6 dev: true - /@swc-node/register@1.9.0(@swc/core@1.4.8)(@swc/types@0.1.6)(typescript@5.4.2): + /@swc-node/register@1.9.0(@swc/core@1.4.8)(@swc/types@0.1.6)(typescript@5.4.3): resolution: {integrity: sha512-i0iYInD4q5v3xQC6bKvs0QtfUxu197CU5qKALmpxEqTYs7sIhQ7KFLe3kP+eAR4gRkJTvAgjQgrokXLN2jZrOw==} peerDependencies: '@swc/core': '>= 1.3' @@ -6164,7 +6212,7 @@ packages: debug: 4.3.4 pirates: 4.0.6 tslib: 2.6.2 - typescript: 5.4.2 + typescript: 5.4.3 transitivePeerDependencies: - '@swc/types' - supports-color @@ -6318,7 +6366,7 @@ packages: tailwindcss: 3.4.1(ts-node@10.9.2) dev: true - /@testing-library/angular@15.2.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(@angular/router@17.3.0): + /@testing-library/angular@15.2.0(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(@angular/router@17.3.1): resolution: {integrity: sha512-FqLMyS8FYYR/6FOSZrmUW7NCFIYSYZyg2MFd8S5PZcUNdfoPRaNY6nEmeuyoiQn6IveKUKCH3vTfOIeI16nxHg==} peerDependencies: '@angular/common': '>= 17.0.0' @@ -6326,10 +6374,10 @@ packages: '@angular/platform-browser': '>= 17.0.0' '@angular/router': '>= 17.0.0' dependencies: - '@angular/common': 17.3.0(@angular/core@17.3.0)(rxjs@7.8.1) - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.0(@angular/animations@17.3.0)(@angular/common@17.3.0)(@angular/core@17.3.0) - '@angular/router': 17.3.0(@angular/common@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0)(rxjs@7.8.1) + '@angular/common': 17.3.1(@angular/core@17.3.1)(rxjs@7.8.1) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/platform-browser': 17.3.1(@angular/animations@17.3.1)(@angular/common@17.3.1)(@angular/core@17.3.1) + '@angular/router': 17.3.1(@angular/common@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1)(rxjs@7.8.1) '@testing-library/dom': 9.3.4 tslib: 2.6.2 dev: true @@ -6376,10 +6424,10 @@ packages: chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - jest: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) lodash: 4.17.21 redent: 3.0.0 - vitest: 1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0) + vitest: 1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0) dev: true /@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4): @@ -6496,32 +6544,32 @@ packages: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/bonjour@3.5.13: resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/connect-history-api-fallback@1.5.4: resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} dependencies: '@types/express-serve-static-core': 4.17.43 - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/connect@3.4.38: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/conventional-commits-parser@5.0.0: resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/cookie@0.6.0: @@ -6549,7 +6597,7 @@ packages: /@types/express-serve-static-core@4.17.43: resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 '@types/qs': 6.9.13 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -6567,7 +6615,7 @@ packages: /@types/graceful-fs@4.1.9: resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/http-errors@2.0.4: @@ -6577,7 +6625,7 @@ packages: /@types/http-proxy@1.17.14: resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/istanbul-lib-coverage@2.0.6: @@ -6606,7 +6654,7 @@ packages: /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 dev: true @@ -6634,21 +6682,21 @@ packages: /@types/mute-stream@0.0.4: resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/node-forge@1.3.11: resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/node@12.20.55: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node@18.19.25: - resolution: {integrity: sha512-NrNXHJCexZtcbR9K1hsv1fSbwAwnhv7ql7l331aKvW0sej5H0NY1o64BHe0AA2ZoQuTm7NE6fyNW079MOWXe4Q==} + /@types/node@18.19.26: + resolution: {integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==} dependencies: undici-types: 5.26.5 dev: true @@ -6691,7 +6739,7 @@ packages: resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/serve-index@1.9.4: @@ -6705,13 +6753,13 @@ packages: dependencies: '@types/http-errors': 2.0.4 '@types/mime': 3.0.4 - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/sockjs@0.3.36: resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/stack-utils@2.0.3: @@ -6733,7 +6781,7 @@ packages: /@types/ws@8.5.10: resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 dev: true /@types/yargs-parser@21.0.3: @@ -6746,7 +6794,7 @@ packages: '@types/yargs-parser': 21.0.3 dev: true - /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -6758,10 +6806,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 eslint: 8.57.0 @@ -6769,26 +6817,26 @@ packages: ignore: 5.3.1 natural-compare: 1.4.0 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.2) - typescript: 5.4.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -6800,11 +6848,11 @@ packages: dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 eslint: 8.57.0 - typescript: 5.4.2 + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true @@ -6841,7 +6889,7 @@ packages: '@typescript-eslint/visitor-keys': 7.3.1 dev: true - /@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -6851,17 +6899,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.2) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.2) - typescript: 5.4.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -6871,12 +6919,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.2) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.2) - typescript: 5.4.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true @@ -6901,7 +6949,7 @@ packages: engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.2): + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6916,13 +6964,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.0 - tsutils: 3.21.0(typescript@5.4.2) - typescript: 5.4.2 + tsutils: 3.21.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.2): + /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.3): resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -6938,13 +6986,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.2) - typescript: 5.4.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.2): + /@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.3): resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -6960,13 +7008,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.2) - typescript: 5.4.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.3.1(typescript@5.4.2): + /@typescript-eslint/typescript-estree@7.3.1(typescript@5.4.3): resolution: {integrity: sha512-tLpuqM46LVkduWP7JO7yVoWshpJuJzxDOPYIVWUUZbW+4dBpgGeUdl/fQkhuV0A8eGnphYw3pp8d2EnvPOfxmQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -6982,13 +7030,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.2) - typescript: 5.4.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6999,7 +7047,7 @@ packages: '@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@5.4.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.0 @@ -7008,7 +7056,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -7019,7 +7067,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -7027,7 +7075,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -7038,7 +7086,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 7.2.0 '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -7046,7 +7094,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@7.3.1(eslint@8.57.0)(typescript@5.4.2): + /@typescript-eslint/utils@7.3.1(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-jIERm/6bYQ9HkynYlNZvXpzmXWZGhMbrOvq3jJzOSOlKXsVjrrolzWBjDW6/TvT5Q3WqaN4EkmcfdQwi9tDjBQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7057,7 +7105,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 7.3.1 '@typescript-eslint/types': 7.3.1 - '@typescript-eslint/typescript-estree': 7.3.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 7.3.1(typescript@5.4.3) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -7129,7 +7177,7 @@ packages: peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 dependencies: - vite: 5.1.5(@types/node@18.19.25)(less@4.2.0)(sass@1.71.1)(stylus@0.59.0)(terser@5.29.1) + vite: 5.1.5(@types/node@18.19.26)(less@4.2.0)(sass@1.71.1)(stylus@0.59.0)(terser@5.29.1) dev: true /@vitest/coverage-v8@1.4.0(vitest@1.4.0): @@ -7151,7 +7199,7 @@ packages: strip-literal: 2.0.0 test-exclude: 6.0.0 v8-to-istanbul: 9.2.0 - vitest: 1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0) + vitest: 1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - supports-color dev: true @@ -7198,7 +7246,7 @@ packages: pathe: 1.1.2 picocolors: 1.0.0 sirv: 2.0.4 - vitest: 1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0) + vitest: 1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0) dev: true /@vitest/utils@1.4.0: @@ -7792,8 +7840,8 @@ packages: postcss-value-parser: 4.2.0 dev: true - /autoprefixer@10.4.18(postcss@8.4.36): - resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==} + /autoprefixer@10.4.19(postcss@8.4.38): + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: @@ -7804,7 +7852,7 @@ packages: fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true @@ -7876,7 +7924,7 @@ packages: '@babel/core': 7.24.1 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /babel-plugin-const-enum@1.2.0(@babel/core@7.24.1): @@ -8738,7 +8786,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /copy-webpack-plugin@11.0.0(webpack@5.90.3): @@ -8771,7 +8819,7 @@ packages: engines: {node: '>= 0.4.0'} dev: true - /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.25)(cosmiconfig@9.0.0)(typescript@5.4.2): + /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.26)(cosmiconfig@9.0.0)(typescript@5.4.3): resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} engines: {node: '>=v16'} peerDependencies: @@ -8779,10 +8827,10 @@ packages: cosmiconfig: '>=8.2' typescript: '>=4' dependencies: - '@types/node': 18.19.25 - cosmiconfig: 9.0.0(typescript@5.4.2) + '@types/node': 18.19.26 + cosmiconfig: 9.0.0(typescript@5.4.3) jiti: 1.21.0 - typescript: 5.4.2 + typescript: 5.4.3 dev: true /cosmiconfig@6.0.0: @@ -8807,7 +8855,7 @@ packages: yaml: 1.10.2 dev: true - /cosmiconfig@9.0.0(typescript@5.4.2): + /cosmiconfig@9.0.0(typescript@5.4.3): resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} peerDependencies: @@ -8820,7 +8868,7 @@ packages: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - typescript: 5.4.2 + typescript: 5.4.3 dev: true /crc-32@1.2.2: @@ -8837,7 +8885,7 @@ packages: readable-stream: 4.5.2 dev: true - /create-jest@29.7.0(@types/node@18.19.25)(ts-node@10.9.2): + /create-jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -8846,7 +8894,7 @@ packages: chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -8868,7 +8916,7 @@ packages: dom-serializer: 2.0.0 domhandler: 5.0.3 htmlparser2: 8.0.2 - postcss: 8.4.36 + postcss: 8.4.38 postcss-media-query-parser: 0.2.3 dev: true @@ -8903,13 +8951,13 @@ packages: optional: true dev: true - /css-declaration-sorter@7.1.1(postcss@8.4.36): + /css-declaration-sorter@7.1.1(postcss@8.4.38): resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true /css-loader@6.10.0(webpack@5.90.3): @@ -8924,12 +8972,12 @@ packages: webpack: optional: true dependencies: - icss-utils: 5.1.0(postcss@8.4.36) - postcss: 8.4.36 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.36) - postcss-modules-local-by-default: 4.0.4(postcss@8.4.36) - postcss-modules-scope: 3.1.1(postcss@8.4.36) - postcss-modules-values: 4.0.0(postcss@8.4.36) + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.4(postcss@8.4.38) + postcss-modules-scope: 3.1.1(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.0 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) @@ -8961,12 +9009,12 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.25 - cssnano: 6.1.0(postcss@8.4.36) + cssnano: 6.1.0(postcss@8.4.38) jest-worker: 29.7.0 - postcss: 8.4.36 + postcss: 8.4.38 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /css-select@5.1.0: @@ -9010,63 +9058,63 @@ packages: hasBin: true dev: true - /cssnano-preset-default@6.1.0(postcss@8.4.36): + /cssnano-preset-default@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-4DUXZoDj+PI3fRl3MqMjl9DwLGjcsFP4qt+92nLUcN1RGfw2TY+GwNoG2B38Usu1BrcTs8j9pxNfSusmvtSjfg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: browserslist: 4.23.0 - css-declaration-sorter: 7.1.1(postcss@8.4.36) - cssnano-utils: 4.0.2(postcss@8.4.36) - postcss: 8.4.36 - postcss-calc: 9.0.1(postcss@8.4.36) - postcss-colormin: 6.1.0(postcss@8.4.36) - postcss-convert-values: 6.1.0(postcss@8.4.36) - postcss-discard-comments: 6.0.2(postcss@8.4.36) - postcss-discard-duplicates: 6.0.3(postcss@8.4.36) - postcss-discard-empty: 6.0.3(postcss@8.4.36) - postcss-discard-overridden: 6.0.2(postcss@8.4.36) - postcss-merge-longhand: 6.0.4(postcss@8.4.36) - postcss-merge-rules: 6.1.0(postcss@8.4.36) - postcss-minify-font-values: 6.0.3(postcss@8.4.36) - postcss-minify-gradients: 6.0.3(postcss@8.4.36) - postcss-minify-params: 6.1.0(postcss@8.4.36) - postcss-minify-selectors: 6.0.3(postcss@8.4.36) - postcss-normalize-charset: 6.0.2(postcss@8.4.36) - postcss-normalize-display-values: 6.0.2(postcss@8.4.36) - postcss-normalize-positions: 6.0.2(postcss@8.4.36) - postcss-normalize-repeat-style: 6.0.2(postcss@8.4.36) - postcss-normalize-string: 6.0.2(postcss@8.4.36) - postcss-normalize-timing-functions: 6.0.2(postcss@8.4.36) - postcss-normalize-unicode: 6.1.0(postcss@8.4.36) - postcss-normalize-url: 6.0.2(postcss@8.4.36) - postcss-normalize-whitespace: 6.0.2(postcss@8.4.36) - postcss-ordered-values: 6.0.2(postcss@8.4.36) - postcss-reduce-initial: 6.1.0(postcss@8.4.36) - postcss-reduce-transforms: 6.0.2(postcss@8.4.36) - postcss-svgo: 6.0.3(postcss@8.4.36) - postcss-unique-selectors: 6.0.3(postcss@8.4.36) - dev: true - - /cssnano-utils@4.0.2(postcss@8.4.36): + css-declaration-sorter: 7.1.1(postcss@8.4.38) + cssnano-utils: 4.0.2(postcss@8.4.38) + postcss: 8.4.38 + postcss-calc: 9.0.1(postcss@8.4.38) + postcss-colormin: 6.1.0(postcss@8.4.38) + postcss-convert-values: 6.1.0(postcss@8.4.38) + postcss-discard-comments: 6.0.2(postcss@8.4.38) + postcss-discard-duplicates: 6.0.3(postcss@8.4.38) + postcss-discard-empty: 6.0.3(postcss@8.4.38) + postcss-discard-overridden: 6.0.2(postcss@8.4.38) + postcss-merge-longhand: 6.0.4(postcss@8.4.38) + postcss-merge-rules: 6.1.0(postcss@8.4.38) + postcss-minify-font-values: 6.0.3(postcss@8.4.38) + postcss-minify-gradients: 6.0.3(postcss@8.4.38) + postcss-minify-params: 6.1.0(postcss@8.4.38) + postcss-minify-selectors: 6.0.3(postcss@8.4.38) + postcss-normalize-charset: 6.0.2(postcss@8.4.38) + postcss-normalize-display-values: 6.0.2(postcss@8.4.38) + postcss-normalize-positions: 6.0.2(postcss@8.4.38) + postcss-normalize-repeat-style: 6.0.2(postcss@8.4.38) + postcss-normalize-string: 6.0.2(postcss@8.4.38) + postcss-normalize-timing-functions: 6.0.2(postcss@8.4.38) + postcss-normalize-unicode: 6.1.0(postcss@8.4.38) + postcss-normalize-url: 6.0.2(postcss@8.4.38) + postcss-normalize-whitespace: 6.0.2(postcss@8.4.38) + postcss-ordered-values: 6.0.2(postcss@8.4.38) + postcss-reduce-initial: 6.1.0(postcss@8.4.38) + postcss-reduce-transforms: 6.0.2(postcss@8.4.38) + postcss-svgo: 6.0.3(postcss@8.4.38) + postcss-unique-selectors: 6.0.3(postcss@8.4.38) + dev: true + + /cssnano-utils@4.0.2(postcss@8.4.38): resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /cssnano@6.1.0(postcss@8.4.36): + /cssnano@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-e2v4w/t3OFM6HTuSweI4RSdABaqgVgHlJp5FZrQsopHnKKHLFIvK2D3C4kHWeFIycN/1L1J5VIrg5KlDzn3r/g==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - cssnano-preset-default: 6.1.0(postcss@8.4.36) + cssnano-preset-default: 6.1.0(postcss@8.4.38) lilconfig: 3.1.1 - postcss: 8.4.36 + postcss: 8.4.38 dev: true /csso@5.0.5: @@ -9975,17 +10023,17 @@ packages: eslint: 8.57.0 dev: true - /eslint-etc@5.2.1(eslint@8.57.0)(typescript@5.4.2): + /eslint-etc@5.2.1(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-lFJBSiIURdqQKq9xJhvSJFyPA+VeTh5xvk24e8pxVL7bwLBtGF60C/KRkLTMrvCZ6DA3kbPuYhLWY0TZMlqTsg==} peerDependencies: eslint: ^8.0.0 typescript: '>=4.0.0' dependencies: - '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 - tsutils: 3.21.0(typescript@5.4.2) - tsutils-etc: 1.4.2(tsutils@3.21.0)(typescript@5.4.2) - typescript: 5.4.2 + tsutils: 3.21.0(typescript@5.4.3) + tsutils-etc: 1.4.2(tsutils@3.21.0)(typescript@5.4.3) + typescript: 5.4.3 transitivePeerDependencies: - supports-color dev: true @@ -10021,7 +10069,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) debug: 3.2.7 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 @@ -10039,7 +10087,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.4 array.prototype.flat: 1.3.2 @@ -10080,8 +10128,8 @@ packages: requireindex: 1.2.0 dev: true - /eslint-plugin-playwright@1.5.2(eslint@8.57.0): - resolution: {integrity: sha512-TMzLrLGQMccngU8GogtzIc9u5RzXGnfsQEUjLfEfshINuVR2fS4SHfDtU7xYP90Vwm5vflHECf610KTdGvO53w==} + /eslint-plugin-playwright@1.5.3(eslint@8.57.0): + resolution: {integrity: sha512-13fBElB8BGdnOkK6TJ/7yveuIpfUBIVxTjbHtqTtXLsscQe2pF+0PQJkr4y2Gal7DNtg8uvqxyAQA0i/ccf1Dw==} engines: {node: '>=16.6.0'} peerDependencies: eslint: '>=8.40.0' @@ -10101,24 +10149,24 @@ packages: tailwindcss: ^3.4.0 dependencies: fast-glob: 3.3.2 - postcss: 8.4.36 + postcss: 8.4.38 tailwindcss: 3.4.1(ts-node@10.9.2) dev: true - /eslint-plugin-testing-library@6.2.0(eslint@8.57.0)(typescript@5.4.2): + /eslint-plugin-testing-library@6.2.0(eslint@8.57.0)(typescript@5.4.3): resolution: {integrity: sha512-+LCYJU81WF2yQ+Xu4A135CgK8IszcFcyMF4sWkbiu6Oj+Nel0TrkZq/HvDw0/1WuO3dhDQsZA/OpEMGd0NfcUw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.2)(vitest@1.4.0): + /eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.3)(vitest@1.4.0): resolution: {integrity: sha512-oxe5JSPgRjco8caVLTh7Ti8PxpwJdhSV0hTQAmkFcNcmy/9DnqLB/oNVRA11RmVRP//2+jIIT6JuBEcpW3obYg==} engines: {node: ^18.0.0 || >= 20.0.0} peerDependencies: @@ -10131,10 +10179,10 @@ packages: vitest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.2) - '@typescript-eslint/utils': 7.3.1(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 7.3.1(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 - vitest: 1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0) + vitest: 1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - supports-color - typescript @@ -10601,7 +10649,7 @@ packages: signal-exit: 4.1.0 dev: true - /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.2)(webpack@5.90.3): + /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.3)(webpack@5.90.3): resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -10624,8 +10672,8 @@ packages: schema-utils: 3.3.0 semver: 7.6.0 tapable: 2.2.1 - typescript: 5.4.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + typescript: 5.4.3 + webpack: 5.90.3(@swc/core@1.4.8) dev: true /form-data@4.0.0: @@ -11318,13 +11366,13 @@ packages: safer-buffer: 2.1.2 dev: true - /icss-utils@5.1.0(postcss@8.4.36): + /icss-utils@5.1.0(postcss@8.4.38): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true /identity-obj-proxy@3.0.0: @@ -11879,7 +11927,7 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.24.0 + '@babel/core': 7.24.1 '@babel/parser': 7.24.1 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -11981,7 +12029,7 @@ packages: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -12002,7 +12050,7 @@ packages: - supports-color dev: true - /jest-cli@29.7.0(@types/node@18.19.25)(ts-node@10.9.2): + /jest-cli@29.7.0(@types/node@18.19.26)(ts-node@10.9.2): resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -12016,10 +12064,10 @@ packages: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + create-jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -12030,7 +12078,7 @@ packages: - ts-node dev: true - /jest-config@29.7.0(@types/node@18.19.25)(ts-node@10.9.2): + /jest-config@29.7.0(@types/node@18.19.26)(ts-node@10.9.2): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -12045,7 +12093,7 @@ packages: '@babel/core': 7.24.1 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 babel-jest: 29.7.0(@babel/core@7.24.1) chalk: 4.1.2 ci-info: 3.9.0 @@ -12065,7 +12113,7 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.4.2) + ts-node: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -12112,7 +12160,7 @@ packages: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 18.19.25 + '@types/node': 18.19.26 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -12129,7 +12177,7 @@ packages: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 jest-mock: 29.7.0 jest-util: 29.7.0 dev: true @@ -12145,7 +12193,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 18.19.25 + '@types/node': 18.19.26 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -12196,7 +12244,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 jest-util: 29.7.0 dev: true @@ -12212,7 +12260,7 @@ packages: jest-resolve: 29.7.0 dev: true - /jest-preset-angular@14.0.3(@angular-devkit/build-angular@17.3.0)(@angular/compiler-cli@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser-dynamic@17.3.0)(@babel/core@7.24.1)(jest@29.7.0)(typescript@5.4.2): + /jest-preset-angular@14.0.3(@angular-devkit/build-angular@17.3.1)(@angular/compiler-cli@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser-dynamic@17.3.1)(@babel/core@7.24.1)(jest@29.7.0)(typescript@5.4.3): resolution: {integrity: sha512-usgBL7x0rXMnMSx8iEFeOozj50W6fp+YAmQcQBUdAXhN+PAXRy4UXL6I/rfcAOU09rnnq7RKsLsmhpp/fFEuag==} engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: @@ -12223,18 +12271,18 @@ packages: jest: ^29.0.0 typescript: '>=4.8' dependencies: - '@angular-devkit/build-angular': 17.3.0(@angular/compiler-cli@17.3.0)(@swc/core@1.4.8)(@types/node@18.19.25)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.2) - '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0)(typescript@5.4.2) - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser-dynamic': 17.3.0(@angular/common@17.3.0)(@angular/compiler@17.3.0)(@angular/core@17.3.0)(@angular/platform-browser@17.3.0) + '@angular-devkit/build-angular': 17.3.1(@angular/compiler-cli@17.3.1)(@swc/core@1.4.8)(@types/node@18.19.26)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.3.0)(stylus@0.59.0)(tailwindcss@3.4.1)(typescript@5.4.3) + '@angular/compiler-cli': 17.3.1(@angular/compiler@17.3.1)(typescript@5.4.3) + '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/platform-browser-dynamic': 17.3.1(@angular/common@17.3.1)(@angular/compiler@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser@17.3.1) bs-logger: 0.2.6 esbuild-wasm: 0.20.2 - jest: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-environment-jsdom: 29.7.0 jest-util: 29.7.0 pretty-format: 29.7.0 - ts-jest: 29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.2) - typescript: 5.4.2 + ts-jest: 29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3) + typescript: 5.4.3 optionalDependencies: esbuild: 0.20.2 transitivePeerDependencies: @@ -12286,7 +12334,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -12317,7 +12365,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -12369,7 +12417,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -12394,7 +12442,7 @@ packages: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.25 + '@types/node': 18.19.26 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -12406,7 +12454,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -12415,13 +12463,13 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest@29.7.0(@types/node@18.19.25)(ts-node@10.9.2): + /jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2): resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -12434,7 +12482,7 @@ packages: '@jest/core': 29.7.0(ts-node@10.9.2) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest-cli: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -12705,7 +12753,7 @@ packages: dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /less-loader@11.1.0(less@4.2.0)(webpack@5.90.3): @@ -13235,7 +13283,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /mini-css-extract-plugin@2.8.1(webpack@5.90.3): @@ -13423,8 +13471,8 @@ packages: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: true - /msw@2.2.8(typescript@5.4.2): - resolution: {integrity: sha512-K2LvWq2Lgfo6lEvn4eXj9uOCXuXZdZdHtNzyx+UBZY+iaQ5fdBaev3TLmUyLOUY4N8p0pYf3Iy7RA8sDnQ1M1Q==} + /msw@2.2.9(typescript@5.4.3): + resolution: {integrity: sha512-MLIFufBe6m9c5rZKlmGl6jl1pjn7cTNiDGEgn5v2iVRs0mz+neE2r7lRyYNzvcp6FbdiUEIRp/Y2O2gRMjO8yQ==} engines: {node: '>=18'} hasBin: true requiresBuild: true @@ -13450,7 +13498,7 @@ packages: path-to-regexp: 6.2.1 strict-event-emitter: 0.5.1 type-fest: 4.13.0 - typescript: 5.4.2 + typescript: 5.4.3 yargs: 17.7.2 dev: true @@ -13509,7 +13557,7 @@ packages: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} dev: true - /ng-packagr@17.3.0(@angular/compiler-cli@17.3.0)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.4.2): + /ng-packagr@17.3.0(@angular/compiler-cli@17.3.1)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.4.3): resolution: {integrity: sha512-kMSqxeDgv88SWCoapWNRRN1UdBgwu9/Pw/j7u2WFGmzrIWUFivNWBBSSL94kMxr2La+Z9wMwiL8EwKNvmCpg2A==} engines: {node: ^18.13.0 || >=20.9.0} hasBin: true @@ -13522,7 +13570,7 @@ packages: tailwindcss: optional: true dependencies: - '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0)(typescript@5.4.2) + '@angular/compiler-cli': 17.3.1(@angular/compiler@17.3.1)(typescript@5.4.3) '@rollup/plugin-json': 6.1.0(rollup@4.13.0) '@rollup/plugin-node-resolve': 15.2.3(rollup@4.13.0) '@rollup/wasm-node': 4.13.0 @@ -13542,12 +13590,12 @@ packages: less: 4.2.0 ora: 5.4.1 piscina: 4.4.0 - postcss: 8.4.36 + postcss: 8.4.38 rxjs: 7.8.1 sass: 1.72.0 tailwindcss: 3.4.1(ts-node@10.9.2) tslib: 2.6.2 - typescript: 5.4.2 + typescript: 5.4.3 optionalDependencies: esbuild: 0.20.2 rollup: 4.13.0 @@ -13886,7 +13934,7 @@ packages: optional: true dependencies: '@nrwl/tao': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) - '@swc-node/register': 1.9.0(@swc/core@1.4.8)(@swc/types@0.1.6)(typescript@5.4.2) + '@swc-node/register': 1.9.0(@swc/core@1.4.8)(@swc/types@0.1.6)(typescript@5.4.3) '@swc/core': 1.4.8(@swc/helpers@0.5.7) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 @@ -14478,18 +14526,18 @@ packages: engines: {node: '>= 0.4'} dev: true - /postcss-calc@9.0.1(postcss@8.4.36): + /postcss-calc@9.0.1(postcss@8.4.38): resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin@6.1.0(postcss@8.4.36): + /postcss-colormin@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: @@ -14498,92 +14546,92 @@ packages: browserslist: 4.23.0 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values@6.1.0(postcss@8.4.36): + /postcss-convert-values@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: browserslist: 4.23.0 - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-discard-comments@6.0.2(postcss@8.4.36): + /postcss-discard-comments@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-discard-duplicates@6.0.3(postcss@8.4.36): + /postcss-discard-duplicates@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-discard-empty@6.0.3(postcss@8.4.36): + /postcss-discard-empty@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-discard-overridden@6.0.2(postcss@8.4.36): + /postcss-discard-overridden@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-import@14.1.0(postcss@8.4.36): + /postcss-import@14.1.0(postcss@8.4.38): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 dev: true - /postcss-import@15.1.0(postcss@8.4.36): + /postcss-import@15.1.0(postcss@8.4.38): resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 dev: true - /postcss-js@4.0.1(postcss@8.4.36): + /postcss-js@4.0.1(postcss@8.4.38): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.4.21 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-load-config@4.0.2(postcss@8.4.36)(ts-node@10.9.2): + /postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2): resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} engines: {node: '>= 14'} peerDependencies: @@ -14596,12 +14644,12 @@ packages: optional: true dependencies: lilconfig: 3.1.1 - postcss: 8.4.36 - ts-node: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.4.2) + postcss: 8.4.38 + ts-node: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3) yaml: 2.4.1 dev: true - /postcss-loader@6.2.1(postcss@8.4.36)(webpack@5.90.3): + /postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.90.3): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -14610,12 +14658,12 @@ packages: dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 - postcss: 8.4.36 + postcss: 8.4.38 semver: 7.6.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true - /postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.4.2)(webpack@5.90.3): + /postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.4.3)(webpack@5.90.3): resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==} engines: {node: '>= 18.12.0'} peerDependencies: @@ -14628,7 +14676,7 @@ packages: webpack: optional: true dependencies: - cosmiconfig: 9.0.0(typescript@5.4.2) + cosmiconfig: 9.0.0(typescript@5.4.3) jiti: 1.21.0 postcss: 8.4.35 semver: 7.6.0 @@ -14641,18 +14689,18 @@ packages: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} dev: true - /postcss-merge-longhand@6.0.4(postcss@8.4.36): + /postcss-merge-longhand@6.0.4(postcss@8.4.38): resolution: {integrity: sha512-vAfWGcxUUGlFiPM3nDMZA+/Yo9sbpc3JNkcYZez8FfJDv41Dh7tAgA3QGVTocaHCZZL6aXPXPOaBMJsjujodsA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - stylehacks: 6.1.0(postcss@8.4.36) + stylehacks: 6.1.0(postcss@8.4.38) dev: true - /postcss-merge-rules@6.1.0(postcss@8.4.36): + /postcss-merge-rules@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-lER+W3Gr6XOvxOYk1Vi/6UsAgKMg6MDBthmvbNqi2XxAk/r9XfhdYZSigfWjuWWn3zYw2wLelvtM8XuAEFqRkA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: @@ -14660,208 +14708,208 @@ packages: dependencies: browserslist: 4.23.0 caniuse-api: 3.0.0 - cssnano-utils: 4.0.2(postcss@8.4.36) - postcss: 8.4.36 + cssnano-utils: 4.0.2(postcss@8.4.38) + postcss: 8.4.38 postcss-selector-parser: 6.0.16 dev: true - /postcss-minify-font-values@6.0.3(postcss@8.4.36): + /postcss-minify-font-values@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-SmAeTA1We5rMnN3F8X9YBNo9bj9xB4KyDHnaNJnBfQIPi+60fNiR9OTRnIaMqkYzAQX0vObIw4Pn0vuKEOettg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients@6.0.3(postcss@8.4.36): + /postcss-minify-gradients@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: colord: 2.9.3 - cssnano-utils: 4.0.2(postcss@8.4.36) - postcss: 8.4.36 + cssnano-utils: 4.0.2(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params@6.1.0(postcss@8.4.36): + /postcss-minify-params@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: browserslist: 4.23.0 - cssnano-utils: 4.0.2(postcss@8.4.36) - postcss: 8.4.36 + cssnano-utils: 4.0.2(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors@6.0.3(postcss@8.4.36): + /postcss-minify-selectors@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-IcV7ZQJcaXyhx4UBpWZMsinGs2NmiUC60rJSkyvjPCPqhNjVGsrJUM+QhAtCaikZ0w0/AbZuH4wVvF/YMuMhvA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-selector-parser: 6.0.16 dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.36): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.38): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-modules-local-by-default@4.0.4(postcss@8.4.36): + /postcss-modules-local-by-default@4.0.4(postcss@8.4.38): resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.36) - postcss: 8.4.36 + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 dev: true - /postcss-modules-scope@3.1.1(postcss@8.4.36): + /postcss-modules-scope@3.1.1(postcss@8.4.38): resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-selector-parser: 6.0.16 dev: true - /postcss-modules-values@4.0.0(postcss@8.4.36): + /postcss-modules-values@4.0.0(postcss@8.4.38): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.36) - postcss: 8.4.36 + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 dev: true - /postcss-nested@6.0.1(postcss@8.4.36): + /postcss-nested@6.0.1(postcss@8.4.38): resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-selector-parser: 6.0.16 dev: true - /postcss-normalize-charset@6.0.2(postcss@8.4.36): + /postcss-normalize-charset@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-normalize-display-values@6.0.2(postcss@8.4.36): + /postcss-normalize-display-values@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions@6.0.2(postcss@8.4.36): + /postcss-normalize-positions@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style@6.0.2(postcss@8.4.36): + /postcss-normalize-repeat-style@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string@6.0.2(postcss@8.4.36): + /postcss-normalize-string@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions@6.0.2(postcss@8.4.36): + /postcss-normalize-timing-functions@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode@6.1.0(postcss@8.4.36): + /postcss-normalize-unicode@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: browserslist: 4.23.0 - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url@6.0.2(postcss@8.4.36): + /postcss-normalize-url@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace@6.0.2(postcss@8.4.36): + /postcss-normalize-whitespace@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-ordered-values@6.0.2(postcss@8.4.36): + /postcss-ordered-values@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - cssnano-utils: 4.0.2(postcss@8.4.36) - postcss: 8.4.36 + cssnano-utils: 4.0.2(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true - /postcss-reduce-initial@6.1.0(postcss@8.4.36): + /postcss-reduce-initial@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: @@ -14869,16 +14917,16 @@ packages: dependencies: browserslist: 4.23.0 caniuse-api: 3.0.0 - postcss: 8.4.36 + postcss: 8.4.38 dev: true - /postcss-reduce-transforms@6.0.2(postcss@8.4.36): + /postcss-reduce-transforms@6.0.2(postcss@8.4.38): resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 dev: true @@ -14890,28 +14938,28 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-svgo@6.0.3(postcss@8.4.36): + /postcss-svgo@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} engines: {node: ^14 || ^16 || >= 18} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-value-parser: 4.2.0 svgo: 3.2.0 dev: true - /postcss-unique-selectors@6.0.3(postcss@8.4.36): + /postcss-unique-selectors@6.0.3(postcss@8.4.38): resolution: {integrity: sha512-NFXbYr8qdmCr/AFceaEfdcsKGCvWTeGO6QVC9h2GvtWgj0/0dklKQcaMMVzs6tr8bY+ase8hOtHW8OBTTRvS8A==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - postcss: 8.4.36 + postcss: 8.4.38 postcss-selector-parser: 6.0.16 dev: true - /postcss-url@10.1.3(postcss@8.4.36): + /postcss-url@10.1.3(postcss@8.4.38): resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==} engines: {node: '>=10'} peerDependencies: @@ -14920,7 +14968,7 @@ packages: make-dir: 3.1.0 mime: 2.5.2 minimatch: 3.0.8 - postcss: 8.4.36 + postcss: 8.4.38 xxhashjs: 0.2.2 dev: true @@ -14937,13 +14985,13 @@ packages: source-map-js: 1.1.0 dev: true - /postcss@8.4.36: - resolution: {integrity: sha512-/n7eumA6ZjFHAsbX30yhHup/IMkOmlmvtEi7P+6RMYf+bGJSUHc3geH4a0NSZxAz/RJfiS9tooCTs9LAVYUZKw==} + /postcss@8.4.38: + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /preferred-pm@3.1.3: @@ -15470,7 +15518,7 @@ packages: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.4 - postcss: 8.4.36 + postcss: 8.4.38 source-map: 0.6.1 dev: true @@ -15670,7 +15718,7 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.72.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /sass-loader@14.1.1(sass@1.71.1)(webpack@5.90.3): @@ -16074,6 +16122,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + dev: true + /source-map-loader@3.0.2(webpack@5.90.3): resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} engines: {node: '>= 12.13.0'} @@ -16083,7 +16136,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.1.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /source-map-loader@5.0.0(webpack@5.90.3): @@ -16415,17 +16468,17 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true - /stylehacks@6.1.0(postcss@8.4.36): + /stylehacks@6.1.0(postcss@8.4.38): resolution: {integrity: sha512-ETErsPFgwlfYZ/CSjMO2Ddf+TsnkCVPBPaoB99Ro8WMAxf7cglzmFsRBhRmKObFjibtcvlNxFFPHuyr3sNlNUQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: browserslist: 4.23.0 - postcss: 8.4.36 + postcss: 8.4.38 postcss-selector-parser: 6.0.16 dev: true @@ -16439,7 +16492,7 @@ packages: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.59.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.90.3(@swc/core@1.4.8) dev: true /stylus@0.59.0: @@ -16561,11 +16614,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.36 - postcss-import: 15.1.0(postcss@8.4.36) - postcss-js: 4.0.1(postcss@8.4.36) - postcss-load-config: 4.0.2(postcss@8.4.36)(ts-node@10.9.2) - postcss-nested: 6.0.1(postcss@8.4.36) + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2) + postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.0.16 resolve: 1.22.8 sucrase: 3.35.0 @@ -16640,6 +16693,31 @@ packages: webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true + /terser-webpack-plugin@5.3.10(@swc/core@1.4.8)(webpack@5.90.3): + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + '@swc/core': 1.4.8(@swc/helpers@0.5.7) + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + terser: 5.29.1 + webpack: 5.90.3(@swc/core@1.4.8) + dev: true + /terser@5.29.1: resolution: {integrity: sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==} engines: {node: '>=10'} @@ -16791,20 +16869,20 @@ packages: engines: {node: '>=8'} dev: true - /ts-api-utils@1.3.0(typescript@5.4.2): + /ts-api-utils@1.3.0(typescript@5.4.3): resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} peerDependencies: typescript: '>=4.2.0' dependencies: - typescript: 5.4.2 + typescript: 5.4.3 dev: true /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-jest@29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.2): + /ts-jest@29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3): resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -16829,17 +16907,17 @@ packages: bs-logger: 0.2.6 esbuild: 0.20.2 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.19.25)(ts-node@10.9.2) + jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.0 - typescript: 5.4.2 + typescript: 5.4.3 yargs-parser: 21.1.1 dev: true - /ts-loader@9.5.1(typescript@5.4.2)(webpack@5.90.3): + /ts-loader@9.5.1(typescript@5.4.3)(webpack@5.90.3): resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -16851,8 +16929,8 @@ packages: micromatch: 4.0.5 semver: 7.6.0 source-map: 0.7.4 - typescript: 5.4.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + typescript: 5.4.3 + webpack: 5.90.3(@swc/core@1.4.8) dev: true /ts-morph@21.0.1: @@ -16862,7 +16940,7 @@ packages: code-block-writer: 12.0.0 dev: true - /ts-node@10.9.1(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.3.3): + /ts-node@10.9.1(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.3.3): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -16882,7 +16960,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.19.25 + '@types/node': 18.19.26 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -16894,7 +16972,7 @@ packages: yn: 3.1.1 dev: true - /ts-node@10.9.1(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.4.2): + /ts-node@10.9.1(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -16914,19 +16992,19 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.19.25 + '@types/node': 18.19.26 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: 5.4.2 + typescript: 5.4.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-node@10.9.2(@swc/core@1.4.8)(@types/node@18.19.25)(typescript@5.4.2): + /ts-node@10.9.2(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3): resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: @@ -16946,19 +17024,19 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.19.25 + '@types/node': 18.19.26 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: 5.4.2 + typescript: 5.4.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /tsconfck@3.0.3(typescript@5.4.2): + /tsconfck@3.0.3(typescript@5.4.3): resolution: {integrity: sha512-4t0noZX9t6GcPTfBAbIbbIU4pfpCwh0ueq3S4O/5qXI1VwK1outmxhe9dOiEWqMz3MW2LKgDTpqWV+37IWuVbA==} engines: {node: ^18 || >=20} hasBin: true @@ -16968,7 +17046,7 @@ packages: typescript: optional: true dependencies: - typescript: 5.4.2 + typescript: 5.4.3 dev: true /tsconfig-paths-webpack-plugin@4.0.0: @@ -17005,7 +17083,7 @@ packages: /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tsutils-etc@1.4.2(tsutils@3.21.0)(typescript@5.4.2): + /tsutils-etc@1.4.2(tsutils@3.21.0)(typescript@5.4.3): resolution: {integrity: sha512-2Dn5SxTDOu6YWDNKcx1xu2YUy6PUeKrWZB/x2cQ8vY2+iz3JRembKn/iZ0JLT1ZudGNwQQvtFX9AwvRHbXuPUg==} hasBin: true peerDependencies: @@ -17013,19 +17091,19 @@ packages: typescript: '>=4.0.0' dependencies: '@types/yargs': 17.0.32 - tsutils: 3.21.0(typescript@5.4.2) - typescript: 5.4.2 + tsutils: 3.21.0(typescript@5.4.3) + typescript: 5.4.3 yargs: 17.7.2 dev: true - /tsutils@3.21.0(typescript@5.4.2): + /tsutils@3.21.0(typescript@5.4.3): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.4.2 + typescript: 5.4.3 dev: true /tty-table@4.2.3: @@ -17162,8 +17240,8 @@ packages: hasBin: true dev: true - /typescript@5.4.2: - resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} + /typescript@5.4.3: + resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==} engines: {node: '>=14.17'} hasBin: true dev: true @@ -17480,7 +17558,7 @@ packages: engines: {node: '>= 0.8'} dev: true - /vite-node@1.4.0(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0): + /vite-node@1.4.0(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0): resolution: {integrity: sha512-VZDAseqjrHgNd4Kh8icYHWzTKSCZMhia7GyHfhtzLW33fZlG9SwsB6CEhgyVOWkJfJ2pFLrp/Gj1FSfAiqH9Lw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -17489,7 +17567,7 @@ packages: debug: 4.3.4 pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.0.12(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0) + vite: 5.0.12(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - '@types/node' - less @@ -17501,7 +17579,7 @@ packages: - terser dev: true - /vite-tsconfig-paths@4.3.2(typescript@5.4.2)(vite@5.0.12): + /vite-tsconfig-paths@4.3.2(typescript@5.4.3)(vite@5.0.12): resolution: {integrity: sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==} peerDependencies: vite: '*' @@ -17511,14 +17589,14 @@ packages: dependencies: debug: 4.3.4 globrex: 0.1.2 - tsconfck: 3.0.3(typescript@5.4.2) - vite: 5.0.12(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0) + tsconfck: 3.0.3(typescript@5.4.3) + vite: 5.0.12(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - supports-color - typescript dev: true - /vite@5.0.12(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0): + /vite@5.0.12(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0): resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -17546,17 +17624,17 @@ packages: terser: optional: true dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 esbuild: 0.19.12 - less: 4.2.0 - postcss: 8.4.36 + less: 4.1.3 + postcss: 8.4.38 rollup: 4.13.0 stylus: 0.59.0 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@5.1.5(@types/node@18.19.25)(less@4.2.0)(sass@1.71.1)(stylus@0.59.0)(terser@5.29.1): + /vite@5.1.5(@types/node@18.19.26)(less@4.2.0)(sass@1.71.1)(stylus@0.59.0)(terser@5.29.1): resolution: {integrity: sha512-BdN1xh0Of/oQafhU+FvopafUp6WaYenLU/NFoL5WyJL++GxkNfieKzBhM24H3HVsPQrlAqB7iJYTHabzaRed5Q==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -17584,10 +17662,10 @@ packages: terser: optional: true dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 esbuild: 0.19.12 less: 4.2.0 - postcss: 8.4.36 + postcss: 8.4.38 rollup: 4.13.0 sass: 1.71.1 stylus: 0.59.0 @@ -17596,7 +17674,7 @@ packages: fsevents: 2.3.3 dev: true - /vitest@1.4.0(@types/node@18.19.25)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.2.0)(stylus@0.59.0): + /vitest@1.4.0(@types/node@18.19.26)(@vitest/ui@1.4.0)(jsdom@24.0.0)(less@4.1.3)(stylus@0.59.0): resolution: {integrity: sha512-gujzn0g7fmwf83/WzrDTnncZt2UiXP41mHuFYFrdwaLRVQ6JYQEiME2IfEjU3vcFL3VKa75XhI3lFgn+hfVsQw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -17621,7 +17699,7 @@ packages: jsdom: optional: true dependencies: - '@types/node': 18.19.25 + '@types/node': 18.19.26 '@vitest/expect': 1.4.0 '@vitest/runner': 1.4.0 '@vitest/snapshot': 1.4.0 @@ -17641,8 +17719,8 @@ packages: strip-literal: 2.0.0 tinybench: 2.6.0 tinypool: 0.8.2 - vite: 5.0.12(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0) - vite-node: 1.4.0(@types/node@18.19.25)(less@4.2.0)(stylus@0.59.0) + vite: 5.0.12(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0) + vite-node: 1.4.0(@types/node@18.19.26)(less@4.1.3)(stylus@0.59.0) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -17822,6 +17900,46 @@ packages: resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} dev: true + /webpack@5.90.3(@swc/core@1.4.8): + resolution: {integrity: sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + acorn: 8.11.3 + acorn-import-assertions: 1.9.0(acorn@8.11.3) + browserslist: 4.23.0 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.16.0 + es-module-lexer: 1.4.2 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(webpack@5.90.3) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true + /webpack@5.90.3(@swc/core@1.4.8)(esbuild@0.20.1): resolution: {integrity: sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==} engines: {node: '>=10.13.0'} From 73b8a3be47763097962bc6e7ed7c075c7cb2cf59 Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 14:03:57 +0100 Subject: [PATCH 11/12] chore: new release --- .changeset/quick-laws-smile.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/quick-laws-smile.md diff --git a/.changeset/quick-laws-smile.md b/.changeset/quick-laws-smile.md new file mode 100644 index 0000000..ce9ca04 --- /dev/null +++ b/.changeset/quick-laws-smile.md @@ -0,0 +1,5 @@ +--- +"ngrx-rtk-query": patch +--- + +Update RTK to v2.2.2 From 11a54834b43dd81f592988a9ce5fb34015c43c57 Mon Sep 17 00:00:00 2001 From: Saul Date: Thu, 21 Mar 2024 14:15:16 +0100 Subject: [PATCH 12/12] docs: add serve script --- package.json | 1 + pnpm-lock.yaml | 1244 +++++++++++++++++++++++++----------------------- 2 files changed, 653 insertions(+), 592 deletions(-) diff --git a/package.json b/package.json index f35ebb3..bb7eb86 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,7 @@ "contributors:generate": "all-contributors generate", "dep-graph": "nx dep-graph", "dep-graph:watch": "nx dep-graph --watch", + "dev:basic-store": "nx run basic-ngrx-store:serve -o", "format:check": "nx format:check && prettier --check . --ignore-unknown --no-error-on-unmatched-pattern", "preinstall": "npx only-allow pnpm", "prepare": "git config core.hookspath .githooks", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bc333b1..70250c8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -224,7 +224,7 @@ importers: version: 29.7.0 jest-preset-angular: specifier: ^14.0.3 - version: 14.0.3(@angular-devkit/build-angular@17.3.1)(@angular/compiler-cli@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser-dynamic@17.3.1)(@babel/core@7.24.1)(jest@29.7.0)(typescript@5.4.3) + version: 14.0.3(@angular-devkit/build-angular@17.3.1)(@angular/compiler-cli@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser-dynamic@17.3.1)(@babel/core@7.24.3)(jest@29.7.0)(typescript@5.4.3) jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -269,7 +269,7 @@ importers: version: 3.4.1(ts-node@10.9.2) ts-jest: specifier: ^29.1.2 - version: 29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3) + version: 29.1.2(@babel/core@7.24.3)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3) ts-node: specifier: ^10.9.2 version: 10.9.2(@swc/core@1.4.8)(@types/node@18.19.26)(typescript@5.4.3) @@ -290,10 +290,10 @@ importers: dependencies: '@angular/core': specifier: '>=17.0.0' - version: 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) + version: 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) '@ngrx/store': specifier: '>=17.0.0' - version: 17.1.1(@angular/core@17.3.0)(rxjs@7.8.1) + version: 17.1.1(@angular/core@17.3.1)(rxjs@7.8.1) '@reduxjs/toolkit': specifier: ~2.2.2 version: 2.2.2 @@ -513,7 +513,7 @@ packages: watchpack: 2.4.0 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) webpack-dev-middleware: 6.1.1(webpack@5.90.3) - webpack-dev-server: 4.15.1(webpack@5.90.3) + webpack-dev-server: 4.15.1(webpack@5.91.0) webpack-merge: 5.10.0 webpack-subresource-integrity: 5.1.0(webpack@5.90.3) optionalDependencies: @@ -548,7 +548,7 @@ packages: '@angular-devkit/architect': 0.1703.1 rxjs: 7.8.1 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) - webpack-dev-server: 4.15.1(webpack@5.90.3) + webpack-dev-server: 4.15.1(webpack@5.91.0) transitivePeerDependencies: - chokidar dev: true @@ -728,18 +728,6 @@ packages: '@angular/core': 17.3.1(rxjs@7.8.1)(zone.js@0.14.4) tslib: 2.6.2 - /@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4): - resolution: {integrity: sha512-umwsNFl/wEMTCUVvNl5iieEgHA+ESxSMcjedZGFWNGnpUxKTgYFYNG41/1wNZfPrS0+uRPHuYU9IHD+NR2s/Rw==} - engines: {node: ^18.13.0 || >=20.9.0} - peerDependencies: - rxjs: ^6.5.3 || ^7.4.0 - zone.js: ~0.14.0 - dependencies: - rxjs: 7.8.1 - tslib: 2.6.2 - zone.js: 0.14.4 - dev: false - /@angular/core@17.3.1(rxjs@7.8.1)(zone.js@0.14.4): resolution: {integrity: sha512-Qf3/sgkXS1LHwOTtqAVYprySrn0YpPIZqerPc0tK+hyQfwAz5BQlpcBhbH8RWKlfCY8eO0cqo/j0+e8DQOgYfg==} engines: {node: ^18.13.0 || >=20.9.0} @@ -822,11 +810,11 @@ packages: resolution: {integrity: sha512-o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw==} dev: true - /@babel/code-frame@7.24.1: - resolution: {integrity: sha512-bC49z4spJQR3j8vFtJBLqzyzFV0ciuL5HYX7qfSl3KEqeMVV+eTquRvmXxpvB0AMubRrvv7y5DILiLLPi57Ewg==} + /@babel/code-frame@7.24.2: + resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.24.1 + '@babel/highlight': 7.24.2 picocolors: 1.0.0 dev: true @@ -840,7 +828,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.1 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) @@ -863,8 +851,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.1 - '@babel/generator': 7.24.1 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.23.6 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) '@babel/helpers': 7.24.1 @@ -881,15 +869,15 @@ packages: - supports-color dev: true - /@babel/core@7.24.1: - resolution: {integrity: sha512-F82udohVyIgGAY2VVj/g34TpFUG606rumIHjTfVbssPg2zTR7PuuEpZcX8JA6sgBfIYmJrFtWgPvHQuJamVqZQ==} + /@babel/core@7.24.3: + resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.1 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.1) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) '@babel/helpers': 7.24.1 '@babel/parser': 7.24.1 '@babel/template': 7.24.0 @@ -976,19 +964,19 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.1): + /@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.1) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 @@ -1006,13 +994,13 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.1): + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 @@ -1048,12 +1036,12 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.1): + /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3): resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4 @@ -1090,8 +1078,8 @@ packages: '@babel/types': 7.24.0 dev: true - /@babel/helper-module-imports@7.24.1: - resolution: {integrity: sha512-HfEWzysMyOa7xI5uQHc/OcZf67/jc+xe/RZlznWQHhbb8Pg1SkRdbK4yEi61aY8wxQA7PkSfoojtLQP/Kpe3og==} + /@babel/helper-module-imports@7.24.3: + resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.24.0 @@ -1105,7 +1093,7 @@ packages: dependencies: '@babel/core': 7.23.9 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.24.1 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 @@ -1119,21 +1107,21 @@ packages: dependencies: '@babel/core': 7.24.0 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.24.1 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.1): + /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.24.1 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 @@ -1163,13 +1151,13 @@ packages: '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.1): + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 @@ -1187,13 +1175,13 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.1): + /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -1255,8 +1243,8 @@ packages: - supports-color dev: true - /@babel/highlight@7.24.1: - resolution: {integrity: sha512-EPmDPxidWe/Ex+HTFINpvXdPHRmgSF3T8hGvzondYjmgzTQ/0EbLpSxyt+w3zzlYSk9cNBQNF9k0dT5Z2NiBjw==} + /@babel/highlight@7.24.2: + resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.22.20 @@ -1283,13 +1271,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.1): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1305,16 +1293,16 @@ packages: '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.0) dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.1): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) dev: true /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.0): @@ -1328,27 +1316,27 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.1): + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.1): + /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.3) dev: true /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0): @@ -1360,13 +1348,13 @@ packages: '@babel/core': 7.24.0 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.1): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0): @@ -1378,21 +1366,21 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.1): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1405,12 +1393,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.1): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1424,23 +1412,23 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.1): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.1): + /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1453,12 +1441,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1471,12 +1459,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1490,13 +1478,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.1): + /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1510,13 +1498,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.1): + /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1529,12 +1517,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.1): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1547,22 +1535,22 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.1): + /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1575,12 +1563,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.1): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1593,12 +1581,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1611,12 +1599,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.1): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1629,12 +1617,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1647,12 +1635,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1665,12 +1653,12 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.1): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1684,13 +1672,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.1): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1704,23 +1692,23 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.1): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.1): + /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1735,14 +1723,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.1): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1756,13 +1744,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1779,30 +1767,17 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-async-generator-functions@7.24.1(@babel/core@7.24.0): - resolution: {integrity: sha512-OTkLJM0OtmzcpOgF7MREERUCdCnCBtBsq3vVFbuq/RKMK0/jdYqdMexWi3zNs7Nzd95ase65MbTGrpFJflOb6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.0 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0) - dev: true - - /@babel/plugin-transform-async-generator-functions@7.24.1(@babel/core@7.24.1): - resolution: {integrity: sha512-OTkLJM0OtmzcpOgF7MREERUCdCnCBtBsq3vVFbuq/RKMK0/jdYqdMexWi3zNs7Nzd95ase65MbTGrpFJflOb6A==} + /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3): + resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.1) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.1) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) dev: true /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.0): @@ -1812,33 +1787,21 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.0 - '@babel/helper-module-imports': 7.24.1 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) - dev: true - - /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.0): - resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.0 - '@babel/helper-module-imports': 7.24.1 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-module-imports': 7.24.1 + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.1) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) dev: true /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.0): @@ -1851,13 +1814,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1871,13 +1834,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1892,14 +1855,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -1915,16 +1878,16 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.1) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.0): @@ -1944,19 +1907,19 @@ packages: globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.1) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true @@ -1972,13 +1935,13 @@ packages: '@babel/template': 7.24.0 dev: true - /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.24.0 dev: true @@ -1993,13 +1956,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2014,14 +1977,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2035,13 +1998,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2056,15 +2019,15 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.1) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.0): @@ -2078,13 +2041,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2100,15 +2063,15 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.1) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.0): @@ -2122,13 +2085,13 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true @@ -2145,13 +2108,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 @@ -2168,15 +2131,15 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.1) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.0): @@ -2189,13 +2152,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2210,15 +2173,15 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.1) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) dev: true /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.0): @@ -2231,13 +2194,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2252,14 +2215,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2275,14 +2238,14 @@ packages: '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 dev: true @@ -2300,15 +2263,15 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.1) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-identifier': 7.22.20 dev: true @@ -2324,14 +2287,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2346,14 +2309,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.1): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2367,13 +2330,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2388,15 +2351,15 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.1) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.0): @@ -2410,15 +2373,15 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.1) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) dev: true /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.0): @@ -2434,17 +2397,17 @@ packages: '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) dev: true /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.0): @@ -2458,15 +2421,15 @@ packages: '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.1) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) dev: true /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.0): @@ -2480,15 +2443,15 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.1) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.0): @@ -2503,16 +2466,16 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.1) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.0): @@ -2525,13 +2488,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2546,14 +2509,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2570,17 +2533,17 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.1) + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.1) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.0): @@ -2593,13 +2556,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2614,13 +2577,13 @@ packages: regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 dev: true @@ -2635,13 +2598,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2652,7 +2615,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.0 - '@babel/helper-module-imports': 7.24.1 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.0) babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0) @@ -2662,18 +2625,18 @@ packages: - supports-color dev: true - /@babel/plugin-transform-runtime@7.24.1(@babel/core@7.24.1): - resolution: {integrity: sha512-yHLX14/T+tO0gjgJroDb8JYjOcQuzVC+Brt4CjHAxq/Ghw4xBVG+N02d1rMEcyUnKUQBL4Yy2gA9R72GK961jQ==} + /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3): + resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-module-imports': 7.24.1 + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.1) - babel-plugin-polyfill-corejs3: 0.10.1(@babel/core@7.24.1) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.1) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -2689,13 +2652,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2710,13 +2673,13 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true @@ -2731,13 +2694,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2751,13 +2714,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2771,27 +2734,27 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.1) + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) dev: true /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.0): @@ -2804,13 +2767,13 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2825,14 +2788,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2847,14 +2810,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2869,14 +2832,14 @@ packages: '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.1): + /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -2914,8 +2877,8 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.0) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.0) '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.0) - '@babel/plugin-transform-async-generator-functions': 7.24.1(@babel/core@7.24.0) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.0) + '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.0) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.0) '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.0) '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.0) '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.0) @@ -2971,91 +2934,91 @@ packages: - supports-color dev: true - /@babel/preset-env@7.24.1(@babel/core@7.24.1): - resolution: {integrity: sha512-CwCMz1Z28UHLI2iE+cbnWT2epPMV9bzzoBGM6A3mOS22VQd/1TPoWItV7S7iL9TkPmPEf5L/QzurmztyyDN9FA==} + /@babel/preset-env@7.24.3(@babel/core@7.24.3): + resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.1) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.1) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.1) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.1) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.1) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.1) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.1) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.1) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.1) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.1) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-async-generator-functions': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.1) - '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.1) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.1) - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.1) - babel-plugin-polyfill-corejs3: 0.10.1(@babel/core@7.24.1) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.1) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) core-js-compat: 3.36.1 semver: 6.3.1 transitivePeerDependencies: @@ -3073,29 +3036,29 @@ packages: esutils: 2.0.3 dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.1): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/types': 7.24.0 esutils: 2.0.3 dev: true - /@babel/preset-typescript@7.24.1(@babel/core@7.24.1): + /@babel/preset-typescript@7.24.1(@babel/core@7.24.3): resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) dev: true /@babel/regjsgen@0.8.0: @@ -3120,7 +3083,7 @@ packages: resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@babel/parser': 7.24.1 '@babel/types': 7.24.0 dev: true @@ -3129,7 +3092,7 @@ packages: resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.1 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 @@ -3147,7 +3110,7 @@ packages: resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.1 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 @@ -4508,7 +4471,7 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -4714,21 +4677,8 @@ packages: tslib: 2.6.2 dev: true - /@ngrx/store@17.1.1(@angular/core@17.3.0)(rxjs@7.8.1): - resolution: {integrity: sha512-MGbKLTcl4uq2Uzx+qbMYNy6xW+JnkpRiznaGFX2/NFflq/zNZsjbxZrvn4/Z6ClVYIjj3uadjM1fupwMYMJxVA==} - requiresBuild: true - peerDependencies: - '@angular/core': ^17.0.0 - rxjs: ^6.5.3 || ^7.5.0 - dependencies: - '@angular/core': 17.3.0(rxjs@7.8.1)(zone.js@0.14.4) - rxjs: 7.8.1 - tslib: 2.6.2 - dev: false - /@ngrx/store@17.1.1(@angular/core@17.3.1)(rxjs@7.8.1): resolution: {integrity: sha512-MGbKLTcl4uq2Uzx+qbMYNy6xW+JnkpRiznaGFX2/NFflq/zNZsjbxZrvn4/Z6ClVYIjj3uadjM1fupwMYMJxVA==} - requiresBuild: true peerDependencies: '@angular/core': ^17.0.0 rxjs: ^6.5.3 || ^7.5.0 @@ -5106,7 +5056,7 @@ packages: rxjs: 7.8.1 semver: 7.6.0 tslib: 2.6.2 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) webpack-merge: 5.10.0 transitivePeerDependencies: - '@babel/traverse' @@ -5257,20 +5207,20 @@ packages: verdaccio: optional: true dependencies: - '@babel/core': 7.24.1 - '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-runtime': 7.24.1(@babel/core@7.24.1) - '@babel/preset-env': 7.24.1(@babel/core@7.24.1) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) '@babel/runtime': 7.24.1 '@nrwl/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.3.3) '@nx/devkit': 18.1.2(nx@18.1.2) '@nx/workspace': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) - babel-plugin-const-enum: 1.2.0(@babel/core@7.24.1) + babel-plugin-const-enum: 1.2.0(@babel/core@7.24.3) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.1) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.3) chalk: 4.1.2 columnify: 1.6.0 detect-port: 1.5.1 @@ -5307,20 +5257,20 @@ packages: verdaccio: optional: true dependencies: - '@babel/core': 7.24.1 - '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-transform-runtime': 7.24.1(@babel/core@7.24.1) - '@babel/preset-env': 7.24.1(@babel/core@7.24.1) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) '@babel/runtime': 7.24.1 '@nrwl/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) '@nx/workspace': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.3) - babel-plugin-const-enum: 1.2.0(@babel/core@7.24.1) + babel-plugin-const-enum: 1.2.0(@babel/core@7.24.3) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.1) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.3) chalk: 4.1.2 columnify: 1.6.0 detect-port: 1.5.1 @@ -5539,43 +5489,43 @@ packages: /@nx/webpack@18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3): resolution: {integrity: sha512-Mv24F7IlYRqSqsn97+WlpylCpC79v4aQubZRPE/dxx7eRqBMykg1BSy8uDI926ggkr096EUejQkN44pzu7o/gQ==} dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@nrwl/webpack': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) '@nx/devkit': 18.1.2(nx@18.1.2) '@nx/js': 18.1.2(@swc-node/register@1.9.0)(@swc/core@1.4.8)(@types/node@18.19.26)(nx@18.1.2)(typescript@5.4.3) ajv: 8.12.0 autoprefixer: 10.4.19(postcss@8.4.38) - babel-loader: 9.1.3(@babel/core@7.24.1)(webpack@5.90.3) + babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.91.0) browserslist: 4.23.0 chalk: 4.1.2 - copy-webpack-plugin: 10.2.4(webpack@5.90.3) - css-loader: 6.10.0(webpack@5.90.3) - css-minimizer-webpack-plugin: 5.0.1(webpack@5.90.3) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.4.3)(webpack@5.90.3) + copy-webpack-plugin: 10.2.4(webpack@5.91.0) + css-loader: 6.10.0(webpack@5.91.0) + css-minimizer-webpack-plugin: 5.0.1(webpack@5.91.0) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.4.3)(webpack@5.91.0) less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.90.3) - license-webpack-plugin: 4.0.2(webpack@5.90.3) + less-loader: 11.1.0(less@4.1.3)(webpack@5.91.0) + license-webpack-plugin: 4.0.2(webpack@5.91.0) loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.90.3) + mini-css-extract-plugin: 2.4.7(webpack@5.91.0) parse5: 4.0.0 postcss: 8.4.38 postcss-import: 14.1.0(postcss@8.4.38) - postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.90.3) + postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.91.0) rxjs: 7.8.1 sass: 1.72.0 - sass-loader: 12.6.0(sass@1.72.0)(webpack@5.90.3) - source-map-loader: 3.0.2(webpack@5.90.3) - style-loader: 3.3.4(webpack@5.90.3) + sass-loader: 12.6.0(sass@1.72.0)(webpack@5.91.0) + source-map-loader: 3.0.2(webpack@5.91.0) + style-loader: 3.3.4(webpack@5.91.0) stylus: 0.59.0 - stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.90.3) - terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(webpack@5.90.3) - ts-loader: 9.5.1(typescript@5.4.3)(webpack@5.90.3) + stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.91.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(webpack@5.91.0) + ts-loader: 9.5.1(typescript@5.4.3)(webpack@5.91.0) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.6.2 - webpack: 5.90.3(@swc/core@1.4.8) - webpack-dev-server: 4.15.1(webpack@5.90.3) + webpack: 5.91.0(@swc/core@1.4.8) + webpack-dev-server: 4.15.2(webpack@5.91.0) webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(webpack@5.90.3) + webpack-subresource-integrity: 5.1.0(webpack@5.91.0) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -6386,7 +6336,7 @@ packages: resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} engines: {node: '>=14'} dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@babel/runtime': 7.24.1 '@types/aria-query': 5.0.4 aria-query: 5.1.3 @@ -6598,7 +6548,7 @@ packages: resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} dependencies: '@types/node': 18.19.26 - '@types/qs': 6.9.13 + '@types/qs': 6.9.14 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 dev: true @@ -6608,7 +6558,7 @@ packages: dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.17.43 - '@types/qs': 6.9.13 + '@types/qs': 6.9.14 '@types/serve-static': 1.15.5 dev: true @@ -6715,8 +6665,8 @@ packages: resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} dev: true - /@types/qs@6.9.13: - resolution: {integrity: sha512-iLR+1vTTJ3p0QaOUq6ACbY1mzKTODFDT/XedZI8BksOotFmL4ForwDfRQ/DZeuTHR7/2i4lI1D203gdfxuqTlA==} + /@types/qs@6.9.14: + resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==} dev: true /@types/range-parser@1.2.7: @@ -7731,13 +7681,14 @@ packages: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes@3.1.7: - resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} + /array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.2 + es-object-atoms: 1.0.0 get-intrinsic: 1.2.4 is-string: 1.0.7 dev: true @@ -7752,14 +7703,15 @@ packages: engines: {node: '>=12'} dev: true - /array.prototype.findlastindex@1.2.4: - resolution: {integrity: sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==} + /array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.2 es-errors: 1.3.0 + es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 dev: true @@ -7790,7 +7742,7 @@ packages: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.2 es-errors: 1.3.0 get-intrinsic: 1.2.4 is-array-buffer: 3.0.4 @@ -7883,17 +7835,17 @@ packages: resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} dev: true - /babel-jest@29.7.0(@babel/core@7.24.1): + /babel-jest@29.7.0(@babel/core@7.24.3): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.24.1) + babel-preset-jest: 29.6.3(@babel/core@7.24.3) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -7914,27 +7866,27 @@ packages: webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true - /babel-loader@9.1.3(@babel/core@7.24.1)(webpack@5.90.3): + /babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.91.0): resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} engines: {node: '>= 14.15.0'} peerDependencies: '@babel/core': ^7.12.0 webpack: '>=5' dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true - /babel-plugin-const-enum@1.2.0(@babel/core@7.24.1): + /babel-plugin-const-enum@1.2.0(@babel/core@7.24.3): resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) '@babel/traverse': 7.24.1 transitivePeerDependencies: - supports-color @@ -7984,26 +7936,26 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.1): + /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3): resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.1 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.10.1(@babel/core@7.24.1): - resolution: {integrity: sha512-XiFei6VGwM4ii6nKC1VCenGD8Z4bjiNYcrdkM8oqM3pbuemmyb8biMgrDX1ZHSbIuMLXatM6JJ/StPYIuTl6MQ==} + /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3): + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) core-js-compat: 3.36.1 transitivePeerDependencies: - supports-color @@ -8032,18 +7984,18 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.1): + /babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3): resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.1 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.1) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) transitivePeerDependencies: - supports-color dev: true - /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.1): + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.3): resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: '@babel/core': ^7 @@ -8052,47 +8004,47 @@ packages: '@babel/traverse': optional: true dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.1): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.1) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.1) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.1) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.1) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.1) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.1) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.1) - dev: true - - /babel-preset-jest@29.6.3(@babel/core@7.24.1): + '@babel/core': 7.24.3 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) + dev: true + + /babel-preset-jest@29.6.3(@babel/core@7.24.3): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.1) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) dev: true /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} dev: true - /bare-events@2.2.1: - resolution: {integrity: sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==} + /bare-events@2.2.2: + resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==} requiresBuild: true dev: true optional: true @@ -8205,7 +8157,7 @@ packages: hasBin: true dependencies: caniuse-lite: 1.0.30001599 - electron-to-chromium: 1.4.710 + electron-to-chromium: 1.4.713 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) dev: true @@ -8768,13 +8720,18 @@ packages: engines: {node: '>= 0.6'} dev: true + /cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + dev: true + /copy-anything@2.0.6: resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} dependencies: is-what: 3.14.1 dev: true - /copy-webpack-plugin@10.2.4(webpack@5.90.3): + /copy-webpack-plugin@10.2.4(webpack@5.91.0): resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} engines: {node: '>= 12.20.0'} peerDependencies: @@ -8786,7 +8743,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /copy-webpack-plugin@11.0.0(webpack@5.90.3): @@ -8983,7 +8940,30 @@ packages: webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true - /css-minimizer-webpack-plugin@5.0.1(webpack@5.90.3): + /css-loader@6.10.0(webpack@5.91.0): + resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.4(postcss@8.4.38) + postcss-modules-scope: 3.1.1(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) + postcss-value-parser: 4.2.0 + semver: 7.6.0 + webpack: 5.91.0(@swc/core@1.4.8) + dev: true + + /css-minimizer-webpack-plugin@5.0.1(webpack@5.91.0): resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -9009,12 +8989,12 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.25 - cssnano: 6.1.0(postcss@8.4.38) + cssnano: 6.1.1(postcss@8.4.38) jest-worker: 29.7.0 postcss: 8.4.38 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /css-select@5.1.0: @@ -9032,7 +9012,7 @@ packages: engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} dependencies: mdn-data: 2.0.28 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /css-tree@2.3.1: @@ -9040,7 +9020,7 @@ packages: engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} dependencies: mdn-data: 2.0.30 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /css-what@6.1.0: @@ -9058,8 +9038,8 @@ packages: hasBin: true dev: true - /cssnano-preset-default@6.1.0(postcss@8.4.38): - resolution: {integrity: sha512-4DUXZoDj+PI3fRl3MqMjl9DwLGjcsFP4qt+92nLUcN1RGfw2TY+GwNoG2B38Usu1BrcTs8j9pxNfSusmvtSjfg==} + /cssnano-preset-default@6.1.1(postcss@8.4.38): + resolution: {integrity: sha512-XW/dYN2p8Jdkp1lovFd0UVRh6RB0iMyXJbAE9Qm+taR3p2LGu492AW34lVaukUrXoK9IxK5aK3CUmFpUorU4oA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 @@ -9075,12 +9055,12 @@ packages: postcss-discard-duplicates: 6.0.3(postcss@8.4.38) postcss-discard-empty: 6.0.3(postcss@8.4.38) postcss-discard-overridden: 6.0.2(postcss@8.4.38) - postcss-merge-longhand: 6.0.4(postcss@8.4.38) - postcss-merge-rules: 6.1.0(postcss@8.4.38) - postcss-minify-font-values: 6.0.3(postcss@8.4.38) + postcss-merge-longhand: 6.0.5(postcss@8.4.38) + postcss-merge-rules: 6.1.1(postcss@8.4.38) + postcss-minify-font-values: 6.1.0(postcss@8.4.38) postcss-minify-gradients: 6.0.3(postcss@8.4.38) postcss-minify-params: 6.1.0(postcss@8.4.38) - postcss-minify-selectors: 6.0.3(postcss@8.4.38) + postcss-minify-selectors: 6.0.4(postcss@8.4.38) postcss-normalize-charset: 6.0.2(postcss@8.4.38) postcss-normalize-display-values: 6.0.2(postcss@8.4.38) postcss-normalize-positions: 6.0.2(postcss@8.4.38) @@ -9094,7 +9074,7 @@ packages: postcss-reduce-initial: 6.1.0(postcss@8.4.38) postcss-reduce-transforms: 6.0.2(postcss@8.4.38) postcss-svgo: 6.0.3(postcss@8.4.38) - postcss-unique-selectors: 6.0.3(postcss@8.4.38) + postcss-unique-selectors: 6.0.4(postcss@8.4.38) dev: true /cssnano-utils@4.0.2(postcss@8.4.38): @@ -9106,13 +9086,13 @@ packages: postcss: 8.4.38 dev: true - /cssnano@6.1.0(postcss@8.4.38): - resolution: {integrity: sha512-e2v4w/t3OFM6HTuSweI4RSdABaqgVgHlJp5FZrQsopHnKKHLFIvK2D3C4kHWeFIycN/1L1J5VIrg5KlDzn3r/g==} + /cssnano@6.1.1(postcss@8.4.38): + resolution: {integrity: sha512-paTFZuiVohpaXJuau8l7buFt9+FTmfjwEO70EKitzYOQw3frib/It4sb6cQ+gJyDEyY+myDSni6IbBvKZ0N8Lw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: - cssnano-preset-default: 6.1.0(postcss@8.4.38) + cssnano-preset-default: 6.1.1(postcss@8.4.38) lilconfig: 3.1.1 postcss: 8.4.38 dev: true @@ -9611,8 +9591,8 @@ packages: jake: 10.8.7 dev: true - /electron-to-chromium@1.4.710: - resolution: {integrity: sha512-w+9yAVHoHhysCa+gln7AzbO9CdjFcL/wN/5dd+XW/Msl2d/4+WisEaCF1nty0xbAKaxdaJfgLB2296U7zZB7BA==} + /electron-to-chromium@1.4.713: + resolution: {integrity: sha512-vDarADhwntXiULEdmWd77g2dV6FrNGa8ecAC29MZ4TwPut2fvosD0/5sJd1qWNNe8HcJFAC+F5Lf9jW1NPtWmw==} dev: true /emittery@0.13.1: @@ -10088,8 +10068,8 @@ packages: optional: true dependencies: '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) - array-includes: 3.1.7 - array.prototype.findlastindex: 1.2.4 + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 debug: 3.2.7 @@ -10391,8 +10371,8 @@ packages: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} dev: true - /express@4.18.3: - resolution: {integrity: sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==} + /express@4.19.1: + resolution: {integrity: sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w==} engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 @@ -10400,7 +10380,7 @@ packages: body-parser: 1.20.2 content-disposition: 0.5.4 content-type: 1.0.5 - cookie: 0.5.0 + cookie: 0.6.0 cookie-signature: 1.0.6 debug: 2.6.9 depd: 2.0.0 @@ -10649,7 +10629,7 @@ packages: signal-exit: 4.1.0 dev: true - /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.3)(webpack@5.90.3): + /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.3)(webpack@5.91.0): resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -10660,7 +10640,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -10673,7 +10653,7 @@ packages: semver: 7.6.0 tapable: 2.2.1 typescript: 5.4.3 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /form-data@4.0.0: @@ -10787,7 +10767,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.2 functions-have-names: 1.2.3 dev: true @@ -10880,7 +10860,7 @@ packages: citty: 0.1.6 consola: 3.2.3 defu: 6.1.4 - node-fetch-native: 1.6.2 + node-fetch-native: 1.6.3 nypm: 0.3.8 ohash: 1.1.3 pathe: 1.1.2 @@ -11070,7 +11050,7 @@ packages: iron-webcrypto: 1.1.0 ohash: 1.1.3 radix3: 1.1.1 - ufo: 1.5.2 + ufo: 1.5.3 uncrypto: 0.1.3 unenv: 1.9.0 transitivePeerDependencies: @@ -11927,7 +11907,7 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.0 '@babel/parser': 7.24.1 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -11940,7 +11920,7 @@ packages: resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/parser': 7.24.1 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -12042,7 +12022,7 @@ packages: jest-util: 29.7.0 p-limit: 3.1.0 pretty-format: 29.7.0 - pure-rand: 6.0.4 + pure-rand: 6.1.0 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: @@ -12090,11 +12070,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 '@types/node': 18.19.26 - babel-jest: 29.7.0(@babel/core@7.24.1) + babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -12228,7 +12208,7 @@ packages: resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -12260,7 +12240,7 @@ packages: jest-resolve: 29.7.0 dev: true - /jest-preset-angular@14.0.3(@angular-devkit/build-angular@17.3.1)(@angular/compiler-cli@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser-dynamic@17.3.1)(@babel/core@7.24.1)(jest@29.7.0)(typescript@5.4.3): + /jest-preset-angular@14.0.3(@angular-devkit/build-angular@17.3.1)(@angular/compiler-cli@17.3.1)(@angular/core@17.3.1)(@angular/platform-browser-dynamic@17.3.1)(@babel/core@7.24.3)(jest@29.7.0)(typescript@5.4.3): resolution: {integrity: sha512-usgBL7x0rXMnMSx8iEFeOozj50W6fp+YAmQcQBUdAXhN+PAXRy4UXL6I/rfcAOU09rnnq7RKsLsmhpp/fFEuag==} engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: @@ -12281,7 +12261,7 @@ packages: jest-environment-jsdom: 29.7.0 jest-util: 29.7.0 pretty-format: 29.7.0 - ts-jest: 29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3) + ts-jest: 29.1.2(@babel/core@7.24.3)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3) typescript: 5.4.3 optionalDependencies: esbuild: 0.20.2 @@ -12388,15 +12368,15 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 '@babel/generator': 7.24.1 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.1) - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.1) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) '@babel/types': 7.24.0 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.1) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -12744,7 +12724,7 @@ packages: readable-stream: 2.3.8 dev: true - /less-loader@11.1.0(less@4.1.3)(webpack@5.90.3): + /less-loader@11.1.0(less@4.1.3)(webpack@5.91.0): resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -12753,7 +12733,7 @@ packages: dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /less-loader@11.1.0(less@4.2.0)(webpack@5.90.3): @@ -12829,6 +12809,18 @@ packages: webpack-sources: 3.2.3 dev: true + /license-webpack-plugin@4.0.2(webpack@5.91.0): + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + dependencies: + webpack: 5.91.0(@swc/core@1.4.8) + webpack-sources: 3.2.3 + dev: true + /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} @@ -12891,7 +12883,7 @@ packages: node-forge: 1.3.1 pathe: 1.1.2 std-env: 3.7.0 - ufo: 1.5.2 + ufo: 1.5.3 untun: 0.1.3 uqr: 0.1.2 transitivePeerDependencies: @@ -13091,7 +13083,7 @@ packages: dependencies: '@babel/parser': 7.24.1 '@babel/types': 7.24.0 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /make-dir@2.1.0: @@ -13276,14 +13268,14 @@ packages: engines: {node: '>=4'} dev: true - /mini-css-extract-plugin@2.4.7(webpack@5.90.3): + /mini-css-extract-plugin@2.4.7(webpack@5.91.0): resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /mini-css-extract-plugin@2.8.1(webpack@5.90.3): @@ -13446,7 +13438,7 @@ packages: acorn: 8.11.3 pathe: 1.1.2 pkg-types: 1.0.3 - ufo: 1.5.2 + ufo: 1.5.3 dev: true /mri@1.2.0: @@ -13497,7 +13489,7 @@ packages: outvariant: 1.4.2 path-to-regexp: 6.2.1 strict-event-emitter: 0.5.1 - type-fest: 4.13.0 + type-fest: 4.13.1 typescript: 5.4.3 yargs: 17.7.2 dev: true @@ -13665,8 +13657,8 @@ packages: mime: 4.0.1 mlly: 1.6.1 mri: 1.2.0 - node-fetch-native: 1.6.2 - ofetch: 1.3.3 + node-fetch-native: 1.6.3 + ofetch: 1.3.4 ohash: 1.1.3 openapi-typescript: 6.7.5 pathe: 1.1.2 @@ -13681,7 +13673,7 @@ packages: serve-placeholder: 2.0.1 serve-static: 1.15.0 std-env: 3.7.0 - ufo: 1.5.2 + ufo: 1.5.3 uncrypto: 0.1.3 unctx: 2.3.1 unenv: 1.9.0 @@ -13724,8 +13716,8 @@ packages: engines: {node: ^16 || ^18 || >= 20} dev: true - /node-fetch-native@1.6.2: - resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==} + /node-fetch-native@1.6.3: + resolution: {integrity: sha512-5kvcZPQYJBlUPgHxG0L8RJ52wiu2Sn5RAXBJlU6xPv8X+4MbeOxJ8Do9NFzD1RaWDDc1OF2VtBTgo+OKzg01uA==} dev: true /node-fetch@2.7.0: @@ -13993,7 +13985,7 @@ packages: consola: 3.2.3 execa: 8.0.1 pathe: 1.1.2 - ufo: 1.5.2 + ufo: 1.5.3 dev: true /object-assign@4.1.1: @@ -14065,12 +14057,12 @@ packages: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} dev: true - /ofetch@1.3.3: - resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} + /ofetch@1.3.4: + resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==} dependencies: destr: 2.0.3 - node-fetch-native: 1.6.2 - ufo: 1.5.2 + node-fetch-native: 1.6.3 + ufo: 1.5.3 dev: true /ohash@1.1.3: @@ -14309,7 +14301,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.24.1 + '@babel/code-frame': 7.24.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -14649,7 +14641,7 @@ packages: yaml: 2.4.1 dev: true - /postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.90.3): + /postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -14660,7 +14652,7 @@ packages: klona: 2.0.6 postcss: 8.4.38 semver: 7.6.0 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.4.3)(webpack@5.90.3): @@ -14689,19 +14681,19 @@ packages: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} dev: true - /postcss-merge-longhand@6.0.4(postcss@8.4.38): - resolution: {integrity: sha512-vAfWGcxUUGlFiPM3nDMZA+/Yo9sbpc3JNkcYZez8FfJDv41Dh7tAgA3QGVTocaHCZZL6aXPXPOaBMJsjujodsA==} + /postcss-merge-longhand@6.0.5(postcss@8.4.38): + resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - stylehacks: 6.1.0(postcss@8.4.38) + stylehacks: 6.1.1(postcss@8.4.38) dev: true - /postcss-merge-rules@6.1.0(postcss@8.4.38): - resolution: {integrity: sha512-lER+W3Gr6XOvxOYk1Vi/6UsAgKMg6MDBthmvbNqi2XxAk/r9XfhdYZSigfWjuWWn3zYw2wLelvtM8XuAEFqRkA==} + /postcss-merge-rules@6.1.1(postcss@8.4.38): + resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 @@ -14713,8 +14705,8 @@ packages: postcss-selector-parser: 6.0.16 dev: true - /postcss-minify-font-values@6.0.3(postcss@8.4.38): - resolution: {integrity: sha512-SmAeTA1We5rMnN3F8X9YBNo9bj9xB4KyDHnaNJnBfQIPi+60fNiR9OTRnIaMqkYzAQX0vObIw4Pn0vuKEOettg==} + /postcss-minify-font-values@6.1.0(postcss@8.4.38): + resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 @@ -14747,8 +14739,8 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors@6.0.3(postcss@8.4.38): - resolution: {integrity: sha512-IcV7ZQJcaXyhx4UBpWZMsinGs2NmiUC60rJSkyvjPCPqhNjVGsrJUM+QhAtCaikZ0w0/AbZuH4wVvF/YMuMhvA==} + /postcss-minify-selectors@6.0.4(postcss@8.4.38): + resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 @@ -14949,8 +14941,8 @@ packages: svgo: 3.2.0 dev: true - /postcss-unique-selectors@6.0.3(postcss@8.4.38): - resolution: {integrity: sha512-NFXbYr8qdmCr/AFceaEfdcsKGCvWTeGO6QVC9h2GvtWgj0/0dklKQcaMMVzs6tr8bY+ase8hOtHW8OBTTRvS8A==} + /postcss-unique-selectors@6.0.4(postcss@8.4.38): + resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 @@ -14982,7 +14974,7 @@ packages: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /postcss@8.4.38: @@ -15203,8 +15195,8 @@ packages: engines: {node: '>=6'} dev: true - /pure-rand@6.0.4: - resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} + /pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} dev: true /qs@6.11.0: @@ -15431,7 +15423,7 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.0 dev: true /regex-parser@2.3.0: @@ -15696,7 +15688,7 @@ packages: suf-log: 2.5.3 dev: true - /sass-loader@12.6.0(sass@1.72.0)(webpack@5.90.3): + /sass-loader@12.6.0(sass@1.72.0)(webpack@5.91.0): resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -15718,7 +15710,7 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.72.0 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /sass-loader@14.1.1(sass@1.71.1)(webpack@5.90.3): @@ -15754,7 +15746,7 @@ packages: dependencies: chokidar: 3.6.0 immutable: 4.3.5 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /sass@1.72.0: @@ -15764,7 +15756,7 @@ packages: dependencies: chokidar: 3.6.0 immutable: 4.3.5 - source-map-js: 1.1.0 + source-map-js: 1.2.0 dev: true /sax@1.2.4: @@ -16117,17 +16109,12 @@ packages: sort-object-keys: 1.1.3 dev: true - /source-map-js@1.1.0: - resolution: {integrity: sha512-9vC2SfsJzlej6MAaMPLu8HiBSHGdRAJ9hVFYN1ibZoNkeanmDmLUcIrj6G9DGL7XMJ54AKg/G75akXl1/izTOw==} - engines: {node: '>=0.10.0'} - dev: true - /source-map-js@1.2.0: resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} engines: {node: '>=0.10.0'} dev: true - /source-map-loader@3.0.2(webpack@5.90.3): + /source-map-loader@3.0.2(webpack@5.91.0): resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -16135,8 +16122,8 @@ packages: dependencies: abab: 2.0.6 iconv-lite: 0.6.3 - source-map-js: 1.1.0 - webpack: 5.90.3(@swc/core@1.4.8) + source-map-js: 1.2.0 + webpack: 5.91.0(@swc/core@1.4.8) dev: true /source-map-loader@5.0.0(webpack@5.90.3): @@ -16146,7 +16133,7 @@ packages: webpack: ^5.72.1 dependencies: iconv-lite: 0.6.3 - source-map-js: 1.1.0 + source-map-js: 1.2.0 webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true @@ -16309,7 +16296,7 @@ packages: fast-fifo: 1.3.2 queue-tick: 1.0.1 optionalDependencies: - bare-events: 2.2.1 + bare-events: 2.2.2 dev: true /strict-event-emitter@0.5.1: @@ -16379,7 +16366,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.2 dev: true /string_decoder@1.1.1: @@ -16462,17 +16449,17 @@ packages: through: 2.3.8 dev: true - /style-loader@3.3.4(webpack@5.90.3): + /style-loader@3.3.4(webpack@5.91.0): resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true - /stylehacks@6.1.0(postcss@8.4.38): - resolution: {integrity: sha512-ETErsPFgwlfYZ/CSjMO2Ddf+TsnkCVPBPaoB99Ro8WMAxf7cglzmFsRBhRmKObFjibtcvlNxFFPHuyr3sNlNUQ==} + /stylehacks@6.1.1(postcss@8.4.38): + resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 @@ -16482,7 +16469,7 @@ packages: postcss-selector-parser: 6.0.16 dev: true - /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.90.3): + /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.91.0): resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -16492,7 +16479,7 @@ packages: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.59.0 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /stylus@0.59.0: @@ -16693,7 +16680,7 @@ packages: webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true - /terser-webpack-plugin@5.3.10(@swc/core@1.4.8)(webpack@5.90.3): + /terser-webpack-plugin@5.3.10(@swc/core@1.4.8)(webpack@5.91.0): resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16715,7 +16702,7 @@ packages: schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.29.1 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /terser@5.29.1: @@ -16882,7 +16869,7 @@ packages: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-jest@29.1.2(@babel/core@7.24.1)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3): + /ts-jest@29.1.2(@babel/core@7.24.3)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.3): resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -16903,7 +16890,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.24.1 + '@babel/core': 7.24.3 bs-logger: 0.2.6 esbuild: 0.20.2 fast-json-stable-stringify: 2.1.0 @@ -16917,7 +16904,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader@9.5.1(typescript@5.4.3)(webpack@5.90.3): + /ts-loader@9.5.1(typescript@5.4.3)(webpack@5.91.0): resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -16930,7 +16917,7 @@ packages: semver: 7.6.0 source-map: 0.7.4 typescript: 5.4.3 - webpack: 5.90.3(@swc/core@1.4.8) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /ts-morph@21.0.1: @@ -17173,8 +17160,8 @@ packages: engines: {node: '>=14.16'} dev: true - /type-fest@4.13.0: - resolution: {integrity: sha512-nKO1N9IFeTec3jnNe/3nZlX+RzwZsvT3c4akWC3IlhYGQbRSPFMBe87vmoaymS3hW2l/rs+4ptDDTxzcbqAcmA==} + /type-fest@4.13.1: + resolution: {integrity: sha512-ASMgM+Vf2cLwDMt1KXSkMUDSYCxtckDJs8zsaVF/mYteIsiARKCVtyXtcK38mIKbLTctZP8v6GMqdNaeI3fo7g==} engines: {node: '>=16'} dev: true @@ -17246,8 +17233,8 @@ packages: hasBin: true dev: true - /ufo@1.5.2: - resolution: {integrity: sha512-eiutMaL0J2MKdhcOM1tUy13pIrYnyR87fEd8STJQFrrAwImwvlXkxlZEjaKah8r2viPohld08lt73QfLG1NxMg==} + /ufo@1.5.3: + resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} dev: true /unbox-primitive@1.0.2: @@ -17294,7 +17281,7 @@ packages: consola: 3.2.3 defu: 6.1.4 mime: 3.0.0 - node-fetch-native: 1.6.2 + node-fetch-native: 1.6.3 pathe: 1.1.2 dev: true @@ -17449,9 +17436,9 @@ packages: listhen: 1.7.2 lru-cache: 10.2.0 mri: 1.2.0 - node-fetch-native: 1.6.2 - ofetch: 1.3.3 - ufo: 1.5.2 + node-fetch-native: 1.6.3 + ofetch: 1.3.4 + ufo: 1.5.3 transitivePeerDependencies: - uWebSockets.js dev: true @@ -17760,6 +17747,14 @@ packages: graceful-fs: 4.2.11 dev: true + /watchpack@2.4.1: + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + dev: true + /wbuf@1.7.3: resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} dependencies: @@ -17781,8 +17776,8 @@ packages: engines: {node: '>=12'} dev: true - /webpack-dev-middleware@5.3.3(webpack@5.90.3): - resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} + /webpack-dev-middleware@5.3.4(webpack@5.91.0): + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 @@ -17792,7 +17787,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) + webpack: 5.91.0(@swc/core@1.4.8) dev: true /webpack-dev-middleware@6.1.1(webpack@5.90.3): @@ -17812,7 +17807,7 @@ packages: webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true - /webpack-dev-server@4.15.1(webpack@5.90.3): + /webpack-dev-server@4.15.1(webpack@5.91.0): resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==} engines: {node: '>= 12.13.0'} hasBin: true @@ -17839,7 +17834,7 @@ packages: compression: 1.7.4 connect-history-api-fallback: 2.0.0 default-gateway: 6.0.3 - express: 4.18.3 + express: 4.19.1 graceful-fs: 4.2.11 html-entities: 2.5.2 http-proxy-middleware: 2.0.6(@types/express@4.17.21) @@ -17853,8 +17848,59 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) - webpack-dev-middleware: 5.3.3(webpack@5.90.3) + webpack: 5.91.0(@swc/core@1.4.8) + webpack-dev-middleware: 5.3.4(webpack@5.91.0) + ws: 8.16.0 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + dev: true + + /webpack-dev-server@4.15.2(webpack@5.91.0): + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: ^4.37.0 || ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + dependencies: + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.10 + ansi-html-community: 0.0.8 + bonjour-service: 1.2.1 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.19.1 + graceful-fs: 4.2.11 + html-entities: 2.5.2 + http-proxy-middleware: 2.0.6(@types/express@4.17.21) + ipaddr.js: 2.1.0 + launch-editor: 2.6.1 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.2.0 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack: 5.91.0(@swc/core@1.4.8) + webpack-dev-middleware: 5.3.4(webpack@5.91.0) ws: 8.16.0 transitivePeerDependencies: - bufferutil @@ -17896,11 +17942,25 @@ packages: webpack: 5.90.3(@swc/core@1.4.8)(esbuild@0.20.1) dev: true + /webpack-subresource-integrity@5.1.0(webpack@5.91.0): + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: ^5.12.0 + peerDependenciesMeta: + html-webpack-plugin: + optional: true + dependencies: + typed-assert: 1.0.9 + webpack: 5.91.0(@swc/core@1.4.8) + dev: true + /webpack-virtual-modules@0.6.1: resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} dev: true - /webpack@5.90.3(@swc/core@1.4.8): + /webpack@5.90.3(@swc/core@1.4.8)(esbuild@0.20.1): resolution: {integrity: sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==} engines: {node: '>=10.13.0'} hasBin: true @@ -17931,7 +17991,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(webpack@5.90.3) + terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(esbuild@0.20.1)(webpack@5.90.3) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -17940,8 +18000,8 @@ packages: - uglify-js dev: true - /webpack@5.90.3(@swc/core@1.4.8)(esbuild@0.20.1): - resolution: {integrity: sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==} + /webpack@5.91.0(@swc/core@1.4.8): + resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -17971,8 +18031,8 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(esbuild@0.20.1)(webpack@5.90.3) - watchpack: 2.4.0 + terser-webpack-plugin: 5.3.10(@swc/core@1.4.8)(webpack@5.91.0) + watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core'