From 8cc432ba26cb059b0a50111ebe403521b83cccb6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=87etin?=
<69278826+cetincakiroglu@users.noreply.github.com>
Date: Wed, 12 Mar 2025 16:36:53 +0300
Subject: [PATCH] docs: update theming documentation
---
apps/showcase/assets/styles/layout/_doc.scss | 112 +-
.../components/doc/app.doc.component.ts | 2 +-
.../showcase/components/doc/app.doc.module.ts | 17 +-
.../doc/app.docapitable.component.ts | 14 +-
.../doc/app.docstyledpreset.component.ts | 56 +
.../doc/app.docthemingsection.component.ts | 3 +
pnpm-lock.yaml | 1692 ++++++++++-------
7 files changed, 1197 insertions(+), 699 deletions(-)
create mode 100644 apps/showcase/components/doc/app.docstyledpreset.component.ts
diff --git a/apps/showcase/assets/styles/layout/_doc.scss b/apps/showcase/assets/styles/layout/_doc.scss
index f7261aeb3b..d4f013cc08 100644
--- a/apps/showcase/assets/styles/layout/_doc.scss
+++ b/apps/showcase/assets/styles/layout/_doc.scss
@@ -38,7 +38,8 @@
background-color: transparent;
border: 0 none;
display: block;
- padding: 0 2rem 1rem 2rem;
+ padding-block: 0 1rem;
+ padding-inline: 2rem;
text-align: center;
color: var(--text-color);
font-size: 1rem;
@@ -111,7 +112,7 @@
align-items: center;
scroll-margin-top: 6.5rem;
- > a {
+ >a {
color: var(--primary-text-color);
opacity: 0.7;
margin-inline-start: 1rem;
@@ -122,7 +123,7 @@
@include focus-visible();
}
- > .doc-section-label-badge {
+ >.doc-section-label-badge {
margin-inline-start: 0.5rem;
}
@@ -131,7 +132,7 @@
}
&:hover {
- > a {
+ >a {
display: block;
&:hover {
@@ -142,7 +143,7 @@
}
.doc-section-description {
- > p {
+ >p {
font-size: 1.125rem;
i {
@@ -184,7 +185,7 @@
overflow-x: hidden;
align-self: flex-start;
- > .navbar-item {
+ >.navbar-item {
.navbar-item-content {
border-inline-start: 1px solid var(--border-color);
padding-inline-start: .25rem;
@@ -197,7 +198,7 @@
}
.navbar-item {
- > .navbar-item-content {
+ >.navbar-item-content {
display: flex;
button {
@@ -229,7 +230,7 @@
}
&.active-navbar-item {
- > .navbar-item-content {
+ >.navbar-item-content {
border-color: var(--primary-text-color);
button {
@@ -281,7 +282,7 @@
right: .75rem;
gap: .5rem;
display: none;
- background: rgba(255,255,255,.05);
+ background: rgba(255, 255, 255, .05);
border-radius: 10px;
padding: 2px;
backdrop-filter: blur(6px);
@@ -298,7 +299,7 @@
cursor: pointer;
&:hover {
- background-color: rgba(255,255,255,.1);
+ background-color: rgba(255, 255, 255, .1);
color: var(--code-button-text-color);
}
@@ -327,7 +328,8 @@
th {
border-bottom: 1px solid var(--border-color);
- padding: .75rem 1rem;
+ padding-block: .75rem;
+ padding-inline: 1rem;
text-align: start;
text-transform: capitalize;
}
@@ -338,7 +340,8 @@
}
td {
- padding: .75rem 1rem;
+ padding-block: .75rem;
+ padding-inline: 1rem;
border-bottom: 1px solid var(--border-color);
white-space: pre-line;
line-height: 1.5;
@@ -368,14 +371,15 @@
}
.doc-option-name,
- > i:not(.pi) {
+ i:not(.pi) {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
position: relative;
scroll-margin-top: 6.5rem;
background-color: var(--mark-background);
color: var(--mark-text);
border-radius: 6px;
- padding: 2px 6px;
+ padding-block: 2px;
+ padding-inline: 6px;
font-weight: 600;
font-style: normal;
white-space: nowrap;
@@ -404,7 +408,8 @@
}
.doc-option-default,
- .doc-option-returnType {
+ .doc-option-return-type,
+ .doc-option-css-variable {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
font-weight: 400;
font-style: normal;
@@ -412,13 +417,18 @@
border-width: 1px;
border-style: solid;
border-radius: 6px;
- padding: 2px 6px;
+ padding-block: 2px;
+ padding-inline: 6px;
max-width: min-content;
border-color: var(--border-color);
background-color: var(--card-background);
color: var(--text-secondary-color);
}
+ .doc-option-css-variable {
+ white-space: nowrap;
+ }
+
.doc-option-parameter-name {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
}
@@ -434,3 +444,73 @@
}
}
}
+
+.doc-ptviewerwrapper {
+ display: flex;
+ flex-direction: row;
+ padding: 0 !important;
+
+ .doc-ptviewer {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-color: var(--border-color);
+ border-width: 0 1px 0 0;
+ padding: 1rem;
+ width: 75%;
+ }
+
+ .doc-ptoptions {
+ display: flex;
+ flex-direction: column;
+ gap: .5rem;
+ padding: .5rem;
+ width: 25%;
+ max-height: 720px;
+ overflow-y: auto;
+
+ .doc-ptoption {
+ display: flex;
+ flex-direction: column;
+ padding: .5rem;
+
+ &:hover {
+ background-color: var(--hover-background);
+ }
+
+ .doc-ptoption-text:hover {
+ cursor: default;
+ }
+ }
+ }
+}
+
+.doc-preset-table {
+ border-collapse: collapse;
+ width: 100%;
+ min-width: 640px;
+ margin-bottom: 1.5rem;
+
+ th {
+ border-bottom: 1px solid var(--border-color);
+ padding-block: .75rem;
+ padding-inline: 1rem;
+ text-align: start;
+ text-transform: capitalize;
+ }
+
+ td {
+ padding-block: .75rem;
+ padding-inline: 1rem;
+ border-bottom: 1px solid var(--border-color);
+ white-space: pre-line;
+ line-height: 1.5;
+ scroll-margin-top: 6.5rem;
+
+ &:first-child {
+ color: var(--primary-text-color);
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace;
+ font-weight: 600;
+ }
+ }
+}
diff --git a/apps/showcase/components/doc/app.doc.component.ts b/apps/showcase/components/doc/app.doc.component.ts
index 0660339196..08339a8200 100644
--- a/apps/showcase/components/doc/app.doc.component.ts
+++ b/apps/showcase/components/doc/app.doc.component.ts
@@ -33,7 +33,7 @@ import { AppDocService } from './app.doc.service';
}
@if (themeDocs) {
-
+
}
`,
diff --git a/apps/showcase/components/doc/app.doc.module.ts b/apps/showcase/components/doc/app.doc.module.ts
index ebad8c53cd..1eb3c943f4 100644
--- a/apps/showcase/components/doc/app.doc.module.ts
+++ b/apps/showcase/components/doc/app.doc.module.ts
@@ -16,11 +16,24 @@ import { RouterModule } from '@angular/router';
import { AppDocThemingSectionComponent } from './app.docthemingsection.component';
import { AppDocFeaturesSection } from './app.docfeaturessection.component';
import { AppDocService } from './app.doc.service';
+import { AppDocStyledPresetComponent } from '@/components/doc/app.docstyledpreset.component';
@NgModule({
imports: [CommonModule, FormsModule, ButtonModule, InputTextModule, TooltipModule, AppCodeModule, RouterModule],
- exports: [AppDocSectionTextComponent, AppDocApiSection, AppDocFeaturesSection, AppDocSectionNavComponent, AppDocSectionsComponent, AppDevelopmentSection, AppDoc, AppDocApiTable, AppDocThemingSectionComponent],
- declarations: [AppDocFeaturesSection, AppDocSectionTextComponent, AppDocApiSection, AppDocSectionNavComponent, AppDocSectionsComponent, AppDevelopmentSection, AppDoc, AppDocApiTable, AppDocThemingSectionComponent],
+ exports: [
+ AppDocSectionTextComponent,
+ AppDocStyledPresetComponent,
+ CommonModule,
+ AppDocApiSection,
+ AppDocFeaturesSection,
+ AppDocSectionNavComponent,
+ AppDocSectionsComponent,
+ AppDevelopmentSection,
+ AppDoc,
+ AppDocApiTable,
+ AppDocThemingSectionComponent
+ ],
+ declarations: [AppDocFeaturesSection, AppDocApiSection, AppDocStyledPresetComponent, AppDocSectionNavComponent, AppDocSectionsComponent, AppDocSectionTextComponent, AppDevelopmentSection, AppDoc, AppDocApiTable, AppDocThemingSectionComponent],
providers: [AppDocService]
})
export class AppDocModule {}
diff --git a/apps/showcase/components/doc/app.docapitable.component.ts b/apps/showcase/components/doc/app.docapitable.component.ts
index a221f51c87..c19bae0c33 100644
--- a/apps/showcase/components/doc/app.docapitable.component.ts
+++ b/apps/showcase/components/doc/app.docapitable.component.ts
@@ -18,7 +18,7 @@ import { Router } from '@angular/router';
-
+ |
{{ key }}
@@ -71,17 +71,21 @@ import { Router } from '@angular/router';
null
- {{ entry[1] }}
-
+ >
+ {{ entry[1] }}
+
|
diff --git a/apps/showcase/components/doc/app.docstyledpreset.component.ts b/apps/showcase/components/doc/app.docstyledpreset.component.ts
new file mode 100644
index 0000000000..2e78baf5bd
--- /dev/null
+++ b/apps/showcase/components/doc/app.docstyledpreset.component.ts
@@ -0,0 +1,56 @@
+import { Component, Input } from '@angular/core';
+
+@Component({
+ selector: 'app-docstyledpreset',
+ standalone: false,
+ template: `
+ PrimeNG offers various preset options that allow you to customize the component's styling to match your application's design system. Below you'll find links to the implementation and type definitions for each preset.
+
+ `
+})
+export class AppDocStyledPresetComponent {
+ @Input() data: string;
+
+ headers: string[] = ['Preset', 'Implementation', 'Types'];
+
+ presets: string[] = ['Aura', 'Lara', 'Nora', 'Material'];
+}
diff --git a/apps/showcase/components/doc/app.docthemingsection.component.ts b/apps/showcase/components/doc/app.docthemingsection.component.ts
index aeecb81394..d7e7bebdad 100644
--- a/apps/showcase/components/doc/app.docthemingsection.component.ts
+++ b/apps/showcase/components/doc/app.docthemingsection.component.ts
@@ -17,6 +17,7 @@ import ThemeDoc from '@/doc/apidoc/themedoc.json';
@if (tokensDoc()) {
}
+
`,
@@ -27,6 +28,8 @@ export class AppDocThemingSectionComponent {
@Input() docs: string;
+ @Input() componentName: string;
+
tokensDoc = signal([]);
classDoc = signal([]);
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index db0b507111..feb930d3d3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -11,16 +11,16 @@ catalogs:
version: 19.2.1
'@angular-eslint/eslint-plugin':
specifier: ^19
- version: 19.2.0
+ version: 19.2.1
'@angular-eslint/eslint-plugin-template':
specifier: ^19
- version: 19.2.0
+ version: 19.2.1
'@angular-eslint/schematics':
specifier: ^19
- version: 19.2.0
+ version: 19.2.1
'@angular-eslint/template-parser':
specifier: ^19
- version: 19.2.0
+ version: 19.2.1
'@angular/animations':
specifier: ^19
version: 19.2.1
@@ -83,25 +83,25 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: catalog:angular19
- version: 19.2.1(z334e5vy3aghokwjxdfr72didq)
+ version: 19.2.1(d22jztehggvdv7qadvhfcanq4u)
'@angular-eslint/eslint-plugin':
specifier: catalog:angular19
- version: 19.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ version: 19.2.1(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
'@angular-eslint/eslint-plugin-template':
specifier: catalog:angular19
- version: 19.2.0(@typescript-eslint/types@8.26.0)(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ version: 19.2.1(@typescript-eslint/types@8.26.1)(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
'@angular-eslint/schematics':
specifier: catalog:angular19
- version: 19.2.0(@typescript-eslint/types@8.26.0)(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(chokidar@4.0.3)(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ version: 19.2.1(@typescript-eslint/types@8.26.1)(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(chokidar@4.0.3)(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
'@angular-eslint/template-parser':
specifier: catalog:angular19
- version: 19.2.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ version: 19.2.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
'@angular/animations':
specifier: catalog:angular19
version: 19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))
'@angular/cli':
specifier: catalog:angular19
- version: 19.2.1(@types/node@22.13.9)(chokidar@4.0.3)
+ version: 19.2.1(@types/node@22.13.10)(chokidar@4.0.3)
'@angular/common':
specifier: catalog:angular19
version: 19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
@@ -131,34 +131,34 @@ importers:
version: 19.2.1(@angular/common@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.1(@angular/animations@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
'@commitlint/cli':
specifier: ^19.6.1
- version: 19.7.1(@types/node@22.13.9)(typescript@5.5.4)
+ version: 19.8.0(@types/node@22.13.10)(typescript@5.5.4)
'@commitlint/config-conventional':
specifier: ^19.6.0
- version: 19.7.1
+ version: 19.8.0
'@typescript-eslint/eslint-plugin':
specifier: ^8.13.0
- version: 8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ version: 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
cross-env:
specifier: ^7.0.3
version: 7.0.3
eslint:
specifier: ^9.14.0
- version: 9.21.0(jiti@2.4.2)
+ version: 9.22.0(jiti@2.4.2)
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@9.21.0(jiti@2.4.2))
+ version: 9.1.0(eslint@9.22.0(jiti@2.4.2))
eslint-plugin-import:
specifier: ^2.31.0
- version: 2.31.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))
+ version: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))
eslint-plugin-jsdoc:
specifier: ^50.4.3
- version: 50.6.3(eslint@9.21.0(jiti@2.4.2))
+ version: 50.6.6(eslint@9.22.0(jiti@2.4.2))
eslint-plugin-prefer-arrow:
specifier: ^1.2.3
- version: 1.2.3(eslint@9.21.0(jiti@2.4.2))
+ version: 1.2.3(eslint@9.22.0(jiti@2.4.2))
eslint-plugin-prettier:
specifier: ^4.2.1
- version: 4.2.1(eslint-config-prettier@9.1.0(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.3)
+ version: 4.2.1(eslint-config-prettier@9.1.0(eslint@9.22.0(jiti@2.4.2)))(eslint@9.22.0(jiti@2.4.2))(prettier@3.5.3)
fs-extra:
specifier: ^11.2.0
version: 11.3.0
@@ -173,10 +173,10 @@ importers:
version: 12.5.0
ng-packagr:
specifier: catalog:angular19
- version: 19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17)(tslib@2.8.1)(typescript@5.5.4)
+ version: 19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)))(tslib@2.8.1)(typescript@5.5.4)
pnpm:
specifier: ^9.6.0
- version: 9.15.7
+ version: 9.15.9
prettier:
specifier: ^3.0.0
version: 3.5.3
@@ -191,16 +191,16 @@ importers:
dependencies:
autoprefixer:
specifier: ^10.4.20
- version: 10.4.20(postcss@8.5.3)
+ version: 10.4.21(postcss@8.5.3)
postcss:
specifier: ^8.4.41
version: 8.5.3
tailwindcss:
specifier: ^3.4.10
- version: 3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))
+ version: 3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))
tailwindcss-primeui:
specifier: ^0.5.0
- version: 0.5.1(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4)))
+ version: 0.5.1(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)))
devDependencies:
'@algolia/client-search':
specifier: ^4.19.1
@@ -240,7 +240,7 @@ importers:
version: 29.5.14
'@types/node':
specifier: ^22.9.0
- version: 22.13.9
+ version: 22.13.10
'@types/react':
specifier: ^18.3.12
version: 18.3.18
@@ -279,7 +279,7 @@ importers:
version: link:../../packages/primeng
prismjs:
specifier: ^1.29.0
- version: 1.29.0
+ version: 1.30.0
quill:
specifier: 2.0.2
version: 2.0.2
@@ -288,7 +288,7 @@ importers:
version: 7.8.2
ts-node:
specifier: ~10.9.1
- version: 10.9.2(@types/node@22.13.9)(typescript@5.5.4)
+ version: 10.9.2(@types/node@22.13.10)(typescript@5.5.4)
tslib:
specifier: ^2.5.0
version: 2.8.1
@@ -384,68 +384,68 @@ packages:
'@algolia/cache-common@4.24.0':
resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
- '@algolia/client-abtesting@5.20.4':
- resolution: {integrity: sha512-OZ3Xvvf+k7NMcwmmioIVX+76E/KKtN607NCMNsBEKe+uHqktZ+I5bmi/EVr2m5VF59Gnh9MTlJCdXtBiGjruxw==}
+ '@algolia/client-abtesting@5.21.0':
+ resolution: {integrity: sha512-I239aSmXa3pXDhp3AWGaIfesqJBNFA7drUM8SIfNxMIzvQXUnHRf4rW1o77QXLI/nIClNsb8KOLaB62gO9LnlQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.20.4':
- resolution: {integrity: sha512-8pM5zQpHonCIBxKmMyBLgQoaSKUNBE5u741VEIjn2ArujolhoKRXempRAlLwEg5hrORKl9XIlit00ff4g6LWvA==}
+ '@algolia/client-analytics@5.21.0':
+ resolution: {integrity: sha512-OxoUfeG9G4VE4gS7B4q65KkHzdGsQsDwxQfR5J9uKB8poSGuNlHJWsF3ABqCkc5VliAR0m8KMjsQ9o/kOpEGnQ==}
engines: {node: '>= 14.0.0'}
'@algolia/client-common@4.24.0':
resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- '@algolia/client-common@5.20.4':
- resolution: {integrity: sha512-OCGa8hKAP6kQKBwi+tu9flTXshz4qeCK5P8J6bI1qq8KYs+/TU1xSotT+E7hO+uyDanGU6dT6soiMSi4A38JgA==}
+ '@algolia/client-common@5.21.0':
+ resolution: {integrity: sha512-iHLgDQFyZNe9M16vipbx6FGOA8NoMswHrfom/QlCGoyh7ntjGvfMb+J2Ss8rRsAlOWluv8h923Ku3QVaB0oWDQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.20.4':
- resolution: {integrity: sha512-MroyJStJFLf/cYeCbguCRdrA2U6miDVqbi3t9ZGovBWWTef7BZwVQG0mLyInzp4MIjBfwqu3xTrhxsiiOavX3A==}
+ '@algolia/client-insights@5.21.0':
+ resolution: {integrity: sha512-y7XBO9Iwb75FLDl95AYcWSLIViJTpR5SUUCyKsYhpP9DgyUqWbISqDLXc96TS9shj+H+7VsTKA9cJK8NUfVN6g==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.20.4':
- resolution: {integrity: sha512-bVR5sxFfgCQ+G0ZegGVhBqtaDd7jCfr33m5mGuT43U+bH//xeqAHQyIS4abcmRulwqeIAHNm5Yl2J7grT3z//A==}
+ '@algolia/client-personalization@5.21.0':
+ resolution: {integrity: sha512-6KU658lD9Tss4oCX6c/O15tNZxw7vR+WAUG95YtZzYG/KGJHTpy2uckqbMmC2cEK4a86FAq4pH5azSJ7cGMjuw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.20.4':
- resolution: {integrity: sha512-ZHsV0vceNDR87wIVaz7VjxilwCUCkzbuy4QnqIdnQs3NnC43is7KKbEtKueuNw+YGMdx+wmD5kRI2XKip1R93A==}
+ '@algolia/client-query-suggestions@5.21.0':
+ resolution: {integrity: sha512-pG6MyVh1v0X+uwrKHn3U+suHdgJ2C+gug+UGkNHfMELHMsEoWIAQhxMBOFg7hCnWBFjQnuq6qhM3X9X5QO3d9Q==}
engines: {node: '>= 14.0.0'}
'@algolia/client-search@4.24.0':
resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
- '@algolia/client-search@5.20.4':
- resolution: {integrity: sha512-hXM2LpwTzG5kGQSyq3feIijzzl6vkjYPP+LF3ru1relNUIh7fWJ4uYQay2NMNbWX5LWQzF8Vr9qlIA139doQXg==}
+ '@algolia/client-search@5.21.0':
+ resolution: {integrity: sha512-nZfgJH4njBK98tFCmCW1VX/ExH4bNOl9DSboxeXGgvhoL0fG1+4DDr/mrLe21OggVCQqHwXBMh6fFInvBeyhiQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.20.4':
- resolution: {integrity: sha512-idAe53XsTlLSSQ7pJcjscUEmc67vEM+VohYkr78Ebfb43vtfKH0ik8ux9OGQpLRNGntaHqpe/lfU5PDRi5/92w==}
+ '@algolia/ingestion@1.21.0':
+ resolution: {integrity: sha512-k6MZxLbZphGN5uRri9J/krQQBjUrqNcScPh985XXEFXbSCRvOPKVtjjLdVjGVHXXPOQgKrIZHxIdRNbHS+wVuA==}
engines: {node: '>= 14.0.0'}
'@algolia/logger-common@4.24.0':
resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
- '@algolia/monitoring@1.20.4':
- resolution: {integrity: sha512-O6HjdSWtyu5LhHR7gdU83oWbl1vVVRwoTxkENHF61Ar7l9C1Ok91VtnK7RtXB9pJL1kpIMDExwZOT5sEN2Ppfw==}
+ '@algolia/monitoring@1.21.0':
+ resolution: {integrity: sha512-FiW5nnmyHvaGdorqLClw3PM6keXexAMiwbwJ9xzQr4LcNefLG3ln82NafRPgJO/z0dETAOKjds5aSmEFMiITHQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.20.4':
- resolution: {integrity: sha512-p8M78pQjPrN6PudO2TnkWiOJbyp/IPhgCFBW8aZrLshhZpPkV9N4u0YsU/w6OoeYDKSxmXntWQrKYiU1dVRWfg==}
+ '@algolia/recommend@5.21.0':
+ resolution: {integrity: sha512-+JXavbbliaLmah5QNgc/TDW/+r0ALa+rGhg5Y7+pF6GpNnzO0L+nlUaDNE8QbiJfz54F9BkwFUnJJeRJAuzTFw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.20.4':
- resolution: {integrity: sha512-Y8GThjDVdhFUurZKKDdzAML/LNKOA/BOydEcaFeb/g4Iv4Iq0qQJs6aIbtdsngUU6cu74qH/2P84kr2h16uVvQ==}
+ '@algolia/requester-browser-xhr@5.21.0':
+ resolution: {integrity: sha512-Iw+Yj5hOmo/iixHS94vEAQ3zi5GPpJywhfxn1el/zWo4AvPIte/+1h9Ywgw/+3M7YBj4jgAkScxjxQCxzLBsjA==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-common@4.24.0':
resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
- '@algolia/requester-fetch@5.20.4':
- resolution: {integrity: sha512-OrAUSrvbFi46U7AxOXkyl9QQiaW21XWpixWmcx3D2S65P/DCIGOVE6K2741ZE+WiKIqp+RSYkyDFj3BiFHzLTg==}
+ '@algolia/requester-fetch@5.21.0':
+ resolution: {integrity: sha512-Z00SRLlIFj3SjYVfsd9Yd3kB3dUwQFAkQG18NunWP7cix2ezXpJqA+xAoEf9vc4QZHdxU3Gm8gHAtRiM2iVaTQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.20.4':
- resolution: {integrity: sha512-Jc/bofGBw4P9nBii4oCzCqqusv8DAFFORfUD2Ce1cZk3fvUPk+q/Qnu7i9JpTSHjMc0MWzqApLdq7Nwh1gelLg==}
+ '@algolia/requester-node-http@5.21.0':
+ resolution: {integrity: sha512-WqU0VumUILrIeVYCTGZlyyZoC/tbvhiyPxfGRRO1cSjxN558bnJLlR2BvS0SJ5b75dRNK7HDvtXo2QoP9eLfiA==}
engines: {node: '>= 14.0.0'}
'@algolia/transporter@4.24.0':
@@ -527,35 +527,35 @@ packages:
resolution: {integrity: sha512-IVWXGROEACyV+YH/s9xvpbLVblK55GvqldZRCMvpevtXMJy1aubOPOB+8TkHOVBlmAteW/5I7ouDbQWVZjNfww==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-eslint/bundled-angular-compiler@19.2.0':
- resolution: {integrity: sha512-hmmAogTpYGbBvnJ0j7DNLi8YQ+YEEuwFdx0heU8XjTpZlRoSRIP7MJJVlaQCt+ZT5f5XwdGtqi9lOXqqcyGHLA==}
+ '@angular-eslint/bundled-angular-compiler@19.2.1':
+ resolution: {integrity: sha512-8/NY4OCpiRDSOaqnpIOW7kMirqqsTY1U751iuMH0z9gQImYZWubMLOI0tsLFWmz06pKpgiDZcjD2X9TK2b4Igg==}
- '@angular-eslint/eslint-plugin-template@19.2.0':
- resolution: {integrity: sha512-lUSzmk5/Dr0bNc2Omb5CZDu3zQZh70bJyuXnN5MKd00V1b3u90eqvMSveFzWFJ6Eot8Hh8+FxtiozPwGqOE+Og==}
+ '@angular-eslint/eslint-plugin-template@19.2.1':
+ resolution: {integrity: sha512-yBGut4PedTkZcGbm1sthQ671CXERkC72eXTaZlMRhKNQDf3R6zEVc60q5DQZoEIzvgeIbaZdWhZgsCLwlhfGrQ==}
peerDependencies:
'@typescript-eslint/types': ^7.11.0 || ^8.0.0
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/eslint-plugin@19.2.0':
- resolution: {integrity: sha512-QQWWDrTdJ22tBd7RLFG/FdPwNyYEhg7YwWgn29z6XcdnV00ZFtf7FRbv/te1kqVNPvfjtht7bvtHcPQ432aUdQ==}
+ '@angular-eslint/eslint-plugin@19.2.1':
+ resolution: {integrity: sha512-wCjyH5cJb4fBchEnt3L6dQ6syaLHD+xeHCSynD/Lw3K6BcVEnFa+82SfSscgXtYLRPHlkK5CmYYs3AlALhA+/w==}
peerDependencies:
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/schematics@19.2.0':
- resolution: {integrity: sha512-SQfbKgPEJNkK5TVXRsdnWp6TjvVZOczvf8lELF1n+I/Uwmp7ulUjTRgTo59ZQnXoPSs2qCPgS4gAOVR6CD91zQ==}
+ '@angular-eslint/schematics@19.2.1':
+ resolution: {integrity: sha512-rfIHIIiXfsShwNbrVoUVu2ZzHkXghuJj8L9pXkdy92DoYSof0lqGURoPb7hv4wvZXGB3yo6S17cbw3IkeYJkzA==}
- '@angular-eslint/template-parser@19.2.0':
- resolution: {integrity: sha512-VqgvFrILhoMe0GHZrx+Bjy8kx7/LJfJTd+x/wzE/X1cCChSU81MBZFMVeFMnoI75OOQUf4fwaaKrtUhUvAkVyw==}
+ '@angular-eslint/template-parser@19.2.1':
+ resolution: {integrity: sha512-fU16NUh8nY02zdkHRsAlGI9ruppsE1ko1Z1PIyB3oofYt4rCKsXb8yXWbXWn7qCjNPVqv4+oLx0BwhJQZwEX8w==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/utils@19.2.0':
- resolution: {integrity: sha512-1XQXzIqYadKUxcAgW1DPev56SVbR8Uld6TthgolU7rfIX23RYMIIRtQlrQCk7zoXLXm5fzcGqjTR4wHfoD+iWg==}
+ '@angular-eslint/utils@19.2.1':
+ resolution: {integrity: sha512-TRIOtlDMbz1PqurLXPKMzSUl2iSs02c185g4EeOzTDX93sDvvVDLRj18jZ0IVcjQv5Vs21JK2KsKV/WdGe1OxA==}
peerDependencies:
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
@@ -712,10 +712,18 @@ packages:
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.26.10':
+ resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.26.9':
resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.26.10':
+ resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.26.9':
resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
engines: {node: '>=6.9.0'}
@@ -803,12 +811,12 @@ packages:
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.9':
- resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
+ '@babel/helpers@7.26.10':
+ resolution: {integrity: sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.9':
- resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
+ '@babel/parser@7.26.10':
+ resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -1183,6 +1191,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ '@babel/runtime@7.26.10':
+ resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/runtime@7.26.9':
resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==}
engines: {node: '>=6.9.0'}
@@ -1191,85 +1203,85 @@ packages:
resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.9':
- resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==}
+ '@babel/traverse@7.26.10':
+ resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.9':
- resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
+ '@babel/types@7.26.10':
+ resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
engines: {node: '>=6.9.0'}
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- '@commitlint/cli@19.7.1':
- resolution: {integrity: sha512-iObGjR1tE/PfDtDTEfd+tnRkB3/HJzpQqRTyofS2MPPkDn1mp3DBC8SoPDayokfAy+xKhF8+bwRCJO25Nea0YQ==}
+ '@commitlint/cli@19.8.0':
+ resolution: {integrity: sha512-t/fCrLVu+Ru01h0DtlgHZXbHV2Y8gKocTR5elDOqIRUzQd0/6hpt2VIWOj9b3NDo7y4/gfxeR2zRtXq/qO6iUg==}
engines: {node: '>=v18'}
hasBin: true
- '@commitlint/config-conventional@19.7.1':
- resolution: {integrity: sha512-fsEIF8zgiI/FIWSnykdQNj/0JE4av08MudLTyYHm4FlLWemKoQvPNUYU2M/3tktWcCEyq7aOkDDgtjrmgWFbvg==}
+ '@commitlint/config-conventional@19.8.0':
+ resolution: {integrity: sha512-9I2kKJwcAPwMoAj38hwqFXG0CzS2Kj+SAByPUQ0SlHTfb7VUhYVmo7G2w2tBrqmOf7PFd6MpZ/a1GQJo8na8kw==}
engines: {node: '>=v18'}
- '@commitlint/config-validator@19.5.0':
- resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==}
+ '@commitlint/config-validator@19.8.0':
+ resolution: {integrity: sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==}
engines: {node: '>=v18'}
- '@commitlint/ensure@19.5.0':
- resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==}
+ '@commitlint/ensure@19.8.0':
+ resolution: {integrity: sha512-kNiNU4/bhEQ/wutI1tp1pVW1mQ0QbAjfPRo5v8SaxoVV+ARhkB8Wjg3BSseNYECPzWWfg/WDqQGIfV1RaBFQZg==}
engines: {node: '>=v18'}
- '@commitlint/execute-rule@19.5.0':
- resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==}
+ '@commitlint/execute-rule@19.8.0':
+ resolution: {integrity: sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==}
engines: {node: '>=v18'}
- '@commitlint/format@19.5.0':
- resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==}
+ '@commitlint/format@19.8.0':
+ resolution: {integrity: sha512-EOpA8IERpQstxwp/WGnDArA7S+wlZDeTeKi98WMOvaDLKbjptuHWdOYYr790iO7kTCif/z971PKPI2PkWMfOxg==}
engines: {node: '>=v18'}
- '@commitlint/is-ignored@19.7.1':
- resolution: {integrity: sha512-3IaOc6HVg2hAoGleRK3r9vL9zZ3XY0rf1RsUf6jdQLuaD46ZHnXBiOPTyQ004C4IvYjSWqJwlh0/u2P73aIE3g==}
+ '@commitlint/is-ignored@19.8.0':
+ resolution: {integrity: sha512-L2Jv9yUg/I+jF3zikOV0rdiHUul9X3a/oU5HIXhAJLE2+TXTnEBfqYP9G5yMw/Yb40SnR764g4fyDK6WR2xtpw==}
engines: {node: '>=v18'}
- '@commitlint/lint@19.7.1':
- resolution: {integrity: sha512-LhcPfVjcOcOZA7LEuBBeO00o3MeZa+tWrX9Xyl1r9PMd5FWsEoZI9IgnGqTKZ0lZt5pO3ZlstgnRyY1CJJc9Xg==}
+ '@commitlint/lint@19.8.0':
+ resolution: {integrity: sha512-+/NZKyWKSf39FeNpqhfMebmaLa1P90i1Nrb1SrA7oSU5GNN/lksA4z6+ZTnsft01YfhRZSYMbgGsARXvkr/VLQ==}
engines: {node: '>=v18'}
- '@commitlint/load@19.6.1':
- resolution: {integrity: sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==}
+ '@commitlint/load@19.8.0':
+ resolution: {integrity: sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==}
engines: {node: '>=v18'}
- '@commitlint/message@19.5.0':
- resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==}
+ '@commitlint/message@19.8.0':
+ resolution: {integrity: sha512-qs/5Vi9bYjf+ZV40bvdCyBn5DvbuelhR6qewLE8Bh476F7KnNyLfdM/ETJ4cp96WgeeHo6tesA2TMXS0sh5X4A==}
engines: {node: '>=v18'}
- '@commitlint/parse@19.5.0':
- resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==}
+ '@commitlint/parse@19.8.0':
+ resolution: {integrity: sha512-YNIKAc4EXvNeAvyeEnzgvm1VyAe0/b3Wax7pjJSwXuhqIQ1/t2hD3OYRXb6D5/GffIvaX82RbjD+nWtMZCLL7Q==}
engines: {node: '>=v18'}
- '@commitlint/read@19.5.0':
- resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==}
+ '@commitlint/read@19.8.0':
+ resolution: {integrity: sha512-6ywxOGYajcxK1y1MfzrOnwsXO6nnErna88gRWEl3qqOOP8MDu/DTeRkGLXBFIZuRZ7mm5yyxU5BmeUvMpNte5w==}
engines: {node: '>=v18'}
- '@commitlint/resolve-extends@19.5.0':
- resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
+ '@commitlint/resolve-extends@19.8.0':
+ resolution: {integrity: sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==}
engines: {node: '>=v18'}
- '@commitlint/rules@19.6.0':
- resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==}
+ '@commitlint/rules@19.8.0':
+ resolution: {integrity: sha512-IZ5IE90h6DSWNuNK/cwjABLAKdy8tP8OgGVGbXe1noBEX5hSsu00uRlLu6JuruiXjWJz2dZc+YSw3H0UZyl/mA==}
engines: {node: '>=v18'}
- '@commitlint/to-lines@19.5.0':
- resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==}
+ '@commitlint/to-lines@19.8.0':
+ resolution: {integrity: sha512-3CKLUw41Cur8VMjh16y8LcsOaKbmQjAKCWlXx6B0vOUREplp6em9uIVhI8Cv934qiwkbi2+uv+mVZPnXJi1o9A==}
engines: {node: '>=v18'}
- '@commitlint/top-level@19.5.0':
- resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==}
+ '@commitlint/top-level@19.8.0':
+ resolution: {integrity: sha512-Rphgoc/omYZisoNkcfaBRPQr4myZEHhLPx2/vTXNLjiCw4RgfPR1wEgUpJ9OOmDCiv5ZyIExhprNLhteqH4FuQ==}
engines: {node: '>=v18'}
- '@commitlint/types@19.5.0':
- resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==}
+ '@commitlint/types@19.8.0':
+ resolution: {integrity: sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==}
engines: {node: '>=v18'}
'@cspotcode/source-map-support@0.8.1':
@@ -1319,6 +1331,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.25.1':
+ resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.19.12':
resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
@@ -1331,6 +1349,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.25.1':
+ resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.19.12':
resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
@@ -1343,6 +1367,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.25.1':
+ resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.19.12':
resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
@@ -1355,6 +1385,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.25.1':
+ resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.19.12':
resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
@@ -1367,6 +1403,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.25.1':
+ resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.19.12':
resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
@@ -1379,6 +1421,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.1':
+ resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.19.12':
resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
@@ -1391,6 +1439,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.25.1':
+ resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.19.12':
resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
@@ -1403,6 +1457,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.1':
+ resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.19.12':
resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
@@ -1415,6 +1475,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.25.1':
+ resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.19.12':
resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
@@ -1427,6 +1493,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.25.1':
+ resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.19.12':
resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
@@ -1439,6 +1511,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.25.1':
+ resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.19.12':
resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
@@ -1451,6 +1529,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.25.1':
+ resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.19.12':
resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
@@ -1463,6 +1547,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.1':
+ resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.19.12':
resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
@@ -1475,6 +1565,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.1':
+ resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.19.12':
resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
@@ -1487,6 +1583,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.1':
+ resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.19.12':
resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
@@ -1499,6 +1601,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.25.1':
+ resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.19.12':
resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
@@ -1511,12 +1619,24 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.25.1':
+ resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.25.0':
resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.25.1':
+ resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.19.12':
resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
@@ -1529,12 +1649,24 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.25.1':
+ resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.25.0':
resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.25.1':
+ resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.19.12':
resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
@@ -1547,6 +1679,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.25.1':
+ resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.19.12':
resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
@@ -1559,6 +1697,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.25.1':
+ resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.19.12':
resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
@@ -1571,6 +1715,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.25.1':
+ resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.19.12':
resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
@@ -1583,6 +1733,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.25.1':
+ resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.19.12':
resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
@@ -1595,8 +1751,14 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.1':
- resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ '@esbuild/win32-x64@0.25.1':
+ resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.5.0':
+ resolution: {integrity: sha512-RoV8Xs9eNwiDvhv7M+xcL4PWyRyIXRY/FLp3buU4h1EYfdF7unWUy3dOjPqb3C7rMUewIcqwW850PgS8h1o1yg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -1609,6 +1771,10 @@ packages:
resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-helpers@0.1.0':
+ resolution: {integrity: sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/core@0.12.0':
resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1617,8 +1783,8 @@ packages:
resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.21.0':
- resolution: {integrity: sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==}
+ '@eslint/js@9.22.0':
+ resolution: {integrity: sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
@@ -1652,8 +1818,8 @@ packages:
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
engines: {node: '>=18.18'}
- '@inquirer/checkbox@4.1.2':
- resolution: {integrity: sha512-PL9ixC5YsPXzXhAZFUPmkXGxfgjkdfZdPEPPmt4kFwQ4LBMDG9n/nHXYRGGZSKZJs+d1sGKWgS2GiPzVRKUdtQ==}
+ '@inquirer/checkbox@4.1.3':
+ resolution: {integrity: sha512-KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1670,8 +1836,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/core@10.1.7':
- resolution: {integrity: sha512-AA9CQhlrt6ZgiSy6qoAigiA1izOa751ugX6ioSjqgJ+/Gd+tEN/TORk5sUYNjXuHWfW0r1n/a6ak4u/NqHHrtA==}
+ '@inquirer/confirm@5.1.7':
+ resolution: {integrity: sha512-Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1679,8 +1845,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/editor@4.2.7':
- resolution: {integrity: sha512-gktCSQtnSZHaBytkJKMKEuswSk2cDBuXX5rxGFv306mwHfBPjg5UAldw9zWGoEyvA9KpRDkeM4jfrx0rXn0GyA==}
+ '@inquirer/core@10.1.8':
+ resolution: {integrity: sha512-HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1688,8 +1854,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/expand@4.0.9':
- resolution: {integrity: sha512-Xxt6nhomWTAmuSX61kVgglLjMEFGa+7+F6UUtdEUeg7fg4r9vaFttUUKrtkViYYrQBA5Ia1tkOJj2koP9BuLig==}
+ '@inquirer/editor@4.2.8':
+ resolution: {integrity: sha512-UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1697,12 +1863,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/figures@1.0.10':
- resolution: {integrity: sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==}
- engines: {node: '>=18'}
-
- '@inquirer/input@4.1.6':
- resolution: {integrity: sha512-1f5AIsZuVjPT4ecA8AwaxDFNHny/tSershP/cTvTDxLdiIGTeILNcKozB0LaYt6mojJLUbOYhpIxicaYf7UKIQ==}
+ '@inquirer/expand@4.0.10':
+ resolution: {integrity: sha512-leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1710,8 +1872,12 @@ packages:
'@types/node':
optional: true
- '@inquirer/number@3.0.9':
- resolution: {integrity: sha512-iN2xZvH3tyIYXLXBvlVh0npk1q/aVuKXZo5hj+K3W3D4ngAEq/DkLpofRzx6oebTUhBvOgryZ+rMV0yImKnG3w==}
+ '@inquirer/figures@1.0.11':
+ resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
+ engines: {node: '>=18'}
+
+ '@inquirer/input@4.1.7':
+ resolution: {integrity: sha512-rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1719,8 +1885,17 @@ packages:
'@types/node':
optional: true
- '@inquirer/password@4.0.9':
- resolution: {integrity: sha512-xBEoOw1XKb0rIN208YU7wM7oJEHhIYkfG7LpTJAEW913GZeaoQerzf5U/LSHI45EVvjAdgNXmXgH51cUXKZcJQ==}
+ '@inquirer/number@3.0.10':
+ resolution: {integrity: sha512-GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/password@4.0.10':
+ resolution: {integrity: sha512-JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1737,8 +1912,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/rawlist@4.0.9':
- resolution: {integrity: sha512-+5t6ebehKqgoxV8fXwE49HkSF2Rc9ijNiVGEQZwvbMI61/Q5RcD+jWD6Gs1tKdz5lkI8GRBL31iO0HjGK1bv+A==}
+ '@inquirer/rawlist@4.0.10':
+ resolution: {integrity: sha512-vOQbQkmhaCsF2bUmjoyRSZJBz77UnIF/F3ZS2LMgwbgyaG2WgwKHh0WKNj0APDB72WDbZijhW5nObQbk+TnbcA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1746,8 +1921,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/search@3.0.9':
- resolution: {integrity: sha512-DWmKztkYo9CvldGBaRMr0ETUHgR86zE6sPDVOHsqz4ISe9o1LuiWfgJk+2r75acFclA93J/lqzhT0dTjCzHuoA==}
+ '@inquirer/search@3.0.10':
+ resolution: {integrity: sha512-EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1755,8 +1930,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/select@4.0.9':
- resolution: {integrity: sha512-BpJyJe7Dkhv2kz7yG7bPSbJLQuu/rqyNlF1CfiiFeFwouegfH+zh13KDyt6+d9DwucKo7hqM3wKLLyJxZMO+Xg==}
+ '@inquirer/select@4.0.10':
+ resolution: {integrity: sha512-Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1768,8 +1943,8 @@ packages:
resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
engines: {node: '>=18'}
- '@inquirer/type@3.0.4':
- resolution: {integrity: sha512-2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA==}
+ '@inquirer/type@3.0.5':
+ resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1831,8 +2006,8 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/json-pack@1.1.1':
- resolution: {integrity: sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==}
+ '@jsonjoy.com/json-pack@1.2.0':
+ resolution: {integrity: sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -2068,8 +2243,8 @@ packages:
resolution: {integrity: sha512-3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/run-script@9.0.2':
- resolution: {integrity: sha512-cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw==}
+ '@npmcli/run-script@9.1.0':
+ resolution: {integrity: sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==}
engines: {node: ^18.17.0 || >=20.5.0}
'@parcel/watcher-android-arm64@2.5.1':
@@ -2193,8 +2368,8 @@ packages:
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm-eabi@4.34.9':
- resolution: {integrity: sha512-qZdlImWXur0CFakn2BJ2znJOdqYZKiedEPEVNTBrpfPjc/YuTGcaYZcdmNFTkUj3DU0ZM/AElcM8Ybww3xVLzA==}
+ '@rollup/rollup-android-arm-eabi@4.35.0':
+ resolution: {integrity: sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==}
cpu: [arm]
os: [android]
@@ -2203,8 +2378,8 @@ packages:
cpu: [arm64]
os: [android]
- '@rollup/rollup-android-arm64@4.34.9':
- resolution: {integrity: sha512-4KW7P53h6HtJf5Y608T1ISKvNIYLWRKMvfnG0c44M6In4DQVU58HZFEVhWINDZKp7FZps98G3gxwC1sb0wXUUg==}
+ '@rollup/rollup-android-arm64@4.35.0':
+ resolution: {integrity: sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==}
cpu: [arm64]
os: [android]
@@ -2213,8 +2388,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-arm64@4.34.9':
- resolution: {integrity: sha512-0CY3/K54slrzLDjOA7TOjN1NuLKERBgk9nY5V34mhmuu673YNb+7ghaDUs6N0ujXR7fz5XaS5Aa6d2TNxZd0OQ==}
+ '@rollup/rollup-darwin-arm64@4.35.0':
+ resolution: {integrity: sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==}
cpu: [arm64]
os: [darwin]
@@ -2223,8 +2398,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.34.9':
- resolution: {integrity: sha512-eOojSEAi/acnsJVYRxnMkPFqcxSMFfrw7r2iD9Q32SGkb/Q9FpUY1UlAu1DH9T7j++gZ0lHjnm4OyH2vCI7l7Q==}
+ '@rollup/rollup-darwin-x64@4.35.0':
+ resolution: {integrity: sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==}
cpu: [x64]
os: [darwin]
@@ -2233,8 +2408,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-arm64@4.34.9':
- resolution: {integrity: sha512-2lzjQPJbN5UnHm7bHIUKFMulGTQwdvOkouJDpPysJS+QFBGDJqcfh+CxxtG23Ik/9tEvnebQiylYoazFMAgrYw==}
+ '@rollup/rollup-freebsd-arm64@4.35.0':
+ resolution: {integrity: sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==}
cpu: [arm64]
os: [freebsd]
@@ -2243,8 +2418,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.34.9':
- resolution: {integrity: sha512-SLl0hi2Ah2H7xQYd6Qaiu01kFPzQ+hqvdYSoOtHYg/zCIFs6t8sV95kaoqjzjFwuYQLtOI0RZre/Ke0nPaQV+g==}
+ '@rollup/rollup-freebsd-x64@4.35.0':
+ resolution: {integrity: sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==}
cpu: [x64]
os: [freebsd]
@@ -2253,8 +2428,8 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-gnueabihf@4.34.9':
- resolution: {integrity: sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.35.0':
+ resolution: {integrity: sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==}
cpu: [arm]
os: [linux]
@@ -2263,8 +2438,8 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.34.9':
- resolution: {integrity: sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==}
+ '@rollup/rollup-linux-arm-musleabihf@4.35.0':
+ resolution: {integrity: sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==}
cpu: [arm]
os: [linux]
@@ -2273,8 +2448,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.34.9':
- resolution: {integrity: sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==}
+ '@rollup/rollup-linux-arm64-gnu@4.35.0':
+ resolution: {integrity: sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==}
cpu: [arm64]
os: [linux]
@@ -2283,8 +2458,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.34.9':
- resolution: {integrity: sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==}
+ '@rollup/rollup-linux-arm64-musl@4.35.0':
+ resolution: {integrity: sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==}
cpu: [arm64]
os: [linux]
@@ -2293,8 +2468,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.34.9':
- resolution: {integrity: sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.35.0':
+ resolution: {integrity: sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==}
cpu: [loong64]
os: [linux]
@@ -2303,8 +2478,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
- resolution: {integrity: sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.35.0':
+ resolution: {integrity: sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==}
cpu: [ppc64]
os: [linux]
@@ -2313,8 +2488,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.34.9':
- resolution: {integrity: sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.35.0':
+ resolution: {integrity: sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==}
cpu: [riscv64]
os: [linux]
@@ -2323,8 +2498,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.34.9':
- resolution: {integrity: sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.35.0':
+ resolution: {integrity: sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==}
cpu: [s390x]
os: [linux]
@@ -2333,8 +2508,8 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.34.9':
- resolution: {integrity: sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==}
+ '@rollup/rollup-linux-x64-gnu@4.35.0':
+ resolution: {integrity: sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==}
cpu: [x64]
os: [linux]
@@ -2343,8 +2518,8 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.34.9':
- resolution: {integrity: sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==}
+ '@rollup/rollup-linux-x64-musl@4.35.0':
+ resolution: {integrity: sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==}
cpu: [x64]
os: [linux]
@@ -2353,8 +2528,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-arm64-msvc@4.34.9':
- resolution: {integrity: sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==}
+ '@rollup/rollup-win32-arm64-msvc@4.35.0':
+ resolution: {integrity: sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==}
cpu: [arm64]
os: [win32]
@@ -2363,8 +2538,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.34.9':
- resolution: {integrity: sha512-KB48mPtaoHy1AwDNkAJfHXvHp24H0ryZog28spEs0V48l3H1fr4i37tiyHsgKZJnCmvxsbATdZGBpbmxTE3a9w==}
+ '@rollup/rollup-win32-ia32-msvc@4.35.0':
+ resolution: {integrity: sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==}
cpu: [ia32]
os: [win32]
@@ -2373,13 +2548,13 @@ packages:
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.34.9':
- resolution: {integrity: sha512-AyleYRPU7+rgkMWbEh71fQlrzRfeP6SyMnRf9XX4fCdDPAJumdSBqYEcWPMzVQ4ScAl7E4oFfK0GUVn77xSwbw==}
+ '@rollup/rollup-win32-x64-msvc@4.35.0':
+ resolution: {integrity: sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==}
cpu: [x64]
os: [win32]
- '@rollup/wasm-node@4.34.9':
- resolution: {integrity: sha512-DP0PulB23rUUC6uxNV4BVm6pqh77LASzeEggSnnNkBkXKxfpJiLe6UW/fsVfsFv2dWZ3r5EQVeYo2q/hg09SZg==}
+ '@rollup/wasm-node@4.35.0':
+ resolution: {integrity: sha512-mVs1GGfgeDCcMCFN5FystW0B5XjwhARAnomDBm2wTITTAioNr+YrUJ4UPjV33iXiLH1xAKWuUo30Od5HzrfQyA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -2528,8 +2703,8 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@22.13.9':
- resolution: {integrity: sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==}
+ '@types/node@22.13.10':
+ resolution: {integrity: sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==}
'@types/prop-types@15.7.14':
resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
@@ -2576,51 +2751,51 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.26.0':
- resolution: {integrity: sha512-cLr1J6pe56zjKYajK6SSSre6nl1Gj6xDp1TY0trpgPzjVbgDwd09v2Ws37LABxzkicmUjhEeg/fAUjPJJB1v5Q==}
+ '@typescript-eslint/eslint-plugin@8.26.1':
+ resolution: {integrity: sha512-2X3mwqsj9Bd3Ciz508ZUtoQQYpOhU/kWoUqIf49H8Z0+Vbh6UF/y0OEYp0Q0axOGzaBGs7QxRwq0knSQ8khQNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.26.0':
- resolution: {integrity: sha512-mNtXP9LTVBy14ZF3o7JG69gRPBK/2QWtQd0j0oH26HcY/foyJJau6pNUez7QrM5UHnSvwlQcJXKsk0I99B9pOA==}
+ '@typescript-eslint/parser@8.26.1':
+ resolution: {integrity: sha512-w6HZUV4NWxqd8BdeFf81t07d7/YV9s7TCWrQQbG5uhuvGUAW+fq1usZ1Hmz9UPNLniFnD8GLSsDpjP0hm1S4lQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.26.0':
- resolution: {integrity: sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==}
+ '@typescript-eslint/scope-manager@8.26.1':
+ resolution: {integrity: sha512-6EIvbE5cNER8sqBu6V7+KeMZIC1664d2Yjt+B9EWUXrsyWpxx4lEZrmvxgSKRC6gX+efDL/UY9OpPZ267io3mg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.26.0':
- resolution: {integrity: sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==}
+ '@typescript-eslint/type-utils@8.26.1':
+ resolution: {integrity: sha512-Kcj/TagJLwoY/5w9JGEFV0dclQdyqw9+VMndxOJKtoFSjfZhLXhYjzsQEeyza03rwHx2vFEGvrJWJBXKleRvZg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.26.0':
- resolution: {integrity: sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==}
+ '@typescript-eslint/types@8.26.1':
+ resolution: {integrity: sha512-n4THUQW27VmQMx+3P+B0Yptl7ydfceUj4ON/AQILAASwgYdZ/2dhfymRMh5egRUrvK5lSmaOm77Ry+lmXPOgBQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.26.0':
- resolution: {integrity: sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==}
+ '@typescript-eslint/typescript-estree@8.26.1':
+ resolution: {integrity: sha512-yUwPpUHDgdrv1QJ7YQal3cMVBGWfnuCdKbXw1yyjArax3353rEJP1ZA+4F8nOlQ3RfS2hUN/wze3nlY+ZOhvoA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.26.0':
- resolution: {integrity: sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==}
+ '@typescript-eslint/utils@8.26.1':
+ resolution: {integrity: sha512-V4Urxa/XtSUroUrnI7q6yUTD3hDtfJ2jzVfeT3VK0ciizfK2q/zGC0iDh1lFMUZR8cImRrep6/q0xd/1ZGPQpg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.26.0':
- resolution: {integrity: sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==}
+ '@typescript-eslint/visitor-keys@8.26.1':
+ resolution: {integrity: sha512-AjOC3zfnxd6S4Eiy3jwktJPclqhFHNyd8L6Gycf9WUPoKZpgM5PjkxY1X7uSy61xVpiJDhhk7XT2NVsN3ALTWg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@vitejs/plugin-basic-ssl@1.2.0':
@@ -2752,8 +2927,8 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@5.20.4:
- resolution: {integrity: sha512-wjfzqruxovJyDqga8M6Xk5XtfuVg3igrWjhjgkRya87+WwfEa1kg+IluujBLzgAiMSd6rO6jqRb7czjgeeSYgQ==}
+ algoliasearch@5.21.0:
+ resolution: {integrity: sha512-hexLq2lSO1K5SW9j21Ubc+q9Ptx7dyRTY7se19U8lhIlVMLCNXWCyQ6C22p9ez8ccX0v7QVmwkl2l1CnuGoO2Q==}
engines: {node: '>= 14.0.0'}
ansi-colors@4.1.3:
@@ -2867,6 +3042,13 @@ packages:
peerDependencies:
postcss: ^8.1.0
+ autoprefixer@10.4.21:
+ resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+
available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
@@ -3011,8 +3193,8 @@ packages:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- caniuse-lite@1.0.30001702:
- resolution: {integrity: sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==}
+ caniuse-lite@1.0.30001703:
+ resolution: {integrity: sha512-kRlAGTRWgPsOj7oARC9m1okJEXdL/8fekFVcxA8Hl7GH4r/sN4OJn/i6Flde373T50KS7Y37oFbMwlE8+F42kQ==}
canvg@3.0.10:
resolution: {integrity: sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==}
@@ -3478,8 +3660,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.113:
- resolution: {integrity: sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==}
+ electron-to-chromium@1.5.114:
+ resolution: {integrity: sha512-DFptFef3iktoKlFQK/afbo274/XNWD00Am0xa7M8FZUepHlHT8PEuiNBoRfFHbH1okqN58AlhbJ4QTkcnXorjA==}
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -3589,6 +3771,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.25.1:
+ resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -3648,8 +3835,8 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-jsdoc@50.6.3:
- resolution: {integrity: sha512-NxbJyt1M5zffPcYZ8Nb53/8nnbIScmiLAMdoe0/FAszwb7lcSiX3iYBTsuF7RV84dZZJC8r3NghomrUXsmWvxQ==}
+ eslint-plugin-jsdoc@50.6.6:
+ resolution: {integrity: sha512-4jLo9NZqHfyNtiBxAU293eX1xi6oUIBcAxJJL/hHeeNhh26l4l/Apmu0x9SarvSQ/gWNOrnFci4DSPupN4//WA==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -3674,8 +3861,8 @@ packages:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- eslint-scope@8.2.0:
- resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ eslint-scope@8.3.0:
+ resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
@@ -3686,8 +3873,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.21.0:
- resolution: {integrity: sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==}
+ eslint@9.22.0:
+ resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -4941,8 +5128,8 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ nanoid@3.3.9:
+ resolution: {integrity: sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -5296,8 +5483,8 @@ packages:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
- pnpm@9.15.7:
- resolution: {integrity: sha512-7Zj5x0hEJnPEaWS3A0W9IoLJswXo6uU5s0qzHW7yTvjdWdi1XydGb3BVALAJ2cETRxz4flRPPVA2spczDCbplg==}
+ pnpm@9.15.9:
+ resolution: {integrity: sha512-aARhQYk8ZvrQHAeSMRKOmvuJ74fiaR1p5NQO7iKJiClf1GghgbrlW1hBjDolO95lpQXsfF+UA+zlzDzTfc8lMQ==}
engines: {node: '>=18.12'}
hasBin: true
@@ -5435,8 +5622,8 @@ packages:
primeicons@7.0.0:
resolution: {integrity: sha512-jK3Et9UzwzTsd6tzl2RmwrVY/b8raJ3QZLzoDACj+oTJ0oX7L9Hy+XnVwgo4QVKlKpnP/Ur13SXV/pVh4LzaDw==}
- prismjs@1.29.0:
- resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
+ prismjs@1.30.0:
+ resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
engines: {node: '>=6'}
proc-log@5.0.0:
@@ -5632,8 +5819,8 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.34.9:
- resolution: {integrity: sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ==}
+ rollup@4.35.0:
+ resolution: {integrity: sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -6467,8 +6654,8 @@ packages:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.18:
- resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
+ which-typed-array@1.1.19:
+ resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -6603,77 +6790,77 @@ packages:
snapshots:
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)':
+ '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)
'@algolia/client-search': 4.24.0
- algoliasearch: 5.20.4
+ algoliasearch: 5.21.0
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)':
+ '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)':
dependencies:
'@algolia/client-search': 4.24.0
- algoliasearch: 5.20.4
+ algoliasearch: 5.21.0
'@algolia/cache-common@4.24.0': {}
- '@algolia/client-abtesting@5.20.4':
+ '@algolia/client-abtesting@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
- '@algolia/client-analytics@5.20.4':
+ '@algolia/client-analytics@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
'@algolia/client-common@4.24.0':
dependencies:
'@algolia/requester-common': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/client-common@5.20.4': {}
+ '@algolia/client-common@5.21.0': {}
- '@algolia/client-insights@5.20.4':
+ '@algolia/client-insights@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
- '@algolia/client-personalization@5.20.4':
+ '@algolia/client-personalization@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
- '@algolia/client-query-suggestions@5.20.4':
+ '@algolia/client-query-suggestions@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
'@algolia/client-search@4.24.0':
dependencies:
@@ -6681,49 +6868,49 @@ snapshots:
'@algolia/requester-common': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/client-search@5.20.4':
+ '@algolia/client-search@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
- '@algolia/ingestion@1.20.4':
+ '@algolia/ingestion@1.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
'@algolia/logger-common@4.24.0': {}
- '@algolia/monitoring@1.20.4':
+ '@algolia/monitoring@1.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
- '@algolia/recommend@5.20.4':
+ '@algolia/recommend@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-common': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
- '@algolia/requester-browser-xhr@5.20.4':
+ '@algolia/requester-browser-xhr@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
+ '@algolia/client-common': 5.21.0
'@algolia/requester-common@4.24.0': {}
- '@algolia/requester-fetch@5.20.4':
+ '@algolia/requester-fetch@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
+ '@algolia/client-common': 5.21.0
- '@algolia/requester-node-http@5.20.4':
+ '@algolia/requester-node-http@5.21.0':
dependencies:
- '@algolia/client-common': 5.20.4
+ '@algolia/client-common': 5.21.0
'@algolia/transporter@4.24.0':
dependencies:
@@ -6745,13 +6932,13 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@19.2.1(z334e5vy3aghokwjxdfr72didq)':
+ '@angular-devkit/build-angular@19.2.1(d22jztehggvdv7qadvhfcanq4u)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1902.1(chokidar@4.0.3)
'@angular-devkit/build-webpack': 0.1902.1(chokidar@4.0.3)(webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)))(webpack@5.98.0(esbuild@0.25.0))
'@angular-devkit/core': 19.2.1(chokidar@4.0.3)
- '@angular/build': 19.2.1(znkp3nk4z6dm4ozpivn5yp2dei)
+ '@angular/build': 19.2.1(rj6txrx5bba3ddpcbk47iq72ea)
'@angular/compiler-cli': 19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4)
'@babel/core': 7.26.9
'@babel/generator': 7.26.9
@@ -6764,7 +6951,7 @@ snapshots:
'@babel/runtime': 7.26.9
'@discoveryjs/json-ext': 0.6.3
'@ngtools/webpack': 19.2.1(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.98.0(esbuild@0.25.0))
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.0(@types/node@22.13.9)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.0(@types/node@22.13.10)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
ansi-colors: 4.1.3
autoprefixer: 10.4.20(postcss@8.5.2)
babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0))
@@ -6799,7 +6986,7 @@ snapshots:
tree-kill: 1.2.2
tslib: 2.8.1
typescript: 5.5.4
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0))
webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0))
webpack-merge: 6.0.1
@@ -6809,8 +6996,8 @@ snapshots:
'@angular/ssr': 19.2.1(gllrwmsjk6vz3g3k4othjzbj4q)
esbuild: 0.25.0
karma: 6.4.4
- ng-packagr: 19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17)(tslib@2.8.1)(typescript@5.5.4)
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))
+ ng-packagr: 19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)))(tslib@2.8.1)(typescript@5.5.4)
+ tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))
transitivePeerDependencies:
- '@angular/compiler'
- '@rspack/core'
@@ -6838,7 +7025,7 @@ snapshots:
dependencies:
'@angular-devkit/architect': 0.1902.1(chokidar@4.0.3)
rxjs: 7.8.1
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
webpack-dev-server: 5.2.0(webpack@5.98.0(esbuild@0.25.0))
transitivePeerDependencies:
- chokidar
@@ -6864,33 +7051,33 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-eslint/bundled-angular-compiler@19.2.0': {}
+ '@angular-eslint/bundled-angular-compiler@19.2.1': {}
- '@angular-eslint/eslint-plugin-template@19.2.0(@typescript-eslint/types@8.26.0)(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@angular-eslint/eslint-plugin-template@19.2.1(@typescript-eslint/types@8.26.1)(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.2.0
- '@angular-eslint/utils': 19.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/utils': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ '@angular-eslint/bundled-angular-compiler': 19.2.1
+ '@angular-eslint/utils': 19.2.1(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
aria-query: 5.3.2
axobject-query: 4.1.0
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
typescript: 5.5.4
- '@angular-eslint/eslint-plugin@19.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@angular-eslint/eslint-plugin@19.2.1(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.2.0
- '@angular-eslint/utils': 19.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- '@typescript-eslint/utils': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- eslint: 9.21.0(jiti@2.4.2)
+ '@angular-eslint/bundled-angular-compiler': 19.2.1
+ '@angular-eslint/utils': 19.2.1(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ eslint: 9.22.0(jiti@2.4.2)
typescript: 5.5.4
- '@angular-eslint/schematics@19.2.0(@typescript-eslint/types@8.26.0)(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(chokidar@4.0.3)(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@angular-eslint/schematics@19.2.1(@typescript-eslint/types@8.26.1)(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(chokidar@4.0.3)(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
'@angular-devkit/core': 19.2.1(chokidar@4.0.3)
'@angular-devkit/schematics': 19.2.1(chokidar@4.0.3)
- '@angular-eslint/eslint-plugin': 19.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- '@angular-eslint/eslint-plugin-template': 19.2.0(@typescript-eslint/types@8.26.0)(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ '@angular-eslint/eslint-plugin': 19.2.1(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ '@angular-eslint/eslint-plugin-template': 19.2.1(@typescript-eslint/types@8.26.1)(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
ignore: 7.0.3
semver: 7.7.1
strip-json-comments: 3.1.1
@@ -6901,18 +7088,18 @@ snapshots:
- eslint
- typescript
- '@angular-eslint/template-parser@19.2.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@angular-eslint/template-parser@19.2.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.2.0
- eslint: 9.21.0(jiti@2.4.2)
- eslint-scope: 8.2.0
+ '@angular-eslint/bundled-angular-compiler': 19.2.1
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-scope: 8.3.0
typescript: 5.5.4
- '@angular-eslint/utils@19.2.0(@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@angular-eslint/utils@19.2.1(@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.2.0
- '@typescript-eslint/utils': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- eslint: 9.21.0(jiti@2.4.2)
+ '@angular-eslint/bundled-angular-compiler': 19.2.1
+ '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ eslint: 9.22.0(jiti@2.4.2)
typescript: 5.5.4
'@angular/animations@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))':
@@ -6920,7 +7107,7 @@ snapshots:
'@angular/core': 19.2.1(rxjs@7.8.2)(zone.js@0.15.0)
tslib: 2.8.1
- '@angular/build@19.2.1(znkp3nk4z6dm4ozpivn5yp2dei)':
+ '@angular/build@19.2.1(rj6txrx5bba3ddpcbk47iq72ea)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1902.1(chokidar@4.0.3)
@@ -6930,8 +7117,8 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-split-export-declaration': 7.24.7
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@inquirer/confirm': 5.1.6(@types/node@22.13.9)
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.0(@types/node@22.13.9)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
+ '@inquirer/confirm': 5.1.6(@types/node@22.13.10)
+ '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.0(@types/node@22.13.10)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))
beasties: 0.2.0
browserslist: 4.24.4
esbuild: 0.25.0
@@ -6949,7 +7136,7 @@ snapshots:
semver: 7.7.1
source-map-support: 0.5.21
typescript: 5.5.4
- vite: 6.2.0(@types/node@22.13.9)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.0(@types/node@22.13.10)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
watchpack: 2.4.2
optionalDependencies:
'@angular/platform-server': 19.2.1(@angular/common@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.1(@angular/animations@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))
@@ -6957,9 +7144,9 @@ snapshots:
karma: 6.4.4
less: 4.2.2
lmdb: 3.2.6
- ng-packagr: 19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17)(tslib@2.8.1)(typescript@5.5.4)
+ ng-packagr: 19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)))(tslib@2.8.1)(typescript@5.5.4)
postcss: 8.5.2
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))
+ tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))
transitivePeerDependencies:
- '@types/node'
- chokidar
@@ -6982,13 +7169,13 @@ snapshots:
optionalDependencies:
parse5: 7.2.1
- '@angular/cli@19.2.1(@types/node@22.13.9)(chokidar@4.0.3)':
+ '@angular/cli@19.2.1(@types/node@22.13.10)(chokidar@4.0.3)':
dependencies:
'@angular-devkit/architect': 0.1902.1(chokidar@4.0.3)
'@angular-devkit/core': 19.2.1(chokidar@4.0.3)
'@angular-devkit/schematics': 19.2.1(chokidar@4.0.3)
- '@inquirer/prompts': 7.3.2(@types/node@22.13.9)
- '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.3.2(@types/node@22.13.9))
+ '@inquirer/prompts': 7.3.2(@types/node@22.13.10)
+ '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.3.2(@types/node@22.13.10))
'@schematics/angular': 19.2.1(chokidar@4.0.3)
'@yarnpkg/lockfile': 1.1.0
ini: 5.0.0
@@ -7097,18 +7284,18 @@ snapshots:
'@babel/compat-data@7.26.8': {}
- '@babel/core@7.26.9':
+ '@babel/core@7.26.10':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
+ '@babel/generator': 7.26.10
'@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
+ '@babel/helpers': 7.26.10
+ '@babel/parser': 7.26.10
'@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
convert-source-map: 2.0.0
debug: 4.4.0(supports-color@9.4.0)
gensync: 1.0.0-beta.2
@@ -7117,17 +7304,45 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@7.26.9':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/helpers': 7.26.10
+ '@babel/parser': 7.26.10
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
+ convert-source-map: 2.0.0
+ debug: 4.4.0(supports-color@9.4.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/generator@7.26.10':
+ dependencies:
+ '@babel/parser': 7.26.10
+ '@babel/types': 7.26.10
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.1.0
+
'@babel/generator@7.26.9':
dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/parser': 7.26.10
+ '@babel/types': 7.26.10
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
'@babel/helper-compilation-targets@7.26.5':
dependencies:
@@ -7145,7 +7360,7 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -7170,15 +7385,24 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
+ dependencies:
+ '@babel/core': 7.26.10
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7187,13 +7411,13 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
'@babel/helper-plugin-utils@7.26.5': {}
@@ -7202,7 +7426,7 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7211,20 +7435,20 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
'@babel/helper-string-parser@7.25.9': {}
@@ -7235,25 +7459,25 @@ snapshots:
'@babel/helper-wrap-function@7.25.9':
dependencies:
'@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.26.9':
+ '@babel/helpers@7.26.10':
dependencies:
'@babel/template': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
- '@babel/parser@7.26.9':
+ '@babel/parser@7.26.10':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7280,7 +7504,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7314,7 +7538,7 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7360,7 +7584,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -7421,7 +7645,7 @@ snapshots:
'@babel/core': 7.26.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7467,7 +7691,7 @@ snapshots:
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -7714,9 +7938,13 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
esutils: 2.0.3
+ '@babel/runtime@7.26.10':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
'@babel/runtime@7.26.9':
dependencies:
regenerator-runtime: 0.14.1
@@ -7724,88 +7952,88 @@ snapshots:
'@babel/template@7.26.9':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/parser': 7.26.10
+ '@babel/types': 7.26.10
- '@babel/traverse@7.26.9':
+ '@babel/traverse@7.26.10':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/parser': 7.26.9
+ '@babel/generator': 7.26.10
+ '@babel/parser': 7.26.10
'@babel/template': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.10
debug: 4.4.0(supports-color@9.4.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.9':
+ '@babel/types@7.26.10':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
'@colors/colors@1.5.0': {}
- '@commitlint/cli@19.7.1(@types/node@22.13.9)(typescript@5.5.4)':
+ '@commitlint/cli@19.8.0(@types/node@22.13.10)(typescript@5.5.4)':
dependencies:
- '@commitlint/format': 19.5.0
- '@commitlint/lint': 19.7.1
- '@commitlint/load': 19.6.1(@types/node@22.13.9)(typescript@5.5.4)
- '@commitlint/read': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/format': 19.8.0
+ '@commitlint/lint': 19.8.0
+ '@commitlint/load': 19.8.0(@types/node@22.13.10)(typescript@5.5.4)
+ '@commitlint/read': 19.8.0
+ '@commitlint/types': 19.8.0
tinyexec: 0.3.2
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- typescript
- '@commitlint/config-conventional@19.7.1':
+ '@commitlint/config-conventional@19.8.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.8.0
conventional-changelog-conventionalcommits: 7.0.2
- '@commitlint/config-validator@19.5.0':
+ '@commitlint/config-validator@19.8.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.8.0
ajv: 8.17.1
- '@commitlint/ensure@19.5.0':
+ '@commitlint/ensure@19.8.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.8.0
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
- '@commitlint/execute-rule@19.5.0': {}
+ '@commitlint/execute-rule@19.8.0': {}
- '@commitlint/format@19.5.0':
+ '@commitlint/format@19.8.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.8.0
chalk: 5.4.1
- '@commitlint/is-ignored@19.7.1':
+ '@commitlint/is-ignored@19.8.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.8.0
semver: 7.7.1
- '@commitlint/lint@19.7.1':
+ '@commitlint/lint@19.8.0':
dependencies:
- '@commitlint/is-ignored': 19.7.1
- '@commitlint/parse': 19.5.0
- '@commitlint/rules': 19.6.0
- '@commitlint/types': 19.5.0
+ '@commitlint/is-ignored': 19.8.0
+ '@commitlint/parse': 19.8.0
+ '@commitlint/rules': 19.8.0
+ '@commitlint/types': 19.8.0
- '@commitlint/load@19.6.1(@types/node@22.13.9)(typescript@5.5.4)':
+ '@commitlint/load@19.8.0(@types/node@22.13.10)(typescript@5.5.4)':
dependencies:
- '@commitlint/config-validator': 19.5.0
- '@commitlint/execute-rule': 19.5.0
- '@commitlint/resolve-extends': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/config-validator': 19.8.0
+ '@commitlint/execute-rule': 19.8.0
+ '@commitlint/resolve-extends': 19.8.0
+ '@commitlint/types': 19.8.0
chalk: 5.4.1
cosmiconfig: 9.0.0(typescript@5.5.4)
- cosmiconfig-typescript-loader: 6.1.0(@types/node@22.13.9)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4)
+ cosmiconfig-typescript-loader: 6.1.0(@types/node@22.13.10)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -7813,45 +8041,45 @@ snapshots:
- '@types/node'
- typescript
- '@commitlint/message@19.5.0': {}
+ '@commitlint/message@19.8.0': {}
- '@commitlint/parse@19.5.0':
+ '@commitlint/parse@19.8.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.8.0
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
- '@commitlint/read@19.5.0':
+ '@commitlint/read@19.8.0':
dependencies:
- '@commitlint/top-level': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/top-level': 19.8.0
+ '@commitlint/types': 19.8.0
git-raw-commits: 4.0.0
minimist: 1.2.8
tinyexec: 0.3.2
- '@commitlint/resolve-extends@19.5.0':
+ '@commitlint/resolve-extends@19.8.0':
dependencies:
- '@commitlint/config-validator': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/config-validator': 19.8.0
+ '@commitlint/types': 19.8.0
global-directory: 4.0.1
import-meta-resolve: 4.1.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
- '@commitlint/rules@19.6.0':
+ '@commitlint/rules@19.8.0':
dependencies:
- '@commitlint/ensure': 19.5.0
- '@commitlint/message': 19.5.0
- '@commitlint/to-lines': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/ensure': 19.8.0
+ '@commitlint/message': 19.8.0
+ '@commitlint/to-lines': 19.8.0
+ '@commitlint/types': 19.8.0
- '@commitlint/to-lines@19.5.0': {}
+ '@commitlint/to-lines@19.8.0': {}
- '@commitlint/top-level@19.5.0':
+ '@commitlint/top-level@19.8.0':
dependencies:
find-up: 7.0.0
- '@commitlint/types@19.5.0':
+ '@commitlint/types@19.8.0':
dependencies:
'@types/conventional-commits-parser': 5.0.1
chalk: 5.4.1
@@ -7877,10 +8105,10 @@ snapshots:
'@docsearch/react@3.9.0(@algolia/client-search@4.24.0)(@types/react@18.3.18)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.20.4)
+ '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@4.24.0)(algoliasearch@5.21.0)
'@docsearch/css': 3.9.0
- algoliasearch: 5.20.4
+ algoliasearch: 5.21.0
optionalDependencies:
'@types/react': 18.3.18
search-insights: 2.17.3
@@ -7899,147 +8127,222 @@ snapshots:
'@esbuild/aix-ppc64@0.25.0':
optional: true
+ '@esbuild/aix-ppc64@0.25.1':
+ optional: true
+
'@esbuild/android-arm64@0.19.12':
optional: true
'@esbuild/android-arm64@0.25.0':
optional: true
+ '@esbuild/android-arm64@0.25.1':
+ optional: true
+
'@esbuild/android-arm@0.19.12':
optional: true
'@esbuild/android-arm@0.25.0':
optional: true
+ '@esbuild/android-arm@0.25.1':
+ optional: true
+
'@esbuild/android-x64@0.19.12':
optional: true
'@esbuild/android-x64@0.25.0':
optional: true
+ '@esbuild/android-x64@0.25.1':
+ optional: true
+
'@esbuild/darwin-arm64@0.19.12':
optional: true
'@esbuild/darwin-arm64@0.25.0':
optional: true
+ '@esbuild/darwin-arm64@0.25.1':
+ optional: true
+
'@esbuild/darwin-x64@0.19.12':
optional: true
'@esbuild/darwin-x64@0.25.0':
optional: true
+ '@esbuild/darwin-x64@0.25.1':
+ optional: true
+
'@esbuild/freebsd-arm64@0.19.12':
optional: true
'@esbuild/freebsd-arm64@0.25.0':
optional: true
+ '@esbuild/freebsd-arm64@0.25.1':
+ optional: true
+
'@esbuild/freebsd-x64@0.19.12':
optional: true
'@esbuild/freebsd-x64@0.25.0':
optional: true
+ '@esbuild/freebsd-x64@0.25.1':
+ optional: true
+
'@esbuild/linux-arm64@0.19.12':
optional: true
'@esbuild/linux-arm64@0.25.0':
optional: true
+ '@esbuild/linux-arm64@0.25.1':
+ optional: true
+
'@esbuild/linux-arm@0.19.12':
optional: true
'@esbuild/linux-arm@0.25.0':
optional: true
+ '@esbuild/linux-arm@0.25.1':
+ optional: true
+
'@esbuild/linux-ia32@0.19.12':
optional: true
'@esbuild/linux-ia32@0.25.0':
optional: true
+ '@esbuild/linux-ia32@0.25.1':
+ optional: true
+
'@esbuild/linux-loong64@0.19.12':
optional: true
'@esbuild/linux-loong64@0.25.0':
optional: true
+ '@esbuild/linux-loong64@0.25.1':
+ optional: true
+
'@esbuild/linux-mips64el@0.19.12':
optional: true
'@esbuild/linux-mips64el@0.25.0':
optional: true
+ '@esbuild/linux-mips64el@0.25.1':
+ optional: true
+
'@esbuild/linux-ppc64@0.19.12':
optional: true
'@esbuild/linux-ppc64@0.25.0':
optional: true
+ '@esbuild/linux-ppc64@0.25.1':
+ optional: true
+
'@esbuild/linux-riscv64@0.19.12':
optional: true
'@esbuild/linux-riscv64@0.25.0':
optional: true
+ '@esbuild/linux-riscv64@0.25.1':
+ optional: true
+
'@esbuild/linux-s390x@0.19.12':
optional: true
'@esbuild/linux-s390x@0.25.0':
optional: true
+ '@esbuild/linux-s390x@0.25.1':
+ optional: true
+
'@esbuild/linux-x64@0.19.12':
optional: true
'@esbuild/linux-x64@0.25.0':
optional: true
+ '@esbuild/linux-x64@0.25.1':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.0':
optional: true
+ '@esbuild/netbsd-arm64@0.25.1':
+ optional: true
+
'@esbuild/netbsd-x64@0.19.12':
optional: true
'@esbuild/netbsd-x64@0.25.0':
optional: true
+ '@esbuild/netbsd-x64@0.25.1':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.0':
optional: true
+ '@esbuild/openbsd-arm64@0.25.1':
+ optional: true
+
'@esbuild/openbsd-x64@0.19.12':
optional: true
'@esbuild/openbsd-x64@0.25.0':
optional: true
+ '@esbuild/openbsd-x64@0.25.1':
+ optional: true
+
'@esbuild/sunos-x64@0.19.12':
optional: true
'@esbuild/sunos-x64@0.25.0':
optional: true
+ '@esbuild/sunos-x64@0.25.1':
+ optional: true
+
'@esbuild/win32-arm64@0.19.12':
optional: true
'@esbuild/win32-arm64@0.25.0':
optional: true
+ '@esbuild/win32-arm64@0.25.1':
+ optional: true
+
'@esbuild/win32-ia32@0.19.12':
optional: true
'@esbuild/win32-ia32@0.25.0':
optional: true
+ '@esbuild/win32-ia32@0.25.1':
+ optional: true
+
'@esbuild/win32-x64@0.19.12':
optional: true
'@esbuild/win32-x64@0.25.0':
optional: true
- '@eslint-community/eslint-utils@4.4.1(eslint@9.21.0(jiti@2.4.2))':
+ '@esbuild/win32-x64@0.25.1':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.5.0(eslint@9.22.0(jiti@2.4.2))':
dependencies:
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -8052,6 +8355,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@eslint/config-helpers@0.1.0': {}
+
'@eslint/core@0.12.0':
dependencies:
'@types/json-schema': 7.0.15
@@ -8070,7 +8375,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.21.0': {}
+ '@eslint/js@9.22.0': {}
'@eslint/object-schema@2.1.6': {}
@@ -8098,27 +8403,34 @@ snapshots:
'@humanwhocodes/retry@0.4.2': {}
- '@inquirer/checkbox@4.1.2(@types/node@22.13.9)':
+ '@inquirer/checkbox@4.1.3(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/confirm@5.1.6(@types/node@22.13.9)':
+ '@inquirer/confirm@5.1.6(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/core@10.1.7(@types/node@22.13.9)':
+ '@inquirer/confirm@5.1.7(@types/node@22.13.10)':
dependencies:
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
+ optionalDependencies:
+ '@types/node': 22.13.10
+
+ '@inquirer/core@10.1.8(@types/node@22.13.10)':
+ dependencies:
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -8126,97 +8438,97 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/editor@4.2.7(@types/node@22.13.9)':
+ '@inquirer/editor@4.2.8(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
external-editor: 3.1.0
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/expand@4.0.9(@types/node@22.13.9)':
+ '@inquirer/expand@4.0.10(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/figures@1.0.10': {}
+ '@inquirer/figures@1.0.11': {}
- '@inquirer/input@4.1.6(@types/node@22.13.9)':
+ '@inquirer/input@4.1.7(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/number@3.0.9(@types/node@22.13.9)':
+ '@inquirer/number@3.0.10(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/password@4.0.9(@types/node@22.13.9)':
+ '@inquirer/password@4.0.10(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
ansi-escapes: 4.3.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/prompts@7.3.2(@types/node@22.13.9)':
+ '@inquirer/prompts@7.3.2(@types/node@22.13.10)':
dependencies:
- '@inquirer/checkbox': 4.1.2(@types/node@22.13.9)
- '@inquirer/confirm': 5.1.6(@types/node@22.13.9)
- '@inquirer/editor': 4.2.7(@types/node@22.13.9)
- '@inquirer/expand': 4.0.9(@types/node@22.13.9)
- '@inquirer/input': 4.1.6(@types/node@22.13.9)
- '@inquirer/number': 3.0.9(@types/node@22.13.9)
- '@inquirer/password': 4.0.9(@types/node@22.13.9)
- '@inquirer/rawlist': 4.0.9(@types/node@22.13.9)
- '@inquirer/search': 3.0.9(@types/node@22.13.9)
- '@inquirer/select': 4.0.9(@types/node@22.13.9)
+ '@inquirer/checkbox': 4.1.3(@types/node@22.13.10)
+ '@inquirer/confirm': 5.1.7(@types/node@22.13.10)
+ '@inquirer/editor': 4.2.8(@types/node@22.13.10)
+ '@inquirer/expand': 4.0.10(@types/node@22.13.10)
+ '@inquirer/input': 4.1.7(@types/node@22.13.10)
+ '@inquirer/number': 3.0.10(@types/node@22.13.10)
+ '@inquirer/password': 4.0.10(@types/node@22.13.10)
+ '@inquirer/rawlist': 4.0.10(@types/node@22.13.10)
+ '@inquirer/search': 3.0.10(@types/node@22.13.10)
+ '@inquirer/select': 4.0.10(@types/node@22.13.10)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/rawlist@4.0.9(@types/node@22.13.9)':
+ '@inquirer/rawlist@4.0.10(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/search@3.0.9(@types/node@22.13.9)':
+ '@inquirer/search@3.0.10(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@inquirer/select@4.0.9(@types/node@22.13.9)':
+ '@inquirer/select@4.0.10(@types/node@22.13.10)':
dependencies:
- '@inquirer/core': 10.1.7(@types/node@22.13.9)
- '@inquirer/figures': 1.0.10
- '@inquirer/type': 3.0.4(@types/node@22.13.9)
+ '@inquirer/core': 10.1.8(@types/node@22.13.10)
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.5(@types/node@22.13.10)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@inquirer/type@1.5.5':
dependencies:
mute-stream: 1.0.0
- '@inquirer/type@3.0.4(@types/node@22.13.9)':
+ '@inquirer/type@3.0.5(@types/node@22.13.10)':
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@isaacs/cliui@8.0.2':
dependencies:
@@ -8246,7 +8558,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/yargs': 17.0.33
chalk: 4.1.2
@@ -8281,7 +8593,7 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@jsonjoy.com/json-pack@1.1.1(tslib@2.8.1)':
+ '@jsonjoy.com/json-pack@1.2.0(tslib@2.8.1)':
dependencies:
'@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
'@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
@@ -8297,9 +8609,9 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@22.13.9))':
+ '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@22.13.10))':
dependencies:
- '@inquirer/prompts': 7.3.2(@types/node@22.13.9)
+ '@inquirer/prompts': 7.3.2(@types/node@22.13.10)
'@inquirer/type': 1.5.5
'@lmdb/lmdb-darwin-arm64@3.2.6':
@@ -8410,7 +8722,7 @@ snapshots:
dependencies:
'@angular/compiler-cli': 19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4)
typescript: 5.5.4
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -8472,7 +8784,7 @@ snapshots:
'@npmcli/redact@3.1.1': {}
- '@npmcli/run-script@9.0.2':
+ '@npmcli/run-script@9.1.0':
dependencies:
'@npmcli/node-gyp': 4.0.0
'@npmcli/package-json': 6.1.1
@@ -8555,135 +8867,135 @@ snapshots:
'@primeuix/utils@0.3.2': {}
- '@rollup/plugin-json@6.1.0(rollup@4.34.9)':
+ '@rollup/plugin-json@6.1.0(rollup@4.35.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.9)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
optionalDependencies:
- rollup: 4.34.9
+ rollup: 4.35.0
- '@rollup/pluginutils@5.1.4(rollup@4.34.9)':
+ '@rollup/pluginutils@5.1.4(rollup@4.35.0)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.34.9
+ rollup: 4.35.0
'@rollup/rollup-android-arm-eabi@4.34.8':
optional: true
- '@rollup/rollup-android-arm-eabi@4.34.9':
+ '@rollup/rollup-android-arm-eabi@4.35.0':
optional: true
'@rollup/rollup-android-arm64@4.34.8':
optional: true
- '@rollup/rollup-android-arm64@4.34.9':
+ '@rollup/rollup-android-arm64@4.35.0':
optional: true
'@rollup/rollup-darwin-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-arm64@4.34.9':
+ '@rollup/rollup-darwin-arm64@4.35.0':
optional: true
'@rollup/rollup-darwin-x64@4.34.8':
optional: true
- '@rollup/rollup-darwin-x64@4.34.9':
+ '@rollup/rollup-darwin-x64@4.35.0':
optional: true
'@rollup/rollup-freebsd-arm64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-arm64@4.34.9':
+ '@rollup/rollup-freebsd-arm64@4.35.0':
optional: true
'@rollup/rollup-freebsd-x64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-x64@4.34.9':
+ '@rollup/rollup-freebsd-x64@4.35.0':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.9':
+ '@rollup/rollup-linux-arm-gnueabihf@4.35.0':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.9':
+ '@rollup/rollup-linux-arm-musleabihf@4.35.0':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.9':
+ '@rollup/rollup-linux-arm64-gnu@4.35.0':
optional: true
'@rollup/rollup-linux-arm64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.9':
+ '@rollup/rollup-linux-arm64-musl@4.35.0':
optional: true
'@rollup/rollup-linux-loongarch64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.9':
+ '@rollup/rollup-linux-loongarch64-gnu@4.35.0':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.9':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.35.0':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.9':
+ '@rollup/rollup-linux-riscv64-gnu@4.35.0':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.9':
+ '@rollup/rollup-linux-s390x-gnu@4.35.0':
optional: true
'@rollup/rollup-linux-x64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.9':
+ '@rollup/rollup-linux-x64-gnu@4.35.0':
optional: true
'@rollup/rollup-linux-x64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-musl@4.34.9':
+ '@rollup/rollup-linux-x64-musl@4.35.0':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.9':
+ '@rollup/rollup-win32-arm64-msvc@4.35.0':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.9':
+ '@rollup/rollup-win32-ia32-msvc@4.35.0':
optional: true
'@rollup/rollup-win32-x64-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.9':
+ '@rollup/rollup-win32-x64-msvc@4.35.0':
optional: true
- '@rollup/wasm-node@4.34.9':
+ '@rollup/wasm-node@4.35.0':
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
@@ -8769,28 +9081,28 @@ snapshots:
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 5.0.6
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/conventional-commits-parser@5.0.1':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/cors@2.8.17':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/eslint-scope@3.7.7':
dependencies:
@@ -8806,14 +9118,14 @@ snapshots:
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express-serve-static-core@5.0.6':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -8833,7 +9145,7 @@ snapshots:
'@types/http-proxy@1.17.16':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -8860,9 +9172,9 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
- '@types/node@22.13.9':
+ '@types/node@22.13.10':
dependencies:
undici-types: 6.20.0
@@ -8885,7 +9197,7 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/serve-index@1.9.4':
dependencies:
@@ -8894,12 +9206,12 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/send': 0.17.4
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/stack-utils@2.0.3': {}
@@ -8907,7 +9219,7 @@ snapshots:
'@types/ws@8.18.0':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
'@types/yargs-parser@21.0.3': {}
@@ -8915,15 +9227,15 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- '@typescript-eslint/scope-manager': 8.26.0
- '@typescript-eslint/type-utils': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- '@typescript-eslint/utils': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 8.26.0
- eslint: 9.21.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/type-utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 8.26.1
+ eslint: 9.22.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -8932,40 +9244,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/scope-manager': 8.26.0
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 8.26.0
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 8.26.1
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.26.0':
+ '@typescript-eslint/scope-manager@8.26.1':
dependencies:
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/visitor-keys': 8.26.0
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/visitor-keys': 8.26.1
- '@typescript-eslint/type-utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.5.4)
- '@typescript-eslint/utils': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
ts-api-utils: 2.0.1(typescript@5.5.4)
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.26.0': {}
+ '@typescript-eslint/types@8.26.1': {}
- '@typescript-eslint/typescript-estree@8.26.0(typescript@5.5.4)':
+ '@typescript-eslint/typescript-estree@8.26.1(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/visitor-keys': 8.26.0
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/visitor-keys': 8.26.1
debug: 4.4.0(supports-color@9.4.0)
fast-glob: 3.3.3
is-glob: 4.0.3
@@ -8976,25 +9288,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)':
+ '@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.26.0
- '@typescript-eslint/types': 8.26.0
- '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.5.4)
- eslint: 9.21.0(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.5.0(eslint@9.22.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.5.4)
+ eslint: 9.22.0(jiti@2.4.2)
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.26.0':
+ '@typescript-eslint/visitor-keys@8.26.1':
dependencies:
- '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/types': 8.26.1
eslint-visitor-keys: 4.2.0
- '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.0(@types/node@22.13.9)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
+ '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.0(@types/node@22.13.10)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
- vite: 6.2.0(@types/node@22.13.9)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.0(@types/node@22.13.10)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0)
'@webassemblyjs/ast@1.14.1':
dependencies:
@@ -9144,21 +9456,21 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.20.4:
+ algoliasearch@5.21.0:
dependencies:
- '@algolia/client-abtesting': 5.20.4
- '@algolia/client-analytics': 5.20.4
- '@algolia/client-common': 5.20.4
- '@algolia/client-insights': 5.20.4
- '@algolia/client-personalization': 5.20.4
- '@algolia/client-query-suggestions': 5.20.4
- '@algolia/client-search': 5.20.4
- '@algolia/ingestion': 1.20.4
- '@algolia/monitoring': 1.20.4
- '@algolia/recommend': 5.20.4
- '@algolia/requester-browser-xhr': 5.20.4
- '@algolia/requester-fetch': 5.20.4
- '@algolia/requester-node-http': 5.20.4
+ '@algolia/client-abtesting': 5.21.0
+ '@algolia/client-analytics': 5.21.0
+ '@algolia/client-common': 5.21.0
+ '@algolia/client-insights': 5.21.0
+ '@algolia/client-personalization': 5.21.0
+ '@algolia/client-query-suggestions': 5.21.0
+ '@algolia/client-search': 5.21.0
+ '@algolia/ingestion': 1.21.0
+ '@algolia/monitoring': 1.21.0
+ '@algolia/recommend': 5.21.0
+ '@algolia/requester-browser-xhr': 5.21.0
+ '@algolia/requester-fetch': 5.21.0
+ '@algolia/requester-node-http': 5.21.0
ansi-colors@4.1.3: {}
@@ -9261,17 +9573,17 @@ snapshots:
autoprefixer@10.4.20(postcss@8.5.2):
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
+ caniuse-lite: 1.0.30001703
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
postcss: 8.5.2
postcss-value-parser: 4.2.0
- autoprefixer@10.4.20(postcss@8.5.3):
+ autoprefixer@10.4.21(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- caniuse-lite: 1.0.30001702
+ caniuse-lite: 1.0.30001703
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -9289,7 +9601,7 @@ snapshots:
'@babel/core': 7.26.9
find-cache-dir: 4.0.0
schema-utils: 4.3.0
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9):
dependencies:
@@ -9394,8 +9706,8 @@ snapshots:
browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001702
- electron-to-chromium: 1.5.113
+ caniuse-lite: 1.0.30001703
+ electron-to-chromium: 1.5.114
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
@@ -9412,9 +9724,9 @@ snapshots:
dependencies:
run-applescript: 7.0.0
- bundle-require@5.1.0(esbuild@0.25.0):
+ bundle-require@5.1.0(esbuild@0.25.1):
dependencies:
- esbuild: 0.25.0
+ esbuild: 0.25.1
load-tsconfig: 0.2.5
bytes@3.1.2: {}
@@ -9457,11 +9769,11 @@ snapshots:
camelcase-css@2.0.1: {}
- caniuse-lite@1.0.30001702: {}
+ caniuse-lite@1.0.30001703: {}
canvg@3.0.10:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.26.10
'@types/raf': 3.4.3
core-js: 3.41.0
raf: 3.4.1
@@ -9669,7 +9981,7 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.3.0
serialize-javascript: 6.0.2
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
core-js-compat@3.41.0:
dependencies:
@@ -9685,9 +9997,9 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- cosmiconfig-typescript-loader@6.1.0(@types/node@22.13.9)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4):
+ cosmiconfig-typescript-loader@6.1.0(@types/node@22.13.10)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4):
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
cosmiconfig: 9.0.0(typescript@5.5.4)
jiti: 2.4.2
typescript: 5.5.4
@@ -9729,7 +10041,7 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.7.1
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
css-select@5.1.0:
dependencies:
@@ -9907,7 +10219,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.113: {}
+ electron-to-chromium@1.5.114: {}
emoji-regex@10.4.0: {}
@@ -9931,7 +10243,7 @@ snapshots:
engine.io@6.6.4:
dependencies:
'@types/cors': 2.8.17
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.7.2
@@ -10025,7 +10337,7 @@ snapshots:
typed-array-byte-offset: 1.0.4
typed-array-length: 1.0.7
unbox-primitive: 1.1.0
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
es-define-property@1.0.1: {}
@@ -10110,6 +10422,34 @@ snapshots:
'@esbuild/win32-ia32': 0.25.0
'@esbuild/win32-x64': 0.25.0
+ esbuild@0.25.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.1
+ '@esbuild/android-arm': 0.25.1
+ '@esbuild/android-arm64': 0.25.1
+ '@esbuild/android-x64': 0.25.1
+ '@esbuild/darwin-arm64': 0.25.1
+ '@esbuild/darwin-x64': 0.25.1
+ '@esbuild/freebsd-arm64': 0.25.1
+ '@esbuild/freebsd-x64': 0.25.1
+ '@esbuild/linux-arm': 0.25.1
+ '@esbuild/linux-arm64': 0.25.1
+ '@esbuild/linux-ia32': 0.25.1
+ '@esbuild/linux-loong64': 0.25.1
+ '@esbuild/linux-mips64el': 0.25.1
+ '@esbuild/linux-ppc64': 0.25.1
+ '@esbuild/linux-riscv64': 0.25.1
+ '@esbuild/linux-s390x': 0.25.1
+ '@esbuild/linux-x64': 0.25.1
+ '@esbuild/netbsd-arm64': 0.25.1
+ '@esbuild/netbsd-x64': 0.25.1
+ '@esbuild/openbsd-arm64': 0.25.1
+ '@esbuild/openbsd-x64': 0.25.1
+ '@esbuild/sunos-x64': 0.25.1
+ '@esbuild/win32-arm64': 0.25.1
+ '@esbuild/win32-ia32': 0.25.1
+ '@esbuild/win32-x64': 0.25.1
+
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -10120,9 +10460,9 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-config-prettier@9.1.0(eslint@9.21.0(jiti@2.4.2)):
+ eslint-config-prettier@9.1.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -10132,17 +10472,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.21.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.22.0(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
- eslint: 9.21.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.21.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.22.0(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -10151,9 +10491,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.21.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.22.0(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -10165,20 +10505,20 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.26.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.5.4)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsdoc@50.6.3(eslint@9.21.0(jiti@2.4.2)):
+ eslint-plugin-jsdoc@50.6.6(eslint@9.22.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.4.0(supports-color@9.4.0)
escape-string-regexp: 4.0.0
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
@@ -10188,24 +10528,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-prefer-arrow@1.2.3(eslint@9.21.0(jiti@2.4.2)):
+ eslint-plugin-prefer-arrow@1.2.3(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
- eslint-plugin-prettier@4.2.1(eslint-config-prettier@9.1.0(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.3):
+ eslint-plugin-prettier@4.2.1(eslint-config-prettier@9.1.0(eslint@9.22.0(jiti@2.4.2)))(eslint@9.22.0(jiti@2.4.2))(prettier@3.5.3):
dependencies:
- eslint: 9.21.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
prettier: 3.5.3
prettier-linter-helpers: 1.0.0
optionalDependencies:
- eslint-config-prettier: 9.1.0(eslint@9.21.0(jiti@2.4.2))
+ eslint-config-prettier: 9.1.0(eslint@9.22.0(jiti@2.4.2))
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@8.2.0:
+ eslint-scope@8.3.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
@@ -10214,14 +10554,15 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.21.0(jiti@2.4.2):
+ eslint@9.22.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.0(eslint@9.22.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.2
+ '@eslint/config-helpers': 0.1.0
'@eslint/core': 0.12.0
'@eslint/eslintrc': 3.3.0
- '@eslint/js': 9.21.0
+ '@eslint/js': 9.22.0
'@eslint/plugin-kit': 0.2.7
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
@@ -10233,7 +10574,7 @@ snapshots:
cross-spawn: 7.0.6
debug: 4.4.0(supports-color@9.4.0)
escape-string-regexp: 4.0.0
- eslint-scope: 8.2.0
+ eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
esquery: 1.6.0
@@ -10959,7 +11300,7 @@ snapshots:
is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
is-unicode-supported@0.1.0: {}
@@ -10996,8 +11337,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.9
+ '@babel/core': 7.26.10
+ '@babel/parser': 7.26.10
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -11007,7 +11348,7 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
'@babel/core': 7.26.9
- '@babel/parser': 7.26.9
+ '@babel/parser': 7.26.10
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.7.1
@@ -11072,7 +11413,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -11080,7 +11421,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -11142,7 +11483,7 @@ snapshots:
jspdf@2.5.2:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.26.10
atob: 2.1.2
btoa: 1.2.1
fflate: 0.8.2
@@ -11229,7 +11570,7 @@ snapshots:
dependencies:
less: 4.2.2
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
less@4.2.2:
dependencies:
@@ -11254,7 +11595,7 @@ snapshots:
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
lilconfig@2.0.5: {}
@@ -11466,7 +11807,7 @@ snapshots:
memfs@4.17.0:
dependencies:
- '@jsonjoy.com/json-pack': 1.1.1(tslib@2.8.1)
+ '@jsonjoy.com/json-pack': 1.2.0(tslib@2.8.1)
'@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
tree-dump: 1.0.2(tslib@2.8.1)
tslib: 2.8.1
@@ -11506,7 +11847,7 @@ snapshots:
dependencies:
schema-utils: 4.3.0
tapable: 2.2.1
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
minimalistic-assert@1.0.1: {}
@@ -11610,7 +11951,7 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.8: {}
+ nanoid@3.3.9: {}
natural-compare@1.4.0: {}
@@ -11628,11 +11969,11 @@ snapshots:
neo-async@2.6.2: {}
- ng-packagr@19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17)(tslib@2.8.1)(typescript@5.5.4):
+ ng-packagr@19.2.0(@angular/compiler-cli@19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)))(tslib@2.8.1)(typescript@5.5.4):
dependencies:
'@angular/compiler-cli': 19.2.1(@angular/compiler@19.2.1(@angular/core@19.2.1(rxjs@7.8.2)(zone.js@0.15.0)))(typescript@5.5.4)
- '@rollup/plugin-json': 6.1.0(rollup@4.34.9)
- '@rollup/wasm-node': 4.34.9
+ '@rollup/plugin-json': 6.1.0(rollup@4.35.0)
+ '@rollup/wasm-node': 4.35.0
ajv: 8.17.1
ansi-colors: 4.1.3
browserslist: 4.24.4
@@ -11640,7 +11981,7 @@ snapshots:
commander: 13.1.0
convert-source-map: 2.0.0
dependency-graph: 1.0.0
- esbuild: 0.25.0
+ esbuild: 0.25.1
fast-glob: 3.3.3
find-cache-dir: 3.3.2
injection-js: 2.4.0
@@ -11654,8 +11995,8 @@ snapshots:
tslib: 2.8.1
typescript: 5.5.4
optionalDependencies:
- rollup: 4.34.9
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))
+ rollup: 4.35.0
+ tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))
node-addon-api@6.1.0:
optional: true
@@ -11899,7 +12240,7 @@ snapshots:
'@npmcli/installed-package-contents': 3.0.0
'@npmcli/package-json': 6.1.1
'@npmcli/promise-spawn': 8.0.2
- '@npmcli/run-script': 9.0.2
+ '@npmcli/run-script': 9.1.0
cacache: 19.0.1
fs-minipass: 3.0.3
minipass: 7.1.2
@@ -12002,7 +12343,7 @@ snapshots:
dependencies:
find-up: 6.3.0
- pnpm@9.15.7: {}
+ pnpm@9.15.9: {}
possible-typed-array-names@1.1.0: {}
@@ -12018,13 +12359,13 @@ snapshots:
camelcase-css: 2.0.1
postcss: 8.5.3
- postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4)):
+ postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)):
dependencies:
lilconfig: 3.1.3
yaml: 2.7.0
optionalDependencies:
postcss: 8.5.3
- ts-node: 10.9.2(@types/node@22.13.9)(typescript@5.5.4)
+ ts-node: 10.9.2(@types/node@22.13.10)(typescript@5.5.4)
postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.2)(yaml@2.7.0):
dependencies:
@@ -12041,7 +12382,7 @@ snapshots:
postcss: 8.5.2
semver: 7.7.1
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
transitivePeerDependencies:
- typescript
@@ -12087,13 +12428,13 @@ snapshots:
postcss@8.5.2:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.9
picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.5.3:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.9
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -12115,7 +12456,7 @@ snapshots:
primeicons@7.0.0: {}
- prismjs@1.29.0: {}
+ prismjs@1.30.0: {}
proc-log@5.0.0: {}
@@ -12339,29 +12680,29 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
- rollup@4.34.9:
+ rollup@4.35.0:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.9
- '@rollup/rollup-android-arm64': 4.34.9
- '@rollup/rollup-darwin-arm64': 4.34.9
- '@rollup/rollup-darwin-x64': 4.34.9
- '@rollup/rollup-freebsd-arm64': 4.34.9
- '@rollup/rollup-freebsd-x64': 4.34.9
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.9
- '@rollup/rollup-linux-arm-musleabihf': 4.34.9
- '@rollup/rollup-linux-arm64-gnu': 4.34.9
- '@rollup/rollup-linux-arm64-musl': 4.34.9
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.9
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.9
- '@rollup/rollup-linux-riscv64-gnu': 4.34.9
- '@rollup/rollup-linux-s390x-gnu': 4.34.9
- '@rollup/rollup-linux-x64-gnu': 4.34.9
- '@rollup/rollup-linux-x64-musl': 4.34.9
- '@rollup/rollup-win32-arm64-msvc': 4.34.9
- '@rollup/rollup-win32-ia32-msvc': 4.34.9
- '@rollup/rollup-win32-x64-msvc': 4.34.9
+ '@rollup/rollup-android-arm-eabi': 4.35.0
+ '@rollup/rollup-android-arm64': 4.35.0
+ '@rollup/rollup-darwin-arm64': 4.35.0
+ '@rollup/rollup-darwin-x64': 4.35.0
+ '@rollup/rollup-freebsd-arm64': 4.35.0
+ '@rollup/rollup-freebsd-x64': 4.35.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.35.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.35.0
+ '@rollup/rollup-linux-arm64-gnu': 4.35.0
+ '@rollup/rollup-linux-arm64-musl': 4.35.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.35.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.35.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.35.0
+ '@rollup/rollup-linux-s390x-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-musl': 4.35.0
+ '@rollup/rollup-win32-arm64-msvc': 4.35.0
+ '@rollup/rollup-win32-ia32-msvc': 4.35.0
+ '@rollup/rollup-win32-x64-msvc': 4.35.0
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -12408,7 +12749,7 @@ snapshots:
neo-async: 2.6.2
optionalDependencies:
sass: 1.85.0
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
sass@1.85.0:
dependencies:
@@ -12663,7 +13004,7 @@ snapshots:
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
source-map-support@0.5.21:
dependencies:
@@ -12842,11 +13183,11 @@ snapshots:
'@pkgr/core': 0.1.1
tslib: 2.8.1
- tailwindcss-primeui@0.5.1(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))):
+ tailwindcss-primeui@0.5.1(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))):
dependencies:
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))
+ tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))
- tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4)):
+ tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -12865,7 +13206,7 @@ snapshots:
postcss: 8.5.3
postcss-import: 15.1.0(postcss@8.5.3)
postcss-js: 4.0.1(postcss@8.5.3)
- postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4))
+ postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4))
postcss-nested: 6.2.0(postcss@8.5.3)
postcss-selector-parser: 6.1.2
resolve: 1.22.10
@@ -12900,7 +13241,7 @@ snapshots:
schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
optionalDependencies:
esbuild: 0.25.0
@@ -12969,14 +13310,14 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-node@10.9.2(@types/node@22.13.9)(typescript@5.5.4):
+ ts-node@10.9.2(@types/node@22.13.10)(typescript@5.5.4):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
acorn: 8.14.1
acorn-walk: 8.3.4
arg: 4.1.3
@@ -13009,17 +13350,17 @@ snapshots:
tsup@8.4.0(jiti@2.4.2)(postcss@8.5.2)(typescript@5.5.4)(yaml@2.7.0):
dependencies:
- bundle-require: 5.1.0(esbuild@0.25.0)
+ bundle-require: 5.1.0(esbuild@0.25.1)
cac: 6.7.14
chokidar: 4.0.3
consola: 3.4.0
debug: 4.4.0(supports-color@9.4.0)
- esbuild: 0.25.0
+ esbuild: 0.25.1
joycon: 3.1.1
picocolors: 1.1.1
postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.2)(yaml@2.7.0)
resolve-from: 5.0.0
- rollup: 4.34.9
+ rollup: 4.35.0
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.2
@@ -13178,13 +13519,13 @@ snapshots:
vary@1.1.2: {}
- vite@6.2.0(@types/node@22.13.9)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0):
+ vite@6.2.0(@types/node@22.13.10)(jiti@2.4.2)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.7.0):
dependencies:
esbuild: 0.25.0
postcss: 8.5.3
rollup: 4.34.8
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 22.13.10
fsevents: 2.3.3
jiti: 2.4.2
less: 4.2.2
@@ -13221,7 +13562,7 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.3.0
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
webpack-dev-server@5.2.0(webpack@5.98.0(esbuild@0.25.0)):
dependencies:
@@ -13253,7 +13594,7 @@ snapshots:
webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.0))
ws: 8.18.1
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
transitivePeerDependencies:
- bufferutil
- debug
@@ -13271,9 +13612,9 @@ snapshots:
webpack-subresource-integrity@5.1.0(webpack@5.98.0(esbuild@0.25.0)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.98.0(esbuild@0.25.0)
+ webpack: 5.98.0(esbuild@0.25.1)
- webpack@5.98.0(esbuild@0.25.0):
+ webpack@5.98.0(esbuild@0.25.1):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
@@ -13339,7 +13680,7 @@ snapshots:
isarray: 2.0.5
which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
which-collection@1.0.2:
dependencies:
@@ -13348,12 +13689,13 @@ snapshots:
is-weakmap: 2.0.2
is-weakset: 2.0.4
- which-typed-array@1.1.18:
+ which-typed-array@1.1.19:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
call-bound: 1.0.4
for-each: 0.3.5
+ get-proto: 1.0.1
gopd: 1.2.0
has-tostringtag: 1.0.2