diff --git a/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts index 9cad38f4930d..72232ca78b99 100644 --- a/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -43,6 +44,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })] }) export class AppModule { } diff --git a/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts b/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts index 6117e6fff821..330286f24830 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts index d4289be11b2d..b1eb58b195a0 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts index 159af7d0f870..8c0086da1d82 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { Component, NgModule, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule, HttpParams } from '@angular/common/http'; +import { HttpClient, HttpParams, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxAutocompleteModule } from 'devextreme-angular'; import { CustomStore } from 'devextreme-angular/common/data'; @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, @@ -98,8 +99,8 @@ export class AppComponent { imports: [ BrowserModule, DxAutocompleteModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts index dc98002be1a1..7f918a22a03a 100644 --- a/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts b/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts index 67dacae15826..d4f6063de03e 100644 --- a/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts +++ b/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts b/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts index 973c8e8c9bab..1ce95f0730db 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts index ee5bce6b826c..7943730cf8e6 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts b/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts index 587cb537fb4e..325a0217c6de 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts index 6df667db7c00..f2a48e6c6d48 100644 --- a/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts b/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts index 34d0e062b17f..f78090e2c8ad 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts b/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts index 02b3a7c12a8e..065c3b4eb683 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'license-info', templateUrl: `.${modulePrefix}/license-info/license-info.component.html`, }) diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts b/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts index fa196f2ee28a..e8303027ab97 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts @@ -7,6 +7,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'vehicle-card', templateUrl: `.${modulePrefix}/vehicle-card/vehicle-card.component.html`, styleUrls: [`.${modulePrefix}/vehicle-card/vehicle-card.component.css`], diff --git a/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts b/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts index 84f1c993324f..2f853c899797 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts index dcf366c87cba..af7959f54375 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts @@ -19,6 +19,7 @@ function getOrderDay(rowData: Order) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts b/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts index f85cd1583ebf..ea67b9474f1f 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts b/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts index ebb79c766297..ea8ab7a67094 100644 --- a/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], @@ -70,8 +71,8 @@ export class AppComponent { BrowserModule, DxCardViewModule, DxTextAreaModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts index 51b39bdd557f..bbf8f02c1b69 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts index 8263c251d096..93bf010a08b8 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts @@ -7,6 +7,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'card-header', templateUrl: `.${modulePrefix}/card-header/card-header.component.html`, styleUrls: [`.${modulePrefix}/card-header/card-header.component.css`], diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts index 272aff11d180..54b1d764f1bb 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'employee', templateUrl: `.${modulePrefix}/employee/employee.component.html`, styleUrls: [`.${modulePrefix}/employee/employee.component.css`], diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts index b2ab7e40dfa4..757b70ff0343 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'priority', templateUrl: `.${modulePrefix}/priority/priority.component.html`, styleUrls: [`.${modulePrefix}/priority/priority.component.css`], diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts index ddf2a0c263e8..9a691f18cba2 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts @@ -7,6 +7,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'progress-bar', templateUrl: `.${modulePrefix}/progress-bar/progress-bar.component.html`, styleUrls: [`.${modulePrefix}/progress-bar/progress-bar.component.css`], diff --git a/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts b/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts index 75196678cf45..ede9cd70841b 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts @@ -19,6 +19,7 @@ function getOrderDay({ OrderDate }: Order): number { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts b/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts index 3813b3637a23..58fcc912076d 100644 --- a/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts b/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts index 20200b2b63ed..319cd28dcdfe 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts b/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts index c0294485c379..8f61688957c0 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts b/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts index 4aade3a593d6..c51fb6b13e8c 100644 --- a/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts index 90152fd3b77e..5ae21c1ce114 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts b/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts index 128386def641..565661021964 100644 --- a/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts index 8ffceb2b198d..85929ac91c13 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { const url = 'https://js.devexpress.com/Demos/NetCore/api/TreeListTasks'; @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts index c74d0af12911..893fa9255c96 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts index 98596e144883..ee10d9e47b30 100644 --- a/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts index 1ded320e50f0..1e225e00d18f 100644 --- a/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts index 606afc7a3014..98d17f50a770 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts index 0ef4d21b243d..a5e18b9e170d 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts index 99cd5adf8abc..8e5a5a2f017e 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts index 8823bcf8b68f..fe1777ffc9b8 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts index 42434f41c6f7..cc48313bf4f7 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts index 439069d6021c..d3c3004a8780 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts index 0a8bb4165e9b..3e6fcb3d6d63 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts index 3125b64adfd5..bc97f4c9a7c5 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxSparklineModule, DxSelectBoxModule } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -52,10 +53,10 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxSparklineModule, DxSelectBoxModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts index c43755a5344d..3ba3efa303d4 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts index 0afb3f9f12e8..f6a8083a332d 100644 --- a/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts index 53aa9be63c2b..8cdc5c3f09bb 100644 --- a/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts index 09a8fd1f9e26..df4b5d74902c 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts index 07ec0905bb52..c5d2001f93aa 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts @@ -1,9 +1,9 @@ import { - NgModule, Component, AfterViewInit, enableProdMode, + NgModule, Component, AfterViewInit, enableProdMode, provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxChartModule, DxSelectBoxModule } from 'devextreme-angular'; @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], }) @@ -69,11 +70,14 @@ export class AppComponent implements AfterViewInit { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxChartModule, DxSelectBoxModule, ], declarations: [AppComponent], + providers: [ + provideHttpClient(withFetch()), + provideZoneChangeDetection({ eventCoalescing: true }) + ], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts index 8454d8f0611c..8ab23cfa2cec 100644 --- a/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts @@ -27,6 +27,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts index 8eca1aa1658b..7345233c40fe 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts index 36c4cd04b037..4d52c3defed2 100644 --- a/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts index 6a78d43796c3..cf70d80cc6f3 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts index 73468b1c82b9..d5a7f810fad8 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts index 4485ffcc7652..6f3fcb86c57d 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts index 11a503862148..5a2f87bb1146 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts index e07c3442208c..4457d7eaed59 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts index 9de9edc61bf7..d2caed38b41d 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts index 329011f62a01..9feb5f6b3b7b 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts index 973c3c353bea..63d6c018ef28 100644 --- a/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts index e233d04c0f0b..59c4947fb15c 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts index 8c104d64a43b..d526efe6cef3 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts index e9e38241041f..2213c12226ef 100644 --- a/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts index 087218189fdf..6b15495630a3 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts b/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts index 5c48ecb161b4..c78d4e23505a 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts index 62cc3da0c24a..f320ebc98819 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts index 4109b733df91..7a410f73337a 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts index f4aac2e536c5..7ff52c3f7444 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts index e94d0500d1e3..f1c50160d378 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts index f5aa2cd07211..1b7557980812 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts index 8d66ff5aa4ea..a44b0814cd30 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts index 7c27db547d88..c354bd944ece 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts index f5aa2cd07211..1b7557980812 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts b/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts index 1fa116bc6fa1..14a09bf081a0 100644 --- a/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts index 8eca1aa1658b..7345233c40fe 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts index ef448d7b84b7..6702b37a23cd 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts index 302c6adfbdcc..38a15b743435 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -54,6 +55,7 @@ export class AppComponent { DxChartModule, ], declarations: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts index 45b23f1e991b..e6ebd3549380 100644 --- a/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts index 2aff1604d517..a1eea50a50e1 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxChartComponent, DxChartModule } from 'devextreme-angular'; import { VisualRange } from 'devextreme-angular/common/charts'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -129,8 +130,8 @@ export class AppComponent { imports: [ BrowserModule, DxChartModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts index e23c6f14bb0f..3bdd006189a2 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts index 1d046970f04a..cdee20d6dbc6 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts index c1e14a2bed1c..5d16d432183b 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts index 0500904d37a8..35d12dec1bf3 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts index 57b618a7bd30..3f5cdd9937b0 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts index 41f1618fd10d..c7e6b920604a 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts b/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts index cfa3ec4ec26f..90e1df15079b 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts index 32952ea35bed..b5923b0ce640 100644 --- a/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts index 290aa916140b..611651f9b372 100644 --- a/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts index bbd88523bc07..d9c459ac8d71 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts index 8eca1aa1658b..7345233c40fe 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts index 3b655f490d0a..2b114b7dcd11 100644 --- a/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts index bea8e80a6774..f3341f6aac0a 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts index d953631266b3..890fafcd8981 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts index c42f4c38e8d5..6f07bdf6ab6a 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts index 7516d2eec37b..c02c23e1ba05 100644 --- a/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts index 4eb7574d6dd6..2e6b11c6cf9d 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts index e0f15ac66fc2..a27d4e7a3631 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts index 43512a62b9ac..47db23c167fa 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts index 24cc1b2de1d9..0f80291d5aa0 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts index 59fdc58a4559..9df64de325b5 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts index 5b3990a042f8..b7f921c275f6 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts b/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts index 53093dd5dc55..80c3ead7f24e 100644 --- a/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts index 201bd749bb59..928cbbeea01d 100644 --- a/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts index 1badcb40e5fc..712756e51382 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts index 401b820e13f3..ca10a00ff63c 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts index e9f235c7ceb5..76ddf2249a7f 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts index 3517171bd3b2..ca587ff569dc 100644 --- a/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts index 92140bb284e2..c41a4b9f6006 100644 --- a/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts index 53cacb34f11d..e575f338fa82 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts index 7b165986b342..f2ace9c3075c 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts index ab001ec71d74..dcbcec8a48c7 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts index abd4aff11add..8fb22f46ecb8 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts index e59c5c65208a..c8c1986b653e 100644 --- a/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts index 47395099b8af..31a35d016e75 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts index 7b806a3c52c3..3c58fabfb32d 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts index feebb4e4e653..70be2e88d25f 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts index 8c104d64a43b..d526efe6cef3 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts index 83c5336dd223..a03b75275cea 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts index 74f38d4a0fab..1a3d6d1431f6 100644 --- a/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts index 3fec1949eb95..46e1c88852bb 100644 --- a/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts index c56039c8f809..82e6c9cfcb68 100644 --- a/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts index 1d046970f04a..cdee20d6dbc6 100644 --- a/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts index e7cbcf3df040..8cb3c1c4e852 100644 --- a/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts index 0a673c44c2aa..983baf2e84de 100644 --- a/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts index 53aa9be63c2b..8cdc5c3f09bb 100644 --- a/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts index 140e481af988..5f57b3d89b07 100644 --- a/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts index 8373ea7a005e..17c7c1929b9d 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxTreeMapModule, DxSelectBoxModule } from 'devextreme-angular'; @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -72,6 +73,7 @@ export class AppComponent { DxSelectBoxModule, ], declarations: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts index 1d046970f04a..cdee20d6dbc6 100644 --- a/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts index 5cef84787cce..b41cf4b95ac0 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts index d909aee308e4..65b74461e6e7 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts b/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts index a963fe544567..8db6f6a2ee05 100644 --- a/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts index b5569b00b731..705e28f5a928 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts index 4dc4b97c4791..0a4e99038836 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts index 912c405ce474..967ec8f3910d 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts index d367c97f095e..b65e572a72e8 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts b/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts index e3b919f2814f..3fbe3cc22186 100644 --- a/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts b/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts index 41e739e9a843..4677346a4cea 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], }) diff --git a/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts b/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts index 5790e692220e..c3dafdd1ceed 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts index 42c9fde1ee52..1328d748457a 100644 --- a/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts index 580e1983260a..46d892796611 100644 --- a/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts index af0ed7fee88d..958b0dcb454e 100644 --- a/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts index 56f2e6609e1b..1d53fdbe7363 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts index a04575bbbd4f..36f0e13e615f 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts @@ -26,6 +26,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts index 1b489040df9a..686cbb272882 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts index 7ed498028f33..24d87754a85f 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts @@ -25,6 +25,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts index a92972febcb3..2e7cb23e7e79 100644 --- a/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts index c837f946c69b..99c2674aa33b 100644 --- a/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts index 949b3e5cd70f..3d57bbbd9652 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts index 7f5d76025be5..56ff5fb9c337 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts index ba89be52c618..682b2a5ff187 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts b/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts index 5fc16c5a5d87..8bc23b9a0fe5 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts @@ -22,6 +22,7 @@ class ContextMenuItem { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts b/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts index 090a44a9410e..436897299eeb 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts b/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts index 43fe21d90530..e27fb74f1b1d 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts index 484d1a62f912..ea3cbaf80d33 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service, AiService], diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts index 1f9960905e5b..1c3a395b151a 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'category', + standalone: false, templateUrl: `.${modulePrefix}/category/category.component.html`, styleUrls: [`.${modulePrefix}/category/category.component.css`], }) diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts index c163ad2d4726..7abd9d7f8bf1 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts @@ -9,6 +9,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'license-info', + standalone: false, templateUrl: `.${modulePrefix}/license-info/license-info.component.html`, }) export class LicenseInfo { diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts index e351d96b3448..25987e5530c8 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'trademark', + standalone: false, templateUrl: `.${modulePrefix}/trademark/trademark.component.html`, styleUrls: [`.${modulePrefix}/trademark/trademark.component.css`], }) diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts index 5644ef6aa03d..9ed4a3dbf0b2 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts index 018e40d6318c..a3c9b8875ed9 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts @@ -1,4 +1,4 @@ -import { Component, Input, AfterViewInit } from '@angular/core'; +import {Component, Input, AfterViewInit, ChangeDetectorRef} from '@angular/core'; import { DataSource } from 'devextreme-angular/common/data'; import * as AspNetData from 'devextreme-aspnet-data-nojquery'; import { DxFormTypes } from 'devextreme-angular/ui/form'; @@ -11,6 +11,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'detail-view', templateUrl: `.${modulePrefix && (`${modulePrefix}/detail-view`)}/detail-view.component.html`, styleUrls: [`.${modulePrefix && (`${modulePrefix}/detail-view`)}/detail-view.component.css`], @@ -29,7 +30,7 @@ export class DetailViewComponent implements AfterViewInit { orderHistoryData: DataSource; - constructor() { + constructor(private cdr: ChangeDetectorRef) { this.url = 'https://js.devexpress.com/Demos/NetCore/api/DataGridAdvancedMasterDetailView'; } @@ -42,6 +43,8 @@ export class DetailViewComponent implements AfterViewInit { onLoaded: (items) => this.setDefaultProduct(items), }), }); + + this.cdr.detectChanges(); } setDefaultProduct(items) { @@ -50,6 +53,7 @@ export class DetailViewComponent implements AfterViewInit { if (firstItem && this.productIdBySupplier === undefined) { this.productIdBySupplier = firstItem.ProductID; } + this.cdr.detectChanges(); } handleValueChange(e: DxSelectBoxTypes.ValueChangedEvent) { diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts index 0c698326ba46..1dbe3b9bd32b 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts index 9bb566e1fa12..058623a783f8 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts index 15a066144fd9..4441367423dc 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts index 7c551302278f..95be5f134f61 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts index 56f3b1b30c6a..c3c7906f4ea9 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import * as AspNetData from 'devextreme-aspnet-data-nojquery'; import { DxDataGridComponent, DxDataGridModule, DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -92,8 +93,8 @@ export class AppComponent { imports: [ BrowserModule, DxDataGridModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts index b99891733507..1c8328edc047 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts index 2352cd7aa713..b8284c1f28ce 100644 --- a/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,7 +38,7 @@ export class AppComponent { } } -@Pipe({ name: 'gridCellData' }) +@Pipe({ name: 'gridCellData', standalone: true }) export class GridCellDataPipe implements PipeTransform { transform({ data, column }) { return data[column.caption.toLowerCase()]; @@ -49,8 +50,9 @@ export class GridCellDataPipe implements PipeTransform { BrowserModule, DxDataGridModule, DxSparklineModule, + GridCellDataPipe, ], - declarations: [AppComponent, GridCellDataPipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts index 6464329db555..6a7719ad43c3 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts index 2cf5b5f0708c..b658f30d1575 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts index 3612b9749d90..9f2550aaf8d3 100644 --- a/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts index b98288700f13..7ab36a1daf94 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts index 20a6fcadc715..3060087097c8 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts index 5f5b220be541..1b73f17d5b8c 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts index ffa5416fb80a..4757e7001dfe 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts index 9a4bb2ff6910..0c4f87a0e674 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts index 6ea56743c55b..4cc9a0afe389 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts index af1cea22cf6e..a0f68ebb7f80 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule, HttpParams } from '@angular/common/http'; +import { HttpClient, HttpParams, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxDataGridModule } from 'devextreme-angular'; import { CustomStore, LoadOptions } from 'devextreme-angular/common/data'; @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) @@ -67,8 +68,8 @@ export class AppComponent { imports: [ BrowserModule, DxDataGridModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts index 6f42e164f552..379bd0fcb450 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts index 5f3d4e372ba4..0c570c0a2adc 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts index c2e9dcd13a94..c830aa602b6c 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts index 0fd031deebe5..3c2f9f1b3eac 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDataGridModule } from 'devextreme-angular'; import * as AspNetData from 'devextreme-aspnet-data-nojquery'; import { CustomStore } from 'devextreme-angular/common/data'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) @@ -58,9 +59,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDataGridModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts index 0324ae435a34..3dac408c78ee 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts @@ -1,5 +1,10 @@ import { - NgModule, Component, ViewChild, AfterViewInit, enableProdMode, + NgModule, + Component, + ViewChild, + AfterViewInit, + enableProdMode, + provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -17,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -81,6 +87,9 @@ export class AppComponent implements AfterViewInit { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [ + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), + ] }) export class AppModule { } diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts index 79496bd653c5..ffed94cbf3f3 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts index 1d823b82a66c..eada957acd86 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import { provideHttpClient, withFetch } from '@angular/common/http'; import { DxLoadPanelModule } from 'devextreme-angular'; import { Observable, Subscription } from 'rxjs'; import { DxDataGridModule, DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -89,8 +90,8 @@ export class AppComponent implements OnInit, OnDestroy { BrowserModule, DxDataGridModule, DxLoadPanelModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts index 44b5818d253a..db7a56e6b799 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts index a9b021e627cd..9abfc73bbd5f 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts index 8f8c0b1e980f..87367c674ec2 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts index 867ce5466eff..88ce94f451e5 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts index 44c9a321f002..42e91c5b8cf4 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts index 669887c055d4..a456b95b30ca 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts index f130799595db..3e372c10ed21 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts index 11a9f3704773..5723ec8d7a75 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts index 5f5b220be541..1b73f17d5b8c 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts index 8d919526ecc1..a37e9351abe3 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts index b9179a4e4bf7..0291289098dc 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts index 9a4bb2ff6910..0c4f87a0e674 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts index 260f8565cbce..d76e52779866 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts index 8b7582ce21bf..c4f5a25071d2 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts index 2213981ec8f3..4ab4cd0da240 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts index 4e6a74e64f63..0dba15c5b3a8 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts index 2c6ede0f75c1..61e5b2f23aad 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts index aed215fc01ca..fd851dbbca8d 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts index bcd1e9b671b4..945357ab9e69 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts index 2431c83906ba..7af35806490a 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts index 48c5458c9140..b7c3f70c97c4 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts @@ -1,4 +1,4 @@ -import { Component, Input, AfterViewInit } from '@angular/core'; +import { Component, Input, AfterViewInit, ChangeDetectorRef } from '@angular/core'; import { DataSource, ArrayStore } from 'devextreme-angular/common/data'; import { Service, Task } from '../app.service'; @@ -9,6 +9,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'detail-grid', templateUrl: `.${modulePrefix && (`${modulePrefix}/detail-grid`)}/detail-grid.component.html`, providers: [Service], @@ -20,7 +21,7 @@ export class DetailGridComponent implements AfterViewInit { tasks: Task[]; - constructor(private service: Service) { + constructor(private service: Service, private cdr: ChangeDetectorRef) { this.tasks = service.getTasks(); } @@ -32,6 +33,8 @@ export class DetailGridComponent implements AfterViewInit { }), filter: ['EmployeeID', '=', this.key], }); + + this.cdr.detectChanges(); } completedValue(rowData) { diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts index a47cc3255876..e2d087be52f8 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts index 3e8c7f3fcd9c..42590f175ffb 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -60,7 +61,7 @@ export class AppComponent { } } -@Pipe({ name: 'stringifyEmployees' }) +@Pipe({ name: 'stringifyEmployees', standalone: true }) export class StringifyEmployeesPipe implements PipeTransform { transform(employees: Employee[]) { return employees.map((employee) => `${employee.FirstName} ${employee.LastName}`).join(', '); @@ -73,8 +74,9 @@ export class StringifyEmployeesPipe implements PipeTransform { DxDataGridModule, DxButtonModule, DxSelectBoxModule, + StringifyEmployeesPipe, ], - declarations: [AppComponent, StringifyEmployeesPipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts index 5e9a3567b954..46c57045c17f 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts index 97347cc43a47..2abed209a702 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts index 23c2d7b5934e..71b413510022 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import {NgModule, Component, enableProdMode, provideZoneChangeDetection} from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import Guid from 'devextreme/core/guid'; @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -71,6 +72,9 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [ + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), + ] }) export class AppModule { } diff --git a/apps/demos/Demos/DataGrid/OdataService/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/OdataService/Angular/app/app.component.ts index cfea250788eb..c9d2924c66fd 100644 --- a/apps/demos/Demos/DataGrid/OdataService/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/OdataService/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts index 2cd9c0edca1f..c16616fc96f3 100644 --- a/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts index 6feb0c1cb7ce..a813b2e5624e 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts index 9731c9dd750f..74cf36ac50ef 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts index 76051af3cafd..a9d8f9e497a9 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts index e72ac4094093..23d3878e7e39 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts index 631243b42380..5e1c5921d84f 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts index b9179a4e4bf7..0291289098dc 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts index 05a30174f8b9..3a322301fa09 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts index 3f2afc6710d3..8d288b745714 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts index 3b384639c40f..b3685b6bef66 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts index c0a52cc80dd7..d0c9efad2814 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts index 937b08b6614a..1b4ef15ea147 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule, HttpParams } from '@angular/common/http'; +import {HttpClient, HttpParams, provideHttpClient, withFetch} from '@angular/common/http'; import { lastValueFrom, Observable } from 'rxjs'; import { DxDataGridModule, DxSelectBoxModule, DxButtonModule } from 'devextreme-angular'; import { CustomStore } from 'devextreme-angular/common/data'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -116,8 +117,8 @@ export class AppComponent { DxDataGridModule, DxSelectBoxModule, DxButtonModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts index 1006f29876d9..e8e41ce736e8 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts index 88faac8d182f..57d248408506 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts index 1006f29876d9..e8e41ce736e8 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts index 7526453fd785..69341406ecc5 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts index 3612b9749d90..9f2550aaf8d3 100644 --- a/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts index aef4281b5621..2ae19e4faf8c 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.html b/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.html index eb458a0c48d4..076a738be322 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.html @@ -28,7 +28,8 @@ dataType="date" > -
+@if (grid.selectedRowKeys.length) { +
+} diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts index 3612b9749d90..3400e87dfa57 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import {NgModule, Component, enableProdMode, provideZoneChangeDetection} from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxDataGridModule } from 'devextreme-angular'; @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -35,6 +36,9 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [ + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), + ] }) export class AppModule { } diff --git a/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts index c75f3cd10a34..4b2669794aa9 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts index 4e48a05d42dd..d1a6e48c2515 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts index e1f0eec05bc9..14464a74e9e0 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts index 771eb135b62c..6927ca571285 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts index 533ead4d017c..ecdb273c4e3f 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts index 0edb1da6f034..ee2f559c0c52 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts index 7b3a30f95a5f..280b0143a0e4 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts @@ -9,6 +9,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'detail-grid', templateUrl: `.${modulePrefix}/detail-grid/detail-grid.component.html`, providers: [], diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts b/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts index a95288fadfb3..f3b67a8701e4 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts index a0e42a2bbbc8..66757db7e6ae 100644 --- a/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts b/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts index fbb028ec18c1..a09cfb3f1d62 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts index 2bd3af4557e1..be409643f6b5 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts @@ -27,6 +27,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts index 1bb6c40b8a64..e40476fb8f81 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import {HttpClient, provideHttpClient, withFetch} from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,9 +38,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts index 7d55d9ddcaf9..703d9df0d3f8 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import { provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule } from 'devextreme-angular'; import { ArrayStore } from 'devextreme-angular/common/data'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -93,9 +94,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts index 0326d173404f..03b40fa3a8da 100644 --- a/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,9 +38,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts index 171c36c73c54..3270246ad660 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,9 +38,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts index e2817ec167b8..5039fd2d6c18 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts index be3e003b93c8..bf269b7a5888 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts index f0d17490c6cd..cd07328cf724 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; import { Service, Employee } from './app.service'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -43,9 +44,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts index 9e33d8d96c6d..876d427fb106 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import { provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule } from 'devextreme-angular'; import { ArrayStore } from 'devextreme-angular/common/data'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -46,9 +47,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts index 01f3af7159e8..5f824044cd72 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts @@ -1,5 +1,5 @@ import { - NgModule, Component, Pipe, PipeTransform, enableProdMode, + NgModule, Component, Pipe, PipeTransform, enableProdMode, provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -55,7 +56,7 @@ export class AppComponent { } } -@Pipe({ name: 'stringifyItems' }) +@Pipe({ name: 'stringifyItems', standalone: false }) export class StringifyItemsPipe implements PipeTransform { transform(items: DxDiagramTypes.Item[], textExpression: string): string { return items @@ -71,6 +72,7 @@ export class StringifyItemsPipe implements PipeTransform { DxDiagramModule, ], declarations: [AppComponent, StringifyItemsPipe], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts index 85c5c6ef56f5..255ab397b577 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import {provideHttpClient, withFetch} from '@angular/common/http'; import { DxDiagramModule } from 'devextreme-angular'; import { ArrayStore } from 'devextreme-angular/common/data'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -46,9 +47,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts index 062e8176efde..56c017fd709d 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import { provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule } from 'devextreme-angular'; import { ArrayStore } from 'devextreme-angular/common/data'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -40,9 +41,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts index 75a344144910..8cac82e3e4d7 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import { provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule } from 'devextreme-angular'; import { ArrayStore } from 'devextreme-angular/common/data'; import { Service } from './app.service'; @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,9 +38,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts index 79e0ae00a18e..a6ebe12d0a3e 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode, } from '@angular/core'; -import { HttpClientModule } from '@angular/common/http'; +import {provideHttpClient, withFetch} from '@angular/common/http'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import notify from 'devextreme/ui/notify'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -121,9 +122,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts index 1bb6c40b8a64..dee57980ed31 100644 --- a/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,9 +38,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts index 0326d173404f..5311528b3290 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -37,10 +38,10 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], declarations: [AppComponent], + providers: [provideHttpClient(withFetch())], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts index 5a8735cd977e..a0c930244d50 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClientModule } from '@angular/common/http'; +import { provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule } from 'devextreme-angular'; import { ArrayStore } from 'devextreme-angular/common/data'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -40,9 +41,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts index 23b6b2005f25..09dd5ec1c5c4 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { DxDiagramModule, DxDiagramComponent } from 'devextreme-angular'; import { confirm } from 'devextreme/ui/dialog'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -51,10 +52,10 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], declarations: [AppComponent], + providers: [provideHttpClient(withFetch())], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts index 5acf6b0f998c..57cf1e7e4f95 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts index d616f1c7cb82..aa52982f62de 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts index 28b5efd71592..82668f36619a 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts index 4a7b3262b3ef..6d03ae5a9ba9 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts @@ -3,7 +3,7 @@ import { } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { CustomStore } from 'devextreme-angular/common/data'; import { DxDropDownBoxModule, DxDataGridModule } from 'devextreme-angular'; @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -80,9 +81,9 @@ export class AppComponent { BrowserModule, DxTreeViewModule, DxDropDownBoxModule, - HttpClientModule, DxDataGridModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts index 0bc0d781b60f..3c12a4e572df 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { enableProdMode, ChangeDetectionStrategy, ChangeDetectorRef, Component, NgModule, ViewChild, } from '@angular/core'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { lastValueFrom } from 'rxjs'; @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -94,9 +95,9 @@ export class AppComponent { BrowserModule, DxTreeViewModule, DxDropDownBoxModule, - HttpClientModule, DxDataGridModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts index 0ee22ccc4048..ceb43788bab7 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts b/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts index 08b8e7665791..a23695e21399 100644 --- a/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts index a6bfcc6419eb..54690447b5fe 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, preserveWhitespaces: true, diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts index 7409936203fd..e5439cb30328 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, preserveWhitespaces: true, diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts index 2ad147d8ef74..3cf463140cbf 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts index d51e91ee520e..f63f34e5a156 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts index be8813ff89cf..fdc008d1caf8 100644 --- a/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts index 49fd46e34abd..a8dfafe990a1 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts index b2cffa1f046b..26efb7bfbcfc 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts index b86979e75eff..1f873628ba44 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts index 4f194cb6a6c6..dacc6d298f53 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts index a5e10cb2c5ed..964934c665d2 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts @@ -12,7 +12,7 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -@Pipe({ name: 'demodate' }) +@Pipe({ name: 'demodate', standalone: true }) export class DemoDatePipe implements PipeTransform { transform(date: number) { return new Date(date); @@ -30,6 +30,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -44,8 +45,9 @@ export class AppComponent { DxCheckBoxModule, DxFileUploaderModule, DxSelectBoxModule, + DemoDatePipe, ], - declarations: [AppComponent, DemoDatePipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts index 83871e0c60a3..e72f60e3a739 100644 --- a/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts b/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts index c73fd7a197ce..dcb040d94195 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxListModule, DxButtonModule, DxTagBoxModule } from 'devextreme-angular'; @@ -31,6 +31,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -88,6 +89,7 @@ export class AppComponent { DxFilterBuilderModule, ], declarations: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts index bed0d6a1a9e3..09d857f51886 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts b/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts index 1fcf122b2bce..c35ed9e9e194 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts +++ b/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts b/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts index 030d0f9becaa..afaa732aeb6b 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts index 8ee57dc55a8a..849f0ec0ddc4 100644 --- a/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts index fad043ea809e..c6527794f014 100644 --- a/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts index 220477917abc..0ad955d067be 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts index e1badbdfe48a..049e95116e32 100644 --- a/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts b/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts index 4cb94e5cc6b5..641c25d5da17 100644 --- a/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts @@ -46,6 +46,7 @@ const showNotification = (message: string, of: string, isError?: boolean, offset }; @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts index a58e3161f7cf..89fede42f473 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts b/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts index 013aa03f6781..3d2df9fd1be7 100644 --- a/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts @@ -41,6 +41,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts b/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts index a4bc8005ae11..85289bb52fc6 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts index 3d9871a7710a..b9e3ea1d1bf6 100644 --- a/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts index 65a9f0dc729c..7bafee343d75 100644 --- a/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts index d2c26ab68eb2..51a66a1fbee2 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts index 873a8802221a..eea9ca40bc15 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts index 4a8cb939bfa7..c803c110dd6e 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts @@ -33,6 +33,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts index 873a8802221a..eea9ca40bc15 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts index 873a8802221a..eea9ca40bc15 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts index 873a8802221a..eea9ca40bc15 100644 --- a/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts index ac09e299922d..912c4f8c9513 100644 --- a/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts index 3f2cd5a90c7a..b031417a33e6 100644 --- a/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts index cb824d3b0a22..a89bfe9e6dab 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts index ad0fe2a69e09..1e72f4aac881 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts index 79ac7c8e070f..f86f5c5bfd3c 100644 --- a/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts index fbcda42f8387..34386731ec65 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts index 54dcc344b7df..96e1aefa28d1 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts index 8b8e2c95c64d..f018574bce1b 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts index fbcda42f8387..34386731ec65 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts index 9aab1e779216..ce7dd8221f36 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts index fbcda42f8387..34386731ec65 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts index e86e1bd5d5e8..ea220c62ac29 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts index 1ded9f7b4897..7999cd658c3d 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts index a7db54a1d4d3..d0c8595808e8 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts index fbcda42f8387..34386731ec65 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts index bfacc21984eb..fda08d7843fd 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts index 1e5da23d6cc2..9b9b94e64da8 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts index 30cfa83e0bb5..04e47d5c1621 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts index f283ca29f3f1..33dfedb0b707 100644 --- a/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts index e4c74d86149c..3074b51d1666 100644 --- a/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts index fbcda42f8387..34386731ec65 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts index 0f2c8273a8b3..220facf972ed 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts index 9aab1e779216..ce7dd8221f36 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts index 9aab1e779216..ce7dd8221f36 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts index 1ded9f7b4897..7999cd658c3d 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts index fbcda42f8387..34386731ec65 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts index a77200d8a7d1..3f7a2e06bce1 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts index 46e995187e6c..59b1410aea1f 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts index 6c1c80ec6987..573a02bd0d6d 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts index c03d536954b8..a9ffb3062109 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts index 4dd301fcb7de..bfda5c15f1d3 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts index 40c2dc65c67b..2501b9829208 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts @@ -25,6 +25,7 @@ type AIMessage = (OpenAI.ChatCompletionUserMessageParam | OpenAI.ChatCompletionS }; @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts index d93370ec142d..d77c912db73a 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts @@ -27,6 +27,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts index c7eab0bb67cb..909f0f9f9e9c 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts index cca21f81d444..774130b34c91 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts index 9d47ab52b3e0..0243d990dfd4 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts index 996c21672a5c..8b366fd53cfd 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts b/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts index 97938b5f1b7f..f87337e11a89 100644 --- a/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxListModule } from 'devextreme-angular'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -59,6 +60,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts index 92e0c0b5a48e..ebaf1b263807 100644 --- a/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts b/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts index 1ff6d914586d..72dd682f2a88 100644 --- a/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts b/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts index 2b59fa389903..a07b45a4d88e 100644 --- a/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/List/Search/Angular/app/app.component.ts b/apps/demos/Demos/List/Search/Angular/app/app.component.ts index 20d3ba4a060f..81733518c5e7 100644 --- a/apps/demos/Demos/List/Search/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/Search/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/List/Selection/Angular/app/app.component.ts b/apps/demos/Demos/List/Selection/Angular/app/app.component.ts index 4f584a270bb9..8adb52890fb9 100644 --- a/apps/demos/Demos/List/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/Selection/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DataSource, ArrayStore } from 'devextreme-angular/common/data'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -51,6 +52,7 @@ export class AppComponent { DxCheckBoxModule, ], declarations: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts b/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts index 76b419729927..9e6561fb61d7 100644 --- a/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts b/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts index f00ab7791597..4bfc94e58877 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts b/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts index e52913c50a62..3cfbaf046510 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts b/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts index 859a377868a8..a1270f9e020a 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts +++ b/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts @@ -31,6 +31,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts b/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts index 1124379f16ea..aa201b4c14e7 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts +++ b/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts b/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts index 76f07f177408..8e22d0088cc8 100644 --- a/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts b/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts index fbeef8c6f832..c0ce0d776ce6 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts b/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts index f2d993bf5833..433e346aca9e 100644 --- a/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts b/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts index 087d4fa31b07..a7a73ae12d2b 100644 --- a/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts +++ b/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts index 1c701521157b..7d01be9ad705 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts b/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts index 15817cee313a..37e3d8991673 100644 --- a/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts index 59f311a898c4..29fd16143133 100644 --- a/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts @@ -21,6 +21,7 @@ const isProductItem = (item: Product | ProductItem): item is ProductItem => !('items' in item); @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts b/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts index 3613a809667a..50add7aae63d 100644 --- a/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts b/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts index 2dd5a6e92656..ab62c67decda 100644 --- a/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -42,6 +43,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts b/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts index ff6c4209e065..16dbabfe33e2 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts index 886f34840201..a6d7bafcdf8f 100644 --- a/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts index d0cd6d2228f1..3d5eae854e3c 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts index 9aa203f87924..33ec80d89f58 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts +++ b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'employee-card', templateUrl: `.${modulePrefix}/employee-card/employee-card.component.html`, }) diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts index ce211479a5f5..eb53fd13ff75 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts index 0ec33bbc4ec3..e9b74b4fa424 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts index f12da531ca4c..ad4f091b3c73 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts index 401673784266..5f08c699ab2e 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts index 5514020ee19f..d7a22cf9efbb 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts index 66a2394d53a1..cc9f432c881b 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts index 2cbb44180513..ea4341cd229e 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts index 980b1cb6860b..40af91f3044e 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts index c43fa9f05cc7..c78164bcd1a2 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxSelectBoxModule } from 'devextreme-angular'; @@ -16,8 +16,9 @@ if (window && window.config?.packageConfigPaths) { } @Component({ - styleUrls: [`.${modulePrefix}/app.component.css`], selector: 'demo-app', + standalone: false, + styleUrls: [`.${modulePrefix}/app.component.css`], templateUrl: `.${modulePrefix}/app.component.html`, }) export class AppComponent { @@ -57,6 +58,7 @@ export class AppComponent { DxSelectBoxModule, ], declarations: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts index ea381f32668c..fe860e68d8b5 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts @@ -1,5 +1,5 @@ import { - NgModule, Component, enableProdMode, + NgModule, Component, enableProdMode, provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -17,8 +17,9 @@ if (window && window.config?.packageConfigPaths) { } @Component({ - styleUrls: [`.${modulePrefix}/app.component.css`], selector: 'demo-app', + standalone: false, + styleUrls: [`.${modulePrefix}/app.component.css`], templateUrl: `.${modulePrefix}/app.component.html`, }) export class AppComponent { @@ -58,6 +59,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts index cb720f0902a3..ceb5c1b6788f 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts index 1b06bc44f3f9..d29033da43d1 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, styleUrls: [`.${modulePrefix}/app.component.css`], selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts index c8b4dd8ec9c7..7feafc58cdf4 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts index 34e657df39b7..20f67e642c82 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts index c01325db059e..ddd4ff5db590 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts index ac0cb783149e..13b74b7c679e 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts index 00428ba47831..e6880dea989e 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts index 9cb8a7c485ae..ff22c93a36c0 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts index 963a80733dba..3394a3c0e893 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts index fe194b974ab1..dea9e8c090c6 100644 --- a/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts index 1480915d07bc..bdb04fbdb2b4 100644 --- a/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts b/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts index cf468f94fb9d..a452a3f21e9f 100644 --- a/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, enableProdMode } from '@angular/core'; +import { Component, NgModule, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxPopupModule, DxScrollViewModule } from 'devextreme-angular'; @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], }) @@ -54,6 +55,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts index 00f99e275273..1d71c22f560c 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts @@ -5,7 +5,7 @@ import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxButtonModule, DxProgressBarModule } from 'devextreme-angular'; -@Pipe({ name: 'time' }) +@Pipe({ name: 'time', standalone: true }) export class TimePipe implements PipeTransform { transform(value: number): string { return `00:00:${(`0${value}`).slice(-2)}`; @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -73,8 +74,9 @@ export class AppComponent { BrowserModule, DxButtonModule, DxProgressBarModule, + TimePipe, ], - declarations: [AppComponent, TimePipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts b/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts index 7e770469c3ac..c6156a31bfe2 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts index 2f655d36003d..ad4f3c50e711 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts index bee5178ae124..eb514af2e7f8 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts index 4e18907973c6..edd234c694fb 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts index d688d2ffd76c..ed7a41d4d5be 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts index 9ec946411cd1..1d0adec50668 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts index 94146920e7c2..dff4a4996dbd 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts index 8d77fcf3ed3a..71bc276096ec 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts index b31370e1b17f..47e742d33db8 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts index d2d66af08ec4..50b2432306fc 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts index 581dceec4ca2..bbdb47460192 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts index 0fd5702a1488..de27c4adb182 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts index 3d4f28ebcafe..714e8a8e5da7 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts index d52bd8e4b48b..808af1f757ea 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts b/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts index 12d39832774d..4756abe54c52 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts index 67e4810d7ece..6a46fc043a5f 100644 --- a/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts index d5994d33b1dd..12707b65c313 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts index 55c1a7e31cc5..9ef4bf9243b6 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts index 8f5ddd241c68..2201c12fb271 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts index 88a7471de05e..e03bf1698562 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts index 0aeee41ada5e..345e48c0aeba 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts index ccf7a8e2b2c8..d938897cc3c2 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts index 3a54750dff7e..1d5c8d49cdf2 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts @@ -10,7 +10,7 @@ import { DxSchedulerTypes } from 'devextreme-angular/ui/scheduler'; import { DxFormComponent } from 'devextreme-angular/ui/form'; import { DataService } from './app.service'; -@Pipe({ name: 'apply' }) +@Pipe({ name: 'apply', standalone: true }) export class ApplyPipe implements PipeTransform { transform(func: ((...args: TArgs[]) => TReturn), ...args: TArgs[]): TReturn { return func(...args); } } @@ -26,6 +26,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -186,8 +187,9 @@ export class AppComponent { imports: [ BrowserModule, DxSchedulerModule, + ApplyPipe, ], - declarations: [AppComponent, ApplyPipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts index a333bdecbec9..7eba24e6ce76 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts @@ -27,6 +27,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts index a378e3a65d29..1e442ab6ff22 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts @@ -14,7 +14,7 @@ import { DxSchedulerTypes } from 'devextreme-angular/ui/scheduler'; import { DxNumberBoxTypes } from 'devextreme-angular/ui/number-box'; import { Appointment, Service, MovieData } from './app.service'; -@Pipe({ name: 'apply' }) +@Pipe({ name: 'apply', standalone: true }) export class ApplyPipe implements PipeTransform { transform(func: ((...args: TArgs[]) => TReturn), ...args: TArgs[]): TReturn { return func(...args); } } @@ -30,6 +30,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -83,8 +84,9 @@ export class AppComponent { DxSchedulerModule, DxSwitchModule, DxNumberBoxModule, + ApplyPipe, ], - declarations: [AppComponent, ApplyPipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts index 9a60d551bb61..dfe6f52846cc 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.html b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.html index 1c1280958367..03108b8acd7c 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.html @@ -5,6 +5,7 @@ [group]="draggingGroupName" (onDragStart)="onListDragStart($event)" > + @for (task of tasks; track task.id) { {{ task.text }} + } diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts index 7fe4b5ad3f8c..1ffb1ccf51e5 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxSchedulerModule, DxDraggableModule, DxScrollViewModule } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -78,6 +79,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts index 247d182c1698..4e44b8674c54 100644 --- a/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts index 2d0465535caa..e403619ab830 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode, } from '@angular/core'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { lastValueFrom } from 'rxjs'; @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -53,8 +54,8 @@ export class AppComponent { imports: [ BrowserModule, DxSchedulerModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts index 95f4cdc40ab4..4ef37e4ed03a 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts index 1fb536544788..94906ee28c9c 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts index d28bc8d6a579..707ce4f7501d 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts index 0061f0b9878b..4d2a1c6daa67 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts @@ -7,7 +7,7 @@ import { DxSchedulerModule } from 'devextreme-angular'; import { DataSource } from 'devextreme-angular/common/data'; import { Service, Employee, Data } from './app.service'; -@Pipe({ name: 'apply' }) +@Pipe({ name: 'apply', standalone: true }) export class ApplyPipe implements PipeTransform { transform(func: ((...args: TArgs[]) => TReturn), ...args: TArgs[]): TReturn { return func(...args); } } @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -70,8 +71,9 @@ export class AppComponent { imports: [ BrowserModule, DxSchedulerModule, + ApplyPipe, ], - declarations: [AppComponent, ApplyPipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts index fef2bcebb568..d5f0b47788b2 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts index 6a267a02f610..8f687ac64b70 100644 --- a/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts index 6f32a1eac323..ff92d83ffe02 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts @@ -58,6 +58,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts index 633a9b3bf3b6..fd0cf523d82e 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.html b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.html index a6b90637229f..5eda8c511d43 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.html +++ b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.html @@ -41,14 +41,17 @@

DXCinema Show Times

>Ticket Price: {{ "$" + model.targetedAppointmentData.price }}
- + diff --git a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts index 00f148e164f1..db3e570a6572 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts @@ -1,5 +1,5 @@ import { - NgModule, Component, ViewChild, enableProdMode, Pipe, PipeTransform, + NgModule, Component, ViewChild, enableProdMode, Pipe, PipeTransform, provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -9,7 +9,7 @@ import { Service, MovieData, TheatreData, Data, } from './app.service'; -@Pipe({ name: 'apply' }) +@Pipe({ name: 'apply', standalone: false }) export class ApplyPipe implements PipeTransform { transform(func: ((...args: TArgs[]) => TReturn), ...args: TArgs[]): TReturn { return func(...args); } } @@ -26,6 +26,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -121,6 +122,7 @@ export class AppComponent { ], declarations: [AppComponent, ApplyPipe], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts index 43a657533cbb..6ca4b517615e 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts index 9366a627854a..f744994eafb2 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts index 2c54b8dac05c..fb01a4b152ea 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts index 5bf150e1def7..e355d47344c7 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts index 02991eb7547c..15dfd4481861 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts index a9b8383247f9..9019b09f603f 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts index 8891e691d158..31072c11b899 100644 --- a/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts index 2d1984636f7a..4a54d8165031 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts index fc4d67208972..8b94895e882d 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts index d06a88405744..e7c287738cf5 100644 --- a/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.html index 1b639476dc59..7ea6033a0156 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.html @@ -38,17 +38,14 @@
- Current product: - + Current product: @if (selectBox.selectedItem) { + {{ selectBox.selectedItem.Name }} (ID: {{ selectBox.selectedItem.ID }}) - - Not selected - + } @else { + Not selected + }
diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts index aad458cb4df4..c75f57b3d6e8 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxNumberBoxModule, DxCheckBoxModule, DxSelectBoxModule } from 'devextreme-angular'; @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -93,6 +94,7 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [provideZoneChangeDetection({ eventCoalescing: true })], }) export class AppModule { } diff --git a/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts index aa6eda17cd2d..7b14cad534d1 100644 --- a/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts b/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts index fb382c6803c1..46190046b563 100644 --- a/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts b/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts index 28cf691728bd..af6fbcd29342 100644 --- a/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts +++ b/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts b/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts index a9a322ff45f9..1c091e19fc03 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts @@ -28,6 +28,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts index 0554b98243e6..fcb9a4750a8b 100644 --- a/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts index a69f7958509f..84e460c2bd1e 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts @@ -10,6 +10,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'additional-form', templateUrl: `.${modulePrefix}/additional-form/additional-form.component.html`, }) diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts index 38f3f4befacf..735b8a7231b4 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts @@ -32,6 +32,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts index 5d75e7316e4a..87f4c889c520 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'confirmation', templateUrl: `.${modulePrefix}/confirmation/confirmation.component.html`, styleUrls: [`.${modulePrefix}/confirmation/confirmation.component.css`], diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts index 5b9741c59639..db7a87f1263d 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts @@ -10,6 +10,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'dates-form', templateUrl: `.${modulePrefix}/dates-form/dates-form.component.html`, }) diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts index 507dab6e74cb..cee46b94a3d9 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts @@ -10,6 +10,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'guests-form', templateUrl: `.${modulePrefix}/guests-form/guests-form.component.html`, }) diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts index 9f39967c1484..b7743db37870 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts @@ -10,6 +10,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'room-meal-plan-form', templateUrl: `.${modulePrefix}/room-meal-plan-form/room-meal-plan-form.component.html`, }) diff --git a/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts index 3fd3ddda2833..65445ae37760 100644 --- a/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts b/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts index 6aa4f59c1687..bef33813fdfc 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts index f3e5b7603f29..de4f3a0bd05f 100644 --- a/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts index 68c3adba29f3..79fdae5261da 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts index 7efbfd27848e..20f1ccd25198 100644 --- a/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts b/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts index d703483b6e04..015d6ddd2543 100644 --- a/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts index cb9e37132e89..4b6039e3bc57 100644 --- a/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts b/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts index 0c05e8898f72..7ef45d352649 100644 --- a/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts @@ -1,4 +1,4 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import {NgModule, Component, enableProdMode, provideZoneChangeDetection} from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { DxTabsModule, DxSelectBoxModule, DxMultiViewModule } from 'devextreme-angular'; @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -37,6 +38,9 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [ + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), + ] }) export class AppModule { } diff --git a/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts index c8c338b6577b..b99ae0306512 100644 --- a/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts index 84251e2ca957..b25720a1453c 100644 --- a/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts index 20f6baeb19d1..7f9a24d7bd8e 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts index 4705b930581f..527fab4999cf 100644 --- a/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts index 579e8eedc216..744b6c68d878 100644 --- a/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts b/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts index a520d64cdb60..f21bc16fa92e 100644 --- a/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts b/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts index 29dc1eb1b3ed..b160dd68d379 100644 --- a/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts +++ b/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts b/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts index 1e089a4a7352..23ea4260eea4 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts index 0dfb8c263b6f..8332f486df0c 100644 --- a/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts b/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts index 662891f40149..22bfebb1750c 100644 --- a/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts @@ -24,6 +24,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts index 59a58e93be56..14d6dcbf22a8 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts @@ -35,6 +35,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts index 74ed0011bd23..167d5b90086a 100644 --- a/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts index 01663606c68a..d3a835ea48fb 100644 --- a/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts @@ -14,6 +14,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts index 76fc6fdb9213..a9749e02564f 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service, AiService], diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/email/email.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/email/email.component.ts index dce951c218dd..cc8054eb87dc 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/email/email.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/email/email.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'email', + standalone: false, templateUrl: `.${modulePrefix}/email/email.component.html`, }) export class Email { diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts index 859740ba2e00..efc6a7058116 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'employee', + standalone: false, templateUrl: `.${modulePrefix}/employee/employee.component.html`, styleUrls: [`.${modulePrefix}/employee/employee.component.css`], }) diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts index 994244458edc..e716d79994ad 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'status', + standalone: false, templateUrl: `.${modulePrefix}/status/status.component.html`, styleUrls: [`.${modulePrefix}/status/status.component.css`], }) diff --git a/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts index e444aa0fff29..e2775b6e5948 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts index 66197d52ab0c..46d2aa66f8dd 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts index 66197d52ab0c..46d2aa66f8dd 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts index 4e286c38fdb5..45feac5cc7ef 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts index 8712f6621f6e..57c21f2efa4a 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts index 51a464c2c43d..f8992018c57f 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts index 051b284ddaeb..0c115b21d372 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts index 9426f79c62cf..2b6acd85d079 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts index 3542d0733ba3..cc449bbd21ba 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts index 7d4a3b02e42c..986647dc1361 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts index cec7f34b49ae..600017565e82 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts index cc39fcc3d895..2b801de854d1 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts index 556ddea16dd5..61fcf2278c15 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts index 5e4c50b2544b..6e48d86ccdab 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts @@ -1,7 +1,7 @@ import { NgModule, Component, enableProdMode } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule, HttpParams } from '@angular/common/http'; +import { HttpClient, HttpParams, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxTreeListModule } from 'devextreme-angular'; import { DataSource } from 'devextreme-angular/common/data'; @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -47,8 +48,8 @@ export class AppComponent { imports: [ BrowserModule, DxTreeListModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) diff --git a/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts index 4ebd1a47a6f7..041d770d8fb8 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts index 32b7f8fe7564..ec432b0bc694 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts index a02a253da69a..334d6a32b626 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts index d657728cfbb5..c937be5ce2f3 100644 --- a/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts index 982d30a77ec4..0efbff6a2fb3 100644 --- a/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [Service], diff --git a/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts index b933b1cf857d..a008f7856460 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts index 7d4a3b02e42c..986647dc1361 100644 --- a/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts index c9c017e6efcf..fad2b434fed4 100644 --- a/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts index d3dcee2f9361..c6a580f4be9e 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts index a02a253da69a..334d6a32b626 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts index e444aa0fff29..e2775b6e5948 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts index e444aa0fff29..e2775b6e5948 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts index 92902b6c7c49..2f515c060ea0 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts index c7207b3b585b..4f2adcf0050c 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts index 06b64d6f12dd..f3be080081b4 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts index 4214c308b4bb..5d12bf3bbd50 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts @@ -21,6 +21,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts index da7eb3fa4d94..6f966ef4a79b 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts index 0e28e29d4739..853f0510d884 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts index be86d77f5d5c..1aef088e0955 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts index be86d77f5d5c..1aef088e0955 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts index fc671b95cceb..234e35b8eb55 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts @@ -1,5 +1,5 @@ import { - NgModule, Component, Pipe, PipeTransform, enableProdMode, ViewChild, + NgModule, Component, Pipe, PipeTransform, enableProdMode, ViewChild, provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -27,6 +27,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], providers: [Service], @@ -103,6 +104,9 @@ export class AppComponent { ], declarations: [AppComponent, TitlePipe], bootstrap: [AppComponent], + providers: [ + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), + ] }) export class AppModule { } diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts index f583e47b6fb3..646b472e765c 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts @@ -1,7 +1,7 @@ -import { NgModule, Component, enableProdMode } from '@angular/core'; +import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; -import { HttpClient, HttpClientModule } from '@angular/common/http'; +import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http'; import { lastValueFrom } from 'rxjs'; import { DxTreeViewComponent, DxTreeViewModule } from 'devextreme-angular'; @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, providers: [], @@ -28,7 +29,7 @@ export class AppComponent { const parentId = parent ? parent.itemData.id : ''; return lastValueFrom( - http.get(`https://js.devexpress.com/Demos/NetCore/api/TreeViewData?parentId=${parentId}`), + http.get(`https://js.devexpress.com/Demos/NetCore/api/TreeViewData?parentId=${parentId}`), ); }; } @@ -38,7 +39,10 @@ export class AppComponent { imports: [ BrowserModule, DxTreeViewModule, - HttpClientModule, + ], + providers: [ + provideHttpClient(withFetch()), + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), ], declarations: [AppComponent], bootstrap: [AppComponent], diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts index d0b32fd01b4c..513c16913597 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], diff --git a/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts index 172f978f968e..db9be3bce55d 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', templateUrl: `.${modulePrefix}/app.component.html`, }) diff --git a/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts index eff94a50624d..2e110281dbd9 100644 --- a/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts @@ -1,5 +1,5 @@ import { - Component, NgModule, enableProdMode, ViewChild, + Component, NgModule, enableProdMode, ViewChild, provideZoneChangeDetection, } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; @@ -41,6 +41,7 @@ if (window && window.config?.packageConfigPaths) { @Component({ selector: 'demo-app', + standalone: false, providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, styleUrls: [`.${modulePrefix}/app.component.css`], @@ -150,6 +151,9 @@ export class AppComponent { ], declarations: [AppComponent], bootstrap: [AppComponent], + providers: [ + provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), + ] }) export class AppModule { } diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts index c4fff0e35335..fcc0a2a8d73a 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts index 99ff7b9eb86a..74b5f73189f9 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts index 3c59de984d3c..872bb6bd79e3 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts index 8ea505aa57e0..aeab4426395d 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts index 34b67957b31c..b65f39c78893 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts index 2f9b85f55bee..46f19d13291f 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts @@ -20,6 +20,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts index 79df3ace8372..dfa37098e75d 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts index 58ee53c35746..aa8f3a952f2f 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts index dbfae733226a..b552205b19ea 100644 --- a/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts index f61b92987da2..8331986a4fe9 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts index 26f6e83e9079..2763a0dc8449 100644 --- a/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts index 1793a6c777ca..d123e53b8b10 100644 --- a/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts index 8b7a211a4853..1b932e81727d 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts index ad421a110942..9a2bc5e4447f 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts index af298c54c680..d3b74097423f 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', providers: [Service], templateUrl: `.${modulePrefix}/app.component.html`, diff --git a/apps/demos/configs/Angular/config.js b/apps/demos/configs/Angular/config.js index 2500f4dfa1fc..dee828477cd4 100644 --- a/apps/demos/configs/Angular/config.js +++ b/apps/demos/configs/Angular/config.js @@ -166,6 +166,7 @@ window.config = { '@angular/platform-browser-dynamic': 'bundles:@angular/platform-browser-dynamic.umd.js', '@angular/core': 'bundles:@angular/core.umd.js', '@angular/core/primitives/signals': 'bundles:@angular/core.primitives.signals.umd.js', + '@angular/core/primitives/di': 'bundles:@angular/core.primitives.di.umd.js', '@angular/common': 'bundles:@angular/common.umd.js', '@angular/common/http': 'bundles:@angular/common-http.umd.js', '@angular/platform-browser': 'bundles:@angular/platform-browser.umd.js', @@ -281,6 +282,8 @@ window.config = { // Prettier 'prettier/standalone': 'npm:prettier/standalone.js', 'prettier/parser-html': 'npm:prettier/parser-html.js', + + 'zone.js': 'npm:zone.js/bundles/zone.umd.js', }, packages: { 'app': { diff --git a/apps/demos/package.json b/apps/demos/package.json index 5757e270dae1..f3aa21ee8452 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -15,15 +15,16 @@ "devextreme-vue": "workspace:*" }, "dependencies": { - "@angular-devkit/build-angular": "17.3.11", - "@angular/cli": "17.3.11", - "@angular/common": "17.3.12", - "@angular/compiler": "17.3.12", - "@angular/compiler-cli": "17.3.12", - "@angular/core": "17.3.12", - "@angular/forms": "17.3.12", - "@angular/platform-browser": "17.3.12", - "@angular/platform-browser-dynamic": "17.3.12", + "@angular/animations": "21.0.0", + "@angular-devkit/build-angular": "21.0.0", + "@angular/cli": "21.0.0", + "@angular/common": "21.0.0", + "@angular/compiler": "21.0.0", + "@angular/compiler-cli": "21.0.0", + "@angular/core": "21.0.0", + "@angular/forms": "21.0.0", + "@angular/platform-browser": "21.0.0", + "@angular/platform-browser-dynamic": "21.0.0", "@aspnet/signalr": "1.0.27", "@preact/signals-core": "^1.8.0", "@rollup/plugin-commonjs": "19.0.2", @@ -79,16 +80,16 @@ "systemjs": "0.19.41", "systemjs-plugin-babel": "0.0.25", "systemjs-plugin-json": "0.3.0", - "typescript": "~5.4.5", + "typescript": "~5.9.3", "unified": "10.1.2", "vue": "^3.3.4", "vuex": "4.0.0-beta.4", "whatwg-fetch": "2.0.4", "yargs": "17.7.2", - "zone.js": "0.14.10" + "zone.js": "0.15.1" }, "devDependencies": { - "@angular/platform-server": "17.3.12", + "@angular/platform-server": "21.0.0", "@babel/core": "7.23.9", "@babel/eslint-parser": "catalog:", "@babel/preset-env": "7.23.9", diff --git a/apps/demos/rollup.ng.umd.config.mjs b/apps/demos/rollup.ng.umd.config.mjs index 782138aef327..a8696b380d08 100644 --- a/apps/demos/rollup.ng.umd.config.mjs +++ b/apps/demos/rollup.ng.umd.config.mjs @@ -1,4 +1,4 @@ -const NG_BASE_DIR = '../../packages/devextreme-angular/node_modules/'; +const NG_BASE_DIR = './node_modules/'; const OUTPUT_DIR = './bundles/'; export default [ @@ -74,7 +74,7 @@ export default [ external: ["rxjs", "rxjs/operators", "zone.js"], }, { - input: NG_BASE_DIR + "@angular/core/fesm2022/primitives/signals.mjs", + input: NG_BASE_DIR + "@angular/core/fesm2022/primitives-signals.mjs", output: { file: OUTPUT_DIR + `@angular/core.primitives.signals.umd.js`, format: "umd", @@ -87,6 +87,20 @@ export default [ }, external: ["rxjs", "rxjs/operators", "zone.js"], }, + { + input: NG_BASE_DIR + "@angular/core/fesm2022/primitives-di.mjs", + output: { + file: OUTPUT_DIR + `@angular/core.primitives.di.umd.js`, + format: "umd", + name: "ng.core.primitives.di", + globals: { + "@angular/core": "ng.core", + rxjs: "rxjs", + "rxjs/operators": "rxjs.operators", + }, + }, + external: ["rxjs", "rxjs/operators", "zone.js"], + }, // forms { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5b0b302832a5..803c773715ae 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -105,10 +105,10 @@ importers: version: 18.3.4(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15))) '@nx/jest': specifier: 19.4.2 - version: 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2))(typescript@5.9.2) + version: 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3))(typescript@5.9.3) '@nx/js': specifier: 19.4.2 - version: 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.2) + version: 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.3) '@types/jest': specifier: 29.5.12 version: 29.5.12 @@ -135,7 +135,7 @@ importers: version: 1.0.0-rc.10 codelyzer: specifier: 6.0.2 - version: 6.0.2(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(tslint@6.1.3(typescript@5.9.2)) + version: 6.0.2(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1))(tslint@6.1.3(typescript@5.9.3)) devextreme-internal-tools: specifier: catalog:tools version: 20.0.1 @@ -150,7 +150,7 @@ importers: version: 8.0.3 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + version: 29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jspdf-autotable: specifier: 3.8.3 version: 3.8.3(jspdf@3.0.2) @@ -180,10 +180,10 @@ importers: version: 3.0.9 ts-node: specifier: 10.9.2 - version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) vue: specifier: 3.4.27 - version: 3.4.27(typescript@5.9.2) + version: 3.4.27(typescript@5.9.3) yargs: specifier: 17.7.2 version: 17.7.2 @@ -267,32 +267,35 @@ importers: apps/demos: dependencies: '@angular-devkit/build-angular': - specifier: 17.3.11 - version: 17.3.11(knttvfyutxltnyggdtp5kkscoe) + specifier: 21.0.0 + version: 21.0.0(kbak2tlabi5twzjh2dj7fmulsa) + '@angular/animations': + specifier: 21.0.0 + version: 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) '@angular/cli': - specifier: 17.3.11 - version: 17.3.11(chokidar@3.6.0) + specifier: 21.0.0 + version: 21.0.0(@types/node@18.19.64)(chokidar@4.0.1) '@angular/common': - specifier: 17.3.12 - version: 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1) + specifier: 21.0.0 + version: 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) '@angular/compiler': - specifier: 17.3.12 - version: 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)) + specifier: 21.0.0 + version: 21.0.0 '@angular/compiler-cli': - specifier: 17.3.12 - version: 17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5) + specifier: 21.0.0 + version: 21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3) '@angular/core': - specifier: 17.3.12 - version: 17.3.12(rxjs@7.8.1)(zone.js@0.14.10) + specifier: 21.0.0 + version: 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) '@angular/forms': - specifier: 17.3.12 - version: 17.3.12(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1) + specifier: 21.0.0 + version: 21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@standard-schema/spec@1.0.0)(rxjs@7.8.1) '@angular/platform-browser': - specifier: 17.3.12 - version: 17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)) + specifier: 21.0.0 + version: 21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) '@angular/platform-browser-dynamic': - specifier: 17.3.12 - version: 17.3.12(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))) + specifier: 21.0.0 + version: 21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))) '@aspnet/signalr': specifier: 1.0.27 version: 1.0.27 @@ -373,7 +376,7 @@ importers: version: 0.25.0 esbuild-plugin-vue3: specifier: 0.3.2 - version: 0.3.2(cheerio@1.0.0-rc.10)(sass@1.85.0) + version: 0.3.2(cheerio@1.0.0-rc.10)(sass@1.93.2) file-saver-es: specifier: 2.0.5 version: 2.0.5 @@ -412,10 +415,10 @@ importers: version: 4.2.0 openai: specifier: 4.73.1 - version: 4.73.1(encoding@0.1.13)(zod@3.24.4) + version: 4.73.1(encoding@0.1.13)(zod@3.25.76) plugin-typescript: specifier: 8.0.0 - version: 8.0.0(typescript@5.4.5) + version: 8.0.0(typescript@5.9.3) preact: specifier: 10.12.1 version: 10.12.1 @@ -474,17 +477,17 @@ importers: specifier: 0.3.0 version: 0.3.0 typescript: - specifier: ~5.4.5 - version: 5.4.5 + specifier: ~5.9.3 + version: 5.9.3 unified: specifier: 10.1.2 version: 10.1.2 vue: specifier: ^3.3.4 - version: 3.4.27(typescript@5.4.5) + version: 3.4.27(typescript@5.9.3) vuex: specifier: 4.0.0-beta.4 - version: 4.0.0-beta.4(vue@3.4.27(typescript@5.4.5)) + version: 4.0.0-beta.4(vue@3.4.27(typescript@5.9.3)) whatwg-fetch: specifier: 2.0.4 version: 2.0.4 @@ -492,18 +495,18 @@ importers: specifier: 17.7.2 version: 17.7.2 zone.js: - specifier: 0.14.10 - version: 0.14.10 + specifier: 0.15.1 + version: 0.15.1 devDependencies: '@angular/platform-server': - specifier: 17.3.12 - version: 17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))) + specifier: 21.0.0 + version: 21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1) '@babel/core': specifier: 7.23.9 version: 7.23.9 '@babel/eslint-parser': specifier: 'catalog:' - version: 7.26.5(@babel/core@7.23.9)(eslint@9.18.0(jiti@1.21.6)) + version: 7.26.5(@babel/core@7.23.9)(eslint@9.18.0(jiti@2.6.1)) '@babel/preset-env': specifier: 7.23.9 version: 7.23.9(@babel/core@7.23.9) @@ -515,7 +518,7 @@ importers: version: 7.28.5(@babel/core@7.23.9) '@eslint/compat': specifier: ^1.3.2 - version: 1.3.2(eslint@9.18.0(jiti@1.21.6)) + version: 1.3.2(eslint@9.18.0(jiti@2.6.1)) '@eslint/eslintrc': specifier: 'catalog:' version: 3.2.0 @@ -530,7 +533,7 @@ importers: version: 5.0.5(rollup@4.22.4) '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@testcafe-community/axe': specifier: 3.5.0 version: 3.5.0(axe-core@4.10.3)(testcafe@3.7.2) @@ -554,16 +557,16 @@ importers: version: 17.0.32 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@vue/eslint-config-typescript': specifier: 12.0.0 - version: 12.0.0(eslint-plugin-vue@9.31.0(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 12.0.0(eslint-plugin-vue@9.31.0(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@vue/tsconfig': specifier: ^0.7.0 - version: 0.7.0(typescript@5.4.5)(vue@3.4.27(typescript@5.4.5)) + version: 0.7.0(typescript@5.9.3)(vue@3.4.27(typescript@5.9.3)) axe-core: specifier: 4.10.3 version: 4.10.3 @@ -584,28 +587,28 @@ importers: version: 2.0.17(testcafe@3.7.2) eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-airbnb-typescript: specifier: 'catalog:' - version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-deprecation: specifier: 3.0.0 - version: 3.0.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 3.0.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-react: specifier: 7.37.5 - version: 7.37.5(eslint@9.18.0(jiti@1.21.6)) + version: 7.37.5(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-react-hooks: specifier: ^5.1.0 - version: 5.2.0(eslint@9.18.0(jiti@1.21.6)) + version: 5.2.0(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-react-perf: specifier: 3.3.2 - version: 3.3.2(eslint@9.18.0(jiti@1.21.6)) + version: 3.3.2(eslint@9.18.0(jiti@2.6.1)) express: specifier: 4.21.1 version: 4.21.1 @@ -629,7 +632,7 @@ importers: version: 1.1.4 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) jest-environment-node: specifier: 29.7.0 version: 29.7.0 @@ -662,13 +665,13 @@ importers: version: 1.16.2 stylelint: specifier: 16.5.0 - version: 16.5.0(typescript@5.4.5) + version: 16.5.0(typescript@5.9.3) stylelint-config-recommended-vue: specifier: 1.5.0 - version: 1.5.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.4.5)) + version: 1.5.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.9.3)) stylelint-config-standard: specifier: 35.0.0 - version: 35.0.0(stylelint@16.5.0(typescript@5.4.5)) + version: 35.0.0(stylelint@16.5.0(typescript@5.9.3)) systemjs-builder: specifier: 0.16.15 version: 0.16.15 @@ -680,10 +683,10 @@ importers: version: 4.0.0 ts-node: specifier: 10.9.2 - version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5) + version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3) vue-tsc: specifier: ^3.0.6 - version: 3.0.8(typescript@5.4.5) + version: 3.0.8(typescript@5.9.3) apps/react: dependencies: @@ -717,7 +720,7 @@ importers: version: 3.3.4(webpack@5.94.0) ts-loader: specifier: 9.5.1 - version: 9.5.1(typescript@5.9.2)(webpack@5.94.0) + version: 9.5.1(typescript@5.9.3)(webpack@5.94.0) tsconfig-paths-webpack-plugin: specifier: 4.1.0 version: 4.1.0 @@ -747,7 +750,7 @@ importers: version: 8.2.3 openai: specifier: 4.73.1 - version: 4.73.1(encoding@0.1.13)(zod@3.24.4) + version: 4.73.1(encoding@0.1.13)(zod@3.25.76) devDependencies: '@storybook/addon-essentials': specifier: 7.6.19 @@ -766,7 +769,7 @@ importers: version: 7.6.19(encoding@0.1.13)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(typescript@4.9.5) '@storybook/react-webpack5': specifier: 7.6.19 - version: 7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1) + version: 7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1) '@storybook/test': specifier: 7.6.19 version: 7.6.19 @@ -872,10 +875,10 @@ importers: version: 13.3.0(rollup@4.22.4) '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + version: 2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) browserify: specifier: 17.0.0 version: 17.0.0 @@ -893,22 +896,22 @@ importers: version: 1.0.3 eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-devextreme: specifier: 1.1.6 - version: 1.1.6(sth5btxrq6id5526az5lp6q44y) + version: 1.1.6(pbndtrfnifyeirev7qxkhf5n7q) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-spellcheck: specifier: 0.0.20 - version: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + version: 0.0.20(eslint@9.18.0(jiti@2.6.1)) globalize: specifier: 1.7.0 version: 1.7.0 @@ -920,7 +923,7 @@ importers: version: 1.2.8 parcel: specifier: 2.12.0 - version: 2.12.0(@swc/helpers@0.5.15)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.9.2) + version: 2.12.0(@swc/helpers@0.5.15)(postcss@8.5.6)(relateurl@0.2.7)(terser@5.44.0)(typescript@5.9.3) rimraf: specifier: 3.0.2 version: 3.0.2 @@ -929,7 +932,7 @@ importers: version: 4.22.4 vite: specifier: 5.4.19 - version: 5.4.19(@types/node@20.14.5)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0) + version: 5.4.19(@types/node@20.14.5)(less@4.4.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.93.2)(terser@5.44.0) webpack: specifier: 5.94.0 version: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@4.10.0) @@ -941,31 +944,31 @@ importers: devDependencies: '@angular/common': specifier: 11.2.14 - version: 11.2.14(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + version: 11.2.14(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@eslint/eslintrc': specifier: 'catalog:' version: 3.2.0 '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@types/jquery': specifier: 'catalog:' version: 3.5.29 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) devextreme: specifier: workspace:* version: link:../../packages/devextreme/artifacts/npm/devextreme eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-devextreme: specifier: 1.1.6 - version: 1.1.6(fqot4qpv3xuslv5gen77xjlqlu) + version: 1.1.6(gokru6wwbhv5cmokx6bn4srgnm) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -974,7 +977,7 @@ importers: version: 2.4.0 eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 @@ -998,16 +1001,16 @@ importers: devDependencies: '@babel/eslint-parser': specifier: catalog:eslint8 - version: 7.23.10(@babel/core@7.26.10)(eslint@9.18.0(jiti@1.21.6)) + version: 7.23.10(@babel/core@7.28.4)(eslint@9.18.0(jiti@2.6.1)) '@babel/plugin-transform-runtime': specifier: 7.19.6 - version: 7.19.6(@babel/core@7.26.10) + version: 7.19.6(@babel/core@7.28.4) '@eslint/eslintrc': specifier: 'catalog:' version: 3.2.0 '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + version: 2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@testcafe-community/axe': specifier: 3.5.0 version: 3.5.0(axe-core@4.10.3)(testcafe@3.7.2) @@ -1016,10 +1019,10 @@ importers: version: 3.5.29 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) axe-core: specifier: 4.10.3 version: 4.10.3 @@ -1034,10 +1037,10 @@ importers: version: link:../../packages/testcafe-models eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-devextreme: specifier: 1.1.6 - version: 1.1.6(embchamtz6nagm44iyekfqjgjq) + version: 1.1.6(szajvf4ai4ch4ffjhhiy4jv2ca) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1046,7 +1049,7 @@ importers: version: 2.4.0 eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 @@ -1070,7 +1073,7 @@ importers: version: 4.0.0 ts-node: specifier: 10.9.2 - version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2) + version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3) e2e/wrappers: dependencies: @@ -1173,10 +1176,10 @@ importers: devDependencies: '@analogjs/vite-plugin-angular': specifier: ^1.0.0 - version: 1.15.1(dvldxnmbhrokhmzfh5rgseo6am) + version: 1.15.1(j2c5645uxizqmhfhgfup3zsywe) '@angular-devkit/build-angular': specifier: ^19.2.5 - version: 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(chokidar@4.0.1)(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(jiti@1.21.6)(karma@6.4.4)(lightningcss@1.28.1)(sass-embedded@1.66.0)(typescript@5.8.3)(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(yaml@2.5.0) + version: 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(chokidar@4.0.1)(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(jiti@2.6.1)(karma@6.4.4)(lightningcss@1.28.1)(sass-embedded@1.66.0)(typescript@5.8.3)(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(yaml@2.5.0) '@angular/cli': specifier: ^19.2.5 version: 19.2.10(@types/node@20.14.5)(chokidar@4.0.1) @@ -1197,19 +1200,19 @@ importers: version: 19.1.3(@types/react@19.1.2) '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.4.1(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0)) + version: 4.4.1(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0)) '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.3(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(vue@3.5.13(typescript@5.8.3)) + version: 5.2.3(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(vue@3.5.13(typescript@5.8.3)) eslint: specifier: ^9.21.0 - version: 9.26.0(jiti@1.21.6) + version: 9.26.0(jiti@2.6.1) eslint-plugin-react-hooks: specifier: ^5.1.0 - version: 5.2.0(eslint@9.26.0(jiti@1.21.6)) + version: 5.2.0(eslint@9.26.0(jiti@2.6.1)) eslint-plugin-react-refresh: specifier: ^0.4.19 - version: 0.4.20(eslint@9.26.0(jiti@1.21.6)) + version: 0.4.20(eslint@9.26.0(jiti@2.6.1)) globals: specifier: ^15.15.0 version: 15.15.0 @@ -1239,7 +1242,7 @@ importers: version: 5.8.3 vite: specifier: ^6.2.0 - version: 6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) + version: 6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) packages/devextreme: dependencies: @@ -1279,7 +1282,7 @@ importers: version: 7.23.9 '@babel/eslint-parser': specifier: 'catalog:' - version: 7.26.5(@babel/core@7.23.9)(eslint@9.18.0(jiti@1.21.6)) + version: 7.26.5(@babel/core@7.23.9)(eslint@9.18.0(jiti@2.6.1)) '@babel/parser': specifier: 7.23.9 version: 7.23.9 @@ -1294,25 +1297,25 @@ importers: version: 7.23.9(@babel/core@7.23.9) '@devextreme-generator/angular': specifier: 3.0.12 - version: 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + version: 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) '@devextreme-generator/build-helpers': specifier: 3.0.12 - version: 3.0.12(itypu2gnv2krpykf453cw274qa) + version: 3.0.12(myeknmfogrmhijri7fuw4vbst4) '@devextreme-generator/core': specifier: 3.0.12 - version: 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + version: 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) '@devextreme-generator/declarations': specifier: 3.0.12 version: 3.0.12 '@devextreme-generator/inferno': specifier: 3.0.12 - version: 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + version: 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) '@devextreme-generator/react': specifier: 3.0.12 - version: 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + version: 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) '@devextreme-generator/vue': specifier: 3.0.12 - version: 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + version: 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) '@eslint-stylistic/metadata': specifier: 'catalog:' version: 2.13.0 @@ -1324,7 +1327,7 @@ importers: version: 29.7.0 '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@testcafe-community/axe': specifier: 3.5.0 version: 3.5.0(axe-core@4.10.3)(testcafe@3.7.2) @@ -1339,13 +1342,13 @@ importers: version: 16.14.34 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/experimental-utils': specifier: 5.62.0 - version: 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) ast-types: specifier: 0.14.2 version: 0.14.2 @@ -1405,16 +1408,16 @@ importers: version: 1.15.8(enzyme@3.11.0)(react-dom@16.14.0(react@16.14.0))(react@16.14.0) eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-airbnb-base: specifier: 15.0.0 - version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-airbnb-typescript: specifier: 'catalog:' - version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-devextreme: specifier: 1.1.6 - version: 1.1.6(yz4zcc7jpzkzj5rteb655x27wq) + version: 1.1.6(76jmjim3zu4ghelt3x7rodv7ia) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1423,43 +1426,43 @@ importers: version: 2.4.0 eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-jest: specifier: 27.6.0 - version: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) + version: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) eslint-plugin-jest-formatting: specifier: 3.1.0 - version: 3.1.0(eslint@9.18.0(jiti@1.21.6)) + version: 3.1.0(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-jsx-a11y: specifier: 6.8.0 - version: 6.8.0(eslint@9.18.0(jiti@1.21.6)) + version: 6.8.0(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-node: specifier: 11.1.0 - version: 11.1.0(eslint@9.18.0(jiti@1.21.6)) + version: 11.1.0(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-qunit: specifier: 'catalog:' - version: 8.1.2(eslint@9.18.0(jiti@1.21.6)) + version: 8.1.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-react: specifier: 7.33.2 - version: 7.33.2(eslint@9.18.0(jiti@1.21.6)) + version: 7.33.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-rulesdir: specifier: 0.2.2 version: 0.2.2 eslint-plugin-simple-import-sort: specifier: 10.0.0 - version: 10.0.0(eslint@9.18.0(jiti@1.21.6)) + version: 10.0.0(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-spellcheck: specifier: 0.0.20 - version: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + version: 0.0.20(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-testcafe: specifier: 0.2.1 version: 0.2.1 eslint-plugin-unicorn: specifier: ^60.0.0 - version: 60.0.0(eslint@9.18.0(jiti@1.21.6)) + version: 60.0.0(eslint@9.18.0(jiti@2.6.1)) fancy-log: specifier: 2.0.0 version: 2.0.0 @@ -1501,7 +1504,7 @@ importers: version: 0.2.0 gulp-eslint-new: specifier: 'catalog:' - version: 2.4.0(jiti@1.21.6) + version: 2.4.0(jiti@2.6.1) gulp-file: specifier: 0.4.0 version: 0.4.0 @@ -1684,7 +1687,7 @@ importers: version: 2.0.5 ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.23.9)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.9))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) + version: 29.1.2(@babel/core@7.23.9)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.9))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) tsc-alias: specifier: 1.8.10 version: 1.8.10 @@ -1767,7 +1770,7 @@ importers: version: 17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))) '@babel/eslint-parser': specifier: 'catalog:' - version: 7.26.5(@babel/core@7.26.10)(eslint@9.18.0(jiti@1.21.6)) + version: 7.26.5(@babel/core@7.28.4)(eslint@9.18.0(jiti@2.6.1)) '@eslint-stylistic/metadata': specifier: 'catalog:' version: 2.13.0 @@ -1776,7 +1779,7 @@ importers: version: 3.2.0 '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) '@types/jasmine': specifier: 2.8.23 version: 2.8.23 @@ -1785,10 +1788,10 @@ importers: version: 20.11.17 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) '@webcomponents/custom-elements': specifier: 1.6.0 version: 1.6.0 @@ -1812,16 +1815,16 @@ importers: version: link:../devextreme-metadata eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-devextreme: specifier: 1.1.5 - version: 1.1.5(m3ttf5qxvnatsf5pms6fqnrrf4) + version: 1.1.5(biahdh3b5zpcv3bc5g4t6ue2ae) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)) gulp: specifier: 4.0.2 version: 4.0.2 @@ -1903,7 +1906,7 @@ importers: version: 3.5.3 ts-node: specifier: catalog:tools - version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) packages/devextreme-monorepo-tools: devDependencies: @@ -1912,7 +1915,7 @@ importers: version: 29.5.12 ts-jest: specifier: 29.1.3 - version: 29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.9.2) + version: 29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.9.3) packages/devextreme-react: dependencies: @@ -1937,10 +1940,10 @@ importers: version: 18.0.11 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) devextreme-metadata: specifier: workspace:* version: link:../devextreme-metadata @@ -1949,19 +1952,19 @@ importers: version: link:../nx-infra-plugin eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-airbnb-base: specifier: 15.0.0 - version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-airbnb-typescript: specifier: 'catalog:' - version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-devextreme: specifier: 1.1.6 - version: 1.1.6(fqot4qpv3xuslv5gen77xjlqlu) + version: 1.1.6(gokru6wwbhv5cmokx6bn4srgnm) eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0 @@ -1973,7 +1976,7 @@ importers: version: 18.0.0(react@18.0.0) ts-jest: specifier: 29.1.3 - version: 29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) + version: 29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2016,19 +2019,19 @@ importers: version: 1.59.2 stylelint: specifier: 15.11.0 - version: 15.11.0(typescript@5.9.2) + version: 15.11.0(typescript@5.9.3) stylelint-config-standard-scss: specifier: 9.0.0 - version: 9.0.0(postcss@8.5.3)(stylelint@15.11.0(typescript@5.9.2)) + version: 9.0.0(postcss@8.5.6)(stylelint@15.11.0(typescript@5.9.3)) stylelint-scss: specifier: 6.10.0 - version: 6.10.0(stylelint@15.11.0(typescript@5.9.2)) + version: 6.10.0(stylelint@15.11.0(typescript@5.9.3)) through2: specifier: 2.0.5 version: 2.0.5 ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.26.10)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.9.2) + version: 29.1.2(@babel/core@7.28.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.9.3) packages/devextreme-themebuilder: dependencies: @@ -2065,25 +2068,25 @@ importers: version: 20.11.17 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-airbnb-base: specifier: 15.0.0 - version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-airbnb-typescript: specifier: 'catalog:' - version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-devextreme: specifier: 1.1.5 - version: 1.1.5(zuhb6j5bszthiwwa7gh3t5co7a) + version: 1.1.5(rhg6ysggthuurggw743xc4yz5a) eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 @@ -2107,7 +2110,7 @@ importers: version: 18.0.1 ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.26.10)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.2(@babel/core@7.28.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: 10.9.2 version: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5) @@ -2123,13 +2126,13 @@ importers: devDependencies: '@babel/eslint-parser': specifier: 'catalog:' - version: 7.26.5(@babel/core@7.26.10)(eslint@9.18.0(jiti@1.21.6)) + version: 7.26.5(@babel/core@7.28.4)(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + version: 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@vue/compiler-sfc': specifier: 3.3.4 version: 3.3.4 @@ -2144,34 +2147,34 @@ importers: version: link:../devextreme-metadata eslint: specifier: 'catalog:' - version: 9.18.0(jiti@1.21.6) + version: 9.18.0(jiti@2.6.1) eslint-config-airbnb-base: specifier: 15.0.0 - version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-airbnb-typescript: specifier: 'catalog:' - version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + version: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) eslint-config-devextreme: specifier: 1.1.5 - version: 1.1.5(fqot4qpv3xuslv5gen77xjlqlu) + version: 1.1.5(gokru6wwbhv5cmokx6bn4srgnm) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 eslint-plugin-import: specifier: 'catalog:' - version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) + version: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-spellcheck: specifier: 0.0.20 - version: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + version: 0.0.20(eslint@9.18.0(jiti@2.6.1)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0 ts-jest: specifier: 29.1.3 - version: 29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) + version: 29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2211,7 +2214,7 @@ importers: version: 3.5.3 ts-jest: specifier: 29.1.3 - version: 29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) + version: 29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2231,6 +2234,62 @@ packages: '@adobe/css-tools@4.4.1': resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==} + '@algolia/abtesting@1.6.1': + resolution: {integrity: sha512-wV/gNRkzb7sI9vs1OneG129hwe3Q5zPj7zigz3Ps7M5Lpo2hSorrOnXNodHEOV+yXE/ks4Pd+G3CDFIjFTWhMQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-abtesting@5.40.1': + resolution: {integrity: sha512-cxKNATPY5t+Mv8XAVTI57altkaPH+DZi4uMrnexPxPHODMljhGYY+GDZyHwv9a+8CbZHcY372OkxXrDMZA4Lnw==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-analytics@5.40.1': + resolution: {integrity: sha512-XP008aMffJCRGAY8/70t+hyEyvqqV7YKm502VPu0+Ji30oefrTn2al7LXkITz7CK6I4eYXWRhN6NaIUi65F1OA==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-common@5.40.1': + resolution: {integrity: sha512-gWfQuQUBtzUboJv/apVGZMoxSaB0M4Imwl1c9Ap+HpCW7V0KhjBddqF2QQt5tJZCOFsfNIgBbZDGsEPaeKUosw==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-insights@5.40.1': + resolution: {integrity: sha512-RTLjST/t+lsLMouQ4zeLJq2Ss+UNkLGyNVu+yWHanx6kQ3LT5jv8UvPwyht9s7R6jCPnlSI77WnL80J32ZuyJg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-personalization@5.40.1': + resolution: {integrity: sha512-2FEK6bUomBzEYkTKzD0iRs7Ljtjb45rKK/VSkyHqeJnG+77qx557IeSO0qVFE3SfzapNcoytTofnZum0BQ6r3Q==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-query-suggestions@5.40.1': + resolution: {integrity: sha512-Nju4NtxAvXjrV2hHZNLKVJLXjOlW6jAXHef/CwNzk1b2qIrCWDO589ELi5ZHH1uiWYoYyBXDQTtHmhaOVVoyXg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-search@5.40.1': + resolution: {integrity: sha512-Mw6pAUF121MfngQtcUb5quZVqMC68pSYYjCRZkSITC085S3zdk+h/g7i6FxnVdbSU6OztxikSDMh1r7Z+4iPlA==} + engines: {node: '>= 14.0.0'} + + '@algolia/ingestion@1.40.1': + resolution: {integrity: sha512-z+BPlhs45VURKJIxsR99NNBWpUEEqIgwt10v/fATlNxc4UlXvALdOsWzaFfe89/lbP5Bu4+mbO59nqBC87ZM/g==} + engines: {node: '>= 14.0.0'} + + '@algolia/monitoring@1.40.1': + resolution: {integrity: sha512-VJMUMbO0wD8Rd2VVV/nlFtLJsOAQvjnVNGkMkspFiFhpBA7s/xJOb+fJvvqwKFUjbKTUA7DjiSi1ljSMYBasXg==} + engines: {node: '>= 14.0.0'} + + '@algolia/recommend@5.40.1': + resolution: {integrity: sha512-ehvJLadKVwTp9Scg9NfzVSlBKH34KoWOQNTaN8i1Ac64AnO6iH2apJVSP6GOxssaghZ/s8mFQsDH3QIZoluFHA==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-browser-xhr@5.40.1': + resolution: {integrity: sha512-PbidVsPurUSQIr6X9/7s34mgOMdJnn0i6p+N6Ab+lsNhY5eiu+S33kZEpZwkITYBCIbhzDLOvb7xZD3gDi+USA==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-fetch@5.40.1': + resolution: {integrity: sha512-ThZ5j6uOZCF11fMw9IBkhigjOYdXGXQpj6h4k+T9UkZrF2RlKcPynFzDeRgaLdpYk8Yn3/MnFbwUmib7yxj5Lw==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-node-http@5.40.1': + resolution: {integrity: sha512-H1gYPojO6krWHnUXu/T44DrEun/Wl95PJzMXRcM/szstNQczSbwq6wIFJPI9nyE95tarZfUNU3rgorT+wZ6iCQ==} + engines: {node: '>= 14.0.0'} + '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} @@ -2258,6 +2317,10 @@ packages: resolution: {integrity: sha512-Oa0mJi/SgBFLpZTzyO1KfkrS8dKvFnOl8pxJNb51s5i+yUSBNQOC7H6ulq4sSPjswzPe2vcizoKIxBkdLjwJDA==} 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-devkit/architect@0.2100.0': + resolution: {integrity: sha512-BNt6Rw53WauCw31ku/r/ksVIY+Pi8XZptsSUIHiDUeqB2iZOWu4L3c5kuDGmoGkGByY588H48hfR2MgIpBhgAg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@angular-devkit/build-angular@17.3.11': resolution: {integrity: sha512-lHX5V2dSts328yvo/9E2u9QMGcvJhbEKKDDp9dBecwvIG9s+4lTOJgi9DPUE7W+AtmPcmbbhwC2JRQ/SLQhAoA==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -2343,6 +2406,56 @@ packages: tailwindcss: optional: true + '@angular-devkit/build-angular@21.0.0': + resolution: {integrity: sha512-yU0LXAqntASHsK6PxlWRsEzQ0hjprdnhE12eBaI4rTQrWCAE9TUNftY0E5+rX5UbrwCQPTGL5GyPoagFFTzTaQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + '@angular/compiler-cli': ^21.0.0 + '@angular/core': ^21.0.0 + '@angular/localize': ^21.0.0 + '@angular/platform-browser': ^21.0.0 + '@angular/platform-server': ^21.0.0 + '@angular/service-worker': ^21.0.0 + '@angular/ssr': ^21.0.0 + '@web/test-runner': ^0.20.0 + browser-sync: ^3.0.2 + jest: ^30.2.0 + jest-environment-jsdom: ^30.2.0 + karma: ^6.3.0 + ng-packagr: ^21.0.0 + protractor: ^7.0.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + typescript: '>=5.9 <6.0' + peerDependenciesMeta: + '@angular/core': + optional: true + '@angular/localize': + optional: true + '@angular/platform-browser': + optional: true + '@angular/platform-server': + optional: true + '@angular/service-worker': + optional: true + '@angular/ssr': + optional: true + '@web/test-runner': + optional: true + browser-sync: + optional: true + jest: + optional: true + jest-environment-jsdom: + optional: true + karma: + optional: true + ng-packagr: + optional: true + protractor: + optional: true + tailwindcss: + optional: true + '@angular-devkit/build-webpack@0.1703.11': resolution: {integrity: sha512-qbCiiHuoVkD7CtLyWoRi/Vzz6nrEztpF5XIyWUcQu67An1VlxbMTE4yoSQiURjCQMnB/JvS1GPVed7wOq3SJ/w==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -2357,6 +2470,13 @@ packages: webpack: ^5.30.0 webpack-dev-server: ^5.0.2 + '@angular-devkit/build-webpack@0.2100.0': + resolution: {integrity: sha512-MgPsTvOaEN1l2KNk031/iKhUNOh7I76CeiF39M+D9gjq2Vccu/k3Tmtf7rXRztmN4ObmW0doZdywHF8l4byCEg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + webpack: ^5.30.0 + webpack-dev-server: ^5.0.2 + '@angular-devkit/core@16.2.16': resolution: {integrity: sha512-5xHs9JFmp78sydrOAg0UGErxfMVv5c2f3RXoikS7eBOOXTWEi5pmnOkOvSJ3loQFGVs3Y7i+u02G3VrF5ZxOrA==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -2393,6 +2513,15 @@ packages: chokidar: optional: true + '@angular-devkit/core@21.0.0': + resolution: {integrity: sha512-d3n5GvrwqN1AUkWE3Wd8rrdY2u6/5bzorlZVT5W4CcH7ekAIoMu4SBTbSJ7bfRe/l2z/A1WZ6hFlnQzLclOjJA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + chokidar: ^4.0.0 + peerDependenciesMeta: + chokidar: + optional: true + '@angular-devkit/schematics@16.2.16': resolution: {integrity: sha512-pF6fdtJh6yLmgA7Gs45JIdxPl2MsTAhYcZIMrX1a6ID64dfwtF0MP8fDE6vrWInV1zXbzzf7l7PeKuqVtTSzKg==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -2405,12 +2534,22 @@ packages: resolution: {integrity: sha512-S+7Mvi9GMiJu3BY0Dpa7TrrAiFIwGwCIKLpO0IgGLUDh9fVLIlcIC/PZgU+L46gEpRwPZfrfMbDFKIlGGz/eQQ==} 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-devkit/schematics@21.0.0': + resolution: {integrity: sha512-8zwXp8OTzJO3IY3Ge3lLqXokNAtQy6kM1FeTyPT20M+0AQHTX9WJlGaYEWdLYI9WwNPWy1/Iq6AaZNcR5phPpw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@angular/animations@17.3.12': resolution: {integrity: sha512-9hsdWF4gRRcVJtPcCcYLaX1CIyM9wUu6r+xRl6zU5hq8qhl35hig6ounz7CXFAzLf0WDBdM16bPHouVGaG76lg==} engines: {node: ^18.13.0 || >=20.9.0} peerDependencies: '@angular/core': 17.3.12 + '@angular/animations@21.0.0': + resolution: {integrity: sha512-9AX4HFJmSP8SFNiweKNxasBzn3zbL3xRtwaUxw1I+x/WAzubm4ZziLnXqb+tai7C4UmwV+9XDlRVPfw5WxJ9zg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/core': 21.0.0 + '@angular/build@19.2.10': resolution: {integrity: sha512-1+veE1S2fuQ3WjzYBabjk5/+7TM91kkyvKo+2P8vc0eb+c9K2VfYx+6ErCHs38mPPqL1JjixsX9Nqbd5b7yowA==} 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'} @@ -2447,6 +2586,52 @@ packages: tailwindcss: optional: true + '@angular/build@21.0.0': + resolution: {integrity: sha512-TobXT9fXZVee1yULlcOVowOurCUoJlku8st5vzkRZekP520qRjBSEbIk8V2emkFbzgzOeJUtXv1pvrBY7yAYhQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + '@angular/compiler': ^21.0.0 + '@angular/compiler-cli': ^21.0.0 + '@angular/core': ^21.0.0 + '@angular/localize': ^21.0.0 + '@angular/platform-browser': ^21.0.0 + '@angular/platform-server': ^21.0.0 + '@angular/service-worker': ^21.0.0 + '@angular/ssr': ^21.0.0 + karma: ^6.4.0 + less: ^4.2.0 + ng-packagr: ^21.0.0 + postcss: ^8.4.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + tslib: ^2.3.0 + typescript: '>=5.9 <6.0' + vitest: ^4.0.8 + peerDependenciesMeta: + '@angular/core': + optional: true + '@angular/localize': + optional: true + '@angular/platform-browser': + optional: true + '@angular/platform-server': + optional: true + '@angular/service-worker': + optional: true + '@angular/ssr': + optional: true + karma: + optional: true + less: + optional: true + ng-packagr: + optional: true + postcss: + optional: true + tailwindcss: + optional: true + vitest: + optional: true + '@angular/cli@17.3.11': resolution: {integrity: sha512-8R9LwAGL8hGAWJ4mNG9ZPUrBUzIdmst0Ldua6RJJ+PrqgjX+8IbO+lNnfrOY/XY+Z3LXbCEJflL26f9czCvTPQ==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -2457,6 +2642,11 @@ packages: 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'} hasBin: true + '@angular/cli@21.0.0': + resolution: {integrity: sha512-713DfTD/ThIy/BOmZ+8zhXo/OhPE9jYaAS0UhXVhtp2ptqzRqSzLvW9fWgtqP4ITAqulOoitiWPLXxOEQ2Cixw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + hasBin: true + '@angular/common@11.2.14': resolution: {integrity: sha512-ZSLV/3j7eCTyLf/8g4yBFLWySjiLz3vLJAGWscYoUpnJWMnug1VRu6zoF/COxCbtORgE+Wz6K0uhfS6MziBGVw==} peerDependencies: @@ -2477,6 +2667,13 @@ packages: '@angular/core': 19.2.8 rxjs: ^6.5.3 || ^7.4.0 + '@angular/common@21.0.0': + resolution: {integrity: sha512-uFvQDYU5X5nEnI9C4Bkdxcu4aIzNesGLJzmFlnwChVxB4BxIRF0uHL0oRhdkInGTIzPDJPH4nF6B/22c5gDVqA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/core': 21.0.0 + rxjs: ^6.5.3 || ^7.4.0 + '@angular/compiler-cli@17.3.12': resolution: {integrity: sha512-1F8M7nWfChzurb7obbvuE7mJXlHtY1UG58pcwcomVtpPb+kPavgAO8OEvJHYBMV+bzSxkXt5UIwL9lt9jHUxZA==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2493,6 +2690,17 @@ packages: '@angular/compiler': 19.2.8 typescript: '>=5.5 <5.9' + '@angular/compiler-cli@21.0.0': + resolution: {integrity: sha512-KTXp+e2UPGyfFew6Wq95ULpHWQ20dhqkAMZ6x6MCYfOe2ccdnGYsAbLLmnWGmSg5BaOI4B0x/1XCFZf/n6WDgA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + hasBin: true + peerDependencies: + '@angular/compiler': 21.0.0 + typescript: '>=5.9 <6.0' + peerDependenciesMeta: + typescript: + optional: true + '@angular/compiler@17.3.12': resolution: {integrity: sha512-vwI8oOL/gM+wPnptOVeBbMfZYwzRxQsovojZf+Zol9szl0k3SZ3FycWlxxXZGFu3VIEfrP6pXplTmyODS/Lt1w==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2506,6 +2714,10 @@ packages: resolution: {integrity: sha512-HBtt96X09XFatHAnkquFYbcD3aQSvuYoqqhCV5OLkhAwHmvr3BGyHx/EBZ5JGOfCNOzCupoQmOBF+nh5LKwkeQ==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/compiler@21.0.0': + resolution: {integrity: sha512-6jCH3UYga5iokj5F40SR4dlwo9ZRMkT8YzHCTijwZuDX9zvugp9jPof092RvIeNsTvCMVfGWuM9yZ1DRUsU/yg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + '@angular/core@17.3.12': resolution: {integrity: sha512-MuFt5yKi161JmauUta4Dh0m8ofwoq6Ino+KoOtkYMBGsSx+A7dSm+DUxxNwdj7+DNyg3LjVGCFgBFnq4g8z06A==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2520,6 +2732,19 @@ packages: rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.15.0 + '@angular/core@21.0.0': + resolution: {integrity: sha512-bqi8fT4csyITeX8vdN5FJDBWx5wuWzdCg4mKSjHd+onVzZLyZ8bcnuAKz4mklgvjvwuXoRYukmclUurLwfq3Rg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/compiler': 21.0.0 + rxjs: ^6.5.3 || ^7.4.0 + zone.js: ~0.15.0 + peerDependenciesMeta: + '@angular/compiler': + optional: true + zone.js: + optional: true + '@angular/forms@17.3.12': resolution: {integrity: sha512-tV6r12Q3yEUlXwpVko4E+XscunTIpPkLbaiDn/MTL3Vxi2LZnsLgHyd/i38HaHN+e/H3B0a1ToSOhV5wf3ay4Q==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2538,6 +2763,16 @@ packages: '@angular/platform-browser': 19.2.9 rxjs: ^6.5.3 || ^7.4.0 + '@angular/forms@21.0.0': + resolution: {integrity: sha512-kcudwbZs/ddKqaELz4eEW9kOGCsX61qsf9jkQsGTARBEOUcU2K+rM6mX5sTf9azHvQ9wlX4N36h0eYzBA4Y4Qg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/common': 21.0.0 + '@angular/core': 21.0.0 + '@angular/platform-browser': 21.0.0 + '@standard-schema/spec': ^1.0.0 + rxjs: ^6.5.3 || ^7.4.0 + '@angular/language-service@17.3.12': resolution: {integrity: sha512-MVmEXonXwdhFtIpU4q8qbXHsrAsdTjZcPPuWCU0zXVQ+VaB/y6oF7BVpmBtfyBcBCums1guEncPP+AZVvulXmQ==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2560,6 +2795,15 @@ packages: '@angular/core': 19.2.8 '@angular/platform-browser': 19.2.8 + '@angular/platform-browser-dynamic@21.0.0': + resolution: {integrity: sha512-H7nfgQvtzl242Tjs34k20XQC3ZNssJCCvYkGTkVowR61khsX87OE5ggKqTSnLiqq1+OoR29hyvvqn5e9truS7w==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/common': 21.0.0 + '@angular/compiler': 21.0.0 + '@angular/core': 21.0.0 + '@angular/platform-browser': 21.0.0 + '@angular/platform-browser@17.3.12': resolution: {integrity: sha512-DYY04ptWh/ulMHzd+y52WCE8QnEYGeIiW3hEIFjCN8z0kbIdFdUtEB0IK5vjNL3ejyhUmphcpeT5PYf3YXtqWQ==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2582,6 +2826,17 @@ packages: '@angular/animations': optional: true + '@angular/platform-browser@21.0.0': + resolution: {integrity: sha512-KQrANla4RBLhcGkwlndqsKzBwVFOWQr1640CfBVjj2oz4M3dW5hyMtXivBACvuwyUhYU/qJbqlDMBXl/OUSudQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/animations': 21.0.0 + '@angular/common': 21.0.0 + '@angular/core': 21.0.0 + peerDependenciesMeta: + '@angular/animations': + optional: true + '@angular/platform-server@17.3.12': resolution: {integrity: sha512-P3xBzyeT2w/iiGsqGUNuLRYdqs2e+5nRnVYU9tc/TjhYDAgwEgq946U7Nie1xq5Ts/8b7bhxcK9maPKWG237Kw==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2592,6 +2847,16 @@ packages: '@angular/core': 17.3.12 '@angular/platform-browser': 17.3.12 + '@angular/platform-server@21.0.0': + resolution: {integrity: sha512-5IcmoftT2hLAbLfSoqGoCg0B1FLSk08xDoUdIyEUo1SmxNJMEEgU6WxhkPf6R7aoOlLAwYBoqGGP1Us1Z7rO7g==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@angular/common': 21.0.0 + '@angular/compiler': 21.0.0 + '@angular/core': 21.0.0 + '@angular/platform-browser': 21.0.0 + rxjs: ^6.5.3 || ^7.4.0 + '@angular/router@17.3.12': resolution: {integrity: sha512-dg7PHBSW9fmPKTVzwvHEeHZPZdpnUqW/U7kj8D29HTP9ur8zZnx9QcnbplwPeYb8yYa62JMnZSEel2X4PxdYBg==} engines: {node: ^18.13.0 || >=20.9.0} @@ -2637,6 +2902,10 @@ packages: resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.28.5': + resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==} + engines: {node: '>=6.9.0'} + '@babel/core@7.23.9': resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==} engines: {node: '>=6.9.0'} @@ -2653,6 +2922,10 @@ packages: resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==} engines: {node: '>=6.9.0'} + '@babel/core@7.28.4': + resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} + engines: {node: '>=6.9.0'} + '@babel/eslint-parser@7.23.10': resolution: {integrity: sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} @@ -2683,6 +2956,10 @@ packages: resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==} engines: {node: '>=6.9.0'} + '@babel/generator@7.28.3': + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} + engines: {node: '>=6.9.0'} + '@babel/generator@7.28.5': resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} engines: {node: '>=6.9.0'} @@ -2695,10 +2972,6 @@ packages: resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.27.1': - resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==} - engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.27.3': resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} @@ -2715,6 +2988,10 @@ packages: resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.25.9': resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} engines: {node: '>=6.9.0'} @@ -2764,6 +3041,11 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-define-polyfill-provider@0.6.5': + resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-environment-visitor@7.24.7': resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} @@ -2800,6 +3082,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.25.9': resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} @@ -2822,6 +3110,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-remap-async-to-generator@7.27.1': + resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.25.9': resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} engines: {node: '>=6.9.0'} @@ -2886,6 +3180,10 @@ packages: resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.28.3': + resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==} + engines: {node: '>=6.9.0'} + '@babel/helpers@7.26.0': resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} @@ -2894,6 +3192,10 @@ packages: resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} engines: {node: '>=6.9.0'} + '@babel/helpers@7.28.4': + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.25.9': resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} engines: {node: '>=6.9.0'} @@ -2936,18 +3238,36 @@ packages: peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': + resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9': resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': + resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9': resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3': + resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-proposal-async-generator-functions@7.20.7': resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -3037,12 +3357,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.27.1': + resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-attributes@7.26.0': resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -3125,6 +3457,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-arrow-functions@7.27.1': + resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.23.9': resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==} engines: {node: '>=6.9.0'} @@ -3143,6 +3481,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.28.0': + resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.23.3': resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} @@ -3155,6 +3499,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.27.1': + resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.25.9': resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} engines: {node: '>=6.9.0'} @@ -3173,48 +3523,96 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.28.5': + resolution: {integrity: sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.25.9': resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.27.1': + resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-static-block@7.26.0': resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 + '@babel/plugin-transform-class-static-block@7.28.3': + resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + '@babel/plugin-transform-classes@7.25.9': resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.28.4': + resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.25.9': resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.27.1': + resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.25.9': resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.28.5': + resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.25.9': resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.27.1': + resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.25.9': resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.27.1': + resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1': resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==} engines: {node: '>=6.9.0'} @@ -3227,6 +3625,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dynamic-import@7.27.1': + resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-explicit-resource-management@7.28.0': + resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.25.9': resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==} engines: {node: '>=6.9.0'} @@ -3245,6 +3655,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-export-namespace-from@7.27.1': + resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-flow-strip-types@7.25.9': resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==} engines: {node: '>=6.9.0'} @@ -3269,36 +3685,72 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.27.1': + resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.25.9': resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.27.1': + resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.25.9': resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.27.1': + resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.25.9': resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.28.5': + resolution: {integrity: sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.25.9': resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.27.1': + resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.25.9': resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.27.1': + resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.23.3': resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} @@ -3317,24 +3769,48 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.28.5': + resolution: {integrity: sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.25.9': resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.27.1': + resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-named-capturing-groups-regex@7.25.9': resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-transform-new-target@7.25.9': resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-new-target@7.27.1': + resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.25.9': resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} engines: {node: '>=6.9.0'} @@ -3353,54 +3829,108 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.27.1': + resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.25.9': resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.28.4': + resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.25.9': resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.27.1': + resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.25.9': resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.27.1': + resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.25.9': resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.28.5': + resolution: {integrity: sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.25.9': resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.27.7': + resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.25.9': resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.27.1': + resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.25.9': resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.27.1': + resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.25.9': resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.27.1': + resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.25.9': resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==} engines: {node: '>=6.9.0'} @@ -3443,6 +3973,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regenerator@7.28.4': + resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regexp-modifiers@7.27.1': resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==} engines: {node: '>=6.9.0'} @@ -3455,6 +3991,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-reserved-words@7.27.1': + resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.19.6': resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} engines: {node: '>=6.9.0'} @@ -3479,24 +4021,48 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.28.3': + resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.25.9': resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.27.1': + resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.25.9': resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.27.1': + resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.25.9': resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.27.1': + resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.25.9': resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} engines: {node: '>=6.9.0'} @@ -3533,24 +4099,48 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.27.1': + resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.25.9': resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.27.1': + resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.25.9': resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.27.1': + resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-sets-regex@7.25.9': resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-transform-unicode-sets-regex@7.27.1': + resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/preset-env@7.23.9': resolution: {integrity: sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==} engines: {node: '>=6.9.0'} @@ -3569,6 +4159,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/preset-env@7.28.3': + resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/preset-flow@7.25.9': resolution: {integrity: sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==} engines: {node: '>=6.9.0'} @@ -3612,6 +4208,10 @@ packages: resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.28.4': + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} + engines: {node: '>=6.9.0'} + '@babel/template@7.25.9': resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} engines: {node: '>=6.9.0'} @@ -3751,6 +4351,15 @@ packages: engines: {node: '>=10.12.0'} hasBin: true + '@emnapi/core@1.7.1': + resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==} + + '@emnapi/runtime@1.7.1': + resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==} + + '@emnapi/wasi-threads@1.1.0': + resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} + '@emotion/use-insertion-effect-with-fallbacks@1.1.0': resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==} peerDependencies: @@ -3786,6 +4395,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.26.0': + resolution: {integrity: sha512-hj0sKNCQOOo2fgyII3clmJXP28VhgDfU5iy3GNHlWO76KG6N7x4D9ezH5lJtQTG+1J6MFDAJXC1qsI+W+LvZoA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.18.20': resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} @@ -3828,6 +4443,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.26.0': + resolution: {integrity: sha512-DDnoJ5eoa13L8zPh87PUlRd/IyFaIKOlRbxiwcSbeumcJ7UZKdtuMCHa1Q27LWQggug6W4m28i4/O2qiQQ5NZQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.18.20': resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} @@ -3870,6 +4491,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.26.0': + resolution: {integrity: sha512-C0hkDsYNHZkBtPxxDx177JN90/1MiCpvBNjz1f5yWJo1+5+c5zr8apjastpEG+wtPjo9FFtGG7owSsAxyKiHxA==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.18.20': resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} engines: {node: '>=12'} @@ -3912,6 +4539,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.26.0': + resolution: {integrity: sha512-bKDkGXGZnj0T70cRpgmv549x38Vr2O3UWLbjT2qmIkdIWcmlg8yebcFWoT9Dku7b5OV3UqPEuNKRzlNhjwUJ9A==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.18.20': resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} @@ -3954,6 +4587,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.26.0': + resolution: {integrity: sha512-6Z3naJgOuAIB0RLlJkYc81An3rTlQ/IeRdrU3dOea8h/PvZSgitZV+thNuIccw0MuK1GmIAnAmd5TrMZad8FTQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.18.20': resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} engines: {node: '>=12'} @@ -3996,6 +4635,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.26.0': + resolution: {integrity: sha512-OPnYj0zpYW0tHusMefyaMvNYQX5pNQuSsHFTHUBNp3vVXupwqpxofcjVsUx11CQhGVkGeXjC3WLjh91hgBG2xw==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.18.20': resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} engines: {node: '>=12'} @@ -4038,6 +4683,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.26.0': + resolution: {integrity: sha512-jix2fa6GQeZhO1sCKNaNMjfj5hbOvoL2F5t+w6gEPxALumkpOV/wq7oUBMHBn2hY2dOm+mEV/K+xfZy3mrsxNQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.18.20': resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} engines: {node: '>=12'} @@ -4080,6 +4731,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.26.0': + resolution: {integrity: sha512-tccJaH5xHJD/239LjbVvJwf6T4kSzbk6wPFerF0uwWlkw/u7HL+wnAzAH5GB2irGhYemDgiNTp8wJzhAHQ64oA==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.18.20': resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} @@ -4122,6 +4779,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.26.0': + resolution: {integrity: sha512-IMJYN7FSkLttYyTbsbme0Ra14cBO5z47kpamo16IwggzzATFY2lcZAwkbcNkWiAduKrTgFJP7fW5cBI7FzcuNQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.18.20': resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} engines: {node: '>=12'} @@ -4164,6 +4827,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.26.0': + resolution: {integrity: sha512-JY8NyU31SyRmRpuc5W8PQarAx4TvuYbyxbPIpHAZdr/0g4iBr8KwQBS4kiiamGl2f42BBecHusYCsyxi7Kn8UQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.18.20': resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} engines: {node: '>=12'} @@ -4206,6 +4875,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.26.0': + resolution: {integrity: sha512-XITaGqGVLgk8WOHw8We9Z1L0lbLFip8LyQzKYFKO4zFo1PFaaSKsbNjvkb7O8kEXytmSGRkYpE8LLVpPJpsSlw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.14.54': resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} engines: {node: '>=12'} @@ -4254,6 +4929,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.26.0': + resolution: {integrity: sha512-MkggfbDIczStUJwq9wU7gQ7kO33d8j9lWuOCDifN9t47+PeI+9m2QVh51EI/zZQ1spZtFMC1nzBJ+qNGCjJnsg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.18.20': resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} engines: {node: '>=12'} @@ -4296,6 +4977,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.26.0': + resolution: {integrity: sha512-fUYup12HZWAeccNLhQ5HwNBPr4zXCPgUWzEq2Rfw7UwqwfQrFZ0SR/JljaURR8xIh9t+o1lNUFTECUTmaP7yKA==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.18.20': resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} engines: {node: '>=12'} @@ -4338,6 +5025,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.26.0': + resolution: {integrity: sha512-MzRKhM0Ip+//VYwC8tialCiwUQ4G65WfALtJEFyU0GKJzfTYoPBw5XNWf0SLbCUYQbxTKamlVwPmcw4DgZzFxg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.18.20': resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} engines: {node: '>=12'} @@ -4380,6 +5073,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.26.0': + resolution: {integrity: sha512-QhCc32CwI1I4Jrg1enCv292sm3YJprW8WHHlyxJhae/dVs+KRWkbvz2Nynl5HmZDW/m9ZxrXayHzjzVNvQMGQA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.18.20': resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} engines: {node: '>=12'} @@ -4422,6 +5121,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.26.0': + resolution: {integrity: sha512-1D6vi6lfI18aNT1aTf2HV+RIlm6fxtlAp8eOJ4mmnbYmZ4boz8zYDar86sIYNh0wmiLJEbW/EocaKAX6Yso2fw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.18.20': resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} engines: {node: '>=12'} @@ -4464,6 +5169,12 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.26.0': + resolution: {integrity: sha512-rnDcepj7LjrKFvZkx+WrBv6wECeYACcFjdNPvVPojCPJD8nHpb3pv3AuR9CXgdnjH1O23btICj0rsp0L9wAnHA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-arm64@0.25.0': resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==} engines: {node: '>=18'} @@ -4476,6 +5187,12 @@ packages: cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-arm64@0.26.0': + resolution: {integrity: sha512-FSWmgGp0mDNjEXXFcsf12BmVrb+sZBBBlyh3LwB/B9ac3Kkc8x5D2WimYW9N7SUkolui8JzVnVlWh7ZmjCpnxw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.18.20': resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} engines: {node: '>=12'} @@ -4518,6 +5235,12 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.26.0': + resolution: {integrity: sha512-0QfciUDFryD39QoSPUDshj4uNEjQhp73+3pbSAaxjV2qGOEDsM67P7KbJq7LzHoVl46oqhIhJ1S+skKGR7lMXA==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-arm64@0.25.0': resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==} engines: {node: '>=18'} @@ -4530,6 +5253,12 @@ packages: cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-arm64@0.26.0': + resolution: {integrity: sha512-vmAK+nHhIZWImwJ3RNw9hX3fU4UGN/OqbSE0imqljNbUQC3GvVJ1jpwYoTfD6mmXmQaxdJY6Hn4jQbLGJKg5Yw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.18.20': resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} engines: {node: '>=12'} @@ -4572,6 +5301,18 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.26.0': + resolution: {integrity: sha512-GPXF7RMkJ7o9bTyUsnyNtrFMqgM3X+uM/LWw4CeHIjqc32fm0Ir6jKDnWHpj8xHFstgWDUYseSABK9KCkHGnpg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.26.0': + resolution: {integrity: sha512-nUHZ5jEYqbBthbiBksbmHTlbb5eElyVfs/s1iHQ8rLBq1eWsd5maOnDpCocw1OM8kFK747d1Xms8dXJHtduxSw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + '@esbuild/sunos-x64@0.18.20': resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} engines: {node: '>=12'} @@ -4614,6 +5355,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.26.0': + resolution: {integrity: sha512-TMg3KCTCYYaVO+R6P5mSORhcNDDlemUVnUbb8QkboUtOhb5JWKAzd5uMIMECJQOxHZ/R+N8HHtDF5ylzLfMiLw==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.18.20': resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} engines: {node: '>=12'} @@ -4656,6 +5403,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.26.0': + resolution: {integrity: sha512-apqYgoAUd6ZCb9Phcs8zN32q6l0ZQzQBdVXOofa6WvHDlSOhwCWgSfVQabGViThS40Y1NA4SCvQickgZMFZRlA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.18.20': resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} engines: {node: '>=12'} @@ -4698,6 +5451,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.26.0': + resolution: {integrity: sha512-FGJAcImbJNZzLWu7U6WB0iKHl4RuY4TsXEwxJPl9UZLS47agIZuILZEX3Pagfw7I4J3ddflomt9f0apfaJSbaw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.18.20': resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} engines: {node: '>=12'} @@ -4740,6 +5499,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.26.0': + resolution: {integrity: sha512-WAckBKaVnmFqbEhbymrPK7M086DQMpL1XoRbpmN0iW8k5JSXjDRQBhcZNa0VweItknLq9eAeCL34jK7/CDcw7A==} + 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} @@ -4889,6 +5654,10 @@ packages: resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} engines: {node: '>=18.18'} + '@inquirer/ansi@1.0.2': + resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==} + engines: {node: '>=18'} + '@inquirer/checkbox@4.1.5': resolution: {integrity: sha512-swPczVU+at65xa5uPfNP9u3qx/alNwiaykiI/ExpsmMSQW55trmZcwhYWzw/7fj+n6Q8z1eENvR7vFfq9oPSAQ==} engines: {node: '>=18'} @@ -4898,8 +5667,26 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.6': - resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==} + '@inquirer/checkbox@4.3.2': + resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/confirm@5.1.19': + resolution: {integrity: sha512-wQNz9cfcxrtEnUyG5PndC8g3gZ7lGDBzmWiXZkX8ot3vfZ+/BLjR8EvyGX4YzQLeVqtAlY/YScZpW7CW8qMoDQ==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/confirm@5.1.21': + resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4907,8 +5694,8 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.9': - resolution: {integrity: sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==} + '@inquirer/confirm@5.1.6': + resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4925,6 +5712,15 @@ packages: '@types/node': optional: true + '@inquirer/core@10.3.2': + resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/editor@4.2.10': resolution: {integrity: sha512-5GVWJ+qeI6BzR6TIInLP9SXhWCEcvgFQYmcRG6d6RIlhFjM5TyG18paTGBgRYyEouvCmzeco47x9zX9tQEofkw==} engines: {node: '>=18'} @@ -4934,6 +5730,15 @@ packages: '@types/node': optional: true + '@inquirer/editor@4.2.23': + resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/expand@4.0.12': resolution: {integrity: sha512-jV8QoZE1fC0vPe6TnsOfig+qwu7Iza1pkXoUJ3SroRagrt2hxiL+RbM432YAihNR7m7XnU0HWl/WQ35RIGmXHw==} engines: {node: '>=18'} @@ -4943,8 +5748,26 @@ packages: '@types/node': optional: true - '@inquirer/figures@1.0.11': - resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==} + '@inquirer/expand@4.0.23': + resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/external-editor@1.0.3': + resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/figures@1.0.15': + resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==} engines: {node: '>=18'} '@inquirer/input@4.1.9': @@ -4956,6 +5779,15 @@ packages: '@types/node': optional: true + '@inquirer/input@4.3.1': + resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/number@3.0.12': resolution: {integrity: sha512-7HRFHxbPCA4e4jMxTQglHJwP+v/kpFsCf2szzfBHy98Wlc3L08HL76UDiA87TOdX5fwj2HMOLWqRWv9Pnn+Z5Q==} engines: {node: '>=18'} @@ -4965,6 +5797,15 @@ packages: '@types/node': optional: true + '@inquirer/number@3.0.23': + resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/password@4.0.12': resolution: {integrity: sha512-FlOB0zvuELPEbnBYiPaOdJIaDzb2PmJ7ghi/SVwIHDDSQ2K4opGBkF+5kXOg6ucrtSUQdLhVVY5tycH0j0l+0g==} engines: {node: '>=18'} @@ -4974,6 +5815,15 @@ packages: '@types/node': optional: true + '@inquirer/password@4.0.23': + resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/prompts@7.3.2': resolution: {integrity: sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==} engines: {node: '>=18'} @@ -4983,6 +5833,15 @@ packages: '@types/node': optional: true + '@inquirer/prompts@7.9.0': + resolution: {integrity: sha512-X7/+dG9SLpSzRkwgG5/xiIzW0oMrV3C0HOa7YHG1WnrLK+vCQHfte4k/T80059YBdei29RBC3s+pSMvPJDU9/A==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/rawlist@4.1.0': resolution: {integrity: sha512-6ob45Oh9pXmfprKqUiEeMz/tjtVTFQTgDDz1xAMKMrIvyrYjAmRbQZjMJfsictlL4phgjLhdLu27IkHNnNjB7g==} engines: {node: '>=18'} @@ -4992,6 +5851,15 @@ packages: '@types/node': optional: true + '@inquirer/rawlist@4.1.11': + resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/search@3.0.12': resolution: {integrity: sha512-H/kDJA3kNlnNIjB8YsaXoQI0Qccgf0Na14K1h8ExWhNmUg2E941dyFPrZeugihEa9AZNW5NdsD/NcvUME83OPQ==} engines: {node: '>=18'} @@ -5001,6 +5869,15 @@ packages: '@types/node': optional: true + '@inquirer/search@3.2.2': + resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/select@4.2.0': resolution: {integrity: sha512-KkXQ4aSySWimpV4V/TUJWdB3tdfENZUU765GjOIZ0uPwdbGIG6jrxD4dDf1w68uP+DVtfNhr1A92B+0mbTZ8FA==} engines: {node: '>=18'} @@ -5010,12 +5887,21 @@ packages: '@types/node': optional: true + '@inquirer/select@4.4.2': + resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@inquirer/type@1.5.5': resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==} engines: {node: '>=18'} - '@inquirer/type@3.0.6': - resolution: {integrity: sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==} + '@inquirer/type@3.0.10': + resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -5124,6 +6010,9 @@ packages: resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} @@ -5138,6 +6027,9 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} @@ -5153,14 +6045,32 @@ packages: peerDependencies: tslib: '2' - '@jsonjoy.com/json-pack@1.2.0': - resolution: {integrity: sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==} + '@jsonjoy.com/buffers@1.2.1': + resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/util@1.5.0': - resolution: {integrity: sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==} + '@jsonjoy.com/codegen@1.0.0': + resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pack@1.21.0': + resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pointer@1.0.2': + resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/util@1.9.0': + resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==} engines: {node: '>=10.0'} peerDependencies: tslib: '2' @@ -5183,6 +6093,13 @@ packages: peerDependencies: '@inquirer/prompts': '>= 3 < 8' + '@listr2/prompt-adapter-inquirer@3.0.5': + resolution: {integrity: sha512-WELs+hj6xcilkloBXYf9XXK8tYEnKsgLj01Xl5ONUJpKjmT5hGVUzNUS5tooUxs7pGMrw+jFD/41WpqW4V3LDA==} + engines: {node: '>=20.0.0'} + peerDependencies: + '@inquirer/prompts': '>= 3 < 8' + listr2: 9.0.5 + '@ljharb/through@2.3.13': resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} engines: {node: '>= 0.4'} @@ -5197,6 +6114,11 @@ packages: cpu: [arm64] os: [darwin] + '@lmdb/lmdb-darwin-arm64@3.4.3': + resolution: {integrity: sha512-zR6Y45VNtW5s+A+4AyhrJk0VJKhXdkLhrySCpCu7PSdnakebsOzNxf58p5Xoq66vOSuueGAxlqDAF49HwdrSTQ==} + cpu: [arm64] + os: [darwin] + '@lmdb/lmdb-darwin-x64@2.8.5': resolution: {integrity: sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug==} cpu: [x64] @@ -5207,6 +6129,11 @@ packages: cpu: [x64] os: [darwin] + '@lmdb/lmdb-darwin-x64@3.4.3': + resolution: {integrity: sha512-nfGm5pQksBGfaj9uMbjC0YyQreny/Pl7mIDtHtw6g7WQuCgeLullr9FNRsYyKplaEJBPrCVpEjpAznxTBIrXBw==} + cpu: [x64] + os: [darwin] + '@lmdb/lmdb-linux-arm64@2.8.5': resolution: {integrity: sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww==} cpu: [arm64] @@ -5217,6 +6144,11 @@ packages: cpu: [arm64] os: [linux] + '@lmdb/lmdb-linux-arm64@3.4.3': + resolution: {integrity: sha512-uX9eaPqWb740wg5D3TCvU/js23lSRSKT7lJrrQ8IuEG/VLgpPlxO3lHDywU44yFYdGS7pElBn6ioKFKhvALZlw==} + cpu: [arm64] + os: [linux] + '@lmdb/lmdb-linux-arm@2.8.5': resolution: {integrity: sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg==} cpu: [arm] @@ -5227,6 +6159,11 @@ packages: cpu: [arm] os: [linux] + '@lmdb/lmdb-linux-arm@3.4.3': + resolution: {integrity: sha512-Kjqomp7i0rgSbYSUmv9JnXpS55zYT/YcW3Bdf9oqOTjcH0/8tFAP8MLhu/i9V2pMKIURDZk63Ww49DTK0T3c/Q==} + cpu: [arm] + os: [linux] + '@lmdb/lmdb-linux-x64@2.8.5': resolution: {integrity: sha512-Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ==} cpu: [x64] @@ -5237,6 +6174,16 @@ packages: cpu: [x64] os: [linux] + '@lmdb/lmdb-linux-x64@3.4.3': + resolution: {integrity: sha512-7/8l20D55CfwdMupkc3fNxNJdn4bHsti2X0cp6PwiXlLeSFvAfWs5kCCx+2Cyje4l4GtN//LtKWjTru/9hDJQg==} + cpu: [x64] + os: [linux] + + '@lmdb/lmdb-win32-arm64@3.4.3': + resolution: {integrity: sha512-yWVR0e5Gl35EGJBsAuqPOdjtUYuN8CcTLKrqpQFoM+KsMadViVCulhKNhkcjSGJB88Am5bRPjMro4MBB9FS23Q==} + cpu: [arm64] + os: [win32] + '@lmdb/lmdb-win32-x64@2.8.5': resolution: {integrity: sha512-4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ==} cpu: [x64] @@ -5247,6 +6194,11 @@ packages: cpu: [x64] os: [win32] + '@lmdb/lmdb-win32-x64@3.4.3': + resolution: {integrity: sha512-1JdBkcO0Vrua4LUgr4jAe4FUyluwCeq/pDkBrlaVjX3/BBWP1TzVjCL+TibWNQtPAL1BITXPAhlK5Ru4FBd/hg==} + cpu: [x64] + os: [win32] + '@mdx-js/react@2.3.0': resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} peerDependencies: @@ -5264,6 +6216,10 @@ packages: resolution: {integrity: sha512-k/1pb70eD638anoi0e8wUGAlbMJXyvdV4p62Ko+EZ7eBe1xMx8Uhak1R5DgfoofsK5IBBnRwsYGTaLZl+6/+RQ==} engines: {node: '>=18'} + '@modelcontextprotocol/sdk@1.20.1': + resolution: {integrity: sha512-j/P+yuxXfgxb+mW7OEoRCM3G47zCTDqUPivJo/VzpjbG8I9csTXtOprCf5FfOfHK4whOJny0aHuBEON+kS7CCA==} + engines: {node: '>=18'} + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==} cpu: [arm64] @@ -5294,106 +6250,115 @@ packages: cpu: [x64] os: [win32] - '@napi-rs/nice-android-arm-eabi@1.0.1': - resolution: {integrity: sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==} + '@napi-rs/nice-android-arm-eabi@1.1.1': + resolution: {integrity: sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw==} engines: {node: '>= 10'} cpu: [arm] os: [android] - '@napi-rs/nice-android-arm64@1.0.1': - resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==} + '@napi-rs/nice-android-arm64@1.1.1': + resolution: {integrity: sha512-blG0i7dXgbInN5urONoUCNf+DUEAavRffrO7fZSeoRMJc5qD+BJeNcpr54msPF6qfDD6kzs9AQJogZvT2KD5nw==} engines: {node: '>= 10'} cpu: [arm64] os: [android] - '@napi-rs/nice-darwin-arm64@1.0.1': - resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==} + '@napi-rs/nice-darwin-arm64@1.1.1': + resolution: {integrity: sha512-s/E7w45NaLqTGuOjC2p96pct4jRfo61xb9bU1unM/MJ/RFkKlJyJDx7OJI/O0ll/hrfpqKopuAFDV8yo0hfT7A==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@napi-rs/nice-darwin-x64@1.0.1': - resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==} + '@napi-rs/nice-darwin-x64@1.1.1': + resolution: {integrity: sha512-dGoEBnVpsdcC+oHHmW1LRK5eiyzLwdgNQq3BmZIav+9/5WTZwBYX7r5ZkQC07Nxd3KHOCkgbHSh4wPkH1N1LiQ==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@napi-rs/nice-freebsd-x64@1.0.1': - resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==} + '@napi-rs/nice-freebsd-x64@1.1.1': + resolution: {integrity: sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - '@napi-rs/nice-linux-arm-gnueabihf@1.0.1': - resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==} + '@napi-rs/nice-linux-arm-gnueabihf@1.1.1': + resolution: {integrity: sha512-E1t7K0efyKXZDoZg1LzCOLxgolxV58HCkaEkEvIYQx12ht2pa8hoBo+4OB3qh7e+QiBlp1SRf+voWUZFxyhyqg==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@napi-rs/nice-linux-arm64-gnu@1.0.1': - resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==} + '@napi-rs/nice-linux-arm64-gnu@1.1.1': + resolution: {integrity: sha512-CIKLA12DTIZlmTaaKhQP88R3Xao+gyJxNWEn04wZwC2wmRapNnxCUZkVwggInMJvtVElA+D4ZzOU5sX4jV+SmQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@napi-rs/nice-linux-arm64-musl@1.0.1': - resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==} + '@napi-rs/nice-linux-arm64-musl@1.1.1': + resolution: {integrity: sha512-+2Rzdb3nTIYZ0YJF43qf2twhqOCkiSrHx2Pg6DJaCPYhhaxbLcdlV8hCRMHghQ+EtZQWGNcS2xF4KxBhSGeutg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@napi-rs/nice-linux-ppc64-gnu@1.0.1': - resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==} + '@napi-rs/nice-linux-ppc64-gnu@1.1.1': + resolution: {integrity: sha512-4FS8oc0GeHpwvv4tKciKkw3Y4jKsL7FRhaOeiPei0X9T4Jd619wHNe4xCLmN2EMgZoeGg+Q7GY7BsvwKpL22Tg==} engines: {node: '>= 10'} cpu: [ppc64] os: [linux] - '@napi-rs/nice-linux-riscv64-gnu@1.0.1': - resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==} + '@napi-rs/nice-linux-riscv64-gnu@1.1.1': + resolution: {integrity: sha512-HU0nw9uD4FO/oGCCk409tCi5IzIZpH2agE6nN4fqpwVlCn5BOq0MS1dXGjXaG17JaAvrlpV5ZeyZwSon10XOXw==} engines: {node: '>= 10'} cpu: [riscv64] os: [linux] - '@napi-rs/nice-linux-s390x-gnu@1.0.1': - resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==} + '@napi-rs/nice-linux-s390x-gnu@1.1.1': + resolution: {integrity: sha512-2YqKJWWl24EwrX0DzCQgPLKQBxYDdBxOHot1KWEq7aY2uYeX+Uvtv4I8xFVVygJDgf6/92h9N3Y43WPx8+PAgQ==} engines: {node: '>= 10'} cpu: [s390x] os: [linux] - '@napi-rs/nice-linux-x64-gnu@1.0.1': - resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==} + '@napi-rs/nice-linux-x64-gnu@1.1.1': + resolution: {integrity: sha512-/gaNz3R92t+dcrfCw/96pDopcmec7oCcAQ3l/M+Zxr82KT4DljD37CpgrnXV+pJC263JkW572pdbP3hP+KjcIg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@napi-rs/nice-linux-x64-musl@1.0.1': - resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==} + '@napi-rs/nice-linux-x64-musl@1.1.1': + resolution: {integrity: sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@napi-rs/nice-win32-arm64-msvc@1.0.1': - resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==} + '@napi-rs/nice-openharmony-arm64@1.1.1': + resolution: {integrity: sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [openharmony] + + '@napi-rs/nice-win32-arm64-msvc@1.1.1': + resolution: {integrity: sha512-uoTb4eAvM5B2aj/z8j+Nv8OttPf2m+HVx3UjA5jcFxASvNhQriyCQF1OB1lHL43ZhW+VwZlgvjmP5qF3+59atA==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@napi-rs/nice-win32-ia32-msvc@1.0.1': - resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==} + '@napi-rs/nice-win32-ia32-msvc@1.1.1': + resolution: {integrity: sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@napi-rs/nice-win32-x64-msvc@1.0.1': - resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==} + '@napi-rs/nice-win32-x64-msvc@1.1.1': + resolution: {integrity: sha512-vB+4G/jBQCAh0jelMTY3+kgFy00Hlx2f2/1zjMoH821IbplbWZOkLiTYXQkygNTzQJTq5cvwBDgn2ppHD+bglQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@napi-rs/nice@1.0.1': - resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==} + '@napi-rs/nice@1.1.1': + resolution: {integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==} engines: {node: '>= 10'} + '@napi-rs/wasm-runtime@1.0.7': + resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==} + '@ndelangen/get-tarball@3.0.9': resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} @@ -5413,6 +6378,14 @@ packages: typescript: '>=5.5 <5.9' webpack: ^5.54.0 + '@ngtools/webpack@21.0.0': + resolution: {integrity: sha512-5ct1rqu7WQSXjyxmjLQX61dWMXAjY7QMx8Pp5u16bPRDAcpKxjLfFbSfu9vv/Rn8KrbokvRNPGFwSyIU2fCmBg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + '@angular/compiler-cli': ^21.0.0 + typescript: '>=5.9 <6.0' + webpack: ^5.54.0 + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} @@ -5436,6 +6409,10 @@ packages: resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==} engines: {node: ^18.17.0 || >=20.5.0} + '@npmcli/agent@4.0.0': + resolution: {integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==} + engines: {node: ^20.17.0 || >=22.9.0} + '@npmcli/fs@3.1.1': resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -5452,6 +6429,10 @@ packages: resolution: {integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==} engines: {node: ^18.17.0 || >=20.5.0} + '@npmcli/git@7.0.1': + resolution: {integrity: sha512-+XTFxK2jJF/EJJ5SoAzXk3qwIDfvFc5/g+bD274LZ7uY7LE8sTfG6Z8rOanPl2ZEvZWqNvmEdtXC25cE54VcoA==} + engines: {node: ^20.17.0 || >=22.9.0} + '@npmcli/installed-package-contents@2.1.0': resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -5470,6 +6451,10 @@ packages: resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==} engines: {node: ^18.17.0 || >=20.5.0} + '@npmcli/node-gyp@5.0.0': + resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==} + engines: {node: ^20.17.0 || >=22.9.0} + '@npmcli/package-json@5.2.1': resolution: {integrity: sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==} engines: {node: ^16.14.0 || >=18.0.0} @@ -5478,6 +6463,10 @@ packages: resolution: {integrity: sha512-d5qimadRAUCO4A/Txw71VM7UrRZzV+NPclxz/dc+M6B2oYwjWTjqh8HA/sGQgs9VZuJ6I/P7XIAlJvgrl27ZOw==} engines: {node: ^18.17.0 || >=20.5.0} + '@npmcli/package-json@7.0.2': + resolution: {integrity: sha512-0ylN3U5htO1SJTmy2YI78PZZjLkKUGg7EKgukb2CRi0kzyoDr0cfjHAzi7kozVhj2V3SxN1oyKqZ2NSo40z00g==} + engines: {node: ^20.17.0 || >=22.9.0} + '@npmcli/promise-spawn@7.0.2': resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} engines: {node: ^16.14.0 || >=18.0.0} @@ -5486,6 +6475,10 @@ packages: resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==} engines: {node: ^18.17.0 || >=20.5.0} + '@npmcli/promise-spawn@9.0.1': + resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==} + engines: {node: ^20.17.0 || >=22.9.0} + '@npmcli/redact@1.1.0': resolution: {integrity: sha512-PfnWuOkQgu7gCbnSsAisaX7hKOdZ4wSAhAzH3/ph5dSGau52kCRrMMGbiSQLwyTZpgldkZ49b0brkOr1AzGBHQ==} engines: {node: ^16.14.0 || >=18.0.0} @@ -5494,6 +6487,14 @@ packages: resolution: {integrity: sha512-NyJXHoZwJE0iUsCDTclXf1bWHJTsshtnp5xUN6F2vY+OLJv6d2cNc4Do6fKNkmPToB0GzoffxRh405ibTwG+Og==} engines: {node: ^18.17.0 || >=20.5.0} + '@npmcli/redact@4.0.0': + resolution: {integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/run-script@10.0.3': + resolution: {integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==} + engines: {node: ^20.17.0 || >=22.9.0} + '@npmcli/run-script@7.0.4': resolution: {integrity: sha512-9ApYM/3+rBt9V80aYg6tZfzj3UWdiYyCt7gJUD1VJKvWF5nwKDSICXbYIQbspFTq6TOpbsEtIC0LArB8d9PFmg==} engines: {node: ^16.14.0 || >=18.0.0} @@ -5611,6 +6612,9 @@ packages: '@one-ini/wasm@0.1.1': resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + '@oxc-project/types@0.96.0': + resolution: {integrity: sha512-r/xkmoXA0xEpU6UGtn18CNVjXH6erU3KCpCDbpLmbVxBFor1U9MqN5Z2uMmCHJuXjJzlnDR+hWY+yPoLo8oHDw==} + '@parcel/bundler-default@2.12.0': resolution: {integrity: sha512-3ybN74oYNMKyjD6V20c9Gerdbh7teeNvVMwIoHIQMzuIFT6IGX53PyOLlOKRLbjxMc0TMimQQxIt2eQqxR5LsA==} engines: {node: '>= 12.0.0', parcel: ^2.12.0} @@ -6379,6 +7383,92 @@ packages: resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==} engines: {node: '>=14.0.0'} + '@rolldown/binding-android-arm64@1.0.0-beta.47': + resolution: {integrity: sha512-vPP9/MZzESh9QtmvQYojXP/midjgkkc1E4AdnPPAzQXo668ncHJcVLKjJKzoBdsQmaIvNjrMdsCwES8vTQHRQw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-beta.47': + resolution: {integrity: sha512-Lc3nrkxeaDVCVl8qR3qoxh6ltDZfkQ98j5vwIr5ALPkgjZtDK4BGCrrBoLpGVMg+csWcaqUbwbKwH5yvVa0oOw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-beta.47': + resolution: {integrity: sha512-eBYxQDwP0O33plqNVqOtUHqRiSYVneAknviM5XMawke3mwMuVlAsohtOqEjbCEl/Loi/FWdVeks5WkqAkzkYWQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-beta.47': + resolution: {integrity: sha512-Ns+kgp2+1Iq/44bY/Z30DETUSiHY7ZuqaOgD5bHVW++8vme9rdiWsN4yG4rRPXkdgzjvQ9TDHmZZKfY4/G11AA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.47': + resolution: {integrity: sha512-4PecgWCJhTA2EFOlptYJiNyVP2MrVP4cWdndpOu3WmXqWqZUmSubhb4YUAIxAxnXATlGjC1WjxNPhV7ZllNgdA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.47': + resolution: {integrity: sha512-CyIunZ6D9U9Xg94roQI1INt/bLkOpPsZjZZkiaAZ0r6uccQdICmC99M9RUPlMLw/qg4yEWLlQhG73W/mG437NA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.47': + resolution: {integrity: sha512-doozc/Goe7qRCSnzfJbFINTHsMktqmZQmweull6hsZZ9sjNWQ6BWQnbvOlfZJe4xE5NxM1NhPnY5Giqnl3ZrYQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.47': + resolution: {integrity: sha512-fodvSMf6Aqwa0wEUSTPewmmZOD44rc5Tpr5p9NkwQ6W1SSpUKzD3SwpJIgANDOhwiYhDuiIaYPGB7Ujkx1q0UQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.47': + resolution: {integrity: sha512-Rxm5hYc0mGjwLh5sjlGmMygxAaV2gnsx7CNm2lsb47oyt5UQyPDZf3GP/ct8BEcwuikdqzsrrlIp8+kCSvMFNQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.47': + resolution: {integrity: sha512-YakuVe+Gc87jjxazBL34hbr8RJpRuFBhun7NEqoChVDlH5FLhLXjAPHqZd990TVGVNkemourf817Z8u2fONS8w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.47': + resolution: {integrity: sha512-ak2GvTFQz3UAOw8cuQq8pWE+TNygQB6O47rMhvevvTzETh7VkHRFtRUwJynX5hwzFvQMP6G0az5JrBGuwaMwYQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.47': + resolution: {integrity: sha512-o5BpmBnXU+Cj+9+ndMcdKjhZlPb79dVPBZnWwMnI4RlNSSq5yOvFZqvfPYbyacvnW03Na4n5XXQAPhu3RydZ0w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.47': + resolution: {integrity: sha512-FVOmfyYehNE92IfC9Kgs913UerDog2M1m+FADJypKz0gmRg3UyTt4o1cZMCAl7MiR89JpM9jegNO1nXuP1w1vw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.47': + resolution: {integrity: sha512-by/70F13IUE101Bat0oeH8miwWX5mhMFPk1yjCdxoTNHTyTdLgb0THNaebRM6AP7Kz+O3O2qx87sruYuF5UxHg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-beta.47': + resolution: {integrity: sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==} + '@rollup/plugin-alias@3.1.9': resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==} engines: {node: '>=8.0.0'} @@ -6462,6 +7552,11 @@ packages: cpu: [arm] os: [android] + '@rollup/rollup-android-arm-eabi@4.53.2': + resolution: {integrity: sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==} + cpu: [arm] + os: [android] + '@rollup/rollup-android-arm64@4.22.4': resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==} cpu: [arm64] @@ -6472,6 +7567,11 @@ packages: cpu: [arm64] os: [android] + '@rollup/rollup-android-arm64@4.53.2': + resolution: {integrity: sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==} + cpu: [arm64] + os: [android] + '@rollup/rollup-darwin-arm64@4.22.4': resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==} cpu: [arm64] @@ -6482,6 +7582,11 @@ packages: cpu: [arm64] os: [darwin] + '@rollup/rollup-darwin-arm64@4.53.2': + resolution: {integrity: sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==} + cpu: [arm64] + os: [darwin] + '@rollup/rollup-darwin-x64@4.22.4': resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==} cpu: [x64] @@ -6492,16 +7597,31 @@ packages: cpu: [x64] os: [darwin] + '@rollup/rollup-darwin-x64@4.53.2': + resolution: {integrity: sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==} + cpu: [x64] + os: [darwin] + '@rollup/rollup-freebsd-arm64@4.34.8': resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} cpu: [arm64] os: [freebsd] + '@rollup/rollup-freebsd-arm64@4.53.2': + resolution: {integrity: sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==} + cpu: [arm64] + os: [freebsd] + '@rollup/rollup-freebsd-x64@4.34.8': resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} cpu: [x64] os: [freebsd] + '@rollup/rollup-freebsd-x64@4.53.2': + resolution: {integrity: sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==} + cpu: [x64] + os: [freebsd] + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==} cpu: [arm] @@ -6512,6 +7632,11 @@ packages: cpu: [arm] os: [linux] + '@rollup/rollup-linux-arm-gnueabihf@4.53.2': + resolution: {integrity: sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==} + cpu: [arm] + os: [linux] + '@rollup/rollup-linux-arm-musleabihf@4.22.4': resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==} cpu: [arm] @@ -6522,6 +7647,11 @@ packages: cpu: [arm] os: [linux] + '@rollup/rollup-linux-arm-musleabihf@4.53.2': + resolution: {integrity: sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==} + cpu: [arm] + os: [linux] + '@rollup/rollup-linux-arm64-gnu@4.22.4': resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==} cpu: [arm64] @@ -6532,6 +7662,11 @@ packages: cpu: [arm64] os: [linux] + '@rollup/rollup-linux-arm64-gnu@4.53.2': + resolution: {integrity: sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==} + cpu: [arm64] + os: [linux] + '@rollup/rollup-linux-arm64-musl@4.22.4': resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==} cpu: [arm64] @@ -6542,6 +7677,16 @@ packages: cpu: [arm64] os: [linux] + '@rollup/rollup-linux-arm64-musl@4.53.2': + resolution: {integrity: sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.53.2': + resolution: {integrity: sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==} + cpu: [loong64] + os: [linux] + '@rollup/rollup-linux-loongarch64-gnu@4.34.8': resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} cpu: [loong64] @@ -6557,6 +7702,11 @@ packages: cpu: [ppc64] os: [linux] + '@rollup/rollup-linux-ppc64-gnu@4.53.2': + resolution: {integrity: sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==} + cpu: [ppc64] + os: [linux] + '@rollup/rollup-linux-riscv64-gnu@4.22.4': resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==} cpu: [riscv64] @@ -6567,6 +7717,16 @@ packages: cpu: [riscv64] os: [linux] + '@rollup/rollup-linux-riscv64-gnu@4.53.2': + resolution: {integrity: sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.53.2': + resolution: {integrity: sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==} + cpu: [riscv64] + os: [linux] + '@rollup/rollup-linux-s390x-gnu@4.22.4': resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==} cpu: [s390x] @@ -6577,6 +7737,11 @@ packages: cpu: [s390x] os: [linux] + '@rollup/rollup-linux-s390x-gnu@4.53.2': + resolution: {integrity: sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==} + cpu: [s390x] + os: [linux] + '@rollup/rollup-linux-x64-gnu@4.22.4': resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==} cpu: [x64] @@ -6587,6 +7752,11 @@ packages: cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-gnu@4.53.2': + resolution: {integrity: sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==} + cpu: [x64] + os: [linux] + '@rollup/rollup-linux-x64-musl@4.22.4': resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==} cpu: [x64] @@ -6597,6 +7767,16 @@ packages: cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-musl@4.53.2': + resolution: {integrity: sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openharmony-arm64@4.53.2': + resolution: {integrity: sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==} + cpu: [arm64] + os: [openharmony] + '@rollup/rollup-win32-arm64-msvc@4.22.4': resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==} cpu: [arm64] @@ -6607,6 +7787,11 @@ packages: cpu: [arm64] os: [win32] + '@rollup/rollup-win32-arm64-msvc@4.53.2': + resolution: {integrity: sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==} + cpu: [arm64] + os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.22.4': resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==} cpu: [ia32] @@ -6617,6 +7802,16 @@ packages: cpu: [ia32] os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.53.2': + resolution: {integrity: sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.53.2': + resolution: {integrity: sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==} + cpu: [x64] + os: [win32] + '@rollup/rollup-win32-x64-msvc@4.22.4': resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==} cpu: [x64] @@ -6627,6 +7822,11 @@ packages: cpu: [x64] os: [win32] + '@rollup/rollup-win32-x64-msvc@4.53.2': + resolution: {integrity: sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==} + cpu: [x64] + os: [win32] + '@rollup/wasm-node@4.27.3': resolution: {integrity: sha512-HlaetiNZq+cdDeebt6KagcsKeAWDTs+LZVBYBLIq+m6POIUXPMexJ+KwCU/cgqdtDhzUj7e8a144Gzo1YB58Ow==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -6647,6 +7847,10 @@ packages: resolution: {integrity: sha512-ZcsS3FyYdSkV6Br+vtYvn0eQP/H3AAZI4aBg3XVbIxRbWG5rChTqN5J9C8Ncl0VET7OAj+PeQwoFH6jFenVw0A==} 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'} + '@schematics/angular@21.0.0': + resolution: {integrity: sha512-50eEsBaT++Gwr+5FAhaKIzTUjpE1DJAwmE5QwtogbTnr2viZc8CsbFOfuMrokQbgdcXRvbkBDPXgO15STMcDRQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@sigstore/bundle@2.3.2': resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6655,6 +7859,10 @@ packages: resolution: {integrity: sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==} engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/bundle@4.0.0': + resolution: {integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==} + engines: {node: ^20.17.0 || >=22.9.0} + '@sigstore/core@1.1.0': resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6663,6 +7871,10 @@ packages: resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==} engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/core@3.0.0': + resolution: {integrity: sha512-NgbJ+aW9gQl/25+GIEGYcCyi8M+ng2/5X04BMuIgoDfgvp18vDcoNHOQjQsG9418HGNYRxG3vfEXaR1ayD37gg==} + engines: {node: ^20.17.0 || >=22.9.0} + '@sigstore/protobuf-specs@0.3.2': resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6671,6 +7883,10 @@ packages: resolution: {integrity: sha512-7MJXQhIm7dWF9zo7rRtMYh8d2gSnc3+JddeQOTIg6gUN7FjcuckZ9EwGq+ReeQtbbl3Tbf5YqRrWxA1DMfIn+w==} engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/protobuf-specs@0.5.0': + resolution: {integrity: sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==} + engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/sign@2.3.2': resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6679,6 +7895,10 @@ packages: resolution: {integrity: sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==} engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/sign@4.0.1': + resolution: {integrity: sha512-KFNGy01gx9Y3IBPG/CergxR9RZpN43N+lt3EozEfeoyqm8vEiLxwRl3ZO5sPx3Obv1ix/p7FWOlPc2Jgwfp9PA==} + engines: {node: ^20.17.0 || >=22.9.0} + '@sigstore/tuf@2.3.4': resolution: {integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6687,6 +7907,10 @@ packages: resolution: {integrity: sha512-eFFvlcBIoGwVkkwmTi/vEQFSva3xs5Ot3WmBcjgjVdiaoelBLQaQ/ZBfhlG0MnG0cmTYScPpk7eDdGDWUcFUmg==} engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/tuf@4.0.0': + resolution: {integrity: sha512-0QFuWDHOQmz7t66gfpfNO6aEjoFrdhkJaej/AOqb4kqWZVbPWFZifXZzkxyQBB1OwTbkhdT3LNpMFxwkTvf+2w==} + engines: {node: ^20.17.0 || >=22.9.0} + '@sigstore/verify@1.2.1': resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==} engines: {node: ^16.14.0 || >=18.0.0} @@ -6695,6 +7919,10 @@ packages: resolution: {integrity: sha512-hVJD77oT67aowHxwT4+M6PGOp+E2LtLdTK3+FC0lBO9T7sYwItDMXZ7Z07IDCvR1M717a4axbIWckrW67KMP/w==} engines: {node: ^18.17.0 || >=20.5.0} + '@sigstore/verify@3.0.0': + resolution: {integrity: sha512-moXtHH33AobOhTZF8xcX1MpOFqdvfCk7v6+teJL8zymBiDXwEsQH6XG9HGx2VIxnJZNm4cNSzflTLDnQLmIdmw==} + engines: {node: ^20.17.0 || >=22.9.0} + '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -6723,6 +7951,9 @@ packages: '@socket.io/component-emitter@3.1.2': resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + '@standard-schema/spec@1.0.0': + resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + '@storybook/addon-actions@7.6.19': resolution: {integrity: sha512-ATLrA5QKFJt7tIAScRHz5T3eBQ+RG3jaZk08L7gChvyQZhei8knWwePElZ7GaWbCr9BgznQp1lQUUXq/UUblAQ==} @@ -7088,6 +8319,13 @@ packages: resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==} engines: {node: ^18.17.0 || >=20.5.0} + '@tufjs/models@4.0.0': + resolution: {integrity: sha512-h5x5ga/hh82COe+GoD4+gKUeV4T3iaYOxqLt41GRKApinPI7DMidhCmNVTjKfhCWFJIGXaFJee07XczdT4jdZQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@tybys/wasm-util@0.10.1': + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + '@types/aria-query@5.0.4': resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} @@ -7697,6 +8935,12 @@ packages: peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 + '@vitejs/plugin-basic-ssl@2.1.0': + resolution: {integrity: sha512-dOxxrhgyDIEUADhb/8OlV9JIqYLgos03YorAueTIeOUskLJSEsfwCByjbu98ctXitUN3znXKp0bYD/WHSudCeA==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + peerDependencies: + vite: ^6.0.0 || ^7.0.0 + '@vitejs/plugin-react@4.4.1': resolution: {integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w==} engines: {node: ^14.18.0 || >=16.0.0} @@ -8023,6 +9267,10 @@ packages: resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} engines: {node: ^18.17.0 || >=20.5.0} + abbrev@4.0.0: + resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==} + engines: {node: ^20.17.0 || >=22.9.0} + abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -8111,10 +9359,6 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} - agent-base@7.1.1: - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} - engines: {node: '>= 14'} - agent-base@7.1.3: resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} engines: {node: '>= 14'} @@ -8173,6 +9417,10 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + algoliasearch@5.40.1: + resolution: {integrity: sha512-iUNxcXUNg9085TJx0HJLjqtDE0r1RZ0GOGrt8KNQqQT5ugu8lZsHuMUYW/e0lHhq6xBvmktU9Bw4CXP9VQeKrg==} + engines: {node: '>= 14.0.0'} + alien-signals@2.0.7: resolution: {integrity: sha512-wE7y3jmYeb0+h6mr5BOovuqhFv22O/MV9j5p0ndJsa7z1zJNPGQ4ph5pQk/kTTCWRC3xsA4SmtwmkzQO+7NCNg==} @@ -8575,6 +9823,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'} @@ -8635,6 +9890,13 @@ packages: peerDependencies: '@babel/core': ^7.8.0 + babel-loader@10.0.0: + resolution: {integrity: sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==} + engines: {node: ^18.20.0 || ^20.10.0 || >=22.0.0} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5.61.0' + babel-loader@9.1.3: resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} engines: {node: '>= 14.15.0'} @@ -8695,11 +9957,21 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.14: + resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.11.1: resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.13.0: + resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.6.0: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -8725,8 +9997,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.6.4: - resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==} + babel-plugin-polyfill-regenerator@0.6.5: + resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -8851,6 +10123,10 @@ packages: resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} engines: {node: '>=0.10.0'} + baseline-browser-mapping@2.8.29: + resolution: {integrity: sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==} + hasBin: true + basic-auth@2.0.1: resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} engines: {node: '>= 0.8'} @@ -8869,6 +10145,10 @@ packages: resolution: {integrity: sha512-p4AF8uYzm9Fwu8m/hSVTCPXrRBPmB34hQpHsec2KOaR9CZmgoU8IOv4Cvwq4hgz2p4hLMNbsdNl5XeA6XbAQwA==} engines: {node: '>=14.0.0'} + beasties@0.3.5: + resolution: {integrity: sha512-NaWu+f4YrJxEttJSm16AzMIFtVldCvaJ68b1L098KpqXmxt9xOLtKoLkKxb8ekhOrLqEJAbvT6n6SEvB/sac7A==} + engines: {node: '>=14.0.0'} + better-opn@3.0.2: resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} engines: {node: '>=12.0.0'} @@ -9016,6 +10296,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.28.0: + resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} @@ -9083,6 +10368,10 @@ packages: resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==} engines: {node: ^18.17.0 || >=20.5.0} + cacache@20.0.2: + resolution: {integrity: sha512-rVWvqtWcgSzB22wImrVto+7PmE+lUqv5dYzRHD0QJsfpSwTkW+GIqA4ykSt/CCjQlQle8USn8CO8vcWNrIqktg==} + engines: {node: ^20.17.0 || >=22.9.0} + cache-base@1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} @@ -9138,14 +10427,11 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001683: - resolution: {integrity: sha512-iqmNnThZ0n70mNwvxpEC2nBJ037ZHZUoBI5Gorh1Mw6IlEAZujEoU1tXA628iZfzm7R9FvFzxbfdgml82a3k8Q==} - caniuse-lite@1.0.30001716: resolution: {integrity: sha512-49/c1+x3Kwz7ZIWt+4DvK3aMJy9oYXXG6/97JKsnjdCk/6n9vVyWL8NAwVt95Lwt9eigI10Hl782kDfZUUlRXw==} - caniuse-lite@1.0.30001737: - resolution: {integrity: sha512-BiloLiXtQNrY5UyF0+1nSJLXUENuhka2pzy2Fx5pGxqavdrxSCW4U6Pn/PoG3Efspi2frRbHpBV2XsrPE6EDlw==} + caniuse-lite@1.0.30001755: + resolution: {integrity: sha512-44V+Jm6ctPj7R52Na4TLi3Zri4dWUljJd+RDm+j8LtNCc/ihLCT+X1TzoOAkRETEWqjuLnh9581Tl80FvK7jVA==} canvg@3.0.11: resolution: {integrity: sha512-5ON+q7jCTgMp9cjpu4Jo6XbvfYwSB2Ow3kzHKfIyJfaCAOHLbdKPQqGKgfED/R5B+3TFFfe8pegYA+b423SRyA==} @@ -9193,6 +10479,10 @@ packages: resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + chalk@5.6.2: + resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + change-case@5.4.4: resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} @@ -9212,6 +10502,9 @@ packages: chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + chardet@2.1.1: + resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} + check-error@1.0.3: resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} @@ -9345,6 +10638,10 @@ packages: resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} + cli-spinners@3.3.0: + resolution: {integrity: sha512-/+40ljC3ONVnYIttjMWrlL51nItDAbBrq2upN8BPyvGU/2n5Oxw3tbNwORCaNuNqLJnxGqOfjUuhsv7l5Q4IsQ==} + engines: {node: '>=18.20'} + cli-table3@0.6.5: resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} engines: {node: 10.* || >= 12.*} @@ -9357,6 +10654,10 @@ packages: resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} engines: {node: '>=18'} + cli-truncate@5.1.1: + resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==} + engines: {node: '>=20'} + cli-width@4.1.0: resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} engines: {node: '>= 12'} @@ -9371,6 +10672,10 @@ packages: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} + cliui@9.0.1: + resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} + engines: {node: '>=20'} + clone-buffer@1.0.0: resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} engines: {node: '>= 0.10'} @@ -9661,6 +10966,12 @@ packages: peerDependencies: webpack: ^5.1.0 + copy-webpack-plugin@13.0.1: + resolution: {integrity: sha512-J+YV3WfhY6W/Xf9h+J1znYuqTye2xkBUIGyTPWuBAT27qajBa5mR4f8WBmfDY3YjRftT2kqZZiLi1qf0H+UOFw==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: ^5.1.0 + core-js-compat@3.39.0: resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} @@ -9811,6 +11122,9 @@ packages: css-select@5.1.0: resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + css-select@6.0.0: + resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==} + css-selector-tokenizer@0.7.3: resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} @@ -9830,6 +11144,10 @@ packages: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} + css-what@7.0.0: + resolution: {integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==} + engines: {node: '>= 6'} + css.escape@1.5.1: resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} @@ -9984,6 +11302,15 @@ packages: supports-color: optional: true + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} @@ -10376,6 +11703,9 @@ packages: domutils@3.2.1: resolution: {integrity: sha512-xWXmuRnN9OMP6ptPd2+H0cCbcYBULa5YDTbMm/2lvkWvNA3O4wcW+GvzooqBuNM8yy6pl3VIAeJTUUWUbfI5Fw==} + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} @@ -10454,6 +11784,9 @@ packages: electron-to-chromium@1.5.208: resolution: {integrity: sha512-ozZyibehoe7tOhNaf16lKmljVf+3npZcJIEbJRVftVsmAg5TeA1mGS9dVCZzOwr2xT7xK15V0p7+GZqSPgkuPg==} + electron-to-chromium@1.5.255: + resolution: {integrity: sha512-Z9oIp4HrFF/cZkDPMpz2XSuVpc1THDpT4dlmATFlJUIBVCy9Vap5/rIXsASP1CscBacBqhabwh8vLctqBwEerQ==} + electron-to-chromium@1.5.63: resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==} @@ -10828,6 +12161,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild-wasm@0.26.0: + resolution: {integrity: sha512-9rZuermDo9ZbWvKBv/vDRaRciCpR4L3rEbZLDs5kDq3TrCHRQZaQipQeV9wK/btpLBzNUBujTrd1uorDxbL/GA==} + engines: {node: '>=18'} + hasBin: true + esbuild-windows-32@0.14.54: resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} engines: {node: '>=12'} @@ -10886,6 +12224,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild@0.26.0: + resolution: {integrity: sha512-3Hq7jri+tRrVWha+ZeIVhl4qJRha/XjRNSopvTsOaCvfPHrflTYTcUFcEjMKdxofsXXsdc4zjg5NOTnL4Gl57Q==} + engines: {node: '>=18'} + hasBin: true + escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -11470,8 +12813,9 @@ packages: fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} - fdir@6.4.4: - resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -11931,6 +13275,12 @@ packages: resolution: {integrity: sha512-R8z6eTB55t3QeZMmU1C+Gv+t5UnNRkA55c5yo67fAVfxODxieTwsjNG7utxS/73NdP1NbDgCrhVEg2h00y4fFw==} engines: {node: '>=10.13.0'} + glob-to-regex.js@1.2.0: + resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} @@ -12409,6 +13759,10 @@ packages: resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==} engines: {node: ^18.17.0 || >=20.5.0} + hosted-git-info@9.0.2: + resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==} + engines: {node: ^20.17.0 || >=22.9.0} + hpack.js@2.1.6: resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} @@ -12552,6 +13906,15 @@ packages: '@types/express': optional: true + http-proxy-middleware@2.0.9: + resolution: {integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true + http-proxy-middleware@3.0.5: resolution: {integrity: sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -12646,6 +14009,10 @@ packages: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} + iconv-lite@0.7.0: + resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==} + engines: {node: '>=0.10.0'} + icss-utils@5.1.0: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} @@ -12667,6 +14034,10 @@ packages: resolution: {integrity: sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ==} engines: {node: ^18.17.0 || >=20.5.0} + ignore-walk@8.0.0: + resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==} + engines: {node: ^20.17.0 || >=22.9.0} + ignore@4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} @@ -12772,6 +14143,10 @@ packages: resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==} engines: {node: ^18.17.0 || >=20.5.0} + ini@6.0.0: + resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==} + engines: {node: ^20.17.0 || >=22.9.0} + injection-js@2.4.0: resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==} @@ -13059,6 +14434,10 @@ packages: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} + is-interactive@2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} + is-jquery-obj@0.1.1: resolution: {integrity: sha512-18toSebUVF7y717dgw/Dzn6djOCqrkiDp3MhB8P6TdKyCVkbD1ZwE7Uz8Hwx6hUPTvKjbyYH9ncXT4ts4qLaSA==} deprecated: The is-jquery-obj package has reached end-of-life and will not receive further updates. @@ -13266,6 +14645,10 @@ packages: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} + is-url-superb@4.0.0: resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} engines: {node: '>=10'} @@ -13559,6 +14942,10 @@ packages: resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} + hasBin: true + jquery.tmpl@0.0.2: resolution: {integrity: sha512-ONpdW9JcxJxi5Eu9s640SdN0y/nSjnXAP24s3X/LeWlG4xA+hyuIcxEdTWZPy9scWC7owkEeSU6ReQvpbWhs7A==} @@ -13661,6 +15048,10 @@ packages: resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==} engines: {node: ^18.17.0 || >=20.5.0} + json-parse-even-better-errors@5.0.0: + resolution: {integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==} + engines: {node: ^20.17.0 || >=22.9.0} + json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} @@ -13889,6 +15280,19 @@ packages: webpack: optional: true + less-loader@12.3.0: + resolution: {integrity: sha512-0M6+uYulvYIWs52y0LqN4+QM9TqWAohYSNTo4htE8Z7Cn3G/qQMEmktfHmyJT23k+20kU9zHH2wrfFXkxNLtVw==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + less: ^3.5.0 || ^4.0.0 + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + less@4.2.0: resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==} engines: {node: '>=6'} @@ -13899,6 +15303,11 @@ packages: engines: {node: '>=6'} hasBin: true + less@4.4.2: + resolution: {integrity: sha512-j1n1IuTX1VQjIy3tT7cyGbX7nvQOsFLoIqobZv4ttI5axP923gA44zUj6miiA6R5Aoms4sEGVIIcucXUbRI14g==} + engines: {node: '>=14'} + hasBin: true + leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} @@ -14018,6 +15427,10 @@ packages: resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==} engines: {node: '>=18.0.0'} + listr2@9.0.5: + resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==} + engines: {node: '>=20.0.0'} + lmdb@2.8.5: resolution: {integrity: sha512-9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ==} hasBin: true @@ -14026,6 +15439,10 @@ packages: resolution: {integrity: sha512-SuHqzPl7mYStna8WRotY8XX/EUZBjjv3QyKIByeCLFfC9uXT/OIHByEcA07PzbMfQAM0KYJtLgtpMRlIe5dErQ==} hasBin: true + lmdb@3.4.3: + resolution: {integrity: sha512-GWV1kVi6uhrXWqe+3NXWO73OYe8fto6q8JMo0HOpk1vf8nEyFWgo4CSNJpIFzsOxOrysVUlcO48qRbQfmKd1gA==} + hasBin: true + load-json-file@1.1.0: resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} engines: {node: '>=0.10.0'} @@ -14150,6 +15567,10 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} + log-symbols@7.0.1: + resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==} + engines: {node: '>=18'} + log-update-async-hook@2.0.7: resolution: {integrity: sha512-V9KpD1AZUBd/oiZ+/Xsgd5rRP9awhgtRiDv5Am4VQCixiDnAbXMdt/yKz41kCzYZtVbwC6YCxnWEF3zjNEwktA==} @@ -14200,6 +15621,10 @@ packages: resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} engines: {node: 20 || >=22} + lru-cache@11.2.2: + resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==} + engines: {node: 20 || >=22} + lru-cache@2.6.3: resolution: {integrity: sha512-qkisDmHMe8gxKujmC1BdaqgkoFlioLDCUwaFBA3lX8Ilhr3YzsasbGYaiADMjxQnj+aiZUKgGKe/BN3skMwXWw==} @@ -14245,6 +15670,9 @@ packages: magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} + magic-string@0.30.8: resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==} engines: {node: '>=12'} @@ -14272,6 +15700,10 @@ packages: resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==} engines: {node: ^18.17.0 || >=20.5.0} + make-fetch-happen@15.0.3: + resolution: {integrity: sha512-iyyEpDty1mwW3dGlYXAJqC/azFn5PPvgKVwXayOGBSmKLxhKZ9fg4qIan2ePpp1vJIwfFiO34LAPZgq9SZW9Aw==} + engines: {node: ^20.17.0 || >=22.9.0} + make-iterator@1.0.1: resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==} engines: {node: '>=0.10.0'} @@ -14385,6 +15817,9 @@ packages: resolution: {integrity: sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==} engines: {node: '>= 4.0.0'} + memfs@4.51.0: + resolution: {integrity: sha512-4zngfkVM/GpIhC8YazOsM6E8hoB33NP0BCESPOA6z7qaL6umPJNqkO8CNYaLV2FB2MV6H1O3x2luHHOSqppv+A==} + memoizee@0.4.17: resolution: {integrity: sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==} engines: {node: '>=0.12'} @@ -14574,6 +16009,12 @@ packages: peerDependencies: webpack: ^5.0.0 + mini-css-extract-plugin@2.9.4: + resolution: {integrity: sha512-ZWYT7ln73Hptxqxk2DxPU9MmapXRhxkJD6tkSR04dnQxm8BGu2hzgKLugK5yySD97u/8yy7Ma7E76k9ZdvtjkQ==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} @@ -14630,6 +16071,10 @@ packages: resolution: {integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==} engines: {node: ^18.17.0 || >=20.5.0} + minipass-fetch@5.0.0: + resolution: {integrity: sha512-fiCdUALipqgPWrOVTz9fw0XhcazULXOSU6ie40DDbX1F49p1dBrSRBuswndTx1x3vEb/g0FT7vC4c4C2u/mh3A==} + engines: {node: ^20.17.0 || >=22.9.0} + minipass-flush@1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} @@ -14665,8 +16110,8 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} - minizlib@3.0.2: - resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} + minizlib@3.1.0: + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} engines: {node: '>= 18'} mitt@3.0.1: @@ -14794,6 +16239,11 @@ packages: nan@2.22.0: resolution: {integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==} + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -14934,6 +16384,11 @@ packages: engines: {node: ^18.17.0 || >=20.5.0} hasBin: true + node-gyp@12.1.0: + resolution: {integrity: sha512-W+RYA8jBnhSr2vrTtlPYPc1K+CSjGpVDRZxcqJcERZ8ND3A1ThWPHRwctTx3qC3oW99jt726jhdz3Y6ky87J4g==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} @@ -14949,6 +16404,9 @@ packages: node-releases@2.0.19: resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + node-source-walk@6.0.2: resolution: {integrity: sha512-jn9vOIK/nfqoFCcpK89/VCVaLg1IHE6UVfDOzvqmANaJ/rWCTEdH8RZ1V278nv2jr36BJdyQXIAavBLXpzdlag==} engines: {node: '>=14'} @@ -14983,6 +16441,11 @@ packages: engines: {node: ^18.17.0 || >=20.5.0} hasBin: true + nopt@9.0.0: + resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} @@ -15030,6 +16493,10 @@ packages: resolution: {integrity: sha512-u6DCwbow5ynAX5BdiHQ9qvexme4U3qHW3MWe5NqH+NeBm0LbiH6zvGjNNew1fY+AZZUtVHbOPF3j7mJxbUzpXg==} engines: {node: ^18.17.0 || >=20.5.0} + npm-install-checks@8.0.0: + resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==} + engines: {node: ^20.17.0 || >=22.9.0} + npm-normalize-package-bin@3.0.1: resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -15038,6 +16505,10 @@ packages: resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==} engines: {node: ^18.17.0 || >=20.5.0} + npm-normalize-package-bin@5.0.0: + resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==} + engines: {node: ^20.17.0 || >=22.9.0} + npm-package-arg@11.0.1: resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} engines: {node: ^16.14.0 || >=18.0.0} @@ -15046,6 +16517,14 @@ packages: resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==} engines: {node: ^18.17.0 || >=20.5.0} + npm-package-arg@13.0.1: + resolution: {integrity: sha512-6zqls5xFvJbgFjB1B2U6yITtyGBjDBORB7suI4zA4T/sZ1OmkMFlaQSNB/4K0LtXNA1t4OprAFxPisadK5O2ag==} + engines: {node: ^20.17.0 || >=22.9.0} + + npm-packlist@10.0.3: + resolution: {integrity: sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg==} + engines: {node: ^20.17.0 || >=22.9.0} + npm-packlist@8.0.2: resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -15058,6 +16537,10 @@ packages: resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==} engines: {node: ^18.17.0 || >=20.5.0} + npm-pick-manifest@11.0.3: + resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==} + engines: {node: ^20.17.0 || >=22.9.0} + npm-pick-manifest@9.0.0: resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==} engines: {node: ^16.14.0 || >=18.0.0} @@ -15070,6 +16553,10 @@ packages: resolution: {integrity: sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==} engines: {node: ^18.17.0 || >=20.5.0} + npm-registry-fetch@19.1.1: + resolution: {integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==} + engines: {node: ^20.17.0 || >=22.9.0} + npm-run-all@4.1.5: resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} engines: {node: '>= 4'} @@ -15261,6 +16748,10 @@ packages: resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} engines: {node: '>=18'} + open@10.2.0: + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + engines: {node: '>=18'} + open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} @@ -15299,6 +16790,10 @@ packages: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} + ora@9.0.0: + resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==} + engines: {node: '>=20'} + ordered-binary@1.5.3: resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==} @@ -15412,6 +16907,11 @@ packages: engines: {node: ^18.17.0 || >=20.5.0} hasBin: true + pacote@21.0.3: + resolution: {integrity: sha512-itdFlanxO0nmQv4ORsvA9K1wv40IPfB9OmWqfaJWvoJ30VKyHsqNgDVeG+TVhI7Gk7XW8slUy7cA9r6dF5qohw==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} @@ -15477,12 +16977,18 @@ packages: parse5-html-rewriting-stream@7.0.0: resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==} + parse5-html-rewriting-stream@8.0.0: + resolution: {integrity: sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==} + parse5-htmlparser2-tree-adapter@6.0.1: resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} parse5-sax-parser@7.0.0: resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==} + parse5-sax-parser@8.0.0: + resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==} + parse5@1.5.1: resolution: {integrity: sha512-w2jx/0tJzvgKwZa58sj2vAYq/S/K1QJfIB3cWYea/Iu1scFPDQQ3IQiVZTHWtRBwAjv2Yd7S/xeZf3XqLDb3bA==} @@ -15495,6 +17001,9 @@ packages: parse5@7.2.1: resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + parse5@8.0.0: + resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==} + parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} @@ -15633,6 +17142,10 @@ packages: resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} engines: {node: '>=12'} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + pidtree@0.3.1: resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} engines: {node: '>=0.10'} @@ -15684,6 +17197,10 @@ packages: piscina@4.8.0: resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==} + piscina@5.1.3: + resolution: {integrity: sha512-0u3N7H4+hbr40KjuVn2uNhOcthu/9usKhnw5vT3J7ply79v3D3M8naI00el9Klcy16x557VsEkkUQaHCWFXC/g==} + engines: {node: '>=20.x'} + pkce-challenge@5.0.0: resolution: {integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==} engines: {node: '>=16.20.0'} @@ -15777,6 +17294,19 @@ packages: webpack: optional: true + postcss-loader@8.2.0: + resolution: {integrity: sha512-tHX+RkpsXVcc7st4dSdDGliI+r4aAQDuv+v3vFYHixb6YgjreG5AG4SEB0kDK8u2s6htqEEpKlkhSBUTvWKYnA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + postcss-media-query-parser@0.2.3: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} @@ -15858,6 +17388,10 @@ packages: resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} engines: {node: ^10 || ^12 || >=14} + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + posthtml-parser@0.10.2: resolution: {integrity: sha512-PId6zZ/2lyJi9LiKfe+i2xv57oEjJgWbsHGGANwos5AvdQp98i6AtamAl8gzSVFGfQ43Glb5D614cvZf012VKg==} engines: {node: '>=12'} @@ -15943,6 +17477,10 @@ packages: resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==} engines: {node: ^18.17.0 || >=20.5.0} + proc-log@6.0.0: + resolution: {integrity: sha512-KG/XsTDN901PNfPfAMmj6N/Ywg9tM+bHK8pAz+27fS4N4Pcr+4zoYBOcGSBu6ceXYNPxkLpa4ohtfxV1XcLAfA==} + engines: {node: ^20.17.0 || >=22.9.0} + process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} @@ -16638,6 +18176,11 @@ packages: engines: {node: '>= 0.4'} hasBin: true + resolve@1.22.11: + resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + engines: {node: '>= 0.4'} + hasBin: true + resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true @@ -16699,6 +18242,11 @@ packages: ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + rolldown@1.0.0-beta.47: + resolution: {integrity: sha512-Mid74GckX1OeFAOYz9KuXeWYhq3xkXbMziYIC+ULVdUzPTG9y70OBSBQDQn9hQP8u/AfhuYw1R0BSg15nBI4Dg==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + rollup@0.58.2: resolution: {integrity: sha512-RZVvCWm9BHOYloaE6LLiE/ibpjv1CmI8F8k0B0Cp+q1eezo3cswszJH1DN0djgzSlo0hjuuCmyeI+1XOYLl4wg==} hasBin: true @@ -16713,6 +18261,11 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rollup@4.53.2: + resolution: {integrity: sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + router@2.2.0: resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} engines: {node: '>= 18'} @@ -16748,6 +18301,9 @@ packages: rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + sade@1.8.1: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} engines: {node: '>=6'} @@ -16965,6 +18521,11 @@ packages: engines: {node: '>=14.0.0'} hasBin: true + sass@1.93.2: + resolution: {integrity: sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==} + engines: {node: '>=14.0.0'} + hasBin: true + sax@1.4.1: resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} @@ -17000,6 +18561,10 @@ packages: resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} engines: {node: '>= 10.13.0'} + schema-utils@4.3.3: + resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} + engines: {node: '>= 10.13.0'} + secure-compare@3.0.1: resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} @@ -17061,6 +18626,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + send@0.19.0: resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} @@ -17205,6 +18775,10 @@ packages: resolution: {integrity: sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==} engines: {node: ^18.17.0 || >=20.5.0} + sigstore@4.0.0: + resolution: {integrity: sha512-Gw/FgHtrLM9WP8P5lLcSGh9OQcrTruWCELAiS48ik1QbL0cH+dfjomiRTUE9zzz+D1N6rOLkwXUvVmXZAsNE0Q==} + engines: {node: ^20.17.0 || >=22.9.0} + simple-concat@1.0.1: resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} @@ -17342,6 +18916,10 @@ packages: resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} engines: {node: '>= 8'} + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + sourcemap-codec@1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} deprecated: Please use @jridgewell/sourcemap-codec instead @@ -17408,6 +18986,10 @@ packages: resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==} engines: {node: ^18.17.0 || >=20.5.0} + ssri@13.0.0: + resolution: {integrity: sha512-yizwGBpbCn4YomB2lzhZqrHLJoqFGXihNbib3ozhqF/cIp5ue+xSmOQrjNasEE62hFxsCcg/V/z23t4n8jMEng==} + engines: {node: ^20.17.0 || >=22.9.0} + stable@0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' @@ -17445,6 +19027,10 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} + stdin-discarder@0.2.2: + resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} + engines: {node: '>=18'} + stop-iteration-iterator@1.0.0: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} engines: {node: '>= 0.4'} @@ -17527,6 +19113,10 @@ packages: resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} engines: {node: '>=18'} + string-width@8.1.0: + resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==} + engines: {node: '>=20'} + string.prototype.codepointat@0.2.1: resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==} @@ -17592,6 +19182,10 @@ packages: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} + strip-ansi@7.1.2: + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} + engines: {node: '>=12'} + strip-bom-stream@2.0.0: resolution: {integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==} engines: {node: '>=0.10.0'} @@ -17839,6 +19433,10 @@ packages: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} + tapable@2.3.0: + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} + engines: {node: '>=6'} + tar-fs@2.1.1: resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} @@ -17856,8 +19454,8 @@ packages: resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} - tar@7.4.3: - resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} + tar@7.5.2: + resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==} engines: {node: '>=18'} teex@1.0.1: @@ -17942,6 +19540,11 @@ packages: engines: {node: '>=10'} hasBin: true + terser@5.44.0: + resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==} + engines: {node: '>=10'} + hasBin: true + test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -18023,8 +19626,8 @@ packages: resolution: {integrity: sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==} engines: {node: '>=8'} - thingies@1.21.0: - resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==} + thingies@2.5.0: + resolution: {integrity: sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==} engines: {node: '>=10.18'} peerDependencies: tslib: ^2 @@ -18084,8 +19687,8 @@ packages: tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - tinyglobby@0.2.13: - resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} tinyspy@2.2.1: @@ -18174,8 +19777,8 @@ packages: engines: {node: '>=0.10'} hasBin: true - tree-dump@1.0.2: - resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==} + tree-dump@1.1.0: + resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==} engines: {node: '>=10.0'} peerDependencies: tslib: '2' @@ -18367,6 +19970,10 @@ packages: resolution: {integrity: sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA==} engines: {node: ^18.17.0 || >=20.5.0} + tuf-js@4.0.0: + resolution: {integrity: sha512-Lq7ieeGvXDXwpoSmOSgLWVdsGGV9J4a77oDTAPe/Ltrqnnm/ETaRlBAQTH5JatEh8KXuE6sddf9qAv1Q2282Hg==} + engines: {node: ^20.17.0 || >=22.9.0} + tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} @@ -18500,6 +20107,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + ua-parser-js@0.7.39: resolution: {integrity: sha512-IZ6acm6RhQHNibSt7+c09hhvsKy9WUr4DVbeq9U8o71qxyYtJpQeDxQnMrVqnIFMLcQjHO0I9wgfO2vIahht4w==} hasBin: true @@ -18552,6 +20164,10 @@ packages: resolution: {integrity: sha512-KyhzaLJnV1qa3BSHdj4AZ2ndqI0QWPxYzaIOio0WzcEJB9gvuysprJSLtpvc2D9mhR9jPDUk7xlJlZbH2KR5iw==} engines: {node: '>=18.0'} + undici@7.16.0: + resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} + engines: {node: '>=20.18.1'} + unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} @@ -18689,6 +20305,12 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + update-browserslist-db@1.1.4: + resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -18998,6 +20620,46 @@ packages: yaml: optional: true + vite@7.2.2: + resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vm-browserify@1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} @@ -19087,6 +20749,10 @@ packages: resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} engines: {node: '>=10.13.0'} + watchpack@2.4.4: + resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==} + engines: {node: '>=10.13.0'} + wbuf@1.7.3: resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} @@ -19180,6 +20846,15 @@ packages: webpack: optional: true + webpack-dev-middleware@7.4.5: + resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: ^5.0.0 + peerDependenciesMeta: + webpack: + optional: true + webpack-dev-server@4.15.1: resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==} engines: {node: '>= 12.13.0'} @@ -19219,6 +20894,19 @@ packages: webpack-cli: optional: true + webpack-dev-server@5.2.2: + resolution: {integrity: sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==} + engines: {node: '>= 18.12.0'} + hasBin: true + peerDependencies: + webpack: ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + webpack-hot-middleware@2.26.1: resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} @@ -19273,6 +20961,16 @@ packages: webpack-cli: optional: true + webpack@5.102.1: + resolution: {integrity: sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + webpack@5.94.0: resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==} engines: {node: '>=10.13.0'} @@ -19384,6 +21082,11 @@ packages: engines: {node: ^18.17.0 || >=20.5.0} hasBin: true + which@6.0.0: + resolution: {integrity: sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + wildcard@2.0.1: resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} @@ -19487,6 +21190,10 @@ packages: utf-8-validate: optional: true + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + xhr2@0.2.1: resolution: {integrity: sha512-sID0rrVCqkVNUn8t6xuv9+6FViXjUVXq8H5rWOH2rz9fDNQEd4g0EA2XlcEdJXRz5BMEn4O1pJFdT+z4YHhoWw==} engines: {node: '>= 6'} @@ -19548,6 +21255,10 @@ packages: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} + yargs-parser@22.0.0: + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} + yargs-parser@5.0.1: resolution: {integrity: sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==} @@ -19559,6 +21270,10 @@ packages: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} + yargs@18.0.0: + resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} + yargs@7.1.2: resolution: {integrity: sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==} @@ -19577,8 +21292,12 @@ packages: resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} - yoctocolors-cjs@2.1.2: - resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==} + yoctocolors-cjs@2.1.3: + resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} + engines: {node: '>=18'} + + yoctocolors@2.1.2: + resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} engines: {node: '>=18'} zip-stream@6.0.1: @@ -19596,6 +21315,9 @@ packages: zod@3.24.4: resolution: {integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==} + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + zone.js@0.10.3: resolution: {integrity: sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==} @@ -19605,6 +21327,9 @@ packages: zone.js@0.15.0: resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==} + zone.js@0.15.1: + resolution: {integrity: sha512-XE96n56IQpJM7NAoXswY3XRLcWFW83xe0BiAOeMD7K5k5xecOeul3Qcpx6GqEeeHNkW5DWL5zOyTbEfB4eti8w==} + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -19612,18 +21337,102 @@ snapshots: '@adobe/css-tools@4.4.1': {} + '@algolia/abtesting@1.6.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-abtesting@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-analytics@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-common@5.40.1': {} + + '@algolia/client-insights@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-personalization@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-query-suggestions@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-search@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/ingestion@1.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/monitoring@1.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/recommend@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/requester-browser-xhr@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + + '@algolia/requester-fetch@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + + '@algolia/requester-node-http@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@analogjs/vite-plugin-angular@1.15.1(dvldxnmbhrokhmzfh5rgseo6am)': + '@analogjs/vite-plugin-angular@1.15.1(j2c5645uxizqmhfhgfup3zsywe)': dependencies: ts-morph: 21.0.1 vfile: 6.0.3 optionalDependencies: - '@angular-devkit/build-angular': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(chokidar@4.0.1)(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(jiti@1.21.6)(karma@6.4.4)(lightningcss@1.28.1)(sass-embedded@1.66.0)(typescript@5.8.3)(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(yaml@2.5.0) - '@angular/build': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@types/node@20.14.5)(chokidar@4.0.1)(jiti@1.21.6)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0) + '@angular-devkit/build-angular': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(chokidar@4.0.1)(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(jiti@2.6.1)(karma@6.4.4)(lightningcss@1.28.1)(sass-embedded@1.66.0)(typescript@5.8.3)(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(yaml@2.5.0) + '@angular/build': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@types/node@20.14.5)(chokidar@4.0.1)(jiti@2.6.1)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0) '@angular-devkit/architect@0.1703.11(chokidar@3.6.0)': dependencies: @@ -19646,98 +21455,12 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@17.3.11(knttvfyutxltnyggdtp5kkscoe)': + '@angular-devkit/architect@0.2100.0(chokidar@4.0.1)': dependencies: - '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0) - '@angular-devkit/build-webpack': 0.1703.11(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)))(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - '@angular-devkit/core': 17.3.11(chokidar@3.6.0) - '@angular/compiler-cli': 17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5) - '@babel/core': 7.24.0 - '@babel/generator': 7.23.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.0) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.0) - '@babel/plugin-transform-runtime': 7.24.0(@babel/core@7.24.0) - '@babel/preset-env': 7.24.0(@babel/core@7.24.0) - '@babel/runtime': 7.24.0 - '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 17.3.11(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5))(typescript@5.4.5)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.8(@types/node@18.19.64)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1)) - ansi-colors: 4.1.3 - autoprefixer: 10.4.18(postcss@8.4.35) - babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - babel-plugin-istanbul: 6.1.1 - browserslist: 4.24.4 - copy-webpack-plugin: 11.0.0(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - critters: 0.0.22 - css-loader: 6.10.0(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - esbuild-wasm: 0.20.1 - fast-glob: 3.3.2 - http-proxy-middleware: 2.0.7(@types/express@4.17.21) - https-proxy-agent: 7.0.4 - inquirer: 9.2.15 - jsonc-parser: 3.2.1 - karma-source-map-support: 1.4.0 - less: 4.2.0 - less-loader: 11.1.0(less@4.2.0)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - license-webpack-plugin: 4.0.2(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - loader-utils: 3.2.1 - magic-string: 0.30.8 - mini-css-extract-plugin: 2.8.1(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - mrmime: 2.0.0 - open: 8.4.2 - ora: 5.4.1 - parse5-html-rewriting-stream: 7.0.0 - picomatch: 4.0.1 - piscina: 4.4.0 - postcss: 8.4.35 - postcss-loader: 8.1.1(postcss@8.4.35)(typescript@5.4.5)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - resolve-url-loader: 5.0.0 - rxjs: 7.8.1 - sass: 1.71.1 - sass-loader: 14.1.1(sass-embedded@1.66.0)(sass@1.71.1)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - semver: 7.6.0 - source-map-loader: 5.0.0(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - source-map-support: 0.5.21 - terser: 5.29.1 - tree-kill: 1.2.2 - tslib: 2.6.2 - typescript: 5.4.5 - undici: 6.11.1 - vite: 5.1.8(@types/node@18.19.64)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1) - watchpack: 2.4.0 - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) - webpack-dev-middleware: 6.1.2(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - webpack-dev-server: 4.15.1(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - webpack-merge: 5.10.0 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)))(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - optionalDependencies: - '@angular/platform-server': 17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))) - esbuild: 0.20.1 - jest: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) - jest-environment-jsdom: 29.7.0 - karma: 6.4.4 - ng-packagr: 17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5))(tslib@2.8.1)(typescript@5.4.5) + '@angular-devkit/core': 21.0.0(chokidar@4.0.1) + rxjs: 7.8.2 transitivePeerDependencies: - - '@rspack/core' - - '@swc/core' - - '@types/express' - - '@types/node' - - bufferutil - chokidar - - debug - - html-webpack-plugin - - lightningcss - - node-sass - - sass-embedded - - stylus - - sugarss - - supports-color - - uglify-js - - utf-8-validate - - webpack-cli '@angular-devkit/build-angular@17.3.11(qwvpz4std2ihowmewzmfizrlqa)': dependencies: @@ -19832,13 +21555,13 @@ snapshots: - utf-8-validate - webpack-cli - '@angular-devkit/build-angular@19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(chokidar@4.0.1)(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(jiti@1.21.6)(karma@6.4.4)(lightningcss@1.28.1)(sass-embedded@1.66.0)(typescript@5.8.3)(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(yaml@2.5.0)': + '@angular-devkit/build-angular@19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(chokidar@4.0.1)(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(jiti@2.6.1)(karma@6.4.4)(lightningcss@1.28.1)(sass-embedded@1.66.0)(typescript@5.8.3)(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(yaml@2.5.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.10(chokidar@4.0.1) '@angular-devkit/build-webpack': 0.1902.10(chokidar@4.0.1)(webpack-dev-server@5.2.0(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) '@angular-devkit/core': 19.2.10(chokidar@4.0.1) - '@angular/build': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@types/node@20.14.5)(chokidar@4.0.1)(jiti@1.21.6)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0) + '@angular/build': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@types/node@20.14.5)(chokidar@4.0.1)(jiti@2.6.1)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0) '@angular/compiler-cli': 19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3) '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -19851,7 +21574,7 @@ snapshots: '@babel/runtime': 7.26.10 '@discoveryjs/json-ext': 0.6.3 '@ngtools/webpack': 19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0)) ansi-colors: 4.1.3 autoprefixer: 10.4.20(postcss@8.5.2) babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) @@ -19893,7 +21616,7 @@ snapshots: webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)))(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) optionalDependencies: esbuild: 0.25.1 - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-environment-jsdom: 29.7.0 karma: 6.4.4 transitivePeerDependencies: @@ -19919,6 +21642,94 @@ snapshots: - webpack-cli - yaml + '@angular-devkit/build-angular@21.0.0(kbak2tlabi5twzjh2dj7fmulsa)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2100.0(chokidar@4.0.1) + '@angular-devkit/build-webpack': 0.2100.0(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)))(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + '@angular-devkit/core': 21.0.0(chokidar@4.0.1) + '@angular/build': 21.0.0(v3rmo4a6vpvxzk5xpmxvl4rre4) + '@angular/compiler-cli': 21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3) + '@babel/core': 7.28.4 + '@babel/generator': 7.28.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4) + '@babel/preset-env': 7.28.3(@babel/core@7.28.4) + '@babel/runtime': 7.28.4 + '@discoveryjs/json-ext': 0.6.3 + '@ngtools/webpack': 21.0.0(@angular/compiler-cli@21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + ansi-colors: 4.1.3 + autoprefixer: 10.4.21(postcss@8.5.6) + babel-loader: 10.0.0(@babel/core@7.28.4)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + browserslist: 4.28.0 + copy-webpack-plugin: 13.0.1(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + css-loader: 7.1.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + esbuild-wasm: 0.26.0 + http-proxy-middleware: 3.0.5 + istanbul-lib-instrument: 6.0.3 + jsonc-parser: 3.3.1 + karma-source-map-support: 1.4.0 + less: 4.4.2 + less-loader: 12.3.0(less@4.4.2)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + license-webpack-plugin: 4.0.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + loader-utils: 3.3.1 + mini-css-extract-plugin: 2.9.4(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + open: 10.2.0 + ora: 9.0.0 + picomatch: 4.0.3 + piscina: 5.1.3 + postcss: 8.5.6 + postcss-loader: 8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + resolve-url-loader: 5.0.0 + rxjs: 7.8.2 + sass: 1.93.2 + sass-loader: 16.0.5(sass@1.93.2)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + semver: 7.7.3 + source-map-loader: 5.0.0(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + source-map-support: 0.5.21 + terser: 5.44.0 + tinyglobby: 0.2.15 + tree-kill: 1.2.2 + tslib: 2.8.1 + typescript: 5.9.3 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + webpack-dev-middleware: 7.4.5(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + webpack-dev-server: 5.2.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + webpack-merge: 6.0.1 + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)))(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + optionalDependencies: + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) + '@angular/platform-server': 21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1) + esbuild: 0.26.0 + jest: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) + karma: 6.4.4 + transitivePeerDependencies: + - '@angular/compiler' + - '@rspack/core' + - '@swc/core' + - '@types/node' + - bufferutil + - chokidar + - debug + - html-webpack-plugin + - jiti + - lightningcss + - node-sass + - sass-embedded + - stylus + - sugarss + - supports-color + - tsx + - uglify-js + - utf-8-validate + - vitest + - webpack-cli + - yaml + '@angular-devkit/build-webpack@0.1703.11(chokidar@3.6.0)(webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)))(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1))': dependencies: '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0) @@ -19937,6 +21748,15 @@ snapshots: transitivePeerDependencies: - chokidar + '@angular-devkit/build-webpack@0.2100.0(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)))(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0))': + dependencies: + '@angular-devkit/architect': 0.2100.0(chokidar@4.0.1) + rxjs: 7.8.2 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + webpack-dev-server: 5.2.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + transitivePeerDependencies: + - chokidar + '@angular-devkit/core@16.2.16': dependencies: ajv: 8.12.0 @@ -19977,6 +21797,17 @@ snapshots: optionalDependencies: chokidar: 4.0.1 + '@angular-devkit/core@21.0.0(chokidar@4.0.1)': + dependencies: + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + jsonc-parser: 3.3.1 + picomatch: 4.0.3 + rxjs: 7.8.2 + source-map: 0.7.6 + optionalDependencies: + chokidar: 4.0.1 + '@angular-devkit/schematics@16.2.16': dependencies: '@angular-devkit/core': 16.2.16 @@ -20007,12 +21838,27 @@ snapshots: transitivePeerDependencies: - chokidar + '@angular-devkit/schematics@21.0.0(chokidar@4.0.1)': + dependencies: + '@angular-devkit/core': 21.0.0(chokidar@4.0.1) + jsonc-parser: 3.3.1 + magic-string: 0.30.19 + ora: 9.0.0 + rxjs: 7.8.2 + transitivePeerDependencies: + - chokidar + '@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))': dependencies: '@angular/core': 17.3.12(rxjs@7.8.1)(zone.js@0.14.10) tslib: 2.8.1 - '@angular/build@19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@types/node@20.14.5)(chokidar@4.0.1)(jiti@1.21.6)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0)': + '@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))': + dependencies: + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + tslib: 2.6.3 + + '@angular/build@19.2.10(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@types/node@20.14.5)(chokidar@4.0.1)(jiti@2.6.1)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.10(chokidar@4.0.1) @@ -20023,9 +21869,9 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) '@inquirer/confirm': 5.1.6(@types/node@20.14.5) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0)) beasties: 0.3.2 - browserslist: 4.25.3 + browserslist: 4.28.0 esbuild: 0.25.1 fast-glob: 3.3.3 https-proxy-agent: 7.0.6 @@ -20041,7 +21887,7 @@ snapshots: semver: 7.7.1 source-map-support: 0.5.21 typescript: 5.8.3 - vite: 6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) + vite: 6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) watchpack: 2.4.2 optionalDependencies: karma: 6.4.4 @@ -20061,6 +21907,60 @@ snapshots: - tsx - yaml + '@angular/build@21.0.0(v3rmo4a6vpvxzk5xpmxvl4rre4)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2100.0(chokidar@4.0.1) + '@angular/compiler': 21.0.0 + '@angular/compiler-cli': 21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3) + '@babel/core': 7.28.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@inquirer/confirm': 5.1.19(@types/node@18.19.64) + '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.2(@types/node@18.19.64)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.28.1)(sass@1.93.2)(terser@5.44.0)(yaml@2.5.0)) + beasties: 0.3.5 + browserslist: 4.28.0 + esbuild: 0.26.0 + https-proxy-agent: 7.0.6 + istanbul-lib-instrument: 6.0.3 + jsonc-parser: 3.3.1 + listr2: 9.0.5 + magic-string: 0.30.19 + mrmime: 2.0.1 + parse5-html-rewriting-stream: 8.0.0 + picomatch: 4.0.3 + piscina: 5.1.3 + rolldown: 1.0.0-beta.47 + sass: 1.93.2 + semver: 7.7.3 + source-map-support: 0.5.21 + tinyglobby: 0.2.15 + tslib: 2.8.1 + typescript: 5.9.3 + undici: 7.16.0 + vite: 7.2.2(@types/node@18.19.64)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.28.1)(sass@1.93.2)(terser@5.44.0)(yaml@2.5.0) + watchpack: 2.4.4 + optionalDependencies: + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) + '@angular/platform-server': 21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1) + karma: 6.4.4 + less: 4.4.2 + lmdb: 3.4.3 + postcss: 8.5.6 + transitivePeerDependencies: + - '@types/node' + - chokidar + - jiti + - lightningcss + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + '@angular/cli@17.3.11(chokidar@3.6.0)': dependencies: '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0) @@ -20110,10 +22010,36 @@ snapshots: - chokidar - supports-color - '@angular/common@11.2.14(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)': + '@angular/cli@21.0.0(@types/node@18.19.64)(chokidar@4.0.1)': dependencies: - '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) - rxjs: 7.8.1 + '@angular-devkit/architect': 0.2100.0(chokidar@4.0.1) + '@angular-devkit/core': 21.0.0(chokidar@4.0.1) + '@angular-devkit/schematics': 21.0.0(chokidar@4.0.1) + '@inquirer/prompts': 7.9.0(@types/node@18.19.64) + '@listr2/prompt-adapter-inquirer': 3.0.5(@inquirer/prompts@7.9.0(@types/node@18.19.64))(@types/node@18.19.64)(listr2@9.0.5) + '@modelcontextprotocol/sdk': 1.20.1 + '@schematics/angular': 21.0.0(chokidar@4.0.1) + '@yarnpkg/lockfile': 1.1.0 + algoliasearch: 5.40.1 + ini: 5.0.0 + jsonc-parser: 3.3.1 + listr2: 9.0.5 + npm-package-arg: 13.0.1 + pacote: 21.0.3 + parse5-html-rewriting-stream: 8.0.0 + resolve: 1.22.11 + semver: 7.7.3 + yargs: 18.0.0 + zod: 3.25.76 + transitivePeerDependencies: + - '@types/node' + - chokidar + - supports-color + + '@angular/common@11.2.14(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': + dependencies: + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1) + rxjs: 7.8.2 tslib: 2.6.3 '@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)': @@ -20128,6 +22054,12 @@ snapshots: rxjs: 7.8.1 tslib: 2.6.3 + '@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1)': + dependencies: + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + rxjs: 7.8.1 + tslib: 2.6.3 + '@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5)': dependencies: '@angular/compiler': 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)) @@ -20158,6 +22090,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@angular/compiler-cli@21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3)': + dependencies: + '@angular/compiler': 21.0.0 + '@babel/core': 7.28.4 + '@jridgewell/sourcemap-codec': 1.5.5 + chokidar: 4.0.1 + convert-source-map: 1.9.0 + reflect-metadata: 0.2.2 + semver: 7.7.3 + tslib: 2.6.3 + yargs: 18.0.0 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))': dependencies: tslib: 2.6.3 @@ -20168,6 +22116,10 @@ snapshots: dependencies: tslib: 2.6.3 + '@angular/compiler@21.0.0': + dependencies: + tslib: 2.6.3 + '@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)': dependencies: rxjs: 7.8.1 @@ -20180,6 +22132,22 @@ snapshots: tslib: 2.6.3 zone.js: 0.15.0 + '@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)': + dependencies: + rxjs: 7.8.1 + tslib: 2.6.3 + optionalDependencies: + '@angular/compiler': 21.0.0 + zone.js: 0.15.1 + + '@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1)': + dependencies: + rxjs: 7.8.2 + tslib: 2.6.3 + optionalDependencies: + '@angular/compiler': 21.0.0 + zone.js: 0.15.1 + '@angular/forms@17.3.12(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)': dependencies: '@angular/common': 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1) @@ -20196,6 +22164,15 @@ snapshots: rxjs: 7.8.1 tslib: 2.6.3 + '@angular/forms@21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@standard-schema/spec@1.0.0)(rxjs@7.8.1)': + dependencies: + '@angular/common': 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) + '@standard-schema/spec': 1.0.0 + rxjs: 7.8.1 + tslib: 2.6.3 + '@angular/language-service@17.3.12': {} '@angular/platform-browser-dynamic@17.3.12(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))': @@ -20214,6 +22191,14 @@ snapshots: '@angular/platform-browser': 19.2.8(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0)) tslib: 2.6.3 + '@angular/platform-browser-dynamic@21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))': + dependencies: + '@angular/common': 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/compiler': 21.0.0 + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) + tslib: 2.6.3 + '@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))': dependencies: '@angular/common': 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1) @@ -20228,6 +22213,14 @@ snapshots: '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) tslib: 2.6.3 + '@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))': + dependencies: + '@angular/common': 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + tslib: 2.6.3 + optionalDependencies: + '@angular/animations': 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) + '@angular/platform-server@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))': dependencies: '@angular/animations': 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)) @@ -20238,6 +22231,16 @@ snapshots: tslib: 2.6.3 xhr2: 0.2.1 + '@angular/platform-server@21.0.0(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1)': + dependencies: + '@angular/common': 21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/compiler': 21.0.0 + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 21.0.0(@angular/animations@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@21.0.0(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.1)(zone.js@0.15.1)) + rxjs: 7.8.1 + tslib: 2.6.3 + xhr2: 0.2.1 + '@angular/router@17.3.12(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@17.3.12(@angular/animations@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)': dependencies: '@angular/common': 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1) @@ -20280,6 +22283,8 @@ snapshots: '@babel/compat-data@7.26.8': {} + '@babel/compat-data@7.28.5': {} + '@babel/core@7.23.9': dependencies: '@ampproject/remapping': 2.3.0 @@ -20324,16 +22329,16 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.27.1 - '@babel/generator': 7.27.1 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-module-transforms': 7.27.1(@babel/core@7.26.10) - '@babel/helpers': 7.27.0 - '@babel/parser': 7.27.1 - '@babel/template': 7.27.1 - '@babel/traverse': 7.27.1 - '@babel/types': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10) + '@babel/helpers': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -20344,43 +22349,63 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.27.1 - '@babel/generator': 7.27.1 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-module-transforms': 7.27.1(@babel/core@7.26.9) - '@babel/helpers': 7.27.0 - '@babel/parser': 7.27.1 - '@babel/template': 7.27.1 - '@babel/traverse': 7.27.1 - '@babel/types': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.9) + '@babel/helpers': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/eslint-parser@7.23.10(@babel/core@7.26.10)(eslint@9.18.0(jiti@1.21.6))': + '@babel/core@7.28.4': dependencies: - '@babel/core': 7.26.10 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/helpers': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.3 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/eslint-parser@7.23.10(@babel/core@7.28.4)(eslint@9.18.0(jiti@2.6.1))': + dependencies: + '@babel/core': 7.28.4 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 semver: 6.3.1 - '@babel/eslint-parser@7.26.5(@babel/core@7.23.9)(eslint@9.18.0(jiti@1.21.6))': + '@babel/eslint-parser@7.26.5(@babel/core@7.23.9)(eslint@9.18.0(jiti@2.6.1))': dependencies: '@babel/core': 7.23.9 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 semver: 6.3.1 - '@babel/eslint-parser@7.26.5(@babel/core@7.26.10)(eslint@9.18.0(jiti@1.21.6))': + '@babel/eslint-parser@7.26.5(@babel/core@7.28.4)(eslint@9.18.0(jiti@2.6.1))': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 semver: 6.3.1 @@ -20393,11 +22418,11 @@ snapshots: '@babel/generator@7.26.10': dependencies: - '@babel/parser': 7.27.1 - '@babel/types': 7.27.1 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 '@babel/generator@7.26.2': dependencies: @@ -20409,11 +22434,19 @@ snapshots: '@babel/generator@7.27.1': dependencies: - '@babel/parser': 7.27.1 + '@babel/parser': 7.28.5 '@babel/types': 7.28.5 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + + '@babel/generator@7.28.3': + dependencies: + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 '@babel/generator@7.28.5': dependencies: @@ -20429,11 +22462,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.27.1 - - '@babel/helper-annotate-as-pure@7.27.1': - dependencies: - '@babel/types': 7.27.1 + '@babel/types': 7.28.5 '@babel/helper-annotate-as-pure@7.27.3': dependencies: @@ -20441,8 +22470,8 @@ snapshots: '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9': dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.27.1 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color @@ -20456,9 +22485,17 @@ snapshots: '@babel/helper-compilation-targets@7.27.0': dependencies: - '@babel/compat-data': 7.26.8 + '@babel/compat-data': 7.28.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.25.3 + browserslist: 4.28.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.5 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.28.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -20468,9 +22505,9 @@ snapshots: '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.23.9) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.23.9) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20481,33 +22518,46 @@ snapshots: '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.0) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.24.0) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.10)': + '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.23.9) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.5 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10) + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.23.9)': + '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.23.9 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.23.9) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 '@babel/traverse': 7.28.5 semver: 6.3.1 @@ -20535,6 +22585,13 @@ snapshots: regexpu-core: 6.1.1 semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.1.1 + semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 @@ -20542,14 +22599,21 @@ snapshots: regexpu-core: 6.2.0 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.26.10)': + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 + '@babel/core': 7.28.4 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20557,77 +22621,88 @@ snapshots: '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.10)': + '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)': + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.3 + lodash.debounce: 4.0.8 + resolve: 1.22.11 transitivePeerDependencies: - supports-color @@ -20660,8 +22735,8 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: - '@babel/traverse': 7.27.1 - '@babel/types': 7.27.1 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color @@ -20683,15 +22758,6 @@ snapshots: 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.25.9 - transitivePeerDependencies: - - supports-color - '@babel/helper-module-transforms@7.27.1(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -20719,7 +22785,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.27.1(@babel/core@7.26.9)': + '@babel/helper-module-transforms@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.10)': + dependencies: + '@babel/core': 7.26.10 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.9)': dependencies: '@babel/core': 7.26.9 '@babel/helper-module-imports': 7.27.1 @@ -20728,6 +22812,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.25.9': dependencies: '@babel/types': 7.28.5 @@ -20745,7 +22838,7 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -20754,7 +22847,7 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -20763,7 +22856,34 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.28.3 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.10)': + dependencies: + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.28.3 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.28.3 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -20772,7 +22892,7 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -20781,22 +22901,40 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.10)': + '@babel/helper-replace-supers@7.27.1(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.24.0)': + dependencies: + '@babel/core': 7.24.0 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.27.1(@babel/core@7.23.9)': + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.23.9 + '@babel/core': 7.28.4 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 '@babel/traverse': 7.28.5 @@ -20805,15 +22943,15 @@ snapshots: '@babel/helper-simple-access@7.25.9': dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.27.1 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.27.1 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color @@ -20830,7 +22968,7 @@ snapshots: '@babel/helper-split-export-declaration@7.24.7': dependencies: - '@babel/types': 7.27.1 + '@babel/types': 7.28.5 '@babel/helper-string-parser@7.25.9': {} @@ -20854,6 +22992,14 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-wrap-function@7.28.3': + dependencies: + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + transitivePeerDependencies: + - supports-color + '@babel/helpers@7.26.0': dependencies: '@babel/template': 7.25.9 @@ -20861,7 +23007,12 @@ snapshots: '@babel/helpers@7.27.0': dependencies: - '@babel/template': 7.27.1 + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 + + '@babel/helpers@7.28.4': + dependencies: + '@babel/template': 7.27.2 '@babel/types': 7.28.5 '@babel/highlight@7.25.9': @@ -20877,7 +23028,7 @@ snapshots: '@babel/parser@7.26.2': dependencies: - '@babel/types': 7.27.1 + '@babel/types': 7.28.5 '@babel/parser@7.27.1': dependencies: @@ -20895,11 +23046,24 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -20910,10 +23074,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.23.9)': dependencies: @@ -20933,12 +23102,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.4) transitivePeerDependencies: - supports-color @@ -20958,11 +23136,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -20971,7 +23157,7 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.23.9) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.23.9) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9) transitivePeerDependencies: - supports-color @@ -20995,12 +23181,12 @@ snapshots: '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.9)': dependencies: - '@babel/compat-data': 7.26.8 + '@babel/compat-data': 7.28.5 '@babel/core': 7.23.9 - '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.23.9) '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.9)': dependencies: @@ -21022,6 +23208,10 @@ snapshots: dependencies: '@babel/core': 7.26.10 + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21032,9 +23222,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21043,9 +23233,9 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 optional: true @@ -21059,9 +23249,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.10)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21075,9 +23265,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.10)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21121,10 +23311,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)': + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.23.9)': dependencies: @@ -21141,6 +23336,21 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.10)': + dependencies: + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21151,9 +23361,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21167,9 +23377,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21193,9 +23403,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21209,9 +23419,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21225,9 +23435,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21241,9 +23451,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21257,9 +23467,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21273,9 +23483,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21289,9 +23499,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.10)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21305,9 +23515,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.10)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.25.9 optional: true @@ -21334,6 +23544,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.10) '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21344,10 +23560,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0)': dependencies: @@ -21373,7 +23594,7 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.23.9) - '@babel/traverse': 7.27.1 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -21382,7 +23603,7 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.0) - '@babel/traverse': 7.27.1 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -21391,7 +23612,25 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/traverse': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.26.10)': + dependencies: + '@babel/core': 7.26.10 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.10) + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -21431,6 +23670,24 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.26.10)': + dependencies: + '@babel/core': 7.26.10 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21446,6 +23703,11 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21456,10 +23718,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21477,11 +23744,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -21501,18 +23784,26 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)': + '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color '@babel/plugin-transform-classes@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.23.9) @@ -21524,7 +23815,7 @@ snapshots: '@babel/plugin-transform-classes@7.25.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.0) @@ -21533,15 +23824,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-classes@7.28.4(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10) - '@babel/traverse': 7.25.9 - globals: 11.12.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10) + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -21557,11 +23860,17 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 '@babel/template': 7.25.9 - '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/template': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21573,10 +23882,21 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21590,11 +23910,17 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21606,10 +23932,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.26.10)': dependencies: @@ -21617,6 +23948,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21627,10 +23964,23 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.4) + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21655,6 +24005,11 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21665,10 +24020,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21708,6 +24068,14 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21726,12 +24094,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -21745,10 +24122,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-literals@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21760,10 +24142,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21775,10 +24162,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21790,10 +24182,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21811,11 +24208,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -21853,6 +24258,14 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21873,13 +24286,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -21899,11 +24322,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -21919,11 +24350,17 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21935,10 +24372,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21960,6 +24402,11 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21970,10 +24417,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.23.9)': dependencies: @@ -21989,12 +24441,27 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.0) - '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.26.10) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10) + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.4) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22012,11 +24479,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) transitivePeerDependencies: - supports-color @@ -22030,10 +24505,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22051,11 +24531,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color @@ -22069,10 +24565,20 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22090,18 +24596,34 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: @@ -22110,18 +24632,27 @@ snapshots: '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -22135,10 +24666,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22165,7 +24701,7 @@ snapshots: '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.27.1 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.23.9) @@ -22176,7 +24712,7 @@ snapshots: '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.27.1 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.23.9)': @@ -22191,11 +24727,15 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - regenerator-transform: 0.15.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.26.10)': dependencies: @@ -22203,6 +24743,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -22213,19 +24759,24 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-runtime@7.19.6(@babel/core@7.26.10)': + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-runtime@7.19.6(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.26.10) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.26.10) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.26.10) + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.28.4) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.28.4) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.28.4) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -22259,9 +24810,21 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.10) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.10) babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10) - babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.10) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -22276,10 +24839,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-spread@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22297,11 +24865,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color @@ -22315,10 +24891,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22335,6 +24916,11 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -22350,6 +24936,11 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -22371,10 +24962,15 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22388,11 +24984,17 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22406,11 +25008,17 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.23.9)': dependencies: @@ -22424,11 +25032,17 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/helper-plugin-utils': 7.27.1 '@babel/preset-env@7.23.9(@babel/core@7.23.9)': dependencies: @@ -22604,75 +25218,151 @@ snapshots: '@babel/preset-env@7.26.9(@babel/core@7.26.10)': dependencies: - '@babel/compat-data': 7.26.8 + '@babel/compat-data': 7.28.5 '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.26.10) '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.26.10) '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10) - '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.10) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.10) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.26.10) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.26.10) + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.26.10) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.26.10) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.26.10) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.26.10) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.26.10) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.26.10) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.26.10) '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.10) '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.10) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10) - babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.10) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.10) babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10) - babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10) - core-js-compat: 3.42.0 + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.10) + core-js-compat: 3.45.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-env@7.28.3(@babel/core@7.28.4)': + dependencies: + '@babel/compat-data': 7.28.5 + '@babel/core': 7.28.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.4) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4) + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.4) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.28.4) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.28.4) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.4) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4) + core-js-compat: 3.45.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -22705,6 +25395,13 @@ snapshots: '@babel/types': 7.26.0 esutils: 2.0.3 + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/types': 7.26.0 + esutils: 2.0.3 + '@babel/preset-react@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -22757,6 +25454,8 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 + '@babel/runtime@7.28.4': {} + '@babel/template@7.25.9': dependencies: '@babel/code-frame': 7.26.2 @@ -22766,7 +25465,7 @@ snapshots: '@babel/template@7.27.1': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.27.1 + '@babel/parser': 7.28.5 '@babel/types': 7.28.5 '@babel/template@7.27.2': @@ -22790,11 +25489,11 @@ snapshots: '@babel/traverse@7.27.1': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.27.1 - '@babel/parser': 7.27.1 - '@babel/template': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 '@babel/types': 7.28.5 - debug: 4.4.0 + debug: 4.4.3 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -22807,7 +25506,7 @@ snapshots: '@babel/parser': 7.28.5 '@babel/template': 7.27.2 '@babel/types': 7.28.5 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -22886,9 +25585,9 @@ snapshots: dependencies: tslib: 2.3.1 - '@devextreme-generator/angular@3.0.12(sbvjcxcrzqsdonswljyeavqa6m)': + '@devextreme-generator/angular@3.0.12(j755spmzc2u2vfhd3qz5oy4z2e)': dependencies: - '@devextreme-generator/core': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + '@devextreme-generator/core': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - eslint @@ -22903,13 +25602,13 @@ snapshots: - eslint-plugin-spellcheck - supports-color - '@devextreme-generator/build-helpers@3.0.12(itypu2gnv2krpykf453cw274qa)': + '@devextreme-generator/build-helpers@3.0.12(myeknmfogrmhijri7fuw4vbst4)': dependencies: - '@devextreme-generator/angular': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/core': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/inferno': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/preact': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/react': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + '@devextreme-generator/angular': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/core': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/inferno': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/preact': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/react': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) loader-utils: 2.0.4 typescript: 4.3.5 vinyl: 2.2.1 @@ -22932,10 +25631,10 @@ snapshots: - uglify-js - webpack-cli - '@devextreme-generator/core@3.0.12(sbvjcxcrzqsdonswljyeavqa6m)': + '@devextreme-generator/core@3.0.12(j755spmzc2u2vfhd3qz5oy4z2e)': dependencies: code-block-writer: 10.1.1 - eslint-config-devextreme: 0.2.0(sbvjcxcrzqsdonswljyeavqa6m) + eslint-config-devextreme: 0.2.0(j755spmzc2u2vfhd3qz5oy4z2e) prettier: 2.8.8 prettier-eslint: 13.0.0 typescript: 4.3.5 @@ -22958,11 +25657,11 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - '@devextreme-generator/inferno@3.0.12(sbvjcxcrzqsdonswljyeavqa6m)': + '@devextreme-generator/inferno@3.0.12(j755spmzc2u2vfhd3qz5oy4z2e)': dependencies: - '@devextreme-generator/core': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/preact': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/react': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + '@devextreme-generator/core': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/preact': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/react': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - eslint @@ -22977,10 +25676,10 @@ snapshots: - eslint-plugin-spellcheck - supports-color - '@devextreme-generator/preact@3.0.12(sbvjcxcrzqsdonswljyeavqa6m)': + '@devextreme-generator/preact@3.0.12(j755spmzc2u2vfhd3qz5oy4z2e)': dependencies: - '@devextreme-generator/core': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/react': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + '@devextreme-generator/core': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/react': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - eslint @@ -22995,9 +25694,9 @@ snapshots: - eslint-plugin-spellcheck - supports-color - '@devextreme-generator/react@3.0.12(sbvjcxcrzqsdonswljyeavqa6m)': + '@devextreme-generator/react@3.0.12(j755spmzc2u2vfhd3qz5oy4z2e)': dependencies: - '@devextreme-generator/core': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + '@devextreme-generator/core': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - eslint @@ -23012,10 +25711,10 @@ snapshots: - eslint-plugin-spellcheck - supports-color - '@devextreme-generator/vue@3.0.12(sbvjcxcrzqsdonswljyeavqa6m)': + '@devextreme-generator/vue@3.0.12(j755spmzc2u2vfhd3qz5oy4z2e)': dependencies: - '@devextreme-generator/angular': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) - '@devextreme-generator/core': 3.0.12(sbvjcxcrzqsdonswljyeavqa6m) + '@devextreme-generator/angular': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) + '@devextreme-generator/core': 3.0.12(j755spmzc2u2vfhd3qz5oy4z2e) prettier: 2.8.8 transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' @@ -23043,6 +25742,22 @@ snapshots: glob: 7.2.3 minimatch: 3.1.2 + '@emnapi/core@1.7.1': + dependencies: + '@emnapi/wasi-threads': 1.1.0 + tslib: 2.6.3 + optional: true + + '@emnapi/runtime@1.7.1': + dependencies: + tslib: 2.6.3 + optional: true + + '@emnapi/wasi-threads@1.1.0': + dependencies: + tslib: 2.6.3 + optional: true + '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.0.0)': dependencies: react: 18.0.0 @@ -23062,6 +25777,9 @@ snapshots: '@esbuild/aix-ppc64@0.25.1': optional: true + '@esbuild/aix-ppc64@0.26.0': + optional: true + '@esbuild/android-arm64@0.18.20': optional: true @@ -23083,6 +25801,9 @@ snapshots: '@esbuild/android-arm64@0.25.1': optional: true + '@esbuild/android-arm64@0.26.0': + optional: true + '@esbuild/android-arm@0.18.20': optional: true @@ -23104,6 +25825,9 @@ snapshots: '@esbuild/android-arm@0.25.1': optional: true + '@esbuild/android-arm@0.26.0': + optional: true + '@esbuild/android-x64@0.18.20': optional: true @@ -23125,6 +25849,9 @@ snapshots: '@esbuild/android-x64@0.25.1': optional: true + '@esbuild/android-x64@0.26.0': + optional: true + '@esbuild/darwin-arm64@0.18.20': optional: true @@ -23146,6 +25873,9 @@ snapshots: '@esbuild/darwin-arm64@0.25.1': optional: true + '@esbuild/darwin-arm64@0.26.0': + optional: true + '@esbuild/darwin-x64@0.18.20': optional: true @@ -23167,6 +25897,9 @@ snapshots: '@esbuild/darwin-x64@0.25.1': optional: true + '@esbuild/darwin-x64@0.26.0': + optional: true + '@esbuild/freebsd-arm64@0.18.20': optional: true @@ -23188,6 +25921,9 @@ snapshots: '@esbuild/freebsd-arm64@0.25.1': optional: true + '@esbuild/freebsd-arm64@0.26.0': + optional: true + '@esbuild/freebsd-x64@0.18.20': optional: true @@ -23209,6 +25945,9 @@ snapshots: '@esbuild/freebsd-x64@0.25.1': optional: true + '@esbuild/freebsd-x64@0.26.0': + optional: true + '@esbuild/linux-arm64@0.18.20': optional: true @@ -23230,6 +25969,9 @@ snapshots: '@esbuild/linux-arm64@0.25.1': optional: true + '@esbuild/linux-arm64@0.26.0': + optional: true + '@esbuild/linux-arm@0.18.20': optional: true @@ -23251,6 +25993,9 @@ snapshots: '@esbuild/linux-arm@0.25.1': optional: true + '@esbuild/linux-arm@0.26.0': + optional: true + '@esbuild/linux-ia32@0.18.20': optional: true @@ -23272,6 +26017,9 @@ snapshots: '@esbuild/linux-ia32@0.25.1': optional: true + '@esbuild/linux-ia32@0.26.0': + optional: true + '@esbuild/linux-loong64@0.14.54': optional: true @@ -23296,6 +26044,9 @@ snapshots: '@esbuild/linux-loong64@0.25.1': optional: true + '@esbuild/linux-loong64@0.26.0': + optional: true + '@esbuild/linux-mips64el@0.18.20': optional: true @@ -23317,6 +26068,9 @@ snapshots: '@esbuild/linux-mips64el@0.25.1': optional: true + '@esbuild/linux-mips64el@0.26.0': + optional: true + '@esbuild/linux-ppc64@0.18.20': optional: true @@ -23338,6 +26092,9 @@ snapshots: '@esbuild/linux-ppc64@0.25.1': optional: true + '@esbuild/linux-ppc64@0.26.0': + optional: true + '@esbuild/linux-riscv64@0.18.20': optional: true @@ -23359,6 +26116,9 @@ snapshots: '@esbuild/linux-riscv64@0.25.1': optional: true + '@esbuild/linux-riscv64@0.26.0': + optional: true + '@esbuild/linux-s390x@0.18.20': optional: true @@ -23380,6 +26140,9 @@ snapshots: '@esbuild/linux-s390x@0.25.1': optional: true + '@esbuild/linux-s390x@0.26.0': + optional: true + '@esbuild/linux-x64@0.18.20': optional: true @@ -23401,12 +26164,18 @@ snapshots: '@esbuild/linux-x64@0.25.1': optional: true + '@esbuild/linux-x64@0.26.0': + optional: true + '@esbuild/netbsd-arm64@0.25.0': optional: true '@esbuild/netbsd-arm64@0.25.1': optional: true + '@esbuild/netbsd-arm64@0.26.0': + optional: true + '@esbuild/netbsd-x64@0.18.20': optional: true @@ -23428,12 +26197,18 @@ snapshots: '@esbuild/netbsd-x64@0.25.1': optional: true + '@esbuild/netbsd-x64@0.26.0': + optional: true + '@esbuild/openbsd-arm64@0.25.0': optional: true '@esbuild/openbsd-arm64@0.25.1': optional: true + '@esbuild/openbsd-arm64@0.26.0': + optional: true + '@esbuild/openbsd-x64@0.18.20': optional: true @@ -23455,6 +26230,12 @@ snapshots: '@esbuild/openbsd-x64@0.25.1': optional: true + '@esbuild/openbsd-x64@0.26.0': + optional: true + + '@esbuild/openharmony-arm64@0.26.0': + optional: true + '@esbuild/sunos-x64@0.18.20': optional: true @@ -23476,6 +26257,9 @@ snapshots: '@esbuild/sunos-x64@0.25.1': optional: true + '@esbuild/sunos-x64@0.26.0': + optional: true + '@esbuild/win32-arm64@0.18.20': optional: true @@ -23497,6 +26281,9 @@ snapshots: '@esbuild/win32-arm64@0.25.1': optional: true + '@esbuild/win32-arm64@0.26.0': + optional: true + '@esbuild/win32-ia32@0.18.20': optional: true @@ -23518,6 +26305,9 @@ snapshots: '@esbuild/win32-ia32@0.25.1': optional: true + '@esbuild/win32-ia32@0.26.0': + optional: true + '@esbuild/win32-x64@0.18.20': optional: true @@ -23539,28 +26329,31 @@ snapshots: '@esbuild/win32-x64@0.25.1': optional: true - '@eslint-community/eslint-utils@4.5.0(eslint@9.18.0(jiti@1.21.6))': + '@esbuild/win32-x64@0.26.0': + optional: true + + '@eslint-community/eslint-utils@4.5.0(eslint@9.18.0(jiti@2.6.1))': dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.5.0(eslint@9.26.0(jiti@1.21.6))': + '@eslint-community/eslint-utils@4.5.0(eslint@9.26.0(jiti@2.6.1))': dependencies: - eslint: 9.26.0(jiti@1.21.6) + eslint: 9.26.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.7.0(eslint@9.18.0(jiti@1.21.6))': + '@eslint-community/eslint-utils@4.7.0(eslint@9.18.0(jiti@2.6.1))': dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} '@eslint-stylistic/metadata@2.13.0': {} - '@eslint/compat@1.3.2(eslint@9.18.0(jiti@1.21.6))': + '@eslint/compat@1.3.2(eslint@9.18.0(jiti@2.6.1))': optionalDependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) '@eslint/config-array@0.19.2': dependencies: @@ -23573,7 +26366,7 @@ snapshots: '@eslint/config-array@0.20.0': dependencies: '@eslint/object-schema': 2.1.6 - debug: 4.4.0 + debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -23595,7 +26388,7 @@ snapshots: '@eslint/eslintrc@0.4.3': dependencies: ajv: 6.12.6 - debug: 4.4.0 + debug: 4.4.3 espree: 7.3.1 globals: 13.24.0 ignore: 4.0.6 @@ -23712,7 +26505,7 @@ snapshots: '@humanwhocodes/config-array@0.5.0': dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.4.0 + debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -23725,87 +26518,184 @@ snapshots: '@humanwhocodes/retry@0.4.2': {} + '@inquirer/ansi@1.0.2': {} + '@inquirer/checkbox@4.1.5(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/figures': 1.0.11 - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@20.14.5) ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 20.14.5 - '@inquirer/confirm@5.1.6(@types/node@20.14.5)': + '@inquirer/checkbox@4.3.2(@types/node@18.19.64)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@18.19.64) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/confirm@5.1.19(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/confirm@5.1.21(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/confirm@5.1.21(@types/node@20.14.5)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) optionalDependencies: '@types/node': 20.14.5 - '@inquirer/confirm@5.1.9(@types/node@20.14.5)': + '@inquirer/confirm@5.1.6(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) optionalDependencies: '@types/node': 20.14.5 '@inquirer/core@10.1.10(@types/node@20.14.5)': dependencies: - '@inquirer/figures': 1.0.11 - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@20.14.5) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 - yoctocolors-cjs: 2.1.2 + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 20.14.5 + + '@inquirer/core@10.3.2(@types/node@18.19.64)': + dependencies: + '@inquirer/ansi': 1.0.2 + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@18.19.64) + cli-width: 4.1.0 + mute-stream: 2.0.0 + signal-exit: 4.1.0 + wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/core@10.3.2(@types/node@20.14.5)': + dependencies: + '@inquirer/ansi': 1.0.2 + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@20.14.5) + cli-width: 4.1.0 + mute-stream: 2.0.0 + signal-exit: 4.1.0 + wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 20.14.5 '@inquirer/editor@4.2.10(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) external-editor: 3.1.0 optionalDependencies: '@types/node': 20.14.5 + '@inquirer/editor@4.2.23(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/external-editor': 1.0.3(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/expand@4.0.12(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) - yoctocolors-cjs: 2.1.2 + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 20.14.5 - '@inquirer/figures@1.0.11': {} + '@inquirer/expand@4.0.23(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/external-editor@1.0.3(@types/node@18.19.64)': + dependencies: + chardet: 2.1.1 + iconv-lite: 0.7.0 + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/figures@1.0.15': {} '@inquirer/input@4.1.9(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) optionalDependencies: '@types/node': 20.14.5 + '@inquirer/input@4.3.1(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/number@3.0.12(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) optionalDependencies: '@types/node': 20.14.5 + '@inquirer/number@3.0.23(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/password@4.0.12(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) ansi-escapes: 4.3.2 optionalDependencies: '@types/node': 20.14.5 + '@inquirer/password@4.0.23(@types/node@18.19.64)': + dependencies: + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/prompts@7.3.2(@types/node@20.14.5)': dependencies: '@inquirer/checkbox': 4.1.5(@types/node@20.14.5) - '@inquirer/confirm': 5.1.9(@types/node@20.14.5) + '@inquirer/confirm': 5.1.21(@types/node@20.14.5) '@inquirer/editor': 4.2.10(@types/node@20.14.5) '@inquirer/expand': 4.0.12(@types/node@20.14.5) '@inquirer/input': 4.1.9(@types/node@20.14.5) @@ -23817,38 +26707,84 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/prompts@7.9.0(@types/node@18.19.64)': + dependencies: + '@inquirer/checkbox': 4.3.2(@types/node@18.19.64) + '@inquirer/confirm': 5.1.21(@types/node@18.19.64) + '@inquirer/editor': 4.2.23(@types/node@18.19.64) + '@inquirer/expand': 4.0.23(@types/node@18.19.64) + '@inquirer/input': 4.3.1(@types/node@18.19.64) + '@inquirer/number': 3.0.23(@types/node@18.19.64) + '@inquirer/password': 4.0.23(@types/node@18.19.64) + '@inquirer/rawlist': 4.1.11(@types/node@18.19.64) + '@inquirer/search': 3.2.2(@types/node@18.19.64) + '@inquirer/select': 4.4.2(@types/node@18.19.64) + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/rawlist@4.1.0(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/type': 3.0.6(@types/node@20.14.5) - yoctocolors-cjs: 2.1.2 + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/type': 3.0.10(@types/node@20.14.5) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 20.14.5 + '@inquirer/rawlist@4.1.11(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/search@3.0.12(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/figures': 1.0.11 - '@inquirer/type': 3.0.6(@types/node@20.14.5) - yoctocolors-cjs: 2.1.2 + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@20.14.5) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 20.14.5 + '@inquirer/search@3.2.2(@types/node@18.19.64)': + dependencies: + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@18.19.64) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/select@4.2.0(@types/node@20.14.5)': dependencies: - '@inquirer/core': 10.1.10(@types/node@20.14.5) - '@inquirer/figures': 1.0.11 - '@inquirer/type': 3.0.6(@types/node@20.14.5) + '@inquirer/core': 10.3.2(@types/node@20.14.5) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@20.14.5) ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 20.14.5 + '@inquirer/select@4.4.2(@types/node@18.19.64)': + dependencies: + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@18.19.64) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@18.19.64) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 18.19.64 + '@inquirer/type@1.5.5': dependencies: mute-stream: 1.0.0 - '@inquirer/type@3.0.6(@types/node@20.14.5)': + '@inquirer/type@3.0.10(@types/node@18.19.64)': + optionalDependencies: + '@types/node': 18.19.64 + + '@inquirer/type@3.0.10(@types/node@20.14.5)': optionalDependencies: '@types/node': 20.14.5 @@ -23862,7 +26798,7 @@ snapshots: dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 @@ -23890,7 +26826,7 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5))': + '@jest/core@29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0(node-notifier@9.0.1) @@ -23904,7 +26840,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -24002,7 +26938,7 @@ snapshots: - ts-node optional: true - '@jest/core@29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2))': + '@jest/core@29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0(node-notifier@9.0.1) @@ -24016,7 +26952,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -24039,7 +26975,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2))': + '@jest/core@29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0(node-notifier@9.0.1) @@ -24053,7 +26989,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -24120,7 +27056,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 '@types/node': 18.19.64 chalk: 4.1.2 collect-v8-coverage: 1.0.2 @@ -24150,7 +27086,7 @@ snapshots: '@jest/source-map@29.6.3': dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -24170,7 +27106,7 @@ snapshots: '@jest/transform@29.7.0': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.23.9 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -24207,14 +27143,19 @@ snapshots: '@jridgewell/gen-mapping@0.3.13': dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/resolve-uri@3.1.2': {} @@ -24222,40 +27163,62 @@ snapshots: '@jridgewell/source-map@0.3.6': dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping@0.3.31': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping@0.3.9': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@jsonjoy.com/base64@1.1.2(tslib@2.6.3)': dependencies: tslib: 2.6.3 - '@jsonjoy.com/json-pack@1.2.0(tslib@2.6.3)': + '@jsonjoy.com/buffers@1.2.1(tslib@2.6.3)': + dependencies: + tslib: 2.6.3 + + '@jsonjoy.com/codegen@1.0.0(tslib@2.6.3)': + dependencies: + tslib: 2.6.3 + + '@jsonjoy.com/json-pack@1.21.0(tslib@2.6.3)': dependencies: '@jsonjoy.com/base64': 1.1.2(tslib@2.6.3) - '@jsonjoy.com/util': 1.5.0(tslib@2.6.3) + '@jsonjoy.com/buffers': 1.2.1(tslib@2.6.3) + '@jsonjoy.com/codegen': 1.0.0(tslib@2.6.3) + '@jsonjoy.com/json-pointer': 1.0.2(tslib@2.6.3) + '@jsonjoy.com/util': 1.9.0(tslib@2.6.3) hyperdyperid: 1.2.0 - thingies: 1.21.0(tslib@2.6.3) + thingies: 2.5.0(tslib@2.6.3) + tree-dump: 1.1.0(tslib@2.6.3) + tslib: 2.6.3 + + '@jsonjoy.com/json-pointer@1.0.2(tslib@2.6.3)': + dependencies: + '@jsonjoy.com/codegen': 1.0.0(tslib@2.6.3) + '@jsonjoy.com/util': 1.9.0(tslib@2.6.3) tslib: 2.6.3 - '@jsonjoy.com/util@1.5.0(tslib@2.6.3)': + '@jsonjoy.com/util@1.9.0(tslib@2.6.3)': dependencies: + '@jsonjoy.com/buffers': 1.2.1(tslib@2.6.3) + '@jsonjoy.com/codegen': 1.0.0(tslib@2.6.3) tslib: 2.6.3 '@juggle/resize-observer@3.4.0': {} @@ -24273,6 +27236,14 @@ snapshots: '@inquirer/prompts': 7.3.2(@types/node@20.14.5) '@inquirer/type': 1.5.5 + '@listr2/prompt-adapter-inquirer@3.0.5(@inquirer/prompts@7.9.0(@types/node@18.19.64))(@types/node@18.19.64)(listr2@9.0.5)': + dependencies: + '@inquirer/prompts': 7.9.0(@types/node@18.19.64) + '@inquirer/type': 3.0.10(@types/node@18.19.64) + listr2: 9.0.5 + transitivePeerDependencies: + - '@types/node' + '@ljharb/through@2.3.13': dependencies: call-bind: 1.0.7 @@ -24283,36 +27254,57 @@ snapshots: '@lmdb/lmdb-darwin-arm64@3.2.6': optional: true + '@lmdb/lmdb-darwin-arm64@3.4.3': + optional: true + '@lmdb/lmdb-darwin-x64@2.8.5': optional: true '@lmdb/lmdb-darwin-x64@3.2.6': optional: true + '@lmdb/lmdb-darwin-x64@3.4.3': + optional: true + '@lmdb/lmdb-linux-arm64@2.8.5': optional: true '@lmdb/lmdb-linux-arm64@3.2.6': optional: true + '@lmdb/lmdb-linux-arm64@3.4.3': + optional: true + '@lmdb/lmdb-linux-arm@2.8.5': optional: true '@lmdb/lmdb-linux-arm@3.2.6': optional: true + '@lmdb/lmdb-linux-arm@3.4.3': + optional: true + '@lmdb/lmdb-linux-x64@2.8.5': optional: true '@lmdb/lmdb-linux-x64@3.2.6': optional: true + '@lmdb/lmdb-linux-x64@3.4.3': + optional: true + + '@lmdb/lmdb-win32-arm64@3.4.3': + optional: true + '@lmdb/lmdb-win32-x64@2.8.5': optional: true '@lmdb/lmdb-win32-x64@3.2.6': optional: true + '@lmdb/lmdb-win32-x64@3.4.3': + optional: true + '@mdx-js/react@2.3.0(react@18.0.0)': dependencies: '@types/mdx': 2.0.13 @@ -24337,8 +27329,25 @@ snapshots: express-rate-limit: 7.5.0(express@5.1.0) pkce-challenge: 5.0.0 raw-body: 3.0.0 - zod: 3.24.4 - zod-to-json-schema: 3.24.5(zod@3.24.4) + zod: 3.25.76 + zod-to-json-schema: 3.24.5(zod@3.25.76) + transitivePeerDependencies: + - supports-color + + '@modelcontextprotocol/sdk@1.20.1': + dependencies: + ajv: 6.12.6 + content-type: 1.0.5 + cors: 2.8.5 + cross-spawn: 7.0.6 + eventsource: 3.0.6 + eventsource-parser: 3.0.1 + express: 5.1.0 + express-rate-limit: 7.5.0(express@5.1.0) + pkce-challenge: 5.0.0 + raw-body: 3.0.0 + zod: 3.25.76 + zod-to-json-schema: 3.24.5(zod@3.25.76) transitivePeerDependencies: - supports-color @@ -24360,72 +27369,83 @@ snapshots: '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': optional: true - '@napi-rs/nice-android-arm-eabi@1.0.1': + '@napi-rs/nice-android-arm-eabi@1.1.1': + optional: true + + '@napi-rs/nice-android-arm64@1.1.1': optional: true - '@napi-rs/nice-android-arm64@1.0.1': + '@napi-rs/nice-darwin-arm64@1.1.1': optional: true - '@napi-rs/nice-darwin-arm64@1.0.1': + '@napi-rs/nice-darwin-x64@1.1.1': optional: true - '@napi-rs/nice-darwin-x64@1.0.1': + '@napi-rs/nice-freebsd-x64@1.1.1': optional: true - '@napi-rs/nice-freebsd-x64@1.0.1': + '@napi-rs/nice-linux-arm-gnueabihf@1.1.1': optional: true - '@napi-rs/nice-linux-arm-gnueabihf@1.0.1': + '@napi-rs/nice-linux-arm64-gnu@1.1.1': optional: true - '@napi-rs/nice-linux-arm64-gnu@1.0.1': + '@napi-rs/nice-linux-arm64-musl@1.1.1': optional: true - '@napi-rs/nice-linux-arm64-musl@1.0.1': + '@napi-rs/nice-linux-ppc64-gnu@1.1.1': optional: true - '@napi-rs/nice-linux-ppc64-gnu@1.0.1': + '@napi-rs/nice-linux-riscv64-gnu@1.1.1': optional: true - '@napi-rs/nice-linux-riscv64-gnu@1.0.1': + '@napi-rs/nice-linux-s390x-gnu@1.1.1': optional: true - '@napi-rs/nice-linux-s390x-gnu@1.0.1': + '@napi-rs/nice-linux-x64-gnu@1.1.1': optional: true - '@napi-rs/nice-linux-x64-gnu@1.0.1': + '@napi-rs/nice-linux-x64-musl@1.1.1': optional: true - '@napi-rs/nice-linux-x64-musl@1.0.1': + '@napi-rs/nice-openharmony-arm64@1.1.1': optional: true - '@napi-rs/nice-win32-arm64-msvc@1.0.1': + '@napi-rs/nice-win32-arm64-msvc@1.1.1': optional: true - '@napi-rs/nice-win32-ia32-msvc@1.0.1': + '@napi-rs/nice-win32-ia32-msvc@1.1.1': optional: true - '@napi-rs/nice-win32-x64-msvc@1.0.1': + '@napi-rs/nice-win32-x64-msvc@1.1.1': optional: true - '@napi-rs/nice@1.0.1': + '@napi-rs/nice@1.1.1': optionalDependencies: - '@napi-rs/nice-android-arm-eabi': 1.0.1 - '@napi-rs/nice-android-arm64': 1.0.1 - '@napi-rs/nice-darwin-arm64': 1.0.1 - '@napi-rs/nice-darwin-x64': 1.0.1 - '@napi-rs/nice-freebsd-x64': 1.0.1 - '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1 - '@napi-rs/nice-linux-arm64-gnu': 1.0.1 - '@napi-rs/nice-linux-arm64-musl': 1.0.1 - '@napi-rs/nice-linux-ppc64-gnu': 1.0.1 - '@napi-rs/nice-linux-riscv64-gnu': 1.0.1 - '@napi-rs/nice-linux-s390x-gnu': 1.0.1 - '@napi-rs/nice-linux-x64-gnu': 1.0.1 - '@napi-rs/nice-linux-x64-musl': 1.0.1 - '@napi-rs/nice-win32-arm64-msvc': 1.0.1 - '@napi-rs/nice-win32-ia32-msvc': 1.0.1 - '@napi-rs/nice-win32-x64-msvc': 1.0.1 + '@napi-rs/nice-android-arm-eabi': 1.1.1 + '@napi-rs/nice-android-arm64': 1.1.1 + '@napi-rs/nice-darwin-arm64': 1.1.1 + '@napi-rs/nice-darwin-x64': 1.1.1 + '@napi-rs/nice-freebsd-x64': 1.1.1 + '@napi-rs/nice-linux-arm-gnueabihf': 1.1.1 + '@napi-rs/nice-linux-arm64-gnu': 1.1.1 + '@napi-rs/nice-linux-arm64-musl': 1.1.1 + '@napi-rs/nice-linux-ppc64-gnu': 1.1.1 + '@napi-rs/nice-linux-riscv64-gnu': 1.1.1 + '@napi-rs/nice-linux-s390x-gnu': 1.1.1 + '@napi-rs/nice-linux-x64-gnu': 1.1.1 + '@napi-rs/nice-linux-x64-musl': 1.1.1 + '@napi-rs/nice-openharmony-arm64': 1.1.1 + '@napi-rs/nice-win32-arm64-msvc': 1.1.1 + '@napi-rs/nice-win32-ia32-msvc': 1.1.1 + '@napi-rs/nice-win32-x64-msvc': 1.1.1 + optional: true + + '@napi-rs/wasm-runtime@1.0.7': + dependencies: + '@emnapi/core': 1.7.1 + '@emnapi/runtime': 1.7.1 + '@tybys/wasm-util': 0.10.1 optional: true '@ndelangen/get-tarball@3.0.9': @@ -24446,6 +27466,12 @@ snapshots: typescript: 5.8.3 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + '@ngtools/webpack@21.0.0(@angular/compiler-cli@21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0))': + dependencies: + '@angular/compiler-cli': 21.0.0(@angular/compiler@21.0.0)(typescript@5.9.3) + typescript: 5.9.3 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: eslint-scope: 5.1.1 @@ -24482,13 +27508,23 @@ snapshots: transitivePeerDependencies: - supports-color + '@npmcli/agent@4.0.0': + dependencies: + agent-base: 7.1.3 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + lru-cache: 11.2.2 + socks-proxy-agent: 8.0.4 + transitivePeerDependencies: + - supports-color + '@npmcli/fs@3.1.1': dependencies: - semver: 7.7.2 + semver: 7.7.3 '@npmcli/fs@4.0.0': dependencies: - semver: 7.7.2 + semver: 7.7.3 '@npmcli/git@5.0.8': dependencies: @@ -24499,7 +27535,7 @@ snapshots: proc-log: 4.2.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.7.2 + semver: 7.7.3 which: 4.0.0 transitivePeerDependencies: - bluebird @@ -24512,9 +27548,20 @@ snapshots: npm-pick-manifest: 10.0.0 proc-log: 5.0.0 promise-retry: 2.0.1 - semver: 7.7.2 + semver: 7.7.3 which: 5.0.0 + '@npmcli/git@7.0.1': + dependencies: + '@npmcli/promise-spawn': 9.0.1 + ini: 6.0.0 + lru-cache: 11.2.2 + npm-pick-manifest: 11.0.3 + proc-log: 6.0.0 + promise-retry: 2.0.1 + semver: 7.7.3 + which: 6.0.0 + '@npmcli/installed-package-contents@2.1.0': dependencies: npm-bundled: 3.0.1 @@ -24529,6 +27576,8 @@ snapshots: '@npmcli/node-gyp@4.0.0': {} + '@npmcli/node-gyp@5.0.0': {} + '@npmcli/package-json@5.2.1': dependencies: '@npmcli/git': 5.0.8 @@ -24537,7 +27586,7 @@ snapshots: json-parse-even-better-errors: 3.0.2 normalize-package-data: 6.0.2 proc-log: 4.2.0 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - bluebird @@ -24548,7 +27597,17 @@ snapshots: hosted-git-info: 8.1.0 json-parse-even-better-errors: 4.0.0 proc-log: 5.0.0 - semver: 7.7.2 + semver: 7.7.3 + validate-npm-package-license: 3.0.4 + + '@npmcli/package-json@7.0.2': + dependencies: + '@npmcli/git': 7.0.1 + glob: 11.1.0 + hosted-git-info: 9.0.2 + json-parse-even-better-errors: 5.0.0 + proc-log: 6.0.0 + semver: 7.7.3 validate-npm-package-license: 3.0.4 '@npmcli/promise-spawn@7.0.2': @@ -24559,10 +27618,27 @@ snapshots: dependencies: which: 5.0.0 + '@npmcli/promise-spawn@9.0.1': + dependencies: + which: 6.0.0 + '@npmcli/redact@1.1.0': {} '@npmcli/redact@3.2.0': {} + '@npmcli/redact@4.0.0': {} + + '@npmcli/run-script@10.0.3': + dependencies: + '@npmcli/node-gyp': 5.0.0 + '@npmcli/package-json': 7.0.2 + '@npmcli/promise-spawn': 9.0.1 + node-gyp: 12.1.0 + proc-log: 6.0.0 + which: 6.0.0 + transitivePeerDependencies: + - supports-color + '@npmcli/run-script@7.0.4': dependencies: '@npmcli/node-gyp': 3.0.0 @@ -24597,9 +27673,9 @@ snapshots: transitivePeerDependencies: - nx - '@nrwl/jest@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2))(typescript@5.9.2)': + '@nrwl/jest@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3))(typescript@5.9.3)': dependencies: - '@nx/jest': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2))(typescript@5.9.2) + '@nx/jest': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3))(typescript@5.9.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24615,9 +27691,9 @@ snapshots: - typescript - verdaccio - '@nrwl/js@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.2)': + '@nrwl/js@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.3)': dependencies: - '@nx/js': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.2) + '@nx/js': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24673,22 +27749,22 @@ snapshots: ignore: 5.3.1 minimatch: 9.0.3 nx: 19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)) - semver: 7.7.2 + semver: 7.7.3 tmp: 0.2.3 tslib: 2.6.3 yargs-parser: 21.1.1 - '@nx/jest@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2))(typescript@5.9.2)': + '@nx/jest@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3))(typescript@5.9.3)': dependencies: '@jest/reporters': 29.7.0(node-notifier@9.0.1) '@jest/test-result': 29.7.0 - '@nrwl/jest': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2))(typescript@5.9.2) + '@nrwl/jest': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(node-notifier@9.0.1)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3))(typescript@5.9.3) '@nx/devkit': 19.4.2(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15))) - '@nx/js': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.2) + '@nx/js': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.3) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-resolve: 29.7.0 jest-util: 29.7.0 minimatch: 9.0.3 @@ -24710,7 +27786,7 @@ snapshots: - typescript - verdaccio - '@nx/js@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.2)': + '@nx/js@19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.3)': dependencies: '@babel/core': 7.23.9 '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.23.9) @@ -24719,7 +27795,7 @@ snapshots: '@babel/preset-env': 7.23.9(@babel/core@7.23.9) '@babel/preset-typescript': 7.28.5(@babel/core@7.23.9) '@babel/runtime': 7.26.10 - '@nrwl/js': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.2) + '@nrwl/js': 19.4.2(@babel/traverse@7.28.5)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)))(typescript@5.9.3) '@nx/devkit': 19.4.2(nx@19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15))) '@nx/workspace': 19.4.2(@swc/core@1.9.2(@swc/helpers@0.5.15)) babel-plugin-const-enum: 1.2.0(@babel/core@7.23.9) @@ -24738,7 +27814,7 @@ snapshots: ora: 5.3.0 semver: 7.6.3 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + ts-node: 10.9.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) tsconfig-paths: 4.2.0 tslib: 2.6.3 transitivePeerDependencies: @@ -24798,17 +27874,18 @@ snapshots: '@one-ini/wasm@0.1.1': {} - '@parcel/bundler-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@oxc-project/types@0.96.0': {} + + '@parcel/bundler-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 '@parcel/graph': 3.2.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 '@parcel/utils': 2.12.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' '@parcel/cache@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': dependencies: @@ -24824,47 +27901,46 @@ snapshots: dependencies: chalk: 4.1.2 - '@parcel/compressor-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/compressor-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/config-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.9.2)': + '@parcel/config-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(postcss@8.5.6)(relateurl@0.2.7)(terser@5.44.0)(typescript@5.9.3)': dependencies: - '@parcel/bundler-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/compressor-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/bundler-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/compressor-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/core': 2.12.0(@swc/helpers@0.5.15) - '@parcel/namer-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/optimizer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.9.2) - '@parcel/optimizer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/optimizer-svgo': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/namer-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/optimizer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(postcss@8.5.6)(relateurl@0.2.7)(terser@5.44.0)(typescript@5.9.3) + '@parcel/optimizer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/optimizer-svgo': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/optimizer-swc': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/packager-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/packager-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/packager-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/packager-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/packager-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/packager-wasm': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/resolver-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/runtime-browser-hmr': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/runtime-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/runtime-react-refresh': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/runtime-service-worker': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-babel': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/packager-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/packager-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/packager-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/packager-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/packager-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/packager-wasm': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/resolver-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/runtime-browser-hmr': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/runtime-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/runtime-react-refresh': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/runtime-service-worker': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-babel': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/transformer-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) - '@parcel/transformer-json': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-postcss': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-posthtml': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-react-refresh-wrap': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/transformer-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/transformer-json': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-postcss': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-posthtml': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-react-refresh-wrap': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/transformer-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@swc/helpers' - cssnano @@ -24886,23 +27962,23 @@ snapshots: '@parcel/graph': 3.2.0 '@parcel/logger': 2.12.0 '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/profiler': 2.12.0 '@parcel/rust': 2.12.0 '@parcel/source-map': 2.1.1 '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) abortcontroller-polyfill: 1.7.6 base-x: 3.0.10 - browserslist: 4.25.3 + browserslist: 4.28.0 clone: 2.1.2 dotenv: 7.0.0 dotenv-expand: 5.1.0 json5: 2.2.3 msgpackr: 1.11.2 nullthrows: 1.1.1 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@swc/helpers' @@ -24920,7 +27996,7 @@ snapshots: '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 '@parcel/watcher': 2.5.0 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@swc/helpers' @@ -24937,14 +28013,13 @@ snapshots: dependencies: chalk: 4.1.2 - '@parcel/namer-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/namer-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' '@parcel/node-resolver-core@3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: @@ -24954,33 +28029,31 @@ snapshots: '@parcel/rust': 2.12.0 '@parcel/utils': 2.12.0 nullthrows: 1.1.1 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@parcel/core' - '@parcel/optimizer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/optimizer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/source-map': 2.1.1 '@parcel/utils': 2.12.0 - browserslist: 4.25.3 + browserslist: 4.28.0 lightningcss: 1.28.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.9.2)': + '@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(postcss@8.5.6)(relateurl@0.2.7)(terser@5.44.0)(typescript@5.9.3)': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - htmlnano: 2.1.1(postcss@8.5.3)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.39.0)(typescript@5.9.2) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + htmlnano: 2.1.1(postcss@8.5.6)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.44.0)(typescript@5.9.3) nullthrows: 1.1.1 posthtml: 0.16.6 svgo: 2.8.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - cssnano - postcss - purgecss @@ -24990,31 +28063,28 @@ snapshots: - typescript - uncss - '@parcel/optimizer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/optimizer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/core': 2.12.0(@swc/helpers@0.5.15) '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 '@parcel/utils': 2.12.0 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - transitivePeerDependencies: - - '@swc/helpers' + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) - '@parcel/optimizer-svgo@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/optimizer-svgo@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 svgo: 2.8.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' '@parcel/optimizer-swc@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/source-map': 2.1.1 '@parcel/utils': 2.12.0 '@swc/core': 1.9.2(@swc/helpers@0.5.15) @@ -25032,39 +28102,37 @@ snapshots: '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@swc/core': 1.9.2(@swc/helpers@0.5.15) - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@swc/helpers' - '@parcel/packager-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/packager-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/source-map': 2.1.1 '@parcel/utils': 2.12.0 lightningcss: 1.28.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/packager-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/packager-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 nullthrows: 1.1.1 posthtml: 0.16.6 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/packager-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/packager-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 '@parcel/source-map': 2.1.1 '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) @@ -25073,38 +28141,33 @@ snapshots: nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/packager-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/packager-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/packager-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/packager-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 posthtml: 0.16.6 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/packager-wasm@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/packager-wasm@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/plugin@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/plugin@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' '@parcel/profiler@2.12.0': dependencies: @@ -25112,79 +28175,71 @@ snapshots: '@parcel/events': 2.12.0 chrome-trace-event: 1.0.4 - '@parcel/reporter-cli@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/reporter-cli@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 chalk: 4.1.2 term-size: 2.2.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/reporter-dev-server@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/reporter-dev-server@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/reporter-tracer@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/reporter-tracer@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 chrome-trace-event: 1.0.4 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/resolver-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/resolver-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/runtime-browser-hmr@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/runtime-browser-hmr@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/runtime-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/runtime-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/runtime-react-refresh@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/runtime-react-refresh@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 react-error-overlay: 6.0.9 react-refresh: 0.9.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/runtime-service-worker@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/runtime-service-worker@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' '@parcel/rust@2.12.0': {} @@ -25192,137 +28247,126 @@ snapshots: dependencies: detect-libc: 1.0.3 - '@parcel/transformer-babel@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-babel@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/source-map': 2.1.1 '@parcel/utils': 2.12.0 - browserslist: 4.25.3 + browserslist: 4.28.0 json5: 2.2.3 nullthrows: 1.1.1 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/source-map': 2.1.1 '@parcel/utils': 2.12.0 - browserslist: 4.25.3 + browserslist: 4.28.0 lightningcss: 1.28.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 posthtml-render: 3.0.0 - semver: 7.7.2 + semver: 7.7.3 srcset: 4.0.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/core': 2.12.0(@swc/helpers@0.5.15) - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) nullthrows: 1.1.1 - transitivePeerDependencies: - - '@swc/helpers' '@parcel/transformer-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/core': 2.12.0(@swc/helpers@0.5.15) '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 '@parcel/source-map': 2.1.1 '@parcel/utils': 2.12.0 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@swc/helpers': 0.5.15 - browserslist: 4.25.3 + browserslist: 4.28.0 nullthrows: 1.1.1 regenerator-runtime: 0.13.11 - semver: 7.7.2 + semver: 7.7.3 - '@parcel/transformer-json@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-json@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) json5: 2.2.3 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-postcss@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-postcss@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 '@parcel/utils': 2.12.0 clone: 2.1.2 nullthrows: 1.1.1 postcss-value-parser: 4.2.0 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-posthtml@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-posthtml@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 posthtml-render: 3.0.0 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-react-refresh-wrap@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-react-refresh-wrap@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 react-refresh: 0.9.0 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' - '@parcel/transformer-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/transformer-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/diagnostic': 2.12.0 - '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/rust': 2.12.0 nullthrows: 1.1.1 posthtml: 0.16.6 posthtml-parser: 0.10.2 posthtml-render: 3.0.0 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - '@parcel/core' - - '@swc/helpers' '@parcel/types@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': dependencies: @@ -25331,7 +28375,7 @@ snapshots: '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/source-map': 2.1.1 - '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) utility-types: 3.11.0 transitivePeerDependencies: - '@parcel/core' @@ -25408,7 +28452,7 @@ snapshots: '@parcel/watcher-win32-ia32': 2.5.0 '@parcel/watcher-win32-x64': 2.5.0 - '@parcel/workers@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)': + '@parcel/workers@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))': dependencies: '@parcel/core': 2.12.0(@swc/helpers@0.5.15) '@parcel/diagnostic': 2.12.0 @@ -25417,18 +28461,16 @@ snapshots: '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/utils': 2.12.0 nullthrows: 1.1.1 - transitivePeerDependencies: - - '@swc/helpers' - '@phenomnomnominal/tsquery@5.0.1(typescript@5.9.2)': + '@phenomnomnominal/tsquery@5.0.1(typescript@5.9.3)': dependencies: esquery: 1.6.0 - typescript: 5.9.2 + typescript: 5.9.3 '@pkgjs/parseargs@0.11.0': optional: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20))': + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.39.0 @@ -25436,12 +28478,12 @@ snapshots: html-entities: 2.5.2 loader-utils: 2.0.4 react-refresh: 0.14.2 - schema-utils: 4.3.2 + schema-utils: 4.3.3 source-map: 0.7.4 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) optionalDependencies: type-fest: 2.19.0 - webpack-dev-server: 5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + webpack-dev-server: 5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) webpack-hot-middleware: 2.26.1 '@popperjs/core@2.11.8': {} @@ -25455,11 +28497,11 @@ snapshots: '@puppeteer/browsers@2.4.0': dependencies: - debug: 4.4.0 + debug: 4.4.3 extract-zip: 2.0.1 progress: 2.0.3 proxy-agent: 6.4.0 - semver: 7.7.2 + semver: 7.7.3 tar-fs: 3.0.9 unbzip2-stream: 1.4.3 yargs: 17.7.2 @@ -25469,17 +28511,17 @@ snapshots: '@radix-ui/number@1.0.1': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/primitive@1.0.1': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/primitive@1.1.0': {} '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) react: 18.0.0 react-dom: 18.0.0(react@18.0.0) @@ -25489,7 +28531,7 @@ snapshots: '@radix-ui/react-collection@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) @@ -25514,7 +28556,7 @@ snapshots: '@radix-ui/react-compose-refs@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 @@ -25527,7 +28569,7 @@ snapshots: '@radix-ui/react-context@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 @@ -25540,7 +28582,7 @@ snapshots: '@radix-ui/react-direction@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 @@ -25553,7 +28595,7 @@ snapshots: '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) @@ -25567,14 +28609,14 @@ snapshots: '@radix-ui/react-focus-guards@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) @@ -25586,7 +28628,7 @@ snapshots: '@radix-ui/react-id@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) react: 18.0.0 optionalDependencies: @@ -25601,7 +28643,7 @@ snapshots: '@radix-ui/react-popper@1.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@floating-ui/react-dom': 2.1.2(react-dom@18.0.0(react@18.0.0))(react@18.0.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) @@ -25620,7 +28662,7 @@ snapshots: '@radix-ui/react-portal@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) react: 18.0.0 react-dom: 18.0.0(react@18.0.0) @@ -25630,7 +28672,7 @@ snapshots: '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) react: 18.0.0 react-dom: 18.0.0(react@18.0.0) @@ -25666,7 +28708,7 @@ snapshots: '@radix-ui/react-select@1.2.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) @@ -25705,7 +28747,7 @@ snapshots: '@radix-ui/react-slot@1.0.2(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) react: 18.0.0 optionalDependencies: @@ -25761,7 +28803,7 @@ snapshots: '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 @@ -25774,7 +28816,7 @@ snapshots: '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) react: 18.0.0 optionalDependencies: @@ -25789,7 +28831,7 @@ snapshots: '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) react: 18.0.0 optionalDependencies: @@ -25797,7 +28839,7 @@ snapshots: '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 @@ -25810,14 +28852,14 @@ snapshots: '@radix-ui/react-use-previous@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 react: 18.0.0 optionalDependencies: '@types/react': 18.0.0 '@radix-ui/react-use-rect@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/rect': 1.0.1 react: 18.0.0 optionalDependencies: @@ -25825,7 +28867,7 @@ snapshots: '@radix-ui/react-use-size@1.0.1(@types/react@18.0.0)(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) react: 18.0.0 optionalDependencies: @@ -25833,7 +28875,7 @@ snapshots: '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0(react@18.0.0))(react@18.0.0) react: 18.0.0 react-dom: 18.0.0(react@18.0.0) @@ -25843,10 +28885,56 @@ snapshots: '@radix-ui/rect@1.0.1': dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@remix-run/router@1.23.0': {} + '@rolldown/binding-android-arm64@1.0.0-beta.47': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-beta.47': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-beta.47': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-beta.47': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.47': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.47': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.47': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.47': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.47': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.47': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.47': + dependencies: + '@napi-rs/wasm-runtime': 1.0.7 + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.47': + optional: true + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.47': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.47': + optional: true + + '@rolldown/pluginutils@1.0.0-beta.47': {} + '@rollup/plugin-alias@3.1.9(rollup@4.22.4)': dependencies: rollup: 4.22.4 @@ -25919,7 +29007,7 @@ snapshots: dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 - picomatch: 4.0.2 + picomatch: 4.0.3 optionalDependencies: rollup: 4.22.4 @@ -25929,54 +29017,87 @@ snapshots: '@rollup/rollup-android-arm-eabi@4.34.8': optional: true + '@rollup/rollup-android-arm-eabi@4.53.2': + optional: true + '@rollup/rollup-android-arm64@4.22.4': optional: true '@rollup/rollup-android-arm64@4.34.8': optional: true + '@rollup/rollup-android-arm64@4.53.2': + optional: true + '@rollup/rollup-darwin-arm64@4.22.4': optional: true '@rollup/rollup-darwin-arm64@4.34.8': optional: true + '@rollup/rollup-darwin-arm64@4.53.2': + optional: true + '@rollup/rollup-darwin-x64@4.22.4': optional: true '@rollup/rollup-darwin-x64@4.34.8': optional: true + '@rollup/rollup-darwin-x64@4.53.2': + optional: true + '@rollup/rollup-freebsd-arm64@4.34.8': optional: true + '@rollup/rollup-freebsd-arm64@4.53.2': + optional: true + '@rollup/rollup-freebsd-x64@4.34.8': optional: true + '@rollup/rollup-freebsd-x64@4.53.2': + optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': optional: true '@rollup/rollup-linux-arm-gnueabihf@4.34.8': optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.53.2': + optional: true + '@rollup/rollup-linux-arm-musleabihf@4.22.4': optional: true '@rollup/rollup-linux-arm-musleabihf@4.34.8': optional: true + '@rollup/rollup-linux-arm-musleabihf@4.53.2': + optional: true + '@rollup/rollup-linux-arm64-gnu@4.22.4': optional: true '@rollup/rollup-linux-arm64-gnu@4.34.8': optional: true + '@rollup/rollup-linux-arm64-gnu@4.53.2': + optional: true + '@rollup/rollup-linux-arm64-musl@4.22.4': optional: true '@rollup/rollup-linux-arm64-musl@4.34.8': optional: true + '@rollup/rollup-linux-arm64-musl@4.53.2': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.53.2': + optional: true + '@rollup/rollup-linux-loongarch64-gnu@4.34.8': optional: true @@ -25986,48 +29107,81 @@ snapshots: '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': optional: true + '@rollup/rollup-linux-ppc64-gnu@4.53.2': + optional: true + '@rollup/rollup-linux-riscv64-gnu@4.22.4': optional: true '@rollup/rollup-linux-riscv64-gnu@4.34.8': optional: true + '@rollup/rollup-linux-riscv64-gnu@4.53.2': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.53.2': + optional: true + '@rollup/rollup-linux-s390x-gnu@4.22.4': optional: true '@rollup/rollup-linux-s390x-gnu@4.34.8': optional: true + '@rollup/rollup-linux-s390x-gnu@4.53.2': + optional: true + '@rollup/rollup-linux-x64-gnu@4.22.4': optional: true '@rollup/rollup-linux-x64-gnu@4.34.8': optional: true + '@rollup/rollup-linux-x64-gnu@4.53.2': + optional: true + '@rollup/rollup-linux-x64-musl@4.22.4': optional: true '@rollup/rollup-linux-x64-musl@4.34.8': optional: true + '@rollup/rollup-linux-x64-musl@4.53.2': + optional: true + + '@rollup/rollup-openharmony-arm64@4.53.2': + optional: true + '@rollup/rollup-win32-arm64-msvc@4.22.4': optional: true '@rollup/rollup-win32-arm64-msvc@4.34.8': optional: true + '@rollup/rollup-win32-arm64-msvc@4.53.2': + optional: true + '@rollup/rollup-win32-ia32-msvc@4.22.4': optional: true '@rollup/rollup-win32-ia32-msvc@4.34.8': optional: true + '@rollup/rollup-win32-ia32-msvc@4.53.2': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.53.2': + optional: true + '@rollup/rollup-win32-x64-msvc@4.22.4': optional: true '@rollup/rollup-win32-x64-msvc@4.34.8': optional: true + '@rollup/rollup-win32-x64-msvc@4.53.2': + optional: true + '@rollup/wasm-node@4.27.3': dependencies: '@types/estree': 1.0.6 @@ -26060,6 +29214,14 @@ snapshots: transitivePeerDependencies: - chokidar + '@schematics/angular@21.0.0(chokidar@4.0.1)': + dependencies: + '@angular-devkit/core': 21.0.0(chokidar@4.0.1) + '@angular-devkit/schematics': 21.0.0(chokidar@4.0.1) + jsonc-parser: 3.3.1 + transitivePeerDependencies: + - chokidar + '@sigstore/bundle@2.3.2': dependencies: '@sigstore/protobuf-specs': 0.3.2 @@ -26068,14 +29230,22 @@ snapshots: dependencies: '@sigstore/protobuf-specs': 0.4.1 + '@sigstore/bundle@4.0.0': + dependencies: + '@sigstore/protobuf-specs': 0.5.0 + '@sigstore/core@1.1.0': {} '@sigstore/core@2.0.0': {} + '@sigstore/core@3.0.0': {} + '@sigstore/protobuf-specs@0.3.2': {} '@sigstore/protobuf-specs@0.4.1': {} + '@sigstore/protobuf-specs@0.5.0': {} + '@sigstore/sign@2.3.2': dependencies: '@sigstore/bundle': 2.3.2 @@ -26098,6 +29268,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@sigstore/sign@4.0.1': + dependencies: + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.0.0 + '@sigstore/protobuf-specs': 0.5.0 + make-fetch-happen: 15.0.3 + proc-log: 5.0.0 + promise-retry: 2.0.1 + transitivePeerDependencies: + - supports-color + '@sigstore/tuf@2.3.4': dependencies: '@sigstore/protobuf-specs': 0.3.2 @@ -26112,6 +29293,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@sigstore/tuf@4.0.0': + dependencies: + '@sigstore/protobuf-specs': 0.5.0 + tuf-js: 4.0.0 + transitivePeerDependencies: + - supports-color + '@sigstore/verify@1.2.1': dependencies: '@sigstore/bundle': 2.3.2 @@ -26124,6 +29312,12 @@ snapshots: '@sigstore/core': 2.0.0 '@sigstore/protobuf-specs': 0.4.1 + '@sigstore/verify@3.0.0': + dependencies: + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.0.0 + '@sigstore/protobuf-specs': 0.5.0 + '@sinclair/typebox@0.27.8': {} '@sindresorhus/merge-streams@2.3.0': {} @@ -26154,6 +29348,8 @@ snapshots: '@socket.io/component-emitter@3.1.2': {} + '@standard-schema/spec@1.0.0': {} + '@storybook/addon-actions@7.6.19': dependencies: '@storybook/core-events': 7.6.19 @@ -26340,30 +29536,30 @@ snapshots: '@swc/core': 1.9.2(@swc/helpers@0.5.15) '@types/node': 18.19.64 '@types/semver': 7.5.8 - babel-loader: 9.2.1(@babel/core@7.23.9)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + babel-loader: 9.2.1(@babel/core@7.23.9)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.4.1 constants-browserify: 1.0.0 - css-loader: 6.10.0(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + css-loader: 6.10.0(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) es-module-lexer: 1.5.4 express: 4.21.1 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) fs-extra: 11.2.0 - html-webpack-plugin: 5.6.3(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) - magic-string: 0.30.13 + html-webpack-plugin: 5.6.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + magic-string: 0.30.17 path-browserify: 1.0.1 process: 0.11.10 semver: 7.7.2 - style-loader: 3.3.4(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) - swc-loader: 0.2.6(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) - terser-webpack-plugin: 5.3.9(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + style-loader: 3.3.4(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + swc-loader: 0.2.6(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + terser-webpack-plugin: 5.3.9(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) ts-dedent: 2.2.0 url: 0.11.4 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) - webpack-dev-middleware: 6.1.3(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack-dev-middleware: 6.1.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.5.0 optionalDependencies: @@ -26548,13 +29744,13 @@ snapshots: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.7.2 + semver: 7.7.3 telejson: 7.2.0 tiny-invariant: 1.3.3 ts-dedent: 2.2.0 util: 0.12.5 util-deprecate: 1.0.2 - watchpack: 2.4.2 + watchpack: 2.4.4 ws: 8.18.0 transitivePeerDependencies: - bufferutil @@ -26582,7 +29778,7 @@ snapshots: '@storybook/csf-tools@7.6.19': dependencies: - '@babel/generator': 7.27.1 + '@babel/generator': 7.28.5 '@babel/parser': 7.23.9 '@babel/traverse': 7.28.5 '@babel/types': 7.28.5 @@ -26653,27 +29849,27 @@ snapshots: '@storybook/postinstall@7.6.19': {} - '@storybook/preset-react-webpack@7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)': + '@storybook/preset-react-webpack@7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)': dependencies: '@babel/preset-flow': 7.25.9(@babel/core@7.23.9) '@babel/preset-react': 7.25.9(@babel/core@7.23.9) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) '@storybook/core-webpack': 7.6.19(encoding@0.1.13) '@storybook/docs-tools': 7.6.19(encoding@0.1.13) '@storybook/node-logger': 7.6.19 '@storybook/react': 7.6.19(encoding@0.1.13)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(typescript@4.9.5) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) '@types/node': 18.19.64 '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 fs-extra: 11.2.0 - magic-string: 0.30.13 + magic-string: 0.30.17 react: 18.0.0 react-docgen: 7.1.0 react-dom: 18.0.0(react@18.0.0) react-refresh: 0.14.2 semver: 7.7.2 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) optionalDependencies: '@babel/core': 7.23.9 typescript: 4.9.5 @@ -26710,9 +29906,9 @@ snapshots: '@storybook/preview@7.6.19': {} - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20))': + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20))': dependencies: - debug: 4.4.0 + debug: 4.4.3 endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -26720,7 +29916,7 @@ snapshots: react-docgen-typescript: 2.2.2(typescript@4.9.5) tslib: 2.6.3 typescript: 4.9.5 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) transitivePeerDependencies: - supports-color @@ -26729,10 +29925,10 @@ snapshots: react: 18.0.0 react-dom: 18.0.0(react@18.0.0) - '@storybook/react-webpack5@7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)': + '@storybook/react-webpack5@7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1)': dependencies: '@storybook/builder-webpack5': 7.6.19(@swc/helpers@0.5.15)(encoding@0.1.13)(esbuild@0.18.20)(typescript@4.9.5) - '@storybook/preset-react-webpack': 7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1) + '@storybook/preset-react-webpack': 7.6.19(@babel/core@7.23.9)(@swc/core@1.9.2(@swc/helpers@0.5.15))(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)))(webpack-hot-middleware@2.26.1) '@storybook/react': 7.6.19(encoding@0.1.13)(react-dom@18.0.0(react@18.0.0))(react@18.0.0)(typescript@4.9.5) '@types/node': 18.19.64 react: 18.0.0 @@ -26838,10 +30034,10 @@ snapshots: '@types/express': 4.17.21 file-system-cache: 2.3.0 - '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: - '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 4.2.0 espree: 10.3.0 estraverse: 5.3.0 @@ -26850,10 +30046,10 @@ snapshots: - supports-color - typescript - '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: - '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 4.2.0 espree: 10.3.0 estraverse: 5.3.0 @@ -26862,10 +30058,10 @@ snapshots: - supports-color - typescript - '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 4.2.0 espree: 10.3.0 estraverse: 5.3.0 @@ -27007,6 +30203,16 @@ snapshots: '@tufjs/canonical-json': 2.0.0 minimatch: 9.0.5 + '@tufjs/models@4.0.0': + dependencies: + '@tufjs/canonical-json': 2.0.0 + minimatch: 9.0.5 + + '@tybys/wasm-util@0.10.1': + dependencies: + tslib: 2.6.3 + optional: true + '@types/aria-query@5.0.4': {} '@types/babel__core@7.20.5': @@ -27019,16 +30225,16 @@ snapshots: '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.27.1 + '@babel/types': 7.28.5 '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.23.9 - '@babel/types': 7.27.1 + '@babel/types': 7.28.5 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.27.1 + '@babel/types': 7.28.5 '@types/body-parser@1.19.5': dependencies: @@ -27421,35 +30627,35 @@ snapshots: '@types/node': 18.19.64 optional: true - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + '@typescript-eslint/parser': 6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - '@typescript-eslint/utils': 6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + '@typescript-eslint/type-utils': 6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - semver: 7.7.2 - ts-api-utils: 1.4.0(typescript@5.4.5) + semver: 7.7.3 + ts-api-utils: 1.4.0(typescript@5.9.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/scope-manager': 8.23.0 - '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) '@typescript-eslint/visitor-keys': 8.23.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 @@ -27458,15 +30664,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) '@typescript-eslint/scope-manager': 8.23.0 - '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) '@typescript-eslint/visitor-keys': 8.23.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 @@ -27475,20 +30681,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/scope-manager': 8.23.0 - '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.23.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 2.0.1(typescript@5.9.2) - typescript: 5.9.2 + ts-api-utils: 2.0.1(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -27504,10 +30710,10 @@ snapshots: - supports-color - typescript - '@typescript-eslint/experimental-utils@5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/experimental-utils@5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) transitivePeerDependencies: - supports-color - typescript @@ -27525,52 +30731,52 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/parser@6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 '@typescript-eslint/typescript-estree': 8.23.0(typescript@4.9.5) '@typescript-eslint/visitor-keys': 8.23.0 debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 8.23.0 debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 - '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.23.0 debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) - typescript: 5.9.2 + eslint: 9.18.0(jiti@2.6.1) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -27599,48 +30805,48 @@ snapshots: '@typescript-eslint/types': 8.25.0 '@typescript-eslint/visitor-keys': 8.25.0 - '@typescript-eslint/type-utils@6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/type-utils@6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) - '@typescript-eslint/utils': 6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) - ts-api-utils: 1.4.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) + '@typescript-eslint/utils': 6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + debug: 4.4.3 + eslint: 9.18.0(jiti@2.6.1) + ts-api-utils: 1.4.0(typescript@5.9.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@typescript-eslint/typescript-estree': 8.23.0(typescript@4.9.5) - '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) ts-api-utils: 2.0.1(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.4.5) - '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) ts-api-utils: 2.0.1(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) - ts-api-utils: 2.0.1(typescript@5.9.2) - typescript: 5.9.2 + eslint: 9.18.0(jiti@2.6.1) + ts-api-utils: 2.0.1(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -27660,11 +30866,11 @@ snapshots: dependencies: '@typescript-eslint/types': 3.10.1 '@typescript-eslint/visitor-keys': 3.10.1 - debug: 4.4.0 + debug: 4.4.3 glob: 7.2.3 is-glob: 4.0.3 lodash: 4.17.21 - semver: 7.7.2 + semver: 7.7.3 tsutils: 3.21.0(typescript@3.9.10) optionalDependencies: typescript: 3.9.10 @@ -27675,10 +30881,10 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.4.0 + debug: 4.4.3 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.7.2 + semver: 7.7.3 tsutils: 3.21.0(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 @@ -27689,57 +30895,71 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.4.0 + debug: 4.4.3 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.7.2 + semver: 7.7.3 tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.8.3)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.4.0 + debug: 4.4.3 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.7.2 - tsutils: 3.21.0(typescript@5.9.2) + semver: 7.7.3 + tsutils: 3.21.0(typescript@5.8.3) optionalDependencies: - typescript: 5.9.2 + typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.3)': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.4.3 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.3 + tsutils: 3.21.0(typescript@5.9.3) + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.4.0 + debug: 4.4.3 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 - semver: 7.7.2 - ts-api-utils: 1.4.0(typescript@5.4.5) + semver: 7.7.3 + ts-api-utils: 1.4.0(typescript@5.9.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.4.0 + debug: 4.4.3 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 - ts-api-utils: 1.4.0(typescript@5.4.5) + semver: 7.7.3 + ts-api-utils: 1.4.0(typescript@5.9.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -27751,7 +30971,7 @@ snapshots: fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.0.1(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -27765,13 +30985,13 @@ snapshots: fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.0.1(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.23.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.23.0(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.23.0 '@typescript-eslint/visitor-keys': 8.23.0 @@ -27779,9 +30999,9 @@ snapshots: fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 - ts-api-utils: 2.0.1(typescript@5.9.2) - typescript: 5.9.2 + semver: 7.7.3 + ts-api-utils: 2.0.1(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -27789,11 +31009,11 @@ snapshots: dependencies: '@typescript-eslint/types': 8.25.0 '@typescript-eslint/visitor-keys': 8.25.0 - debug: 4.4.0 + debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.0.1(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -27803,163 +31023,163 @@ snapshots: dependencies: '@typescript-eslint/types': 8.25.0 '@typescript-eslint/visitor-keys': 8.25.0 - debug: 4.4.0 + debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.0.1(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.25.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.25.0(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.25.0 '@typescript-eslint/visitor-keys': 8.25.0 - debug: 4.4.0 + debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 - ts-api-utils: 2.0.1(typescript@5.9.2) - typescript: 5.9.2 + semver: 7.7.3 + ts-api-utils: 2.0.1(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@2.6.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-scope: 5.1.1 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@2.6.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-scope: 5.1.1 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@2.6.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) eslint-scope: 5.1.1 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/utils@6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) - semver: 7.7.2 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + semver: 7.7.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/utils@7.18.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 '@typescript-eslint/typescript-estree': 8.23.0(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.23.0 '@typescript-eslint/types': 8.23.0 - '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) - typescript: 5.9.2 + '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5)': + '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.25.0 '@typescript-eslint/types': 8.25.0 '@typescript-eslint/typescript-estree': 8.25.0(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.25.0 '@typescript-eslint/types': 8.25.0 '@typescript-eslint/typescript-estree': 8.25.0(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': + '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.25.0 '@typescript-eslint/types': 8.25.0 - '@typescript-eslint/typescript-estree': 8.25.0(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) - typescript: 5.9.2 + '@typescript-eslint/typescript-estree': 8.25.0(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -27992,32 +31212,32 @@ snapshots: '@typescript-eslint/types': 8.25.0 eslint-visitor-keys: 4.2.0 - '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.8(@types/node@18.19.64)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1))': - dependencies: - vite: 5.1.8(@types/node@18.19.64)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1) - '@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.8(@types/node@20.11.17)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1))': dependencies: vite: 5.1.8(@types/node@20.11.17)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1) - '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))': + '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))': + dependencies: + vite: 6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) + + '@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.2(@types/node@18.19.64)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.28.1)(sass@1.93.2)(terser@5.44.0)(yaml@2.5.0))': dependencies: - vite: 6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) + vite: 7.2.2(@types/node@18.19.64)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.28.1)(sass@1.93.2)(terser@5.44.0)(yaml@2.5.0) - '@vitejs/plugin-react@4.4.1(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))': + '@vitejs/plugin-react@4.4.1(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))': dependencies: '@babel/core': 7.26.10 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) '@types/babel__core': 7.20.5 react-refresh: 0.17.0 - vite: 6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) + vite: 6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.3(vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(vue@3.5.13(typescript@5.8.3))': + '@vitejs/plugin-vue@5.2.3(vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0))(vue@3.5.13(typescript@5.8.3))': dependencies: - vite: 6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) + vite: 6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0) vue: 3.5.13(typescript@5.8.3) '@vitest/expect@0.34.7': @@ -28064,7 +31284,7 @@ snapshots: '@vue/compiler-core@3.4.27': dependencies: - '@babel/parser': 7.27.1 + '@babel/parser': 7.28.5 '@vue/shared': 3.4.27 entities: 4.5.0 estree-walker: 2.0.2 @@ -28072,7 +31292,7 @@ snapshots: '@vue/compiler-core@3.5.13': dependencies: - '@babel/parser': 7.27.1 + '@babel/parser': 7.28.5 '@vue/shared': 3.5.13 entities: 4.5.0 estree-walker: 2.0.2 @@ -28138,14 +31358,14 @@ snapshots: '@vue/compiler-sfc@3.5.13': dependencies: - '@babel/parser': 7.27.1 + '@babel/parser': 7.28.5 '@vue/compiler-core': 3.5.13 '@vue/compiler-dom': 3.5.13 '@vue/compiler-ssr': 3.5.13 '@vue/shared': 3.5.13 estree-walker: 2.0.2 - magic-string: 0.30.17 - postcss: 8.5.3 + magic-string: 0.30.19 + postcss: 8.5.6 source-map-js: 1.2.1 '@vue/compiler-ssr@3.2.47': @@ -28175,19 +31395,19 @@ snapshots: '@vue/devtools-api@6.6.4': {} - '@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@9.31.0(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5)': + '@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@9.31.0(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - '@typescript-eslint/parser': 6.21.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-plugin-vue: 9.31.0(eslint@9.18.0(jiti@1.21.6)) - vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + eslint-plugin-vue: 9.31.0(eslint@9.18.0(jiti@2.6.1)) + vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@2.6.1)) optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@vue/language-core@3.0.8(typescript@5.4.5)': + '@vue/language-core@3.0.8(typescript@5.9.3)': dependencies: '@volar/language-core': 2.4.23 '@vue/compiler-dom': 3.5.13 @@ -28196,9 +31416,9 @@ snapshots: alien-signals: 2.0.7 muggle-string: 0.4.1 path-browserify: 1.0.1 - picomatch: 4.0.2 + picomatch: 4.0.3 optionalDependencies: - typescript: 5.4.5 + typescript: 5.9.3 '@vue/reactivity-transform@3.2.47': dependencies: @@ -28214,7 +31434,7 @@ snapshots: '@vue/compiler-core': 3.3.4 '@vue/shared': 3.3.4 estree-walker: 2.0.2 - magic-string: 0.30.13 + magic-string: 0.30.17 '@vue/reactivity@3.2.47': dependencies: @@ -28268,17 +31488,11 @@ snapshots: '@vue/shared': 3.2.47 vue: 3.2.47 - '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.4.5))': + '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.9.3))': dependencies: '@vue/compiler-ssr': 3.4.27 '@vue/shared': 3.4.27 - vue: 3.4.27(typescript@5.4.5) - - '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.9.2))': - dependencies: - '@vue/compiler-ssr': 3.4.27 - '@vue/shared': 3.4.27 - vue: 3.4.27(typescript@5.9.2) + vue: 3.4.27(typescript@5.9.3) '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.8.3))': dependencies: @@ -28300,10 +31514,10 @@ snapshots: dependencies: vue: 3.2.47 - '@vue/tsconfig@0.7.0(typescript@5.4.5)(vue@3.4.27(typescript@5.4.5))': + '@vue/tsconfig@0.7.0(typescript@5.9.3)(vue@3.4.27(typescript@5.9.3))': optionalDependencies: - typescript: 5.4.5 - vue: 3.4.27(typescript@5.4.5) + typescript: 5.9.3 + vue: 3.4.27(typescript@5.9.3) '@webassemblyjs/ast@1.14.1': dependencies: @@ -28457,6 +31671,8 @@ snapshots: abbrev@3.0.1: {} + abbrev@4.0.0: {} + abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 @@ -28531,13 +31747,7 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.4.0 - transitivePeerDependencies: - - supports-color - - agent-base@7.1.1: - dependencies: - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -28611,6 +31821,23 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 + algoliasearch@5.40.1: + dependencies: + '@algolia/abtesting': 1.6.1 + '@algolia/client-abtesting': 5.40.1 + '@algolia/client-analytics': 5.40.1 + '@algolia/client-common': 5.40.1 + '@algolia/client-insights': 5.40.1 + '@algolia/client-personalization': 5.40.1 + '@algolia/client-query-suggestions': 5.40.1 + '@algolia/client-search': 5.40.1 + '@algolia/ingestion': 1.40.1 + '@algolia/monitoring': 1.40.1 + '@algolia/recommend': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + alien-signals@2.0.7: {} amdefine@1.0.1: {} @@ -29019,14 +32246,24 @@ snapshots: autoprefixer@10.4.20(postcss@8.5.2): dependencies: - browserslist: 4.25.3 - caniuse-lite: 1.0.30001716 + browserslist: 4.28.0 + caniuse-lite: 1.0.30001755 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.21(postcss@8.5.6): + dependencies: + browserslist: 4.28.0 + caniuse-lite: 1.0.30001755 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 @@ -29041,13 +32278,13 @@ snapshots: axios@0.26.1: dependencies: - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.4.3) transitivePeerDependencies: - debug axios@1.7.7: dependencies: - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.4.3) form-data: 4.0.1 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -29131,13 +32368,13 @@ snapshots: transitivePeerDependencies: - supports-color - babel-jest@29.7.0(@babel/core@7.26.10): + babel-jest@29.7.0(@babel/core@7.28.4): dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.26.10) + babel-preset-jest: 29.6.3(@babel/core@7.28.4) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -29145,6 +32382,12 @@ snapshots: - supports-color optional: true + babel-loader@10.0.0(@babel/core@7.28.4)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + '@babel/core': 7.28.4 + find-up: 5.0.0 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + babel-loader@9.1.3(@babel/core@7.24.0)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: '@babel/core': 7.24.0 @@ -29152,18 +32395,18 @@ snapshots: schema-utils: 4.3.2 webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) - babel-loader@9.2.1(@babel/core@7.23.9)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + babel-loader@9.2.1(@babel/core@7.23.9)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@babel/core': 7.23.9 find-cache-dir: 4.0.0 - schema-utils: 4.3.2 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + schema-utils: 4.3.3 + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) babel-loader@9.2.1(@babel/core@7.26.10)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: '@babel/core': 7.26.10 find-cache-dir: 4.0.0 - schema-utils: 4.3.2 + schema-utils: 4.3.3 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) babel-messages@6.23.0: @@ -29179,7 +32422,7 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.23.9) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -29202,16 +32445,16 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.27.1 - '@babel/types': 7.27.1 + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 babel-plugin-macros@2.8.0: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 cosmiconfig: 6.0.0 - resolve: 1.22.10 + resolve: 1.22.11 babel-plugin-module-resolver@5.0.0: dependencies: @@ -29219,7 +32462,7 @@ snapshots: glob: 8.1.0 pkg-up: 3.1.0 reselect: 4.1.8 - resolve: 1.22.10 + resolve: 1.22.11 babel-plugin-module-resolver@5.0.2: dependencies: @@ -29227,13 +32470,13 @@ snapshots: glob: 9.3.5 pkg-up: 3.1.0 reselect: 4.1.8 - resolve: 1.22.10 + resolve: 1.22.11 - babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.26.10): + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.28.4): dependencies: - '@babel/compat-data': 7.26.2 - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.26.10) + '@babel/compat-data': 7.28.5 + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.4) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -29256,11 +32499,20 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.10): + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.26.10): dependencies: - '@babel/compat-data': 7.26.2 + '@babel/compat-data': 7.28.5 '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.10) + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4): + dependencies: + '@babel/compat-data': 7.28.5 + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -29269,15 +32521,23 @@ snapshots: dependencies: '@babel/core': 7.26.10 '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) - core-js-compat: 3.42.0 + core-js-compat: 3.45.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.26.10): + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4): dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.26.10) - core-js-compat: 3.42.0 + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) + core-js-compat: 3.45.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.28.4): + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.4) + core-js-compat: 3.45.1 transitivePeerDependencies: - supports-color @@ -29285,7 +32545,7 @@ snapshots: dependencies: '@babel/core': 7.23.9 '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.9) - core-js-compat: 3.42.0 + core-js-compat: 3.45.1 transitivePeerDependencies: - supports-color @@ -29305,10 +32565,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.26.10): + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.28.4): dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.26.10) + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.4) transitivePeerDependencies: - supports-color @@ -29326,10 +32586,17 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10): + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.26.10): dependencies: '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10) + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4): + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) transitivePeerDependencies: - supports-color @@ -29379,7 +32646,7 @@ snapshots: '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.9) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9) '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9) - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.23.9) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.23.9) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9) @@ -29391,24 +32658,24 @@ snapshots: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9) - babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.10): - dependencies: - '@babel/core': 7.26.10 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.10) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.10) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.10) - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.10) + babel-preset-current-node-syntax@1.1.0(@babel/core@7.28.4): + dependencies: + '@babel/core': 7.28.4 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.4) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.4) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4) optional: true babel-preset-jest@29.6.3(@babel/core@7.23.9): @@ -29417,11 +32684,11 @@ snapshots: babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.23.9) - babel-preset-jest@29.6.3(@babel/core@7.26.10): + babel-preset-jest@29.6.3(@babel/core@7.28.4): dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.10) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.4) optional: true babel-register@6.26.0: @@ -29538,6 +32805,8 @@ snapshots: mixin-deep: 1.3.2 pascalcase: 0.1.1 + baseline-browser-mapping@2.8.29: {} + basic-auth@2.0.1: dependencies: safe-buffer: 5.1.2 @@ -29558,7 +32827,18 @@ snapshots: domhandler: 5.0.3 htmlparser2: 10.0.0 picocolors: 1.1.1 - postcss: 8.5.3 + postcss: 8.5.6 + postcss-media-query-parser: 0.2.3 + + beasties@0.3.5: + dependencies: + css-select: 6.0.0 + css-what: 7.0.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + htmlparser2: 10.0.0 + picocolors: 1.1.1 + postcss: 8.5.6 postcss-media-query-parser: 0.2.3 better-opn@3.0.2: @@ -29621,7 +32901,7 @@ snapshots: dependencies: bytes: 3.1.2 content-type: 1.0.5 - debug: 4.4.0 + debug: 4.4.3 http-errors: 2.0.0 iconv-lite: 0.6.3 on-finished: 2.4.1 @@ -29699,7 +32979,7 @@ snapshots: browser-resolve@2.0.0: dependencies: - resolve: 1.22.10 + resolve: 1.22.11 browserify-aes@1.2.0: dependencies: @@ -29803,7 +33083,7 @@ snapshots: browserslist@4.24.2: dependencies: - caniuse-lite: 1.0.30001683 + caniuse-lite: 1.0.30001755 electron-to-chromium: 1.5.63 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.2) @@ -29817,11 +33097,19 @@ snapshots: browserslist@4.25.3: dependencies: - caniuse-lite: 1.0.30001737 + caniuse-lite: 1.0.30001755 electron-to-chromium: 1.5.208 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.25.3) + browserslist@4.28.0: + dependencies: + baseline-browser-mapping: 2.8.29 + caniuse-lite: 1.0.30001755 + electron-to-chromium: 1.5.255 + node-releases: 2.0.27 + update-browserslist-db: 1.1.4(browserslist@4.28.0) + bs-logger@0.2.6: dependencies: fast-json-stable-stringify: 2.1.0 @@ -29898,7 +33186,21 @@ snapshots: minipass-pipeline: 1.2.4 p-map: 7.0.3 ssri: 12.0.0 - tar: 7.4.3 + tar: 7.5.2 + unique-filename: 4.0.0 + + cacache@20.0.2: + dependencies: + '@npmcli/fs': 4.0.0 + fs-minipass: 3.0.3 + glob: 11.1.0 + lru-cache: 11.2.2 + minipass: 7.1.2 + minipass-collect: 2.0.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + p-map: 7.0.3 + ssri: 13.0.0 unique-filename: 4.0.0 cache-base@1.0.1: @@ -29979,15 +33281,13 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001683: {} - caniuse-lite@1.0.30001716: {} - caniuse-lite@1.0.30001737: {} + caniuse-lite@1.0.30001755: {} canvg@3.0.11: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 '@types/raf': 3.4.3 core-js: 3.39.0 raf: 3.4.1 @@ -30056,6 +33356,8 @@ snapshots: chalk@5.3.0: {} + chalk@5.6.2: {} + change-case@5.4.4: {} char-regex@1.0.2: {} @@ -30068,6 +33370,8 @@ snapshots: chardet@0.7.0: {} + chardet@2.1.1: {} + check-error@1.0.3: dependencies: get-func-name: 2.0.2 @@ -30232,6 +33536,8 @@ snapshots: cli-spinners@2.9.2: {} + cli-spinners@3.3.0: {} + cli-table3@0.6.5: dependencies: string-width: 4.2.3 @@ -30248,6 +33554,11 @@ snapshots: slice-ansi: 5.0.0 string-width: 7.2.0 + cli-truncate@5.1.1: + dependencies: + slice-ansi: 7.1.0 + string-width: 8.1.0 + cli-width@4.1.0: {} cliui@3.2.0: @@ -30268,6 +33579,12 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + cliui@9.0.1: + dependencies: + string-width: 7.2.0 + strip-ansi: 7.1.2 + wrap-ansi: 9.0.0 + clone-buffer@1.0.0: {} clone-deep@4.0.1: @@ -30316,10 +33633,10 @@ snapshots: tslint: 6.1.3(typescript@5.4.5) zone.js: 0.10.3 - codelyzer@6.0.2(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(tslint@6.1.3(typescript@5.9.2)): + codelyzer@6.0.2(@angular/compiler@21.0.0)(@angular/core@21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1))(tslint@6.1.3(typescript@5.9.3)): dependencies: - '@angular/compiler': 19.2.8 - '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/compiler': 21.0.0 + '@angular/core': 21.0.0(@angular/compiler@21.0.0)(rxjs@7.8.2)(zone.js@0.15.1) app-root-path: 3.1.0 aria-query: 3.0.0 axobject-query: 2.0.2 @@ -30331,7 +33648,7 @@ snapshots: source-map: 0.5.7 sprintf-js: 1.1.3 tslib: 1.14.1 - tslint: 6.1.3(typescript@5.9.2) + tslint: 6.1.3(typescript@5.9.3) zone.js: 0.10.3 coffeescript@2.7.0: {} @@ -30561,21 +33878,30 @@ snapshots: glob-parent: 6.0.2 globby: 14.1.0 normalize-path: 3.0.0 - schema-utils: 4.3.2 + schema-utils: 4.3.3 serialize-javascript: 6.0.2 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + copy-webpack-plugin@13.0.1(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + glob-parent: 6.0.2 + normalize-path: 3.0.0 + schema-utils: 4.3.3 + serialize-javascript: 6.0.2 + tinyglobby: 0.2.15 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + core-js-compat@3.39.0: dependencies: - browserslist: 4.25.3 + browserslist: 4.28.0 core-js-compat@3.42.0: dependencies: - browserslist: 4.25.3 + browserslist: 4.28.0 core-js-compat@3.45.1: dependencies: - browserslist: 4.25.3 + browserslist: 4.28.0 core-js-pure@3.39.0: {} @@ -30619,14 +33945,14 @@ snapshots: optionalDependencies: typescript: 4.9.5 - cosmiconfig@8.3.6(typescript@5.9.2): + cosmiconfig@8.3.6(typescript@5.9.3): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 cosmiconfig@9.0.0(typescript@4.9.5): dependencies: @@ -30655,14 +33981,14 @@ snapshots: optionalDependencies: typescript: 5.8.3 - cosmiconfig@9.0.0(typescript@5.9.2): + cosmiconfig@9.0.0(typescript@5.9.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 crc-32@1.2.2: {} @@ -30693,13 +34019,13 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.11 - create-jest@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)): + create-jest@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30708,13 +34034,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + create-jest@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30754,13 +34080,13 @@ snapshots: - ts-node optional: true - create-jest@29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + create-jest@29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30770,13 +34096,13 @@ snapshots: - ts-node optional: true - create-jest@29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + create-jest@29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30785,13 +34111,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + create-jest@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30800,13 +34126,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)): + create-jest@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30872,6 +34198,19 @@ snapshots: utrie: 1.0.2 optional: true + css-loader@6.10.0(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.1.0(postcss@8.4.38) + postcss-modules-scope: 3.2.1(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) + postcss-value-parser: 4.2.0 + semver: 7.6.3 + optionalDependencies: + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + css-loader@6.10.0(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: icss-utils: 5.1.0(postcss@8.4.38) @@ -30898,7 +34237,7 @@ snapshots: optionalDependencies: webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) - css-loader@6.10.0(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + css-loader@6.10.0(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 @@ -30909,9 +34248,9 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15)) - css-loader@6.10.0(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))): + css-loader@7.1.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 @@ -30920,9 +34259,9 @@ snapshots: postcss-modules-scope: 3.2.1(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 - semver: 7.6.3 + semver: 7.7.3 optionalDependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15)) + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) css-loader@7.1.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -30933,7 +34272,7 @@ snapshots: postcss-modules-scope: 3.2.1(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 - semver: 7.7.2 + semver: 7.7.3 optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) @@ -30953,6 +34292,14 @@ snapshots: domutils: 3.2.1 nth-check: 2.1.1 + css-select@6.0.0: + dependencies: + boolbase: 1.0.0 + css-what: 7.0.0 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + css-selector-tokenizer@0.7.3: dependencies: cssesc: 3.0.0 @@ -30975,6 +34322,8 @@ snapshots: css-what@6.1.0: {} + css-what@7.0.0: {} + css.escape@1.5.1: {} css@2.2.3: @@ -31112,6 +34461,10 @@ snapshots: dependencies: ms: 2.1.3 + debug@4.4.3: + dependencies: + ms: 2.1.3 + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 @@ -31329,7 +34682,7 @@ snapshots: detect-port@1.6.1: dependencies: address: 1.2.2 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -31369,10 +34722,10 @@ snapshots: detective-typescript@11.2.0: dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.3) ast-module-types: 5.0.0 node-source-walk: 6.0.2 - typescript: 5.4.5 + typescript: 5.8.3 transitivePeerDependencies: - supports-color @@ -31549,6 +34902,12 @@ snapshots: domelementtype: 2.3.0 domhandler: 5.0.3 + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dot-case@3.0.4: dependencies: no-case: 3.0.4 @@ -31615,7 +34974,7 @@ snapshots: '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.1 - semver: 7.7.2 + semver: 7.7.3 ee-first@1.1.1: {} @@ -31627,6 +34986,8 @@ snapshots: electron-to-chromium@1.5.208: {} + electron-to-chromium@1.5.255: {} + electron-to-chromium@1.5.63: {} elegant-spinner@1.0.1: {} @@ -31708,7 +35069,7 @@ snapshots: enhanced-resolve@5.18.3: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.1 + tapable: 2.3.0 enquirer@2.3.6: dependencies: @@ -32097,7 +35458,7 @@ snapshots: esbuild-plugin-alias@0.2.1: {} - esbuild-plugin-vue3@0.3.2(cheerio@1.0.0-rc.10)(sass@1.85.0): + esbuild-plugin-vue3@0.3.2(cheerio@1.0.0-rc.10)(sass@1.93.2): dependencies: '@vue/compiler-core': 3.5.13 '@vue/compiler-sfc': 3.4.27 @@ -32105,11 +35466,11 @@ snapshots: typescript: 4.9.5 optionalDependencies: cheerio: 1.0.0-rc.10 - sass: 1.85.0 + sass: 1.93.2 esbuild-register@3.6.0(esbuild@0.18.20): dependencies: - debug: 4.4.0 + debug: 4.4.3 esbuild: 0.18.20 transitivePeerDependencies: - supports-color @@ -32123,6 +35484,8 @@ snapshots: esbuild-wasm@0.25.1: {} + esbuild-wasm@0.26.0: {} + esbuild-windows-32@0.14.54: optional: true @@ -32342,6 +35705,35 @@ snapshots: '@esbuild/win32-ia32': 0.25.1 '@esbuild/win32-x64': 0.25.1 + esbuild@0.26.0: + optionalDependencies: + '@esbuild/aix-ppc64': 0.26.0 + '@esbuild/android-arm': 0.26.0 + '@esbuild/android-arm64': 0.26.0 + '@esbuild/android-x64': 0.26.0 + '@esbuild/darwin-arm64': 0.26.0 + '@esbuild/darwin-x64': 0.26.0 + '@esbuild/freebsd-arm64': 0.26.0 + '@esbuild/freebsd-x64': 0.26.0 + '@esbuild/linux-arm': 0.26.0 + '@esbuild/linux-arm64': 0.26.0 + '@esbuild/linux-ia32': 0.26.0 + '@esbuild/linux-loong64': 0.26.0 + '@esbuild/linux-mips64el': 0.26.0 + '@esbuild/linux-ppc64': 0.26.0 + '@esbuild/linux-riscv64': 0.26.0 + '@esbuild/linux-s390x': 0.26.0 + '@esbuild/linux-x64': 0.26.0 + '@esbuild/netbsd-arm64': 0.26.0 + '@esbuild/netbsd-x64': 0.26.0 + '@esbuild/openbsd-arm64': 0.26.0 + '@esbuild/openbsd-x64': 0.26.0 + '@esbuild/openharmony-arm64': 0.26.0 + '@esbuild/sunos-x64': 0.26.0 + '@esbuild/win32-arm64': 0.26.0 + '@esbuild/win32-ia32': 0.26.0 + '@esbuild/win32-x64': 0.26.0 + escalade@3.2.0: {} escape-html@1.0.3: {} @@ -32360,243 +35752,243 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: confusing-browser-globals: 1.0.11 - eslint: 9.18.0(jiti@1.21.6) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) + eslint: 9.18.0(jiti@2.6.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: confusing-browser-globals: 1.0.11 - eslint: 9.18.0(jiti@1.21.6) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)) + eslint: 9.18.0(jiti@2.6.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: confusing-browser-globals: 1.0.11 - eslint: 9.18.0(jiti@1.21.6) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)) + eslint: 9.18.0(jiti@2.6.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 - eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) transitivePeerDependencies: - eslint-plugin-import - eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) transitivePeerDependencies: - eslint-plugin-import - eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) transitivePeerDependencies: - eslint-plugin-import - eslint-config-devextreme@0.2.0(sbvjcxcrzqsdonswljyeavqa6m): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) - - eslint-config-devextreme@1.1.5(fqot4qpv3xuslv5gen77xjlqlu): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) + eslint-config-devextreme@0.2.0(j755spmzc2u2vfhd3qz5oy4z2e): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) - stylelint: 16.5.0(typescript@4.9.5) - stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@4.9.5)) - - eslint-config-devextreme@1.1.5(m3ttf5qxvnatsf5pms6fqnrrf4): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.4.5) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) + + eslint-config-devextreme@1.1.5(biahdh3b5zpcv3bc5g4t6ue2ae): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.4.5) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) stylelint: 16.5.0(typescript@5.4.5) stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.4.5)) - eslint-config-devextreme@1.1.5(zuhb6j5bszthiwwa7gh3t5co7a): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) + eslint-config-devextreme@1.1.5(gokru6wwbhv5cmokx6bn4srgnm): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) stylelint: 16.5.0(typescript@4.9.5) stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@4.9.5)) - eslint-config-devextreme@1.1.6(embchamtz6nagm44iyekfqjgjq): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)))(typescript@5.9.2) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) + eslint-config-devextreme@1.1.5(rhg6ysggthuurggw743xc4yz5a): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) - stylelint: 16.5.0(typescript@5.9.2) - stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.9.2)) - - eslint-config-devextreme@1.1.6(fqot4qpv3xuslv5gen77xjlqlu): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) stylelint: 16.5.0(typescript@4.9.5) stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@4.9.5)) - eslint-config-devextreme@1.1.6(sth5btxrq6id5526az5lp6q44y): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.9.2) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) - stylelint: 16.5.0(typescript@5.9.2) - stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.9.2)) - - eslint-config-devextreme@1.1.6(yz4zcc7jpzkzj5rteb655x27wq): - dependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5) - eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@1.21.6)) - eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@1.21.6)) + eslint-config-devextreme@1.1.6(76jmjim3zu4ghelt3x7rodv7ia): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@1.21.6)) + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) stylelint: 15.11.0(typescript@4.9.5) stylelint-config-standard: 35.0.0(stylelint@15.11.0(typescript@4.9.5)) + eslint-config-devextreme@1.1.6(gokru6wwbhv5cmokx6bn4srgnm): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-rulesdir: 0.2.2 + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) + stylelint: 16.5.0(typescript@4.9.5) + stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@4.9.5)) + + eslint-config-devextreme@1.1.6(pbndtrfnifyeirev7qxkhf5n7q): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.9.3) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-rulesdir: 0.2.2 + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) + stylelint: 16.5.0(typescript@5.9.3) + stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.9.3)) + + eslint-config-devextreme@1.1.6(szajvf4ai4ch4ffjhhiy4jv2ca): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jest: 27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)))(typescript@5.9.3) + eslint-plugin-jest-formatting: 3.1.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.8.0(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-qunit: 8.1.2(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-rulesdir: 0.2.2 + eslint-plugin-spellcheck: 0.0.20(eslint@9.18.0(jiti@2.6.1)) + stylelint: 16.5.0(typescript@5.9.3) + stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.9.3)) + eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 is-core-module: 2.16.1 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-deprecation@3.0.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5): + eslint-plugin-deprecation@3.0.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) - ts-api-utils: 1.4.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.18.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) + ts-api-utils: 1.4.0(typescript@5.9.3) tslib: 2.6.3 - typescript: 5.4.5 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - eslint-plugin-es@3.0.1(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-es@3.0.1(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-utils: 2.1.0 regexpp: 3.2.0 eslint-plugin-i18n@2.4.0: {} - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -32605,9 +35997,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -32619,13 +36011,13 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -32634,9 +36026,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -32648,13 +36040,13 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -32663,9 +36055,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -32677,72 +36069,72 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest-formatting@3.1.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-jest-formatting@3.1.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) - eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5): + eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) jest: 29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5): + eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5))(eslint@9.18.0(jiti@1.21.6))(typescript@4.9.5) - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5))(eslint@9.18.0(jiti@2.6.1))(typescript@4.9.5) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.4.5): + eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.4.5): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5))(eslint@9.18.0(jiti@1.21.6))(typescript@5.4.5) - jest: 29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.18.0(jiti@2.6.1))(typescript@5.4.5) + jest: 29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.9.2): + eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.9.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)))(typescript@5.9.2): + eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)))(typescript@5.9.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - eslint: 9.18.0(jiti@1.21.6) + '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2))(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.9.3) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jsx-a11y@6.8.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-jsx-a11y@6.8.0(eslint@9.18.0(jiti@2.6.1)): dependencies: '@babel/runtime': 7.26.10 aria-query: 5.3.2 @@ -32754,7 +36146,7 @@ snapshots: damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 es-iterator-helpers: 1.2.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 @@ -32764,47 +36156,47 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-node@11.1.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-node@11.1.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) - eslint-plugin-es: 3.0.1(eslint@9.18.0(jiti@1.21.6)) + eslint: 9.18.0(jiti@2.6.1) + eslint-plugin-es: 3.0.1(eslint@9.18.0(jiti@2.6.1)) eslint-utils: 2.1.0 ignore: 5.3.1 minimatch: 3.1.2 resolve: 1.22.8 semver: 6.3.1 - eslint-plugin-qunit@8.1.2(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-qunit@8.1.2(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint-utils: 3.0.0(eslint@9.18.0(jiti@1.21.6)) + eslint-utils: 3.0.0(eslint@9.18.0(jiti@2.6.1)) requireindex: 1.2.0 transitivePeerDependencies: - eslint - eslint-plugin-react-hooks@5.2.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-react-hooks@5.2.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) - eslint-plugin-react-hooks@5.2.0(eslint@9.26.0(jiti@1.21.6)): + eslint-plugin-react-hooks@5.2.0(eslint@9.26.0(jiti@2.6.1)): dependencies: - eslint: 9.26.0(jiti@1.21.6) + eslint: 9.26.0(jiti@2.6.1) - eslint-plugin-react-perf@3.3.2(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-react-perf@3.3.2(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) - eslint-plugin-react-refresh@0.4.20(eslint@9.26.0(jiti@1.21.6)): + eslint-plugin-react-refresh@0.4.20(eslint@9.26.0(jiti@2.6.1)): dependencies: - eslint: 9.26.0(jiti@1.21.6) + eslint: 9.26.0(jiti@2.6.1) - eslint-plugin-react@7.33.2(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-react@7.33.2(eslint@9.18.0(jiti@2.6.1)): dependencies: array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -32817,7 +36209,7 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.11 - eslint-plugin-react@7.37.5(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-react@7.37.5(eslint@9.18.0(jiti@2.6.1)): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -32825,7 +36217,7 @@ snapshots: array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.1 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) estraverse: 5.3.0 hasown: 2.0.2 jsx-ast-utils: 3.3.5 @@ -32841,29 +36233,29 @@ snapshots: eslint-plugin-rulesdir@0.2.2: {} - eslint-plugin-simple-import-sort@10.0.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-simple-import-sort@10.0.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) - eslint-plugin-spellcheck@0.0.20(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-spellcheck@0.0.20(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) globals: 13.24.0 hunspell-spellchecker: 1.0.2 lodash: 4.17.21 eslint-plugin-testcafe@0.2.1: {} - eslint-plugin-unicorn@60.0.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-unicorn@60.0.0(eslint@9.18.0(jiti@2.6.1)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.1 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.3.0 @@ -32876,16 +36268,16 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-vue@9.31.0(eslint@9.18.0(jiti@1.21.6)): + eslint-plugin-vue@9.31.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) - eslint: 9.18.0(jiti@1.21.6) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) + eslint: 9.18.0(jiti@2.6.1) globals: 13.24.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 - semver: 7.7.2 - vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@1.21.6)) + semver: 7.7.3 + vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@2.6.1)) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -32909,9 +36301,9 @@ snapshots: dependencies: eslint-visitor-keys: 1.3.0 - eslint-utils@3.0.0(eslint@9.18.0(jiti@1.21.6)): + eslint-utils@3.0.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 eslint-visitor-keys@1.3.0: {} @@ -32930,7 +36322,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.0 + debug: 4.4.3 doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 @@ -32958,7 +36350,7 @@ snapshots: optionator: 0.9.4 progress: 2.0.3 regexpp: 3.2.0 - semver: 7.7.2 + semver: 7.7.3 strip-ansi: 6.0.1 strip-json-comments: 3.1.1 table: 6.8.2 @@ -32967,9 +36359,9 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@9.18.0(jiti@1.21.6): + eslint@9.18.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.19.2 '@eslint/core': 0.10.0 @@ -33004,13 +36396,13 @@ snapshots: natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 1.21.6 + jiti: 2.6.1 transitivePeerDependencies: - supports-color - eslint@9.26.0(jiti@1.21.6): + eslint@9.26.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.5.0(eslint@9.26.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.5.0(eslint@9.26.0(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.20.0 '@eslint/config-helpers': 0.2.2 @@ -33048,7 +36440,7 @@ snapshots: optionator: 0.9.4 zod: 3.24.4 optionalDependencies: - jiti: 1.21.6 + jiti: 2.6.1 transitivePeerDependencies: - supports-color @@ -33343,7 +36735,7 @@ snapshots: content-type: 1.0.5 cookie: 0.7.2 cookie-signature: 1.2.2 - debug: 4.4.0 + debug: 4.4.3 encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 @@ -33420,7 +36812,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.4.0 + debug: 4.4.3 get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -33520,9 +36912,9 @@ snapshots: dependencies: pend: 1.2.0 - fdir@6.4.4(picomatch@4.0.2): + fdir@6.5.0(picomatch@4.0.3): optionalDependencies: - picomatch: 4.0.2 + picomatch: 4.0.3 fecha@4.2.3: {} @@ -33577,7 +36969,7 @@ snapshots: sass-lookup: 5.0.1 stylus-lookup: 5.0.1 tsconfig-paths: 4.2.0 - typescript: 5.4.5 + typescript: 5.8.3 fill-range@2.2.4: dependencies: @@ -33624,7 +37016,7 @@ snapshots: finalhandler@2.1.0: dependencies: - debug: 4.4.0 + debug: 4.4.3 encodeurl: 2.0.0 escape-html: 1.0.3 on-finished: 2.4.1 @@ -33736,9 +37128,9 @@ snapshots: fn.name@1.1.0: {} - follow-redirects@1.15.9(debug@4.4.0): + follow-redirects@1.15.9(debug@4.4.3): optionalDependencies: - debug: 4.4.0 + debug: 4.4.3 for-each@0.3.3: dependencies: @@ -33772,7 +37164,7 @@ snapshots: fork-stream@0.0.4: {} - fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@babel/code-frame': 7.27.1 chalk: 4.1.2 @@ -33784,10 +37176,10 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.7.2 - tapable: 2.2.1 + semver: 7.7.3 + tapable: 2.3.0 typescript: 4.9.5 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) form-data-encoder@1.7.2: {} @@ -33997,7 +37389,7 @@ snapshots: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.4.0 + debug: 4.4.3 fs-extra: 11.2.0 transitivePeerDependencies: - supports-color @@ -34071,6 +37463,10 @@ snapshots: normalize-path: 3.0.0 streamx: 2.22.0 + glob-to-regex.js@1.2.0(tslib@2.6.3): + dependencies: + tslib: 2.6.3 + glob-to-regexp@0.4.1: {} glob-watcher@5.0.5: @@ -34350,9 +37746,9 @@ snapshots: plugin-error: 1.0.1 through2: 0.4.2 - gulp-eslint-new@2.4.0(jiti@1.21.6): + gulp-eslint-new@2.4.0(jiti@2.6.1): dependencies: - eslint: 9.26.0(jiti@1.21.6) + eslint: 9.26.0(jiti@2.6.1) fancy-log: 2.0.0 plugin-error: 2.0.1 semver: 7.7.2 @@ -34825,6 +38221,10 @@ snapshots: dependencies: lru-cache: 10.4.3 + hosted-git-info@9.0.2: + dependencies: + lru-cache: 11.2.2 + hpack.js@2.1.6: dependencies: inherits: 2.0.4 @@ -34863,7 +38263,7 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.39.0 + terser: 5.44.0 html-react-parser@1.4.14(react@17.0.2): dependencies: @@ -34887,37 +38287,37 @@ snapshots: html-void-elements@2.0.1: {} - html-webpack-plugin@5.6.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)): + html-webpack-plugin@5.6.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.2.1 + tapable: 2.3.0 optionalDependencies: - webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) - optional: true + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) - html-webpack-plugin@5.6.3(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): + html-webpack-plugin@5.6.3(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.2.1 + tapable: 2.3.0 optionalDependencies: - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) optional: true - html-webpack-plugin@5.6.3(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + html-webpack-plugin@5.6.3(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.2.1 + tapable: 2.3.0 optionalDependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) + optional: true html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -34925,7 +38325,7 @@ snapshots: html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.2.1 + tapable: 2.3.0 optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) optional: true @@ -34938,16 +38338,16 @@ snapshots: htmlescape@1.1.1: {} - htmlnano@2.1.1(postcss@8.5.3)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.39.0)(typescript@5.9.2): + htmlnano@2.1.1(postcss@8.5.6)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.44.0)(typescript@5.9.3): dependencies: - cosmiconfig: 9.0.0(typescript@5.9.2) + cosmiconfig: 9.0.0(typescript@5.9.3) posthtml: 0.16.6 timsort: 0.3.0 optionalDependencies: - postcss: 8.5.3 + postcss: 8.5.6 relateurl: 0.2.7 svgo: 2.8.0 - terser: 5.39.0 + terser: 5.44.0 transitivePeerDependencies: - typescript @@ -34955,7 +38355,7 @@ snapshots: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.2.1 + domutils: 3.2.2 entities: 6.0.0 htmlparser2@6.1.0: @@ -35004,21 +38404,33 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color http-proxy-middleware@2.0.7(@types/express@4.17.21): dependencies: '@types/http-proxy': 1.17.15 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1(debug@4.4.3) + is-glob: 4.0.3 + is-plain-obj: 3.0.0 + micromatch: 4.0.8 + optionalDependencies: + '@types/express': 4.17.21 + transitivePeerDependencies: + - debug + + http-proxy-middleware@2.0.9(@types/express@4.17.21): + dependencies: + '@types/http-proxy': 1.17.15 + http-proxy: 1.18.1(debug@4.4.3) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 @@ -35030,18 +38442,18 @@ snapshots: http-proxy-middleware@3.0.5: dependencies: '@types/http-proxy': 1.17.15 - debug: 4.4.0 - http-proxy: 1.18.1(debug@4.4.0) + debug: 4.4.3 + http-proxy: 1.18.1(debug@4.4.3) is-glob: 4.0.3 is-plain-object: 5.0.0 micromatch: 4.0.8 transitivePeerDependencies: - supports-color - http-proxy@1.18.1(debug@4.4.0): + http-proxy@1.18.1(debug@4.4.3): dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.4.3) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -35053,7 +38465,7 @@ snapshots: corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1(debug@4.4.3) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 @@ -35087,14 +38499,14 @@ snapshots: https-proxy-agent@4.0.0: dependencies: agent-base: 5.1.1 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -35108,7 +38520,7 @@ snapshots: https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -35144,6 +38556,10 @@ snapshots: dependencies: safer-buffer: 2.1.2 + iconv-lite@0.7.0: + dependencies: + safer-buffer: 2.1.2 + icss-utils@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -35162,6 +38578,10 @@ snapshots: dependencies: minimatch: 9.0.5 + ignore-walk@8.0.0: + dependencies: + minimatch: 10.1.1 + ignore@4.0.6: {} ignore@5.3.1: {} @@ -35242,6 +38662,8 @@ snapshots: ini@5.0.0: {} + ini@6.0.0: {} + injection-js@2.4.0: dependencies: tslib: 2.6.3 @@ -35289,7 +38711,7 @@ snapshots: dependencies: es-errors: 1.3.0 hasown: 2.0.2 - side-channel: 1.0.6 + side-channel: 1.1.0 internal-slot@1.1.0: dependencies: @@ -35518,6 +38940,8 @@ snapshots: is-interactive@1.0.0: {} + is-interactive@2.0.0: {} + is-jquery-obj@0.1.1: {} is-json@2.0.1: {} @@ -35602,7 +39026,7 @@ snapshots: is-reference@1.2.1: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 is-regex@1.1.4: dependencies: @@ -35677,6 +39101,8 @@ snapshots: is-unicode-supported@0.1.0: {} + is-unicode-supported@2.1.0: {} + is-url-superb@4.0.0: {} is-url@1.2.4: {} @@ -35752,7 +39178,7 @@ snapshots: '@babel/parser': 7.23.9 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color @@ -35764,7 +39190,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.4.0 + debug: 4.4.3 istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -35862,16 +39288,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)): + jest-cli@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + create-jest: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -35883,16 +39309,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-cli@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + create-jest: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -35947,16 +39373,16 @@ snapshots: - ts-node optional: true - jest-cli@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-cli@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + create-jest: 29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -35969,16 +39395,16 @@ snapshots: - ts-node optional: true - jest-cli@29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-cli@29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + create-jest: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -35990,16 +39416,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-cli@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + create-jest: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -36011,16 +39437,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)): + jest-cli@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + create-jest: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + jest-config: 29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -36033,7 +39459,7 @@ snapshots: - ts-node optional: true - jest-config@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36059,7 +39485,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 18.19.64 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -36127,7 +39553,7 @@ snapshots: - supports-color optional: true - jest-config@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-config@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36153,12 +39579,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 18.19.64 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)): + jest-config@29.7.0(@types/node@18.19.64)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36184,7 +39610,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 18.19.64 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -36253,7 +39679,7 @@ snapshots: - supports-color optional: true - jest-config@29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-config@29.7.0(@types/node@20.11.17)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36279,13 +39705,13 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.11.17 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color optional: true - jest-config@29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-config@29.7.0(@types/node@20.12.8)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36311,12 +39737,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.12.8 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest-config@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36342,12 +39768,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.14.5 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)): + jest-config@29.7.0(@types/node@20.14.5)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)): dependencies: '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 @@ -36373,7 +39799,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.14.5 - ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -36496,7 +39922,7 @@ snapshots: jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) jest-util: 29.7.0 jest-validate: 29.7.0 - resolve: 1.22.10 + resolve: 1.22.11 resolve.exports: 2.0.2 slash: 3.0.0 @@ -36556,7 +39982,7 @@ snapshots: jest-snapshot@29.7.0: dependencies: '@babel/core': 7.23.9 - '@babel/generator': 7.27.1 + '@babel/generator': 7.28.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.23.9) '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.23.9) '@babel/types': 7.28.5 @@ -36574,7 +40000,7 @@ snapshots: jest-util: 29.7.0 natural-compare: 1.4.0 pretty-format: 29.7.0 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color @@ -36620,12 +40046,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)): + jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5)) + jest-cli: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -36634,12 +40060,12 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-cli: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -36677,12 +40103,12 @@ snapshots: - ts-node optional: true - jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-cli: 29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -36692,12 +40118,12 @@ snapshots: - ts-node optional: true - jest@29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest@29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-cli: 29.7.0(@types/node@20.12.8)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -36706,12 +40132,12 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)): + jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest-cli: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -36720,12 +40146,12 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)): + jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)): dependencies: - '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + '@jest/core': 29.7.0(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2)) + jest-cli: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -36737,6 +40163,8 @@ snapshots: jiti@1.21.6: {} + jiti@2.6.1: {} + jquery.tmpl@0.0.2: dependencies: jqueryify: 0.0.3 @@ -36782,11 +40210,11 @@ snapshots: dependencies: '@babel/core': 7.23.9 '@babel/parser': 7.23.9 - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.23.9) '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9) '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.23.9) - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.23.9) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.23.9) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.23.9) '@babel/preset-flow': 7.25.9(@babel/core@7.23.9) '@babel/preset-typescript': 7.28.5(@babel/core@7.23.9) '@babel/register': 7.25.9(@babel/core@7.23.9) @@ -36856,6 +40284,8 @@ snapshots: json-parse-even-better-errors@4.0.0: {} + json-parse-even-better-errors@5.0.0: {} + json-schema-traverse@0.4.1: {} json-schema-traverse@1.0.0: {} @@ -36990,7 +40420,7 @@ snapshots: dom-serialize: 2.2.1 glob: 7.2.3 graceful-fs: 4.2.11 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1(debug@4.4.3) isbinaryfile: 4.0.10 lodash: 4.17.21 log4js: 6.9.1 @@ -37102,6 +40532,12 @@ snapshots: optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + less-loader@12.3.0(less@4.4.2)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + less: 4.4.2 + optionalDependencies: + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + less@4.2.0: dependencies: copy-anything: 2.0.6 @@ -37130,6 +40566,20 @@ snapshots: needle: 3.3.1 source-map: 0.6.1 + less@4.4.2: + dependencies: + copy-anything: 2.0.6 + parse-node-version: 1.0.1 + tslib: 2.6.3 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.11 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + needle: 3.3.1 + source-map: 0.6.1 + leven@3.1.0: {} levn@0.4.1: @@ -37137,6 +40587,12 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 + license-webpack-plugin@4.0.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + webpack-sources: 3.2.3 + optionalDependencies: + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + license-webpack-plugin@4.0.2(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: webpack-sources: 3.2.3 @@ -37162,7 +40618,7 @@ snapshots: is-plain-object: 2.0.4 object.map: 1.0.1 rechoir: 0.6.2 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color @@ -37257,6 +40713,15 @@ snapshots: rfdc: 1.4.1 wrap-ansi: 9.0.0 + listr2@9.0.5: + dependencies: + cli-truncate: 5.1.1 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 6.1.0 + rfdc: 1.4.1 + wrap-ansi: 9.0.0 + lmdb@2.8.5: dependencies: msgpackr: 1.11.2 @@ -37288,6 +40753,23 @@ snapshots: '@lmdb/lmdb-win32-x64': 3.2.6 optional: true + lmdb@3.4.3: + dependencies: + msgpackr: 1.11.2 + node-addon-api: 6.1.0 + node-gyp-build-optional-packages: 5.2.2 + ordered-binary: 1.5.3 + weak-lru-cache: 1.2.2 + optionalDependencies: + '@lmdb/lmdb-darwin-arm64': 3.4.3 + '@lmdb/lmdb-darwin-x64': 3.4.3 + '@lmdb/lmdb-linux-arm': 3.4.3 + '@lmdb/lmdb-linux-arm64': 3.4.3 + '@lmdb/lmdb-linux-x64': 3.4.3 + '@lmdb/lmdb-win32-arm64': 3.4.3 + '@lmdb/lmdb-win32-x64': 3.4.3 + optional: true + load-json-file@1.1.0: dependencies: graceful-fs: 4.2.11 @@ -37396,6 +40878,11 @@ snapshots: chalk: 4.1.2 is-unicode-supported: 0.1.0 + log-symbols@7.0.1: + dependencies: + is-unicode-supported: 2.1.0 + yoctocolors: 2.1.2 + log-update-async-hook@2.0.7: dependencies: ansi-escapes: 4.3.2 @@ -37408,7 +40895,7 @@ snapshots: ansi-escapes: 5.0.0 cli-cursor: 4.0.0 slice-ansi: 5.0.0 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrap-ansi: 8.1.0 log-update@6.1.0: @@ -37416,13 +40903,13 @@ snapshots: ansi-escapes: 7.0.0 cli-cursor: 5.0.0 slice-ansi: 7.1.0 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrap-ansi: 9.0.0 log4js@6.9.1: dependencies: date-format: 4.0.14 - debug: 4.4.0 + debug: 4.4.3 flatted: 3.3.2 rfdc: 1.4.1 streamroller: 3.1.5 @@ -37474,6 +40961,8 @@ snapshots: lru-cache@11.0.2: {} + lru-cache@11.2.2: {} + lru-cache@2.6.3: {} lru-cache@5.1.1: @@ -37505,15 +40994,19 @@ snapshots: magic-string@0.30.1: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 magic-string@0.30.13: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 magic-string@0.30.17: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 + + magic-string@0.30.19: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 magic-string@0.30.8: dependencies: @@ -37530,7 +41023,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 make-error@1.3.6: {} @@ -37567,6 +41060,22 @@ snapshots: transitivePeerDependencies: - supports-color + make-fetch-happen@15.0.3: + dependencies: + '@npmcli/agent': 4.0.0 + cacache: 20.0.2 + http-cache-semantics: 4.1.1 + minipass: 7.1.2 + minipass-fetch: 5.0.0 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + negotiator: 1.0.0 + proc-log: 6.0.0 + promise-retry: 2.0.1 + ssri: 13.0.0 + transitivePeerDependencies: + - supports-color + make-iterator@1.0.1: dependencies: kind-of: 6.0.3 @@ -37605,7 +41114,7 @@ snapshots: dependencies: findup-sync: 2.0.0 micromatch: 3.1.10 - resolve: 1.22.10 + resolve: 1.22.11 stack-trace: 0.0.10 transitivePeerDependencies: - supports-color @@ -37700,9 +41209,18 @@ snapshots: memfs@4.17.0: dependencies: - '@jsonjoy.com/json-pack': 1.2.0(tslib@2.6.3) - '@jsonjoy.com/util': 1.5.0(tslib@2.6.3) - tree-dump: 1.0.2(tslib@2.6.3) + '@jsonjoy.com/json-pack': 1.21.0(tslib@2.6.3) + '@jsonjoy.com/util': 1.9.0(tslib@2.6.3) + tree-dump: 1.1.0(tslib@2.6.3) + tslib: 2.6.3 + + memfs@4.51.0: + dependencies: + '@jsonjoy.com/json-pack': 1.21.0(tslib@2.6.3) + '@jsonjoy.com/util': 1.9.0(tslib@2.6.3) + glob-to-regex.js: 1.2.0(tslib@2.6.3) + thingies: 2.5.0(tslib@2.6.3) + tree-dump: 1.1.0(tslib@2.6.3) tslib: 2.6.3 memoizee@0.4.17: @@ -37872,7 +41390,7 @@ snapshots: micromark@3.2.0: dependencies: '@types/debug': 4.1.12 - debug: 4.4.0 + debug: 4.4.3 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -37976,10 +41494,16 @@ snapshots: mini-css-extract-plugin@2.9.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: - schema-utils: 4.3.2 - tapable: 2.2.1 + schema-utils: 4.3.3 + tapable: 2.3.0 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + mini-css-extract-plugin@2.9.4(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + schema-utils: 4.3.3 + tapable: 2.3.0 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + minimalistic-assert@1.0.1: {} minimalistic-crypto-utils@1.0.1: {} @@ -38040,7 +41564,15 @@ snapshots: dependencies: minipass: 7.1.2 minipass-sized: 1.0.3 - minizlib: 3.0.2 + minizlib: 3.1.0 + optionalDependencies: + encoding: 0.1.13 + + minipass-fetch@5.0.0: + dependencies: + minipass: 7.1.2 + minipass-sized: 1.0.3 + minizlib: 3.1.0 optionalDependencies: encoding: 0.1.13 @@ -38076,7 +41608,7 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 - minizlib@3.0.2: + minizlib@3.1.0: dependencies: minipass: 7.1.2 @@ -38127,7 +41659,7 @@ snapshots: inherits: 2.0.4 parents: 1.0.1 readable-stream: 2.3.8 - resolve: 1.22.10 + resolve: 1.22.11 stream-combiner2: 1.1.1 subarg: 1.0.0 through2: 2.0.5 @@ -38204,6 +41736,8 @@ snapshots: nan@2.22.0: optional: true + nanoid@3.3.11: {} + nanoid@3.3.7: {} nanoid@3.3.9: {} @@ -38291,38 +41825,6 @@ snapshots: esbuild: 0.20.2 rollup: 4.22.4 - ng-packagr@17.3.0(@angular/compiler-cli@17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5))(tslib@2.8.1)(typescript@5.4.5): - dependencies: - '@angular/compiler-cli': 17.3.12(@angular/compiler@17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.4.5) - '@rollup/plugin-json': 6.1.0(rollup@4.22.4) - '@rollup/plugin-node-resolve': 15.2.3(rollup@4.22.4) - '@rollup/wasm-node': 4.27.3 - ajv: 8.17.1 - ansi-colors: 4.1.3 - browserslist: 4.24.2 - cacache: 18.0.4 - chokidar: 3.6.0 - commander: 12.1.0 - convert-source-map: 2.0.0 - dependency-graph: 1.0.0 - esbuild-wasm: 0.20.2 - fast-glob: 3.3.2 - find-cache-dir: 3.3.2 - injection-js: 2.4.0 - jsonc-parser: 3.3.1 - less: 4.2.0 - ora: 5.4.1 - piscina: 4.7.0 - postcss: 8.4.38 - rxjs: 7.8.1 - sass: 1.81.0 - tslib: 2.8.1 - typescript: 5.4.5 - optionalDependencies: - esbuild: 0.20.2 - rollup: 4.22.4 - optional: true - nice-napi@1.0.2: dependencies: node-addon-api: 3.2.1 @@ -38390,7 +41892,7 @@ snapshots: make-fetch-happen: 13.0.1 nopt: 7.2.1 proc-log: 4.2.0 - semver: 7.7.2 + semver: 7.7.3 tar: 6.2.1 which: 4.0.0 transitivePeerDependencies: @@ -38404,13 +41906,28 @@ snapshots: make-fetch-happen: 14.0.3 nopt: 8.1.0 proc-log: 5.0.0 - semver: 7.7.2 - tar: 7.4.3 - tinyglobby: 0.2.13 + semver: 7.7.3 + tar: 7.5.2 + tinyglobby: 0.2.15 which: 5.0.0 transitivePeerDependencies: - supports-color + node-gyp@12.1.0: + dependencies: + env-paths: 2.2.1 + exponential-backoff: 3.1.1 + graceful-fs: 4.2.11 + make-fetch-happen: 15.0.3 + nopt: 9.0.0 + proc-log: 6.0.0 + semver: 7.7.3 + tar: 7.5.2 + tinyglobby: 0.2.15 + which: 6.0.0 + transitivePeerDependencies: + - supports-color + node-int64@0.4.0: {} node-machine-id@1.1.12: {} @@ -38419,7 +41936,7 @@ snapshots: dependencies: growly: 1.3.0 is-wsl: 2.2.0 - semver: 7.7.2 + semver: 7.7.3 shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 @@ -38428,6 +41945,8 @@ snapshots: node-releases@2.0.19: {} + node-releases@2.0.27: {} + node-source-walk@6.0.2: dependencies: '@babel/parser': 7.23.9 @@ -38464,10 +41983,14 @@ snapshots: dependencies: abbrev: 3.0.1 + nopt@9.0.0: + dependencies: + abbrev: 4.0.0 + normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.10 + resolve: 1.22.11 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -38475,13 +41998,13 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.16.1 - semver: 7.7.2 + semver: 7.7.3 validate-npm-package-license: 3.0.4 normalize-package-data@6.0.2: dependencies: hosted-git-info: 7.0.2 - semver: 7.7.2 + semver: 7.7.3 validate-npm-package-license: 3.0.4 normalize-path@2.1.1: @@ -38510,16 +42033,22 @@ snapshots: npm-install-checks@6.3.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 npm-install-checks@7.1.1: dependencies: - semver: 7.7.2 + semver: 7.7.3 + + npm-install-checks@8.0.0: + dependencies: + semver: 7.7.3 npm-normalize-package-bin@3.0.1: {} npm-normalize-package-bin@4.0.0: {} + npm-normalize-package-bin@5.0.0: {} + npm-package-arg@11.0.1: dependencies: hosted-git-info: 7.0.2 @@ -38531,9 +42060,21 @@ snapshots: dependencies: hosted-git-info: 8.1.0 proc-log: 5.0.0 - semver: 7.7.2 + semver: 7.7.3 + validate-npm-package-name: 6.0.0 + + npm-package-arg@13.0.1: + dependencies: + hosted-git-info: 9.0.2 + proc-log: 5.0.0 + semver: 7.7.3 validate-npm-package-name: 6.0.0 + npm-packlist@10.0.3: + dependencies: + ignore-walk: 8.0.0 + proc-log: 6.0.0 + npm-packlist@8.0.2: dependencies: ignore-walk: 6.0.5 @@ -38547,7 +42088,14 @@ snapshots: npm-install-checks: 7.1.1 npm-normalize-package-bin: 4.0.0 npm-package-arg: 12.0.2 - semver: 7.7.2 + semver: 7.7.3 + + npm-pick-manifest@11.0.3: + dependencies: + npm-install-checks: 8.0.0 + npm-normalize-package-bin: 5.0.0 + npm-package-arg: 13.0.1 + semver: 7.7.3 npm-pick-manifest@9.0.0: dependencies: @@ -38576,12 +42124,25 @@ snapshots: make-fetch-happen: 14.0.3 minipass: 7.1.2 minipass-fetch: 4.0.1 - minizlib: 3.0.2 + minizlib: 3.1.0 npm-package-arg: 12.0.2 proc-log: 5.0.0 transitivePeerDependencies: - supports-color + npm-registry-fetch@19.1.1: + dependencies: + '@npmcli/redact': 4.0.0 + jsonparse: 1.3.1 + make-fetch-happen: 15.0.3 + minipass: 7.1.2 + minipass-fetch: 5.0.0 + minizlib: 3.1.0 + npm-package-arg: 13.0.1 + proc-log: 6.0.0 + transitivePeerDependencies: + - supports-color + npm-run-all@4.1.5: dependencies: ansi-styles: 3.2.1 @@ -38854,13 +42415,20 @@ snapshots: is-inside-container: 1.0.0 is-wsl: 3.1.0 + open@10.2.0: + dependencies: + default-browser: 5.2.1 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + wsl-utils: 0.1.0 + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - openai@4.73.1(encoding@0.1.13)(zod@3.24.4): + openai@4.73.1(encoding@0.1.13)(zod@3.25.76): dependencies: '@types/node': 18.19.64 '@types/node-fetch': 2.6.12 @@ -38870,7 +42438,7 @@ snapshots: formdata-node: 4.4.1 node-fetch: 2.7.0(encoding@0.1.13) optionalDependencies: - zod: 3.24.4 + zod: 3.25.76 transitivePeerDependencies: - encoding @@ -38915,6 +42483,18 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 + ora@9.0.0: + dependencies: + chalk: 5.6.2 + cli-cursor: 5.0.0 + cli-spinners: 3.3.0 + is-interactive: 2.0.0 + is-unicode-supported: 2.1.0 + log-symbols: 7.0.1 + stdin-discarder: 0.2.2 + string-width: 8.1.0 + strip-ansi: 7.1.2 + ordered-binary@1.5.3: {} ordered-read-streams@1.0.1: @@ -39000,7 +42580,7 @@ snapshots: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.3 get-uri: 6.0.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -39062,6 +42642,28 @@ snapshots: transitivePeerDependencies: - supports-color + pacote@21.0.3: + dependencies: + '@npmcli/git': 7.0.1 + '@npmcli/installed-package-contents': 3.0.0 + '@npmcli/package-json': 7.0.2 + '@npmcli/promise-spawn': 8.0.2 + '@npmcli/run-script': 10.0.3 + cacache: 20.0.2 + fs-minipass: 3.0.3 + minipass: 7.1.2 + npm-package-arg: 13.0.1 + npm-packlist: 10.0.3 + npm-pick-manifest: 11.0.3 + npm-registry-fetch: 19.1.1 + proc-log: 5.0.0 + promise-retry: 2.0.1 + sigstore: 4.0.0 + ssri: 12.0.0 + tar: 7.5.2 + transitivePeerDependencies: + - supports-color + pako@0.2.9: {} pako@1.0.11: {} @@ -39073,18 +42675,18 @@ snapshots: dot-case: 3.0.4 tslib: 2.6.3 - parcel@2.12.0(@swc/helpers@0.5.15)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.9.2): + parcel@2.12.0(@swc/helpers@0.5.15)(postcss@8.5.6)(relateurl@0.2.7)(terser@5.44.0)(typescript@5.9.3): dependencies: - '@parcel/config-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.9.2) + '@parcel/config-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(postcss@8.5.6)(relateurl@0.2.7)(terser@5.44.0)(typescript@5.9.3) '@parcel/core': 2.12.0(@swc/helpers@0.5.15) '@parcel/diagnostic': 2.12.0 '@parcel/events': 2.12.0 '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) '@parcel/logger': 2.12.0 '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/reporter-cli': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) - '@parcel/reporter-tracer': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15))(@swc/helpers@0.5.15) + '@parcel/reporter-cli': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) + '@parcel/reporter-tracer': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.15)) '@parcel/utils': 2.12.0 chalk: 4.1.2 commander: 7.2.0 @@ -39162,6 +42764,12 @@ snapshots: parse5: 7.2.1 parse5-sax-parser: 7.0.0 + parse5-html-rewriting-stream@8.0.0: + dependencies: + entities: 6.0.0 + parse5: 8.0.0 + parse5-sax-parser: 8.0.0 + parse5-htmlparser2-tree-adapter@6.0.1: dependencies: parse5: 6.0.1 @@ -39170,6 +42778,10 @@ snapshots: dependencies: parse5: 7.2.1 + parse5-sax-parser@8.0.0: + dependencies: + parse5: 8.0.0 + parse5@1.5.1: {} parse5@2.2.3: {} @@ -39180,6 +42792,10 @@ snapshots: dependencies: entities: 4.5.0 + parse5@8.0.0: + dependencies: + entities: 6.0.0 + parseurl@1.3.3: {} pascal-case@3.1.2: @@ -39287,6 +42903,8 @@ snapshots: picomatch@4.0.2: {} + picomatch@4.0.3: {} + pidtree@0.3.1: {} pidtree@0.6.0: {} @@ -39317,11 +42935,15 @@ snapshots: piscina@4.7.0: optionalDependencies: - '@napi-rs/nice': 1.0.1 + '@napi-rs/nice': 1.1.1 piscina@4.8.0: optionalDependencies: - '@napi-rs/nice': 1.0.1 + '@napi-rs/nice': 1.1.1 + + piscina@5.1.3: + optionalDependencies: + '@napi-rs/nice': 1.1.1 pkce-challenge@5.0.0: {} @@ -39374,9 +42996,9 @@ snapshots: dependencies: ansi-colors: 1.1.0 - plugin-typescript@8.0.0(typescript@5.4.5): + plugin-typescript@8.0.0(typescript@5.9.3): dependencies: - typescript: 5.4.5 + typescript: 5.9.3 pluralize@8.0.0: {} @@ -39429,6 +43051,17 @@ snapshots: transitivePeerDependencies: - typescript + postcss-loader@8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + cosmiconfig: 9.0.0(typescript@5.9.3) + jiti: 2.6.1 + postcss: 8.5.6 + semver: 7.7.3 + optionalDependencies: + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + transitivePeerDependencies: + - typescript + postcss-media-query-parser@0.2.3: {} postcss-modules-extract-imports@3.1.0(postcss@8.4.38): @@ -39462,9 +43095,9 @@ snapshots: dependencies: postcss: 8.4.38 - postcss-scss@4.0.9(postcss@8.5.3): + postcss-scss@4.0.9(postcss@8.5.6): dependencies: - postcss: 8.5.3 + postcss: 8.5.6 postcss-selector-parser@6.1.2: dependencies: @@ -39499,13 +43132,19 @@ snapshots: postcss@8.5.2: dependencies: - nanoid: 3.3.9 + nanoid: 3.3.11 picocolors: 1.1.1 source-map-js: 1.2.1 postcss@8.5.3: dependencies: - nanoid: 3.3.9 + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 picocolors: 1.1.1 source-map-js: 1.2.1 @@ -39604,6 +43243,8 @@ snapshots: proc-log@5.0.0: {} + proc-log@6.0.0: {} + process-nextick-args@2.0.1: {} process@0.11.10: {} @@ -39652,8 +43293,8 @@ snapshots: proxy-agent@6.4.0: dependencies: - agent-base: 7.1.1 - debug: 4.4.0 + agent-base: 7.1.3 + debug: 4.4.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 lru-cache: 7.18.3 @@ -39703,7 +43344,7 @@ snapshots: puppeteer-core@2.1.1: dependencies: '@types/mime-types': 2.1.4 - debug: 4.4.0 + debug: 4.4.3 extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -39721,7 +43362,7 @@ snapshots: dependencies: '@puppeteer/browsers': 2.4.0 chromium-bidi: 0.8.0(devtools-protocol@0.0.1354347) - debug: 4.4.0 + debug: 4.4.3 devtools-protocol: 0.0.1354347 typed-query-selector: 2.12.0 ws: 8.18.0 @@ -39862,7 +43503,7 @@ snapshots: '@types/doctrine': 0.0.9 '@types/resolve': 1.20.6 doctrine: 3.0.0 - resolve: 1.22.10 + resolve: 1.22.11 strip-indent: 4.0.0 transitivePeerDependencies: - supports-color @@ -40113,11 +43754,11 @@ snapshots: rechoir@0.6.2: dependencies: - resolve: 1.22.10 + resolve: 1.22.11 rechoir@0.7.1: dependencies: - resolve: 1.22.10 + resolve: 1.22.11 rechoir@0.8.0: dependencies: @@ -40180,7 +43821,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 regex-cache@0.4.4: dependencies: @@ -40453,6 +44094,12 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + resolve@1.22.11: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + resolve@1.22.8: dependencies: is-core-module: 2.15.1 @@ -40509,6 +44156,26 @@ snapshots: hash-base: 3.0.4 inherits: 2.0.4 + rolldown@1.0.0-beta.47: + dependencies: + '@oxc-project/types': 0.96.0 + '@rolldown/pluginutils': 1.0.0-beta.47 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-beta.47 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.47 + '@rolldown/binding-darwin-x64': 1.0.0-beta.47 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.47 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.47 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.47 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.47 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.47 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.47 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.47 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.47 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.47 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.47 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.47 + rollup@0.58.2: dependencies: '@types/estree': 0.0.38 @@ -40561,9 +44228,37 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.34.8 fsevents: 2.3.3 + rollup@4.53.2: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.53.2 + '@rollup/rollup-android-arm64': 4.53.2 + '@rollup/rollup-darwin-arm64': 4.53.2 + '@rollup/rollup-darwin-x64': 4.53.2 + '@rollup/rollup-freebsd-arm64': 4.53.2 + '@rollup/rollup-freebsd-x64': 4.53.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.2 + '@rollup/rollup-linux-arm-musleabihf': 4.53.2 + '@rollup/rollup-linux-arm64-gnu': 4.53.2 + '@rollup/rollup-linux-arm64-musl': 4.53.2 + '@rollup/rollup-linux-loong64-gnu': 4.53.2 + '@rollup/rollup-linux-ppc64-gnu': 4.53.2 + '@rollup/rollup-linux-riscv64-gnu': 4.53.2 + '@rollup/rollup-linux-riscv64-musl': 4.53.2 + '@rollup/rollup-linux-s390x-gnu': 4.53.2 + '@rollup/rollup-linux-x64-gnu': 4.53.2 + '@rollup/rollup-linux-x64-musl': 4.53.2 + '@rollup/rollup-openharmony-arm64': 4.53.2 + '@rollup/rollup-win32-arm64-msvc': 4.53.2 + '@rollup/rollup-win32-ia32-msvc': 4.53.2 + '@rollup/rollup-win32-x64-gnu': 4.53.2 + '@rollup/rollup-win32-x64-msvc': 4.53.2 + fsevents: 2.3.3 + router@2.2.0: dependencies: - debug: 4.4.0 + debug: 4.4.3 depd: 2.0.0 is-promise: 4.0.0 parseurl: 1.3.3 @@ -40604,6 +44299,10 @@ snapshots: dependencies: tslib: 2.8.1 + rxjs@7.8.2: + dependencies: + tslib: 2.6.3 + sade@1.8.1: dependencies: mri: 1.2.0 @@ -40755,6 +44454,13 @@ snapshots: sass-embedded: 1.66.0 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + sass-loader@16.0.5(sass@1.93.2)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + neo-async: 2.6.2 + optionalDependencies: + sass: 1.93.2 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + sass-lookup@5.0.1: dependencies: commander: 10.0.1 @@ -40781,6 +44487,14 @@ snapshots: optionalDependencies: '@parcel/watcher': 2.5.0 + sass@1.93.2: + dependencies: + chokidar: 4.0.1 + immutable: 5.0.3 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.5.0 + sax@1.4.1: optional: true @@ -40827,6 +44541,13 @@ snapshots: ajv-formats: 2.1.1(ajv@8.17.1) ajv-keywords: 5.1.0(ajv@8.17.1) + schema-utils@4.3.3: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) + secure-compare@3.0.1: {} secure-keys@1.0.0: {} @@ -40868,6 +44589,8 @@ snapshots: semver@7.7.2: {} + semver@7.7.3: {} + send@0.19.0: dependencies: debug: 2.6.9 @@ -40888,7 +44611,7 @@ snapshots: send@1.2.0: dependencies: - debug: 4.4.0 + debug: 4.4.3 encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 @@ -41092,6 +44815,17 @@ snapshots: transitivePeerDependencies: - supports-color + sigstore@4.0.0: + dependencies: + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.0.0 + '@sigstore/protobuf-specs': 0.5.0 + '@sigstore/sign': 4.0.1 + '@sigstore/tuf': 4.0.0 + '@sigstore/verify': 3.0.0 + transitivePeerDependencies: + - supports-color + simple-concat@1.0.1: {} simple-swizzle@0.2.2: @@ -41197,7 +44931,7 @@ snapshots: socks-proxy-agent@8.0.4: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.3 socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -41215,6 +44949,12 @@ snapshots: source-map-js: 1.2.1 webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) + source-map-loader@5.0.0(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + iconv-lite: 0.6.3 + source-map-js: 1.2.1 + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + source-map-loader@5.0.0(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: iconv-lite: 0.6.3 @@ -41274,6 +45014,8 @@ snapshots: source-map@0.7.4: {} + source-map@0.7.6: {} + sourcemap-codec@1.4.8: {} space-separated-tokens@1.1.5: {} @@ -41298,7 +45040,7 @@ snapshots: spdy-transport@3.0.0: dependencies: - debug: 4.4.0 + debug: 4.4.3 detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -41355,6 +45097,10 @@ snapshots: dependencies: minipass: 7.1.2 + ssri@13.0.0: + dependencies: + minipass: 7.1.2 + stable@0.1.8: {} stack-trace@0.0.10: {} @@ -41380,6 +45126,8 @@ snapshots: statuses@2.0.1: {} + stdin-discarder@0.2.2: {} + stop-iteration-iterator@1.0.0: dependencies: internal-slot: 1.0.7 @@ -41446,7 +45194,7 @@ snapshots: streamroller@3.1.5: dependencies: date-format: 4.0.14 - debug: 4.4.0 + debug: 4.4.3 fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -41487,13 +45235,18 @@ snapshots: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 string-width@7.2.0: dependencies: emoji-regex: 10.4.0 get-east-asian-width: 1.3.0 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 + + string-width@8.1.0: + dependencies: + get-east-asian-width: 1.3.0 + strip-ansi: 7.1.2 string.prototype.codepointat@0.2.1: {} @@ -41609,6 +45362,10 @@ snapshots: dependencies: ansi-regex: 6.1.0 + strip-ansi@7.1.2: + dependencies: + ansi-regex: 6.1.0 + strip-bom-stream@2.0.0: dependencies: first-chunk-stream: 2.0.0 @@ -41648,13 +45405,13 @@ snapshots: minimist: 1.2.8 through: 2.3.8 - style-loader@3.3.4(webpack@5.94.0): + style-loader@3.3.4(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) - style-loader@3.3.4(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + style-loader@3.3.4(webpack@5.94.0): dependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) style-loader@3.3.4(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))): dependencies: @@ -41678,31 +45435,31 @@ snapshots: dependencies: inline-style-parser: 0.2.4 - stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.4.5)): + stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.9.3)): dependencies: postcss-html: 1.7.0 - stylelint: 16.5.0(typescript@5.4.5) + stylelint: 16.5.0(typescript@5.9.3) - stylelint-config-recommended-scss@11.0.0(postcss@8.5.3)(stylelint@15.11.0(typescript@5.9.2)): + stylelint-config-recommended-scss@11.0.0(postcss@8.5.6)(stylelint@15.11.0(typescript@5.9.3)): dependencies: - postcss-scss: 4.0.9(postcss@8.5.3) - stylelint: 15.11.0(typescript@5.9.2) - stylelint-config-recommended: 12.0.0(stylelint@15.11.0(typescript@5.9.2)) - stylelint-scss: 4.7.0(stylelint@15.11.0(typescript@5.9.2)) + postcss-scss: 4.0.9(postcss@8.5.6) + stylelint: 15.11.0(typescript@5.9.3) + stylelint-config-recommended: 12.0.0(stylelint@15.11.0(typescript@5.9.3)) + stylelint-scss: 4.7.0(stylelint@15.11.0(typescript@5.9.3)) optionalDependencies: - postcss: 8.5.3 + postcss: 8.5.6 - stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.4.5)): + stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.9.3)): dependencies: postcss-html: 1.7.0 semver: 7.6.3 - stylelint: 16.5.0(typescript@5.4.5) - stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.4.5)) - stylelint-config-recommended: 14.0.1(stylelint@16.5.0(typescript@5.4.5)) + stylelint: 16.5.0(typescript@5.9.3) + stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.5.0(typescript@5.9.3)) + stylelint-config-recommended: 14.0.1(stylelint@16.5.0(typescript@5.9.3)) - stylelint-config-recommended@12.0.0(stylelint@15.11.0(typescript@5.9.2)): + stylelint-config-recommended@12.0.0(stylelint@15.11.0(typescript@5.9.3)): dependencies: - stylelint: 15.11.0(typescript@5.9.2) + stylelint: 15.11.0(typescript@5.9.3) stylelint-config-recommended@14.0.1(stylelint@15.11.0(typescript@4.9.5)): dependencies: @@ -41716,22 +45473,22 @@ snapshots: dependencies: stylelint: 16.5.0(typescript@5.4.5) - stylelint-config-recommended@14.0.1(stylelint@16.5.0(typescript@5.9.2)): + stylelint-config-recommended@14.0.1(stylelint@16.5.0(typescript@5.9.3)): dependencies: - stylelint: 16.5.0(typescript@5.9.2) + stylelint: 16.5.0(typescript@5.9.3) - stylelint-config-standard-scss@9.0.0(postcss@8.5.3)(stylelint@15.11.0(typescript@5.9.2)): + stylelint-config-standard-scss@9.0.0(postcss@8.5.6)(stylelint@15.11.0(typescript@5.9.3)): dependencies: - stylelint: 15.11.0(typescript@5.9.2) - stylelint-config-recommended-scss: 11.0.0(postcss@8.5.3)(stylelint@15.11.0(typescript@5.9.2)) - stylelint-config-standard: 33.0.0(stylelint@15.11.0(typescript@5.9.2)) + stylelint: 15.11.0(typescript@5.9.3) + stylelint-config-recommended-scss: 11.0.0(postcss@8.5.6)(stylelint@15.11.0(typescript@5.9.3)) + stylelint-config-standard: 33.0.0(stylelint@15.11.0(typescript@5.9.3)) optionalDependencies: - postcss: 8.5.3 + postcss: 8.5.6 - stylelint-config-standard@33.0.0(stylelint@15.11.0(typescript@5.9.2)): + stylelint-config-standard@33.0.0(stylelint@15.11.0(typescript@5.9.3)): dependencies: - stylelint: 15.11.0(typescript@5.9.2) - stylelint-config-recommended: 12.0.0(stylelint@15.11.0(typescript@5.9.2)) + stylelint: 15.11.0(typescript@5.9.3) + stylelint-config-recommended: 12.0.0(stylelint@15.11.0(typescript@5.9.3)) stylelint-config-standard@35.0.0(stylelint@15.11.0(typescript@4.9.5)): dependencies: @@ -41748,22 +45505,22 @@ snapshots: stylelint: 16.5.0(typescript@5.4.5) stylelint-config-recommended: 14.0.1(stylelint@16.5.0(typescript@5.4.5)) - stylelint-config-standard@35.0.0(stylelint@16.5.0(typescript@5.9.2)): + stylelint-config-standard@35.0.0(stylelint@16.5.0(typescript@5.9.3)): dependencies: - stylelint: 16.5.0(typescript@5.9.2) - stylelint-config-recommended: 14.0.1(stylelint@16.5.0(typescript@5.9.2)) + stylelint: 16.5.0(typescript@5.9.3) + stylelint-config-recommended: 14.0.1(stylelint@16.5.0(typescript@5.9.3)) stylelint-devextreme@0.0.6: {} - stylelint-scss@4.7.0(stylelint@15.11.0(typescript@5.9.2)): + stylelint-scss@4.7.0(stylelint@15.11.0(typescript@5.9.3)): dependencies: postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.6 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - stylelint: 15.11.0(typescript@5.9.2) + stylelint: 15.11.0(typescript@5.9.3) - stylelint-scss@6.10.0(stylelint@15.11.0(typescript@5.9.2)): + stylelint-scss@6.10.0(stylelint@15.11.0(typescript@5.9.3)): dependencies: css-tree: 3.1.0 is-plain-object: 5.0.0 @@ -41773,7 +45530,7 @@ snapshots: postcss-resolve-nested-selector: 0.1.6 postcss-selector-parser: 7.0.0 postcss-value-parser: 4.2.0 - stylelint: 15.11.0(typescript@5.9.2) + stylelint: 15.11.0(typescript@5.9.3) stylelint@15.11.0(typescript@4.9.5): dependencies: @@ -41821,7 +45578,7 @@ snapshots: - supports-color - typescript - stylelint@15.11.0(typescript@5.9.2): + stylelint@15.11.0(typescript@5.9.3): dependencies: '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) '@csstools/css-tokenizer': 2.4.1 @@ -41829,7 +45586,7 @@ snapshots: '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 8.3.6(typescript@5.9.2) + cosmiconfig: 8.3.6(typescript@5.9.3) css-functions-list: 3.2.3 css-tree: 2.3.1 debug: 4.3.7 @@ -41957,7 +45714,7 @@ snapshots: - supports-color - typescript - stylelint@16.5.0(typescript@5.9.2): + stylelint@16.5.0(typescript@5.9.3): dependencies: '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) '@csstools/css-tokenizer': 2.4.1 @@ -41966,7 +45723,7 @@ snapshots: '@dual-bundle/import-meta-resolve': 4.1.0 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.9.2) + cosmiconfig: 9.0.0(typescript@5.9.3) css-functions-list: 3.2.3 css-tree: 2.3.1 debug: 4.3.7 @@ -42050,11 +45807,11 @@ snapshots: picocolors: 1.1.1 stable: 0.1.8 - swc-loader@0.2.6(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + swc-loader@0.2.6(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) '@swc/counter': 0.1.3 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) symbol-observable@4.0.0: {} @@ -42114,6 +45871,8 @@ snapshots: tapable@2.2.1: {} + tapable@2.3.0: {} + tar-fs@2.1.1: dependencies: chownr: 1.1.4 @@ -42154,13 +45913,12 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - tar@7.4.3: + tar@7.5.2: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 7.1.2 - minizlib: 3.0.2 - mkdirp: 3.0.1 + minizlib: 3.1.0 yallist: 5.0.0 teex@1.0.1: @@ -42194,14 +45952,14 @@ snapshots: merge-stream: 2.0.0 through2: 3.0.2 - terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 4.3.2 serialize-javascript: 6.0.2 terser: 5.39.0 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) esbuild: 0.18.20 @@ -42218,18 +45976,17 @@ snapshots: '@swc/core': 1.9.2(@swc/helpers@0.5.15) esbuild: 0.20.1 - terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)): + terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 4.3.2 serialize-javascript: 6.0.2 terser: 5.39.0 - webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) esbuild: 0.25.0 - optional: true terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -42276,14 +46033,14 @@ snapshots: optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) - terser-webpack-plugin@5.3.9(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + terser-webpack-plugin@5.3.9(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.39.0 - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) esbuild: 0.18.20 @@ -42312,14 +46069,14 @@ snapshots: terser@3.17.0: dependencies: - acorn: 8.14.0 + acorn: 8.15.0 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 terser@3.8.1: dependencies: - acorn: 8.14.0 + acorn: 8.15.0 commander: 2.16.0 source-map: 0.6.1 source-map-support: 0.5.21 @@ -42345,6 +46102,13 @@ snapshots: commander: 2.20.3 source-map-support: 0.5.21 + terser@5.44.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.15.0 + commander: 2.20.3 + source-map-support: 0.5.21 + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 @@ -42354,7 +46118,7 @@ snapshots: testcafe-browser-tools@2.0.25: dependencies: array-find: 1.0.0 - debug: 4.4.0 + debug: 4.4.3 dedent: 0.7.0 del: 5.1.0 execa: 3.4.0 @@ -42364,7 +46128,7 @@ snapshots: lodash: 4.17.21 mkdirp: 0.5.6 mustache: 2.3.2 - nanoid: 3.3.9 + nanoid: 3.3.11 os-family: 1.1.0 pify: 2.3.0 pinkie: 2.0.4 @@ -42376,7 +46140,7 @@ snapshots: testcafe-browser-tools@2.0.26: dependencies: array-find: 1.0.0 - debug: 4.4.0 + debug: 4.4.3 dedent: 0.7.0 del: 5.1.0 execa: 3.4.0 @@ -42386,7 +46150,7 @@ snapshots: lodash: 4.17.21 mkdirp: 0.5.6 mustache: 2.3.2 - nanoid: 3.3.9 + nanoid: 3.3.11 os-family: 1.1.0 pify: 2.3.0 pinkie: 2.0.4 @@ -42413,7 +46177,7 @@ snapshots: merge-stream: 1.0.1 mime: 1.4.1 mustache: 2.3.2 - nanoid: 3.3.9 + nanoid: 3.3.11 os-family: 1.1.0 parse5: 2.2.3 pinkie: 2.0.4 @@ -42442,7 +46206,7 @@ snapshots: merge-stream: 1.0.1 mime: 1.4.1 mustache: 2.3.2 - nanoid: 3.3.9 + nanoid: 3.3.11 os-family: 1.1.0 parse5: 7.2.1 pinkie: 2.0.4 @@ -42736,7 +46500,7 @@ snapshots: textextensions@3.3.0: {} - thingies@1.21.0(tslib@2.6.3): + thingies@2.5.0(tslib@2.6.3): dependencies: tslib: 2.6.3 @@ -42801,10 +46565,10 @@ snapshots: tiny-invariant@1.3.3: {} - tinyglobby@0.2.13: + tinyglobby@0.2.15: dependencies: - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 tinyspy@2.2.1: {} @@ -42898,7 +46662,7 @@ snapshots: semver: 4.3.6 source-map-support: 0.2.10 - tree-dump@1.0.2(tslib@2.6.3): + tree-dump@1.1.0(tslib@2.6.3): dependencies: tslib: 2.6.3 @@ -42920,9 +46684,9 @@ snapshots: dependencies: utf8-byte-length: 1.0.5 - ts-api-utils@1.4.0(typescript@5.4.5): + ts-api-utils@1.4.0(typescript@5.9.3): dependencies: - typescript: 5.4.5 + typescript: 5.9.3 ts-api-utils@2.0.1(typescript@4.9.5): dependencies: @@ -42932,17 +46696,17 @@ snapshots: dependencies: typescript: 5.4.5 - ts-api-utils@2.0.1(typescript@5.9.2): + ts-api-utils@2.0.1(typescript@5.9.3): dependencies: - typescript: 5.9.2 + typescript: 5.9.3 ts-dedent@2.2.0: {} - ts-jest@29.1.2(@babel/core@7.23.9)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.9))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5): + ts-jest@29.1.2(@babel/core@7.23.9)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.9))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -42955,7 +46719,7 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.23.9) - ts-jest@29.1.2(@babel/core@7.26.10)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5): + ts-jest@29.1.2(@babel/core@7.28.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.11.17)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -42968,32 +46732,32 @@ snapshots: typescript: 4.9.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.10) + babel-jest: 29.7.0(@babel/core@7.28.4) - ts-jest@29.1.2(@babel/core@7.26.10)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.9.2): + ts-jest@29.1.2(@babel/core@7.28.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.7.1 - typescript: 5.9.2 + typescript: 5.9.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.10) + babel-jest: 29.7.0(@babel/core@7.28.4) - ts-jest@29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5): + ts-jest@29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest: 29.7.0(@types/node@18.19.64)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -43002,16 +46766,16 @@ snapshots: typescript: 4.9.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.10) + babel-jest: 29.7.0(@babel/core@7.28.4) - ts-jest@29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@4.9.5): + ts-jest@29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -43020,28 +46784,28 @@ snapshots: typescript: 4.9.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.10) + babel-jest: 29.7.0(@babel/core@7.28.4) - ts-jest@29.1.3(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)))(typescript@5.9.2): + ts-jest@29.1.3(@babel/core@7.28.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.4))(jest@29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2)) + jest: 29.7.0(@types/node@20.14.5)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.7.2 - typescript: 5.9.2 + typescript: 5.9.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.4 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.10) + babel-jest: 29.7.0(@babel/core@7.28.4) ts-loader@9.5.1(typescript@4.9.5)(webpack@5.94.0): dependencies: @@ -43053,14 +46817,14 @@ snapshots: typescript: 4.9.5 webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) - ts-loader@9.5.1(typescript@5.9.2)(webpack@5.94.0): + ts-loader@9.5.1(typescript@5.9.3)(webpack@5.94.0): dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.1 micromatch: 4.0.8 semver: 7.6.3 source-map: 0.7.4 - typescript: 5.9.2 + typescript: 5.9.3 webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) ts-morph@21.0.1: @@ -43068,7 +46832,7 @@ snapshots: '@ts-morph/common': 0.22.0 code-block-writer: 12.0.0 - ts-node@10.9.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2): + ts-node@10.9.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -43082,13 +46846,13 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.9.2 + typescript: 5.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) - ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.4.5): + ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@18.19.64)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -43102,7 +46866,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.4.5 + typescript: 5.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: @@ -43148,7 +46912,7 @@ snapshots: optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) - ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.2): + ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.12.8)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -43162,13 +46926,13 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.9.2 + typescript: 5.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) - ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.2): + ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.14.5)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -43182,7 +46946,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.9.2 + typescript: 5.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: @@ -43237,13 +47001,13 @@ snapshots: js-yaml: 3.14.1 minimatch: 3.1.2 mkdirp: 0.5.6 - resolve: 1.22.10 + resolve: 1.22.11 semver: 5.7.2 tslib: 1.14.1 tsutils: 2.29.0(typescript@5.4.5) typescript: 5.4.5 - tslint@6.1.3(typescript@5.9.2): + tslint@6.1.3(typescript@5.9.3): dependencies: '@babel/code-frame': 7.27.1 builtin-modules: 1.1.1 @@ -43254,21 +47018,21 @@ snapshots: js-yaml: 3.14.1 minimatch: 3.1.2 mkdirp: 0.5.6 - resolve: 1.22.10 + resolve: 1.22.11 semver: 5.7.2 tslib: 1.14.1 - tsutils: 2.29.0(typescript@5.9.2) - typescript: 5.9.2 + tsutils: 2.29.0(typescript@5.9.3) + typescript: 5.9.3 tsutils@2.29.0(typescript@5.4.5): dependencies: tslib: 1.14.1 typescript: 5.4.5 - tsutils@2.29.0(typescript@5.9.2): + tsutils@2.29.0(typescript@5.9.3): dependencies: tslib: 1.14.1 - typescript: 5.9.2 + typescript: 5.9.3 tsutils@3.21.0(typescript@3.9.10): dependencies: @@ -43285,17 +47049,22 @@ snapshots: tslib: 1.14.1 typescript: 5.4.5 - tsutils@3.21.0(typescript@5.9.2): + tsutils@3.21.0(typescript@5.8.3): dependencies: tslib: 1.14.1 - typescript: 5.9.2 + typescript: 5.8.3 + + tsutils@3.21.0(typescript@5.9.3): + dependencies: + tslib: 1.14.1 + typescript: 5.9.3 tty-browserify@0.0.1: {} tuf-js@2.2.1: dependencies: '@tufjs/models': 2.0.1 - debug: 4.4.0 + debug: 4.4.3 make-fetch-happen: 13.0.1 transitivePeerDependencies: - supports-color @@ -43303,11 +47072,19 @@ snapshots: tuf-js@3.0.1: dependencies: '@tufjs/models': 3.0.1 - debug: 4.4.0 + debug: 4.4.3 make-fetch-happen: 14.0.3 transitivePeerDependencies: - supports-color + tuf-js@4.0.0: + dependencies: + '@tufjs/models': 4.0.0 + debug: 4.4.3 + make-fetch-happen: 15.0.3 + transitivePeerDependencies: + - supports-color + tunnel-agent@0.6.0: dependencies: safe-buffer: 5.2.1 @@ -43434,6 +47211,8 @@ snapshots: typescript@5.9.2: {} + typescript@5.9.3: {} + ua-parser-js@0.7.39: {} ufo@1.5.4: {} @@ -43493,6 +47272,8 @@ snapshots: undici@6.11.1: {} + undici@7.16.0: {} + unicode-canonical-property-names-ecmascript@2.0.1: {} unicode-match-property-ecmascript@2.0.0: @@ -43649,6 +47430,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.1.4(browserslist@4.28.0): + dependencies: + browserslist: 4.28.0 + escalade: 3.2.0 + picocolors: 1.1.1 + uri-js@4.4.1: dependencies: punycode: 2.3.1 @@ -43747,7 +47534,7 @@ snapshots: v8-to-istanbul@9.3.0: dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 @@ -43916,19 +47703,6 @@ snapshots: replace-ext: 2.0.0 teex: 1.0.1 - vite@5.1.8(@types/node@18.19.64)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1): - dependencies: - esbuild: 0.19.3 - postcss: 8.4.38 - rollup: 4.22.4 - optionalDependencies: - '@types/node': 18.19.64 - fsevents: 2.3.3 - less: 4.2.0 - lightningcss: 1.28.1 - sass: 1.71.1 - terser: 5.29.1 - vite@5.1.8(@types/node@20.11.17)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1): dependencies: esbuild: 0.19.3 @@ -43942,7 +47716,7 @@ snapshots: sass: 1.71.1 terser: 5.29.1 - vite@5.4.19(@types/node@20.14.5)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0): + vite@5.4.19(@types/node@20.14.5)(less@4.4.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.93.2)(terser@5.44.0): dependencies: esbuild: 0.21.5 postcss: 8.5.3 @@ -43950,13 +47724,13 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 fsevents: 2.3.3 - less: 4.2.2 + less: 4.4.2 lightningcss: 1.28.1 - sass: 1.85.0 + sass: 1.93.2 sass-embedded: 1.66.0 - terser: 5.39.0 + terser: 5.44.0 - vite@6.2.7(@types/node@20.14.5)(jiti@1.21.6)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0): + vite@6.2.7(@types/node@20.14.5)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.28.1)(sass-embedded@1.66.0)(sass@1.85.0)(terser@5.39.0)(yaml@2.5.0): dependencies: esbuild: 0.25.0 postcss: 8.5.3 @@ -43964,7 +47738,7 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 fsevents: 2.3.3 - jiti: 1.21.6 + jiti: 2.6.1 less: 4.2.2 lightningcss: 1.28.1 sass: 1.85.0 @@ -43972,6 +47746,24 @@ snapshots: terser: 5.39.0 yaml: 2.5.0 + vite@7.2.2(@types/node@18.19.64)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.28.1)(sass@1.93.2)(terser@5.44.0)(yaml@2.5.0): + dependencies: + esbuild: 0.25.0 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.53.2 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 18.19.64 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.4.2 + lightningcss: 1.28.1 + sass: 1.93.2 + terser: 5.44.0 + yaml: 2.5.0 + vm-browserify@1.1.2: {} void-elements@2.0.1: {} @@ -43980,7 +47772,7 @@ snapshots: vue-eslint-parser@7.1.1(eslint@7.32.0): dependencies: - debug: 4.4.0 + debug: 4.4.3 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-visitor-keys: 1.3.0 @@ -43990,16 +47782,16 @@ snapshots: transitivePeerDependencies: - supports-color - vue-eslint-parser@9.4.3(eslint@9.18.0(jiti@1.21.6)): + vue-eslint-parser@9.4.3(eslint@9.18.0(jiti@2.6.1)): dependencies: debug: 4.4.0 - eslint: 9.18.0(jiti@1.21.6) + eslint: 9.18.0(jiti@2.6.1) eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 esquery: 1.6.0 lodash: 4.17.21 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color @@ -44023,11 +47815,11 @@ snapshots: '@vue/devtools-api': 6.6.4 vue: 3.5.13(typescript@5.8.3) - vue-tsc@3.0.8(typescript@5.4.5): + vue-tsc@3.0.8(typescript@5.9.3): dependencies: '@volar/typescript': 2.4.23 - '@vue/language-core': 3.0.8(typescript@5.4.5) - typescript: 5.4.5 + '@vue/language-core': 3.0.8(typescript@5.9.3) + typescript: 5.9.3 vue@3.2.47: dependencies: @@ -44037,25 +47829,15 @@ snapshots: '@vue/server-renderer': 3.2.47(vue@3.2.47) '@vue/shared': 3.2.47 - vue@3.4.27(typescript@5.4.5): - dependencies: - '@vue/compiler-dom': 3.4.27 - '@vue/compiler-sfc': 3.4.27 - '@vue/runtime-dom': 3.4.27 - '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.4.5)) - '@vue/shared': 3.4.27 - optionalDependencies: - typescript: 5.4.5 - - vue@3.4.27(typescript@5.9.2): + vue@3.4.27(typescript@5.9.3): dependencies: '@vue/compiler-dom': 3.4.27 '@vue/compiler-sfc': 3.4.27 '@vue/runtime-dom': 3.4.27 - '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.9.2)) + '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.9.3)) '@vue/shared': 3.4.27 optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 vue@3.5.13(typescript@5.8.3): dependencies: @@ -44067,9 +47849,9 @@ snapshots: optionalDependencies: typescript: 5.8.3 - vuex@4.0.0-beta.4(vue@3.4.27(typescript@5.4.5)): + vuex@4.0.0-beta.4(vue@3.4.27(typescript@5.9.3)): dependencies: - vue: 3.4.27(typescript@5.4.5) + vue: 3.4.27(typescript@5.9.3) w3c-xmlserializer@4.0.0: dependencies: @@ -44089,6 +47871,11 @@ snapshots: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 + watchpack@2.4.4: + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + wbuf@1.7.3: dependencies: minimalistic-assert: 1.0.1 @@ -44148,7 +47935,7 @@ snapshots: memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) webpack-dev-middleware@6.1.2(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): @@ -44161,15 +47948,15 @@ snapshots: optionalDependencies: webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) - webpack-dev-middleware@6.1.3(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + webpack-dev-middleware@6.1.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 optionalDependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) webpack-dev-middleware@7.4.2(webpack@5.94.0): dependencies: @@ -44182,7 +47969,7 @@ snapshots: optionalDependencies: webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4) - webpack-dev-middleware@7.4.2(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + webpack-dev-middleware@7.4.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: colorette: 2.0.20 memfs: 4.17.0 @@ -44191,17 +47978,39 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.2 optionalDependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + + webpack-dev-middleware@7.4.5(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + dependencies: + colorette: 2.0.20 + memfs: 4.51.0 + mime-types: 3.0.1 + on-finished: 2.4.1 + range-parser: 1.2.1 + schema-utils: 4.3.3 + optionalDependencies: + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) optional: true - webpack-dev-middleware@7.4.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): + webpack-dev-middleware@7.4.5(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): dependencies: colorette: 2.0.20 - memfs: 4.17.0 - mime-types: 2.1.35 + memfs: 4.51.0 + mime-types: 3.0.1 on-finished: 2.4.1 range-parser: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 + optionalDependencies: + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + + webpack-dev-middleware@7.4.5(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): + dependencies: + colorette: 2.0.20 + memfs: 4.51.0 + mime-types: 3.0.1 + on-finished: 2.4.1 + range-parser: 1.2.1 + schema-utils: 4.3.3 optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) @@ -44262,17 +48071,17 @@ snapshots: connect-history-api-fallback: 2.0.0 express: 4.21.2 graceful-fs: 4.2.11 - http-proxy-middleware: 2.0.7(@types/express@4.17.21) + http-proxy-middleware: 2.0.9(@types/express@4.17.21) ipaddr.js: 2.2.0 launch-editor: 2.9.1 - open: 10.1.0 + open: 10.2.0 p-retry: 6.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 selfsigned: 2.4.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) + webpack-dev-middleware: 7.4.5(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) ws: 8.18.0 optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) @@ -44321,7 +48130,7 @@ snapshots: - supports-color - utf-8-validate - webpack-dev-server@5.2.1(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -44339,20 +48148,20 @@ snapshots: connect-history-api-fallback: 2.0.0 express: 4.21.2 graceful-fs: 4.2.11 - http-proxy-middleware: 2.0.7(@types/express@4.17.21) + http-proxy-middleware: 2.0.9(@types/express@4.17.21) ipaddr.js: 2.2.0 launch-editor: 2.9.1 - open: 10.1.0 + open: 10.2.0 p-retry: 6.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 selfsigned: 2.4.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.2(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + webpack-dev-middleware: 7.4.5(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) ws: 8.18.0 optionalDependencies: - webpack: 5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20) transitivePeerDependencies: - bufferutil - debug @@ -44360,6 +48169,44 @@ snapshots: - utf-8-validate optional: true + webpack-dev-server@5.2.2(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): + dependencies: + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/express-serve-static-core': 4.19.6 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.7 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.13 + ansi-html-community: 0.0.8 + bonjour-service: 1.3.0 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.7.5 + connect-history-api-fallback: 2.0.0 + express: 4.21.2 + graceful-fs: 4.2.11 + http-proxy-middleware: 2.0.9(@types/express@4.17.21) + ipaddr.js: 2.2.0 + launch-editor: 2.9.1 + open: 10.2.0 + p-retry: 6.2.1 + schema-utils: 4.3.3 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack-dev-middleware: 7.4.5(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + ws: 8.18.0 + optionalDependencies: + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + webpack-hot-middleware@2.26.1: dependencies: ansi-html-community: 0.0.8 @@ -44398,12 +48245,12 @@ snapshots: vinyl: 2.2.1 webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)))(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)))(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)): dependencies: typed-assert: 1.0.9 - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) + webpack: 5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) optionalDependencies: - html-webpack-plugin: 5.6.3(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)) + html-webpack-plugin: 5.6.3(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)))(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: @@ -44455,7 +48302,7 @@ snapshots: - esbuild - uglify-js - webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0): + webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -44479,26 +48326,27 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.2 tapable: 2.2.1 - terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)) + terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) watchpack: 2.4.2 webpack-sources: 3.3.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - optional: true - webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1): + webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0): dependencies: - '@types/estree': 1.0.6 + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 '@webassemblyjs/ast': 1.14.1 '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 - acorn: 8.14.0 - acorn-import-attributes: 1.9.5(acorn@8.14.0) - browserslist: 4.24.4 + acorn: 8.15.0 + acorn-import-phases: 1.0.4(acorn@8.15.0) + browserslist: 4.28.0 chrome-trace-event: 1.0.4 - enhanced-resolve: 5.17.1 + enhanced-resolve: 5.18.3 es-module-lexer: 1.5.4 eslint-scope: 5.1.1 events: 3.3.0 @@ -44508,17 +48356,17 @@ snapshots: loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) - watchpack: 2.4.2 - webpack-sources: 3.2.3 + schema-utils: 4.3.3 + tapable: 2.3.0 + terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)(webpack@5.102.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.26.0)) + watchpack: 2.4.4 + webpack-sources: 3.3.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@4.10.0): + webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.14.1 @@ -44540,17 +48388,15 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.94.0) + terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) watchpack: 2.4.2 webpack-sources: 3.2.3 - optionalDependencies: - webpack-cli: 4.10.0(webpack@5.94.0) transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4): + webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@4.10.0): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.14.1 @@ -44576,20 +48422,20 @@ snapshots: watchpack: 2.4.2 webpack-sources: 3.2.3 optionalDependencies: - webpack-cli: 5.1.4(webpack-dev-server@5.2.1)(webpack@5.94.0) + webpack-cli: 4.10.0(webpack@5.94.0) transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15)): + webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4): dependencies: - '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.14.1 '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.14.0 + acorn-import-attributes: 1.9.5(acorn@8.14.0) browserslist: 4.24.4 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 @@ -44604,15 +48450,17 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))) + terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.94.0) watchpack: 2.4.2 webpack-sources: 3.2.3 + optionalDependencies: + webpack-cli: 5.1.4(webpack-dev-server@5.2.1)(webpack@5.94.0) transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20): + webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15)): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.6 @@ -44634,7 +48482,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) + terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -44650,9 +48498,9 @@ snapshots: '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 - browserslist: 4.25.3 + browserslist: 4.28.0 chrome-trace-event: 1.0.4 - enhanced-resolve: 5.17.1 + enhanced-resolve: 5.18.3 es-module-lexer: 1.5.4 eslint-scope: 5.1.1 events: 3.3.0 @@ -44662,11 +48510,11 @@ snapshots: loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 4.3.2 - tapable: 2.2.1 + schema-utils: 4.3.3 + tapable: 2.3.0 terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) - watchpack: 2.4.2 - webpack-sources: 3.2.3 + watchpack: 2.4.4 + webpack-sources: 3.3.3 transitivePeerDependencies: - '@swc/core' - esbuild @@ -44796,6 +48644,10 @@ snapshots: dependencies: isexe: 3.1.1 + which@6.0.0: + dependencies: + isexe: 3.1.1 + wildcard@2.0.1: {} windows-release@5.1.1: @@ -44847,13 +48699,13 @@ snapshots: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 string-width: 7.2.0 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrappy@1.0.2: {} @@ -44883,6 +48735,10 @@ snapshots: ws@8.18.0: {} + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.0 + xhr2@0.2.1: {} xml-name-validator@4.0.0: {} @@ -44917,6 +48773,8 @@ snapshots: yargs-parser@21.1.1: {} + yargs-parser@22.0.0: {} + yargs-parser@5.0.1: dependencies: camelcase: 3.0.0 @@ -44942,6 +48800,15 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 + yargs@18.0.0: + dependencies: + cliui: 9.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + string-width: 7.2.0 + y18n: 5.0.8 + yargs-parser: 22.0.0 + yargs@7.1.2: dependencies: camelcase: 3.0.0 @@ -44969,7 +48836,9 @@ snapshots: yocto-queue@1.1.1: {} - yoctocolors-cjs@2.1.2: {} + yoctocolors-cjs@2.1.3: {} + + yoctocolors@2.1.2: {} zip-stream@6.0.1: dependencies: @@ -44977,18 +48846,22 @@ snapshots: compress-commons: 6.0.2 readable-stream: 4.7.0 - zod-to-json-schema@3.24.5(zod@3.24.4): + zod-to-json-schema@3.24.5(zod@3.25.76): dependencies: - zod: 3.24.4 + zod: 3.25.76 zod@3.23.8: {} zod@3.24.4: {} + zod@3.25.76: {} + zone.js@0.10.3: {} zone.js@0.14.10: {} zone.js@0.15.0: {} + zone.js@0.15.1: {} + zwitch@2.0.4: {}