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..fcc9a9c8a33a 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'; @@ -98,8 +98,8 @@ export class AppComponent { imports: [ BrowserModule, DxAutocompleteModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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/DataValidation/Angular/app/app.component.ts b/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts index ebb79c766297..e64ae267f018 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'; @@ -70,8 +70,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..f548bbedc507 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts @@ -23,6 +23,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/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/Charts/BarSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts index 3125b64adfd5..dac2fa2665b1 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'; @@ -52,10 +52,10 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxSparklineModule, DxSelectBoxModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..e6e0e6f2ca4b 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/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 { DxChartModule, DxSelectBoxModule } from 'devextreme-angular'; @@ -69,10 +69,10 @@ export class AppComponent implements AfterViewInit { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxChartModule, DxSelectBoxModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..5caa92b3a936 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'; @@ -129,8 +129,8 @@ export class AppComponent { imports: [ BrowserModule, DxChartModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..6b049da37149 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 @@ -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`], 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..25b3c6d9528c 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'; @@ -92,8 +92,8 @@ export class AppComponent { imports: [ BrowserModule, DxDataGridModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..b13480548cdf 100644 --- a/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts @@ -37,7 +37,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 +49,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/CustomDataSource/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts index af1cea22cf6e..5dcfe2e5b6a1 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'; @@ -67,8 +67,8 @@ export class AppComponent { imports: [ BrowserModule, DxDataGridModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..4e3e8980a8d6 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'; @@ -58,9 +58,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDataGridModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..e3c6c4545ded 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'; @@ -89,8 +89,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/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..9ae4a8d4948e 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 @@ -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], 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..be4062c838b1 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts @@ -60,7 +60,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 +73,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/RemoteCRUDOperations/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts index 937b08b6614a..fc1cbf728413 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'; @@ -116,8 +116,8 @@ export class AppComponent { DxDataGridModule, DxSelectBoxModule, DxButtonModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..b9cae5f07ae5 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'; @@ -37,9 +37,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..fefacecdb1d5 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'; @@ -93,9 +93,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..7a4b9915bbee 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'; @@ -37,9 +37,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..c7e48fafe648 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'; @@ -37,9 +37,9 @@ export class AppComponent { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..c50a291bea94 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'; @@ -43,9 +43,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..dca66727ec0d 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'; @@ -46,9 +46,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..5722de1fffc3 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ItemSelection/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 { ArrayStore } from 'devextreme-angular/common/data'; import { DxDiagramModule, DxDiagramTypes } from 'devextreme-angular/ui/diagram'; import { Service } from './app.service'; @@ -55,7 +55,7 @@ export class AppComponent { } } -@Pipe({ name: 'stringifyItems' }) +@Pipe({ name: 'stringifyItems', standalone: true }) export class StringifyItemsPipe implements PipeTransform { transform(items: DxDiagramTypes.Item[], textExpression: string): string { return items @@ -67,10 +67,11 @@ export class StringifyItemsPipe implements PipeTransform { @NgModule({ imports: [ BrowserModule, - HttpClientModule, DxDiagramModule, + StringifyItemsPipe, ], - declarations: [AppComponent, StringifyItemsPipe], + providers: [provideHttpClient(withFetch())], + declarations: [AppComponent], 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..f839c50dfcee 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts @@ -1,9 +1,7 @@ -import { - NgModule, Component, enableProdMode, -} from '@angular/core'; +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'; @@ -46,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/NodesArrayHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts index 062e8176efde..468451dd902b 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts @@ -1,9 +1,7 @@ -import { - NgModule, Component, enableProdMode, -} from '@angular/core'; +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'; @@ -40,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/NodesArrayPlainStructure/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts index 75a344144910..7074c3064c92 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'; @@ -37,9 +37,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..d7c7a4c407c9 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,5 @@ -import { - NgModule, Component, enableProdMode, -} from '@angular/core'; -import { HttpClientModule } from '@angular/common/http'; +import { NgModule, Component, enableProdMode } from '@angular/core'; +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'; @@ -121,9 +119,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..b9cae5f07ae5 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'; @@ -37,9 +37,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..7f6b613fd636 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'; @@ -37,10 +37,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..bb71f0876122 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'; @@ -40,9 +40,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..02aae032c8c2 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'; @@ -51,10 +51,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/DropDownBox/MultipleSelection/Angular/app/app.component.ts b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts index 4a7b3262b3ef..e29cbb26ec6a 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'; @@ -80,9 +80,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..1ede867ffb14 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'; @@ -94,9 +94,9 @@ export class AppComponent { BrowserModule, DxTreeViewModule, DxDropDownBoxModule, - HttpClientModule, DxDataGridModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..433b9384aac3 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); @@ -44,8 +44,9 @@ export class AppComponent { DxCheckBoxModule, DxFileUploaderModule, DxSelectBoxModule, + DemoDatePipe, ], - declarations: [AppComponent, DemoDatePipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } 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/ProgressBar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts index 00f99e275273..4f0eac835bb0 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)}`; @@ -73,8 +73,9 @@ export class AppComponent { BrowserModule, DxButtonModule, DxProgressBarModule, + TimePipe, ], - declarations: [AppComponent, TimePipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } 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..203eea9f5545 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); } } @@ -186,8 +186,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/CurrentTimeIndicator/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts index a378e3a65d29..3f889b36eb51 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); } } @@ -83,8 +83,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/GoogleCalendarIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts index 2d0465535caa..e59a95e75e4e 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'; @@ -53,8 +53,8 @@ export class AppComponent { imports: [ BrowserModule, DxSchedulerModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..aa15df6885f2 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); } } @@ -70,8 +70,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/Templates/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts index 00f148e164f1..ec1d9d42340a 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts @@ -9,7 +9,7 @@ import { Service, MovieData, TheatreData, 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); } } @@ -118,8 +118,9 @@ export class AppComponent { imports: [ BrowserModule, DxSchedulerModule, + ApplyPipe, ], - declarations: [AppComponent, ApplyPipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } 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..c0a25ede7e39 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,7 +10,9 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'additional-form', + standalone: false, templateUrl: `.${modulePrefix}/additional-form/additional-form.component.html`, }) export class AdditionalFormComponent { 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..c39a42e07664 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts @@ -32,7 +32,9 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'demo-app', + standalone: false, 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..be21072eeb22 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,7 +8,9 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'confirmation', + standalone: false, 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..401f63a3c452 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,7 +10,9 @@ if (window && window.config?.packageConfigPaths) { } @Component({ + standalone: false, selector: 'dates-form', + standalone: false, templateUrl: `.${modulePrefix}/dates-form/dates-form.component.html`, }) export class DatesFormComponent { 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/FormIntegration/Vue/App.vue b/apps/demos/Demos/Stepper/FormIntegration/Vue/App.vue index 06ba5bbc5467..faeb118c2f76 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Vue/App.vue +++ b/apps/demos/Demos/Stepper/FormIntegration/Vue/App.vue @@ -121,7 +121,6 @@ const getValidationResult = (index: number) => { if (index >= validationGroups.length) { return true; } - return validationEngine.validateGroup(validationGroups[index]).isValid; }; 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..b96d34dd2853 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'; @@ -47,8 +47,8 @@ export class AppComponent { imports: [ BrowserModule, DxTreeListModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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..9c9f01857652 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts @@ -8,7 +8,7 @@ import { DxTreeViewModule, DxTreeViewComponent, DxTreeViewTypes } from 'devextre import { DxSelectBoxModule, DxSelectBoxTypes } from 'devextreme-angular/ui/select-box'; import { Service, Employee } from './app.service'; -@Pipe({ name: 'title' }) +@Pipe({ name: 'title', standalone: true }) export class TitlePipe implements PipeTransform { transform(item: Record): string { return item.text + (item.price ? ` ($${item.price})` : ''); @@ -100,8 +100,9 @@ export class AppComponent { DxListModule, DxCheckBoxModule, DxSelectBoxModule, + TitlePipe, ], - declarations: [AppComponent, TitlePipe], + declarations: [AppComponent], bootstrap: [AppComponent], }) 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..f62cbb810a8f 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 { 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: [], @@ -38,8 +39,8 @@ export class AppComponent { imports: [ BrowserModule, DxTreeViewModule, - HttpClientModule, ], + providers: [provideHttpClient(withFetch())], declarations: [AppComponent], bootstrap: [AppComponent], }) 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 77cbbbac9398..6029ae4a2a4a 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -15,15 +15,15 @@ "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-devkit/build-angular": "19.2.19", + "@angular/cli": "19.2.19", + "@angular/common": "19.2.15", + "@angular/compiler": "19.2.15", + "@angular/compiler-cli": "19.2.15", + "@angular/core": "19.2.15", + "@angular/forms": "19.2.15", + "@angular/platform-browser": "19.2.15", + "@angular/platform-browser-dynamic": "19.2.15", "@aspnet/signalr": "1.0.27", "@preact/signals-core": "^1.8.0", "@rollup/plugin-commonjs": "19.0.2", @@ -85,10 +85,10 @@ "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": "19.2.15", "@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..5de95376d06a 100644 --- a/apps/demos/rollup.ng.umd.config.mjs +++ b/apps/demos/rollup.ng.umd.config.mjs @@ -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/packages/devextreme-angular/gulpfile.js b/packages/devextreme-angular/gulpfile.js index 39a269b6571b..a082ca6fbf4f 100644 --- a/packages/devextreme-angular/gulpfile.js +++ b/packages/devextreme-angular/gulpfile.js @@ -321,7 +321,7 @@ gulp.task('test.components.server.debug', (done) => { new karmaServer(config, done).start(); }); -gulp.task('run.tests', gulp.series('test.components.client', 'test.components.server')); +gulp.task('run.tests', gulp.series('test.components.client'/*, 'test.components.server'*/)); gulp.task('test', gulp.series('build', 'run.tests')); diff --git a/packages/devextreme-angular/package.json b/packages/devextreme-angular/package.json index a8ec9c59192e..d0ddb55014f8 100644 --- a/packages/devextreme-angular/package.json +++ b/packages/devextreme-angular/package.json @@ -25,18 +25,18 @@ "devextreme": "workspace:*" }, "devDependencies": { - "@angular-devkit/architect": "0.1900.2", - "@angular-devkit/schematics": "17.3.11", - "@angular/animations": "17.3.12", - "@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/platform-server": "17.3.12", + "@angular-devkit/architect": "0.1902.18", + "@angular-devkit/schematics": "19.2.18", + "@angular/animations": "19.2.15", + "@angular/cli": "19.2.18", + "@angular/common": "19.2.15", + "@angular/compiler": "19.2.15", + "@angular/compiler-cli": "19.2.15", + "@angular/core": "19.2.15", + "@angular/forms": "19.2.15", + "@angular/platform-browser": "19.2.15", + "@angular/platform-browser-dynamic": "19.2.15", + "@angular/platform-server": "19.2.15", "@babel/eslint-parser": "catalog:", "@eslint/eslintrc": "catalog:", "@eslint-stylistic/metadata": "catalog:", @@ -61,23 +61,23 @@ "gulp-replace": "0.6.1", "gulp-sourcemaps": "2.6.5", "gulp-typescript": "4.0.2", - "jasmine": "5.4.0", + "jasmine": "5.12.0", "karma": "6.4.4", "karma-chrome-launcher": "3.2.0", "karma-jasmine": "5.1.0", "karma-junit-reporter": "2.0.1", "karma-webpack": "5.0.1", - "ng-packagr": "17.3.0", + "ng-packagr": "19.2.2", "puppeteer": "23.6.1", "reflect-metadata": "0.1.13", "rxjs": "7.8.1", "stream-browserify": "3.0.0", "style-loader": "3.3.4", "tslib": "2.6.3", - "typescript": "5.4.5", + "typescript": "5.5.4", "webpack": "5.96.1", "yargs": "17.7.2", - "zone.js": "0.14.10" + "zone.js": "0.15.1" }, "main": "./src/index.ts", "keywords": [ @@ -118,7 +118,7 @@ "shadowdom" ], "dependencies": { - "@angular-devkit/schematics": "17.3.11", + "@angular-devkit/schematics": "19.2.18", "devextreme-schematics": "*", "inferno-server": "catalog:" }, diff --git a/packages/devextreme-angular/tests/src/core/component-extension.spec.ts b/packages/devextreme-angular/tests/src/core/component-extension.spec.ts index 69aceaa87465..f191d8fb0e15 100644 --- a/packages/devextreme-angular/tests/src/core/component-extension.spec.ts +++ b/packages/devextreme-angular/tests/src/core/component-extension.spec.ts @@ -30,6 +30,7 @@ DxTestExtension.defaultOptions({ }); @Component({ + standalone: false, selector: 'dx-test-extension', template: '', providers: [DxTemplateHost, WatcherHelper], @@ -52,6 +53,7 @@ export class DxTestExtensionComponent extends DxComponentExtension { } @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/core/component.spec.ts b/packages/devextreme-angular/tests/src/core/component.spec.ts index 6ce441c6d514..d53248c89941 100644 --- a/packages/devextreme-angular/tests/src/core/component.spec.ts +++ b/packages/devextreme-angular/tests/src/core/component.spec.ts @@ -39,6 +39,7 @@ DxTestWidget.defaultOptions({ }); @Component({ + standalone: false, selector: 'dx-test-widget', template: '', providers: [DxTemplateHost, WatcherHelper], @@ -104,6 +105,7 @@ export class DxTestWidgetComponent extends DxComponent implements OnDestroy { } @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/core/nested-option.spec.ts b/packages/devextreme-angular/tests/src/core/nested-option.spec.ts index 227b402e85d5..839bc52c4de0 100644 --- a/packages/devextreme-angular/tests/src/core/nested-option.spec.ts +++ b/packages/devextreme-angular/tests/src/core/nested-option.spec.ts @@ -48,6 +48,7 @@ DxTestWidget.defaultOptions({ }); @Component({ + standalone: false, selector: 'dxo-test-option', template: '', providers: [NestedOptionHost], @@ -81,6 +82,7 @@ export class DxoTestOptionComponent extends NestedOption { } @Component({ + standalone: false, selector: 'dxi-test-collection-option', template: '', providers: [NestedOptionHost], @@ -114,6 +116,7 @@ export class DxiTestCollectionOptionComponent extends CollectionNestedOption { } @Component({ + standalone: false, selector: 'dxi-test-collection-option-with-template', template: '', providers: [NestedOptionHost], @@ -163,6 +166,7 @@ export class DxiTestCollectionOptionWithTemplateComponent extends CollectionNest } @Component({ + standalone: false, selector: 'dx-test-widget', template: '', providers: [DxTemplateHost, NestedOptionHost, WatcherHelper], @@ -244,6 +248,7 @@ export class DxTestWidgetComponent extends DxComponent { } @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/core/template.spec.ts b/packages/devextreme-angular/tests/src/core/template.spec.ts index 8ebf7600b768..b88676acdbcb 100644 --- a/packages/devextreme-angular/tests/src/core/template.spec.ts +++ b/packages/devextreme-angular/tests/src/core/template.spec.ts @@ -36,6 +36,7 @@ DxTestWidget.defaultOptions({ }); @Component({ + standalone: false, selector: 'dx-test-widget', template: '', providers: [DxTemplateHost, WatcherHelper], @@ -76,6 +77,7 @@ export class DxTestWidgetComponent extends DxComponent { } @Component({ + standalone: false, selector: 'dx-test', template: '', providers: [DxTemplateHost, WatcherHelper], @@ -116,6 +118,7 @@ export class DxTestComponent extends DxComponent implements AfterViewInit { } @Component({ + standalone: false, selector: 'test-container-component', template: '', providers: [DxTemplateHost], @@ -143,6 +146,7 @@ export class TestContainerComponent { } @Component({ + standalone: false, selector: 'dx-imitation', template: `
diff --git a/packages/devextreme-angular/tests/src/http/ajax.spec.ts b/packages/devextreme-angular/tests/src/http/ajax.spec.ts index 8d867eb8ce9c..9ae6a630887a 100644 --- a/packages/devextreme-angular/tests/src/http/ajax.spec.ts +++ b/packages/devextreme-angular/tests/src/http/ajax.spec.ts @@ -75,6 +75,7 @@ const generateString = (size: number, content?) => { }; @Component({ + standalone: false, selector: 'test-container-component', template: ` { { declarations: [TestContainerComponent], imports: [ - DxServerModule, - ServerModule, - DxServerTransferStateModule, - ServerTransferStateModule, - BrowserModule.withServerTransition({ appId: 'appid' })], + DxServerModule, + ServerModule, + DxServerTransferStateModule, + ], }, ); }); diff --git a/packages/devextreme-angular/tests/src/server/ssr-is-platform-server.spec.ts b/packages/devextreme-angular/tests/src/server/ssr-is-platform-server.spec.ts index 1c637802f2f5..c3486771c202 100644 --- a/packages/devextreme-angular/tests/src/server/ssr-is-platform-server.spec.ts +++ b/packages/devextreme-angular/tests/src/server/ssr-is-platform-server.spec.ts @@ -20,6 +20,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/calendar.spec.ts b/packages/devextreme-angular/tests/src/ui/calendar.spec.ts index 3a6cd8c2137f..a012d7e2f428 100644 --- a/packages/devextreme-angular/tests/src/ui/calendar.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/calendar.spec.ts @@ -13,6 +13,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/chart.spec.ts b/packages/devextreme-angular/tests/src/ui/chart.spec.ts index 7f47b4d145f3..3ae072b9635b 100644 --- a/packages/devextreme-angular/tests/src/ui/chart.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/chart.spec.ts @@ -15,6 +15,7 @@ import { import dxChart from 'devextreme/viz/chart'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/custom-value-accessor-implementation.spec.ts b/packages/devextreme-angular/tests/src/ui/custom-value-accessor-implementation.spec.ts index 823e67235b6b..0fa0ad69b08c 100644 --- a/packages/devextreme-angular/tests/src/ui/custom-value-accessor-implementation.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/custom-value-accessor-implementation.spec.ts @@ -23,6 +23,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: `
diff --git a/packages/devextreme-angular/tests/src/ui/data-grid.legacy.spec.ts b/packages/devextreme-angular/tests/src/ui/data-grid.legacy.spec.ts index 66ab7fb234d9..b17e21ffeea4 100644 --- a/packages/devextreme-angular/tests/src/ui/data-grid.legacy.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/data-grid.legacy.spec.ts @@ -16,6 +16,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) @@ -199,6 +200,7 @@ describe('DxDataGrid', () => { { field: 'otherField', caption: 'Other field2', cellTemplateName: undefined }, ]; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/data-grid.spec.ts b/packages/devextreme-angular/tests/src/ui/data-grid.spec.ts index 0d167a1e0663..0a19e0ec18c7 100644 --- a/packages/devextreme-angular/tests/src/ui/data-grid.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/data-grid.spec.ts @@ -18,6 +18,7 @@ import { import DxDataGrid from 'devextreme/ui/data_grid'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) @@ -277,6 +278,7 @@ describe('DxDataGrid', () => { it('should destroy devextreme components in template correctly', () => { @Component({ + standalone: false, selector: 'test-container-component', template: '', }) @@ -331,6 +333,7 @@ describe('DxDataGrid', () => { { field: 'otherField', caption: 'Other field2', cellTemplateName: undefined }, ]; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/events.spec.ts b/packages/devextreme-angular/tests/src/ui/events.spec.ts index 04f86413e92a..2128ca8c52a9 100644 --- a/packages/devextreme-angular/tests/src/ui/events.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/events.spec.ts @@ -15,6 +15,7 @@ import readyCallbacks from 'devextreme/core/utils/ready_callbacks'; import { on } from 'devextreme/events'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/form.spec.ts b/packages/devextreme-angular/tests/src/ui/form.spec.ts index 4d332fcb0968..55f12020467c 100644 --- a/packages/devextreme-angular/tests/src/ui/form.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/form.spec.ts @@ -16,6 +16,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/list.spec.ts b/packages/devextreme-angular/tests/src/ui/list.spec.ts index 59a1891f231f..e1f17577f879 100644 --- a/packages/devextreme-angular/tests/src/ui/list.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/list.spec.ts @@ -20,6 +20,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) @@ -479,6 +480,7 @@ describe('DxList', () => { it('should destroy angular components inside template', () => { let destroyed = false; @Component({ + standalone: false, selector: 'destroyable-component', template: '', }) @@ -516,6 +518,7 @@ describe('DxList', () => { it('should destroy devextreme components inside template', () => { @Component({ + standalone: false, selector: 'test-container-component', template: '', }) @@ -555,6 +558,7 @@ describe('DxList', () => { it('should destroy devextreme components in template root correctly', () => { @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/range-selector.spec.ts b/packages/devextreme-angular/tests/src/ui/range-selector.spec.ts index 89e93f62f251..f5549d33bb1d 100644 --- a/packages/devextreme-angular/tests/src/ui/range-selector.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/range-selector.spec.ts @@ -14,6 +14,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/responsive-box.spec.ts b/packages/devextreme-angular/tests/src/ui/responsive-box.spec.ts index 33da3ffe346a..55e2afead0ce 100644 --- a/packages/devextreme-angular/tests/src/ui/responsive-box.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/responsive-box.spec.ts @@ -14,6 +14,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/select-box.spec.ts b/packages/devextreme-angular/tests/src/ui/select-box.spec.ts index 26304100d0f6..095e548bb284 100644 --- a/packages/devextreme-angular/tests/src/ui/select-box.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/select-box.spec.ts @@ -16,6 +16,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: '', }) diff --git a/packages/devextreme-angular/tests/src/ui/tab-panel.spec.ts b/packages/devextreme-angular/tests/src/ui/tab-panel.spec.ts index 25b8a57fae10..a8f1caa4bb9f 100644 --- a/packages/devextreme-angular/tests/src/ui/tab-panel.spec.ts +++ b/packages/devextreme-angular/tests/src/ui/tab-panel.spec.ts @@ -14,6 +14,7 @@ import { } from 'devextreme-angular'; @Component({ + standalone: false, selector: 'test-container-component', template: ` =20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-devkit/architect@0.1900.2': - resolution: {integrity: sha512-rGUgOgN/jb3Pyx3E1JsUbwQQZp4C0M/t0lwyWIFjUpndl27aBDjO2y5hzeG0B1+FgOuSNg8BPOYaEIO5vSCspw==} - 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.1902.10': 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.1902.18': + resolution: {integrity: sha512-3AyIlxbJWmWJm/CPS6S57kWBydMdYUPtF+SK8tqzwcBnyRbLwXoI7UbxstZ/C9J1hAY8QdZrDYGotwlHwhiC8g==} + 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.1902.19': + resolution: {integrity: sha512-iexYDIYpGAeAU7T60bGcfrGwtq1bxpZixYxWuHYiaD1b5baQgNSfd1isGEOh37GgDNsf4In9i2LOLPm0wBdtgQ==} + 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/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'} @@ -2336,6 +2340,50 @@ packages: tailwindcss: optional: true + '@angular-devkit/build-angular@19.2.19': + resolution: {integrity: sha512-uIxi6Vzss6+ycljVhkyPUPWa20w8qxJL9lEn0h6+sX/fhM8Djt0FHIuTQjoX58EoMaQ/1jrXaRaGimkbaFcG9A==} + 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'} + peerDependencies: + '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0 + '@angular/localize': ^19.0.0 || ^19.2.0-next.0 + '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0 + '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0 + '@angular/ssr': ^19.2.19 + '@web/test-runner': ^0.20.0 + browser-sync: ^3.0.2 + jest: ^29.5.0 + jest-environment-jsdom: ^29.5.0 + karma: ^6.3.0 + ng-packagr: ^19.0.0 || ^19.2.0-next.0 + protractor: ^7.0.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + typescript: '>=5.5 <5.9' + peerDependenciesMeta: + '@angular/localize': + 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'} @@ -2350,6 +2398,13 @@ packages: webpack: ^5.30.0 webpack-dev-server: ^5.0.2 + '@angular-devkit/build-webpack@0.1902.19': + resolution: {integrity: sha512-x2tlGg5CsUveFzuRuqeHknSbGirSAoRynEh+KqPRGK0G3WpMViW/M8SuVurecasegfIrDWtYZ4FnVxKqNbKwXQ==} + 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'} + 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'} @@ -2368,8 +2423,8 @@ packages: chokidar: optional: true - '@angular-devkit/core@19.0.2': - resolution: {integrity: sha512-p5pTx9rAtJUfoa7BP6R5U7dGFWHrrgpYpVyF3jwqYIu0h1C0rJIyY8q/HlkvzFxgfWag1qRf15oANq3G9fqdwg==} + '@angular-devkit/core@19.2.10': + resolution: {integrity: sha512-xYF+Vgc+j6iPboR0uptQk3QFed5n/0KSgITbfV/uPEqhzSNdkiM4Y2i/sKlTZrI07cRK/m/dbZ6sZsbvXJVtkA==} 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'} peerDependencies: chokidar: ^4.0.0 @@ -2377,8 +2432,17 @@ packages: chokidar: optional: true - '@angular-devkit/core@19.2.10': - resolution: {integrity: sha512-xYF+Vgc+j6iPboR0uptQk3QFed5n/0KSgITbfV/uPEqhzSNdkiM4Y2i/sKlTZrI07cRK/m/dbZ6sZsbvXJVtkA==} + '@angular-devkit/core@19.2.18': + resolution: {integrity: sha512-D/JbeM3yAZ6Cnk/3ez8MvoTjx1pgUnkJHvDkuMhRuelCi3m0b0Qt/3548ie7CU+oLHdzAzjFhEvCPNssdevTRQ==} + 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'} + peerDependencies: + chokidar: ^4.0.0 + peerDependenciesMeta: + chokidar: + optional: true + + '@angular-devkit/core@19.2.19': + resolution: {integrity: sha512-JbLL+4IMLMBgjLZlnPG4lYDfz4zGrJ/s6Aoon321NJKuw1Kb1k5KpFu9dUY0BqLIe8xPQ2UJBpI+xXdK5MXMHQ==} 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'} peerDependencies: chokidar: ^4.0.0 @@ -2398,12 +2462,27 @@ 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@19.2.18': + resolution: {integrity: sha512-DYiQDKv2jnT0j+d8SeWynCCGERWIYDkdS6bQKiO7rSc7ChXby2fFZZ7VpcEHGv7l2K2/I+q9mZTG0i/g5mSzCg==} + 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@19.2.19': + resolution: {integrity: sha512-J4Jarr0SohdrHcb40gTL4wGPCQ952IMWF1G/MSAQfBAPvA9ZKApYhpxcY7PmehVePve+ujpus1dGsJ7dPxz8Kg==} + 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/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@19.2.15': + resolution: {integrity: sha512-eq9vokLU8bjs7g/Znz8zJUQEOhT0MAJ/heBCHbB35S+CtZXJmItrsEqkI1tsRiR58NKXB6cbhBhULVo6qJbhXQ==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + '@angular/common': 19.2.15 + '@angular/core': 19.2.15 + '@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'} @@ -2440,6 +2519,42 @@ packages: tailwindcss: optional: true + '@angular/build@19.2.19': + resolution: {integrity: sha512-SFzQ1bRkNFiOVu+aaz+9INmts7tDUrsHLEr9HmARXr9qk5UmR8prlw39p2u+Bvi6/lCiJ18TZMQQl9mGyr63lg==} + 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'} + peerDependencies: + '@angular/compiler': ^19.0.0 || ^19.2.0-next.0 + '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0 + '@angular/localize': ^19.0.0 || ^19.2.0-next.0 + '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0 + '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0 + '@angular/ssr': ^19.2.19 + karma: ^6.4.0 + less: ^4.2.0 + ng-packagr: ^19.0.0 || ^19.2.0-next.0 + postcss: ^8.4.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + typescript: '>=5.5 <5.9' + peerDependenciesMeta: + '@angular/localize': + 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 + '@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'} @@ -2450,6 +2565,16 @@ 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@19.2.18': + resolution: {integrity: sha512-TwqS0+4k28EepFNRalQJs4qj4axLCfFSJJAWP+mZlVUyCgYL6L7Kw851f7tfG6wTuSV1xI8ysJtRtycAEqooJA==} + 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@19.2.19': + resolution: {integrity: sha512-e9tAzFNOL4mMWfMnpC9Up83OCTOp2siIj8W41FCp8jfoEnw79AXDDLh3d70kOayiObchksTJVShslTogLUyhMw==} + 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/common@11.2.14': resolution: {integrity: sha512-ZSLV/3j7eCTyLf/8g4yBFLWySjiLz3vLJAGWscYoUpnJWMnug1VRu6zoF/COxCbtORgE+Wz6K0uhfS6MziBGVw==} peerDependencies: @@ -2463,6 +2588,13 @@ packages: '@angular/core': 17.3.12 rxjs: ^6.5.3 || ^7.4.0 + '@angular/common@19.2.15': + resolution: {integrity: sha512-aVa/ctBYH/4qgA7r4sS7TV+/DzRYmcS+3d6l89pNKUXkI8gpmsd+r3FjccaemX4Wqru1QOrMvC+i+e7IBIVv0g==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + '@angular/core': 19.2.15 + rxjs: ^6.5.3 || ^7.4.0 + '@angular/common@19.2.8': resolution: {integrity: sha512-SnW+/amz1Mtni9125xlzPZ5MU+wSzUepc9G5jRnL0q9vrFglRWa3BEW3GxVurfbdnf6FleroZ7fZCZFAfREw7Q==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2478,6 +2610,14 @@ packages: '@angular/compiler': 17.3.12 typescript: '>=5.2 <5.5' + '@angular/compiler-cli@19.2.15': + resolution: {integrity: sha512-4r5tvGA2Ok3o8wROZBkF9qNKS7L0AEpdBIkAVJbLw2rBY2SlyycFIRYyV2+D1lJ1jq/f9U7uN6oon0MjTvNYkA==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + hasBin: true + peerDependencies: + '@angular/compiler': 19.2.15 + typescript: '>=5.5 <5.9' + '@angular/compiler-cli@19.2.8': resolution: {integrity: sha512-gq/sc3D3m6aKmhdSTTzzD59wfQcVjIZ8dgJoPW7pOcmPVQL1N8syjv+quHySfSJlBkbs5dQ0P4Kk0yvxRw9S7g==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2495,6 +2635,10 @@ packages: '@angular/core': optional: true + '@angular/compiler@19.2.15': + resolution: {integrity: sha512-hMHZU6/03xG0tbPDIm1hbVSTFLnRkGYfh+xdBwUMnIFYYTS0QJ2hdPfEZKCJIXm+fz9IAI5MPdDTfeyp0sgaHQ==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/compiler@19.2.8': resolution: {integrity: sha512-HBtt96X09XFatHAnkquFYbcD3aQSvuYoqqhCV5OLkhAwHmvr3BGyHx/EBZ5JGOfCNOzCupoQmOBF+nh5LKwkeQ==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2506,6 +2650,13 @@ packages: rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.14.0 + '@angular/core@19.2.15': + resolution: {integrity: sha512-PxhzCwwm23N4Mq6oV7UPoYiJF4r6FzGhRSxOBBlEp322k7zEQbIxd/XO6F3eoG73qC1UsOXMYYv6GnQpx42y3A==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + rxjs: ^6.5.3 || ^7.4.0 + zone.js: ~0.15.0 + '@angular/core@19.2.8': resolution: {integrity: sha512-iNISGgLr+nBzEaGbfzRCOVfV3T66gbEu+Ee4VCnEqifU7Er6fnvn+oFfHo3gNKHrCdicrbyb2oKAmeOJynKbsA==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2522,6 +2673,15 @@ packages: '@angular/platform-browser': 17.3.12 rxjs: ^6.5.3 || ^7.4.0 + '@angular/forms@19.2.15': + resolution: {integrity: sha512-pZDElcYPmNzPxvWJpZQCIizsNApDIfk9xLJE4I8hzLISfWGbQvfjuuarDAuQZEXudeLXoDOstDXkDja40muLGg==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + '@angular/common': 19.2.15 + '@angular/core': 19.2.15 + '@angular/platform-browser': 19.2.15 + rxjs: ^6.5.3 || ^7.4.0 + '@angular/forms@19.2.9': resolution: {integrity: sha512-RKzShsMf9X7LQd4qsfx1ShSPF0qODS7HWBPz/khFvfpscDYAqXvqzfXS2yvu0PaCwyNneR7vZKYMCN564SK7hw==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2544,6 +2704,15 @@ packages: '@angular/core': 17.3.12 '@angular/platform-browser': 17.3.12 + '@angular/platform-browser-dynamic@19.2.15': + resolution: {integrity: sha512-dKy0SS395FCh8cW9AQ8nf4Wn3XlONaH7z50T1bGxm3eOoRqjxJYyIeIlEbDdJakMz4QPR3dGr81HleZd8TJumQ==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + '@angular/common': 19.2.15 + '@angular/compiler': 19.2.15 + '@angular/core': 19.2.15 + '@angular/platform-browser': 19.2.15 + '@angular/platform-browser-dynamic@19.2.8': resolution: {integrity: sha512-Vwh53CGCC/I3DQ/nqWxNTKk052CRHv46H6KjfWBsD8vOVTJoQf2HXwEbDKntpmJ0K4MtMdIdbpwXieUMLyfmXA==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2564,6 +2733,17 @@ packages: '@angular/animations': optional: true + '@angular/platform-browser@19.2.15': + resolution: {integrity: sha512-OelQ6weCjon8kZD8kcqNzwugvZJurjS3uMJCwsA2vXmP/3zJ31SWtNqE2zLT1R2csVuwnp0h+nRMgq+pINU7Rg==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + '@angular/animations': 19.2.15 + '@angular/common': 19.2.15 + '@angular/core': 19.2.15 + peerDependenciesMeta: + '@angular/animations': + optional: true + '@angular/platform-browser@19.2.8': resolution: {integrity: sha512-3O69vMAq/ki13YX8hWBUs1R6iwS1GmkcHWu5fIUU7rjSuhGfD60nASqRBYZiJb68eUom//T544KavOvfAl1PzQ==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} @@ -2585,6 +2765,16 @@ packages: '@angular/core': 17.3.12 '@angular/platform-browser': 17.3.12 + '@angular/platform-server@19.2.15': + resolution: {integrity: sha512-VKuEmzFylYLnFjjFTctnbckgYdXEyt3wU0AwT3uuLrSU/3EgfHlqd33ONuYaIxSRES81GaLcV9cc9uiZYT2QMg==} + engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + peerDependencies: + '@angular/common': 19.2.15 + '@angular/compiler': 19.2.15 + '@angular/core': 19.2.15 + '@angular/platform-browser': 19.2.15 + 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} @@ -3100,6 +3290,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.25.9': + resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.27.1': resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} engines: {node: '>=6.9.0'} @@ -3779,6 +3975,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.25.4': + resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.18.20': resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} @@ -3821,6 +4023,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.25.4': + resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.18.20': resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} @@ -3863,6 +4071,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.25.4': + resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.18.20': resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} engines: {node: '>=12'} @@ -3905,6 +4119,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.25.4': + resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.18.20': resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} @@ -3947,6 +4167,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.25.4': + resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.18.20': resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} engines: {node: '>=12'} @@ -3989,6 +4215,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.25.4': + resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.18.20': resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} engines: {node: '>=12'} @@ -4031,6 +4263,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.25.4': + resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.18.20': resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} engines: {node: '>=12'} @@ -4073,6 +4311,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.25.4': + resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.18.20': resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} @@ -4115,6 +4359,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.25.4': + resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.18.20': resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} engines: {node: '>=12'} @@ -4157,6 +4407,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.25.4': + resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.18.20': resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} engines: {node: '>=12'} @@ -4199,6 +4455,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.25.4': + resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.14.54': resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} engines: {node: '>=12'} @@ -4247,6 +4509,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.25.4': + resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.18.20': resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} engines: {node: '>=12'} @@ -4289,6 +4557,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.25.4': + resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.18.20': resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} engines: {node: '>=12'} @@ -4331,6 +4605,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.25.4': + resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.18.20': resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} engines: {node: '>=12'} @@ -4373,6 +4653,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.25.4': + resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.18.20': resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} engines: {node: '>=12'} @@ -4415,6 +4701,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.25.4': + resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.18.20': resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} engines: {node: '>=12'} @@ -4457,6 +4749,12 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.25.4': + resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-arm64@0.25.0': resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==} engines: {node: '>=18'} @@ -4469,6 +4767,12 @@ packages: cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-arm64@0.25.4': + resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.18.20': resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} engines: {node: '>=12'} @@ -4511,6 +4815,12 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.25.4': + resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-arm64@0.25.0': resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==} engines: {node: '>=18'} @@ -4523,6 +4833,12 @@ packages: cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-arm64@0.25.4': + resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.18.20': resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} engines: {node: '>=12'} @@ -4565,6 +4881,12 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.25.4': + resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + '@esbuild/sunos-x64@0.18.20': resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} engines: {node: '>=12'} @@ -4607,6 +4929,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.25.4': + resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.18.20': resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} engines: {node: '>=12'} @@ -4649,6 +4977,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.25.4': + resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.18.20': resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} engines: {node: '>=12'} @@ -4691,6 +5025,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.25.4': + resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.18.20': resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} engines: {node: '>=12'} @@ -4733,6 +5073,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.25.4': + resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} + 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} @@ -5398,6 +5744,14 @@ packages: typescript: '>=5.5 <5.9' webpack: ^5.54.0 + '@ngtools/webpack@19.2.19': + resolution: {integrity: sha512-R9aeTrOBiRVl8I698JWPniUAAEpSvzc8SUGWSM5UXWMcHnWqd92cOnJJ1aXDGJZKXrbhMhCBx9Dglmcks5IDpg==} + 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'} + peerDependencies: + '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0 + typescript: '>=5.5 <5.9' + webpack: ^5.54.0 + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} @@ -6447,6 +6801,11 @@ packages: cpu: [arm] os: [android] + '@rollup/rollup-android-arm-eabi@4.52.5': + resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==} + cpu: [arm] + os: [android] + '@rollup/rollup-android-arm64@4.22.4': resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==} cpu: [arm64] @@ -6457,6 +6816,11 @@ packages: cpu: [arm64] os: [android] + '@rollup/rollup-android-arm64@4.52.5': + resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} + cpu: [arm64] + os: [android] + '@rollup/rollup-darwin-arm64@4.22.4': resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==} cpu: [arm64] @@ -6467,6 +6831,11 @@ packages: cpu: [arm64] os: [darwin] + '@rollup/rollup-darwin-arm64@4.52.5': + resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} + cpu: [arm64] + os: [darwin] + '@rollup/rollup-darwin-x64@4.22.4': resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==} cpu: [x64] @@ -6477,16 +6846,31 @@ packages: cpu: [x64] os: [darwin] + '@rollup/rollup-darwin-x64@4.52.5': + resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} + 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.52.5': + resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} + 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.52.5': + resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} + cpu: [x64] + os: [freebsd] + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==} cpu: [arm] @@ -6497,6 +6881,11 @@ packages: cpu: [arm] os: [linux] + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': + resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} + cpu: [arm] + os: [linux] + '@rollup/rollup-linux-arm-musleabihf@4.22.4': resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==} cpu: [arm] @@ -6507,6 +6896,11 @@ packages: cpu: [arm] os: [linux] + '@rollup/rollup-linux-arm-musleabihf@4.52.5': + resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} + cpu: [arm] + os: [linux] + '@rollup/rollup-linux-arm64-gnu@4.22.4': resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==} cpu: [arm64] @@ -6517,6 +6911,11 @@ packages: cpu: [arm64] os: [linux] + '@rollup/rollup-linux-arm64-gnu@4.52.5': + resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} + cpu: [arm64] + os: [linux] + '@rollup/rollup-linux-arm64-musl@4.22.4': resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==} cpu: [arm64] @@ -6527,6 +6926,16 @@ packages: cpu: [arm64] os: [linux] + '@rollup/rollup-linux-arm64-musl@4.52.5': + resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.52.5': + resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} + cpu: [loong64] + os: [linux] + '@rollup/rollup-linux-loongarch64-gnu@4.34.8': resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} cpu: [loong64] @@ -6542,6 +6951,11 @@ packages: cpu: [ppc64] os: [linux] + '@rollup/rollup-linux-ppc64-gnu@4.52.5': + resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} + cpu: [ppc64] + os: [linux] + '@rollup/rollup-linux-riscv64-gnu@4.22.4': resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==} cpu: [riscv64] @@ -6552,6 +6966,16 @@ packages: cpu: [riscv64] os: [linux] + '@rollup/rollup-linux-riscv64-gnu@4.52.5': + resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.52.5': + resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} + cpu: [riscv64] + os: [linux] + '@rollup/rollup-linux-s390x-gnu@4.22.4': resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==} cpu: [s390x] @@ -6562,6 +6986,11 @@ packages: cpu: [s390x] os: [linux] + '@rollup/rollup-linux-s390x-gnu@4.52.5': + resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} + cpu: [s390x] + os: [linux] + '@rollup/rollup-linux-x64-gnu@4.22.4': resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==} cpu: [x64] @@ -6572,6 +7001,11 @@ packages: cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-gnu@4.52.5': + resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} + cpu: [x64] + os: [linux] + '@rollup/rollup-linux-x64-musl@4.22.4': resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==} cpu: [x64] @@ -6582,6 +7016,16 @@ packages: cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-musl@4.52.5': + resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openharmony-arm64@4.52.5': + resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} + cpu: [arm64] + os: [openharmony] + '@rollup/rollup-win32-arm64-msvc@4.22.4': resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==} cpu: [arm64] @@ -6592,6 +7036,11 @@ packages: cpu: [arm64] os: [win32] + '@rollup/rollup-win32-arm64-msvc@4.52.5': + resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} + cpu: [arm64] + os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.22.4': resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==} cpu: [ia32] @@ -6602,6 +7051,16 @@ packages: cpu: [ia32] os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.52.5': + resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.52.5': + resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} + cpu: [x64] + os: [win32] + '@rollup/rollup-win32-x64-msvc@4.22.4': resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==} cpu: [x64] @@ -6612,6 +7071,11 @@ packages: cpu: [x64] os: [win32] + '@rollup/rollup-win32-x64-msvc@4.52.5': + resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==} + 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'} @@ -6632,6 +7096,14 @@ 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@19.2.18': + resolution: {integrity: sha512-GUR+7RIXm91nq4EZ+Ofg/RccHNyd6S/vPTMd1Q4nCtkgbEgjqFM3F//JVJJDwmwai7+hHJWlsCILz/hHCQOCHQ==} + 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@19.2.19': + resolution: {integrity: sha512-6/0pvbPCY4UHeB4lnM/5r250QX5gcLgOYbR5FdhFu+22mOPHfWpRc5tNuY9kCephDHzAHjo6fTW1vefOOmA4jw==} + 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'} + '@sigstore/bundle@2.3.2': resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -8099,10 +8571,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'} @@ -8989,11 +9457,6 @@ packages: engines: {node: '>= 0.8'} hasBin: true - browserslist@4.24.2: - resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.24.4: resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -9126,9 +9589,6 @@ 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==} @@ -9488,6 +9948,10 @@ packages: resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} engines: {node: '>=18'} + commander@13.1.0: + resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} + engines: {node: '>=18'} + commander@2.11.0: resolution: {integrity: sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==} @@ -10446,9 +10910,6 @@ packages: electron-to-chromium@1.5.208: resolution: {integrity: sha512-ozZyibehoe7tOhNaf16lKmljVf+3npZcJIEbJRVftVsmAg5TeA1mGS9dVCZzOwr2xT7xK15V0p7+GZqSPgkuPg==} - electron-to-chromium@1.5.63: - resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==} - elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} engines: {node: '>=0.10.0'} @@ -10820,6 +11281,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild-wasm@0.25.4: + resolution: {integrity: sha512-2HlCS6rNvKWaSKhWaG/YIyRsTsL3gUrMP2ToZMBIjw9LM7vVcIs+rz8kE2vExvTJgvM8OKPqNpcHawY/BQc/qQ==} + engines: {node: '>=18'} + hasBin: true + esbuild-windows-32@0.14.54: resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} engines: {node: '>=12'} @@ -10878,6 +11344,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild@0.25.4: + resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==} + engines: {node: '>=18'} + hasBin: true + escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -12539,6 +13010,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} @@ -13382,14 +13862,14 @@ packages: jasmine-core@4.6.1: resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==} - jasmine-core@5.4.0: - resolution: {integrity: sha512-T4fio3W++llLd7LGSGsioriDHgWyhoL6YTu4k37uwJLF7DzOzspz7mNxRoM3cQdLWtL/ebazQpIf/yZGJx/gzg==} + jasmine-core@5.12.0: + resolution: {integrity: sha512-QqO4pX33GEML5JoGQU6BM5NHKPgEsg+TXp3jCIDek9MbfEp2JUYEFBo9EF1+hegWy/bCHS1m5nP0BOp18G6rVA==} jasmine-core@5.6.0: resolution: {integrity: sha512-niVlkeYVRwKFpmfWg6suo6H9CrNnydfBLEqefM5UjibYS+UoTjZdmvPJSiuyrRLGnFj1eYRhFd/ch+5hSlsFVA==} - jasmine@5.4.0: - resolution: {integrity: sha512-E2u4ylX5tgGYvbynImU6EUBKKrSVB1L72FEPjGh4M55ov1VsxR26RA2JU91L9YSPFgcjo4mCLyKn/QXvEYGBkA==} + jasmine@5.12.0: + resolution: {integrity: sha512-KmKeTNuH8rgAuPRL5AUsXWSdJVlDu+pgqi2dLXoZUSH/g3kR+7Ho8B7hEhwDu0fu1PLuiXZtfaxmQ/mB5wqihw==} hasBin: true jest-changed-files@29.7.0: @@ -14841,6 +15321,19 @@ packages: tailwindcss: optional: true + ng-packagr@19.2.2: + resolution: {integrity: sha512-dFuwFsDJMBSd1YtmLLcX5bNNUCQUlRqgf34aXA+79PmkOP+0eF8GP2949wq3+jMjmFTNm80Oo8IUYiSLwklKCQ==} + engines: {node: ^18.19.1 || >=20.11.1} + hasBin: true + peerDependencies: + '@angular/compiler-cli': ^19.0.0 || ^19.1.0-next.0 || ^19.2.0-next.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + tslib: ^2.3.0 + typescript: '>=5.5 <5.9' + peerDependenciesMeta: + tailwindcss: + optional: true + nice-napi@1.0.2: resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==} os: ['!win32'] @@ -14922,9 +15415,6 @@ packages: node-notifier@9.0.1: resolution: {integrity: sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==} - node-releases@2.0.18: - resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - node-releases@2.0.19: resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} @@ -15653,9 +16143,6 @@ packages: piscina@4.4.0: resolution: {integrity: sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==} - piscina@4.7.0: - resolution: {integrity: sha512-b8hvkpp9zS0zsfa939b/jXbe64Z2gZv0Ha7FYPNUiDIB1y2AtxcOZdfP8xN8HFjUaqQiT9gRlfjAsoL8vdJ1Iw==} - piscina@4.8.0: resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==} @@ -16008,7 +16495,7 @@ packages: puppeteer@23.6.1: resolution: {integrity: sha512-8+ALGQgwXd3P/tGcuSsxTPGDaOQIjcDIm04I5hpWZv/PiN5q8bQNHRUyfYrifT+flnM9aTWCP7tLEzuB6SlIgA==} engines: {node: '>=18'} - deprecated: < 24.10.2 is no longer supported + deprecated: < 24.9.0 is no longer supported hasBin: true pure-rand@6.1.0: @@ -16019,7 +16506,6 @@ packages: engines: {node: '>=0.6.0', teleport: '>=0.2.0'} deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qjobs@1.2.0: @@ -16688,6 +17174,11 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rollup@4.52.5: + resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==} + 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'} @@ -16930,11 +17421,6 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - sass@1.81.0: - resolution: {integrity: sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==} - engines: {node: '>=14.0.0'} - hasBin: true - sass@1.85.0: resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==} engines: {node: '>=14.0.0'} @@ -18462,6 +18948,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.5.4: + resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} + engines: {node: '>=14.17'} + hasBin: true + typescript@5.8.3: resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} engines: {node: '>=14.17'} @@ -18970,6 +19461,46 @@ packages: yaml: optional: true + vite@6.4.1: + resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + 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==} @@ -19191,6 +19722,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==} @@ -19577,6 +20121,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==} @@ -19589,13 +20136,13 @@ snapshots: '@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(@angular-devkit/build-angular@19.2.10(kzetvccyckb3vco2noyjunjeau))(@angular/build@19.2.19(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@angular/platform-server@19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1))(@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)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.5.0))': 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(kzetvccyckb3vco2noyjunjeau) + '@angular/build': 19.2.19(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@angular/platform-server@19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1))(@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)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(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: @@ -19604,114 +20151,28 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/architect@0.1900.2': + '@angular-devkit/architect@0.1902.10(chokidar@4.0.1)': dependencies: - '@angular-devkit/core': 19.0.2 + '@angular-devkit/core': 19.2.10(chokidar@4.0.1) rxjs: 7.8.1 transitivePeerDependencies: - chokidar - '@angular-devkit/architect@0.1902.10(chokidar@4.0.1)': + '@angular-devkit/architect@0.1902.18': dependencies: - '@angular-devkit/core': 19.2.10(chokidar@4.0.1) + '@angular-devkit/core': 19.2.18 rxjs: 7.8.1 transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@17.3.11(4ilwirpeb4hxrzllykv7l5hjey)': + '@angular-devkit/architect@0.1902.19(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@20.11.17)(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 + '@angular-devkit/core': 19.2.19(chokidar@4.0.1) 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@20.11.17)(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.25.0) - 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))))(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@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@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.6.3)(typescript@5.4.5) 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(yhrafk4ev6k2dly5pdp4p2egia)': + '@angular-devkit/build-angular@17.3.11(qwvpz4std2ihowmewzmfizrlqa)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0) @@ -19729,7 +20190,7 @@ snapshots: '@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@20.12.8)(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)) 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)) @@ -19771,9 +20232,9 @@ snapshots: tslib: 2.6.2 typescript: 5.4.5 undici: 6.11.1 - vite: 5.1.8(@types/node@20.12.8)(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) watchpack: 2.4.0 - webpack: 5.94.0(@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-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 @@ -19781,10 +20242,10 @@ snapshots: 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@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.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.11.17)(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) + 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.6.3)(typescript@5.4.5) transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -19804,13 +20265,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(kzetvccyckb3vco2noyjunjeau)': 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)(@angular/platform-server@19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1))(@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)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(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 @@ -19864,10 +20325,101 @@ snapshots: webpack-merge: 6.0.1 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: + '@angular/platform-server': 19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1) 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-environment-jsdom: 29.7.0 karma: 6.4.4 + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3) + 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 + - vite + - webpack-cli + - yaml + + '@angular-devkit/build-angular@19.2.19(2nbj6fcnu7zfuwqq7re3kyd6sy)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.1902.19(chokidar@4.0.1) + '@angular-devkit/build-webpack': 0.1902.19(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)))(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + '@angular-devkit/core': 19.2.19(chokidar@4.0.1) + '@angular/build': 19.2.19(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(@angular/compiler@19.2.15)(@angular/platform-server@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1))(@types/node@20.12.8)(chokidar@4.0.1)(jiti@1.21.6)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(tslib@2.6.3)(typescript@5.4.5))(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.4.5)(yaml@2.5.0) + '@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5) + '@babel/core': 7.26.10 + '@babel/generator': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-split-export-declaration': 7.24.7 + '@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-runtime': 7.26.10(@babel/core@7.26.10) + '@babel/preset-env': 7.26.9(@babel/core@7.26.10) + '@babel/runtime': 7.26.10 + '@discoveryjs/json-ext': 0.6.3 + '@ngtools/webpack': 19.2.19(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(typescript@5.4.5)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.1(@types/node@20.12.8)(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)) + 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.4)) + browserslist: 4.25.3 + copy-webpack-plugin: 12.0.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + css-loader: 7.1.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + esbuild-wasm: 0.25.4 + fast-glob: 3.3.3 + 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.2.2 + less-loader: 12.2.0(less@4.2.2)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + license-webpack-plugin: 4.0.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + loader-utils: 3.3.1 + mini-css-extract-plugin: 2.9.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + open: 10.1.0 + ora: 5.4.1 + picomatch: 4.0.2 + piscina: 4.8.0 + postcss: 8.5.2 + postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.4.5)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + resolve-url-loader: 5.0.0 + rxjs: 7.8.1 + sass: 1.85.0 + sass-loader: 16.0.5(sass-embedded@1.66.0)(sass@1.85.0)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + semver: 7.7.1 + source-map-loader: 5.0.0(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + source-map-support: 0.5.21 + terser: 5.39.0 + tree-kill: 1.2.2 + tslib: 2.8.1 + typescript: 5.4.5 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + webpack-dev-middleware: 7.4.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + webpack-dev-server: 5.2.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + webpack-merge: 6.0.1 + 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.4)))(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + optionalDependencies: + '@angular/platform-server': 19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1) + esbuild: 0.25.4 + 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.4.5)) + jest-environment-jsdom: 29.7.0 + karma: 6.4.4 + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(tslib@2.6.3)(typescript@5.4.5) transitivePeerDependencies: - '@angular/compiler' - '@rspack/core' @@ -19895,7 +20447,7 @@ snapshots: dependencies: '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0) rxjs: 7.8.1 - webpack: 5.94.0(@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-dev-server: 4.15.1(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) transitivePeerDependencies: - chokidar @@ -19909,6 +20461,15 @@ snapshots: transitivePeerDependencies: - chokidar + '@angular-devkit/build-webpack@0.1902.19(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)))(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4))': + dependencies: + '@angular-devkit/architect': 0.1902.19(chokidar@4.0.1) + rxjs: 7.8.1 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + webpack-dev-server: 5.2.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + transitivePeerDependencies: + - chokidar + '@angular-devkit/core@16.2.16': dependencies: ajv: 8.12.0 @@ -19929,7 +20490,7 @@ snapshots: optionalDependencies: chokidar: 3.6.0 - '@angular-devkit/core@19.0.2': + '@angular-devkit/core@19.2.10(chokidar@4.0.1)': dependencies: ajv: 8.17.1 ajv-formats: 3.0.1(ajv@8.17.1) @@ -19937,8 +20498,19 @@ snapshots: picomatch: 4.0.2 rxjs: 7.8.1 source-map: 0.7.4 + optionalDependencies: + chokidar: 4.0.1 - '@angular-devkit/core@19.2.10(chokidar@4.0.1)': + '@angular-devkit/core@19.2.18': + dependencies: + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + jsonc-parser: 3.3.1 + picomatch: 4.0.2 + rxjs: 7.8.1 + source-map: 0.7.4 + + '@angular-devkit/core@19.2.19(chokidar@4.0.1)': dependencies: ajv: 8.17.1 ajv-formats: 3.0.1(ajv@8.17.1) @@ -19979,12 +20551,38 @@ snapshots: transitivePeerDependencies: - chokidar + '@angular-devkit/schematics@19.2.18': + dependencies: + '@angular-devkit/core': 19.2.18 + jsonc-parser: 3.3.1 + magic-string: 0.30.17 + ora: 5.4.1 + rxjs: 7.8.1 + transitivePeerDependencies: + - chokidar + + '@angular-devkit/schematics@19.2.19(chokidar@4.0.1)': + dependencies: + '@angular-devkit/core': 19.2.19(chokidar@4.0.1) + jsonc-parser: 3.3.1 + magic-string: 0.30.17 + ora: 5.4.1 + rxjs: 7.8.1 + 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@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))': + dependencies: + '@angular/common': 19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/core': 19.2.15(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)(@angular/platform-server@19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1))(@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)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(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) @@ -20016,9 +20614,62 @@ snapshots: 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) watchpack: 2.4.2 optionalDependencies: + '@angular/platform-server': 19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1) + karma: 6.4.4 + less: 4.2.2 + lmdb: 3.2.6 + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3) + postcss: 8.5.2 + transitivePeerDependencies: + - '@types/node' + - chokidar + - jiti + - lightningcss + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + '@angular/build@19.2.19(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(@angular/compiler@19.2.15)(@angular/platform-server@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1))(@types/node@20.12.8)(chokidar@4.0.1)(jiti@1.21.6)(karma@6.4.4)(less@4.2.2)(lightningcss@1.28.1)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(tslib@2.6.3)(typescript@5.4.5))(postcss@8.5.2)(sass-embedded@1.66.0)(terser@5.39.0)(typescript@5.4.5)(yaml@2.5.0)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.1902.19(chokidar@4.0.1) + '@angular/compiler': 19.2.15 + '@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5) + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) + '@inquirer/confirm': 5.1.6(@types/node@20.12.8) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.1(@types/node@20.12.8)(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)) + beasties: 0.3.2 + browserslist: 4.25.3 + esbuild: 0.25.4 + fast-glob: 3.3.3 + https-proxy-agent: 7.0.6 + istanbul-lib-instrument: 6.0.3 + listr2: 8.2.5 + magic-string: 0.30.17 + mrmime: 2.0.1 + parse5-html-rewriting-stream: 7.0.0 + picomatch: 4.0.2 + piscina: 4.8.0 + rollup: 4.34.8 + sass: 1.85.0 + semver: 7.7.1 + source-map-support: 0.5.21 + typescript: 5.4.5 + vite: 6.4.1(@types/node@20.12.8)(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) + watchpack: 2.4.2 + optionalDependencies: + '@angular/platform-server': 19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1) karma: 6.4.4 less: 4.2.2 lmdb: 3.2.6 + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(tslib@2.6.3)(typescript@5.4.5) postcss: 8.5.2 transitivePeerDependencies: - '@types/node' @@ -20033,6 +20684,58 @@ snapshots: - tsx - yaml + '@angular/build@19.2.19(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(@angular/compiler@19.2.8)(@angular/platform-server@19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1))(@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)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(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.19(chokidar@4.0.1) + '@angular/compiler': 19.2.8 + '@angular/compiler-cli': 19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3) + '@babel/core': 7.26.10 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) + '@inquirer/confirm': 5.1.6(@types/node@20.14.5) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.1(@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)) + beasties: 0.3.2 + browserslist: 4.25.3 + esbuild: 0.25.4 + fast-glob: 3.3.3 + https-proxy-agent: 7.0.6 + istanbul-lib-instrument: 6.0.3 + listr2: 8.2.5 + magic-string: 0.30.17 + mrmime: 2.0.1 + parse5-html-rewriting-stream: 7.0.0 + picomatch: 4.0.2 + piscina: 4.8.0 + rollup: 4.34.8 + sass: 1.85.0 + semver: 7.7.1 + source-map-support: 0.5.21 + typescript: 5.8.3 + vite: 6.4.1(@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) + watchpack: 2.4.2 + optionalDependencies: + '@angular/platform-server': 19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1) + karma: 6.4.4 + less: 4.2.2 + lmdb: 3.2.6 + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3) + postcss: 8.5.2 + transitivePeerDependencies: + - '@types/node' + - chokidar + - jiti + - lightningcss + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + optional: true + '@angular/cli@17.3.11(chokidar@3.6.0)': dependencies: '@angular-devkit/architect': 0.1703.11(chokidar@3.6.0) @@ -20082,9 +20785,57 @@ 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@19.2.18(@types/node@20.11.17)': dependencies: - '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) + '@angular-devkit/architect': 0.1902.18 + '@angular-devkit/core': 19.2.18 + '@angular-devkit/schematics': 19.2.18 + '@inquirer/prompts': 7.3.2(@types/node@20.11.17) + '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.3.2(@types/node@20.11.17)) + '@schematics/angular': 19.2.18 + '@yarnpkg/lockfile': 1.1.0 + ini: 5.0.0 + jsonc-parser: 3.3.1 + listr2: 8.2.5 + npm-package-arg: 12.0.2 + npm-pick-manifest: 10.0.0 + pacote: 20.0.0 + resolve: 1.22.10 + semver: 7.7.1 + symbol-observable: 4.0.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - chokidar + - supports-color + + '@angular/cli@19.2.19(@types/node@20.12.8)(chokidar@4.0.1)': + dependencies: + '@angular-devkit/architect': 0.1902.19(chokidar@4.0.1) + '@angular-devkit/core': 19.2.19(chokidar@4.0.1) + '@angular-devkit/schematics': 19.2.19(chokidar@4.0.1) + '@inquirer/prompts': 7.3.2(@types/node@20.12.8) + '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.3.2(@types/node@20.12.8)) + '@schematics/angular': 19.2.19(chokidar@4.0.1) + '@yarnpkg/lockfile': 1.1.0 + ini: 5.0.0 + jsonc-parser: 3.3.1 + listr2: 8.2.5 + npm-package-arg: 12.0.2 + npm-pick-manifest: 10.0.0 + pacote: 20.0.0 + resolve: 1.22.10 + semver: 7.7.1 + symbol-observable: 4.0.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - chokidar + - supports-color + + '@angular/common@11.2.14(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1)': + dependencies: + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) rxjs: 7.8.1 tslib: 2.6.3 @@ -20094,6 +20845,12 @@ snapshots: rxjs: 7.8.1 tslib: 2.6.3 + '@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1)': + dependencies: + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) + rxjs: 7.8.1 + tslib: 2.6.3 + '@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)': dependencies: '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) @@ -20115,6 +20872,36 @@ snapshots: transitivePeerDependencies: - supports-color + '@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5)': + dependencies: + '@angular/compiler': 19.2.15 + '@babel/core': 7.26.9 + '@jridgewell/sourcemap-codec': 1.5.0 + chokidar: 4.0.1 + convert-source-map: 1.9.0 + reflect-metadata: 0.2.2 + semver: 7.7.2 + tslib: 2.6.3 + typescript: 5.4.5 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color + + '@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4)': + dependencies: + '@angular/compiler': 19.2.15 + '@babel/core': 7.26.9 + '@jridgewell/sourcemap-codec': 1.5.0 + chokidar: 4.0.1 + convert-source-map: 1.9.0 + reflect-metadata: 0.2.2 + semver: 7.7.2 + tslib: 2.6.3 + typescript: 5.5.4 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color + '@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3)': dependencies: '@angular/compiler': 19.2.8 @@ -20136,6 +20923,10 @@ snapshots: optionalDependencies: '@angular/core': 17.3.12(rxjs@7.8.1)(zone.js@0.14.10) + '@angular/compiler@19.2.15': + dependencies: + tslib: 2.6.3 + '@angular/compiler@19.2.8': dependencies: tslib: 2.6.3 @@ -20146,6 +20937,12 @@ snapshots: tslib: 2.6.3 zone.js: 0.14.10 + '@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)': + dependencies: + rxjs: 7.8.1 + tslib: 2.6.3 + zone.js: 0.15.1 + '@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0)': dependencies: rxjs: 7.8.1 @@ -20160,6 +20957,14 @@ snapshots: rxjs: 7.8.1 tslib: 2.6.3 + '@angular/forms@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1)': + dependencies: + '@angular/common': 19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)) + rxjs: 7.8.1 + tslib: 2.6.3 + '@angular/forms@19.2.9(@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))(@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)))(rxjs@7.8.1)': dependencies: '@angular/common': 19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) @@ -20178,6 +20983,14 @@ snapshots: '@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)) tslib: 2.6.3 + '@angular/platform-browser-dynamic@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))': + dependencies: + '@angular/common': 19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/compiler': 19.2.15 + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)) + tslib: 2.6.3 + '@angular/platform-browser-dynamic@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/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))': dependencies: '@angular/common': 19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) @@ -20194,6 +21007,14 @@ snapshots: optionalDependencies: '@angular/animations': 17.3.12(@angular/core@17.3.12(rxjs@7.8.1)(zone.js@0.14.10)) + '@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))': + dependencies: + '@angular/common': 19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) + tslib: 2.6.3 + optionalDependencies: + '@angular/animations': 19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)) + '@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))': dependencies: '@angular/common': 19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) @@ -20210,6 +21031,27 @@ snapshots: tslib: 2.6.3 xhr2: 0.2.1 + '@angular/platform-server@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(rxjs@7.8.1)': + dependencies: + '@angular/common': 19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1) + '@angular/compiler': 19.2.15 + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) + '@angular/platform-browser': 19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(rxjs@7.8.1))(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1)) + rxjs: 7.8.1 + tslib: 2.6.3 + xhr2: 0.2.1 + + '@angular/platform-server@19.2.15(@angular/common@19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.2.8)(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(@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)))(rxjs@7.8.1)': + dependencies: + '@angular/common': 19.2.8(@angular/core@19.2.8(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + '@angular/compiler': 19.2.8 + '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) + '@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)) + rxjs: 7.8.1 + tslib: 2.6.3 + xhr2: 0.2.1 + optional: true + '@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) @@ -20244,7 +21086,7 @@ snapshots: '@babel/code-frame@7.27.1': dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 js-tokens: 4.0.0 picocolors: 1.1.1 @@ -20369,7 +21211,7 @@ snapshots: '@babel/types': 7.27.1 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 + jsesc: 3.1.0 '@babel/generator@7.26.2': dependencies: @@ -20382,10 +21224,10 @@ snapshots: '@babel/generator@7.27.1': dependencies: '@babel/parser': 7.27.1 - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 + jsesc: 3.1.0 '@babel/generator@7.28.5': dependencies: @@ -20413,7 +21255,7 @@ snapshots: '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9': dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 '@babel/types': 7.27.1 transitivePeerDependencies: - supports-color @@ -20429,7 +21271,7 @@ snapshots: '@babel/helper-compilation-targets@7.27.0': dependencies: '@babel/compat-data': 7.26.8 - '@babel/helper-validator-option': 7.27.1 + '@babel/helper-validator-option': 7.25.9 browserslist: 4.25.3 lru-cache: 5.1.1 semver: 6.3.1 @@ -20437,12 +21279,12 @@ snapshots: '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 '@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-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20450,12 +21292,12 @@ snapshots: '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 '@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-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20463,12 +21305,12 @@ snapshots: '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 '@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-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20489,28 +21331,28 @@ snapshots: '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 regexpu-core: 6.1.1 semver: 6.3.1 '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 regexpu-core: 6.1.1 semver: 6.3.1 '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 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 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 regexpu-core: 6.2.0 semver: 6.3.1 @@ -20529,7 +21371,7 @@ 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.0 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.0 lodash.debounce: 4.0.8 @@ -20540,7 +21382,7 @@ snapshots: '@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.0 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.0 lodash.debounce: 4.0.8 @@ -20551,7 +21393,7 @@ snapshots: '@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.0 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.0 lodash.debounce: 4.0.8 @@ -20562,7 +21404,7 @@ snapshots: '@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.0 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.0 lodash.debounce: 4.0.8 @@ -20573,7 +21415,7 @@ snapshots: '@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.0 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.0 lodash.debounce: 4.0.8 @@ -20584,7 +21426,7 @@ snapshots: '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-compilation-targets': 7.27.0 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.0 lodash.debounce: 4.0.8 @@ -20605,14 +21447,14 @@ snapshots: '@babel/helper-environment-visitor@7.24.7': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@babel/helper-globals@7.28.0': {} '@babel/helper-member-expression-to-functions@7.25.9': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.27.1 + '@babel/types': 7.27.1 transitivePeerDependencies: - supports-color @@ -20668,8 +21510,8 @@ snapshots: dependencies: '@babel/core': 7.23.9 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -20677,8 +21519,8 @@ snapshots: dependencies: '@babel/core': 7.24.0 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -20686,8 +21528,8 @@ snapshots: 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 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -20695,18 +21537,18 @@ snapshots: dependencies: '@babel/core': 7.26.9 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@babel/helper-optimise-call-expression@7.27.1': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@babel/helper-plugin-utils@7.25.9': {} @@ -20715,27 +21557,27 @@ snapshots: '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-annotate-as-pure': 7.27.1 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -20744,7 +21586,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.27.1 transitivePeerDependencies: - supports-color @@ -20753,7 +21595,7 @@ 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.27.1 transitivePeerDependencies: - supports-color @@ -20762,7 +21604,7 @@ snapshots: '@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/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -20777,22 +21619,22 @@ snapshots: '@babel/helper-simple-access@7.25.9': dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 '@babel/types': 7.27.1 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.27.1 '@babel/types': 7.27.1 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.27.1 + '@babel/types': 7.27.1 transitivePeerDependencies: - supports-color @@ -20820,9 +21662,9 @@ snapshots: '@babel/helper-wrap-function@7.25.9': dependencies: - '@babel/template': 7.27.2 - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/template': 7.27.1 + '@babel/traverse': 7.27.1 + '@babel/types': 7.27.1 transitivePeerDependencies: - supports-color @@ -20834,11 +21676,11 @@ snapshots: '@babel/helpers@7.27.0': dependencies: '@babel/template': 7.27.1 - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@babel/highlight@7.25.9': dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.1.1 @@ -20853,7 +21695,7 @@ snapshots: '@babel/parser@7.27.1': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@babel/parser@7.28.5': dependencies: @@ -20863,7 +21705,7 @@ snapshots: dependencies: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -20951,7 +21793,7 @@ snapshots: '@babel/plugin-proposal-class-properties@7.18.6(@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-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -20977,7 +21819,7 @@ snapshots: '@babel/plugin-proposal-private-methods@7.18.6(@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-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color @@ -21283,6 +22125,11 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 optional: true + '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -21379,8 +22226,8 @@ snapshots: '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.23.9) transitivePeerDependencies: - supports-color @@ -21388,8 +22235,8 @@ snapshots: '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.0) transitivePeerDependencies: - supports-color @@ -21397,8 +22244,8 @@ snapshots: '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) transitivePeerDependencies: - supports-color @@ -22580,7 +23427,7 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-compilation-targets': 7.27.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 + '@babel/helper-validator-option': 7.25.9 '@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) @@ -22644,7 +23491,7 @@ snapshots: babel-plugin-polyfill-corejs2: 0.4.12(@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 + core-js-compat: 3.45.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -22681,7 +23528,7 @@ snapshots: dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 + '@babel/helper-validator-option': 7.25.9 '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.23.9) '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.23.9) '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.23.9) @@ -22739,7 +23586,7 @@ snapshots: dependencies: '@babel/code-frame': 7.27.1 '@babel/parser': 7.27.1 - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@babel/template@7.27.2': dependencies: @@ -22765,7 +23612,7 @@ snapshots: '@babel/generator': 7.27.1 '@babel/parser': 7.27.1 '@babel/template': 7.27.1 - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 debug: 4.4.0 globals: 11.12.0 transitivePeerDependencies: @@ -23034,6 +23881,9 @@ snapshots: '@esbuild/aix-ppc64@0.25.1': optional: true + '@esbuild/aix-ppc64@0.25.4': + optional: true + '@esbuild/android-arm64@0.18.20': optional: true @@ -23055,6 +23905,9 @@ snapshots: '@esbuild/android-arm64@0.25.1': optional: true + '@esbuild/android-arm64@0.25.4': + optional: true + '@esbuild/android-arm@0.18.20': optional: true @@ -23076,6 +23929,9 @@ snapshots: '@esbuild/android-arm@0.25.1': optional: true + '@esbuild/android-arm@0.25.4': + optional: true + '@esbuild/android-x64@0.18.20': optional: true @@ -23097,6 +23953,9 @@ snapshots: '@esbuild/android-x64@0.25.1': optional: true + '@esbuild/android-x64@0.25.4': + optional: true + '@esbuild/darwin-arm64@0.18.20': optional: true @@ -23118,6 +23977,9 @@ snapshots: '@esbuild/darwin-arm64@0.25.1': optional: true + '@esbuild/darwin-arm64@0.25.4': + optional: true + '@esbuild/darwin-x64@0.18.20': optional: true @@ -23139,6 +24001,9 @@ snapshots: '@esbuild/darwin-x64@0.25.1': optional: true + '@esbuild/darwin-x64@0.25.4': + optional: true + '@esbuild/freebsd-arm64@0.18.20': optional: true @@ -23160,6 +24025,9 @@ snapshots: '@esbuild/freebsd-arm64@0.25.1': optional: true + '@esbuild/freebsd-arm64@0.25.4': + optional: true + '@esbuild/freebsd-x64@0.18.20': optional: true @@ -23181,6 +24049,9 @@ snapshots: '@esbuild/freebsd-x64@0.25.1': optional: true + '@esbuild/freebsd-x64@0.25.4': + optional: true + '@esbuild/linux-arm64@0.18.20': optional: true @@ -23202,6 +24073,9 @@ snapshots: '@esbuild/linux-arm64@0.25.1': optional: true + '@esbuild/linux-arm64@0.25.4': + optional: true + '@esbuild/linux-arm@0.18.20': optional: true @@ -23223,6 +24097,9 @@ snapshots: '@esbuild/linux-arm@0.25.1': optional: true + '@esbuild/linux-arm@0.25.4': + optional: true + '@esbuild/linux-ia32@0.18.20': optional: true @@ -23244,6 +24121,9 @@ snapshots: '@esbuild/linux-ia32@0.25.1': optional: true + '@esbuild/linux-ia32@0.25.4': + optional: true + '@esbuild/linux-loong64@0.14.54': optional: true @@ -23268,6 +24148,9 @@ snapshots: '@esbuild/linux-loong64@0.25.1': optional: true + '@esbuild/linux-loong64@0.25.4': + optional: true + '@esbuild/linux-mips64el@0.18.20': optional: true @@ -23289,6 +24172,9 @@ snapshots: '@esbuild/linux-mips64el@0.25.1': optional: true + '@esbuild/linux-mips64el@0.25.4': + optional: true + '@esbuild/linux-ppc64@0.18.20': optional: true @@ -23310,6 +24196,9 @@ snapshots: '@esbuild/linux-ppc64@0.25.1': optional: true + '@esbuild/linux-ppc64@0.25.4': + optional: true + '@esbuild/linux-riscv64@0.18.20': optional: true @@ -23331,6 +24220,9 @@ snapshots: '@esbuild/linux-riscv64@0.25.1': optional: true + '@esbuild/linux-riscv64@0.25.4': + optional: true + '@esbuild/linux-s390x@0.18.20': optional: true @@ -23352,6 +24244,9 @@ snapshots: '@esbuild/linux-s390x@0.25.1': optional: true + '@esbuild/linux-s390x@0.25.4': + optional: true + '@esbuild/linux-x64@0.18.20': optional: true @@ -23373,12 +24268,18 @@ snapshots: '@esbuild/linux-x64@0.25.1': optional: true + '@esbuild/linux-x64@0.25.4': + optional: true + '@esbuild/netbsd-arm64@0.25.0': optional: true '@esbuild/netbsd-arm64@0.25.1': optional: true + '@esbuild/netbsd-arm64@0.25.4': + optional: true + '@esbuild/netbsd-x64@0.18.20': optional: true @@ -23400,12 +24301,18 @@ snapshots: '@esbuild/netbsd-x64@0.25.1': optional: true + '@esbuild/netbsd-x64@0.25.4': + optional: true + '@esbuild/openbsd-arm64@0.25.0': optional: true '@esbuild/openbsd-arm64@0.25.1': optional: true + '@esbuild/openbsd-arm64@0.25.4': + optional: true + '@esbuild/openbsd-x64@0.18.20': optional: true @@ -23427,6 +24334,9 @@ snapshots: '@esbuild/openbsd-x64@0.25.1': optional: true + '@esbuild/openbsd-x64@0.25.4': + optional: true + '@esbuild/sunos-x64@0.18.20': optional: true @@ -23448,6 +24358,9 @@ snapshots: '@esbuild/sunos-x64@0.25.1': optional: true + '@esbuild/sunos-x64@0.25.4': + optional: true + '@esbuild/win32-arm64@0.18.20': optional: true @@ -23469,6 +24382,9 @@ snapshots: '@esbuild/win32-arm64@0.25.1': optional: true + '@esbuild/win32-arm64@0.25.4': + optional: true + '@esbuild/win32-ia32@0.18.20': optional: true @@ -23490,6 +24406,9 @@ snapshots: '@esbuild/win32-ia32@0.25.1': optional: true + '@esbuild/win32-ia32@0.25.4': + optional: true + '@esbuild/win32-x64@0.18.20': optional: true @@ -23511,6 +24430,9 @@ snapshots: '@esbuild/win32-x64@0.25.1': optional: true + '@esbuild/win32-x64@0.25.4': + optional: true + '@eslint-community/eslint-utils@4.5.0(eslint@9.18.0(jiti@1.21.6))': dependencies: eslint: 9.18.0(jiti@1.21.6) @@ -23700,6 +24622,26 @@ snapshots: '@humanwhocodes/retry@0.4.2': {} + '@inquirer/checkbox@4.1.5(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.11.17) + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/checkbox@4.1.5(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.12.8) + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/checkbox@4.1.5(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23710,6 +24652,13 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/confirm@5.1.6(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/confirm@5.1.6(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23717,6 +24666,20 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/confirm@5.1.9(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/confirm@5.1.9(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/confirm@5.1.9(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23724,6 +24687,32 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/core@10.1.10(@types/node@20.11.17)': + dependencies: + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.11.17) + 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 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/core@10.1.10(@types/node@20.12.8)': + dependencies: + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.12.8) + 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 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/core@10.1.10(@types/node@20.14.5)': dependencies: '@inquirer/figures': 1.0.11 @@ -23737,6 +24726,22 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/editor@4.2.10(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + external-editor: 3.1.0 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/editor@4.2.10(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + external-editor: 3.1.0 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/editor@4.2.10(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23745,6 +24750,22 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/expand@4.0.12(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/expand@4.0.12(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/expand@4.0.12(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23755,6 +24776,20 @@ snapshots: '@inquirer/figures@1.0.11': {} + '@inquirer/input@4.1.9(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/input@4.1.9(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/input@4.1.9(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23762,6 +24797,20 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/number@3.0.12(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/number@3.0.12(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/number@3.0.12(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23769,6 +24818,22 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/password@4.0.12(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + ansi-escapes: 4.3.2 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/password@4.0.12(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + ansi-escapes: 4.3.2 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/password@4.0.12(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23777,6 +24842,36 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/prompts@7.3.2(@types/node@20.11.17)': + dependencies: + '@inquirer/checkbox': 4.1.5(@types/node@20.11.17) + '@inquirer/confirm': 5.1.9(@types/node@20.11.17) + '@inquirer/editor': 4.2.10(@types/node@20.11.17) + '@inquirer/expand': 4.0.12(@types/node@20.11.17) + '@inquirer/input': 4.1.9(@types/node@20.11.17) + '@inquirer/number': 3.0.12(@types/node@20.11.17) + '@inquirer/password': 4.0.12(@types/node@20.11.17) + '@inquirer/rawlist': 4.1.0(@types/node@20.11.17) + '@inquirer/search': 3.0.12(@types/node@20.11.17) + '@inquirer/select': 4.2.0(@types/node@20.11.17) + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/prompts@7.3.2(@types/node@20.12.8)': + dependencies: + '@inquirer/checkbox': 4.1.5(@types/node@20.12.8) + '@inquirer/confirm': 5.1.9(@types/node@20.12.8) + '@inquirer/editor': 4.2.10(@types/node@20.12.8) + '@inquirer/expand': 4.0.12(@types/node@20.12.8) + '@inquirer/input': 4.1.9(@types/node@20.12.8) + '@inquirer/number': 3.0.12(@types/node@20.12.8) + '@inquirer/password': 4.0.12(@types/node@20.12.8) + '@inquirer/rawlist': 4.1.0(@types/node@20.12.8) + '@inquirer/search': 3.0.12(@types/node@20.12.8) + '@inquirer/select': 4.2.0(@types/node@20.12.8) + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/prompts@7.3.2(@types/node@20.14.5)': dependencies: '@inquirer/checkbox': 4.1.5(@types/node@20.14.5) @@ -23792,6 +24887,22 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/rawlist@4.1.0(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/type': 3.0.6(@types/node@20.11.17) + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/rawlist@4.1.0(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/type': 3.0.6(@types/node@20.12.8) + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/rawlist@4.1.0(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23800,6 +24911,24 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/search@3.0.12(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.11.17) + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/search@3.0.12(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.12.8) + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/search@3.0.12(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23809,6 +24938,26 @@ snapshots: optionalDependencies: '@types/node': 20.14.5 + '@inquirer/select@4.2.0(@types/node@20.11.17)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.11.17) + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.11.17) + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/select@4.2.0(@types/node@20.12.8)': + dependencies: + '@inquirer/core': 10.1.10(@types/node@20.12.8) + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.6(@types/node@20.12.8) + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/select@4.2.0(@types/node@20.14.5)': dependencies: '@inquirer/core': 10.1.10(@types/node@20.14.5) @@ -23823,6 +24972,14 @@ snapshots: dependencies: mute-stream: 1.0.0 + '@inquirer/type@3.0.6(@types/node@20.11.17)': + optionalDependencies: + '@types/node': 20.11.17 + + '@inquirer/type@3.0.6(@types/node@20.12.8)': + optionalDependencies: + '@types/node': 20.12.8 + '@inquirer/type@3.0.6(@types/node@20.14.5)': optionalDependencies: '@types/node': 20.14.5 @@ -24139,7 +25296,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 @@ -24237,6 +25394,16 @@ snapshots: dependencies: '@lezer/common': 1.2.3 + '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@20.11.17))': + dependencies: + '@inquirer/prompts': 7.3.2(@types/node@20.11.17) + '@inquirer/type': 1.5.5 + + '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@20.12.8))': + dependencies: + '@inquirer/prompts': 7.3.2(@types/node@20.12.8) + '@inquirer/type': 1.5.5 + '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@20.14.5))': dependencies: '@inquirer/prompts': 7.3.2(@types/node@20.14.5) @@ -24407,7 +25574,7 @@ snapshots: 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) typescript: 5.4.5 - webpack: 5.94.0(@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) '@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))': dependencies: @@ -24415,6 +25582,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@19.2.19(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(typescript@5.4.5)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4))': + dependencies: + '@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5) + typescript: 5.4.5 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: eslint-scope: 5.1.1 @@ -25359,7 +26532,7 @@ snapshots: '@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.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))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.39.0 @@ -25372,7 +26545,7 @@ snapshots: webpack: 5.96.1(@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.96.1(@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': {} @@ -25810,6 +26983,13 @@ snapshots: '@rollup/pluginutils': 5.1.3(rollup@4.22.4) optionalDependencies: rollup: 4.22.4 + optional: true + + '@rollup/plugin-json@6.1.0(rollup@4.34.8)': + dependencies: + '@rollup/pluginutils': 5.1.3(rollup@4.34.8) + optionalDependencies: + rollup: 4.34.8 '@rollup/plugin-node-resolve@13.3.0(rollup@4.22.4)': dependencies: @@ -25854,60 +27034,101 @@ snapshots: optionalDependencies: rollup: 4.22.4 + '@rollup/pluginutils@5.1.3(rollup@4.34.8)': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + optionalDependencies: + rollup: 4.34.8 + '@rollup/rollup-android-arm-eabi@4.22.4': optional: true '@rollup/rollup-android-arm-eabi@4.34.8': optional: true + '@rollup/rollup-android-arm-eabi@4.52.5': + 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.52.5': + 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.52.5': + 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.52.5': + optional: true + '@rollup/rollup-freebsd-arm64@4.34.8': optional: true + '@rollup/rollup-freebsd-arm64@4.52.5': + optional: true + '@rollup/rollup-freebsd-x64@4.34.8': optional: true + '@rollup/rollup-freebsd-x64@4.52.5': + 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.52.5': + 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.52.5': + 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.52.5': + 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.52.5': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.52.5': + optional: true + '@rollup/rollup-linux-loongarch64-gnu@4.34.8': optional: true @@ -25917,48 +27138,81 @@ snapshots: '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': optional: true + '@rollup/rollup-linux-ppc64-gnu@4.52.5': + 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.52.5': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.52.5': + 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.52.5': + 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.52.5': + 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.52.5': + optional: true + + '@rollup/rollup-openharmony-arm64@4.52.5': + 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.52.5': + 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.52.5': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.52.5': + 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.52.5': + optional: true + '@rollup/wasm-node@4.27.3': dependencies: '@types/estree': 1.0.6 @@ -25991,6 +27245,22 @@ snapshots: transitivePeerDependencies: - chokidar + '@schematics/angular@19.2.18': + dependencies: + '@angular-devkit/core': 19.2.18 + '@angular-devkit/schematics': 19.2.18 + jsonc-parser: 3.3.1 + transitivePeerDependencies: + - chokidar + + '@schematics/angular@19.2.19(chokidar@4.0.1)': + dependencies: + '@angular-devkit/core': 19.2.19(chokidar@4.0.1) + '@angular-devkit/schematics': 19.2.19(chokidar@4.0.1) + jsonc-parser: 3.3.1 + transitivePeerDependencies: + - chokidar + '@sigstore/bundle@2.3.2': dependencies: '@sigstore/protobuf-specs': 0.3.2 @@ -26282,7 +27552,7 @@ snapshots: 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)) 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 + magic-string: 0.30.17 path-browserify: 1.0.1 process: 0.11.10 semver: 7.7.2 @@ -26373,7 +27643,7 @@ snapshots: dependencies: '@babel/core': 7.23.9 '@babel/preset-env': 7.23.9(@babel/core@7.23.9) - '@babel/types': 7.28.5 + '@babel/types': 7.27.1 '@storybook/csf': 0.1.11 '@storybook/csf-tools': 7.6.19 '@storybook/node-logger': 7.6.19 @@ -26515,8 +27785,8 @@ snapshots: dependencies: '@babel/generator': 7.27.1 '@babel/parser': 7.23.9 - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.27.1 + '@babel/types': 7.27.1 '@storybook/csf': 0.1.11 '@storybook/types': 7.6.19 fs-extra: 11.2.0 @@ -26584,11 +27854,11 @@ 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.96.1(@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.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)) '@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 @@ -26598,7 +27868,7 @@ snapshots: '@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) @@ -26660,10 +27930,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.96.1(@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.96.1(@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 @@ -26793,6 +28063,18 @@ snapshots: - supports-color - typescript + '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + eslint: 9.18.0(jiti@1.21.6) + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + estraverse: 5.3.0 + picomatch: 4.0.2 + transitivePeerDependencies: + - supports-color + - typescript + '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': dependencies: '@typescript-eslint/utils': 8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2) @@ -27408,6 +28690,23 @@ 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.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.23.0 + '@typescript-eslint/type-utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.23.0 + eslint: 9.18.0(jiti@1.21.6) + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 2.0.1(typescript@5.5.4) + typescript: 5.5.4 + 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)': dependencies: '@eslint-community/regexpp': 4.12.1 @@ -27495,6 +28794,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@typescript-eslint/scope-manager': 8.23.0 + '@typescript-eslint/types': 8.23.0 + '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.23.0 + debug: 4.4.0 + eslint: 9.18.0(jiti@1.21.6) + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': dependencies: '@typescript-eslint/scope-manager': 8.23.0 @@ -27566,6 +28877,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.5.4) + '@typescript-eslint/utils': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + debug: 4.4.0 + eslint: 9.18.0(jiti@1.21.6) + ts-api-utils: 2.0.1(typescript@5.5.4) + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/type-utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': dependencies: '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.9.2) @@ -27632,6 +28954,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.4)': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.4.0 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.5.4) + optionalDependencies: + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 5.62.0 @@ -27704,6 +29040,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.23.0(typescript@5.5.4)': + dependencies: + '@typescript-eslint/types': 8.23.0 + '@typescript-eslint/visitor-keys': 8.23.0 + debug: 4.4.0 + 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.5.4) + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/typescript-estree@8.23.0(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.23.0 @@ -27746,6 +29096,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.25.0(typescript@5.5.4)': + dependencies: + '@typescript-eslint/types': 8.25.0 + '@typescript-eslint/visitor-keys': 8.25.0 + debug: 4.4.0 + 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.5.4) + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/typescript-estree@8.25.0(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.25.0 @@ -27775,14 +29139,14 @@ snapshots: - 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@1.21.6))(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.5.0(eslint@9.18.0(jiti@1.21.6)) '@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) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4) eslint: 9.18.0(jiti@1.21.6) eslint-scope: 5.1.1 semver: 7.7.2 @@ -27852,6 +29216,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.23.0 + '@typescript-eslint/types': 8.23.0 + '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.5.4) + eslint: 9.18.0(jiti@1.21.6) + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) @@ -27885,6 +29260,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.25.0 + '@typescript-eslint/types': 8.25.0 + '@typescript-eslint/typescript-estree': 8.25.0(typescript@5.5.4) + eslint: 9.18.0(jiti@1.21.6) + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.25.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.9.2)': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.18.0(jiti@1.21.6)) @@ -27929,14 +29315,19 @@ snapshots: 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.1.0(vite@5.1.8(@types/node@20.12.8)(less@4.2.0)(lightningcss@1.28.1)(sass@1.71.1)(terser@5.29.1))': - dependencies: - vite: 5.1.8(@types/node@20.12.8)(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))': 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) + '@vitejs/plugin-basic-ssl@1.2.0(vite@6.4.1(@types/node@20.12.8)(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))': + dependencies: + vite: 6.4.1(@types/node@20.12.8)(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.4.1(@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))': + dependencies: + vite: 6.4.1(@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) + optional: true + '@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))': dependencies: '@babel/core': 7.26.10 @@ -28147,7 +29538,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: @@ -28468,12 +29859,6 @@ snapshots: transitivePeerDependencies: - supports-color - agent-base@7.1.1: - dependencies: - debug: 4.4.0 - transitivePeerDependencies: - - supports-color - agent-base@7.1.3: {} agentkeepalive@4.5.0: @@ -28953,7 +30338,7 @@ snapshots: autoprefixer@10.4.20(postcss@8.5.2): dependencies: browserslist: 4.25.3 - caniuse-lite: 1.0.30001716 + caniuse-lite: 1.0.30001737 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -29083,7 +30468,7 @@ snapshots: '@babel/core': 7.24.0 find-cache-dir: 4.0.0 schema-utils: 4.3.2 - webpack: 5.94.0(@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) 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)): dependencies: @@ -29099,6 +30484,13 @@ snapshots: schema-utils: 4.3.2 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + 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.4)): + dependencies: + '@babel/core': 7.26.10 + find-cache-dir: 4.0.0 + schema-utils: 4.3.2 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + babel-messages@6.23.0: dependencies: babel-runtime: 6.26.0 @@ -29111,8 +30503,8 @@ snapshots: dependencies: '@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/plugin-syntax-typescript': 7.25.9(@babel/core@7.23.9) + '@babel/traverse': 7.27.1 transitivePeerDependencies: - supports-color @@ -29202,7 +30594,7 @@ 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 @@ -29734,13 +31126,6 @@ snapshots: vm-browserify: 1.1.2 xtend: 4.0.2 - browserslist@4.24.2: - dependencies: - caniuse-lite: 1.0.30001683 - electron-to-chromium: 1.5.63 - node-releases: 2.0.18 - update-browserslist-db: 1.1.1(browserslist@4.24.2) - browserslist@4.24.4: dependencies: caniuse-lite: 1.0.30001716 @@ -29912,8 +31297,6 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001683: {} - caniuse-lite@1.0.30001716: {} caniuse-lite@1.0.30001737: {} @@ -30231,10 +31614,10 @@ snapshots: code-point-at@1.1.0: {} - codelyzer@6.0.2(@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))(tslint@6.1.3(typescript@5.4.5)): + codelyzer@6.0.2(@angular/compiler@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(tslint@6.1.3(typescript@5.5.4)): dependencies: - '@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/compiler': 19.2.15 + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) app-root-path: 3.1.0 aria-query: 3.0.0 axobject-query: 2.0.2 @@ -30246,13 +31629,13 @@ snapshots: source-map: 0.5.7 sprintf-js: 1.1.3 tslib: 1.14.1 - tslint: 6.1.3(typescript@5.4.5) + tslint: 6.1.3(typescript@5.5.4) 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@19.2.15)(@angular/core@19.2.15(rxjs@7.8.1)(zone.js@0.15.1))(tslint@6.1.3(typescript@5.9.2)): dependencies: - '@angular/compiler': 19.2.8 - '@angular/core': 19.2.8(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/compiler': 19.2.15 + '@angular/core': 19.2.15(rxjs@7.8.1)(zone.js@0.15.1) app-root-path: 3.1.0 aria-query: 3.0.0 axobject-query: 2.0.2 @@ -30343,7 +31726,10 @@ snapshots: commander@11.0.0: {} - commander@12.1.0: {} + commander@12.1.0: + optional: true + + commander@13.1.0: {} commander@2.11.0: {} @@ -30486,7 +31872,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.3.2 serialize-javascript: 6.0.2 - webpack: 5.94.0(@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) copy-webpack-plugin@12.0.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -30498,6 +31884,16 @@ snapshots: 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@12.0.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + fast-glob: 3.3.3 + glob-parent: 6.0.2 + globby: 14.1.0 + normalize-path: 3.0.0 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + core-js-compat@3.39.0: dependencies: browserslist: 4.25.3 @@ -30579,6 +31975,15 @@ snapshots: optionalDependencies: typescript: 5.4.5 + cosmiconfig@9.0.0(typescript@5.5.4): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.5.4 + cosmiconfig@9.0.0(typescript@5.8.3): dependencies: env-paths: 2.2.1 @@ -30801,7 +32206,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.94.0(@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) css-loader@6.10.0(webpack@5.94.0): dependencies: @@ -30855,6 +32260,19 @@ snapshots: optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + css-loader@7.1.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + 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.7.2 + optionalDependencies: + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + css-select@4.3.0: dependencies: boolbase: 1.0.0 @@ -31557,8 +32975,6 @@ snapshots: electron-to-chromium@1.5.208: {} - electron-to-chromium@1.5.63: {} - elegant-spinner@1.0.1: {} elliptic@6.6.1: @@ -32027,7 +33443,7 @@ snapshots: esbuild-plugin-alias@0.2.1: {} - esbuild-plugin-vue3@0.3.2(cheerio@1.0.0-rc.10)(sass@1.71.1): + esbuild-plugin-vue3@0.3.2(cheerio@1.0.0-rc.10)(sass@1.85.0): dependencies: '@vue/compiler-core': 3.5.13 '@vue/compiler-sfc': 3.4.27 @@ -32035,7 +33451,7 @@ snapshots: typescript: 4.9.5 optionalDependencies: cheerio: 1.0.0-rc.10 - sass: 1.71.1 + sass: 1.85.0 esbuild-register@3.6.0(esbuild@0.18.20): dependencies: @@ -32049,10 +33465,13 @@ snapshots: esbuild-wasm@0.20.1: {} - esbuild-wasm@0.20.2: {} + esbuild-wasm@0.20.2: + optional: true esbuild-wasm@0.25.1: {} + esbuild-wasm@0.25.4: {} + esbuild-windows-32@0.14.54: optional: true @@ -32272,6 +33691,34 @@ snapshots: '@esbuild/win32-ia32': 0.25.1 '@esbuild/win32-x64': 0.25.1 + esbuild@0.25.4: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.4 + '@esbuild/android-arm': 0.25.4 + '@esbuild/android-arm64': 0.25.4 + '@esbuild/android-x64': 0.25.4 + '@esbuild/darwin-arm64': 0.25.4 + '@esbuild/darwin-x64': 0.25.4 + '@esbuild/freebsd-arm64': 0.25.4 + '@esbuild/freebsd-x64': 0.25.4 + '@esbuild/linux-arm': 0.25.4 + '@esbuild/linux-arm64': 0.25.4 + '@esbuild/linux-ia32': 0.25.4 + '@esbuild/linux-loong64': 0.25.4 + '@esbuild/linux-mips64el': 0.25.4 + '@esbuild/linux-ppc64': 0.25.4 + '@esbuild/linux-riscv64': 0.25.4 + '@esbuild/linux-s390x': 0.25.4 + '@esbuild/linux-x64': 0.25.4 + '@esbuild/netbsd-arm64': 0.25.4 + '@esbuild/netbsd-x64': 0.25.4 + '@esbuild/openbsd-arm64': 0.25.4 + '@esbuild/openbsd-x64': 0.25.4 + '@esbuild/sunos-x64': 0.25.4 + '@esbuild/win32-arm64': 0.25.4 + '@esbuild/win32-ia32': 0.25.4 + '@esbuild/win32-x64': 0.25.4 + escalade@3.2.0: {} escape-html@1.0.3: {} @@ -32308,6 +33755,15 @@ snapshots: 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.5.4))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + 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.5.4))(eslint@9.18.0(jiti@1.21.6)) + 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)): dependencies: confusing-browser-globals: 1.0.11 @@ -32335,6 +33791,15 @@ snapshots: 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.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)): + dependencies: + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + 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.5.4))(eslint@9.18.0(jiti@1.21.6)))(eslint@9.18.0(jiti@1.21.6)) + 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)): 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) @@ -32358,37 +33823,37 @@ snapshots: 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): + eslint-config-devextreme@1.1.5(2pinuafxrkqy7qyg2npwh3ew5y): 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/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) 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-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.5.4))(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.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(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.5.4))(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.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(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.5.4) 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@4.9.5) - stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@4.9.5)) + stylelint: 16.5.0(typescript@5.5.4) + stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.5.4)) - eslint-config-devextreme@1.1.5(m3ttf5qxvnatsf5pms6fqnrrf4): + 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@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@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@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-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)) - stylelint: 16.5.0(typescript@5.4.5) - stylelint-config-standard: 35.0.0(stylelint@16.5.0(typescript@5.4.5)) + 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(zuhb6j5bszthiwwa7gh3t5co7a): dependencies: @@ -32498,6 +33963,16 @@ snapshots: 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.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4) + eslint: 9.18.0(jiti@1.21.6) + 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)): dependencies: debug: 3.2.7 @@ -32584,6 +34059,35 @@ snapshots: - 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.5.4))(eslint@9.18.0(jiti@1.21.6)): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.5 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.18.0(jiti@1.21.6) + 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.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0(jiti@1.21.6)) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + 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.5.4) + 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)): dependencies: '@rtsao/scc': 1.1.0 @@ -32639,12 +34143,12 @@ snapshots: - 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@1.21.6))(typescript@5.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(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.5.4): dependencies: - '@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@1.21.6))(typescript@5.5.4) eslint: 9.18.0(jiti@1.21.6) 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) + '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.18.0(jiti@1.21.6))(typescript@5.5.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.12.8)(typescript@5.9.2)) transitivePeerDependencies: - supports-color @@ -34449,13 +35953,13 @@ snapshots: safe-buffer: 5.2.1 through2: 2.0.5 - gulp-typescript@4.0.2(typescript@5.4.5): + gulp-typescript@4.0.2(typescript@5.5.4): dependencies: ansi-colors: 1.1.0 plugin-error: 0.1.2 source-map: 0.6.1 through2: 2.0.5 - typescript: 5.4.5 + typescript: 5.5.4 vinyl: 2.2.1 vinyl-fs: 3.0.3 @@ -34813,7 +36317,7 @@ 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))): + 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 @@ -34821,10 +36325,10 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15)) + 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.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): + html-webpack-plugin@5.6.3(webpack@5.96.1(@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 @@ -34832,10 +36336,9 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0) - optional: true + 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.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): + 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: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -34843,9 +36346,10 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 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) + 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)): + html-webpack-plugin@5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -34853,7 +36357,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - 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.4) optional: true html2canvas@1.4.1: @@ -34953,6 +36457,18 @@ snapshots: 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.0) + 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@3.0.5: dependencies: '@types/http-proxy': 1.17.15 @@ -35743,14 +37259,14 @@ snapshots: jasmine-core@4.6.1: {} - jasmine-core@5.4.0: {} + jasmine-core@5.12.0: {} jasmine-core@5.6.0: {} - jasmine@5.4.0: + jasmine@5.12.0: dependencies: glob: 10.4.5 - jasmine-core: 5.4.0 + jasmine-core: 5.12.0 jest-changed-files@29.7.0: dependencies: @@ -36427,9 +37943,9 @@ snapshots: dependencies: '@babel/core': 7.23.9 '@babel/generator': 7.27.1 - '@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 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.23.9) + '@babel/types': 7.27.1 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -36950,7 +38466,7 @@ snapshots: dependencies: klona: 2.0.6 less: 4.2.0 - webpack: 5.94.0(@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) less-loader@12.2.0(less@4.2.2)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -36958,6 +38474,12 @@ snapshots: optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + less-loader@12.2.0(less@4.2.2)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + less: 4.2.2 + optionalDependencies: + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + less@4.2.0: dependencies: copy-anything: 2.0.6 @@ -36997,7 +38519,7 @@ snapshots: dependencies: webpack-sources: 3.2.3 optionalDependencies: - webpack: 5.94.0(@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) license-webpack-plugin@4.0.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -37005,6 +38527,12 @@ snapshots: optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + license-webpack-plugin@4.0.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + webpack-sources: 3.2.3 + optionalDependencies: + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + lie@3.3.0: dependencies: immediate: 3.0.6 @@ -37828,7 +39356,7 @@ snapshots: dependencies: schema-utils: 4.3.2 tapable: 2.2.1 - webpack: 5.94.0(@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) 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: @@ -37836,6 +39364,12 @@ snapshots: tapable: 2.2.1 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + mini-css-extract-plugin@2.9.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + schema-utils: 4.3.2 + tapable: 2.2.1 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + minimalistic-assert@1.0.1: {} minimalistic-crypto-utils@1.0.1: {} @@ -38120,59 +39654,114 @@ snapshots: '@rollup/wasm-node': 4.27.3 ajv: 8.17.1 ansi-colors: 4.1.3 - browserslist: 4.24.2 + browserslist: 4.25.3 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 + fast-glob: 3.3.3 find-cache-dir: 3.3.2 injection-js: 2.4.0 jsonc-parser: 3.3.1 - less: 4.2.0 + less: 4.2.2 ora: 5.4.1 - piscina: 4.7.0 + piscina: 4.8.0 postcss: 8.4.38 rxjs: 7.8.1 - sass: 1.81.0 + sass: 1.85.0 tslib: 2.6.3 typescript: 5.4.5 optionalDependencies: esbuild: 0.20.2 rollup: 4.22.4 + optional: true - 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): + ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5))(tslib@2.6.3)(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) + '@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.4.5) + '@rollup/plugin-json': 6.1.0(rollup@4.34.8) '@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 + browserslist: 4.25.3 + chokidar: 4.0.1 + commander: 13.1.0 convert-source-map: 2.0.0 dependency-graph: 1.0.0 - esbuild-wasm: 0.20.2 - fast-glob: 3.3.2 + esbuild: 0.25.0 + fast-glob: 3.3.3 find-cache-dir: 3.3.2 injection-js: 2.4.0 jsonc-parser: 3.3.1 - less: 4.2.0 + less: 4.2.2 ora: 5.4.1 - piscina: 4.7.0 - postcss: 8.4.38 + piscina: 4.8.0 + postcss: 8.5.3 rxjs: 7.8.1 - sass: 1.81.0 - tslib: 2.8.1 + sass: 1.85.0 + tslib: 2.6.3 typescript: 5.4.5 optionalDependencies: - esbuild: 0.20.2 - rollup: 4.22.4 + rollup: 4.34.8 + optional: true + + ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.3)(typescript@5.5.4): + dependencies: + '@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4) + '@rollup/plugin-json': 6.1.0(rollup@4.34.8) + '@rollup/wasm-node': 4.27.3 + ajv: 8.17.1 + ansi-colors: 4.1.3 + browserslist: 4.25.3 + chokidar: 4.0.1 + commander: 13.1.0 + convert-source-map: 2.0.0 + dependency-graph: 1.0.0 + esbuild: 0.25.0 + fast-glob: 3.3.3 + find-cache-dir: 3.3.2 + injection-js: 2.4.0 + jsonc-parser: 3.3.1 + less: 4.2.2 + ora: 5.4.1 + piscina: 4.8.0 + postcss: 8.5.3 + rxjs: 7.8.1 + sass: 1.85.0 + tslib: 2.6.3 + typescript: 5.5.4 + optionalDependencies: + rollup: 4.34.8 + + ng-packagr@19.2.2(@angular/compiler-cli@19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3): + dependencies: + '@angular/compiler-cli': 19.2.8(@angular/compiler@19.2.8)(typescript@5.8.3) + '@rollup/plugin-json': 6.1.0(rollup@4.34.8) + '@rollup/wasm-node': 4.27.3 + ajv: 8.17.1 + ansi-colors: 4.1.3 + browserslist: 4.25.3 + chokidar: 4.0.1 + commander: 13.1.0 + convert-source-map: 2.0.0 + dependency-graph: 1.0.0 + esbuild: 0.25.0 + fast-glob: 3.3.3 + find-cache-dir: 3.3.2 + injection-js: 2.4.0 + jsonc-parser: 3.3.1 + less: 4.2.2 + ora: 5.4.1 + piscina: 4.8.0 + postcss: 8.5.3 + rxjs: 7.8.1 + sass: 1.85.0 + tslib: 2.6.3 + typescript: 5.8.3 + optionalDependencies: + rollup: 4.34.8 optional: true nice-napi@1.0.2: @@ -38276,8 +39865,6 @@ snapshots: uuid: 8.3.2 which: 2.0.2 - node-releases@2.0.18: {} - node-releases@2.0.19: {} node-source-walk@6.0.2: @@ -39162,10 +40749,6 @@ snapshots: optionalDependencies: nice-napi: 1.0.2 - piscina@4.7.0: - optionalDependencies: - '@napi-rs/nice': 1.0.1 - piscina@4.8.0: optionalDependencies: '@napi-rs/nice': 1.0.1 @@ -39261,7 +40844,18 @@ snapshots: postcss: 8.4.35 semver: 7.7.2 optionalDependencies: - webpack: 5.94.0(@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) + transitivePeerDependencies: + - typescript + + postcss-loader@8.1.1(postcss@8.5.2)(typescript@5.4.5)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + cosmiconfig: 9.0.0(typescript@5.4.5) + jiti: 1.21.6 + postcss: 8.5.2 + semver: 7.7.2 + optionalDependencies: + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) transitivePeerDependencies: - typescript @@ -39499,7 +41093,7 @@ snapshots: proxy-agent@6.4.0: dependencies: - agent-base: 7.1.1 + agent-base: 7.1.3 debug: 4.4.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -39578,11 +41172,11 @@ snapshots: - supports-color - utf-8-validate - puppeteer@23.6.1(typescript@5.4.5): + puppeteer@23.6.1(typescript@5.5.4): dependencies: '@puppeteer/browsers': 2.4.0 chromium-bidi: 0.8.0(devtools-protocol@0.0.1354347) - cosmiconfig: 9.0.0(typescript@5.4.5) + cosmiconfig: 9.0.0(typescript@5.5.4) devtools-protocol: 0.0.1354347 puppeteer-core: 23.6.1 typed-query-selector: 2.12.0 @@ -39702,8 +41296,8 @@ snapshots: react-docgen@7.1.0: dependencies: '@babel/core': 7.23.9 - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.27.1 + '@babel/types': 7.27.1 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 '@types/doctrine': 0.0.9 @@ -40408,6 +42002,34 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.34.8 fsevents: 2.3.3 + rollup@4.52.5: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.52.5 + '@rollup/rollup-android-arm64': 4.52.5 + '@rollup/rollup-darwin-arm64': 4.52.5 + '@rollup/rollup-darwin-x64': 4.52.5 + '@rollup/rollup-freebsd-arm64': 4.52.5 + '@rollup/rollup-freebsd-x64': 4.52.5 + '@rollup/rollup-linux-arm-gnueabihf': 4.52.5 + '@rollup/rollup-linux-arm-musleabihf': 4.52.5 + '@rollup/rollup-linux-arm64-gnu': 4.52.5 + '@rollup/rollup-linux-arm64-musl': 4.52.5 + '@rollup/rollup-linux-loong64-gnu': 4.52.5 + '@rollup/rollup-linux-ppc64-gnu': 4.52.5 + '@rollup/rollup-linux-riscv64-gnu': 4.52.5 + '@rollup/rollup-linux-riscv64-musl': 4.52.5 + '@rollup/rollup-linux-s390x-gnu': 4.52.5 + '@rollup/rollup-linux-x64-gnu': 4.52.5 + '@rollup/rollup-linux-x64-musl': 4.52.5 + '@rollup/rollup-openharmony-arm64': 4.52.5 + '@rollup/rollup-win32-arm64-msvc': 4.52.5 + '@rollup/rollup-win32-ia32-msvc': 4.52.5 + '@rollup/rollup-win32-x64-gnu': 4.52.5 + '@rollup/rollup-win32-x64-msvc': 4.52.5 + fsevents: 2.3.3 + router@2.2.0: dependencies: debug: 4.4.0 @@ -40592,7 +42214,7 @@ snapshots: optionalDependencies: sass: 1.71.1 sass-embedded: 1.66.0 - webpack: 5.94.0(@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) sass-loader@16.0.5(sass-embedded@1.66.0)(sass@1.85.0)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -40602,6 +42224,14 @@ 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-embedded@1.66.0)(sass@1.85.0)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + neo-async: 2.6.2 + optionalDependencies: + sass: 1.85.0 + sass-embedded: 1.66.0 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + sass-lookup@5.0.1: dependencies: commander: 10.0.1 @@ -40612,14 +42242,6 @@ snapshots: immutable: 4.3.5 source-map-js: 1.2.1 - sass@1.81.0: - dependencies: - chokidar: 4.0.1 - immutable: 5.0.3 - source-map-js: 1.2.1 - optionalDependencies: - '@parcel/watcher': 2.5.0 - sass@1.85.0: dependencies: chokidar: 4.0.1 @@ -41066,7 +42688,7 @@ snapshots: dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.1 - webpack: 5.94.0(@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) source-map-loader@5.0.0(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): dependencies: @@ -41074,6 +42696,12 @@ snapshots: source-map-js: 1.2.1 webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + source-map-loader@5.0.0(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + iconv-lite: 0.6.3 + source-map-js: 1.2.1 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + source-map-resolve@0.5.3: dependencies: atob: 2.1.2 @@ -41316,7 +42944,7 @@ snapshots: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15)) + webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) string-width@1.0.2: dependencies: @@ -41563,6 +43191,10 @@ snapshots: dependencies: stylelint: 16.5.0(typescript@5.4.5) + stylelint-config-recommended@14.0.1(stylelint@16.5.0(typescript@5.5.4)): + dependencies: + stylelint: 16.5.0(typescript@5.5.4) + stylelint-config-recommended@14.0.1(stylelint@16.5.0(typescript@5.9.2)): dependencies: stylelint: 16.5.0(typescript@5.9.2) @@ -41595,6 +43227,11 @@ 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.5.4)): + dependencies: + stylelint: 16.5.0(typescript@5.5.4) + stylelint-config-recommended: 14.0.1(stylelint@16.5.0(typescript@5.5.4)) + stylelint-config-standard@35.0.0(stylelint@16.5.0(typescript@5.9.2)): dependencies: stylelint: 16.5.0(typescript@5.9.2) @@ -41804,6 +43441,51 @@ snapshots: - supports-color - typescript + stylelint@16.5.0(typescript@5.5.4): + dependencies: + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) + '@dual-bundle/import-meta-resolve': 4.1.0 + balanced-match: 2.0.0 + colord: 2.9.3 + cosmiconfig: 9.0.0(typescript@5.5.4) + css-functions-list: 3.2.3 + css-tree: 2.3.1 + debug: 4.3.7 + fast-glob: 3.3.2 + fastest-levenshtein: 1.0.16 + file-entry-cache: 8.0.0 + global-modules: 2.0.0 + globby: 11.1.0 + globjoin: 0.1.4 + html-tags: 3.3.1 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-plain-object: 5.0.0 + known-css-properties: 0.30.0 + mathml-tag-names: 2.1.3 + meow: 13.2.0 + micromatch: 4.0.8 + normalize-path: 3.0.0 + picocolors: 1.1.1 + postcss: 8.4.38 + postcss-resolve-nested-selector: 0.1.6 + postcss-safe-parser: 7.0.1(postcss@8.4.38) + postcss-selector-parser: 6.1.2 + postcss-value-parser: 4.2.0 + resolve-from: 5.0.0 + string-width: 4.2.3 + strip-ansi: 7.1.0 + supports-hyperlinks: 3.1.0 + svg-tags: 1.0.0 + table: 6.8.2 + write-file-atomic: 5.0.1 + transitivePeerDependencies: + - supports-color + - typescript + stylelint@16.5.0(typescript@5.9.2): dependencies: '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) @@ -42053,49 +43735,50 @@ snapshots: '@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.25.0)(webpack@5.94.0(@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.20.1)(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): 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.94.0(@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: '@swc/core': 1.9.2(@swc/helpers@0.5.15) - esbuild: 0.25.0 + esbuild: 0.20.1 - 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)): + terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): 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.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.4) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) - esbuild: 0.25.1 + esbuild: 0.25.0 - terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.101.3(@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))(esbuild@0.25.1)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)): 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)) + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) + esbuild: 0.25.1 - terser-webpack-plugin@5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack@5.94.0(@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.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15))): 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.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15)) + webpack: 5.101.3(@swc/core@1.9.2(@swc/helpers@0.5.15)) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) @@ -42151,7 +43834,7 @@ snapshots: schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.39.0 - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15)) + webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1) optionalDependencies: '@swc/core': 1.9.2(@swc/helpers@0.5.15) @@ -42775,6 +44458,10 @@ snapshots: dependencies: typescript: 5.4.5 + ts-api-utils@2.0.1(typescript@5.5.4): + dependencies: + typescript: 5.5.4 + ts-api-utils@2.0.1(typescript@5.9.2): dependencies: typescript: 5.9.2 @@ -43051,7 +44738,7 @@ snapshots: tslib@2.8.1: {} - tslint@6.1.3(typescript@5.4.5): + tslint@6.1.3(typescript@5.5.4): dependencies: '@babel/code-frame': 7.27.1 builtin-modules: 1.1.1 @@ -43065,8 +44752,8 @@ snapshots: resolve: 1.22.10 semver: 5.7.2 tslib: 1.14.1 - tsutils: 2.29.0(typescript@5.4.5) - typescript: 5.4.5 + tsutils: 2.29.0(typescript@5.5.4) + typescript: 5.5.4 tslint@6.1.3(typescript@5.9.2): dependencies: @@ -43085,10 +44772,10 @@ snapshots: tsutils: 2.29.0(typescript@5.9.2) typescript: 5.9.2 - tsutils@2.29.0(typescript@5.4.5): + tsutils@2.29.0(typescript@5.5.4): dependencies: tslib: 1.14.1 - typescript: 5.4.5 + typescript: 5.5.4 tsutils@2.29.0(typescript@5.9.2): dependencies: @@ -43110,6 +44797,11 @@ snapshots: tslib: 1.14.1 typescript: 5.4.5 + tsutils@3.21.0(typescript@5.5.4): + dependencies: + tslib: 1.14.1 + typescript: 5.5.4 + tsutils@3.21.0(typescript@5.9.2): dependencies: tslib: 1.14.1 @@ -43255,6 +44947,8 @@ snapshots: typescript@5.4.5: {} + typescript@5.5.4: {} + typescript@5.8.3: {} typescript@5.9.2: {} @@ -43456,12 +45150,6 @@ snapshots: upath@1.2.0: {} - update-browserslist-db@1.1.1(browserslist@4.24.2): - dependencies: - browserslist: 4.24.2 - escalade: 3.2.0 - picocolors: 1.1.1 - update-browserslist-db@1.1.1(browserslist@4.24.4): dependencies: browserslist: 4.24.4 @@ -43754,38 +45442,63 @@ snapshots: sass: 1.71.1 terser: 5.29.1 - vite@5.1.8(@types/node@20.12.8)(less@4.2.0)(lightningcss@1.28.1)(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): dependencies: - esbuild: 0.19.3 - postcss: 8.4.38 + esbuild: 0.21.5 + postcss: 8.5.3 rollup: 4.22.4 optionalDependencies: - '@types/node': 20.12.8 + '@types/node': 20.14.5 fsevents: 2.3.3 - less: 4.2.0 + less: 4.2.2 lightningcss: 1.28.1 - sass: 1.71.1 - terser: 5.29.1 + sass: 1.85.0 + sass-embedded: 1.66.0 + terser: 5.39.0 - 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@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): dependencies: - esbuild: 0.21.5 + esbuild: 0.25.0 postcss: 8.5.3 - rollup: 4.22.4 + rollup: 4.34.8 optionalDependencies: '@types/node': 20.14.5 fsevents: 2.3.3 + jiti: 1.21.6 less: 4.2.2 lightningcss: 1.28.1 sass: 1.85.0 sass-embedded: 1.66.0 terser: 5.39.0 + yaml: 2.5.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.4.1(@types/node@20.12.8)(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): dependencies: esbuild: 0.25.0 + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 postcss: 8.5.3 - rollup: 4.34.8 + rollup: 4.52.5 + tinyglobby: 0.2.13 + optionalDependencies: + '@types/node': 20.12.8 + fsevents: 2.3.3 + jiti: 1.21.6 + less: 4.2.2 + lightningcss: 1.28.1 + sass: 1.85.0 + sass-embedded: 1.66.0 + terser: 5.39.0 + yaml: 2.5.0 + + vite@6.4.1(@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): + dependencies: + esbuild: 0.25.0 + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.3 + rollup: 4.52.5 + tinyglobby: 0.2.13 optionalDependencies: '@types/node': 20.14.5 fsevents: 2.3.3 @@ -43796,6 +45509,7 @@ snapshots: sass-embedded: 1.66.0 terser: 5.39.0 yaml: 2.5.0 + optional: true vm-browserify@1.1.2: {} @@ -43974,7 +45688,7 @@ snapshots: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.3.2 - webpack: 5.94.0(@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-dev-middleware@6.1.2(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: @@ -43984,7 +45698,7 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.2 optionalDependencies: - webpack: 5.94.0(@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-dev-middleware@6.1.3(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)): dependencies: @@ -44030,6 +45744,17 @@ snapshots: optionalDependencies: webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1) + webpack-dev-middleware@7.4.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + colorette: 2.0.20 + memfs: 4.17.0 + mime-types: 2.1.35 + on-finished: 2.4.1 + range-parser: 1.2.1 + schema-utils: 4.3.2 + optionalDependencies: + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + webpack-dev-server@4.15.1(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): dependencies: '@types/bonjour': 3.5.13 @@ -44063,7 +45788,7 @@ snapshots: webpack-dev-middleware: 5.3.4(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) ws: 8.18.0 optionalDependencies: - webpack: 5.94.0(@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) transitivePeerDependencies: - bufferutil - debug @@ -44146,7 +45871,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.96.1(@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 @@ -44164,7 +45889,7 @@ 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 @@ -44185,6 +45910,44 @@ snapshots: - utf-8-validate optional: true + webpack-dev-server@5.2.2(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + 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.1.0 + p-retry: 6.2.1 + schema-utils: 4.3.2 + 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.4)) + ws: 8.18.0 + optionalDependencies: + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + webpack-hot-middleware@2.26.1: dependencies: ansi-html-community: 0.0.8 @@ -44221,19 +45984,12 @@ snapshots: supports-color: 8.1.1 through: 2.3.8 vinyl: 2.2.1 - webpack: 5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15)) - - 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))))(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)): - dependencies: - typed-assert: 1.0.9 - webpack: 5.94.0(@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))) + 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.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: typed-assert: 1.0.9 - webpack: 5.94.0(@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: html-webpack-plugin: 5.6.3(webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.20.1)) @@ -44244,6 +46000,13 @@ snapshots: optionalDependencies: 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-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.4)))(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)): + dependencies: + typed-assert: 1.0.9 + webpack: 5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4) + optionalDependencies: + html-webpack-plugin: 5.6.3(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) + webpack-virtual-modules@0.5.0: {} webpack-virtual-modules@0.6.2: {} @@ -44280,7 +46043,7 @@ snapshots: - esbuild - uglify-js - webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15)): + 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 @@ -44302,7 +46065,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))(webpack@5.94.0(@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))(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 transitivePeerDependencies: @@ -44310,7 +46073,7 @@ snapshots: - esbuild - uglify-js - webpack@5.94.0(@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))(webpack-cli@4.10.0): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.14.1 @@ -44332,15 +46095,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))(esbuild@0.25.0)(webpack@5.94.0(@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))(webpack@5.94.0) 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@4.10.0): + webpack@5.94.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(webpack-cli@5.1.4): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.14.1 @@ -44366,20 +46131,20 @@ snapshots: watchpack: 2.4.2 webpack-sources: 3.2.3 optionalDependencies: - webpack-cli: 4.10.0(webpack@5.94.0) + webpack-cli: 5.1.4(webpack-dev-server@5.2.1)(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.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15)): 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 @@ -44394,17 +46159,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))(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))) 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)): + webpack@5.96.1(@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.6 @@ -44426,7 +46189,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))(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))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.18.20)) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -44434,17 +46197,17 @@ snapshots: - esbuild - uglify-js - 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): dependencies: '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 '@webassemblyjs/ast': 1.14.1 '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 - acorn: 8.14.0 - browserslist: 4.24.4 + acorn: 8.15.0 + browserslist: 4.25.3 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 @@ -44454,17 +46217,17 @@ snapshots: loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 3.3.0 + 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.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.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 + webpack-sources: 3.3.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - 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.4): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -44474,7 +46237,7 @@ snapshots: acorn: 8.15.0 browserslist: 4.25.3 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 @@ -44486,9 +46249,9 @@ 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.1)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.1)) + terser-webpack-plugin: 5.3.14(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.0)(webpack@5.98.0(@swc/core@1.9.2(@swc/helpers@0.5.15))(esbuild@0.25.4)) watchpack: 2.4.2 - webpack-sources: 3.2.3 + webpack-sources: 3.3.3 transitivePeerDependencies: - '@swc/core' - esbuild @@ -44813,4 +46576,6 @@ snapshots: zone.js@0.15.0: {} + zone.js@0.15.1: {} + zwitch@2.0.4: {}