From 92d4e1d6ffd349de1bdc7fc5ed317fd2fea981c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliz=C3=A9=20Debray?= Date: Fri, 3 May 2024 16:53:22 +0200 Subject: [PATCH 1/6] fix(styles): wrap button group overflow --- .changeset/yellow-spies-rhyme.md | 5 +++++ .../styles/src/components/button-group.scss | 20 ++++--------------- 2 files changed, 9 insertions(+), 16 deletions(-) create mode 100644 .changeset/yellow-spies-rhyme.md diff --git a/.changeset/yellow-spies-rhyme.md b/.changeset/yellow-spies-rhyme.md new file mode 100644 index 0000000000..d80a114e12 --- /dev/null +++ b/.changeset/yellow-spies-rhyme.md @@ -0,0 +1,5 @@ +--- +'@swisspost/design-system-styles': patch +--- + +Implemented button wrapping for overflow in button groups. diff --git a/packages/styles/src/components/button-group.scss b/packages/styles/src/components/button-group.scss index bfa8109af6..eaa3bdd4cb 100644 --- a/packages/styles/src/components/button-group.scss +++ b/packages/styles/src/components/button-group.scss @@ -6,31 +6,19 @@ @use './../mixins/utilities'; @use './../variables/color'; +@use './../variables/spacing'; @use './../variables/components/button'; @use './../variables/components/forms'; .btn-group { max-width: 100%; + flex-wrap: wrap; + row-gap: spacing.$size-micro; > .btn { white-space: normal; cursor: pointer; - - // added a transition delay on the "z-index" so the button only moves back after all other transitions - z-index: 0; - transition: - z-index 0s ease (0.5 * button.$btn-transition-duration), - button.$btn-transition; - - @include utilities.high-contrast-mode() { - transition: none !important; - } - } - - > .btn:hover { - // remove the transition delay on the "z-index" for all raised states so the button moves forward before other transitions - z-index: 2 !important; - transition: button.$btn-transition; + flex: 0 1 auto; } > .btn-secondary { From 7c84ad634aaa595f83f562f99814fac619ee0b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliz=C3=A9=20Debray?= Date: Tue, 4 Jun 2024 12:49:54 +0200 Subject: [PATCH 2/6] Add button margin --- .../styles/src/components/button-group.scss | 3 + pnpm-lock.yaml | 232 +++++++++++++++++- 2 files changed, 224 insertions(+), 11 deletions(-) diff --git a/packages/styles/src/components/button-group.scss b/packages/styles/src/components/button-group.scss index eaa3bdd4cb..998e3068e6 100644 --- a/packages/styles/src/components/button-group.scss +++ b/packages/styles/src/components/button-group.scss @@ -10,15 +10,18 @@ @use './../variables/components/button'; @use './../variables/components/forms'; + .btn-group { max-width: 100%; flex-wrap: wrap; row-gap: spacing.$size-micro; + padding-inline-start: button.$btn-border-width; > .btn { white-space: normal; cursor: pointer; flex: 0 1 auto; + margin-inline-start: -1 * button.$btn-border-width; } > .btn-secondary { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 16cfdda336..2d33e9dbd2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -176,7 +176,7 @@ importers: devDependencies: '@angular-devkit/build-angular': specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) + version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3) '@angular-eslint/builder': specifier: 17.3.0 version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) @@ -227,7 +227,7 @@ importers: version: 2.1.0(jasmine-core@5.1.2)(karma-jasmine@5.1.0(karma@6.4.3))(karma@6.4.3) ng-packagr: specifier: 17.3.0 - version: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3) + version: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) typescript: specifier: 5.3.3 version: 5.3.3 @@ -840,7 +840,7 @@ importers: devDependencies: '@angular-devkit/build-angular': specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) + version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3) '@angular-eslint/builder': specifier: 17.3.0 version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) @@ -894,7 +894,7 @@ importers: version: 2.1.0(jasmine-core@5.1.2)(karma-jasmine@5.1.0(karma@6.4.3))(karma@6.4.3) ng-packagr: specifier: 17.3.0 - version: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3) + version: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) rimraf: specifier: 5.0.5 version: 5.0.5 @@ -1046,7 +1046,7 @@ importers: version: 1.4.0 gulp-postcss: specifier: 10.0.0 - version: 10.0.0(jiti@1.20.0)(postcss@8.4.38) + version: 10.0.0(postcss@8.4.38) gulp-sass: specifier: 5.1.0 version: 5.1.0 @@ -11247,11 +11247,11 @@ snapshots: tslib: 2.6.2 typescript: 5.3.3 undici: 6.7.1 - vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1) watchpack: 2.4.0 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) - webpack-dev-server: 4.15.1(webpack@5.90.3(esbuild@0.20.1)) + 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(esbuild@0.20.1)) optionalDependencies: @@ -11281,6 +11281,100 @@ snapshots: - utf-8-validate - webpack-cli + '@angular-devkit/build-angular@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.1703.3(chokidar@3.5.3) + '@angular-devkit/build-webpack': 0.1703.3(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1)) + '@angular-devkit/core': 17.3.3(chokidar@3.5.3) + '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@babel/core': 7.24.0 + '@babel/generator': 7.23.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@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-runtime': 7.24.0(@babel/core@7.24.0) + '@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.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)) + ansi-colors: 4.1.3 + autoprefixer: 10.4.18(postcss@8.4.35) + babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1)) + babel-plugin-istanbul: 6.1.1 + browserslist: 4.23.0 + copy-webpack-plugin: 11.0.0(webpack@5.90.3(esbuild@0.20.1)) + critters: 0.0.22 + css-loader: 6.10.0(webpack@5.90.3(esbuild@0.20.1)) + esbuild-wasm: 0.20.1 + fast-glob: 3.3.2 + http-proxy-middleware: 2.0.6(@types/express@4.17.17) + https-proxy-agent: 7.0.4 + inquirer: 9.2.15 + jsonc-parser: 3.2.1 + karma-source-map-support: 1.4.0 + less: 4.2.0 + less-loader: 11.1.0(less@4.2.0)(webpack@5.90.3(esbuild@0.20.1)) + license-webpack-plugin: 4.0.2(webpack@5.90.3(esbuild@0.20.1)) + loader-utils: 3.2.1 + magic-string: 0.30.8 + mini-css-extract-plugin: 2.8.1(webpack@5.90.3(esbuild@0.20.1)) + mrmime: 2.0.0 + 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.3.3)(webpack@5.90.3(esbuild@0.20.1)) + resolve-url-loader: 5.0.0 + rxjs: 7.8.1 + sass: 1.71.1 + sass-loader: 14.1.1(sass@1.71.1)(webpack@5.90.3(esbuild@0.20.1)) + semver: 7.6.0 + source-map-loader: 5.0.0(webpack@5.90.3(esbuild@0.20.1)) + source-map-support: 0.5.21 + terser: 5.29.1 + tree-kill: 1.2.2 + tslib: 2.6.2 + typescript: 5.3.3 + undici: 6.7.1 + vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + watchpack: 2.4.0 + webpack: 5.90.3(esbuild@0.20.1) + webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) + webpack-dev-server: 4.15.1(webpack@5.90.3(esbuild@0.20.1)) + webpack-merge: 5.10.0 + webpack-subresource-integrity: 5.1.0(webpack@5.90.3(esbuild@0.20.1)) + optionalDependencies: + '@angular/localize': 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + esbuild: 0.20.1 + jest: 29.7.0(@types/node@20.12.7) + jest-environment-jsdom: 29.7.0 + karma: 6.4.3 + ng-packagr: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) + tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + transitivePeerDependencies: + - '@rspack/core' + - '@swc/core' + - '@types/express' + - '@types/node' + - bufferutil + - chokidar + - debug + - html-webpack-plugin + - lightningcss + - node-sass + - sass-embedded + - stylus + - sugarss + - supports-color + - uglify-js + - utf-8-validate + - webpack-cli + '@angular-devkit/build-webpack@0.1703.3(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1))': dependencies: '@angular-devkit/architect': 0.1703.3(chokidar@3.5.3) @@ -19335,12 +19429,12 @@ snapshots: kew: 0.7.0 plugin-error: 0.1.2 - gulp-postcss@10.0.0(jiti@1.20.0)(postcss@8.4.38): + gulp-postcss@10.0.0(postcss@8.4.38): dependencies: fancy-log: 2.0.0 plugin-error: 2.0.1 postcss: 8.4.38 - postcss-load-config: 5.0.2(jiti@1.20.0)(postcss@8.4.38) + postcss-load-config: 5.0.2(postcss@8.4.38) vinyl-sourcemaps-apply: 0.2.1 transitivePeerDependencies: - jiti @@ -20159,6 +20253,26 @@ snapshots: - babel-plugin-macros - supports-color + jest-cli@29.7.0(@types/node@20.12.7): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + jest-cli@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)): dependencies: '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) @@ -20545,6 +20659,19 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 + jest@29.7.0(@types/node@20.12.7): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + '@jest/types': 29.6.3 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.12.7) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)): dependencies: '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) @@ -21485,6 +21612,41 @@ snapshots: tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) transitivePeerDependencies: - supports-color + optional: true + + ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3): + dependencies: + '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.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 + ajv: 8.12.0 + ansi-colors: 4.1.3 + browserslist: 4.23.0 + cacache: 18.0.0 + chokidar: 3.5.3 + commander: 12.0.0 + convert-source-map: 2.0.0 + dependency-graph: 1.0.0 + esbuild-wasm: 0.20.1 + fast-glob: 3.3.2 + find-cache-dir: 3.3.2 + injection-js: 2.4.0 + jsonc-parser: 3.2.1 + less: 4.2.0 + ora: 5.4.1 + piscina: 4.4.0 + postcss: 8.4.38 + rxjs: 7.8.1 + sass: 1.74.1 + tslib: 2.6.2 + typescript: 5.3.3 + optionalDependencies: + esbuild: 0.20.1 + rollup: 4.13.0 + tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + transitivePeerDependencies: + - supports-color ngx-highlightjs@10.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1): dependencies: @@ -22192,12 +22354,11 @@ snapshots: ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) optional: true - postcss-load-config@5.0.2(jiti@1.20.0)(postcss@8.4.38): + postcss-load-config@5.0.2(postcss@8.4.38): dependencies: lilconfig: 3.0.0 yaml: 2.3.4 optionalDependencies: - jiti: 1.20.0 postcss: 8.4.38 postcss-loader@8.1.1(postcss@8.4.35)(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1)): @@ -24735,6 +24896,15 @@ snapshots: schema-utils: 4.0.1 webpack: 5.90.3(esbuild@0.20.1) + webpack-dev-middleware@5.3.3(webpack@5.91.0): + dependencies: + colorette: 2.0.20 + memfs: 3.5.1 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.0.1 + webpack: 5.91.0 + webpack-dev-middleware@6.1.2(webpack@5.90.3(esbuild@0.20.1)): dependencies: colorette: 2.0.20 @@ -24785,6 +24955,46 @@ snapshots: - supports-color - utf-8-validate + webpack-dev-server@4.15.1(webpack@5.91.0): + dependencies: + '@types/bonjour': 3.5.10 + '@types/connect-history-api-fallback': 1.5.0 + '@types/express': 4.17.17 + '@types/serve-index': 1.9.1 + '@types/serve-static': 1.15.1 + '@types/sockjs': 0.3.33 + '@types/ws': 8.5.5 + ansi-html-community: 0.0.8 + bonjour-service: 1.1.1 + chokidar: 3.5.3 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.18.2 + graceful-fs: 4.2.11 + html-entities: 2.3.3 + http-proxy-middleware: 2.0.6(@types/express@4.17.17) + ipaddr.js: 2.0.1 + launch-editor: 2.6.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.0.1 + selfsigned: 2.1.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack-dev-middleware: 5.3.3(webpack@5.91.0) + ws: 8.16.0 + optionalDependencies: + webpack: 5.91.0 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1 From a4548bec7924e1cd4d134180a31e2b6cfc83d034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliz=C3=A9=20Debray?= Date: Tue, 4 Jun 2024 14:09:23 +0200 Subject: [PATCH 3/6] Update pnpm-lock.yaml --- pnpm-lock.yaml | 4665 ++++++++++++++++++++++++------------------------ 1 file changed, 2341 insertions(+), 2324 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2d33e9dbd2..9c9822c239 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -50,48 +50,48 @@ importers: packages/components: dependencies: '@floating-ui/dom': - specifier: 1.6.3 - version: 1.6.3 + specifier: 1.6.5 + version: 1.6.5 '@oddbird/popover-polyfill': specifier: 0.3.7 version: 0.3.7 '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist ally.js: specifier: 1.4.1 version: 1.4.1 long-press-event: - specifier: 2.4.6 - version: 2.4.6 + specifier: 2.5.0 + version: 2.5.0 devDependencies: '@percy/cli': - specifier: 1.28.2 - version: 1.28.2 + specifier: 1.28.6 + version: 1.28.6 '@percy/cypress': specifier: 3.1.2 - version: 3.1.2(cypress@13.7.2) + version: 3.1.2(cypress@13.9.0) '@stencil-community/eslint-plugin': specifier: 0.7.2 version: 0.7.2(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3))(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.3.3))(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0)(typescript@5.3.3) '@stencil/angular-output-target': specifier: 0.8.4 - version: 0.8.4(@stencil/core@4.17.2) + version: 0.8.4(@stencil/core@4.18.0) '@stencil/core': - specifier: 4.17.2 - version: 4.17.2 + specifier: 4.18.0 + version: 4.18.0 '@stencil/react-output-target': specifier: 0.5.3 - version: 0.5.3(@stencil/core@4.17.2) + version: 0.5.3(@stencil/core@4.18.0) '@stencil/sass': - specifier: 3.0.11 - version: 3.0.11(@stencil/core@4.17.2) + specifier: 3.0.12 + version: 3.0.12(@stencil/core@4.18.0) '@types/jest': specifier: 29.5.12 version: 29.5.12 '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 '@typescript-eslint/eslint-plugin': specifier: 5.62.0 version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3) @@ -102,14 +102,14 @@ importers: specifier: 5.3.3 version: 5.3.3(@popperjs/core@2.11.8) cypress: - specifier: 13.7.2 - version: 13.7.2 + specifier: 13.9.0 + version: 13.9.0 cypress-axe: specifier: 1.5.0 - version: 1.5.0(axe-core@4.7.0)(cypress@13.7.2) + version: 1.5.0(axe-core@4.7.0)(cypress@13.9.0) cypress-storybook: - specifier: 0.5.1 - version: 0.5.1(cypress@13.7.2) + specifier: 1.0.0 + version: 1.0.0(cypress@13.9.0) eslint: specifier: 8.57.0 version: 8.57.0 @@ -117,17 +117,17 @@ importers: specifier: 7.34.1 version: 7.34.1(eslint@8.57.0) rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 rollup-plugin-postcss: specifier: 4.0.2 - version: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + version: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) sass: - specifier: 1.74.1 - version: 1.74.1 + specifier: 1.77.1 + version: 1.77.1 ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) + version: 29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)))(typescript@5.3.3) typescript: specifier: 5.3.3 version: 5.3.3 @@ -135,34 +135,34 @@ importers: packages/components-angular: dependencies: '@angular/animations': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/common': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/compiler': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/core': - specifier: 17.3.3 - version: 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + specifier: 17.3.8 + version: 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) '@angular/forms': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: 17.3.3 - version: 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/platform-browser-dynamic': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) '@angular/router': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@swisspost/design-system-components': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../components '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist rxjs: specifier: 7.8.1 @@ -171,42 +171,42 @@ importers: specifier: 2.6.2 version: 2.6.2 zone.js: - specifier: 0.14.4 - version: 0.14.4 + specifier: 0.14.5 + version: 0.14.5 devDependencies: '@angular-devkit/build-angular': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3) + specifier: 17.3.7 + version: 17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@types/express@4.17.17)(@types/node@20.14.0)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.0))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3) '@angular-eslint/builder': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/eslint-plugin': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/eslint-plugin-template': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/template-parser': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular/cli': - specifier: 17.3.3 - version: 17.3.3(chokidar@3.5.3) + specifier: 17.3.7 + version: 17.3.7(chokidar@3.5.3) '@angular/compiler-cli': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + specifier: 17.3.8 + version: 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) '@cypress/schematic': specifier: 2.5.1 - version: 2.5.1(@angular/cli@17.3.3(chokidar@3.5.3))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + version: 2.5.1(@angular/cli@17.3.7(chokidar@3.5.3))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@typescript-eslint/eslint-plugin': - specifier: 7.5.0 - version: 7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3) + specifier: 7.8.0 + version: 7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3) '@typescript-eslint/parser': - specifier: 7.5.0 - version: 7.5.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 7.8.0 + version: 7.8.0(eslint@8.57.0)(typescript@5.3.3) cypress: - specifier: 13.7.2 - version: 13.7.2 + specifier: 13.9.0 + version: 13.9.0 eslint: specifier: 8.57.0 version: 8.57.0 @@ -227,7 +227,7 @@ importers: version: 2.1.0(jasmine-core@5.1.2)(karma-jasmine@5.1.0(karma@6.4.3))(karma@6.4.3) ng-packagr: specifier: 17.3.0 - version: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) + version: 17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) typescript: specifier: 5.3.3 version: 5.3.3 @@ -236,34 +236,33 @@ importers: dependencies: '@angular/common': specifier: ^16.0.0 || ^17.0.0 - version: 17.2.3(@angular/core@17.2.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + version: 17.2.3(@angular/core@17.2.3(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/core': specifier: ^16.0.0 || ^17.0.0 - version: 17.2.3(rxjs@7.8.1)(zone.js@0.14.4) + version: 17.2.3(rxjs@7.8.1)(zone.js@0.14.5) + '@swisspost/design-system-components': + specifier: workspace:7.1.0 + version: link:../../../components tslib: specifier: 2.6.2 version: 2.6.2 - devDependencies: - '@swisspost/design-system-components': - specifier: workspace:7.0.0 - version: link:../../../components publishDirectory: ../../dist/components packages/components-react: dependencies: '@swisspost/design-system-components': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../components devDependencies: '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 '@types/react': - specifier: 18.2.74 - version: 18.2.74 + specifier: 18.3.2 + version: 18.3.2 '@types/react-dom': - specifier: 18.2.24 - version: 18.2.24 + specifier: 18.3.0 + version: 18.3.0 '@typescript-eslint/eslint-plugin': specifier: 6.21.0 version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5) @@ -289,14 +288,14 @@ importers: specifier: 7.34.1 version: 7.34.1(eslint@8.57.0) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 typescript: specifier: '*' version: 4.9.5 @@ -304,68 +303,68 @@ importers: packages/demo: dependencies: '@angular/animations': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/cdk': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/common': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/compiler': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/core': - specifier: 17.3.3 - version: 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + specifier: 17.3.8 + version: 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) '@angular/forms': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@angular/localize': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + specifier: 17.3.8 + version: 17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) '@angular/platform-browser': - specifier: 17.3.3 - version: 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/platform-browser-dynamic': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) '@angular/router': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@ng-bootstrap/ng-bootstrap': specifier: 16.0.0 - version: 16.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/forms@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@popperjs/core@2.11.8)(rxjs@7.8.1) + version: 16.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/forms@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@popperjs/core@2.11.8)(rxjs@7.8.1) '@popperjs/core': specifier: 2.11.8 version: 2.11.8 '@swimlane/ngx-datatable': specifier: 20.1.0 - version: 20.1.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + version: 20.1.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@swisspost/design-system-intranet-header': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../intranet-header-workspace/dist/intranet-header '@swisspost/design-system-migrations': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../migrations '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist bootstrap: specifier: 5.3.3 version: 5.3.3(@popperjs/core@2.11.8) core-js: - specifier: 3.36.1 - version: 3.36.1 + specifier: 3.37.0 + version: 3.37.0 highlight.js: specifier: 11.9.0 version: 11.9.0 ngx-highlightjs: specifier: 10.0.0 - version: 10.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + version: 10.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) ngx-toastr: specifier: 18.0.0 - version: 18.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + version: 18.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) prettier: specifier: 2.8.8 version: 2.8.8 @@ -376,36 +375,36 @@ importers: specifier: 2.6.2 version: 2.6.2 zone.js: - specifier: 0.14.4 - version: 0.14.4 + specifier: 0.14.5 + version: 0.14.5 devDependencies: '@angular-devkit/build-angular': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) + specifier: 17.3.7 + version: 17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) '@angular-eslint/builder': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/eslint-plugin': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/eslint-plugin-template': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/template-parser': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular/cli': - specifier: 17.3.3 - version: 17.3.3(chokidar@3.5.3) + specifier: 17.3.7 + version: 17.3.7(chokidar@3.5.3) '@angular/compiler-cli': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + specifier: 17.3.8 + version: 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) '@angular/elements': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/language-service': - specifier: 17.3.3 - version: 17.3.3 + specifier: 17.3.8 + version: 17.3.8 '@types/jasmine': specifier: 5.1.4 version: 5.1.4 @@ -455,11 +454,11 @@ importers: specifier: 4.0.2 version: 4.0.2(webpack@5.91.0) rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 sass: - specifier: 1.74.1 - version: 1.74.1 + specifier: 1.77.1 + version: 1.77.1 sockjs: specifier: 0.3.24 version: 0.3.24 @@ -470,8 +469,8 @@ importers: specifier: 5.3.3 version: 5.3.3 undici-types: - specifier: 6.15.0 - version: 6.15.0 + specifier: 6.16.1 + version: 6.16.1 webpack: specifier: 5.91.0 version: 5.91.0 @@ -479,19 +478,19 @@ importers: packages/documentation: dependencies: '@swisspost/design-system-components': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../components '@swisspost/design-system-components-react': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../components-react '@swisspost/design-system-icons': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../icons '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist '@swisspost/internet-header': - specifier: workspace:1.13.9 + specifier: workspace:1.13.10 version: link:../internet-header bootstrap: specifier: 5.3.3 @@ -499,109 +498,106 @@ importers: devDependencies: '@geometricpanda/storybook-addon-badges': specifier: 2.0.2 - version: 2.0.2(@storybook/blocks@8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/components@8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/core-events@8.0.8)(@storybook/manager-api@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/preview-api@8.0.8)(@storybook/theming@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/types@8.0.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.2(@storybook/blocks@8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/components@8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/core-events@8.0.10)(@storybook/manager-api@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/preview-api@8.0.10)(@storybook/theming@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/types@8.0.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@lit/task': specifier: 1.0.0 version: 1.0.0 '@open-wc/lit-helpers': specifier: 0.7.0 - version: 0.7.0(lit@3.1.2) + version: 0.7.0(lit@3.1.3) '@percy/cli': - specifier: 1.28.2 - version: 1.28.2 + specifier: 1.28.6 + version: 1.28.6 '@percy/cypress': specifier: 3.1.2 - version: 3.1.2(cypress@13.7.2) + version: 3.1.2(cypress@13.9.0) '@pxtrn/storybook-addon-docs-stencil': specifier: 6.4.1 - version: 6.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-designs': - specifier: 7.0.9 - version: 7.0.9(@storybook/addon-docs@8.0.8(encoding@0.1.13))(@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/components@8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/manager-api@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/preview-api@8.0.8)(@storybook/theming@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 6.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-docs': - specifier: 8.0.8 - version: 8.0.8(encoding@0.1.13) + specifier: 8.0.10 + version: 8.0.10(encoding@0.1.13) '@storybook/addon-essentials': - specifier: 8.0.8 - version: 8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-links': - specifier: 8.0.8 - version: 8.0.8(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(react@18.3.1) '@storybook/addons': specifier: 7.6.17 - version: 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/blocks': - specifier: 8.0.8 - version: 8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/components': - specifier: 8.0.8 - version: 8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': - specifier: 8.0.8 - version: 8.0.8 + specifier: 8.0.10 + version: 8.0.10 '@storybook/manager-api': - specifier: 8.0.8 - version: 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': - specifier: 8.0.8 - version: 8.0.8 + specifier: 8.0.10 + version: 8.0.10 '@storybook/testing-library': specifier: 0.2.2 version: 0.2.2 '@storybook/theming': - specifier: 8.0.8 - version: 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': - specifier: 8.0.5 - version: 8.0.5 + specifier: 8.0.10 + version: 8.0.10 '@storybook/web-components': - specifier: 8.0.8 - version: 8.0.8(encoding@0.1.13)(lit@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(encoding@0.1.13)(lit@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/web-components-vite': - specifier: 8.0.8 - version: 8.0.8(encoding@0.1.13)(lit@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1)) + specifier: 8.0.10 + version: 8.0.10(encoding@0.1.13)(lit@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.1)(terser@5.29.1)) '@swisspost/design-system-components-angular': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../components-angular/dist/components '@swisspost/design-system-intranet-header': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../intranet-header-workspace/dist/intranet-header '@types/css-modules': specifier: 1.0.5 version: 1.0.5 '@types/mdx': - specifier: 2.0.12 - version: 2.0.12 + specifier: 2.0.13 + version: 2.0.13 '@types/react': - specifier: 18.2.74 - version: 18.2.74 + specifier: 18.3.2 + version: 18.3.2 '@types/react-syntax-highlighter': - specifier: 15.5.11 - version: 15.5.11 + specifier: 15.5.13 + version: 15.5.13 cypress: - specifier: 13.7.2 - version: 13.7.2 + specifier: 13.9.0 + version: 13.9.0 cypress-axe: specifier: 1.5.0 - version: 1.5.0(axe-core@4.7.0)(cypress@13.7.2) + version: 1.5.0(axe-core@4.7.0)(cypress@13.9.0) lit: - specifier: 3.1.2 - version: 3.1.2 + specifier: 3.1.3 + version: 3.1.3 lit-html: - specifier: 3.1.2 - version: 3.1.2 + specifier: 3.1.3 + version: 3.1.3 prettier: specifier: 2.8.8 version: 2.8.8 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-syntax-highlighter: specifier: 15.5.0 - version: 15.5.0(react@18.2.0) + version: 15.5.0(react@18.3.1) rehype-autolink-headings: specifier: ^7.1.0 version: 7.1.0 @@ -609,14 +605,14 @@ importers: specifier: 7.0.1 version: 7.0.1 rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 sass: - specifier: 1.74.1 - version: 1.74.1 + specifier: 1.77.1 + version: 1.77.1 storybook: - specifier: 8.0.8 - version: 8.0.8(@babel/preset-env@7.24.0(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 8.0.10 + version: 8.0.10(@babel/preset-env@7.24.0(@babel/core@7.24.5))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) typescript: specifier: 5.3.3 version: 5.3.3 @@ -633,8 +629,8 @@ importers: specifier: 4.13.4 version: 4.13.4 '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 '@types/node-fetch': specifier: 2.6.11 version: 2.6.11 @@ -649,7 +645,7 @@ importers: version: 7.0.4 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) mock-fs: specifier: 5.2.0 version: 5.2.0 @@ -657,14 +653,14 @@ importers: specifier: 2.7.0 version: 2.7.0(encoding@0.1.13) svgo: - specifier: 3.2.0 - version: 3.2.0 + specifier: 3.3.2 + version: 3.3.2 ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)))(typescript@5.2.2) + version: 29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)))(typescript@5.2.2) ts-node: specifier: 10.9.2 - version: 10.9.2(@types/node@20.12.7)(typescript@5.2.2) + version: 10.9.2(@types/node@20.14.0)(typescript@5.2.2) typescript: specifier: 5.2.2 version: 5.2.2 @@ -672,20 +668,17 @@ importers: packages/internet-header: dependencies: '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist body-scroll-lock: specifier: 4.0.0-beta.0 version: 4.0.0-beta.0 iframe-resizer: - specifier: 4.3.9 - version: 4.3.9 + specifier: 4.3.11 + version: 4.3.11 jquery: specifier: 3.7.1 version: 3.7.1 - tabbable: - specifier: 6.2.0 - version: 6.2.0 throttle-debounce: specifier: 5.0.0 version: 5.0.0 @@ -694,26 +687,26 @@ importers: version: 1.1.12 devDependencies: '@babel/core': - specifier: 7.24.4 - version: 7.24.4 + specifier: 7.24.5 + version: 7.24.5 '@percy/cli': - specifier: 1.28.2 - version: 1.28.2 + specifier: 1.28.6 + version: 1.28.6 '@percy/cypress': specifier: 3.1.2 - version: 3.1.2(cypress@13.7.2) + version: 3.1.2(cypress@13.9.0) '@stencil-community/eslint-plugin': specifier: 0.7.2 - version: 0.7.2(@typescript-eslint/eslint-plugin@7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5))(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5))(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0)(typescript@4.9.5) + version: 0.7.2(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5))(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5))(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0)(typescript@4.9.5) '@stencil/core': - specifier: 4.14.0 - version: 4.14.0 + specifier: 4.18.0 + version: 4.18.0 '@stencil/sass': - specifier: 3.0.11 - version: 3.0.11(@stencil/core@4.14.0) + specifier: 3.0.12 + version: 3.0.12(@stencil/core@4.18.0) '@stencil/store': - specifier: 2.0.15 - version: 2.0.15(@stencil/core@4.14.0) + specifier: 2.0.16 + version: 2.0.16(@stencil/core@4.18.0) '@types/body-scroll-lock': specifier: 3.1.2 version: 3.1.2 @@ -724,47 +717,50 @@ importers: specifier: 29.5.12 version: 29.5.12 '@types/jquery': - specifier: 3.5.29 - version: 3.5.29 + specifier: 3.5.30 + version: 3.5.30 '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 '@types/throttle-debounce': specifier: 5.0.2 version: 5.0.2 babel-loader: specifier: 9.1.3 - version: 9.1.3(@babel/core@7.24.4)(webpack@5.91.0) + version: 9.1.3(@babel/core@7.24.5)(webpack@5.91.0) bootstrap: specifier: 5.3.3 version: 5.3.3(@popperjs/core@2.11.8) cypress: - specifier: 13.7.2 - version: 13.7.2 + specifier: 13.9.0 + version: 13.9.0 cypress-each: specifier: 1.14.0 version: 1.14.0 cypress-storybook: - specifier: 0.5.1 - version: 0.5.1(cypress@13.7.2) + specifier: 1.0.0 + version: 1.0.0(cypress@13.9.0) eslint: specifier: 8.57.0 version: 8.57.0 eslint-plugin-react: specifier: 7.34.1 version: 7.34.1(eslint@8.57.0) + focus-trap: + specifier: 7.5.4 + version: 7.5.4 globby: specifier: 14.0.1 version: 14.0.1 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0 rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 rollup-plugin-node-polyfills: specifier: 0.2.1 version: 0.2.1 @@ -775,14 +771,14 @@ importers: specifier: 5.12.0 version: 5.12.0(rollup@4.13.0) sass: - specifier: 1.74.1 - version: 1.74.1 + specifier: 1.77.1 + version: 1.77.1 start-server-and-test: specifier: 2.0.3 version: 2.0.3 ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -790,40 +786,40 @@ importers: packages/intranet-header-workspace: dependencies: '@angular/animations': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/common': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/compiler': - specifier: 17.3.3 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/core': - specifier: 17.3.3 - version: 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + specifier: 17.3.8 + version: 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) '@angular/forms': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@angular/localize': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + specifier: 17.3.8 + version: 17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) '@angular/platform-browser': - specifier: 17.3.3 - version: 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + specifier: 17.3.8 + version: 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@angular/platform-browser-dynamic': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) '@angular/router': - specifier: 17.3.3 - version: 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) + specifier: 17.3.8 + version: 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) '@ng-bootstrap/ng-bootstrap': specifier: 16.0.0 - version: 16.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/forms@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@popperjs/core@2.11.8)(rxjs@7.8.1) + version: 16.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/forms@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@popperjs/core@2.11.8)(rxjs@7.8.1) '@popperjs/core': specifier: 2.11.8 version: 2.11.8 '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist rxjs: specifier: 7.8.1 @@ -835,42 +831,42 @@ importers: specifier: 1.0.2 version: 1.0.2 zone.js: - specifier: 0.14.4 - version: 0.14.4 + specifier: 0.14.5 + version: 0.14.5 devDependencies: '@angular-devkit/build-angular': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3) + specifier: 17.3.7 + version: 17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@types/express@4.17.17)(@types/node@20.14.0)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.0))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3) '@angular-eslint/builder': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/eslint-plugin': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/eslint-plugin-template': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular-eslint/template-parser': - specifier: 17.3.0 - version: 17.3.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 17.4.0 + version: 17.4.0(eslint@8.57.0)(typescript@5.3.3) '@angular/cli': - specifier: 17.3.3 - version: 17.3.3(chokidar@3.5.3) + specifier: 17.3.7 + version: 17.3.7(chokidar@3.5.3) '@angular/compiler-cli': - specifier: 17.3.3 - version: 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + specifier: 17.3.8 + version: 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) '@types/jasmine': specifier: 5.1.4 version: 5.1.4 '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 '@typescript-eslint/eslint-plugin': - specifier: 7.5.0 - version: 7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3) + specifier: 7.8.0 + version: 7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3) '@typescript-eslint/parser': - specifier: 7.5.0 - version: 7.5.0(eslint@8.57.0)(typescript@5.3.3) + specifier: 7.8.0 + version: 7.8.0(eslint@8.57.0)(typescript@5.3.3) eslint: specifier: 8.57.0 version: 8.57.0 @@ -894,10 +890,10 @@ importers: version: 2.1.0(jasmine-core@5.1.2)(karma-jasmine@5.1.0(karma@6.4.3))(karma@6.4.3) ng-packagr: specifier: 17.3.0 - version: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) + version: 17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 typescript: specifier: 5.3.3 version: 5.3.3 @@ -906,26 +902,26 @@ importers: dependencies: '@angular/common': specifier: ^16.0.0 || ^17.0.0 - version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) + version: 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) '@angular/core': specifier: ^16.0.0 || ^17.0.0 - version: 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + version: 17.3.3(rxjs@7.8.1)(zone.js@0.14.5) '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../../../styles/dist tslib: specifier: 2.6.2 version: 2.6.2 devDependencies: '@swisspost/design-system-intranet-header-workspace': - specifier: workspace:3.0.12 + specifier: workspace:3.0.13 version: link:../.. publishDirectory: ../../dist/intranet-header packages/intranet-header-workspace/projects/intranet-header-showcase: dependencies: '@swisspost/design-system-intranet-header': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../../dist/intranet-header packages/migrations: @@ -938,7 +934,7 @@ importers: version: 15.0.4(chokidar@3.5.3) '@angular/core': specifier: '=15.0.4' - version: 15.0.4(rxjs@7.8.1)(zone.js@0.14.4) + version: 15.0.4(rxjs@7.8.1)(zone.js@0.14.5) cheerio: specifier: 1.0.0-rc.12 version: 1.0.0-rc.12 @@ -950,29 +946,29 @@ importers: version: 4.9.5 devDependencies: '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 copyfiles: specifier: 2.4.1 version: 2.4.1 rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 packages/nextjs-integration: dependencies: '@swisspost/design-system-components-react': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../components-react '@swisspost/design-system-styles': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../styles/dist '@swisspost/internet-header': - specifier: workspace:1.13.9 + specifier: workspace:1.13.10 version: link:../internet-header next: - specifier: 14.1.4 - version: 14.1.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.74.1) + specifier: 14.2.3 + version: 14.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.1) react: specifier: ^18 version: 18.2.0 @@ -981,8 +977,8 @@ importers: version: 18.2.0(react@18.2.0) devDependencies: '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 '@types/react': specifier: ^18 version: 18.2.53 @@ -996,17 +992,17 @@ importers: specifier: ^8 version: 8.56.0 eslint-config-next: - specifier: 14.1.4 - version: 14.1.4(eslint@8.56.0)(typescript@5.2.2) + specifier: 14.2.3 + version: 14.2.3(eslint@8.56.0)(typescript@5.2.2) postcss: specifier: ^8 version: 8.4.33 sass: - specifier: 1.74.1 - version: 1.74.1 + specifier: 1.77.1 + version: 1.77.1 tailwindcss: specifier: ^3.3.0 - version: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + version: 3.4.1(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) typescript: specifier: ^5 version: 5.2.2 @@ -1015,7 +1011,7 @@ importers: dependencies: '@ng-bootstrap/ng-bootstrap': specifier: ^15.0.0 || ^16.0.0 - version: 16.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/forms@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@popperjs/core@2.11.8)(rxjs@7.8.1) + version: 16.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/forms@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@popperjs/core@2.11.8)(rxjs@7.8.1) '@popperjs/core': specifier: 2.11.8 version: 2.11.8 @@ -1024,11 +1020,11 @@ importers: version: 5.3.3(@popperjs/core@2.11.8) devDependencies: '@swisspost/design-system-icons': - specifier: workspace:7.0.0 + specifier: workspace:7.1.0 version: link:../icons '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.14.0 + version: 20.14.0 autoprefixer: specifier: 10.4.19 version: 10.4.19(postcss@8.4.38) @@ -1036,8 +1032,8 @@ importers: specifier: 2.4.1 version: 2.4.1 glob: - specifier: 10.3.12 - version: 10.3.12 + specifier: 10.3.15 + version: 10.3.15 gulp: specifier: 4.0.2 version: 4.0.2 @@ -1052,7 +1048,7 @@ importers: version: 5.1.0 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) postcss: specifier: 8.4.38 version: 8.4.38 @@ -1063,23 +1059,23 @@ importers: specifier: 3.2.5 version: 3.2.5 rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 sass: - specifier: 1.74.1 - version: 1.74.1 + specifier: 1.77.1 + version: 1.77.1 stylelint: - specifier: 16.3.1 - version: 16.3.1(typescript@5.3.3) + specifier: 16.5.0 + version: 16.5.0(typescript@5.3.3) stylelint-config-sass-guidelines: specifier: 11.1.0 - version: 11.1.0(postcss@8.4.38)(stylelint@16.3.1(typescript@5.3.3)) + version: 11.1.0(postcss@8.4.38)(stylelint@16.5.0(typescript@5.3.3)) stylelint-prettier: specifier: 5.0.0 - version: 5.0.0(prettier@3.2.5)(stylelint@16.3.1(typescript@5.3.3)) + version: 5.0.0(prettier@3.2.5)(stylelint@16.5.0(typescript@5.3.3)) stylelint-scss: - specifier: 6.2.1 - version: 6.2.1(stylelint@16.3.1(typescript@5.3.3)) + specifier: 6.3.0 + version: 6.3.0(stylelint@16.5.0(typescript@5.3.3)) typescript: specifier: 5.3.3 version: 5.3.3 @@ -1095,20 +1091,16 @@ packages: resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} - '@ampproject/remapping@2.2.1': - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: '>=6.0.0'} - '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@angular-devkit/architect@0.1703.3': - resolution: {integrity: sha512-BKbdigCjmspqxOxSIQuWgPZzpyuKqZoTBDh0jDeLcAmvPsuxCgIWbsExI4OQ0CyusnQ+XT0IT39q8B9rvF56cg==} + '@angular-devkit/architect@0.1703.7': + resolution: {integrity: sha512-SwXbdsZqEE3JtvujCLChAii+FA20d1931VDjDYffrGWdQEViTBAr4NKtDr/kOv8KkgiL3fhGibPnRNUHTeAMtg==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-devkit/build-angular@17.3.3': - resolution: {integrity: sha512-E/6Z1MIMhEB1I2sN+Pw4/zinwAFj4vLDh6dEuj856WWEPndgPiUB6fGX4EbCTsyIUzboXI5ysdNyt2Eq56bllA==} + '@angular-devkit/build-angular@17.3.7': + resolution: {integrity: sha512-AsV80kiFMIPIhm3uzJgOHDj4u6JteUkZedPTKAFFFJC7CTat1luW5qx306vfF7wj62aMvUl5g9HFWaeLghTQGA==} 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 @@ -1148,8 +1140,8 @@ packages: tailwindcss: optional: true - '@angular-devkit/build-webpack@0.1703.3': - resolution: {integrity: sha512-d0JjE8MaGVNphlJfeP1OZKhNT4wCXkEZKdSdwE0+W+vDHNUuZiUBB1czO48sb7T4xBrdjRWlV/9CzMNJ7n3ydA==} + '@angular-devkit/build-webpack@0.1703.7': + resolution: {integrity: sha512-gpt2Ia5I1gmdp3hdbtB7tkZTba5qWmKeVhlCYswa/LvbceKmkjedoeNRAoyr1UKM9GeGqt6Xl1B2eHzCH+ykrg==} 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 @@ -1164,8 +1156,8 @@ packages: chokidar: optional: true - '@angular-devkit/core@17.3.3': - resolution: {integrity: sha512-J22Sh3M7rj8Ar3iEs20ko5wgC3DE7vWfYZNdimt2IJiS4J7BEX8R3Awf+TRt+6AN3NFm3/xe1Sz4yvDh3FvNFg==} + '@angular-devkit/core@17.3.7': + resolution: {integrity: sha512-qpZ7BShyqS/Jqld36E7kL02cyb2pjn1Az1p9439SbP8nsvJgYlsyjwYK2Kmcn/Wi+TZGIKxkqxgBBw9vqGgeJw==} 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 @@ -1177,58 +1169,58 @@ packages: resolution: {integrity: sha512-/gXiLFS0+xFdx6wPoBpe/c6/K9I5edMpaASqPf4XheKtrsSvL+qTlIi3nsbfItzOiDXbaBmlbxGfkMHz/yg0Ig==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-devkit/schematics@17.3.3': - resolution: {integrity: sha512-SABqTtj2im4PJhQjNaAsSypbNkpZFW8YozJ3P748tlh5a9XoHpgiqXv5JhRbyKElLDAyk5i9fe2++JmSudPG/Q==} + '@angular-devkit/schematics@17.3.7': + resolution: {integrity: sha512-d7NKSwstdxYLYmPsbcYO3GOFNfXxXwOyHxSqDa1JNKoSzMdbLj4tvlCpfXw0ThNM7gioMx8aLBaaH1ac+yk06Q==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-eslint/builder@17.3.0': - resolution: {integrity: sha512-JXSZE7+KA3UGU6jwc0v9lwOIMptosrvLIOXGlXqrhHWEXfkfu3ENPq1Lm3K8jLndQ57XueEhC+Nab/AuUiWA/Q==} + '@angular-eslint/builder@17.4.0': + resolution: {integrity: sha512-+3ujbi+ar/iqAAwnJ2bTdWzQpHh9iVEPgjHUOeQhrEM8gcaOLnZXMlUyZL7D+NlXg7aDoEIxETb73dgbIBm55A==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' - '@angular-eslint/bundled-angular-compiler@17.3.0': - resolution: {integrity: sha512-ejfNzRuBeHUV8m2fkgs+M809rj5STuCuQo4fdfc6ccQpzXDI6Ha7BKpTznWfg5g529q/wrkoGSGgFxU9Yc2/dQ==} + '@angular-eslint/bundled-angular-compiler@17.4.0': + resolution: {integrity: sha512-cYEJs4PO+QLDt1wfgWh9q8OjOphnoe1OTTFtMqm9lHl0AkBynPnFA6ghiiG5NaT03l7HXi2TQ23rLFlXl3JOBg==} - '@angular-eslint/eslint-plugin-template@17.3.0': - resolution: {integrity: sha512-9l/aRfpE9MCRVDWRb+rSB9Zei0paep1vqV6M/87VUnzBnzqeMRnVuPvQowilh2zweVSGKBF25Vp4HkwOL6ExDQ==} + '@angular-eslint/eslint-plugin-template@17.4.0': + resolution: {integrity: sha512-o1Vb7rt3TpPChVzaxswOKBDWRboMcpC4qUUyoHfeSYa7sDuQHMeIQlCS5QXuykR/RYnIQJSKd89FOd28nGmmRw==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' - '@angular-eslint/eslint-plugin@17.3.0': - resolution: {integrity: sha512-81cQbOEPoQupFX8WmpqZn+y8VA7JdVRGBtt+uJNKBXcJknTpPWdLBZRFlgVakmC24iEZ0Fint/N3NBBQI3mz2A==} + '@angular-eslint/eslint-plugin@17.4.0': + resolution: {integrity: sha512-E+/O83PXttQUACurGEskLDU+wboBqMMVqvo4T8C/iMcpLx+01M5UBzqpCmfz6ri609G96Au7uDbUEedU1hwqmQ==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' - '@angular-eslint/template-parser@17.3.0': - resolution: {integrity: sha512-m+UzAnWgtjeS0x6skSmR0eXltD/p7HZA+c8pPyAkiHQzkxE7ohhfyZc03yWGuYJvWQUqQAKKdO/nQop14TP0bg==} + '@angular-eslint/template-parser@17.4.0': + resolution: {integrity: sha512-vT/Tg8dl6Uy++MS9lPS0l37SynH3EaMcggDiTJqn15pIb4ePO65fafOIIKKYG+BN6R6iFe/g9mH/9nb8ohlzdQ==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' - '@angular-eslint/utils@17.3.0': - resolution: {integrity: sha512-PJT9pxWqpvI9OXO+7L5SIVhvMW+RFjeafC7PYjtvSbNFpz+kF644BiAcfMJ0YqBnkrw3JXt+RAX25CT4mXIoXw==} + '@angular-eslint/utils@17.4.0': + resolution: {integrity: sha512-lHgRXyT878fauDITygraICDM6RHLb51QAJ3gWNZLr7SXcywsZg5d3rxRPCjrCnjgdxNPU0fJ+VJZ5AMt5Ibn7w==} peerDependencies: eslint: ^7.20.0 || ^8.0.0 typescript: '*' - '@angular/animations@17.3.3': - resolution: {integrity: sha512-poLW3FHe5wkxmTIsQ3em2vq4obgQHyZJz6biF+4hCqQSNMbMBS0e5ZycAiJLkUD/WLc88lQZ20muRO7qjVuMLA==} + '@angular/animations@17.3.8': + resolution: {integrity: sha512-ywT3dH0yZeAlo+Vu/6RpRozxzTbu4Bwqky6RgNfk/UMoyXZ5UiFStszDqO/HAyBGGCDHagm1XJkgsNZcStWq8A==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/core': 17.3.3 + '@angular/core': 17.3.8 - '@angular/cdk@17.3.3': - resolution: {integrity: sha512-hfS9pwaNE6CTZqP3FBh9tZPbuf//bDqZ5IpMzscfDFrwX8ycxBiI3znH/rFSf9l1rL0OQGoqWWNVfJCT+RrukA==} + '@angular/cdk@17.3.8': + resolution: {integrity: sha512-9UQovtq1R3iGppBP6c1xgnokhG3LaUObpm6htMyuQ2v034WinemoeMdHbqs/OvyUbqOUttQI/9vz37TVB0DjXA==} peerDependencies: '@angular/common': ^17.0.0 || ^18.0.0 '@angular/core': ^17.0.0 || ^18.0.0 rxjs: ^6.5.3 || ^7.4.0 - '@angular/cli@17.3.3': - resolution: {integrity: sha512-veIGK2sRm0SfiLHeftx0W0xC3N8uxoqxXiSG57V6W2wIFN/fKm3aRq3sa8phz7vxUzoKGqyZh6hsT7ybkjgkGA==} + '@angular/cli@17.3.7': + resolution: {integrity: sha512-JgCav3sdRCoJHwLXxmF/EMzArYjwbqB+AGUW/xIR98oZET8QxCB985bOFUAm02SkAEUVcMJvjxec+WCaa60m/A==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true @@ -1246,19 +1238,26 @@ packages: '@angular/core': 17.3.3 rxjs: ^6.5.3 || ^7.4.0 - '@angular/compiler-cli@17.3.3': - resolution: {integrity: sha512-vM0lqwuXQZ912HbLnIuvUblvIz2WEUsU7a5Z2ieNey6famH4zxPH12vCbVwXgicB6GLHorhOfcWC5443wD2mJw==} + '@angular/common@17.3.8': + resolution: {integrity: sha512-HEhTibrsWmoKilyhvAFmqg4SH1hWBP3eV9Y689lmsxBQCTRAmRI2pMAoRKQ+dBcoYLE/FZhcmdHJUSl5jR7Isg==} + engines: {node: ^18.13.0 || >=20.9.0} + peerDependencies: + '@angular/core': 17.3.8 + rxjs: ^6.5.3 || ^7.4.0 + + '@angular/compiler-cli@17.3.8': + resolution: {integrity: sha512-/TsbCmk7QJUEEZnRdNzi6znsPfoDJuy6vHDqcwWVEcw7y6W7DjirSFmtT9u1QwrV67KM6kOh22+RvPdGM8sPmg==} engines: {node: ^18.13.0 || >=20.9.0} hasBin: true peerDependencies: - '@angular/compiler': 17.3.3 + '@angular/compiler': 17.3.8 typescript: '>=5.2 <5.5' - '@angular/compiler@17.3.3': - resolution: {integrity: sha512-ZNMRfagMxMjk1KW5H3ssCg5QL0J6ZW1JAZ1mrTXixqS7gbdwl60bTGE+EfuEwbjvovEYaj4l9cga47eMaxZTbQ==} + '@angular/compiler@17.3.8': + resolution: {integrity: sha512-7vZSh2Oa95lZdRR4MhE0icvZ7JUuYY+NSo3eTSOMZSlH5I9rtwQoSFqfoGW+35rXCzGFLOhQmZBbXkxDPDs97Q==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/core': 17.3.3 + '@angular/core': 17.3.8 peerDependenciesMeta: '@angular/core': optional: true @@ -1284,61 +1283,68 @@ packages: rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.14.0 - '@angular/elements@17.3.3': - resolution: {integrity: sha512-XE2T7KY5Qkxvsnh1jfyQr1eN2wUjKBaScpB3bG0YLIs5+5JetUzW+aAmHE/2JVLZOEhqXJy/EN0jPZODA5VDHQ==} + '@angular/core@17.3.8': + resolution: {integrity: sha512-+tUQ+B1yVvNbczzaWBCgJWWIgZ2z+GVJWu+UNOHHWzdqD8qpXjuIkDfnhyLNeGvvXgsqey4u6ApFf2SoFYLjuA==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/core': 17.3.3 rxjs: ^6.5.3 || ^7.4.0 + zone.js: ~0.14.0 - '@angular/forms@17.3.3': - resolution: {integrity: sha512-wqn+eAggbOZY91hr7oDjv5qdflszVOC9SZMcWJUoZTGn+8eoV6v6728GDFuDDwYkKQ9G9eQbX4IZmYoVw3TVjQ==} + '@angular/elements@17.3.8': + resolution: {integrity: sha512-weDuHQgLs5tuie8uTniRtiYP7k/nFSKyfjqPc3MC/tyBuQOtvokJ9MHJ5ZEW8MrNZqmme0mHknEFRK4CsjPErQ==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/common': 17.3.3 - '@angular/core': 17.3.3 - '@angular/platform-browser': 17.3.3 + '@angular/core': 17.3.8 + rxjs: ^6.5.3 || ^7.4.0 + + '@angular/forms@17.3.8': + resolution: {integrity: sha512-ZoPJMx3O1eKliK6oEUqtKJNqrLwwOLBC5x+zbCHrwJeBB3lbgWXrrnTrFvCXpp3QVERAboZTzZ3XBmHX1o6gmw==} + engines: {node: ^18.13.0 || >=20.9.0} + peerDependencies: + '@angular/common': 17.3.8 + '@angular/core': 17.3.8 + '@angular/platform-browser': 17.3.8 rxjs: ^6.5.3 || ^7.4.0 - '@angular/language-service@17.3.3': - resolution: {integrity: sha512-OtdWNY0Syg4UvA8j2IhQJeq/UjWHYbRiyUcZjGKPRzuqIPjUhsmMyuW3zpi7Pwx2CpBzZXcik1Ra2WZ0gbwigg==} + '@angular/language-service@17.3.8': + resolution: {integrity: sha512-Vyad/h0FSgLF17STiJujlOeulRq/PSmH+5sUtd3Zsw4jcy2C0QRr4FaP5s9ZidMMAnfMMFlc5Sh/0QEJV/dbJQ==} engines: {node: ^18.13.0 || >=20.9.0} - '@angular/localize@17.3.3': - resolution: {integrity: sha512-gahGKy0VBZ+KP6MUULGQMoi5SN3REwslaPvtomizzz9fdmqHfR8PPd1vOJSNm2IEVlvm1hv1dDRjPcR4DJwvaQ==} + '@angular/localize@17.3.8': + resolution: {integrity: sha512-2Ddv58fmCfow/pBvvOzkNIc/pBtZpu6Ow0em+6Hx8ln6wwZaFHEPhe6t5SaRG2GTXWUqAnsjWSdNLlAviXOxtg==} engines: {node: ^18.13.0 || >=20.9.0} hasBin: true peerDependencies: - '@angular/compiler': 17.3.3 - '@angular/compiler-cli': 17.3.3 + '@angular/compiler': 17.3.8 + '@angular/compiler-cli': 17.3.8 - '@angular/platform-browser-dynamic@17.3.3': - resolution: {integrity: sha512-jSgSNHRTXCIat20I+4tLm/e8qOvrIE3Zv7S/DtYZEiAth84uoznvo1kXnN+KREse2vP/WoNgSDKQ2JLzkwYXSQ==} + '@angular/platform-browser-dynamic@17.3.8': + resolution: {integrity: sha512-uL6FPh+Pr9xzIjyiv3p66jteq/CytHP1+m5jOsIKa1LUwTXx0a2pmOYcZxXpNkQGR9Ir/dlbrYmKlSP3QZf7uw==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/common': 17.3.3 - '@angular/compiler': 17.3.3 - '@angular/core': 17.3.3 - '@angular/platform-browser': 17.3.3 + '@angular/common': 17.3.8 + '@angular/compiler': 17.3.8 + '@angular/core': 17.3.8 + '@angular/platform-browser': 17.3.8 - '@angular/platform-browser@17.3.3': - resolution: {integrity: sha512-XFWjquD+Pr9VszRzrDlT6uaf57TsY9XhL9iHCNok6Op5DpVQpIAuw1vFt2t5ZoQ0gv+lY8mVWnxgqe3CgTdYxw==} + '@angular/platform-browser@17.3.8': + resolution: {integrity: sha512-UMGSV3TdJqMtf2xvhbW6fx8TKJLOoHQgFxohhy3y8GvxHBu+PUyrwhovb7r03bs+muY6u4ygGCMm7Mt1TFVwfQ==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/animations': 17.3.3 - '@angular/common': 17.3.3 - '@angular/core': 17.3.3 + '@angular/animations': 17.3.8 + '@angular/common': 17.3.8 + '@angular/core': 17.3.8 peerDependenciesMeta: '@angular/animations': optional: true - '@angular/router@17.3.3': - resolution: {integrity: sha512-kj42+TtwvET7MFqxB3pkKyob0VNmspASlv8Y29vSpzzaOHn8J1fDf6H+8opoIC+Gmvo5NqXUDwq7nxI5aQ0mUQ==} + '@angular/router@17.3.8': + resolution: {integrity: sha512-2JKTW1u1H+iNDfAmIjEiMJjQHfzb97TBk23/euIR0JuyGHjyywkrQ97HHiOEAJyy/Zpr0Vbem3HRqDqSfjTWvg==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: - '@angular/common': 17.3.3 - '@angular/core': 17.3.3 - '@angular/platform-browser': 17.3.3 + '@angular/common': 17.3.8 + '@angular/core': 17.3.8 + '@angular/platform-browser': 17.3.8 rxjs: ^6.5.3 || ^7.4.0 '@asamuzakjp/dom-selector@2.0.2': @@ -1352,14 +1358,14 @@ packages: resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} - '@babel/code-frame@7.23.5': - resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} - engines: {node: '>=6.9.0'} - '@babel/code-frame@7.24.2': resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.24.6': + resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.23.5': resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} engines: {node: '>=6.9.0'} @@ -1372,8 +1378,8 @@ packages: resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==} engines: {node: '>=6.9.0'} - '@babel/core@7.24.4': - resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} + '@babel/core@7.24.5': + resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} engines: {node: '>=6.9.0'} '@babel/generator@7.23.6': @@ -1384,6 +1390,10 @@ packages: resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.24.6': + resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -1422,14 +1432,26 @@ packages: resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} + '@babel/helper-environment-visitor@7.24.6': + resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==} + engines: {node: '>=6.9.0'} + '@babel/helper-function-name@7.23.0': resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} + '@babel/helper-function-name@7.24.6': + resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==} + engines: {node: '>=6.9.0'} + '@babel/helper-hoist-variables@7.22.5': resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} + '@babel/helper-hoist-variables@7.24.6': + resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==} + engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.23.0': resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} @@ -1438,18 +1460,24 @@ packages: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.24.6': + resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.23.3': resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.22.5': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + '@babel/helper-module-transforms@7.24.6': + resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 - '@babel/helper-plugin-utils@7.22.5': - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + '@babel/helper-optimise-call-expression@7.22.5': + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} '@babel/helper-plugin-utils@7.24.0': @@ -1472,6 +1500,10 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} + '@babel/helper-simple-access@7.24.6': + resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==} + engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} @@ -1480,14 +1512,26 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} + '@babel/helper-split-export-declaration@7.24.6': + resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==} + engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.23.4': resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.24.6': + resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.6': + resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} @@ -1496,32 +1540,32 @@ packages: resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.23.9': - resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==} - engines: {node: '>=6.9.0'} - '@babel/helpers@7.24.4': resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.23.4': - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + '@babel/helpers@7.24.6': + resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==} engines: {node: '>=6.9.0'} '@babel/highlight@7.24.2': resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} engines: {node: '>=6.9.0'} - '@babel/parser@7.23.9': - resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==} - engines: {node: '>=6.0.0'} - hasBin: true + '@babel/highlight@7.24.6': + resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==} + engines: {node: '>=6.9.0'} '@babel/parser@7.24.4': resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.24.6': + resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} @@ -1869,12 +1913,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.23.3': - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.24.1': resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} engines: {node: '>=6.9.0'} @@ -2025,30 +2063,30 @@ packages: resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} engines: {node: '>=6.9.0'} - '@babel/template@7.23.9': - resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==} - engines: {node: '>=6.9.0'} - '@babel/template@7.24.0': resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.23.9': - resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==} + '@babel/template@7.24.6': + resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==} engines: {node: '>=6.9.0'} '@babel/traverse@7.24.1': resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.23.9': - resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==} + '@babel/traverse@7.24.6': + resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==} engines: {node: '>=6.9.0'} '@babel/types@7.24.0': resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} engines: {node: '>=6.9.0'} + '@babel/types@7.24.6': + resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==} + engines: {node: '>=6.9.0'} + '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -2451,6 +2489,10 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/regexpp@4.10.1': + resolution: {integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@eslint-community/regexpp@4.6.2': resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -2470,19 +2512,11 @@ packages: '@fal-works/esbuild-plugin-global-externals@2.1.2': resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - '@figspec/components@1.0.2': - resolution: {integrity: sha512-rTjjH7wvM55ZuX+MRVPND1cs4Z4JspJvKc9lzGxm/8gD4dLfgeFztQuNy+daGglaxcGXLXTuJ2oJtZ0/lmRKmw==} - - '@figspec/react@1.0.3': - resolution: {integrity: sha512-r683qOko+5CbT48Ox280fMx2MNAtaFPgCNJvldOqN3YtmAzlcTT+YSxd3OahA+kjXGGrnzDbUgeTOX1cPLII+g==} - peerDependencies: - react: ^16.14.0 || ^17.0.0 || ^18.0.0 - '@floating-ui/core@1.6.0': resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} - '@floating-ui/dom@1.6.3': - resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==} + '@floating-ui/dom@1.6.5': + resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==} '@floating-ui/utils@0.2.1': resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} @@ -2645,18 +2679,9 @@ packages: '@leichtgewicht/ip-codec@2.0.4': resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} - '@lit-labs/react@1.2.1': - resolution: {integrity: sha512-DiZdJYFU0tBbdQkfwwRSwYyI/mcWkg3sWesKRsHUd4G+NekTmmeq9fzsurvcKTNVa0comNljwtg4Hvi1ds3V+A==} - - '@lit-labs/ssr-dom-shim@1.1.2': - resolution: {integrity: sha512-jnOD+/+dSrfTWYfSXBXlo5l5f0q1UuJo3tkbMDCYA2lKUYq79jaxqtGEvnRoh049nt1vdo1+45RinipU6FGY2g==} - '@lit-labs/ssr-dom-shim@1.2.0': resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==} - '@lit/reactive-element@1.6.2': - resolution: {integrity: sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA==} - '@lit/reactive-element@2.0.4': resolution: {integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==} @@ -2682,62 +2707,62 @@ packages: '@ndelangen/get-tarball@3.0.9': resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} - '@next/env@14.1.4': - resolution: {integrity: sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==} + '@next/env@14.2.3': + resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==} - '@next/eslint-plugin-next@14.1.4': - resolution: {integrity: sha512-n4zYNLSyCo0Ln5b7qxqQeQ34OZKXwgbdcx6kmkQbywr+0k6M3Vinft0T72R6CDAcDrne2IAgSud4uWCzFgc5HA==} + '@next/eslint-plugin-next@14.2.3': + resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==} - '@next/swc-darwin-arm64@14.1.4': - resolution: {integrity: sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==} + '@next/swc-darwin-arm64@14.2.3': + resolution: {integrity: sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.1.4': - resolution: {integrity: sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==} + '@next/swc-darwin-x64@14.2.3': + resolution: {integrity: sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.1.4': - resolution: {integrity: sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==} + '@next/swc-linux-arm64-gnu@14.2.3': + resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.1.4': - resolution: {integrity: sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==} + '@next/swc-linux-arm64-musl@14.2.3': + resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.1.4': - resolution: {integrity: sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==} + '@next/swc-linux-x64-gnu@14.2.3': + resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.1.4': - resolution: {integrity: sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==} + '@next/swc-linux-x64-musl@14.2.3': + resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.1.4': - resolution: {integrity: sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==} + '@next/swc-win32-arm64-msvc@14.2.3': + resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.1.4': - resolution: {integrity: sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==} + '@next/swc-win32-ia32-msvc@14.2.3': + resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@14.1.4': - resolution: {integrity: sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==} + '@next/swc-win32-x64-msvc@14.2.3': + resolution: {integrity: sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -2752,8 +2777,8 @@ packages: '@popperjs/core': ^2.11.8 rxjs: ^6.5.3 || ^7.4.0 - '@ngtools/webpack@17.3.3': - resolution: {integrity: sha512-053KMbg1Tb+Mmg4Htsv8yTpI7ABghguoxhwosQXKB0CjO6M0oexuvdaxbRDQ1vd5xYNOW9LcOfxOMPIwyU4BBA==} + '@ngtools/webpack@17.3.7': + resolution: {integrity: sha512-kQNS68jsPQlaWAnKcVeFKNHp6K90uQANvq+9oXb/i+JnYWzuBsHzn2r8bVdMmvjd1HdBRiGtg767XRk3u+jgRw==} 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 @@ -2885,50 +2910,50 @@ packages: peerDependencies: lit: ^2.0.0 || ^3.0.0 - '@percy/cli-app@1.28.2': - resolution: {integrity: sha512-UhuxmBRcgeyBnzV7ixiSqUlMdcBg7LyrTtDJWEjQ36SH0jJOAVu020cGcPLNDDTmqXDU7DsDoNifxtPzXT+d5w==} + '@percy/cli-app@1.28.6': + resolution: {integrity: sha512-XwIVnrU3nNuUnHSD2O75kmTh2XE/yxUr47weHUZZQPX0HjedzrOUfLpH9ykCcS/Or1wymZyWrCDSJpe+rWYdyA==} engines: {node: '>=14'} - '@percy/cli-build@1.28.2': - resolution: {integrity: sha512-VWfrgcOaN6rxSCwifQ5aJuGQDU2Nmq3lvvqZsVVSj3lBbE4KsEaxyoH2Hmm2pCOXi1DzOQ0+zHv+Ra+m4CyBvA==} + '@percy/cli-build@1.28.6': + resolution: {integrity: sha512-od4mR9RgpiB/yW4p8OyBK+G+irWz/m61ds3OjwCVxMDV588vvuHy9Gl/3CNFf403AawMwklZS+rGIlwcEhnnSw==} engines: {node: '>=14'} - '@percy/cli-command@1.28.2': - resolution: {integrity: sha512-UUa+dSpzTcXVjzvElL4wD315QYDuGrbnXObgaztyGWdufEbvLWflU4AiQZrxC5abDXQdNWQUAAizorA5dGhaCg==} + '@percy/cli-command@1.28.6': + resolution: {integrity: sha512-2vgoO7kBj7QG32511HXIJDrMcatUS5Nrtr7/3OQ9go5LXL1sk/DLOalmgqsCx9dOgSQ77h9dMlIG9ApIlza42g==} engines: {node: '>=14'} hasBin: true - '@percy/cli-config@1.28.2': - resolution: {integrity: sha512-O1O2n16jOm6HCzGM207/NbX+IR7ezUaQGnExi4G5SbOYqZeBIrsKpbEi/SERBfg4Kexv16LrF6NLOs75N2oaSw==} + '@percy/cli-config@1.28.6': + resolution: {integrity: sha512-APpFpc71OhLBiaXL93xHdHakbZdo7WmiNbLkAwwE+b2HabxnwiBru/G0NRX7nMW1TL+qeLPwjq5mJKQMRq73HQ==} engines: {node: '>=14'} - '@percy/cli-exec@1.28.2': - resolution: {integrity: sha512-tRvmoDJMb94XjA60a0lmN2XphzC/r70ruic+VfhFwEqDVoLY/6LxqjSXjehiSD5huXYDyPtaMeJo7oU1FxJyZg==} + '@percy/cli-exec@1.28.6': + resolution: {integrity: sha512-fV3oJB3tMnkimSw+rW/PeauFoZadF4zz3tacglvWXhSLdLrGXqB5Q2dVq5nqsXC4ogb2ZdRmTKX/bFwjlGc6hQ==} engines: {node: '>=14'} - '@percy/cli-snapshot@1.28.2': - resolution: {integrity: sha512-Qda4MKjKxoM/TEBjl54lCXMJAmQB6ZZheE96pJzEJzlPQtlj9r/moM3etCV+res0qaSOgx9BL0DncruvAwM/4g==} + '@percy/cli-snapshot@1.28.6': + resolution: {integrity: sha512-9ncOPvwy52RwSEv8fVEgtKcjmjJRtjxJ1uBhotfmd7jbt75XWuBj+3PQcSrq3M+U+y2b7PpSUJ8uKjUDup2o+g==} engines: {node: '>=14'} - '@percy/cli-upload@1.28.2': - resolution: {integrity: sha512-vzH4wRdAFGvktNlh57p4s9Qq+rT0MsiQ/kh7pDvzQ1lJ6glpCBXSiiahMtkR8AP8gMMzxYONAuV/htB/t8sFUw==} + '@percy/cli-upload@1.28.6': + resolution: {integrity: sha512-WAN4b4Irwk2vED7RQon4wc7eL9yKjI8r/TKYkmdTZo2VCEZ1OfrkKbKLxiqy0/OqwA4MIDjGJg9k9jZeab68Pw==} engines: {node: '>=14'} - '@percy/cli@1.28.2': - resolution: {integrity: sha512-hwibBu6zsjfWXIe8WFgrKizGjxkTzYcGQ4eOPcMQXfgK3yUZ24N5v8sqCOobRA/SbdD117zp2WUEkBRWCJ85gg==} + '@percy/cli@1.28.6': + resolution: {integrity: sha512-LK+8/S97lW4CBWS1QKTqb2H6bV7XxMX50bYEQmc1CqF533AQ9vSjAHz3sRQk3ZZZivaSFiRm2NDTxgoo5KdY2A==} engines: {node: '>=14'} hasBin: true - '@percy/client@1.28.2': - resolution: {integrity: sha512-UoQ4WY8zJhwv/7vKJS+1vbeu/T7YckSmOp/moCoAnHY6QOIXYs7EGkNyeEw5iXoQYzMw6KkkLYPC7YC0rt5pSg==} + '@percy/client@1.28.6': + resolution: {integrity: sha512-gr/0QLlybQMttcgOu/oPiwiFXp+bYATNRa4kNPFkyD9T85TzvSmF+T+s2qdZiQuSjXO92nXYbiu3uHN/NVmyHw==} engines: {node: '>=14'} - '@percy/config@1.28.2': - resolution: {integrity: sha512-Q9NoenDuhRiY+eBGrw8FJmmU8hErTsjBxccUOvrfn0A4JXRvcFHitvrh85rXG/HhyT4bcoB9O93QhV6F9KTq7A==} + '@percy/config@1.28.6': + resolution: {integrity: sha512-Q+4Ojyl2O42MUDCZIvUyNeddpxpDxpM4jWRDbyO+NH1QZ3hdl1AOyfdnpm9wZRbi78UrlMi+jkkGyNCgMsD5gQ==} engines: {node: '>=14'} - '@percy/core@1.28.2': - resolution: {integrity: sha512-7JkZrsLoHDD2bkhN4u5T/+0sC0UT73Lv1qF3lIMLu+Qjt1BhyKdnitbOnjFlrVOwqC5uNgr7/gvcULLVbJga8Q==} + '@percy/core@1.28.6': + resolution: {integrity: sha512-lSUfccpvwYdkKkd1AuIXEAk98Q0yU+eppb8lakQOAxvxl1g40nggCub624m+w3OCT8hqXxmENhyjO1CAdoCJGA==} engines: {node: '>=14'} '@percy/cypress@3.1.2': @@ -2936,27 +2961,27 @@ packages: peerDependencies: cypress: '>=3' - '@percy/dom@1.28.2': - resolution: {integrity: sha512-bUU38EMowO+y+pnLzl0naikv0pVQvcrkrBm7K7eVGUt6orRTqr5Tr8bMV7Ooac4mlMwaZvCkAH7gPhiDAONUmw==} + '@percy/dom@1.28.6': + resolution: {integrity: sha512-OElN+lpNc/Eq124L6S9Kg3tn5vg06pndYC5+UnpYHD7+8dN5kKmGI7BLY3EZQoOxl2iXoE+KDgCbaXczzOdTDA==} - '@percy/env@1.28.2': - resolution: {integrity: sha512-40UhiL5MylFN39pzzoyDKgult2ZmSbuc3ADrNGBx9zyMdFEoTLZg5BcFZoSUHHjPboe2jYZFYrRqoXxix++OfA==} + '@percy/env@1.28.6': + resolution: {integrity: sha512-duTelUOyXCrKyaNs7bC+qpWt4wmCE5hRqCvKCtU/Jtp/eUkltmn3q4sy7VmpXd62P8hD/lzen5M8gQ9ztTfVkQ==} engines: {node: '>=14'} - '@percy/logger@1.28.2': - resolution: {integrity: sha512-ZF1iDjY9oBL+4WEqGuJ4JJaUdyUqGhdJtS+qDV8iqrQ6VngWBpO3lg0Uhy8RIkqUSLGKbwVbnxkfvA5kXx+yAw==} + '@percy/logger@1.28.6': + resolution: {integrity: sha512-QhgLJ3sPkZfQ/7GhX2IKzGCbH5+zRcScP3ffcw4qZtPfCPwbgVq5wrd5naCKBYlpxv6CUByCR8jzmkxFrOpVCQ==} engines: {node: '>=14'} '@percy/sdk-utils@1.24.0': resolution: {integrity: sha512-kfYxX0rHP5N2Da6HyfjRCVaeNahAO9XV5WD4SKWKKjdKVkV/Z5/XjVgSKlTBLSYxnWDzYJJ4UHZV43Mw+facMA==} engines: {node: '>=14'} - '@percy/sdk-utils@1.28.2': - resolution: {integrity: sha512-cMFz8AjZ2KunN0dVwzA+Wosk4B+6G9dUkh2YPhYvqs0KLcCyYs3s91IzOQmtBOYwAUVja/W/u6XmBHw0jaxg0A==} + '@percy/sdk-utils@1.28.6': + resolution: {integrity: sha512-cfpylC1bvp93EPQpwvYybdw5I4/fAABKR0hfCcyN7LF0FRgXE3/Onj7ebW41gypDilw2Q1nW0gUSwPj9MyoTOg==} engines: {node: '>=14'} - '@percy/webdriver-utils@1.28.2': - resolution: {integrity: sha512-bD0UoR1/69xcsL2mhvZ4xQKhWJYbqUJUFMiNr8xqR55Z4dArbeN9S2ZYU6aMVRemuKyn7ki0ttNFHq0z2GFvGg==} + '@percy/webdriver-utils@1.28.6': + resolution: {integrity: sha512-appsfiyQdcpv7cCSIUM3YLwfGccaNFvFcWQxtDI1aJ/5nI//mjx2wzm/s3hh5v4l0ZgmSHVnQ/3r0udmx+sccA==} engines: {node: '>=14'} '@pkgjs/parseargs@0.11.0': @@ -3087,8 +3112,8 @@ packages: '@rushstack/eslint-patch@1.7.2': resolution: {integrity: sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==} - '@schematics/angular@17.3.3': - resolution: {integrity: sha512-kNlyjIKTBhfi8Jab3MCkxNRbbpErbzdu0lZNSL8Nidmqs6Tk23Dc1bZe4t/gPNOCkCvQlwYa6X88SjC/ntyVng==} + '@schematics/angular@17.3.7': + resolution: {integrity: sha512-HaJroKaberriP4wFefTTSVFrtU9GMvnG3I6ELbOteOyKMH7o2V91FXGJDJ5KnIiLRlBmC30G3r+9Ybc/rtAYkw==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} '@sideway/address@4.1.4': @@ -3155,13 +3180,8 @@ packages: peerDependencies: '@stencil/core': '>=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0' - '@stencil/core@4.14.0': - resolution: {integrity: sha512-+s0u/KsNolXZ7tC2hEMgMA3jaNaqOhZvYKwSzjQbc0Wv+cB481Isxzo7ifgEWRYqsJzNSyqhO6cyu/EJrGGTdg==} - engines: {node: '>=16.0.0', npm: '>=7.10.0'} - hasBin: true - - '@stencil/core@4.17.2': - resolution: {integrity: sha512-MX7yaLmpTU9iZvCire9nhecTcE0qBlV0vPWrLMeIXewYN7/hb8B3NjnhQyBKC93FDPI8NBRmt6KIugLw9zcRZg==} + '@stencil/core@4.18.0': + resolution: {integrity: sha512-cN+nvjy0L8KyYq7N1bmswN/AcBustFlsAxfyPQ+fd3m98lPo53jNKIxKve1ZQ4ZmzSzYO7alDhZvjIesM0rl7w==} engines: {node: '>=16.0.0', npm: '>=7.10.0'} hasBin: true @@ -3170,72 +3190,55 @@ packages: peerDependencies: '@stencil/core': '>=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0' - '@stencil/sass@3.0.11': - resolution: {integrity: sha512-YzKBKuV2wYf2aCM2Or8DbksX+8DQKOYFe2QMNAV+LFzyexhiYDz5/Tq04CDtc8xTXmzqC0J8U79GB8Vvz9myAQ==} + '@stencil/sass@3.0.12': + resolution: {integrity: sha512-aXMgpG13ftxLYo2dDauapvE9gKzSxTAqCMOfTqbPhKUCZ43JsknkLx+PArRaFtfYeVGSQ8eTS4ck7/Nlec+PNA==} engines: {node: '>=12.0.0', npm: '>=6.0.0'} peerDependencies: '@stencil/core': '>=2.0.0 || >=3.0.0-beta.0 || >= 4.0.0-beta.0 || >= 4.0.0' - '@stencil/store@2.0.15': - resolution: {integrity: sha512-mIrvtqYbwLry8YRrD5JF4no+YK7L2Mcud4vAgsw7llObuxK9TR4B5S1Y3XgTeGts5eLrA6dhNKX8k/Qr+fQtyA==} + '@stencil/store@2.0.16': + resolution: {integrity: sha512-ET3EByKlmNyTA8O+tcp5YWePOiVnPIiuoiIaxTrf3zFFVo7JWVsVoak9IE0UTn3MkIM0ubR9lgxvi70uN588/A==} engines: {node: '>=12.0.0', npm: '>=6.0.0'} peerDependencies: '@stencil/core': '>=2.0.0 || >=3.0.0 || >= 4.0.0-beta.0 || >= 4.0.0' - '@storybook/addon-actions@8.0.8': - resolution: {integrity: sha512-F3qpN0n53d058EroW1A2IlzrsFNR5p2srLY4FmXB80nxAKV8oqoDI4jp15zYlf8ThcJoQl36plT8gx3r1BpANA==} + '@storybook/addon-actions@8.0.10': + resolution: {integrity: sha512-IEuc30UAFl7Ws0GwaY/whjBnGaViVEVjmPc+MXUym2wwwJbnCbI+BKJxPoYi/I7QJb5aUNToAE6pl2pDda2g3Q==} - '@storybook/addon-backgrounds@8.0.8': - resolution: {integrity: sha512-lrAJjVxDeXSK116rDajb56TureZiT76ygraP22/IvU3IcWCEcRiKYwlay8WgCTbJHtFmdBpelLBapoT46+IR9Q==} + '@storybook/addon-backgrounds@8.0.10': + resolution: {integrity: sha512-445SUQqOH5xFJWlNeMu74FEgk26O9Zm/5aqnvmeteB0Q2JLaw7k2q9i/W6XFu97QkRxqA1EGbDxLR3+e1xCjaA==} - '@storybook/addon-controls@8.0.8': - resolution: {integrity: sha512-7xANN18CLYsVthuSXwxKezqpelEKJlT9xaYLtw5vvD00btW5g3vxq+Z/A31OkS2OuaH2bE0GfRCoG2OLR8yQQA==} - - '@storybook/addon-designs@7.0.9': - resolution: {integrity: sha512-xJdw1/FgkC8ovTdRIL5FyEJaXtF1XPxsb6rsl2jByG+8tXyM0PJ/yFEkBrqn35Dei2i4N7x8EHXFd8DnzriBRg==} - peerDependencies: - '@storybook/addon-docs': ^7.0.0 - '@storybook/addons': ^7.0.0 - '@storybook/components': ^7.0.0 - '@storybook/manager-api': ^7.0.0 - '@storybook/preview-api': ^7.0.0 - '@storybook/theming': ^7.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@storybook/addon-controls@8.0.10': + resolution: {integrity: sha512-MAUtIJGayNSsfn3VZ6SjQwpRkb4ky+10oVfos+xX9GQ5+7RCs+oYMuE4+aiQvvfXNdV8v0pUGPUPeUzqfJmhOA==} - '@storybook/addon-docs@8.0.8': - resolution: {integrity: sha512-HNiY4ESH9WxGS6QpIpURzdSbyDxbRh7VIgbvUrePSKajlsL4RFN/gdnn5TnSL00tOP/w+Cy/fXcbljMUKy7Ivg==} + '@storybook/addon-docs@8.0.10': + resolution: {integrity: sha512-y+Agoez/hXZHKUMIZHU96T5V1v0cs4ArSNfjqDg9DPYcyQ88ihJNb6ZabIgzmEaJF/NncCW+LofWeUtkTwalkw==} - '@storybook/addon-essentials@8.0.8': - resolution: {integrity: sha512-bc9KJk7SPM2I5CCJEAP8R5leP+74IYxhWPiTN8Y1YFmf3MA1lpDJbwy+RfuRZ2ZKnSKszCXCVzU/T10HKUHLZw==} + '@storybook/addon-essentials@8.0.10': + resolution: {integrity: sha512-Uy3+vm7QX+b/9rhW/iFa3EYAAbV1T2LljY9Bj4aTPZHas9Bpvl5ZPnOm/PhybcE8UFHEoVTJ0v3uWb0dsUEigw==} - '@storybook/addon-highlight@8.0.8': - resolution: {integrity: sha512-KKD7xiNhxZQM4fdDidtcla6jSzgN1f9qe1AwFSHLXwIW22+4c97Vgf+AookN7cJvB77HxRUnvQH//zV1CJEDug==} + '@storybook/addon-highlight@8.0.10': + resolution: {integrity: sha512-40GB82t1e2LCCjqXcC6Z5lq1yIpA1+Yl5E2tKeggOVwg5HHAX02ESNDdBaIOlCqMkU3WKzjGPurDNOLUAbsV2g==} - '@storybook/addon-links@8.0.8': - resolution: {integrity: sha512-iRI/W9I6fOom5zfZvsu53gfJtuhBSMmhgI/u5uZbAbfEoNL5D1PqpDXD4ygM8Vvlx90AZNZ2W5slEe7gCZOMyA==} + '@storybook/addon-links@8.0.10': + resolution: {integrity: sha512-+mIyH2UcrgQfAyRM4+ARkB/D0OOY8UMwkZsD8dD23APZ8oru7W/NHX3lXl0WjPfQcOIx/QwWNWI3+DgVZJY3jw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true - '@storybook/addon-measure@8.0.8': - resolution: {integrity: sha512-akyoa+1F2ripV6ELF2UbxiSHv791LWSAVK7gsD/a5eJfKZMm5yoHjcY7Icdkc/ctE+pyjAQNhkXTixUngge09w==} + '@storybook/addon-measure@8.0.10': + resolution: {integrity: sha512-quXQwmZJUhOxDIlbXTH6aKYQkwkDpL0UQRkUZn1xuZ2sVKJeaee73QSWqw8HDD4Rz9huS+OrAdVoq/Cz5FoC6A==} - '@storybook/addon-outline@8.0.8': - resolution: {integrity: sha512-8Gxs095ekpa5YZolLSs5cWbWK94GZTevEUX8GFeLGIz9sf1KO3kmEO3eC5ogzDoB0cloqvbmVAJvYJ3FWiUx8w==} + '@storybook/addon-outline@8.0.10': + resolution: {integrity: sha512-1eDO2s/vHhhSJo7W5SetqjleUBTZLI08VNP89c4j7vdRKiMZ1DYhr0dqUGIC3w7cDsawI/nQ24wancHHayAnqw==} - '@storybook/addon-toolbars@8.0.8': - resolution: {integrity: sha512-PZxlK+/Fwk2xcrpr5kkXYjCbBaEjAWcEHWq7mhQReMFaAs5AJE8dvmeQ7rmPDOHnlg4+YsARDFKz5FJtthRIgg==} + '@storybook/addon-toolbars@8.0.10': + resolution: {integrity: sha512-67HP6mTJU/gjRju01Z5HjeqoRiJMDlrMvMvjGBg7w5+tPNtjYqdelfe2+kcfU+Hf6dfcuqaBDwaUUGSv+RYtRQ==} - '@storybook/addon-viewport@8.0.8': - resolution: {integrity: sha512-nOuc6DquGvm24c/A0HFTgeEN/opd58ebs1KLaEEq1f6iYV0hT2Gpnk0Usg/seOiFtJnj3NyAM46HSkZz06T8Sw==} + '@storybook/addon-viewport@8.0.10': + resolution: {integrity: sha512-NJ88Nd/tXreHLyLeF3VP+b8Fu2KtUuJ0L4JYpEMmcdaejGARTrJJOU+pcZBiUqEHFeXQ8rDY8DKXhUJZQFQ1Wg==} '@storybook/addons@7.6.17': resolution: {integrity: sha512-Ok18Y698Ccyg++MoUNJNHY0cXUvo8ETFIRLJk1g9ElJ70j6kPgNnzW2pAtZkBNmswHtofZ7pT156cj96k/LgfA==} @@ -3246,8 +3249,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/blocks@8.0.8': - resolution: {integrity: sha512-kwsjhvnmFEaIl51QHJt/83G7mZ5YbzFKnWCwy8WUpi0xvVcyoFQSGGgwR3XRrzGfUEPK8P2FDHeKw1bLzyIejA==} + '@storybook/blocks@8.0.10': + resolution: {integrity: sha512-LOaxvcO2d4dT4YoWlQ0bq/c8qA3aHoqtyuvBjwbVn+359bjMtgj/91YuP9Y2+ggZZ4p+ttgvk39PcmJlNXlJsw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3257,11 +3260,11 @@ packages: react-dom: optional: true - '@storybook/builder-manager@8.0.8': - resolution: {integrity: sha512-0uihNTpTou0RFMM6PQLlfCxDxse9nIDEb83AmWE/OUnpKDDY9+WFupVWGaZc9HfH9h4Yqre2fiuK1b7KNYe7AQ==} + '@storybook/builder-manager@8.0.10': + resolution: {integrity: sha512-lo57jeeYuYCKYrmGOdLg25rMyiGYSTwJ+zYsQ3RvClVICjP6X0I1RCKAJDzkI0BixH6s1+w5ynD6X3PtDnhUuw==} - '@storybook/builder-vite@8.0.8': - resolution: {integrity: sha512-ibWOxoHczCc6ttMQqiSXv29m/e44sKVoc1BJluApQcjCXl9g6QXyN45zV70odjCxMfNy7EQgUjCA0mgAgMHSIw==} + '@storybook/builder-vite@8.0.10': + resolution: {integrity: sha512-Rod/2jYvF4Ng1MjIMZEXe/3z0lPuxkRtetCTr3ECPgi83lHXpHJ+N0NVfJEMs+pXsVqkLP3iGt2hLn6D6yFMwA==} peerDependencies: '@preact/preset-vite': '*' typescript: '>= 4.3.x' @@ -3281,14 +3284,11 @@ packages: '@storybook/channels@7.6.17': resolution: {integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==} - '@storybook/channels@8.0.5': - resolution: {integrity: sha512-UWzjt4STzBgg28Q6FxqyJWwXLWYM6oSz9gGKMUJbn2vRAlEJaG3XwvpT39YFVDUIuiFSHguV5cisXY5Be4nOZw==} - - '@storybook/channels@8.0.8': - resolution: {integrity: sha512-L3EGVkabv3fweXnykD/GlNUDO5HtwlIfSovC7BF4MmP7662j2/eqlZrJxDojGtbv11XHjWp/UJHUIfKpcHXYjQ==} + '@storybook/channels@8.0.10': + resolution: {integrity: sha512-3JLxfD7czlx31dAGvAYJ4J4BNE/Y2+hhj/dsV3xlQTHKVpnWknaoeYEC1a6YScyfsH6W+XmP2rzZKzH4EkLSGQ==} - '@storybook/cli@8.0.8': - resolution: {integrity: sha512-RnSdgykh2i7es1rQ7CNGpDrKK/PN1f0xjwpkAHXCEB6T9KpHBmqDquzZp+N127a1HBHHXy018yi4wT8mSQyEoA==} + '@storybook/cli@8.0.10': + resolution: {integrity: sha512-KUZEO2lyvOS2sRJEFXovt6+5b65iWsh7F8e8S1cM20fCM1rZAlWtwmoxmDVXDmyEp0wTrq4FrRxKnbo9UO518w==} hasBin: true '@storybook/client-logger@6.5.16': @@ -3297,23 +3297,20 @@ packages: '@storybook/client-logger@7.6.17': resolution: {integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==} - '@storybook/client-logger@8.0.5': - resolution: {integrity: sha512-6D7zvPPnLuTVlBNpZSdzEbk5xfWKhEG0gejtPnhjG9R5YzC/dFckdUI0gtvwGWUVMWhL3H/0gjRjhKujUMRY1Q==} + '@storybook/client-logger@8.0.10': + resolution: {integrity: sha512-u38SbZNAunZzxZNHMJb9jkUwFkLyWxmvp4xtiRM3u9sMUShXoTnzbw1yKrxs+kYJjg+58UQPZ1JhEBRcHt5Oww==} - '@storybook/client-logger@8.0.8': - resolution: {integrity: sha512-a4BKwl9NLFcuRgMyI7S4SsJeLFK0LCQxIy76V6YyrE1DigoXz4nA4eQxdjLf7JVvU0EZFmNSfbVL/bXzzWKNXA==} + '@storybook/codemod@8.0.10': + resolution: {integrity: sha512-t45jKGs/eyR/nKVX6QgRtMZSAjJo5aXWWk3B24xVbW6ywr0jt1LC100FkHG4Af8cApIfh8uUmS9X05hMG5zGGA==} - '@storybook/codemod@8.0.8': - resolution: {integrity: sha512-ufEBLciLmLlAh+L6lGgBObTiny6odXMKqiJOewQ9XfIN0wdWdyRUf5QdZIPOdfgHhWF2Q2HeswiulsoHm8Z/hA==} - - '@storybook/components@8.0.8': - resolution: {integrity: sha512-EpBExH4kHWQJSfA8QXJJ5AsLRUGi5X/zWY7ffiYW8rtnBmEnk3T9FpmnyJlY1A8sdd3b1wQ07JGBDHfL1mdELw==} + '@storybook/components@8.0.10': + resolution: {integrity: sha512-eo+oDDcm35YBB3dtDYDfcjJypNVPmRty85VWpAOBsJXpwp/fgU8csx0DM3KmhrQ4cWLf2WzcFowJwI1w+J88Sw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/core-common@8.0.8': - resolution: {integrity: sha512-CL15M2oeQW+Rb1l7ciunLDI2Re+ojL2lX1ZFAiDedcOU+JHsdq43zAuXoZVzp8icUi2AUSwEjZIxGCSingj+JQ==} + '@storybook/core-common@8.0.10': + resolution: {integrity: sha512-hsFlPieputaDQoxstnPa3pykTc4bUwEDgCHf8U43+/Z7qmLOQ9fpG+2CFW930rsCRghYpPreOvsmhY7lsGKWLQ==} '@storybook/core-events@6.5.16': resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} @@ -3321,20 +3318,17 @@ packages: '@storybook/core-events@7.6.17': resolution: {integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==} - '@storybook/core-events@8.0.5': - resolution: {integrity: sha512-26c0m7P7qt9zUKcD1noWLPJmZ+iS6MKXNngUgNBSxTtG20NFV3nxD0/tx9FzNfDVZDF6cHINkWj+FVBAaVuBVQ==} - - '@storybook/core-events@8.0.8': - resolution: {integrity: sha512-PtuvR7vS4glDEdCfKB4f1k3Vs1C3rTWP2DNbF+IjjPhNLMBznCdzTAPcz+NUIBvpjjGnhKwWikJ0yj931YjSVg==} + '@storybook/core-events@8.0.10': + resolution: {integrity: sha512-TuHPS6p5ZNr4vp4butLb4R98aFx0NRYCI/7VPhJEUH5rPiqNzE3PZd8DC8rnVxavsJ+jO1/y+egNKXRYkEcoPQ==} - '@storybook/core-server@8.0.8': - resolution: {integrity: sha512-tSEueEBttbSohzhZVN2bFNlFx3eoqQ7p57cjQLKXXwKygS2qKxISKnFy+Y0nj20APz68Wj51kx0rN0nGALeegw==} + '@storybook/core-server@8.0.10': + resolution: {integrity: sha512-HYDw2QFBxg1X/d6g0rUhirOB5Jq6g90HBnyrZzxKoqKWJCNsCADSgM+h9HgtUw0jA97qBpIqmNO9n3mXFPWU/Q==} - '@storybook/csf-plugin@8.0.8': - resolution: {integrity: sha512-x9WspjZGcqXENj/Vn4Qmn0oTW93KN2V9wqpflWwCUJTByl2MugQsh5xRuDbs2yM7dD6zKcqRyPaTY+GFZBW+Vg==} + '@storybook/csf-plugin@8.0.10': + resolution: {integrity: sha512-0EsyEx/06sCjI8sn40r7cABtBU1vUKPMPD+S5mJiZymm73BgdARj0qZOlLoK2LP+t2pcaB/Cn7KX/uyhhv7M2g==} - '@storybook/csf-tools@8.0.8': - resolution: {integrity: sha512-Ji5fpoGym/MSyHJ6ALghVUUecwhEbN0On+jOZ2VPkrkATi9UDtryHQPdF60HKR63Iv53xRuWRzudB6zm43RTzw==} + '@storybook/csf-tools@8.0.10': + resolution: {integrity: sha512-xUc6fVIKoCujf/7JZhkYjrVXeNsTSoDrZFNmqLEmtfktJVqYdXY4LuSAtlBmAIyETi09ULTuuVexrcKFwjzuBA==} '@storybook/csf@0.0.2--canary.4566f4d.1': resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} @@ -3342,11 +3336,14 @@ packages: '@storybook/csf@0.1.2': resolution: {integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==} + '@storybook/csf@0.1.8': + resolution: {integrity: sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==} + '@storybook/docs-mdx@3.0.0': resolution: {integrity: sha512-NmiGXl2HU33zpwTv1XORe9XG9H+dRUC1Jl11u92L4xr062pZtrShLmD4VKIsOQujxhhOrbxpwhNOt+6TdhyIdQ==} - '@storybook/docs-tools@8.0.8': - resolution: {integrity: sha512-p/MIrDshXMl/fiCRlfG9StkRYI1QlUyUSQQ/YDBFlBfWcJYARIt3TIvQyvs3Q/apnQNcDXIW663W57s7WHTO2w==} + '@storybook/docs-tools@8.0.10': + resolution: {integrity: sha512-rg9KS81vEh13VMr4mAgs+7L4kYqoRtG7kVfV1WHxzJxjR3wYcVR0kP9gPTWV4Xha/TA3onHu9sxKxMTWha0urQ==} '@storybook/global@5.0.0': resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} @@ -3361,26 +3358,26 @@ packages: '@storybook/manager-api@7.6.17': resolution: {integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==} - '@storybook/manager-api@8.0.8': - resolution: {integrity: sha512-1HU4nfLRi0sD2uw229gb8EQyufNWrLvMNpg013kBsBXRd+Dj4dqF3v+KrYFNtteY7riC4mAJ6YcQ4tBUNYZDug==} + '@storybook/manager-api@8.0.10': + resolution: {integrity: sha512-LLu6YKQLWf5QB3h3RO8IevjLrSOew7aidIQPr9DIr9xC8wA7N2fQabr+qrJdE306p3cHZ0nzhYNYZxSjm4Dvdw==} - '@storybook/manager@8.0.8': - resolution: {integrity: sha512-pWYHSDmgT8p/XbQMKuDPdgB6KzjePI6dU5KQ5MERYfch1UiuGPVm1HHDlxxSfHW0IIXw9Qnwq4L0Awe4qhvJKQ==} + '@storybook/manager@8.0.10': + resolution: {integrity: sha512-bojGglUQNry48L4siURc2zQKswavLzMh69rqsfL3ZXx+i+USfRfB7593azTlaZh0q6HO4bUAjB24RfQCyifLLQ==} - '@storybook/node-logger@8.0.8': - resolution: {integrity: sha512-ymps3MMTxtMWq0eDiXk1iO7iv0Eg0PuUvOpPPohEJauGzU9THv81xx01aaHKSprFFJYD2LMQr1aFuUplItO12g==} + '@storybook/node-logger@8.0.10': + resolution: {integrity: sha512-UMmaUaA3VOX/mKLsSvOnbZre2/1tZ6hazA6H0eAnClKb51jRD1AJrsBYK+uHr/CAp7t710bB5U8apPov7hayDw==} '@storybook/preview-api@7.6.17': resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==} - '@storybook/preview-api@8.0.8': - resolution: {integrity: sha512-khgw2mNiBrSZS3KNGQPzjneL3Csh3BOq0yLAtJpT7CRSrI/YjlE7jjcTkKzoxW+UCgvNTnLvsowcuzu82e69fA==} + '@storybook/preview-api@8.0.10': + resolution: {integrity: sha512-uZ6btF7Iloz9TnDcKLQ5ydi2YK0cnulv/8FLQhBCwSrzLLLb+T2DGz0cAeuWZEvMUNWNmkWJ9PAFQFs09/8p/Q==} - '@storybook/preview@8.0.8': - resolution: {integrity: sha512-J/ooKcvDV1s7ROH7lF/0vOyWDOgDB7bN6vS67J1WK0HLvMGaqUzU+q3ndakGzu0LU/jvUBqEFSZd1ALWyZINDQ==} + '@storybook/preview@8.0.10': + resolution: {integrity: sha512-op7gZqop8PSFyPA4tc1Zds8jG6VnskwpYUUsa44pZoEez9PKEFCf4jE+7AQwbBS3hnuCb0CKBfASN8GRyoznbw==} - '@storybook/react-dom-shim@8.0.8': - resolution: {integrity: sha512-vOMlAz2HH/xfgZmSO28fCEmp5/tPxINDEdBDVLdZeYG6R1j5jlMRyaNcXt4cPNDkyc///PkB/K767hg4goca/Q==} + '@storybook/react-dom-shim@8.0.10': + resolution: {integrity: sha512-3x8EWEkZebpWpp1pwXEzdabGINwOQt8odM5+hsOlDRtFZBmUqmmzK0rtn7orlcGlOXO4rd6QuZj4Tc5WV28dVQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3394,16 +3391,16 @@ packages: '@storybook/router@7.6.17': resolution: {integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==} - '@storybook/router@8.0.8': - resolution: {integrity: sha512-wdFdNsEKweigU9VkGZtpb7GhBJLWzbABcwOuEy2h0d5m7egB97hy9BxhANdqkC+PbAHrabxC99Ca3wTj50MoDg==} + '@storybook/router@8.0.10': + resolution: {integrity: sha512-AZhgiet+EK0ZsPbaDgbbVTAHW2LAMCP1z/Un2uMBbdDeD0Ys29Af47AbEj/Ome5r1cqasLvzq2WXJlVXPNB0Zw==} '@storybook/semver@7.3.2': resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} engines: {node: '>=10'} hasBin: true - '@storybook/telemetry@8.0.8': - resolution: {integrity: sha512-Uvj4nN01vQgjXZYKF/GKTFE85//Qm4ZTlJxTFWid+oYWc8NpAyJvlsJkj/dsEn4cLrgnJx2e4xvnx0Umr2ck+A==} + '@storybook/telemetry@8.0.10': + resolution: {integrity: sha512-s4Uc+KZQkdmD2d+64Qf8wYknhQZwmjf2CxjIjv9b4KLsU/nyfDheK7Fzd1jhBKb2UQUlLW5HhZkBgs1RsZcDHA==} '@storybook/testing-library@0.2.2': resolution: {integrity: sha512-L8sXFJUHmrlyU2BsWWZGuAjv39Jl1uAqUHdxmN42JY15M4+XCMjGlArdCCjDe1wpTSW6USYISA9axjZojgtvnw==} @@ -3420,8 +3417,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/theming@8.0.8': - resolution: {integrity: sha512-43hkNz7yo8Bl97AO2WbxIGprUqMhUZyK9g8383bd30gSxy9nfND/bdSdcgmA8IokDn8qp37Q4QmxtUZdhjMzZQ==} + '@storybook/theming@8.0.10': + resolution: {integrity: sha512-7NHt7bMC7lPkwz9KdDpa6DkLoQZz5OV6jsx/qY91kcdLo1rpnRPAiVlJvmWesFxi1oXOpVDpHHllWzf8KDBv8A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3434,24 +3431,24 @@ packages: '@storybook/types@7.6.17': resolution: {integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==} - '@storybook/types@8.0.5': - resolution: {integrity: sha512-lYXwYF9qooQhYJkg3HWr6PD/vnQK+iO8fSKS8jtntwgJUKJvTbGZKAhNnS8WzNEI9jIp5QXFsSA367NjIDPaeQ==} - - '@storybook/types@8.0.8': - resolution: {integrity: sha512-NGsgCsXnWlaZmHenHDgHGs21zhweZACkqTNsEQ7hvsiF08QeiKAdgJLQg3YeGK73h9mFDRP9djprUtJYab6vnQ==} + '@storybook/types@8.0.10': + resolution: {integrity: sha512-S/hKS7+SqNnYIehwxdQ4M2nnlfGDdYWAXdtPCVJCmS+YF2amgAxeuisiHbUg7eypds6VL0Oxk/j2nPEHOHk9pg==} - '@storybook/web-components-vite@8.0.8': - resolution: {integrity: sha512-kRVBioF9DiVq4GB43nXacMiQyw0AhGe2TeBX9Mh+ZY7mPRDkhnSshr4wqXW6GkHwfLkTus0M0naDeYxaU8EUPA==} + '@storybook/web-components-vite@8.0.10': + resolution: {integrity: sha512-tvGWcqYtTYRLpwQ17yHlOfAuYkfxLblxfY1YRVJSsu3k3+ouV+mNE0CMF9O46fwdtdI6bq1eNNJa2brkRlgfMQ==} engines: {node: '>=18.0.0'} - '@storybook/web-components@8.0.8': - resolution: {integrity: sha512-ggTGVTTiip+1/pGhfkWLpF4sb+bMX9Pnh5s62zZJIhryIzdw/lIaAGAyhxn9xaJjEaoZgsbxxOcuTRuW53G3MQ==} + '@storybook/web-components@8.0.10': + resolution: {integrity: sha512-+4GxATsB6UXGl0b7AcRBrzydKJhBVQBTyY+GrUjstx1LWFU//Ik5B/koPpB857G6aBqIzehKNcWjGHPPAMixjg==} engines: {node: '>=18.0.0'} peerDependencies: lit: ^2.0.0 || ^3.0.0 - '@swc/helpers@0.5.2': - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} '@swimlane/ngx-datatable@20.1.0': resolution: {integrity: sha512-oHnnx1QRNmv10l5UME13v5JP3M3GesM9K3QH6TRYo2C7UbbhY7vL5EZ4HGqcvtMMW4FOzqNOSltE++IVL99F3g==} @@ -3613,8 +3610,8 @@ packages: '@types/jest@29.5.12': resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - '@types/jquery@3.5.29': - resolution: {integrity: sha512-oXQQC9X9MOPRrMhPHHOsXqeQDnWeCDT3PelUIg/Oy8FAbzSZtFHRjc7IpbfFVmpLtJ+UOoywpRsuO5Jxjybyeg==} + '@types/jquery@3.5.30': + resolution: {integrity: sha512-nbWKkkyb919DOUxjmRVk8vwtDb0/k8FKncmUKFi+NY+QXqWltooxTrswvz4LspQwxvLdvzBN1TImr6cw3aQx2A==} '@types/jsdom@20.0.1': resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} @@ -3625,6 +3622,9 @@ packages: '@types/json-schema@7.0.14': resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==} + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/json5@0.0.29': resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} @@ -3634,8 +3634,8 @@ packages: '@types/mdast@3.0.15': resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} - '@types/mdx@2.0.12': - resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==} + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} '@types/mime@1.3.2': resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} @@ -3661,6 +3661,9 @@ packages: '@types/node@20.12.7': resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} + '@types/node@20.14.0': + resolution: {integrity: sha512-5cHBxFGJx6L4s56Bubp4fglrEpmyJypsqI6RgzMfBHWUJQGWAAi8cWcgetEbZXHYXo9C2Fa4EEds/uSyS4cxmA==} + '@types/normalize-package-data@2.4.1': resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -3679,17 +3682,17 @@ packages: '@types/react-dom@18.2.18': resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} - '@types/react-dom@18.2.24': - resolution: {integrity: sha512-cN6upcKd8zkGy4HU9F1+/s98Hrp6D4MOcippK4PoE8OZRngohHZpbJn1GsaDLz87MqvHNoT13nHvNqM9ocRHZg==} + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} - '@types/react-syntax-highlighter@15.5.11': - resolution: {integrity: sha512-ZqIJl+Pg8kD+47kxUjvrlElrraSUrYa4h0dauY/U/FTUuprSCqvUj+9PNQNQzVc6AJgIWUUxn87/gqsMHNbRjw==} + '@types/react-syntax-highlighter@15.5.13': + resolution: {integrity: sha512-uLGJ87j6Sz8UaBAooU0T6lWJ0dBmjZgN1PZTrj05TNql2/XpC6+4HhMT5syIdFUUt+FASfCeLLv4kBygNU+8qA==} '@types/react@18.2.53': resolution: {integrity: sha512-52IHsMDT8qATp9B9zoOyobW8W3/0QhaJQTw1HwRj0UY2yBpCAQ7+S/CqHYQ8niAm3p4ji+rWUQ9UCib0GxQ60w==} - '@types/react@18.2.74': - resolution: {integrity: sha512-9AEqNZZyBx8OdZpxzQlaFEVCSFUM2YXJH46yPOiOpm078k6ZLOCcuAzGum/zK8YBwY+dbahVNbHrbgrAwIRlqw==} + '@types/react@18.3.2': + resolution: {integrity: sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==} '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -3703,6 +3706,9 @@ packages: '@types/semver@7.5.0': resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + '@types/send@0.17.1': resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} @@ -3776,8 +3782,8 @@ packages: typescript: optional: true - '@typescript-eslint/eslint-plugin@7.5.0': - resolution: {integrity: sha512-HpqNTH8Du34nLxbKgVMGljZMG0rJd2O9ecvr2QLYp+7512ty1j42KnsFwspPXg1Vh8an9YImf6CokUBltisZFQ==} + '@typescript-eslint/eslint-plugin@7.8.0': + resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -3807,8 +3813,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@7.5.0': - resolution: {integrity: sha512-cj+XGhNujfD2/wzR1tabNsidnYRaFfEkcULdcIyVBYcXjBvBKOes+mpMBP7hMpOyk+gBcfXsrg4NBGAStQyxjQ==} + '@typescript-eslint/parser@7.8.0': + resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -3825,12 +3831,8 @@ packages: resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@7.2.0': - resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/scope-manager@7.5.0': - resolution: {integrity: sha512-Z1r7uJY0MDeUlql9XJ6kRVgk/sP11sr3HKXn268HZyqL7i4cEfrdFuSSY/0tUqT37l5zT0tJOsuDP16kio85iA==} + '@typescript-eslint/scope-manager@7.8.0': + resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==} engines: {node: ^18.18.0 || >=20.0.0} '@typescript-eslint/type-utils@5.62.0': @@ -3853,18 +3855,8 @@ packages: typescript: optional: true - '@typescript-eslint/type-utils@7.2.0': - resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/type-utils@7.5.0': - resolution: {integrity: sha512-A021Rj33+G8mx2Dqh0nMO9GyjjIBK3MqgVgZ2qlKf6CJy51wY/lkkFqq3TqqnH34XyAHUkq27IjlUkWlQRpLHw==} + '@typescript-eslint/type-utils@7.8.0': + resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -3881,12 +3873,8 @@ packages: resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@7.2.0': - resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/types@7.5.0': - resolution: {integrity: sha512-tv5B4IHeAdhR7uS4+bf8Ov3k793VEVHd45viRRkehIUZxm0WF82VPiLgHzA/Xl4TGPg1ZD49vfxBKFPecD5/mg==} + '@typescript-eslint/types@7.8.0': + resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==} engines: {node: ^18.18.0 || >=20.0.0} '@typescript-eslint/typescript-estree@5.62.0': @@ -3907,17 +3895,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@7.2.0': - resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/typescript-estree@7.5.0': - resolution: {integrity: sha512-YklQQfe0Rv2PZEueLTUffiQGKQneiIEKKnfIqPIOxgM9lKSZFCjT5Ad4VqRKj/U4+kQE3fa8YQpskViL7WjdPQ==} + '@typescript-eslint/typescript-estree@7.8.0': + resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -3937,14 +3916,8 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@7.2.0': - resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^8.56.0 - - '@typescript-eslint/utils@7.5.0': - resolution: {integrity: sha512-3vZl9u0R+/FLQcpy2EHyRGNqAS/ofJ3Ji8aebilfJe+fobK8+LbIFmrHciLVDxjDoONmufDcnVSF38KwMEOjzw==} + '@typescript-eslint/utils@7.8.0': + resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -3957,12 +3930,8 @@ packages: resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/visitor-keys@7.2.0': - resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/visitor-keys@7.5.0': - resolution: {integrity: sha512-mcuHM/QircmA6O7fy6nn2w/3ditQkj+SgtOc8DW3uQ10Yfj42amm2i+6F2K4YAOPNNTmE6iM1ynM6lrSwdendA==} + '@typescript-eslint/visitor-keys@7.8.0': + resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==} engines: {node: ^18.18.0 || >=20.0.0} '@ungap/structured-clone@1.2.0': @@ -3977,9 +3946,6 @@ packages: '@web-types/lit@2.0.0-3': resolution: {integrity: sha512-vZG6zfQ8+gM5Qsv0D5k9X8f/cBqk3y8qhgy0y5g+or+hi3PH6UNNMBMd6QRrlBZUoXCXR/cpVvfPTDj9w5FlwQ==} - '@webassemblyjs/ast@1.11.6': - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} - '@webassemblyjs/ast@1.12.1': resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} @@ -3989,9 +3955,6 @@ packages: '@webassemblyjs/helper-api-error@1.11.6': resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - '@webassemblyjs/helper-buffer@1.11.6': - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} - '@webassemblyjs/helper-buffer@1.12.1': resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} @@ -4001,9 +3964,6 @@ packages: '@webassemblyjs/helper-wasm-bytecode@1.11.6': resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - '@webassemblyjs/helper-wasm-section@1.11.6': - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} - '@webassemblyjs/helper-wasm-section@1.12.1': resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} @@ -4016,33 +3976,18 @@ packages: '@webassemblyjs/utf8@1.11.6': resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - '@webassemblyjs/wasm-edit@1.11.6': - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} - '@webassemblyjs/wasm-edit@1.12.1': resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} - '@webassemblyjs/wasm-gen@1.11.6': - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} - '@webassemblyjs/wasm-gen@1.12.1': resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} - '@webassemblyjs/wasm-opt@1.11.6': - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} - '@webassemblyjs/wasm-opt@1.12.1': resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} - '@webassemblyjs/wasm-parser@1.11.6': - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} - '@webassemblyjs/wasm-parser@1.12.1': resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} - '@webassemblyjs/wast-printer@1.11.6': - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} - '@webassemblyjs/wast-printer@1.12.1': resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} @@ -5057,8 +5002,8 @@ packages: core-js-compat@3.36.0: resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==} - core-js@3.36.1: - resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==} + core-js@3.37.0: + resolution: {integrity: sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==} core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} @@ -5115,8 +5060,8 @@ packages: peerDependencies: postcss: ^8.0.9 - css-functions-list@3.2.1: - resolution: {integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==} + css-functions-list@3.2.2: + resolution: {integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==} engines: {node: '>=12 || >=16'} css-loader@6.10.0: @@ -5230,13 +5175,13 @@ packages: cypress-each@1.14.0: resolution: {integrity: sha512-mUpF5KSSBy0kQaxYPLFswHceYoUMpXWRAJJ2LrcuHu1Vp5lgMw96lLtpDsNGID13FQhBfPSW6FmYBBCQqdJRBg==} - cypress-storybook@0.5.1: - resolution: {integrity: sha512-+CNDdcrFD3QRvHrjwpVclFpLtseyXA0NxeB3PDTheisvg/OJjLkP96t0I9R66IkZRYUUE3mLhqZpmpsv59FIIw==} + cypress-storybook@1.0.0: + resolution: {integrity: sha512-tXEhJwkD9SNsg9o9ZKI4XReTV4bpW60bcUQA6X7+j40Oqgt7atBg+oG2nMBJFf172v9cp6LX3fNTxvv7JFGVOA==} peerDependencies: cypress: '*' - cypress@13.7.2: - resolution: {integrity: sha512-FF5hFI5wlRIHY8urLZjJjj/YvfCBrRpglbZCLr/cYcL9MdDe0+5usa8kTIrDHthlEc9lwihbkb5dmwqBDNS2yw==} + cypress@13.9.0: + resolution: {integrity: sha512-atNjmYfHsvTuCaxTxLZr9xGoHz53LLui3266WWxXJHY7+N6OdwJdg/feEa3T+buez9dmUXHT1izCOklqG82uCQ==} engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -5588,10 +5533,6 @@ packages: resolution: {integrity: sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==} engines: {node: '>=10.2.0'} - enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} - enhanced-resolve@5.16.0: resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} engines: {node: '>=10.13.0'} @@ -5764,8 +5705,8 @@ packages: eslint-plugin-promise: ^6.0.0 typescript: '*' - eslint-config-next@14.1.4: - resolution: {integrity: sha512-cihIahbhYAWwXJwZkAaRPpUi5t9aOi/HdfWXOjZeUOqNWXHD8X22kd1KG58Dc3MVaRx3HoR/oMGk2ltcrqDn8g==} + eslint-config-next@14.2.3: + resolution: {integrity: sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -6190,6 +6131,9 @@ packages: flush-write-stream@1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} + focus-trap@7.5.4: + resolution: {integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==} + follow-redirects@1.15.6: resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} engines: {node: '>=4.0'} @@ -6398,13 +6342,14 @@ packages: engines: {node: '>=16 || 14 >=14.17'} hasBin: true - glob@10.3.12: - resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} - engines: {node: '>=16 || 14 >=14.17'} + glob@10.3.15: + resolution: {integrity: sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==} + engines: {node: '>=16 || 14 >=14.18'} hasBin: true glob@7.1.4: resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + deprecated: Glob versions prior to v9 are no longer supported glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} @@ -6734,8 +6679,8 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - iframe-resizer@4.3.9: - resolution: {integrity: sha512-MCt+V/THB4a9OcAdrWo5NsI2CRpeMM4ijhTfiLtsdgDJXWYXf62Ve8yO8rKGmYNs991zty/EolYOxActlkfU+A==} + iframe-resizer@4.3.11: + resolution: {integrity: sha512-5QtnsmfH11GDsuC7Gxd/eNzojudX3346Gb0E+Ku8ln8AtfSq+cWCZtnhCrthrtE7f1CI2/kwHkZ9G4sFYzHP7A==} engines: {node: '>=0.8.0'} ignore-walk@6.0.4: @@ -7596,9 +7541,6 @@ packages: resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} - known-css-properties@0.29.0: - resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==} - known-css-properties@0.30.0: resolution: {integrity: sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==} @@ -7692,23 +7634,14 @@ packages: enquirer: optional: true - lit-element@3.3.2: - resolution: {integrity: sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==} - lit-element@4.0.4: resolution: {integrity: sha512-98CvgulX6eCPs6TyAIQoJZBCQPo80rgXR+dVBs61cstJXqtI+USQZAbA4gFHh6L/mxBx9MrgPLHLsUgDUHAcCQ==} - lit-html@2.8.0: - resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} - - lit-html@3.1.2: - resolution: {integrity: sha512-3OBZSUrPnAHoKJ9AMjRL/m01YJxQMf+TMHanNtTHG68ubjnZxK0RFl102DPzsw4mWnHibfZIBJm3LWCZ/LmMvg==} + lit-html@3.1.3: + resolution: {integrity: sha512-FwIbqDD8O/8lM4vUZ4KvQZjPPNx7V1VhT7vmRB8RBAO0AU6wuTVdoXiu2CivVjEGdugvcbPNBLtPE1y0ifplHA==} - lit@2.8.0: - resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} - - lit@3.1.2: - resolution: {integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==} + lit@3.1.3: + resolution: {integrity: sha512-l4slfspEsnCcHVRTvaP7YnkTZEZggNFywLEIhQaGhYDczG+tu/vlgm/KaWIEjIp+ZyV20r2JnZctMb8LeLCG7Q==} load-json-file@1.1.0: resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} @@ -7788,8 +7721,8 @@ packages: resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} engines: {node: '>=8.0'} - long-press-event@2.4.6: - resolution: {integrity: sha512-59zL3M+uD7Q2DTuxJ2UkbVV3+0D9PrcI7zgem1AXRinH6g8mb7iN9vOKCqiVriW15S4L9OmKOr/d8q9qAaeCGQ==} + long-press-event@2.5.0: + resolution: {integrity: sha512-ku7TWKETdiRlgs66rnYk1UjZXVmYXHzY8ZTo/3xbw/kms+uZHte89X5jAQtQjsOJaYl6lLbAT9CW3gcMIooikA==} loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} @@ -7989,14 +7922,14 @@ packages: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} - minimatch@9.0.1: - resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} - engines: {node: '>=16 || 14 >=14.17'} - minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.4: + resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} + engines: {node: '>=16 || 14 >=14.17'} + minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -8035,10 +7968,6 @@ packages: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} - minipass@7.0.3: - resolution: {integrity: sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==} - engines: {node: '>=16 || 14 >=14.17'} - minipass@7.0.4: resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} engines: {node: '>=16 || 14 >=14.17'} @@ -8136,18 +8065,21 @@ packages: next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - next@14.1.4: - resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==} + next@14.2.3: + resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==} engines: {node: '>=18.17.0'} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': optional: true + '@playwright/test': + optional: true sass: optional: true @@ -8508,6 +8440,9 @@ packages: pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + pako@2.1.0: + resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} + parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -8590,14 +8525,14 @@ packages: resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} engines: {node: '>=0.10.0'} - path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} - path-scurry@1.10.2: resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} engines: {node: '>=16 || 14 >=14.17'} + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} @@ -9209,6 +9144,11 @@ packages: peerDependencies: react: ^18.2.0 + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} @@ -9227,6 +9167,10 @@ packages: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -9237,6 +9181,7 @@ packages: read-package-json@7.0.0: resolution: {integrity: sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==} engines: {node: ^16.14.0 || >=18.0.0} + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. read-pkg-up@1.0.1: resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} @@ -9276,10 +9221,6 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} - recast@0.23.4: - resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} - engines: {node: '>= 4'} - recast@0.23.6: resolution: {integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==} engines: {node: '>= 4'} @@ -9473,19 +9414,22 @@ packages: rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@5.0.5: - resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==} - engines: {node: '>=14'} + rimraf@5.0.7: + resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==} + engines: {node: '>=14.18'} hasBin: true rollup-plugin-inject@3.0.2: @@ -9599,8 +9543,8 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - sass@1.74.1: - resolution: {integrity: sha512-w0Z9p/rWZWelb88ISOLyvqTWGmtmu2QJICqDBGyNnfG4OUnPX9BBjjYIXUpXCMOOg5MQWNpqzt876la1fsTvUA==} + sass@1.77.1: + resolution: {integrity: sha512-OMEyfirt9XEfyvocduUIOlUSkWOXS/LAt6oblR/ISXCTukyavjex+zQNm51pPCOiFKY1QpWvEH1EeCkgyV3I6w==} engines: {node: '>=14.0.0'} hasBin: true @@ -9614,6 +9558,9 @@ packages: scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + schema-utils@3.1.2: resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==} engines: {node: '>= 10.13.0'} @@ -9726,9 +9673,6 @@ packages: shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} @@ -9940,8 +9884,8 @@ packages: store2@2.14.2: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} - storybook@8.0.8: - resolution: {integrity: sha512-9gTnnAakJBtMCg8oPGqnpy7g/C3Tj2IWiVflHiFg1SDD9zXBoc4mZhaYPTne4LRBUhXk7XuFagKfiRN2V/MuKA==} + storybook@8.0.10: + resolution: {integrity: sha512-9/4oxISopLyr5xz7Du27mmQgcIfB7UTLlNzkK4IklWTiSgsOgYgZpsmIwymoXNtkrvh+QsqskdcUP1C7nNiEtw==} hasBin: true stream-combiner@0.0.4: @@ -10104,14 +10048,14 @@ packages: prettier: '>=3.0.0' stylelint: '>=16.0.0' - stylelint-scss@6.2.1: - resolution: {integrity: sha512-ZoGLbVb1keZYRVGQlhB8G6sZOoNqw61whzzzGFWp05N12ErqLFfBv3JPrXiMLZaW98sBS7K/vUQhRnvUj4vwdw==} + stylelint-scss@6.3.0: + resolution: {integrity: sha512-8OSpiuf1xC7f8kllJsBOFAOYp/mR/C1FXMVeOFjtJPw+AFvEmC93FaklHt7MlOqU4poxuQ1TkYMyfI0V+1SxjA==} engines: {node: '>=18.12.0'} peerDependencies: stylelint: ^16.0.2 - stylelint@16.3.1: - resolution: {integrity: sha512-/JOwQnBvxEKOT2RtNgGpBVXnCSMBgKOL2k7w0K52htwCyJls4+cHvc4YZgXlVoAZS9QJd2DgYAiRnja96pTgxw==} + stylelint@16.5.0: + resolution: {integrity: sha512-IlCBtVrG+qTy3v+tZTk50W8BIomjY/RUuzdrDqdnlCYwVuzXtPbiGfxYqtyYAyOMcb+195zRsuHn6tgfPmFfbw==} engines: {node: '>=18.12.0'} hasBin: true @@ -10151,8 +10095,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - svgo@3.2.0: - resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==} + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} engines: {node: '>=14.0.0'} hasBin: true @@ -10169,8 +10113,8 @@ packages: tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} - table@6.8.1: - resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} + table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} engines: {node: '>=10.0.0'} tailwindcss@3.4.1: @@ -10278,9 +10222,6 @@ packages: resolution: {integrity: sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==} engines: {node: '>=0.10.0'} - tiny-invariant@1.3.1: - resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} - tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} @@ -10362,6 +10303,12 @@ packages: peerDependencies: typescript: '>=4.2.0' + ts-api-utils@1.3.0: + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + ts-dedent@2.2.0: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} @@ -10566,11 +10513,11 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici-types@6.15.0: - resolution: {integrity: sha512-zJlHmwXg6e41SGrTdd+1wOl00iGjscWSrhYkeANV7GPnDAZ2Z9kGVCgTVkpzcazNebHxN6x3zdSiKCE0JrWhsw==} + undici-types@6.16.1: + resolution: {integrity: sha512-iOd+ZQKljEITFeCuOOTXnZUpVggAivBEQPZGdGWsij0QjgZgGEzn2awf8TBhAer9IREcCtFYT3JpG6p+aJU/oA==} - undici@6.7.1: - resolution: {integrity: sha512-+Wtb9bAQw6HYWzCnxrPTMVEV3Q1QjYanI0E4q02ehReMuquQdLTEFEYbfs7hcImVYKcQkWSwT6buEmSVIiDDtQ==} + undici@6.11.1: + resolution: {integrity: sha512-KyhzaLJnV1qa3BSHdj4AZ2ndqI0QWPxYzaIOio0WzcEJB9gvuysprJSLtpvc2D9mhR9jPDUk7xlJlZbH2KR5iw==} engines: {node: '>=18.0'} unicode-canonical-property-names-ecmascript@2.0.0: @@ -10778,8 +10725,8 @@ packages: resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==} engines: {node: '>= 0.10'} - vite@5.1.5: - resolution: {integrity: sha512-BdN1xh0Of/oQafhU+FvopafUp6WaYenLU/NFoL5WyJL++GxkNfieKzBhM24H3HVsPQrlAqB7iJYTHabzaRed5Q==} + vite@5.1.7: + resolution: {integrity: sha512-sgnEEFTZYMui/sTlH1/XEnVNHMujOahPLGMxn1+5sIT45Xjng1Ec1K78jRP15dSmVgg5WBin9yO81j3o9OxofA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -11116,6 +11063,11 @@ packages: resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} engines: {node: '>= 14'} + yaml@2.4.3: + resolution: {integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==} + engines: {node: '>= 14'} + hasBin: true + yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} @@ -11161,8 +11113,8 @@ packages: resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} engines: {node: '>=12.20'} - zone.js@0.14.4: - resolution: {integrity: sha512-NtTUvIlNELez7Q1DzKVIFZBzNb646boQMgpATo9z3Ftuu/gWvzxCW7jdjcUDoRGxRikrhVHB/zLXh1hxeJawvw==} + zone.js@0.14.5: + resolution: {integrity: sha512-9XYWZzY6PhHOSdkYryNcMm7L8EK7a4q+GbTvxbIA2a9lMdRUpGuyaYvLDcg8D6bdn+JomSsbPcilVKg6SmUx6w==} snapshots: @@ -11170,30 +11122,25 @@ snapshots: '@alloc/quick-lru@5.2.0': {} - '@ampproject/remapping@2.2.1': - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.22 - '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@angular-devkit/architect@0.1703.3(chokidar@3.5.3)': + '@angular-devkit/architect@0.1703.7(chokidar@3.5.3)': dependencies: - '@angular-devkit/core': 17.3.3(chokidar@3.5.3) + '@angular-devkit/core': 17.3.7(chokidar@3.5.3) rxjs: 7.8.1 transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3)': + '@angular-devkit/build-angular@17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1703.3(chokidar@3.5.3) - '@angular-devkit/build-webpack': 0.1703.3(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1)) - '@angular-devkit/core': 17.3.3(chokidar@3.5.3) - '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@angular-devkit/architect': 0.1703.7(chokidar@3.5.3) + '@angular-devkit/build-webpack': 0.1703.7(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1)) + '@angular-devkit/core': 17.3.7(chokidar@3.5.3) + '@angular/compiler-cli': 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) '@babel/core': 7.24.0 '@babel/generator': 7.23.6 '@babel/helper-annotate-as-pure': 7.22.5 @@ -11204,8 +11151,8 @@ snapshots: '@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.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1)) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)) + '@ngtools/webpack': 17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)) ansi-colors: 4.1.3 autoprefixer: 10.4.18(postcss@8.4.35) babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1)) @@ -11246,8 +11193,8 @@ snapshots: tree-kill: 1.2.2 tslib: 2.6.2 typescript: 5.3.3 - undici: 6.7.1 - vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1) + undici: 6.11.1 + vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.1)(terser@5.29.1) watchpack: 2.4.0 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) @@ -11255,12 +11202,12 @@ snapshots: webpack-merge: 5.10.0 webpack-subresource-integrity: 5.1.0(webpack@5.90.3(esbuild@0.20.1)) optionalDependencies: - '@angular/localize': 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + '@angular/localize': 17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) esbuild: 0.20.1 jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) jest-environment-jsdom: 29.7.0 karma: 6.4.3 - ng-packagr: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3) + ng-packagr: 17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3) tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) transitivePeerDependencies: - '@rspack/core' @@ -11281,13 +11228,13 @@ snapshots: - utf-8-validate - webpack-cli - '@angular-devkit/build-angular@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@types/express@4.17.17)(@types/node@20.12.7)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.7))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3)': + '@angular-devkit/build-angular@17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@types/express@4.17.17)(@types/node@20.14.0)(chokidar@3.5.3)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.0))(karma@6.4.3)(ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3))(tailwindcss@3.4.1)(typescript@5.3.3)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1703.3(chokidar@3.5.3) - '@angular-devkit/build-webpack': 0.1703.3(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1)) - '@angular-devkit/core': 17.3.3(chokidar@3.5.3) - '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@angular-devkit/architect': 0.1703.7(chokidar@3.5.3) + '@angular-devkit/build-webpack': 0.1703.7(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1)) + '@angular-devkit/core': 17.3.7(chokidar@3.5.3) + '@angular/compiler-cli': 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) '@babel/core': 7.24.0 '@babel/generator': 7.23.6 '@babel/helper-annotate-as-pure': 7.22.5 @@ -11298,8 +11245,8 @@ snapshots: '@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.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1)) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)) + '@ngtools/webpack': 17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)) ansi-colors: 4.1.3 autoprefixer: 10.4.18(postcss@8.4.35) babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1)) @@ -11340,8 +11287,8 @@ snapshots: tree-kill: 1.2.2 tslib: 2.6.2 typescript: 5.3.3 - undici: 6.7.1 - vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + undici: 6.11.1 + vite: 5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) watchpack: 2.4.0 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) @@ -11349,13 +11296,13 @@ snapshots: webpack-merge: 5.10.0 webpack-subresource-integrity: 5.1.0(webpack@5.90.3(esbuild@0.20.1)) optionalDependencies: - '@angular/localize': 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + '@angular/localize': 17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) esbuild: 0.20.1 - jest: 29.7.0(@types/node@20.12.7) + jest: 29.7.0(@types/node@20.14.0) jest-environment-jsdom: 29.7.0 karma: 6.4.3 - ng-packagr: 17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) - tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + ng-packagr: 17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3) + tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -11375,9 +11322,9 @@ snapshots: - utf-8-validate - webpack-cli - '@angular-devkit/build-webpack@0.1703.3(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1))': + '@angular-devkit/build-webpack@0.1703.7(chokidar@3.5.3)(webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)))(webpack@5.90.3(esbuild@0.20.1))': dependencies: - '@angular-devkit/architect': 0.1703.3(chokidar@3.5.3) + '@angular-devkit/architect': 0.1703.7(chokidar@3.5.3) rxjs: 7.8.1 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-server: 4.15.1(webpack@5.90.3(esbuild@0.20.1)) @@ -11394,7 +11341,7 @@ snapshots: optionalDependencies: chokidar: 3.5.3 - '@angular-devkit/core@17.3.3(chokidar@3.5.3)': + '@angular-devkit/core@17.3.7(chokidar@3.5.3)': dependencies: ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) @@ -11415,9 +11362,9 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/schematics@17.3.3(chokidar@3.5.3)': + '@angular-devkit/schematics@17.3.7(chokidar@3.5.3)': dependencies: - '@angular-devkit/core': 17.3.3(chokidar@3.5.3) + '@angular-devkit/core': 17.3.7(chokidar@3.5.3) jsonc-parser: 3.2.1 magic-string: 0.30.8 ora: 5.4.1 @@ -11425,7 +11372,7 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-eslint/builder@17.3.0(eslint@8.57.0)(typescript@5.3.3)': + '@angular-eslint/builder@17.4.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: '@nx/devkit': 17.2.8(nx@17.2.8) eslint: 8.57.0 @@ -11436,14 +11383,14 @@ snapshots: - '@swc/core' - debug - '@angular-eslint/bundled-angular-compiler@17.3.0': {} + '@angular-eslint/bundled-angular-compiler@17.4.0': {} - '@angular-eslint/eslint-plugin-template@17.3.0(eslint@8.57.0)(typescript@5.3.3)': + '@angular-eslint/eslint-plugin-template@17.4.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 17.3.0 - '@angular-eslint/utils': 17.3.0(eslint@8.57.0)(typescript@5.3.3) - '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.3.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.3.3) + '@angular-eslint/bundled-angular-compiler': 17.4.0 + '@angular-eslint/utils': 17.4.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) aria-query: 5.3.0 axobject-query: 4.0.0 eslint: 8.57.0 @@ -11451,51 +11398,52 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular-eslint/eslint-plugin@17.3.0(eslint@8.57.0)(typescript@5.3.3)': + '@angular-eslint/eslint-plugin@17.4.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@angular-eslint/utils': 17.3.0(eslint@8.57.0)(typescript@5.3.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.3.3) + '@angular-eslint/bundled-angular-compiler': 17.4.0 + '@angular-eslint/utils': 17.4.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) eslint: 8.57.0 typescript: 5.3.3 transitivePeerDependencies: - supports-color - '@angular-eslint/template-parser@17.3.0(eslint@8.57.0)(typescript@5.3.3)': + '@angular-eslint/template-parser@17.4.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 17.3.0 + '@angular-eslint/bundled-angular-compiler': 17.4.0 eslint: 8.57.0 eslint-scope: 8.0.0 typescript: 5.3.3 - '@angular-eslint/utils@17.3.0(eslint@8.57.0)(typescript@5.3.3)': + '@angular-eslint/utils@17.4.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 17.3.0 - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.3.3) + '@angular-eslint/bundled-angular-compiler': 17.4.0 + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) eslint: 8.57.0 typescript: 5.3.3 transitivePeerDependencies: - supports-color - '@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))': + '@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))': dependencies: - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) tslib: 2.6.2 - '@angular/cdk@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)': + '@angular/cdk@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1)': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) rxjs: 7.8.1 tslib: 2.6.2 optionalDependencies: parse5: 7.1.2 - '@angular/cli@17.3.3(chokidar@3.5.3)': + '@angular/cli@17.3.7(chokidar@3.5.3)': dependencies: - '@angular-devkit/architect': 0.1703.3(chokidar@3.5.3) - '@angular-devkit/core': 17.3.3(chokidar@3.5.3) - '@angular-devkit/schematics': 17.3.3(chokidar@3.5.3) - '@schematics/angular': 17.3.3(chokidar@3.5.3) + '@angular-devkit/architect': 0.1703.7(chokidar@3.5.3) + '@angular-devkit/core': 17.3.7(chokidar@3.5.3) + '@angular-devkit/schematics': 17.3.7(chokidar@3.5.3) + '@schematics/angular': 17.3.7(chokidar@3.5.3) '@yarnpkg/lockfile': 1.1.0 ansi-colors: 4.1.3 ini: 4.1.2 @@ -11515,21 +11463,27 @@ snapshots: - chokidar - supports-color - '@angular/common@17.2.3(@angular/core@17.2.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)': + '@angular/common@17.2.3(@angular/core@17.2.3(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1)': dependencies: - '@angular/core': 17.2.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.2.3(rxjs@7.8.1)(zone.js@0.14.5) rxjs: 7.8.1 tslib: 2.6.2 - '@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)': + '@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1)': dependencies: - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.5) rxjs: 7.8.1 tslib: 2.6.2 - '@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3)': + '@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1)': dependencies: - '@angular/compiler': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + rxjs: 7.8.1 + tslib: 2.6.2 + + '@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3)': + dependencies: + '@angular/compiler': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) '@babel/core': 7.23.9 '@jridgewell/sourcemap-codec': 1.4.15 chokidar: 3.5.3 @@ -11542,50 +11496,56 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))': + '@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))': dependencies: tslib: 2.6.2 optionalDependencies: - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + + '@angular/core@15.0.4(rxjs@7.8.1)(zone.js@0.14.5)': + dependencies: + rxjs: 7.8.1 + tslib: 2.6.2 + zone.js: 0.14.5 - '@angular/core@15.0.4(rxjs@7.8.1)(zone.js@0.14.4)': + '@angular/core@17.2.3(rxjs@7.8.1)(zone.js@0.14.5)': dependencies: rxjs: 7.8.1 tslib: 2.6.2 - zone.js: 0.14.4 + zone.js: 0.14.5 - '@angular/core@17.2.3(rxjs@7.8.1)(zone.js@0.14.4)': + '@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.5)': dependencies: rxjs: 7.8.1 tslib: 2.6.2 - zone.js: 0.14.4 + zone.js: 0.14.5 - '@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)': + '@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)': dependencies: rxjs: 7.8.1 tslib: 2.6.2 - zone.js: 0.14.4 + zone.js: 0.14.5 - '@angular/elements@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1)': + '@angular/elements@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1)': dependencies: - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) rxjs: 7.8.1 tslib: 2.6.2 - '@angular/forms@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)': + '@angular/forms@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1)': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + '@angular/platform-browser': 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) rxjs: 7.8.1 tslib: 2.6.2 - '@angular/language-service@17.3.3': {} + '@angular/language-service@17.3.8': {} - '@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))': + '@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))': dependencies: - '@angular/compiler': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) - '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@angular/compiler': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) + '@angular/compiler-cli': 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) '@babel/core': 7.23.9 '@types/babel__core': 7.20.5 fast-glob: 3.3.2 @@ -11593,27 +11553,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/platform-browser-dynamic@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))': + '@angular/platform-browser-dynamic@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/compiler': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/compiler': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + '@angular/platform-browser': 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) tslib: 2.6.2 - '@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))': + '@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) tslib: 2.6.2 optionalDependencies: - '@angular/animations': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/animations': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) - '@angular/router@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)': + '@angular/router@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1)': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + '@angular/platform-browser': 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) rxjs: 7.8.1 tslib: 2.6.2 @@ -11632,30 +11592,30 @@ snapshots: '@babel/highlight': 7.24.2 chalk: 2.4.2 - '@babel/code-frame@7.23.5': - dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - '@babel/code-frame@7.24.2': dependencies: '@babel/highlight': 7.24.2 picocolors: 1.0.0 + '@babel/code-frame@7.24.6': + dependencies: + '@babel/highlight': 7.24.6 + picocolors: 1.0.0 + '@babel/compat-data@7.23.5': {} '@babel/core@7.23.9': dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) - '@babel/helpers': 7.23.9 - '@babel/parser': 7.23.9 - '@babel/template': 7.23.9 - '@babel/traverse': 7.23.9 - '@babel/types': 7.23.9 + '@babel/helpers': 7.24.4 + '@babel/parser': 7.24.4 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 convert-source-map: 2.0.0 debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 @@ -11667,8 +11627,8 @@ snapshots: '@babel/core@7.24.0': dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) '@babel/helpers': 7.24.4 @@ -11684,18 +11644,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.24.4': + '@babel/core@7.24.5': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.4 + '@babel/generator': 7.24.6 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helpers': 7.24.4 - '@babel/parser': 7.24.4 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.5) + '@babel/helpers': 7.24.6 + '@babel/parser': 7.24.6 '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/traverse': 7.24.6 + '@babel/types': 7.24.6 convert-source-map: 2.0.0 debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 @@ -11706,9 +11666,9 @@ snapshots: '@babel/generator@7.23.6': dependencies: - '@babel/types': 7.23.9 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.22 + '@babel/types': 7.24.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 '@babel/generator@7.24.4': @@ -11718,9 +11678,16 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - '@babel/helper-annotate-as-pure@7.22.5': + '@babel/generator@7.24.6': dependencies: - '@babel/types': 7.23.9 + '@babel/types': 7.24.6 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + '@babel/helper-annotate-as-pure@7.22.5': + dependencies: + '@babel/types': 7.24.0 '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: @@ -11747,15 +11714,15 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.24.4)': + '@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@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.22.20(@babel/core@7.24.4) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.5) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 @@ -11767,9 +11734,9 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)': + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 @@ -11778,18 +11745,18 @@ snapshots: dependencies: '@babel/core': 7.24.0 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.4)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -11800,18 +11767,18 @@ snapshots: dependencies: '@babel/core': 7.24.0 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.4)': + '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -11820,22 +11787,37 @@ snapshots: '@babel/helper-environment-visitor@7.22.20': {} + '@babel/helper-environment-visitor@7.24.6': {} + '@babel/helper-function-name@7.23.0': dependencies: '@babel/template': 7.24.0 '@babel/types': 7.24.0 + '@babel/helper-function-name@7.24.6': + dependencies: + '@babel/template': 7.24.6 + '@babel/types': 7.24.6 + '@babel/helper-hoist-variables@7.22.5': dependencies: '@babel/types': 7.24.0 + '@babel/helper-hoist-variables@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-member-expression-to-functions@7.23.0': dependencies: '@babel/types': 7.24.0 '@babel/helper-module-imports@7.22.15': dependencies: - '@babel/types': 7.23.9 + '@babel/types': 7.24.0 + + '@babel/helper-module-imports@7.24.6': + dependencies: + '@babel/types': 7.24.6 '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9)': dependencies: @@ -11855,21 +11837,28 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)': + '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-simple-access': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 + '@babel/helper-optimise-call-expression@7.22.5': dependencies: '@babel/types': 7.24.0 - '@babel/helper-plugin-utils@7.22.5': {} - '@babel/helper-plugin-utils@7.24.0': {} '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.0)': @@ -11879,9 +11868,9 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)': + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 @@ -11893,9 +11882,9 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.4)': + '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -11904,18 +11893,30 @@ snapshots: dependencies: '@babel/types': 7.24.0 + '@babel/helper-simple-access@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: - '@babel/types': 7.23.9 + '@babel/types': 7.24.0 '@babel/helper-split-export-declaration@7.22.6': dependencies: - '@babel/types': 7.23.9 + '@babel/types': 7.24.0 + + '@babel/helper-split-export-declaration@7.24.6': + dependencies: + '@babel/types': 7.24.6 '@babel/helper-string-parser@7.23.4': {} + '@babel/helper-string-parser@7.24.6': {} + '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.6': {} + '@babel/helper-validator-option@7.23.5': {} '@babel/helper-wrap-function@7.22.20': @@ -11924,14 +11925,6 @@ snapshots: '@babel/template': 7.24.0 '@babel/types': 7.24.0 - '@babel/helpers@7.23.9': - dependencies: - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - transitivePeerDependencies: - - supports-color - '@babel/helpers@7.24.4': dependencies: '@babel/template': 7.24.0 @@ -11940,11 +11933,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/highlight@7.23.4': + '@babel/helpers@7.24.6': dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 + '@babel/template': 7.24.6 + '@babel/types': 7.24.6 '@babel/highlight@7.24.2': dependencies: @@ -11953,345 +11945,352 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.0.0 - '@babel/parser@7.23.9': + '@babel/highlight@7.24.6': dependencies: - '@babel/types': 7.23.9 + '@babel/helper-validator-identifier': 7.24.6 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 '@babel/parser@7.24.4': dependencies: '@babel/types': 7.24.0 + '@babel/parser@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.5) '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.4)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 + '@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) - '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.4)': + '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5) '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0) - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.0)': dependencies: @@ -12305,114 +12304,114 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.4)': + '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@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.22.20(@babel/core@7.24.4) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.5) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.24.0 - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.24.0 '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.5) '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.4)': + '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.0)': @@ -12420,83 +12419,83 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0) - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.0)': @@ -12504,74 +12503,74 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-identifier': 7.22.20 - '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.4)': + '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-identifier': 7.22.20 '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)': + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0) - '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.0)': dependencies: @@ -12581,131 +12580,121 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0) '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0) - '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4)': + '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@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.4) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.5) '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.5) '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@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.0) - '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@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.4) - - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.0)': - dependencies: - '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.4)': - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4)': + '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0) - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-runtime@7.24.0(@babel/core@7.24.0)': dependencies: @@ -12722,108 +12711,108 @@ snapshots: '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typescript@7.23.5(@babel/core@7.24.4)': + '@babel/plugin-transform-typescript@7.23.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.4) + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.24.5) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.5) '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.0 '@babel/preset-env@7.24.0(@babel/core@7.24.0)': dependencies: @@ -12887,7 +12876,7 @@ snapshots: '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.0) '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.0) '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0) '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.0) '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.0) '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.0) @@ -12911,125 +12900,125 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-env@7.24.0(@babel/core@7.24.4)': + '@babel/preset-env@7.24.0(@babel/core@7.24.5)': dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@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.23.3(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.4) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.4) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.4) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.4) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.4) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4) - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4) - babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.4) - babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.5) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.5) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.5) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.5) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.5) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.5) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.5) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.5) + babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.5) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.5) core-js-compat: 3.36.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.23.3(@babel/core@7.24.4)': + '@babel/preset-flow@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.5) '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/types': 7.24.0 esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.0 '@babel/types': 7.24.0 esutils: 2.0.3 - '@babel/preset-typescript@7.23.3(@babel/core@7.24.4)': + '@babel/preset-typescript@7.23.3(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.24.4) + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.24.5) - '@babel/register@7.22.15(@babel/core@7.24.4)': + '@babel/register@7.22.15(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -13054,19 +13043,19 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.23.9': + '@babel/template@7.24.0': dependencies: '@babel/code-frame': 7.24.2 - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 - '@babel/template@7.24.0': + '@babel/template@7.24.6': dependencies: - '@babel/code-frame': 7.24.2 - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 - '@babel/traverse@7.23.9': + '@babel/traverse@7.24.1': dependencies: '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.4 @@ -13081,31 +13070,31 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/traverse@7.24.1': + '@babel/traverse@7.24.6': dependencies: - '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.4 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.23.9': + '@babel/types@7.24.0': dependencies: '@babel/helper-string-parser': 7.23.4 '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 - '@babel/types@7.24.0': + '@babel/types@7.24.6': dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-string-parser': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 to-fast-properties: 2.0.0 '@bcoe/v8-coverage@0.2.3': {} @@ -13314,10 +13303,10 @@ snapshots: tunnel-agent: 0.6.0 uuid: 8.3.2 - '@cypress/schematic@2.5.1(@angular/cli@17.3.3(chokidar@3.5.3))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))': + '@cypress/schematic@2.5.1(@angular/cli@17.3.7(chokidar@3.5.3))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))': dependencies: - '@angular/cli': 17.3.3(chokidar@3.5.3) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/cli': 17.3.7(chokidar@3.5.3) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) jsonc-parser: 3.2.0 rxjs: 6.6.7 @@ -13332,9 +13321,9 @@ snapshots: '@dual-bundle/import-meta-resolve@4.0.0': {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': dependencies: - react: 18.2.0 + react: 18.3.1 '@esbuild/aix-ppc64@0.19.12': optional: true @@ -13484,6 +13473,8 @@ snapshots: eslint: 8.57.0 eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.10.1': {} + '@eslint-community/regexpp@4.6.2': {} '@eslint/eslintrc@2.1.4': @@ -13506,39 +13497,29 @@ snapshots: '@fal-works/esbuild-plugin-global-externals@2.1.2': {} - '@figspec/components@1.0.2': - dependencies: - lit: 2.8.0 - - '@figspec/react@1.0.3(react@18.2.0)': - dependencies: - '@figspec/components': 1.0.2 - '@lit-labs/react': 1.2.1 - react: 18.2.0 - '@floating-ui/core@1.6.0': dependencies: '@floating-ui/utils': 0.2.1 - '@floating-ui/dom@1.6.3': + '@floating-ui/dom@1.6.5': dependencies: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 '@floating-ui/utils@0.2.1': {} - '@geometricpanda/storybook-addon-badges@2.0.2(@storybook/blocks@8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/components@8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/core-events@8.0.8)(@storybook/manager-api@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/preview-api@8.0.8)(@storybook/theming@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/types@8.0.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@geometricpanda/storybook-addon-badges@2.0.2(@storybook/blocks@8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/components@8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/core-events@8.0.10)(@storybook/manager-api@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/preview-api@8.0.10)(@storybook/theming@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/types@8.0.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/components': 8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 8.0.8 - '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 8.0.8 - '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.5 + '@storybook/blocks': 8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-events': 8.0.10 + '@storybook/manager-api': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-api': 8.0.10 + '@storybook/theming': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.10 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@hapi/hoek@9.3.0': {} @@ -13590,27 +13571,27 @@ snapshots: '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -13630,22 +13611,23 @@ snapshots: - babel-plugin-macros - supports-color - ts-node + optional: true - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -13666,21 +13648,56 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.8.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -13705,7 +13722,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -13723,7 +13740,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.1.0 - '@types/node': 20.12.7 + '@types/node': 20.14.0 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -13745,7 +13762,7 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.12.7 + '@types/node': 20.14.0 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -13792,7 +13809,7 @@ snapshots: '@jest/transform@29.7.0': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -13815,7 +13832,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/yargs': 17.0.24 chalk: 4.1.2 @@ -13861,16 +13878,8 @@ snapshots: '@leichtgewicht/ip-codec@2.0.4': {} - '@lit-labs/react@1.2.1': {} - - '@lit-labs/ssr-dom-shim@1.1.2': {} - '@lit-labs/ssr-dom-shim@1.2.0': {} - '@lit/reactive-element@1.6.2': - dependencies: - '@lit-labs/ssr-dom-shim': 1.1.2 - '@lit/reactive-element@2.0.4': dependencies: '@lit-labs/ssr-dom-shim': 1.2.0 @@ -13899,11 +13908,11 @@ snapshots: globby: 11.1.0 read-yaml-file: 1.1.0 - '@mdx-js/react@3.0.1(@types/react@18.2.74)(react@18.2.0)': + '@mdx-js/react@3.0.1(@types/react@18.3.2)(react@18.3.1)': dependencies: - '@types/mdx': 2.0.12 - '@types/react': 18.2.74 - react: 18.2.0 + '@types/mdx': 2.0.13 + '@types/react': 18.3.2 + react: 18.3.1 '@ndelangen/get-tarball@3.0.9': dependencies: @@ -13911,52 +13920,52 @@ snapshots: pump: 3.0.0 tar-fs: 2.1.1 - '@next/env@14.1.4': {} + '@next/env@14.2.3': {} - '@next/eslint-plugin-next@14.1.4': + '@next/eslint-plugin-next@14.2.3': dependencies: glob: 10.3.10 - '@next/swc-darwin-arm64@14.1.4': + '@next/swc-darwin-arm64@14.2.3': optional: true - '@next/swc-darwin-x64@14.1.4': + '@next/swc-darwin-x64@14.2.3': optional: true - '@next/swc-linux-arm64-gnu@14.1.4': + '@next/swc-linux-arm64-gnu@14.2.3': optional: true - '@next/swc-linux-arm64-musl@14.1.4': + '@next/swc-linux-arm64-musl@14.2.3': optional: true - '@next/swc-linux-x64-gnu@14.1.4': + '@next/swc-linux-x64-gnu@14.2.3': optional: true - '@next/swc-linux-x64-musl@14.1.4': + '@next/swc-linux-x64-musl@14.2.3': optional: true - '@next/swc-win32-arm64-msvc@14.1.4': + '@next/swc-win32-arm64-msvc@14.2.3': optional: true - '@next/swc-win32-ia32-msvc@14.1.4': + '@next/swc-win32-ia32-msvc@14.2.3': optional: true - '@next/swc-win32-x64-msvc@14.1.4': + '@next/swc-win32-x64-msvc@14.2.3': optional: true - '@ng-bootstrap/ng-bootstrap@16.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/forms@17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1))(@angular/localize@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))))(@popperjs/core@2.11.8)(rxjs@7.8.1)': + '@ng-bootstrap/ng-bootstrap@16.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/forms@17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1))(@angular/localize@17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))))(@popperjs/core@2.11.8)(rxjs@7.8.1)': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/forms': 17.3.3(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1) - '@angular/localize': 17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + '@angular/forms': 17.3.8(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1) + '@angular/localize': 17.3.8(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))) '@popperjs/core': 2.11.8 rxjs: 7.8.1 tslib: 2.6.2 - '@ngtools/webpack@17.3.3(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1))': + '@ngtools/webpack@17.3.7(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(typescript@5.3.3)(webpack@5.90.3(esbuild@0.20.1))': dependencies: - '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@angular/compiler-cli': 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3) typescript: 5.3.3 webpack: 5.90.3(esbuild@0.20.1) @@ -14009,7 +14018,7 @@ snapshots: '@npmcli/package-json@5.0.0': dependencies: '@npmcli/git': 5.0.4 - glob: 10.3.12 + glob: 10.3.15 hosted-git-info: 7.0.1 json-parse-even-better-errors: 3.0.0 normalize-package-data: 6.0.0 @@ -14053,7 +14062,7 @@ snapshots: '@nrwl/devkit': 17.2.8(nx@17.2.8) ejs: 3.1.9 enquirer: 2.3.6 - ignore: 5.3.0 + ignore: 5.3.1 nx: 17.2.8 semver: 7.5.3 tmp: 0.2.1 @@ -14091,48 +14100,48 @@ snapshots: '@oddbird/popover-polyfill@0.3.7': {} - '@open-wc/lit-helpers@0.7.0(lit@3.1.2)': + '@open-wc/lit-helpers@0.7.0(lit@3.1.3)': dependencies: - lit: 3.1.2 + lit: 3.1.3 - '@percy/cli-app@1.28.2': + '@percy/cli-app@1.28.6': dependencies: - '@percy/cli-command': 1.28.2 - '@percy/cli-exec': 1.28.2 + '@percy/cli-command': 1.28.6 + '@percy/cli-exec': 1.28.6 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/cli-build@1.28.2': + '@percy/cli-build@1.28.6': dependencies: - '@percy/cli-command': 1.28.2 + '@percy/cli-command': 1.28.6 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/cli-command@1.28.2': + '@percy/cli-command@1.28.6': dependencies: - '@percy/config': 1.28.2 - '@percy/core': 1.28.2 - '@percy/logger': 1.28.2 + '@percy/config': 1.28.6 + '@percy/core': 1.28.6 + '@percy/logger': 1.28.6 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/cli-config@1.28.2': + '@percy/cli-config@1.28.6': dependencies: - '@percy/cli-command': 1.28.2 + '@percy/cli-command': 1.28.6 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/cli-exec@1.28.2': + '@percy/cli-exec@1.28.6': dependencies: - '@percy/cli-command': 1.28.2 + '@percy/cli-command': 1.28.6 cross-spawn: 7.0.3 which: 2.0.2 transitivePeerDependencies: @@ -14140,18 +14149,18 @@ snapshots: - supports-color - utf-8-validate - '@percy/cli-snapshot@1.28.2': + '@percy/cli-snapshot@1.28.6': dependencies: - '@percy/cli-command': 1.28.2 + '@percy/cli-command': 1.28.6 yaml: 2.3.4 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/cli-upload@1.28.2': + '@percy/cli-upload@1.28.6': dependencies: - '@percy/cli-command': 1.28.2 + '@percy/cli-command': 1.28.6 fast-glob: 3.3.2 image-size: 1.0.2 transitivePeerDependencies: @@ -14159,104 +14168,107 @@ snapshots: - supports-color - utf-8-validate - '@percy/cli@1.28.2': - dependencies: - '@percy/cli-app': 1.28.2 - '@percy/cli-build': 1.28.2 - '@percy/cli-command': 1.28.2 - '@percy/cli-config': 1.28.2 - '@percy/cli-exec': 1.28.2 - '@percy/cli-snapshot': 1.28.2 - '@percy/cli-upload': 1.28.2 - '@percy/client': 1.28.2 - '@percy/logger': 1.28.2 + '@percy/cli@1.28.6': + dependencies: + '@percy/cli-app': 1.28.6 + '@percy/cli-build': 1.28.6 + '@percy/cli-command': 1.28.6 + '@percy/cli-config': 1.28.6 + '@percy/cli-exec': 1.28.6 + '@percy/cli-snapshot': 1.28.6 + '@percy/cli-upload': 1.28.6 + '@percy/client': 1.28.6 + '@percy/logger': 1.28.6 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/client@1.28.2': + '@percy/client@1.28.6': dependencies: - '@percy/env': 1.28.2 - '@percy/logger': 1.28.2 + '@percy/env': 1.28.6 + '@percy/logger': 1.28.6 + pako: 2.1.0 - '@percy/config@1.28.2': + '@percy/config@1.28.6': dependencies: - '@percy/logger': 1.28.2 + '@percy/logger': 1.28.6 ajv: 8.12.0 cosmiconfig: 8.2.0 yaml: 2.3.4 - '@percy/core@1.28.2': + '@percy/core@1.28.6': dependencies: - '@percy/client': 1.28.2 - '@percy/config': 1.28.2 - '@percy/dom': 1.28.2 - '@percy/logger': 1.28.2 - '@percy/webdriver-utils': 1.28.2 + '@percy/client': 1.28.6 + '@percy/config': 1.28.6 + '@percy/dom': 1.28.6 + '@percy/logger': 1.28.6 + '@percy/webdriver-utils': 1.28.6 content-disposition: 0.5.4 cross-spawn: 7.0.3 extract-zip: 2.0.1(supports-color@8.1.1) fast-glob: 3.3.2 micromatch: 4.0.5 mime-types: 2.1.35 + pako: 2.1.0 path-to-regexp: 6.2.1 rimraf: 3.0.2 - ws: 8.13.0 + ws: 8.16.0 + yaml: 2.4.3 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@percy/cypress@3.1.2(cypress@13.7.2)': + '@percy/cypress@3.1.2(cypress@13.9.0)': dependencies: '@percy/sdk-utils': 1.24.0 - cypress: 13.7.2 + cypress: 13.9.0 - '@percy/dom@1.28.2': {} + '@percy/dom@1.28.6': {} - '@percy/env@1.28.2': + '@percy/env@1.28.6': dependencies: - '@percy/logger': 1.28.2 + '@percy/logger': 1.28.6 - '@percy/logger@1.28.2': {} + '@percy/logger@1.28.6': {} '@percy/sdk-utils@1.24.0': {} - '@percy/sdk-utils@1.28.2': {} + '@percy/sdk-utils@1.28.6': {} - '@percy/webdriver-utils@1.28.2': + '@percy/webdriver-utils@1.28.6': dependencies: - '@percy/config': 1.28.2 - '@percy/sdk-utils': 1.28.2 + '@percy/config': 1.28.6 + '@percy/sdk-utils': 1.28.6 '@pkgjs/parseargs@0.11.0': optional: true '@popperjs/core@2.11.8': {} - '@pxtrn/storybook-addon-docs-stencil@6.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@pxtrn/storybook-addon-docs-stencil@6.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 transitivePeerDependencies: - react - react-dom - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.74)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.2)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.74 + '@types/react': 18.3.2 - '@radix-ui/react-slot@1.0.2(@types/react@18.2.74)(react@18.2.0)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.2)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.74)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.74 + '@types/react': 18.3.2 '@rollup/plugin-json@6.1.0(rollup@4.13.0)': dependencies: @@ -14330,10 +14342,10 @@ snapshots: '@rushstack/eslint-patch@1.7.2': {} - '@schematics/angular@17.3.3(chokidar@3.5.3)': + '@schematics/angular@17.3.7(chokidar@3.5.3)': dependencies: - '@angular-devkit/core': 17.3.3(chokidar@3.5.3) - '@angular-devkit/schematics': 17.3.3(chokidar@3.5.3) + '@angular-devkit/core': 17.3.7(chokidar@3.5.3) + '@angular-devkit/schematics': 17.3.7(chokidar@3.5.3) jsonc-parser: 3.2.1 transitivePeerDependencies: - chokidar @@ -14406,10 +14418,10 @@ snapshots: - supports-color - utf-8-validate - '@stencil-community/eslint-plugin@0.7.2(@typescript-eslint/eslint-plugin@7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5))(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5))(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0)(typescript@4.9.5)': + '@stencil-community/eslint-plugin@0.7.2(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5))(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5))(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0)(typescript@4.9.5)': dependencies: - '@typescript-eslint/eslint-plugin': 7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/parser': 7.5.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@4.9.5) eslint: 8.57.0 eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-utils: 3.0.0(eslint@8.57.0) @@ -14422,48 +14434,42 @@ snapshots: - supports-color - utf-8-validate - '@stencil/angular-output-target@0.8.4(@stencil/core@4.17.2)': + '@stencil/angular-output-target@0.8.4(@stencil/core@4.18.0)': dependencies: - '@stencil/core': 4.17.2 - - '@stencil/core@4.14.0': {} + '@stencil/core': 4.18.0 - '@stencil/core@4.17.2': {} - - '@stencil/react-output-target@0.5.3(@stencil/core@4.17.2)': - dependencies: - '@stencil/core': 4.17.2 + '@stencil/core@4.18.0': {} - '@stencil/sass@3.0.11(@stencil/core@4.14.0)': + '@stencil/react-output-target@0.5.3(@stencil/core@4.18.0)': dependencies: - '@stencil/core': 4.14.0 + '@stencil/core': 4.18.0 - '@stencil/sass@3.0.11(@stencil/core@4.17.2)': + '@stencil/sass@3.0.12(@stencil/core@4.18.0)': dependencies: - '@stencil/core': 4.17.2 + '@stencil/core': 4.18.0 - '@stencil/store@2.0.15(@stencil/core@4.14.0)': + '@stencil/store@2.0.16(@stencil/core@4.18.0)': dependencies: - '@stencil/core': 4.14.0 + '@stencil/core': 4.18.0 - '@storybook/addon-actions@8.0.8': + '@storybook/addon-actions@8.0.10': dependencies: - '@storybook/core-events': 8.0.8 + '@storybook/core-events': 8.0.10 '@storybook/global': 5.0.0 '@types/uuid': 9.0.7 dequal: 2.0.3 polished: 4.2.2 uuid: 9.0.0 - '@storybook/addon-backgrounds@8.0.8': + '@storybook/addon-backgrounds@8.0.10': dependencies: '@storybook/global': 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-controls@8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/addon-controls@8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/blocks': 8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -14473,38 +14479,25 @@ snapshots: - react-dom - supports-color - '@storybook/addon-designs@7.0.9(@storybook/addon-docs@8.0.8(encoding@0.1.13))(@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/components@8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/manager-api@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@storybook/preview-api@8.0.8)(@storybook/theming@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/addon-docs@8.0.10(encoding@0.1.13)': dependencies: - '@figspec/react': 1.0.3(react@18.2.0) - '@storybook/addon-docs': 8.0.8(encoding@0.1.13) - '@storybook/addons': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/components': 8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 8.0.8 - '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@storybook/addon-docs@8.0.8(encoding@0.1.13)': - dependencies: - '@babel/core': 7.24.4 - '@mdx-js/react': 3.0.1(@types/react@18.2.74)(react@18.2.0) - '@storybook/blocks': 8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 8.0.8 - '@storybook/components': 8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/csf-plugin': 8.0.8 - '@storybook/csf-tools': 8.0.8 + '@babel/core': 7.24.5 + '@mdx-js/react': 3.0.1(@types/react@18.3.2)(react@18.3.1) + '@storybook/blocks': 8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-logger': 8.0.10 + '@storybook/components': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/csf-plugin': 8.0.10 + '@storybook/csf-tools': 8.0.10 '@storybook/global': 5.0.0 - '@storybook/node-logger': 8.0.8 - '@storybook/preview-api': 8.0.8 - '@storybook/react-dom-shim': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.8 - '@types/react': 18.2.74 + '@storybook/node-logger': 8.0.10 + '@storybook/preview-api': 8.0.10 + '@storybook/react-dom-shim': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.10 + '@types/react': 18.3.2 fs-extra: 11.1.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rehype-external-links: 3.0.0 rehype-slug: 6.0.0 ts-dedent: 2.2.0 @@ -14512,21 +14505,21 @@ snapshots: - encoding - supports-color - '@storybook/addon-essentials@8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addon-actions': 8.0.8 - '@storybook/addon-backgrounds': 8.0.8 - '@storybook/addon-controls': 8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-docs': 8.0.8(encoding@0.1.13) - '@storybook/addon-highlight': 8.0.8 - '@storybook/addon-measure': 8.0.8 - '@storybook/addon-outline': 8.0.8 - '@storybook/addon-toolbars': 8.0.8 - '@storybook/addon-viewport': 8.0.8 - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 8.0.8 - '@storybook/preview-api': 8.0.8 + '@storybook/addon-essentials@8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@storybook/addon-actions': 8.0.10 + '@storybook/addon-backgrounds': 8.0.10 + '@storybook/addon-controls': 8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-docs': 8.0.10(encoding@0.1.13) + '@storybook/addon-highlight': 8.0.10 + '@storybook/addon-measure': 8.0.10 + '@storybook/addon-outline': 8.0.10 + '@storybook/addon-toolbars': 8.0.10 + '@storybook/addon-viewport': 8.0.10 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/manager-api': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/node-logger': 8.0.10 + '@storybook/preview-api': 8.0.10 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -14535,105 +14528,105 @@ snapshots: - react-dom - supports-color - '@storybook/addon-highlight@8.0.8': + '@storybook/addon-highlight@8.0.10': dependencies: '@storybook/global': 5.0.0 - '@storybook/addon-links@8.0.8(react@18.2.0)': + '@storybook/addon-links@8.0.10(react@18.3.1)': dependencies: - '@storybook/csf': 0.1.2 + '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 + react: 18.3.1 - '@storybook/addon-measure@8.0.8': + '@storybook/addon-measure@8.0.10': dependencies: '@storybook/global': 5.0.0 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 - '@storybook/addon-outline@8.0.8': + '@storybook/addon-outline@8.0.10': dependencies: '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - '@storybook/addon-toolbars@8.0.8': {} + '@storybook/addon-toolbars@8.0.10': {} - '@storybook/addon-viewport@8.0.8': + '@storybook/addon-viewport@8.0.10': dependencies: memoizerific: 1.11.3 - '@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/addons@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/manager-api': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.6.17 '@storybook/types': 7.6.17 transitivePeerDependencies: - react - react-dom - '@storybook/api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - core-js: 3.36.1 + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.37.0 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 store2: 2.14.2 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/blocks@8.0.8(@types/react@18.2.74)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/blocks@8.0.10(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/channels': 8.0.8 - '@storybook/client-logger': 8.0.8 - '@storybook/components': 8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 8.0.8 - '@storybook/csf': 0.1.2 - '@storybook/docs-tools': 8.0.8(encoding@0.1.13) + '@storybook/channels': 8.0.10 + '@storybook/client-logger': 8.0.10 + '@storybook/components': 8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-events': 8.0.10 + '@storybook/csf': 0.1.8 + '@storybook/docs-tools': 8.0.10(encoding@0.1.13) '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 8.0.8 - '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.8 + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-api': 8.0.10 + '@storybook/theming': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.10 '@types/lodash': 4.14.194 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2(react@18.2.0) + markdown-to-jsx: 7.3.2(react@18.3.1) memoizerific: 1.11.3 polished: 4.2.2 - react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) telejson: 7.2.0 tocbot: 4.21.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - encoding - supports-color - '@storybook/builder-manager@8.0.8(encoding@0.1.13)': + '@storybook/builder-manager@8.0.10(encoding@0.1.13)': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/manager': 8.0.8 - '@storybook/node-logger': 8.0.8 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/manager': 8.0.10 + '@storybook/node-logger': 8.0.10 '@types/ejs': 3.1.2 '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.1) browser-assert: 1.2.1 @@ -14648,17 +14641,17 @@ snapshots: - encoding - supports-color - '@storybook/builder-vite@8.0.8(encoding@0.1.13)(typescript@5.3.3)(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1))': - dependencies: - '@storybook/channels': 8.0.8 - '@storybook/client-logger': 8.0.8 - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/core-events': 8.0.8 - '@storybook/csf-plugin': 8.0.8 - '@storybook/node-logger': 8.0.8 - '@storybook/preview': 8.0.8 - '@storybook/preview-api': 8.0.8 - '@storybook/types': 8.0.8 + '@storybook/builder-vite@8.0.10(encoding@0.1.13)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.1)(terser@5.29.1))': + dependencies: + '@storybook/channels': 8.0.10 + '@storybook/client-logger': 8.0.10 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/core-events': 8.0.10 + '@storybook/csf-plugin': 8.0.10 + '@storybook/node-logger': 8.0.10 + '@storybook/preview': 8.0.10 + '@storybook/preview-api': 8.0.10 + '@storybook/types': 8.0.10 '@types/find-cache-dir': 3.2.1 browser-assert: 1.2.1 es-module-lexer: 0.9.3 @@ -14667,7 +14660,7 @@ snapshots: fs-extra: 11.1.1 magic-string: 0.30.8 ts-dedent: 2.2.0 - vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1) + vite: 5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.1)(terser@5.29.1) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -14676,7 +14669,7 @@ snapshots: '@storybook/channels@6.5.16': dependencies: - core-js: 3.36.1 + core-js: 3.37.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -14687,37 +14680,29 @@ snapshots: '@storybook/global': 5.0.0 qs: 6.11.2 telejson: 7.2.0 - tiny-invariant: 1.3.1 - - '@storybook/channels@8.0.5': - dependencies: - '@storybook/client-logger': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/global': 5.0.0 - telejson: 7.2.0 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 - '@storybook/channels@8.0.8': + '@storybook/channels@8.0.10': dependencies: - '@storybook/client-logger': 8.0.8 - '@storybook/core-events': 8.0.8 + '@storybook/client-logger': 8.0.10 + '@storybook/core-events': 8.0.10 '@storybook/global': 5.0.0 telejson: 7.2.0 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 - '@storybook/cli@8.0.8(@babel/preset-env@7.24.0(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/cli@8.0.10(@babel/preset-env@7.24.0(@babel/core@7.24.5))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/types': 7.24.0 '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 8.0.8 - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/core-events': 8.0.8 - '@storybook/core-server': 8.0.8(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/csf-tools': 8.0.8 - '@storybook/node-logger': 8.0.8 - '@storybook/telemetry': 8.0.8(encoding@0.1.13) - '@storybook/types': 8.0.8 + '@storybook/codemod': 8.0.10 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/core-events': 8.0.10 + '@storybook/core-server': 8.0.10(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/csf-tools': 8.0.10 + '@storybook/node-logger': 8.0.10 + '@storybook/telemetry': 8.0.10(encoding@0.1.13) + '@storybook/types': 8.0.10 '@types/semver': 7.5.0 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 @@ -14732,7 +14717,7 @@ snapshots: get-npm-tarball-url: 2.0.3 giget: 1.1.2 globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.24.0(@babel/core@7.24.4)) + jscodeshift: 0.15.1(@babel/preset-env@7.24.0(@babel/core@7.24.5)) leven: 3.1.0 ora: 5.4.1 prettier: 3.2.5 @@ -14741,7 +14726,7 @@ snapshots: semver: 7.6.0 strip-json-comments: 3.1.1 tempy: 1.0.1 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 ts-dedent: 2.2.0 transitivePeerDependencies: - '@babel/preset-env' @@ -14754,63 +14739,59 @@ snapshots: '@storybook/client-logger@6.5.16': dependencies: - core-js: 3.36.1 + core-js: 3.37.0 global: 4.4.0 '@storybook/client-logger@7.6.17': dependencies: '@storybook/global': 5.0.0 - '@storybook/client-logger@8.0.5': - dependencies: - '@storybook/global': 5.0.0 - - '@storybook/client-logger@8.0.8': + '@storybook/client-logger@8.0.10': dependencies: '@storybook/global': 5.0.0 - '@storybook/codemod@8.0.8': + '@storybook/codemod@8.0.10': dependencies: - '@babel/core': 7.24.4 - '@babel/preset-env': 7.24.0(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/preset-env': 7.24.0(@babel/core@7.24.5) '@babel/types': 7.24.0 - '@storybook/csf': 0.1.2 - '@storybook/csf-tools': 8.0.8 - '@storybook/node-logger': 8.0.8 - '@storybook/types': 8.0.8 + '@storybook/csf': 0.1.8 + '@storybook/csf-tools': 8.0.10 + '@storybook/node-logger': 8.0.10 + '@storybook/types': 8.0.10 '@types/cross-spawn': 6.0.2 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.24.0(@babel/core@7.24.4)) + jscodeshift: 0.15.1(@babel/preset-env@7.24.0(@babel/core@7.24.5)) lodash: 4.17.21 prettier: 3.2.5 recast: 0.23.6 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 transitivePeerDependencies: - supports-color - '@storybook/components@8.0.8(@types/react@18.2.74)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/components@8.0.10(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.74)(react@18.2.0) - '@storybook/client-logger': 8.0.8 - '@storybook/csf': 0.1.2 + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1) + '@storybook/client-logger': 8.0.10 + '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.8 + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.10 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' - '@storybook/core-common@8.0.8(encoding@0.1.13)': + '@storybook/core-common@8.0.10(encoding@0.1.13)': dependencies: - '@storybook/core-events': 8.0.8 - '@storybook/csf-tools': 8.0.8 - '@storybook/node-logger': 8.0.8 - '@storybook/types': 8.0.8 + '@storybook/core-events': 8.0.10 + '@storybook/csf-tools': 8.0.10 + '@storybook/node-logger': 8.0.10 + '@storybook/types': 8.0.10 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 @@ -14822,7 +14803,7 @@ snapshots: find-cache-dir: 3.3.2 find-up: 5.0.0 fs-extra: 11.1.1 - glob: 10.3.12 + glob: 10.3.15 handlebars: 4.7.7 lazy-universal-dotenv: 4.0.0 node-fetch: 2.7.0(encoding@0.1.13) @@ -14832,7 +14813,7 @@ snapshots: resolve-from: 5.0.0 semver: 7.6.0 tempy: 1.0.1 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 ts-dedent: 2.2.0 util: 0.12.5 transitivePeerDependencies: @@ -14841,39 +14822,35 @@ snapshots: '@storybook/core-events@6.5.16': dependencies: - core-js: 3.36.1 + core-js: 3.37.0 '@storybook/core-events@7.6.17': dependencies: ts-dedent: 2.2.0 - '@storybook/core-events@8.0.5': + '@storybook/core-events@8.0.10': dependencies: ts-dedent: 2.2.0 - '@storybook/core-events@8.0.8': - dependencies: - ts-dedent: 2.2.0 - - '@storybook/core-server@8.0.8(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/core-server@8.0.10(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@aw-web-design/x-default-browser': 1.4.126 - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 8.0.8(encoding@0.1.13) - '@storybook/channels': 8.0.8 - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/core-events': 8.0.8 - '@storybook/csf': 0.1.2 - '@storybook/csf-tools': 8.0.8 + '@storybook/builder-manager': 8.0.10(encoding@0.1.13) + '@storybook/channels': 8.0.10 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/core-events': 8.0.10 + '@storybook/csf': 0.1.8 + '@storybook/csf-tools': 8.0.10 '@storybook/docs-mdx': 3.0.0 '@storybook/global': 5.0.0 - '@storybook/manager': 8.0.8 - '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 8.0.8 - '@storybook/preview-api': 8.0.8 - '@storybook/telemetry': 8.0.8(encoding@0.1.13) - '@storybook/types': 8.0.8 + '@storybook/manager': 8.0.10 + '@storybook/manager-api': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/node-logger': 8.0.10 + '@storybook/preview-api': 8.0.10 + '@storybook/telemetry': 8.0.10(encoding@0.1.13) + '@storybook/types': 8.0.10 '@types/detect-port': 1.3.3 '@types/node': 18.19.28 '@types/pretty-hrtime': 1.0.1 @@ -14894,7 +14871,7 @@ snapshots: read-pkg-up: 7.0.1 semver: 7.6.0 telejson: 7.2.0 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 ts-dedent: 2.2.0 util: 0.12.5 util-deprecate: 1.0.2 @@ -14908,21 +14885,21 @@ snapshots: - supports-color - utf-8-validate - '@storybook/csf-plugin@8.0.8': + '@storybook/csf-plugin@8.0.10': dependencies: - '@storybook/csf-tools': 8.0.8 + '@storybook/csf-tools': 8.0.10 unplugin: 1.4.0 transitivePeerDependencies: - supports-color - '@storybook/csf-tools@8.0.8': + '@storybook/csf-tools@8.0.10': dependencies: '@babel/generator': 7.24.4 '@babel/parser': 7.24.4 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 - '@storybook/csf': 0.1.2 - '@storybook/types': 8.0.8 + '@storybook/csf': 0.1.8 + '@storybook/types': 8.0.10 fs-extra: 11.1.1 recast: 0.23.6 ts-dedent: 2.2.0 @@ -14937,13 +14914,18 @@ snapshots: dependencies: type-fest: 2.19.0 + '@storybook/csf@0.1.8': + dependencies: + type-fest: 2.19.0 + '@storybook/docs-mdx@3.0.0': {} - '@storybook/docs-tools@8.0.8(encoding@0.1.13)': + '@storybook/docs-tools@8.0.10(encoding@0.1.13)': dependencies: - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/preview-api': 8.0.8 - '@storybook/types': 8.0.8 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/core-events': 8.0.10 + '@storybook/preview-api': 8.0.10 + '@storybook/types': 8.0.10 '@types/doctrine': 0.0.3 assert: 2.1.0 doctrine: 3.0.0 @@ -14954,12 +14936,12 @@ snapshots: '@storybook/global@5.0.0': {} - '@storybook/icons@1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/icons@1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/manager-api@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 7.6.17 '@storybook/client-logger': 7.6.17 @@ -14967,7 +14949,7 @@ snapshots: '@storybook/csf': 0.1.2 '@storybook/global': 5.0.0 '@storybook/router': 7.6.17 - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.6.17 dequal: 2.0.3 lodash: 4.17.21 @@ -14979,17 +14961,17 @@ snapshots: - react - react-dom - '@storybook/manager-api@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/manager-api@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/channels': 8.0.8 - '@storybook/client-logger': 8.0.8 - '@storybook/core-events': 8.0.8 - '@storybook/csf': 0.1.2 + '@storybook/channels': 8.0.10 + '@storybook/client-logger': 8.0.10 + '@storybook/core-events': 8.0.10 + '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/router': 8.0.8 - '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.8 + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 8.0.10 + '@storybook/theming': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.10 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -15000,9 +14982,9 @@ snapshots: - react - react-dom - '@storybook/manager@8.0.8': {} + '@storybook/manager@8.0.10': {} - '@storybook/node-logger@8.0.8': {} + '@storybook/node-logger@8.0.10': {} '@storybook/preview-api@7.6.17': dependencies: @@ -15021,38 +15003,38 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/preview-api@8.0.8': + '@storybook/preview-api@8.0.10': dependencies: - '@storybook/channels': 8.0.8 - '@storybook/client-logger': 8.0.8 - '@storybook/core-events': 8.0.8 - '@storybook/csf': 0.1.2 + '@storybook/channels': 8.0.10 + '@storybook/client-logger': 8.0.10 + '@storybook/core-events': 8.0.10 + '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 - '@storybook/types': 8.0.8 + '@storybook/types': 8.0.10 '@types/qs': 6.9.7 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.11.2 - tiny-invariant: 1.3.1 + tiny-invariant: 1.3.3 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/preview@8.0.8': {} + '@storybook/preview@8.0.10': {} - '@storybook/react-dom-shim@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/react-dom-shim@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/router@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/router@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 - core-js: 3.36.1 + core-js: 3.37.0 memoizerific: 1.11.3 qs: 6.11.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 '@storybook/router@7.6.17': @@ -15061,22 +15043,22 @@ snapshots: memoizerific: 1.11.3 qs: 6.11.2 - '@storybook/router@8.0.8': + '@storybook/router@8.0.10': dependencies: - '@storybook/client-logger': 8.0.8 + '@storybook/client-logger': 8.0.10 memoizerific: 1.11.3 qs: 6.11.2 '@storybook/semver@7.3.2': dependencies: - core-js: 3.36.1 + core-js: 3.37.0 find-up: 4.1.0 - '@storybook/telemetry@8.0.8(encoding@0.1.13)': + '@storybook/telemetry@8.0.10(encoding@0.1.13)': dependencies: - '@storybook/client-logger': 8.0.8 - '@storybook/core-common': 8.0.8(encoding@0.1.13) - '@storybook/csf-tools': 8.0.8 + '@storybook/client-logger': 8.0.10 + '@storybook/core-common': 8.0.10(encoding@0.1.13) + '@storybook/csf-tools': 8.0.10 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.5 @@ -15092,33 +15074,33 @@ snapshots: '@testing-library/user-event': 14.4.3(@testing-library/dom@9.3.1) ts-dedent: 2.2.0 - '@storybook/theming@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 - core-js: 3.36.1 + core-js: 3.37.0 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - '@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 7.6.17 '@storybook/global': 5.0.0 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/theming@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 8.0.8 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) + '@storybook/client-logger': 8.0.10 '@storybook/global': 5.0.0 memoizerific: 1.11.3 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@storybook/types@7.6.17': dependencies: @@ -15127,24 +15109,18 @@ snapshots: '@types/express': 4.17.17 file-system-cache: 2.3.0 - '@storybook/types@8.0.5': + '@storybook/types@8.0.10': dependencies: - '@storybook/channels': 8.0.5 + '@storybook/channels': 8.0.10 '@types/express': 4.17.17 file-system-cache: 2.3.0 - '@storybook/types@8.0.8': + '@storybook/web-components-vite@8.0.10(encoding@0.1.13)(lit@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.1)(terser@5.29.1))': dependencies: - '@storybook/channels': 8.0.8 - '@types/express': 4.17.17 - file-system-cache: 2.3.0 - - '@storybook/web-components-vite@8.0.8(encoding@0.1.13)(lit@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1))': - dependencies: - '@storybook/builder-vite': 8.0.8(encoding@0.1.13)(typescript@5.3.3)(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1)) - '@storybook/core-server': 8.0.8(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 8.0.8 - '@storybook/web-components': 8.0.8(encoding@0.1.13)(lit@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/builder-vite': 8.0.10(encoding@0.1.13)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.1)(terser@5.29.1)) + '@storybook/core-server': 8.0.10(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/node-logger': 8.0.10 + '@storybook/web-components': 8.0.10(encoding@0.1.13)(lit@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) magic-string: 0.30.8 transitivePeerDependencies: - '@preact/preset-vite' @@ -15159,16 +15135,16 @@ snapshots: - vite - vite-plugin-glimmerx - '@storybook/web-components@8.0.8(encoding@0.1.13)(lit@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/web-components@8.0.10(encoding@0.1.13)(lit@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/client-logger': 8.0.8 - '@storybook/docs-tools': 8.0.8(encoding@0.1.13) + '@storybook/client-logger': 8.0.10 + '@storybook/docs-tools': 8.0.10(encoding@0.1.13) '@storybook/global': 5.0.0 - '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 8.0.8 - '@storybook/types': 8.0.8 - lit: 3.1.2 - tiny-invariant: 1.3.1 + '@storybook/manager-api': 8.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-api': 8.0.10 + '@storybook/types': 8.0.10 + lit: 3.1.3 + tiny-invariant: 1.3.3 ts-dedent: 2.2.0 transitivePeerDependencies: - encoding @@ -15176,15 +15152,18 @@ snapshots: - react-dom - supports-color - '@swc/helpers@0.5.2': + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.5': dependencies: + '@swc/counter': 0.1.3 tslib: 2.6.2 - '@swimlane/ngx-datatable@20.1.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(rxjs@7.8.1)': + '@swimlane/ngx-datatable@20.1.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(rxjs@7.8.1)': dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + '@angular/platform-browser': 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) rxjs: 7.8.1 tslib: 2.6.2 @@ -15228,8 +15207,8 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.23.9 - '@babel/types': 7.23.9 + '@babel/parser': 7.24.4 + '@babel/types': 7.24.0 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.5 @@ -15250,32 +15229,32 @@ snapshots: '@types/body-parser@1.19.2': dependencies: '@types/connect': 3.4.35 - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/body-scroll-lock@3.1.2': {} '@types/bonjour@3.5.10': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/connect-history-api-fallback@1.5.0': dependencies: '@types/express-serve-static-core': 4.17.35 - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/connect@3.4.35': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/cookie@0.4.1': {} '@types/cors@2.8.13': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/cross-spawn@6.0.2': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/css-modules@1.0.5': {} @@ -15301,7 +15280,7 @@ snapshots: '@types/express-serve-static-core@4.17.35': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 '@types/send': 0.17.1 @@ -15317,7 +15296,7 @@ snapshots: '@types/graceful-fs@4.1.6': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/hast@2.3.4': dependencies: @@ -15329,7 +15308,7 @@ snapshots: '@types/http-proxy@1.17.11': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/iframe-resizer@3.5.13': {} @@ -15358,13 +15337,13 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - '@types/jquery@3.5.29': + '@types/jquery@3.5.30': dependencies: '@types/sizzle': 2.3.3 '@types/jsdom@20.0.1': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 @@ -15372,6 +15351,8 @@ snapshots: '@types/json-schema@7.0.14': {} + '@types/json-schema@7.0.15': {} + '@types/json5@0.0.29': {} '@types/lodash@4.14.194': {} @@ -15380,7 +15361,7 @@ snapshots: dependencies: '@types/unist': 2.0.6 - '@types/mdx@2.0.12': {} + '@types/mdx@2.0.13': {} '@types/mime@1.3.2': {} @@ -15390,11 +15371,11 @@ snapshots: '@types/mock-fs@4.13.4': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/node-fetch@2.6.11': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 form-data: 4.0.0 '@types/node@12.20.55': {} @@ -15407,6 +15388,10 @@ snapshots: dependencies: undici-types: 5.26.5 + '@types/node@20.14.0': + dependencies: + undici-types: 5.26.5 + '@types/normalize-package-data@2.4.1': {} '@types/pretty-hrtime@1.0.1': {} @@ -15419,15 +15404,15 @@ snapshots: '@types/react-dom@18.2.18': dependencies: - '@types/react': 18.2.74 + '@types/react': 18.3.2 - '@types/react-dom@18.2.24': + '@types/react-dom@18.3.0': dependencies: - '@types/react': 18.2.74 + '@types/react': 18.3.2 - '@types/react-syntax-highlighter@15.5.11': + '@types/react-syntax-highlighter@15.5.13': dependencies: - '@types/react': 18.2.74 + '@types/react': 18.3.2 '@types/react@18.2.53': dependencies: @@ -15435,7 +15420,7 @@ snapshots: '@types/scheduler': 0.16.3 csstype: 3.1.2 - '@types/react@18.2.74': + '@types/react@18.3.2': dependencies: '@types/prop-types': 15.7.5 csstype: 3.1.2 @@ -15448,10 +15433,12 @@ snapshots: '@types/semver@7.5.0': {} + '@types/semver@7.5.8': {} + '@types/send@0.17.1': dependencies: '@types/mime': 1.3.2 - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/serve-index@1.9.1': dependencies: @@ -15460,7 +15447,7 @@ snapshots: '@types/serve-static@1.15.1': dependencies: '@types/mime': 3.0.1 - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/sinonjs__fake-timers@8.1.1': {} @@ -15468,7 +15455,7 @@ snapshots: '@types/sockjs@0.3.33': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/stack-utils@2.0.1': {} @@ -15486,7 +15473,7 @@ snapshots: '@types/ws@8.5.5': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 '@types/yargs-parser@21.0.0': {} @@ -15496,7 +15483,7 @@ snapshots: '@types/yauzl@2.10.0': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 optional: true '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3)': @@ -15558,41 +15545,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)': + '@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)': dependencies: - '@eslint-community/regexpp': 4.6.2 - '@typescript-eslint/parser': 7.5.0(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 7.5.0 - '@typescript-eslint/type-utils': 7.5.0(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/utils': 7.5.0(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/visitor-keys': 7.5.0 + '@eslint-community/regexpp': 4.10.1 + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.1 natural-compare: 1.4.0 semver: 7.6.0 - ts-api-utils: 1.0.2(typescript@4.9.5) + ts-api-utils: 1.3.0(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@7.5.0(@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3)': + '@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@eslint-community/regexpp': 4.6.2 - '@typescript-eslint/parser': 7.5.0(eslint@8.57.0)(typescript@5.3.3) - '@typescript-eslint/scope-manager': 7.5.0 - '@typescript-eslint/type-utils': 7.5.0(eslint@8.57.0)(typescript@5.3.3) - '@typescript-eslint/utils': 7.5.0(eslint@8.57.0)(typescript@5.3.3) - '@typescript-eslint/visitor-keys': 7.5.0 + '@eslint-community/regexpp': 4.10.1 + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.1 natural-compare: 1.4.0 semver: 7.6.0 - ts-api-utils: 1.0.2(typescript@5.3.3) + ts-api-utils: 1.3.0(typescript@5.3.3) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -15649,12 +15636,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@4.9.5)': + '@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@4.9.5)': dependencies: - '@typescript-eslint/scope-manager': 7.5.0 - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/typescript-estree': 7.5.0(typescript@4.9.5) - '@typescript-eslint/visitor-keys': 7.5.0 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 optionalDependencies: @@ -15662,12 +15649,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.5.0(eslint@8.57.0)(typescript@5.3.3)': + '@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@typescript-eslint/scope-manager': 7.5.0 - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/typescript-estree': 7.5.0(typescript@5.3.3) - '@typescript-eslint/visitor-keys': 7.5.0 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 optionalDependencies: @@ -15685,15 +15672,10 @@ snapshots: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - '@typescript-eslint/scope-manager@7.2.0': + '@typescript-eslint/scope-manager@7.8.0': dependencies: - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/visitor-keys': 7.2.0 - - '@typescript-eslint/scope-manager@7.5.0': - dependencies: - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/visitor-keys': 7.5.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: @@ -15731,37 +15713,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.3.3)': - dependencies: - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.3.3) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.3.3) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.57.0 - ts-api-utils: 1.0.2(typescript@5.3.3) - optionalDependencies: - typescript: 5.3.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/type-utils@7.5.0(eslint@8.57.0)(typescript@4.9.5)': + '@typescript-eslint/type-utils@7.8.0(eslint@8.57.0)(typescript@4.9.5)': dependencies: - '@typescript-eslint/typescript-estree': 7.5.0(typescript@4.9.5) - '@typescript-eslint/utils': 7.5.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 7.8.0(typescript@4.9.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 - ts-api-utils: 1.0.2(typescript@4.9.5) + ts-api-utils: 1.3.0(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@7.5.0(eslint@8.57.0)(typescript@5.3.3)': + '@typescript-eslint/type-utils@7.8.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.5.0(typescript@5.3.3) - '@typescript-eslint/utils': 7.5.0(eslint@8.57.0)(typescript@5.3.3) + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.3.3) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.3.3) debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 - ts-api-utils: 1.0.2(typescript@5.3.3) + ts-api-utils: 1.3.0(typescript@5.3.3) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -15771,9 +15741,7 @@ snapshots: '@typescript-eslint/types@6.21.0': {} - '@typescript-eslint/types@7.2.0': {} - - '@typescript-eslint/types@7.5.0': {} + '@typescript-eslint/types@7.8.0': {} '@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3)': dependencies: @@ -15834,46 +15802,31 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.2.0(typescript@5.3.3)': - dependencies: - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.6.0 - ts-api-utils: 1.0.2(typescript@5.3.3) - optionalDependencies: - typescript: 5.3.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/typescript-estree@7.5.0(typescript@4.9.5)': + '@typescript-eslint/typescript-estree@7.8.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/visitor-keys': 7.5.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - minimatch: 9.0.3 + minimatch: 9.0.4 semver: 7.6.0 - ts-api-utils: 1.0.2(typescript@4.9.5) + ts-api-utils: 1.3.0(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.5.0(typescript@5.3.3)': + '@typescript-eslint/typescript-estree@7.8.0(typescript@5.3.3)': dependencies: - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/visitor-keys': 7.5.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - minimatch: 9.0.3 + minimatch: 9.0.4 semver: 7.6.0 - ts-api-utils: 1.0.2(typescript@5.3.3) + ts-api-utils: 1.3.0(typescript@5.3.3) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -15922,42 +15875,28 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.3.3)': + '@typescript-eslint/utils@7.8.0(eslint@8.57.0)(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@types/json-schema': 7.0.14 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.3.3) - eslint: 8.57.0 - semver: 7.6.0 - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/utils@7.5.0(eslint@8.57.0)(typescript@4.9.5)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@types/json-schema': 7.0.14 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 7.5.0 - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/typescript-estree': 7.5.0(typescript@4.9.5) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@4.9.5) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.5.0(eslint@8.57.0)(typescript@5.3.3)': + '@typescript-eslint/utils@7.8.0(eslint@8.57.0)(typescript@5.3.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@types/json-schema': 7.0.14 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 7.5.0 - '@typescript-eslint/types': 7.5.0 - '@typescript-eslint/typescript-estree': 7.5.0(typescript@5.3.3) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.3.3) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -15974,30 +15913,24 @@ snapshots: '@typescript-eslint/types': 6.21.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@7.2.0': + '@typescript-eslint/visitor-keys@7.8.0': dependencies: - '@typescript-eslint/types': 7.2.0 - eslint-visitor-keys: 3.4.3 - - '@typescript-eslint/visitor-keys@7.5.0': - dependencies: - '@typescript-eslint/types': 7.5.0 + '@typescript-eslint/types': 7.8.0 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': + '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': + dependencies: + vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.1)(terser@5.29.1) + + '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': dependencies: - vite: 5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + vite: 5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) '@web-types/lit@2.0.0-3': optional: true - '@webassemblyjs/ast@1.11.6': - dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 @@ -16007,8 +15940,6 @@ snapshots: '@webassemblyjs/helper-api-error@1.11.6': {} - '@webassemblyjs/helper-buffer@1.11.6': {} - '@webassemblyjs/helper-buffer@1.12.1': {} '@webassemblyjs/helper-numbers@1.11.6': @@ -16019,13 +15950,6 @@ snapshots: '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - '@webassemblyjs/helper-wasm-section@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/helper-wasm-section@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -16043,17 +15967,6 @@ snapshots: '@webassemblyjs/utf8@1.11.6': {} - '@webassemblyjs/wasm-edit@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-opt': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wast-printer': 1.11.6 - '@webassemblyjs/wasm-edit@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -16065,14 +15978,6 @@ snapshots: '@webassemblyjs/wasm-parser': 1.12.1 '@webassemblyjs/wast-printer': 1.12.1 - '@webassemblyjs/wasm-gen@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-gen@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -16081,13 +15986,6 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-opt@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wasm-opt@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -16095,15 +15993,6 @@ snapshots: '@webassemblyjs/wasm-gen': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wasm-parser@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-parser@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -16113,11 +16002,6 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wast-printer@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@xtuc/long': 4.2.2 - '@webassemblyjs/wast-printer@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -16534,7 +16418,7 @@ snapshots: autoprefixer@10.4.18(postcss@8.4.35): dependencies: browserslist: 4.23.0 - caniuse-lite: 1.0.30001597 + caniuse-lite: 1.0.30001608 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -16581,17 +16465,17 @@ snapshots: dependencies: dequal: 2.0.3 - babel-core@7.0.0-bridge.0(@babel/core@7.24.4): + babel-core@7.0.0-bridge.0(@babel/core@7.24.5): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 - babel-jest@29.7.0(@babel/core@7.24.4): + babel-jest@29.7.0(@babel/core@7.24.5): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@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.4) + babel-preset-jest: 29.6.3(@babel/core@7.24.5) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -16605,16 +16489,16 @@ snapshots: schema-utils: 4.0.1 webpack: 5.90.3(esbuild@0.20.1) - babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0): + babel-loader@9.1.3(@babel/core@7.24.5)(webpack@5.91.0): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 find-cache-dir: 4.0.0 schema-utils: 4.0.1 webpack: 5.91.0 babel-plugin-istanbul@6.1.1: dependencies: - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 @@ -16638,11 +16522,11 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.4): + babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.5): dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.5) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -16655,10 +16539,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.4): + babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.5): dependencies: - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.5) core-js-compat: 3.36.0 transitivePeerDependencies: - supports-color @@ -16670,34 +16554,34 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.4): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.5): dependencies: - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.4) + '@babel/core': 7.24.5 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.5) transitivePeerDependencies: - supports-color - babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4): - dependencies: - '@babel/core': 7.24.4 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) - - babel-preset-jest@29.6.3(@babel/core@7.24.4): - dependencies: - '@babel/core': 7.24.4 + babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) + + babel-preset-jest@29.6.3(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) bach@1.2.0: dependencies: @@ -16918,9 +16802,9 @@ snapshots: dependencies: '@npmcli/fs': 3.1.0 fs-minipass: 3.0.2 - glob: 10.3.12 + glob: 10.3.15 lru-cache: 10.0.1 - minipass: 7.0.3 + minipass: 7.0.4 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -17299,7 +17183,7 @@ snapshots: dependencies: browserslist: 4.23.0 - core-js@3.36.1: {} + core-js@3.37.0: {} core-util-is@1.0.2: {} @@ -17328,13 +17212,13 @@ snapshots: optionalDependencies: typescript: 5.3.3 - create-jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)): + create-jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -17342,14 +17226,15 @@ snapshots: - babel-plugin-macros - supports-color - ts-node + optional: true - create-jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)): + create-jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -17358,13 +17243,28 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + create-jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + create-jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -17403,7 +17303,7 @@ snapshots: dependencies: postcss: 8.4.38 - css-functions-list@3.2.1: {} + css-functions-list@3.2.2: {} css-loader@6.10.0(webpack@5.90.3(esbuild@0.20.1)): dependencies: @@ -17442,12 +17342,12 @@ snapshots: css-tree@2.2.1: dependencies: mdn-data: 2.0.28 - source-map-js: 1.0.2 + source-map-js: 1.2.0 css-tree@2.3.1: dependencies: mdn-data: 2.0.30 - source-map-js: 1.0.2 + source-map-js: 1.2.0 css-what@6.1.0: {} @@ -17536,18 +17436,18 @@ snapshots: custom-event@1.0.1: {} - cypress-axe@1.5.0(axe-core@4.7.0)(cypress@13.7.2): + cypress-axe@1.5.0(axe-core@4.7.0)(cypress@13.9.0): dependencies: axe-core: 4.7.0 - cypress: 13.7.2 + cypress: 13.9.0 cypress-each@1.14.0: {} - cypress-storybook@0.5.1(cypress@13.7.2): + cypress-storybook@1.0.0(cypress@13.9.0): dependencies: - cypress: 13.7.2 + cypress: 13.9.0 - cypress@13.7.2: + cypress@13.9.0: dependencies: '@cypress/request': 3.0.0 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -17930,7 +17830,7 @@ snapshots: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.13 - '@types/node': 20.12.7 + '@types/node': 20.14.0 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -17943,11 +17843,6 @@ snapshots: - supports-color - utf-8-validate - enhanced-resolve@5.15.0: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - enhanced-resolve@5.16.0: dependencies: graceful-fs: 4.2.11 @@ -18312,9 +18207,9 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-config-next@14.1.4(eslint@8.56.0)(typescript@5.2.2): + eslint-config-next@14.2.3(eslint@8.56.0)(typescript@5.2.2): dependencies: - '@next/eslint-plugin-next': 14.1.4 + '@next/eslint-plugin-next': 14.2.3 '@rushstack/eslint-patch': 1.7.2 '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.2.2) eslint: 8.56.0 @@ -18348,7 +18243,7 @@ snapshots: eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): dependencies: debug: 4.3.4(supports-color@8.1.1) - enhanced-resolve: 5.15.0 + enhanced-resolve: 5.16.0 eslint: 8.56.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) @@ -18446,7 +18341,7 @@ snapshots: eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0): dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.0 aria-query: 5.3.0 array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 @@ -18457,7 +18352,7 @@ snapshots: emoji-regex: 9.2.2 es-iterator-helpers: 1.0.17 eslint: 8.56.0 - hasown: 2.0.1 + hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 minimatch: 3.1.2 @@ -19041,7 +18936,7 @@ snapshots: dependencies: flatted: 3.2.9 keyv: 4.5.4 - rimraf: 5.0.5 + rimraf: 5.0.7 flat@5.0.2: {} @@ -19054,6 +18949,10 @@ snapshots: inherits: 2.0.4 readable-stream: 2.3.8 + focus-trap@7.5.4: + dependencies: + tabbable: 6.2.0 + follow-redirects@1.15.6(debug@4.3.4): optionalDependencies: debug: 4.3.4(supports-color@8.1.1) @@ -19285,17 +19184,17 @@ snapshots: dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 - minimatch: 9.0.1 - minipass: 7.0.3 - path-scurry: 1.10.1 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.2 - glob@10.3.12: + glob@10.3.15: dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 minimatch: 9.0.3 minipass: 7.0.4 - path-scurry: 1.10.2 + path-scurry: 1.11.1 glob@7.1.4: dependencies: @@ -19729,7 +19628,7 @@ snapshots: ieee754@1.2.1: {} - iframe-resizer@4.3.9: {} + iframe-resizer@4.3.11: {} ignore-walk@6.0.4: dependencies: @@ -20140,7 +20039,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/parser': 7.24.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -20150,7 +20049,7 @@ snapshots: istanbul-lib-instrument@6.0.0: dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/parser': 7.24.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -20233,7 +20132,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 chalk: 4.1.2 co: 4.6.0 dedent: 1.2.0 @@ -20253,16 +20152,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@20.12.7): + jest-cli@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -20273,16 +20172,16 @@ snapshots: - ts-node optional: true - jest-cli@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)): + jest-cli@29.7.0(@types/node@20.14.0): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + create-jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -20291,17 +20190,18 @@ snapshots: - babel-plugin-macros - supports-color - ts-node + optional: true - jest-cli@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)): + jest-cli@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + create-jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -20311,16 +20211,35 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + jest-cli@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + create-jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + jest-cli@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -20330,12 +20249,12 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)): + jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.4) + babel-jest: 29.7.0(@babel/core@7.24.5) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -20356,17 +20275,18 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.12.7 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) transitivePeerDependencies: - babel-plugin-macros - supports-color + optional: true - jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)): + jest-config@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.4) + babel-jest: 29.7.0(@babel/core@7.24.5) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -20386,18 +20306,19 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.7 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.2.2) + '@types/node': 20.14.0 + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) transitivePeerDependencies: - babel-plugin-macros - supports-color + optional: true - jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + jest-config@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.4) + babel-jest: 29.7.0(@babel/core@7.24.5) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -20417,8 +20338,70 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.7 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) + '@types/node': 20.14.0 + ts-node: 10.9.2(@types/node@20.14.0)(typescript@4.9.5) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): + dependencies: + '@babel/core': 7.24.5 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.24.5) + chalk: 4.1.2 + ci-info: 3.8.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.14.0 + ts-node: 10.9.2(@types/node@20.14.0)(typescript@5.2.2) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)): + dependencies: + '@babel/core': 7.24.5 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.24.5) + chalk: 4.1.2 + ci-info: 3.8.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.14.0 + ts-node: 10.9.2(@types/node@20.14.0)(typescript@5.3.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -20448,7 +20431,7 @@ snapshots: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 20.12.7 + '@types/node': 20.14.0 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -20462,7 +20445,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -20472,7 +20455,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.6 - '@types/node': 20.12.7 + '@types/node': 20.14.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -20511,7 +20494,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -20546,7 +20529,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -20574,7 +20557,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 @@ -20594,15 +20577,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/generator': 7.24.4 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.5) '@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.4) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -20620,7 +20603,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -20639,7 +20622,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.7 + '@types/node': 20.14.0 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -20648,23 +20631,23 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@20.12.7): + jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.12.7) + jest-cli: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -20672,36 +20655,49 @@ snapshots: - ts-node optional: true - jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)): + jest@29.7.0(@types/node@20.14.0): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest-cli: 29.7.0(@types/node@20.14.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node + optional: true - jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)): + jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + jest-cli: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + jest-cli: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) + '@jest/types': 29.6.3 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -20733,30 +20729,30 @@ snapshots: jsbn@0.1.1: {} - jscodeshift@0.15.1(@babel/preset-env@7.24.0(@babel/core@7.24.4)): + jscodeshift@0.15.1(@babel/preset-env@7.24.0(@babel/core@7.24.5)): dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/parser': 7.24.4 - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.4) - '@babel/preset-flow': 7.23.3(@babel/core@7.24.4) - '@babel/preset-typescript': 7.23.3(@babel/core@7.24.4) - '@babel/register': 7.22.15(@babel/core@7.24.4) - babel-core: 7.0.0-bridge.0(@babel/core@7.24.4) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.5) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.5) + '@babel/preset-flow': 7.23.3(@babel/core@7.24.5) + '@babel/preset-typescript': 7.23.3(@babel/core@7.24.5) + '@babel/register': 7.22.15(@babel/core@7.24.5) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.5) chalk: 4.1.2 flow-parser: 0.211.0 graceful-fs: 4.2.11 micromatch: 4.0.5 neo-async: 2.6.2 node-dir: 0.1.17 - recast: 0.23.4 + recast: 0.23.6 temp: 0.8.4 write-file-atomic: 2.4.3 optionalDependencies: - '@babel/preset-env': 7.24.0(@babel/core@7.24.4) + '@babel/preset-env': 7.24.0(@babel/core@7.24.5) transitivePeerDependencies: - supports-color @@ -20977,8 +20973,6 @@ snapshots: klona@2.0.6: {} - known-css-properties@0.29.0: {} - known-css-properties@0.30.0: {} language-subtag-registry@0.3.22: {} @@ -21086,37 +21080,21 @@ snapshots: optionalDependencies: enquirer: 2.3.6 - lit-element@3.3.2: - dependencies: - '@lit-labs/ssr-dom-shim': 1.1.2 - '@lit/reactive-element': 1.6.2 - lit-html: 2.8.0 - lit-element@4.0.4: dependencies: '@lit-labs/ssr-dom-shim': 1.2.0 '@lit/reactive-element': 2.0.4 - lit-html: 3.1.2 - - lit-html@2.8.0: - dependencies: - '@types/trusted-types': 2.0.3 + lit-html: 3.1.3 - lit-html@3.1.2: + lit-html@3.1.3: dependencies: '@types/trusted-types': 2.0.3 - lit@2.8.0: - dependencies: - '@lit/reactive-element': 1.6.2 - lit-element: 3.3.2 - lit-html: 2.8.0 - - lit@3.1.2: + lit@3.1.3: dependencies: '@lit/reactive-element': 2.0.4 lit-element: 4.0.4 - lit-html: 3.1.2 + lit-html: 3.1.3 load-json-file@1.1.0: dependencies: @@ -21202,7 +21180,7 @@ snapshots: transitivePeerDependencies: - supports-color - long-press-event@2.4.6: {} + long-press-event@2.5.0: {} loose-envify@1.4.0: dependencies: @@ -21293,9 +21271,9 @@ snapshots: dependencies: object-visit: 1.0.1 - markdown-to-jsx@7.3.2(react@18.2.0): + markdown-to-jsx@7.3.2(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 matchdep@2.0.0: dependencies: @@ -21411,11 +21389,11 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.1: + minimatch@9.0.3: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.3: + minimatch@9.0.4: dependencies: brace-expansion: 2.0.1 @@ -21462,8 +21440,6 @@ snapshots: minipass@5.0.0: {} - minipass@7.0.3: {} - minipass@7.0.4: {} minizlib@2.1.2: @@ -21553,35 +21529,35 @@ snapshots: next-tick@1.1.0: {} - next@14.1.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.74.1): + next@14.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.1): dependencies: - '@next/env': 14.1.4 - '@swc/helpers': 0.5.2 + '@next/env': 14.2.3 + '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001597 + caniuse-lite: 1.0.30001608 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: - '@next/swc-darwin-arm64': 14.1.4 - '@next/swc-darwin-x64': 14.1.4 - '@next/swc-linux-arm64-gnu': 14.1.4 - '@next/swc-linux-arm64-musl': 14.1.4 - '@next/swc-linux-x64-gnu': 14.1.4 - '@next/swc-linux-x64-musl': 14.1.4 - '@next/swc-win32-arm64-msvc': 14.1.4 - '@next/swc-win32-ia32-msvc': 14.1.4 - '@next/swc-win32-x64-msvc': 14.1.4 - sass: 1.74.1 + '@next/swc-darwin-arm64': 14.2.3 + '@next/swc-darwin-x64': 14.2.3 + '@next/swc-linux-arm64-gnu': 14.2.3 + '@next/swc-linux-arm64-musl': 14.2.3 + '@next/swc-linux-x64-gnu': 14.2.3 + '@next/swc-linux-x64-musl': 14.2.3 + '@next/swc-win32-arm64-msvc': 14.2.3 + '@next/swc-win32-ia32-msvc': 14.2.3 + '@next/swc-win32-x64-msvc': 14.2.3 + sass: 1.77.1 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3): + ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(tslib@2.6.2)(typescript@5.3.3): dependencies: - '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@angular/compiler-cli': 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.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 @@ -21603,7 +21579,7 @@ snapshots: piscina: 4.4.0 postcss: 8.4.38 rxjs: 7.8.1 - sass: 1.74.1 + sass: 1.77.1 tslib: 2.6.2 typescript: 5.3.3 optionalDependencies: @@ -21614,9 +21590,9 @@ snapshots: - supports-color optional: true - ng-packagr@17.3.0(@angular/compiler-cli@17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3): + ng-packagr@17.3.0(@angular/compiler-cli@17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.3))(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.3.3): dependencies: - '@angular/compiler-cli': 17.3.3(@angular/compiler@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.3.3) + '@angular/compiler-cli': 17.3.8(@angular/compiler@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(typescript@5.3.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 @@ -21638,29 +21614,29 @@ snapshots: piscina: 4.4.0 postcss: 8.4.38 rxjs: 7.8.1 - sass: 1.74.1 + sass: 1.77.1 tslib: 2.6.2 typescript: 5.3.3 optionalDependencies: esbuild: 0.20.1 rollup: 4.13.0 - tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) transitivePeerDependencies: - supports-color - ngx-highlightjs@10.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1): + ngx-highlightjs@10.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1): dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) highlight.js: 11.9.0 rxjs: 7.8.1 tslib: 2.6.2 - ngx-toastr@18.0.0(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))): + ngx-toastr@18.0.0(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(@angular/platform-browser@17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))): dependencies: - '@angular/common': 17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1) - '@angular/core': 17.3.3(rxjs@7.8.1)(zone.js@0.14.4) - '@angular/platform-browser': 17.3.3(@angular/animations@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.3(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.3(rxjs@7.8.1)(zone.js@0.14.4)) + '@angular/common': 17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1) + '@angular/core': 17.3.8(rxjs@7.8.1)(zone.js@0.14.5) + '@angular/platform-browser': 17.3.8(@angular/animations@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)))(@angular/common@17.3.8(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5))(rxjs@7.8.1))(@angular/core@17.3.8(rxjs@7.8.1)(zone.js@0.14.5)) tslib: 2.6.2 nice-napi@1.0.2: @@ -21693,7 +21669,7 @@ snapshots: dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 - glob: 10.3.12 + glob: 10.3.15 graceful-fs: 4.2.11 make-fetch-happen: 13.0.0 nopt: 7.2.0 @@ -21817,7 +21793,7 @@ snapshots: flat: 5.0.2 fs-extra: 11.1.1 glob: 7.1.4 - ignore: 5.3.0 + ignore: 5.3.1 jest-diff: 29.7.0 js-yaml: 4.1.0 jsonc-parser: 3.2.0 @@ -22067,7 +22043,7 @@ snapshots: '@npmcli/run-script': 7.0.4 cacache: 18.0.0 fs-minipass: 3.0.2 - minipass: 7.0.3 + minipass: 7.0.4 npm-package-arg: 11.0.1 npm-packlist: 8.0.2 npm-pick-manifest: 9.0.0 @@ -22085,6 +22061,8 @@ snapshots: pako@0.2.9: {} + pako@2.1.0: {} + parent-module@1.0.1: dependencies: callsites: 3.1.0 @@ -22164,12 +22142,12 @@ snapshots: dependencies: path-root-regex: 0.1.2 - path-scurry@1.10.1: + path-scurry@1.10.2: dependencies: - lru-cache: 10.0.1 - minipass: 7.0.3 + lru-cache: 10.2.0 + minipass: 7.0.4 - path-scurry@1.10.2: + path-scurry@1.11.1: dependencies: lru-cache: 10.2.0 minipass: 7.0.4 @@ -22329,30 +22307,30 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.33 - postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) + ts-node: 10.9.2(@types/node@20.14.0)(typescript@5.3.3) - postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)): + postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: lilconfig: 3.0.0 yaml: 2.3.4 optionalDependencies: postcss: 8.4.33 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.2.2) + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) + optional: true - postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: lilconfig: 3.0.0 yaml: 2.3.4 optionalDependencies: postcss: 8.4.33 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) - optional: true + ts-node: 10.9.2(@types/node@20.14.0)(typescript@5.2.2) postcss-load-config@5.0.2(postcss@8.4.38): dependencies: @@ -22550,7 +22528,7 @@ snapshots: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 postcss@8.4.33: dependencies: @@ -22562,7 +22540,7 @@ snapshots: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 postcss@8.4.38: dependencies: @@ -22683,7 +22661,7 @@ snapshots: qs@6.10.4: dependencies: - side-channel: 1.0.4 + side-channel: 1.0.6 qs@6.11.0: dependencies: @@ -22731,10 +22709,10 @@ snapshots: schema-utils: 3.1.2 webpack: 5.91.0 - react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-dom@18.2.0(react@18.2.0): dependencies: @@ -22742,25 +22720,35 @@ snapshots: react: 18.2.0 scheduler: 0.23.0 + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + react-is@16.13.1: {} react-is@17.0.2: {} react-is@18.2.0: {} - react-syntax-highlighter@15.5.0(react@18.2.0): + react-syntax-highlighter@15.5.0(react@18.3.1): dependencies: '@babel/runtime': 7.21.5 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.29.0 - react: 18.2.0 + react: 18.3.1 refractor: 3.6.0 react@18.2.0: dependencies: loose-envify: 1.4.0 + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + read-cache@1.0.0: dependencies: pify: 2.3.0 @@ -22772,7 +22760,7 @@ snapshots: read-package-json@7.0.0: dependencies: - glob: 10.3.12 + glob: 10.3.15 json-parse-even-better-errors: 3.0.0 normalize-package-data: 6.0.0 npm-normalize-package-bin: 3.0.1 @@ -22843,14 +22831,6 @@ snapshots: dependencies: picomatch: 2.3.1 - recast@0.23.4: - dependencies: - assert: 2.1.0 - ast-types: 0.16.1 - esprima: 4.0.1 - source-map: 0.6.1 - tslib: 2.6.2 - recast@0.23.6: dependencies: ast-types: 0.16.1 @@ -23078,9 +23058,9 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@5.0.5: + rimraf@5.0.7: dependencies: - glob: 10.3.10 + glob: 10.3.15 rollup-plugin-inject@3.0.2: dependencies: @@ -23092,7 +23072,7 @@ snapshots: dependencies: rollup-plugin-inject: 3.0.2 - rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)): dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 @@ -23101,7 +23081,7 @@ snapshots: p-queue: 6.6.2 pify: 5.0.0 postcss: 8.4.38 - postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) postcss-modules: 4.3.1(postcss@8.4.38) promise.series: 0.2.0 resolve: 1.22.8 @@ -23219,13 +23199,13 @@ snapshots: dependencies: chokidar: 3.5.3 immutable: 4.3.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 - sass@1.74.1: + sass@1.77.1: dependencies: chokidar: 3.5.3 immutable: 4.3.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 sax@1.2.4: optional: true @@ -23238,6 +23218,10 @@ snapshots: dependencies: loose-envify: 1.4.0 + scheduler@0.23.2: + dependencies: + loose-envify: 1.4.0 + schema-utils@3.1.2: dependencies: '@types/json-schema': 7.0.11 @@ -23381,12 +23365,6 @@ snapshots: shell-quote@1.8.1: {} - side-channel@1.0.4: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - object-inspect: 1.13.1 - side-channel@1.0.6: dependencies: call-bind: 1.0.7 @@ -23517,7 +23495,7 @@ snapshots: source-map-loader@5.0.0(webpack@5.90.3(esbuild@0.20.1)): dependencies: iconv-lite: 0.6.3 - source-map-js: 1.0.2 + source-map-js: 1.2.0 webpack: 5.90.3(esbuild@0.20.1) source-map-resolve@0.5.3: @@ -23656,9 +23634,9 @@ snapshots: store2@2.14.2: {} - storybook@8.0.8(@babel/preset-env@7.24.0(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + storybook@8.0.10(@babel/preset-env@7.24.0(@babel/core@7.24.5))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@storybook/cli': 8.0.8(@babel/preset-env@7.24.0(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/cli': 8.0.10(@babel/preset-env@7.24.0(@babel/core@7.24.5))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@babel/preset-env' - bufferutil @@ -23842,29 +23820,29 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.15 - stylelint-config-sass-guidelines@11.1.0(postcss@8.4.38)(stylelint@16.3.1(typescript@5.3.3)): + stylelint-config-sass-guidelines@11.1.0(postcss@8.4.38)(stylelint@16.5.0(typescript@5.3.3)): dependencies: postcss: 8.4.38 postcss-scss: 4.0.9(postcss@8.4.38) - stylelint: 16.3.1(typescript@5.3.3) - stylelint-scss: 6.2.1(stylelint@16.3.1(typescript@5.3.3)) + stylelint: 16.5.0(typescript@5.3.3) + stylelint-scss: 6.3.0(stylelint@16.5.0(typescript@5.3.3)) - stylelint-prettier@5.0.0(prettier@3.2.5)(stylelint@16.3.1(typescript@5.3.3)): + stylelint-prettier@5.0.0(prettier@3.2.5)(stylelint@16.5.0(typescript@5.3.3)): dependencies: prettier: 3.2.5 prettier-linter-helpers: 1.0.0 - stylelint: 16.3.1(typescript@5.3.3) + stylelint: 16.5.0(typescript@5.3.3) - stylelint-scss@6.2.1(stylelint@16.3.1(typescript@5.3.3)): + stylelint-scss@6.3.0(stylelint@16.5.0(typescript@5.3.3)): dependencies: - known-css-properties: 0.29.0 + known-css-properties: 0.30.0 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-selector-parser: 6.0.15 + postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 - stylelint: 16.3.1(typescript@5.3.3) + stylelint: 16.5.0(typescript@5.3.3) - stylelint@16.3.1(typescript@5.3.3): + stylelint@16.5.0(typescript@5.3.3): dependencies: '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4) '@csstools/css-tokenizer': 2.2.4 @@ -23874,7 +23852,7 @@ snapshots: balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 9.0.0(typescript@5.3.3) - css-functions-list: 3.2.1 + css-functions-list: 3.2.2 css-tree: 2.3.1 debug: 4.3.4(supports-color@8.1.1) fast-glob: 3.3.2 @@ -23903,7 +23881,7 @@ snapshots: strip-ansi: 7.1.0 supports-hyperlinks: 3.0.0 svg-tags: 1.0.0 - table: 6.8.1 + table: 6.8.2 write-file-atomic: 5.0.1 transitivePeerDependencies: - supports-color @@ -23913,7 +23891,7 @@ snapshots: dependencies: '@jridgewell/gen-mapping': 0.3.3 commander: 4.1.1 - glob: 10.3.12 + glob: 10.3.15 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.5 @@ -23955,7 +23933,7 @@ snapshots: picocolors: 1.0.0 stable: 0.1.8 - svgo@3.2.0: + svgo@3.3.2: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -23973,7 +23951,7 @@ snapshots: tabbable@6.2.0: {} - table@6.8.1: + table@6.8.2: dependencies: ajv: 8.12.0 lodash.truncate: 4.4.2 @@ -23981,7 +23959,7 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)): + tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -24000,15 +23978,16 @@ snapshots: postcss: 8.4.33 postcss-import: 15.1.0(postcss@8.4.33) postcss-js: 4.0.1(postcss@8.4.33) - postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) postcss-nested: 6.0.1(postcss@8.4.33) postcss-selector-parser: 6.0.15 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: - ts-node + optional: true - tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + tailwindcss@3.4.1(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -24027,14 +24006,13 @@ snapshots: postcss: 8.4.33 postcss-import: 15.1.0(postcss@8.4.33) postcss-js: 4.0.1(postcss@8.4.33) - postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) postcss-nested: 6.0.1(postcss@8.4.33) postcss-selector-parser: 6.0.15 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: - ts-node - optional: true tapable@2.2.1: {} @@ -24095,11 +24073,11 @@ snapshots: terser-webpack-plugin@5.3.10(esbuild@0.20.1)(webpack@5.90.3(esbuild@0.20.1)): dependencies: - '@jridgewell/trace-mapping': 0.3.22 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.27.0 + terser: 5.29.1 webpack: 5.90.3(esbuild@0.20.1) optionalDependencies: esbuild: 0.20.1 @@ -24163,8 +24141,6 @@ snapshots: time-stamp@1.1.0: {} - tiny-invariant@1.3.1: {} - tiny-invariant@1.3.3: {} tmp@0.0.33: @@ -24247,15 +24223,23 @@ snapshots: dependencies: typescript: 5.3.3 + ts-api-utils@1.3.0(typescript@4.9.5): + dependencies: + typescript: 4.9.5 + + ts-api-utils@1.3.0(typescript@5.3.3): + dependencies: + typescript: 5.3.3 + ts-dedent@2.2.0: {} ts-interface-checker@0.1.13: {} - ts-jest@29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)))(typescript@4.9.5): + ts-jest@29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)) + jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -24264,15 +24248,15 @@ snapshots: typescript: 4.9.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.4) + babel-jest: 29.7.0(@babel/core@7.24.5) - ts-jest@29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)))(typescript@5.2.2): + ts-jest@29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)))(typescript@5.2.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2)) + jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -24281,15 +24265,15 @@ snapshots: typescript: 5.2.2 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.4) + babel-jest: 29.7.0(@babel/core@7.24.5) - ts-jest@29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3): + ts-jest@29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)))(typescript@5.3.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -24298,11 +24282,11 @@ snapshots: typescript: 5.3.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.4) + babel-jest: 29.7.0(@babel/core@7.24.5) - ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5): + ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 @@ -24316,19 +24300,37 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 + typescript: 5.3.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.14.0 + acorn: 8.9.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.12.7)(typescript@5.2.2): + ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.7 + '@types/node': 20.14.0 acorn: 8.9.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -24339,14 +24341,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3): + ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.7 + '@types/node': 20.14.0 acorn: 8.9.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -24356,6 +24358,7 @@ snapshots: typescript: 5.3.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optional: true tsconfig-paths@3.15.0: dependencies: @@ -24543,9 +24546,9 @@ snapshots: undici-types@5.26.5: {} - undici-types@6.15.0: {} + undici-types@6.16.1: {} - undici@6.7.1: {} + undici@6.11.1: {} unicode-canonical-property-names-ecmascript@2.0.0: {} @@ -24812,7 +24815,7 @@ snapshots: remove-trailing-separator: 1.1.0 replace-ext: 1.0.1 - vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1): + vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.1)(terser@5.29.1): dependencies: esbuild: 0.19.12 postcss: 8.4.38 @@ -24821,19 +24824,31 @@ snapshots: '@types/node': 20.12.7 fsevents: 2.3.3 less: 4.2.0 + sass: 1.77.1 + terser: 5.29.1 + + vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1): + dependencies: + esbuild: 0.19.12 + postcss: 8.4.38 + rollup: 4.13.0 + optionalDependencies: + '@types/node': 20.14.0 + fsevents: 2.3.3 + less: 4.2.0 sass: 1.71.1 terser: 5.29.1 - vite@5.1.5(@types/node@20.12.7)(less@4.2.0)(sass@1.74.1)(terser@5.29.1): + vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.1)(terser@5.29.1): dependencies: esbuild: 0.19.12 postcss: 8.4.38 rollup: 4.13.0 optionalDependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.0 fsevents: 2.3.3 less: 4.2.0 - sass: 1.74.1 + sass: 1.77.1 terser: 5.29.1 void-elements@2.0.1: {} @@ -25014,14 +25029,14 @@ snapshots: dependencies: '@types/eslint-scope': 3.7.4 '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.9.0 acorn-import-assertions: 1.9.0(acorn@8.9.0) browserslist: 4.23.0 chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 + enhanced-resolve: 5.16.0 es-module-lexer: 1.2.1 eslint-scope: 5.1.1 events: 3.3.0 @@ -25034,7 +25049,7 @@ snapshots: schema-utils: 3.3.0 tapable: 2.2.1 terser-webpack-plugin: 5.3.10(esbuild@0.20.1)(webpack@5.90.3(esbuild@0.20.1)) - watchpack: 2.4.0 + watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -25257,6 +25272,8 @@ snapshots: yaml@2.3.4: {} + yaml@2.4.3: {} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 @@ -25332,6 +25349,6 @@ snapshots: yocto-queue@1.0.0: {} - zone.js@0.14.4: + zone.js@0.14.5: dependencies: tslib: 2.6.2 From babc76e0fbf4af4f1de82145256a1a311103ab8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliz=C3=A9=20Debray?= Date: Tue, 4 Jun 2024 14:14:05 +0200 Subject: [PATCH 4/6] Update button-group.scss --- packages/styles/src/components/button-group.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/styles/src/components/button-group.scss b/packages/styles/src/components/button-group.scss index 93c40d82d9..258234efe0 100644 --- a/packages/styles/src/components/button-group.scss +++ b/packages/styles/src/components/button-group.scss @@ -10,7 +10,6 @@ @use './../variables/components/button'; @use './../variables/components/forms'; - .btn-group { max-width: 100%; flex-wrap: wrap; From 2d170f682ad755501c95ba3a9f40bcb6d84aa99a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliz=C3=A9=20Debray?= Date: Mon, 17 Jun 2024 08:44:04 +0200 Subject: [PATCH 5/6] Update pnpm-lock.yaml --- pnpm-lock.yaml | 69 ++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 59 insertions(+), 10 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 30531ec77b..f668ea283b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10995,11 +10995,11 @@ snapshots: tslib: 2.6.2 typescript: 5.3.3 undici: 6.11.1 - vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.1)(terser@5.29.1) watchpack: 2.4.0 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) - 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(esbuild@0.20.1)) optionalDependencies: @@ -11093,7 +11093,7 @@ snapshots: watchpack: 2.4.0 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) - webpack-dev-server: 4.15.1(webpack@5.90.3) + webpack-dev-server: 4.15.1(webpack@5.90.3(esbuild@0.20.1)) webpack-merge: 5.10.0 webpack-subresource-integrity: 5.1.0(webpack@5.90.3(esbuild@0.20.1)) optionalDependencies: @@ -11128,7 +11128,7 @@ snapshots: '@angular-devkit/architect': 0.1703.7(chokidar@3.6.0) rxjs: 7.8.1 webpack: 5.90.3(esbuild@0.20.1) - webpack-dev-server: 4.15.1(webpack@5.90.3) + webpack-dev-server: 4.15.1(webpack@5.90.3(esbuild@0.20.1)) transitivePeerDependencies: - chokidar @@ -15849,7 +15849,7 @@ snapshots: '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': dependencies: - vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.1)(terser@5.29.1) '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': dependencies: @@ -24541,7 +24541,7 @@ snapshots: replace-ext: 2.0.0 teex: 1.0.1 - vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1): + vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.1)(terser@5.29.1): dependencies: esbuild: 0.19.12 postcss: 8.4.35 @@ -24550,7 +24550,7 @@ snapshots: '@types/node': 20.12.7 fsevents: 2.3.3 less: 4.2.0 - sass: 1.71.1 + sass: 1.77.1 terser: 5.29.1 vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1): @@ -24630,7 +24630,7 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-dev-middleware@5.3.3(webpack@5.90.3): + webpack-dev-middleware@5.3.3(webpack@5.90.3(esbuild@0.20.1)): dependencies: colorette: 2.0.20 memfs: 3.5.1 @@ -24639,6 +24639,15 @@ snapshots: schema-utils: 4.0.1 webpack: 5.90.3(esbuild@0.20.1) + webpack-dev-middleware@5.3.3(webpack@5.91.0): + dependencies: + colorette: 2.0.20 + memfs: 3.5.1 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.0.1 + webpack: 5.91.0 + webpack-dev-middleware@6.1.2(webpack@5.90.3(esbuild@0.20.1)): dependencies: colorette: 2.0.20 @@ -24649,7 +24658,7 @@ snapshots: optionalDependencies: webpack: 5.90.3(esbuild@0.20.1) - webpack-dev-server@4.15.1(webpack@5.90.3): + webpack-dev-server@4.15.1(webpack@5.90.3(esbuild@0.20.1)): dependencies: '@types/bonjour': 3.5.10 '@types/connect-history-api-fallback': 1.5.0 @@ -24679,7 +24688,7 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 5.3.3(webpack@5.90.3) + webpack-dev-middleware: 5.3.3(webpack@5.90.3(esbuild@0.20.1)) ws: 8.16.0 optionalDependencies: webpack: 5.90.3(esbuild@0.20.1) @@ -24689,6 +24698,46 @@ snapshots: - supports-color - utf-8-validate + webpack-dev-server@4.15.1(webpack@5.91.0): + dependencies: + '@types/bonjour': 3.5.10 + '@types/connect-history-api-fallback': 1.5.0 + '@types/express': 4.17.17 + '@types/serve-index': 1.9.1 + '@types/serve-static': 1.15.1 + '@types/sockjs': 0.3.33 + '@types/ws': 8.5.5 + ansi-html-community: 0.0.8 + bonjour-service: 1.1.1 + chokidar: 3.5.3 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.18.2 + graceful-fs: 4.2.11 + html-entities: 2.3.3 + http-proxy-middleware: 2.0.6(@types/express@4.17.17) + ipaddr.js: 2.0.1 + launch-editor: 2.6.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.0.1 + selfsigned: 2.1.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack-dev-middleware: 5.3.3(webpack@5.91.0) + ws: 8.16.0 + optionalDependencies: + webpack: 5.91.0 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1 From 4c4c951b457c4eff7b1d92d134a257d4d8bb4507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliz=C3=A9=20Debray?= Date: Tue, 18 Jun 2024 09:59:20 +0200 Subject: [PATCH 6/6] Update pnpm-lock.yaml --- pnpm-lock.yaml | 436 ++++++++++++++++++++++++++++--------------------- 1 file changed, 254 insertions(+), 182 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e70b224963..8a1568358a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -498,7 +498,7 @@ importers: devDependencies: '@geometricpanda/storybook-addon-badges': specifier: 2.0.2 - version: 2.0.2(@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/components@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/core-events@8.1.9)(@storybook/manager-api@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/preview-api@8.1.9)(@storybook/theming@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/types@8.1.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.0.2(@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/components@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/core-events@8.1.9)(@storybook/manager-api@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/preview-api@8.1.9)(@storybook/theming@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/types@8.1.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@lit/task': specifier: 1.0.1 version: 1.0.1 @@ -516,10 +516,10 @@ importers: version: 6.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-docs': specifier: 8.1.9 - version: 8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@2.8.8) + version: 8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.3.2) '@storybook/addon-essentials': specifier: 8.1.9 - version: 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-links': specifier: 8.1.9 version: 8.1.9(react@18.3.1) @@ -528,7 +528,7 @@ importers: version: 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/blocks': specifier: 8.1.9 - version: 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/components': specifier: 8.1.9 version: 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -552,10 +552,10 @@ importers: version: 8.1.9 '@storybook/web-components': specifier: 8.1.9 - version: 8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/web-components-vite': specifier: 8.1.9 - version: 8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1)) + version: 8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1)) '@swisspost/design-system-components-angular': specifier: workspace:7.1.0 version: link:../components-angular/dist/components @@ -781,7 +781,7 @@ importers: version: 14.0.1 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0 @@ -805,7 +805,7 @@ importers: version: 2.0.4 ts-jest: specifier: 29.1.5 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -1084,7 +1084,7 @@ importers: version: 5.1.0 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + version: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) postcss: specifier: 8.4.38 version: 8.4.38 @@ -11630,11 +11630,11 @@ snapshots: tslib: 2.6.2 typescript: 5.3.3 undici: 6.11.1 - vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.5)(terser@5.29.1) watchpack: 2.4.0 webpack: 5.90.3(esbuild@0.20.1) webpack-dev-middleware: 6.1.2(webpack@5.90.3(esbuild@0.20.1)) - webpack-dev-server: 4.15.1(webpack@5.90.3(esbuild@0.20.1)) + webpack-dev-server: 4.15.1(webpack@5.92.0) webpack-merge: 5.10.0 webpack-subresource-integrity: 5.1.0(webpack@5.90.3(esbuild@0.20.1)) optionalDependencies: @@ -14107,9 +14107,9 @@ snapshots: '@floating-ui/utils@0.2.1': {} - '@geometricpanda/storybook-addon-badges@2.0.2(@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/components@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/core-events@8.1.9)(@storybook/manager-api@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/preview-api@8.1.9)(@storybook/theming@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/types@8.1.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@geometricpanda/storybook-addon-badges@2.0.2(@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/components@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/core-events@8.1.9)(@storybook/manager-api@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/preview-api@8.1.9)(@storybook/theming@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@storybook/types@8.1.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/components': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 8.1.9 '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -14208,6 +14208,41 @@ snapshots: - ts-node optional: true + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.8.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2))': dependencies: '@jest/console': 29.7.0 @@ -15172,9 +15207,9 @@ snapshots: memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-controls@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/addon-controls@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) dequal: 2.0.3 lodash: 4.17.21 ts-dedent: 2.2.0 @@ -15187,11 +15222,11 @@ snapshots: - react-dom - supports-color - '@storybook/addon-docs@8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@2.8.8)': + '@storybook/addon-docs@8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.3.2)': dependencies: '@babel/core': 7.24.7 '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) - '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 8.1.9 '@storybook/components': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-plugin': 8.1.9 @@ -15215,18 +15250,18 @@ snapshots: - prettier - supports-color - '@storybook/addon-essentials@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/addon-essentials@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/addon-actions': 8.1.9 '@storybook/addon-backgrounds': 8.1.9 - '@storybook/addon-controls': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/addon-docs': 8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@2.8.8) + '@storybook/addon-controls': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-docs': 8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.3.2) '@storybook/addon-highlight': 8.1.9 '@storybook/addon-measure': 8.1.9 '@storybook/addon-outline': 8.1.9 '@storybook/addon-toolbars': 8.1.9 '@storybook/addon-viewport': 8.1.9 - '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@2.8.8) + '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2) '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 8.1.9 '@storybook/preview-api': 8.1.9 @@ -15299,14 +15334,14 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 8.1.9 '@storybook/client-logger': 8.1.9 '@storybook/components': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 8.1.9 '@storybook/csf': 0.1.7 - '@storybook/docs-tools': 8.1.9(encoding@0.1.13)(prettier@2.8.8) + '@storybook/docs-tools': 8.1.9(encoding@0.1.13)(prettier@3.3.2) '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -15335,27 +15370,6 @@ snapshots: - prettier - supports-color - '@storybook/builder-manager@8.1.9(encoding@0.1.13)(prettier@2.8.8)': - dependencies: - '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@2.8.8) - '@storybook/manager': 8.1.9 - '@storybook/node-logger': 8.1.9 - '@types/ejs': 3.1.2 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.1) - browser-assert: 1.2.1 - ejs: 3.1.10 - esbuild: 0.20.1 - esbuild-plugin-alias: 0.2.1 - express: 4.18.2 - fs-extra: 11.1.1 - process: 0.11.10 - util: 0.12.5 - transitivePeerDependencies: - - encoding - - prettier - - supports-color - '@storybook/builder-manager@8.1.9(encoding@0.1.13)(prettier@3.3.2)': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 @@ -15377,11 +15391,11 @@ snapshots: - prettier - supports-color - '@storybook/builder-vite@8.1.9(encoding@0.1.13)(prettier@2.8.8)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1))': + '@storybook/builder-vite@8.1.9(encoding@0.1.13)(prettier@3.3.2)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1))': dependencies: '@storybook/channels': 8.1.9 '@storybook/client-logger': 8.1.9 - '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@2.8.8) + '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2) '@storybook/core-events': 8.1.9 '@storybook/csf-plugin': 8.1.9 '@storybook/node-logger': 8.1.9 @@ -15525,43 +15539,6 @@ snapshots: - '@types/react' - '@types/react-dom' - '@storybook/core-common@8.1.9(encoding@0.1.13)(prettier@2.8.8)': - dependencies: - '@storybook/core-events': 8.1.9 - '@storybook/csf-tools': 8.1.9 - '@storybook/node-logger': 8.1.9 - '@storybook/types': 8.1.9 - '@yarnpkg/fslib': 2.10.3 - '@yarnpkg/libzip': 2.3.0 - chalk: 4.1.2 - cross-spawn: 7.0.3 - esbuild: 0.20.1 - esbuild-register: 3.5.0(esbuild@0.20.1) - execa: 5.1.1 - file-system-cache: 2.3.0 - find-cache-dir: 3.3.2 - find-up: 5.0.0 - fs-extra: 11.1.1 - glob: 10.4.1 - handlebars: 4.7.7 - lazy-universal-dotenv: 4.0.0 - node-fetch: 2.7.0(encoding@0.1.13) - picomatch: 2.3.1 - pkg-dir: 5.0.0 - prettier-fallback: prettier@3.3.2 - pretty-hrtime: 1.0.3 - resolve-from: 5.0.0 - semver: 7.6.0 - tempy: 3.1.0 - tiny-invariant: 1.3.3 - ts-dedent: 2.2.0 - util: 0.12.5 - optionalDependencies: - prettier: 2.8.8 - transitivePeerDependencies: - - encoding - - supports-color - '@storybook/core-common@8.1.9(encoding@0.1.13)(prettier@3.3.2)': dependencies: '@storybook/core-events': 8.1.9 @@ -15612,62 +15589,6 @@ snapshots: '@storybook/csf': 0.1.7 ts-dedent: 2.2.0 - '@storybook/core-server@8.1.9(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@aw-web-design/x-default-browser': 1.4.126 - '@babel/core': 7.24.7 - '@babel/parser': 7.24.5 - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 8.1.9(encoding@0.1.13)(prettier@2.8.8) - '@storybook/channels': 8.1.9 - '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@2.8.8) - '@storybook/core-events': 8.1.9 - '@storybook/csf': 0.1.7 - '@storybook/csf-tools': 8.1.9 - '@storybook/docs-mdx': 3.1.0-next.0 - '@storybook/global': 5.0.0 - '@storybook/manager': 8.1.9 - '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/node-logger': 8.1.9 - '@storybook/preview-api': 8.1.9 - '@storybook/telemetry': 8.1.9(encoding@0.1.13)(prettier@2.8.8) - '@storybook/types': 8.1.9 - '@types/detect-port': 1.3.3 - '@types/diff': 5.2.1 - '@types/node': 18.19.28 - '@types/pretty-hrtime': 1.0.1 - '@types/semver': 7.5.8 - better-opn: 3.0.2 - chalk: 4.1.2 - cli-table3: 0.6.3 - compression: 1.7.4 - detect-port: 1.5.1 - diff: 5.2.0 - express: 4.18.2 - fs-extra: 11.1.1 - globby: 14.0.1 - lodash: 4.17.21 - open: 8.4.2 - pretty-hrtime: 1.0.3 - prompts: 2.4.2 - read-pkg-up: 7.0.1 - semver: 7.6.0 - telejson: 7.2.0 - tiny-invariant: 1.3.3 - ts-dedent: 2.2.0 - util: 0.12.5 - util-deprecate: 1.0.2 - watchpack: 2.4.1 - ws: 8.16.0 - transitivePeerDependencies: - - bufferutil - - encoding - - prettier - - react - - react-dom - - supports-color - - utf-8-validate - '@storybook/core-server@8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@aw-web-design/x-default-browser': 1.4.126 @@ -15763,9 +15684,9 @@ snapshots: '@storybook/docs-mdx@3.1.0-next.0': {} - '@storybook/docs-tools@8.1.9(encoding@0.1.13)(prettier@2.8.8)': + '@storybook/docs-tools@8.1.9(encoding@0.1.13)(prettier@3.3.2)': dependencies: - '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@2.8.8) + '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2) '@storybook/core-events': 8.1.9 '@storybook/preview-api': 8.1.9 '@storybook/types': 8.1.9 @@ -15898,21 +15819,6 @@ snapshots: core-js: 3.37.1 find-up: 4.1.0 - '@storybook/telemetry@8.1.9(encoding@0.1.13)(prettier@2.8.8)': - dependencies: - '@storybook/client-logger': 8.1.9 - '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@2.8.8) - '@storybook/csf-tools': 8.1.9 - chalk: 4.1.2 - detect-package-manager: 2.0.1 - fetch-retry: 5.0.5 - fs-extra: 11.1.1 - read-pkg-up: 7.0.1 - transitivePeerDependencies: - - encoding - - prettier - - supports-color - '@storybook/telemetry@8.1.9(encoding@0.1.13)(prettier@3.3.2)': dependencies: '@storybook/client-logger': 8.1.9 @@ -15975,13 +15881,13 @@ snapshots: '@types/express': 4.17.17 file-system-cache: 2.3.0 - '@storybook/web-components-vite@8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1))': + '@storybook/web-components-vite@8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1))': dependencies: - '@storybook/builder-vite': 8.1.9(encoding@0.1.13)(prettier@2.8.8)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1)) - '@storybook/core-server': 8.1.9(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/builder-vite': 8.1.9(encoding@0.1.13)(prettier@3.3.2)(typescript@5.3.3)(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.77.5)(terser@5.29.1)) + '@storybook/core-server': 8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 8.1.9 '@storybook/types': 8.1.9 - '@storybook/web-components': 8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/web-components': 8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) magic-string: 0.30.8 transitivePeerDependencies: - '@preact/preset-vite' @@ -15997,10 +15903,10 @@ snapshots: - vite - vite-plugin-glimmerx - '@storybook/web-components@8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@2.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/web-components@8.1.9(encoding@0.1.13)(lit@3.1.4)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 8.1.9 - '@storybook/docs-tools': 8.1.9(encoding@0.1.13)(prettier@2.8.8) + '@storybook/docs-tools': 8.1.9(encoding@0.1.13)(prettier@3.3.2) '@storybook/global': 5.0.0 '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 8.1.9 @@ -16979,7 +16885,7 @@ snapshots: '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': dependencies: - vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) + vite: 5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.5)(terser@5.29.1) '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': dependencies: @@ -18181,6 +18087,21 @@ snapshots: - ts-node optional: true + create-jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + create-jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: '@jest/types': 29.6.3 @@ -19076,7 +18997,7 @@ snapshots: '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.2.2) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-react: 7.34.2(eslint@8.57.0) @@ -19106,12 +19027,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0): + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): dependencies: debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.16.0 eslint: 8.57.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) fast-glob: 3.3.2 get-tsconfig: 4.7.0 @@ -19153,14 +19074,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): dependencies: debug: 3.2.7(supports-color@8.1.1) optionalDependencies: '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.2.2) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color @@ -19208,7 +19129,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) hasown: 2.0.0 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -20863,6 +20784,45 @@ snapshots: - ts-node optional: true + jest-cli@29.7.0(@types/node@20.14.0): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + + jest-cli@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + jest-cli@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) @@ -20965,6 +20925,37 @@ snapshots: - supports-color optional: true + jest-config@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): + dependencies: + '@babel/core': 7.24.7 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.24.7) + chalk: 4.1.2 + ci-info: 3.8.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.7 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.14.0 + ts-node: 10.9.2(@types/node@20.14.0)(typescript@4.9.5) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + jest-config@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)): dependencies: '@babel/core': 7.24.7 @@ -21278,10 +21269,23 @@ snapshots: jest@29.7.0(@types/node@20.14.0): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + jest-cli: 29.7.0(@types/node@20.14.0) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + + jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) + '@jest/types': 29.6.3 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -24919,17 +24923,17 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)))(typescript@5.2.2): + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)) + jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5)) 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.2.2 + typescript: 4.9.5 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.24.7 @@ -24937,17 +24941,17 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.7) - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)))(typescript@5.3.3): + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2)))(typescript@5.2.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) + jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.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.3.3 + typescript: 5.2.2 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.24.7 @@ -24955,17 +24959,17 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.7) - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0))(typescript@4.9.5): + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)))(typescript@5.3.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.0) + jest: 29.7.0(@types/node@20.14.0)(ts-node@10.9.2(@types/node@20.14.0)(typescript@5.3.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.0 - typescript: 4.9.5 + typescript: 5.3.3 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.24.7 @@ -24991,6 +24995,25 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + ts-node@10.9.2(@types/node@20.14.0)(typescript@4.9.5): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.14.0 + acorn: 8.9.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optional: true + ts-node@10.9.2(@types/node@20.14.0)(typescript@5.2.2): dependencies: '@cspotcode/source-map-support': 0.8.1 @@ -25531,7 +25554,7 @@ snapshots: replace-ext: 2.0.0 teex: 1.0.1 - vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1): + vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.77.5)(terser@5.29.1): dependencies: esbuild: 0.19.12 postcss: 8.4.38 @@ -25540,7 +25563,7 @@ snapshots: '@types/node': 20.12.7 fsevents: 2.3.3 less: 4.2.0 - sass: 1.71.1 + sass: 1.77.5 terser: 5.29.1 vite@5.1.7(@types/node@20.14.0)(less@4.2.0)(sass@1.71.1)(terser@5.29.1): @@ -25629,6 +25652,15 @@ snapshots: schema-utils: 4.0.1 webpack: 5.90.3(esbuild@0.20.1) + webpack-dev-middleware@5.3.3(webpack@5.92.0): + dependencies: + colorette: 2.0.20 + memfs: 3.5.1 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.0.1 + webpack: 5.92.0 + webpack-dev-middleware@6.1.2(webpack@5.90.3(esbuild@0.20.1)): dependencies: colorette: 2.0.20 @@ -25679,6 +25711,46 @@ snapshots: - supports-color - utf-8-validate + webpack-dev-server@4.15.1(webpack@5.92.0): + dependencies: + '@types/bonjour': 3.5.10 + '@types/connect-history-api-fallback': 1.5.0 + '@types/express': 4.17.17 + '@types/serve-index': 1.9.1 + '@types/serve-static': 1.15.1 + '@types/sockjs': 0.3.33 + '@types/ws': 8.5.5 + ansi-html-community: 0.0.8 + bonjour-service: 1.1.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.18.2 + graceful-fs: 4.2.11 + html-entities: 2.3.3 + http-proxy-middleware: 2.0.6(@types/express@4.17.17) + ipaddr.js: 2.0.1 + launch-editor: 2.6.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.0.1 + selfsigned: 2.1.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack-dev-middleware: 5.3.3(webpack@5.92.0) + ws: 8.16.0 + optionalDependencies: + webpack: 5.92.0 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1