diff --git a/examples/angular/basic/angular.json b/examples/angular/basic/angular.json index 7197e2fe77..9bf6785160 100644 --- a/examples/angular/basic/angular.json +++ b/examples/angular/basic/angular.json @@ -12,7 +12,31 @@ "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -20,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/basic", "index": "src/index.html", @@ -57,7 +81,7 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { "buildTarget": "basic:build:production" @@ -69,21 +93,10 @@ "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { "buildTarget": "basic:build" } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] - } } } } diff --git a/examples/angular/basic/package.json b/examples/angular/basic/package.json index 2ce5bf9296..a5c6b37c13 100644 --- a/examples/angular/basic/package.json +++ b/examples/angular/basic/package.json @@ -11,29 +11,23 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", - "@angular/router": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", + "@angular/router": "^19.0.5", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "@types/jasmine": "~5.1.5", "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/basic/src/app/app.component.ts b/examples/angular/basic/src/app/app.component.ts index d0685d6449..15cfe986d5 100644 --- a/examples/angular/basic/src/app/app.component.ts +++ b/examples/angular/basic/src/app/app.component.ts @@ -79,7 +79,6 @@ const defaultColumns: Array> = [ @Component({ selector: 'app-root', - standalone: true, imports: [FlexRenderDirective], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, diff --git a/examples/angular/column-ordering/angular.json b/examples/angular/column-ordering/angular.json index 93bf48f9d1..8a1504a87f 100644 --- a/examples/angular/column-ordering/angular.json +++ b/examples/angular/column-ordering/angular.json @@ -3,7 +3,7 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "basic": { + "column-ordering": { "cli": { "cache": { "enabled": false @@ -12,7 +12,31 @@ "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -20,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/column-ordering", "index": "src/index.html", @@ -34,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -46,32 +81,21 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "basic:build:production" + "buildTarget": "column-ordering:build:production" }, "development": { - "buildTarget": "basic:build:development" + "buildTarget": "column-ordering:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "basic:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "column-ordering:build" } } } diff --git a/examples/angular/column-ordering/package.json b/examples/angular/column-ordering/package.json index 201afc4577..cbcb6ca171 100644 --- a/examples/angular/column-ordering/package.json +++ b/examples/angular/column-ordering/package.json @@ -11,28 +11,20 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/column-ordering/src/app/app.component.ts b/examples/angular/column-ordering/src/app/app.component.ts index e1a9fcc62d..502f3a77a3 100644 --- a/examples/angular/column-ordering/src/app/app.component.ts +++ b/examples/angular/column-ordering/src/app/app.component.ts @@ -79,7 +79,6 @@ const _features = tableFeatures({ @Component({ selector: 'app-root', - standalone: true, imports: [FlexRenderDirective], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, diff --git a/examples/angular/column-pinning-sticky/angular.json b/examples/angular/column-pinning-sticky/angular.json index c6cd127977..c28dffc22c 100644 --- a/examples/angular/column-pinning-sticky/angular.json +++ b/examples/angular/column-pinning-sticky/angular.json @@ -3,7 +3,7 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "basic": { + "column-pinning-sticky": { "cli": { "cache": { "enabled": false @@ -12,7 +12,31 @@ "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -20,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/column-pinning-sticky", "index": "src/index.html", @@ -34,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -46,32 +81,21 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "basic:build:production" + "buildTarget": "column-pinning-sticky:build:production" }, "development": { - "buildTarget": "basic:build:development" + "buildTarget": "column-pinning-sticky:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "basic:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "column-pinning-sticky:build" } } } diff --git a/examples/angular/column-pinning-sticky/package.json b/examples/angular/column-pinning-sticky/package.json index b931066409..9107f12202 100644 --- a/examples/angular/column-pinning-sticky/package.json +++ b/examples/angular/column-pinning-sticky/package.json @@ -11,29 +11,21 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/column-pinning-sticky/src/app/app.component.ts b/examples/angular/column-pinning-sticky/src/app/app.component.ts index 5356af2ea6..dc7ab44402 100644 --- a/examples/angular/column-pinning-sticky/src/app/app.component.ts +++ b/examples/angular/column-pinning-sticky/src/app/app.component.ts @@ -77,7 +77,6 @@ const defaultColumns: Array> = [ @Component({ selector: 'app-root', - standalone: true, imports: [FlexRenderDirective, NgStyle], templateUrl: './app.component.html', }) diff --git a/examples/angular/column-pinning/angular.json b/examples/angular/column-pinning/angular.json index b458c5d4d6..883af7e0b3 100644 --- a/examples/angular/column-pinning/angular.json +++ b/examples/angular/column-pinning/angular.json @@ -3,7 +3,7 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "basic": { + "column-pinning": { "cli": { "cache": { "enabled": false @@ -12,7 +12,31 @@ "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -20,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/column-pinning", "index": "src/index.html", @@ -34,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -46,32 +81,21 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "basic:build:production" + "buildTarget": "column-pinning:build:production" }, "development": { - "buildTarget": "basic:build:development" + "buildTarget": "column-pinning:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "basic:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "column-pinning:build" } } } diff --git a/examples/angular/column-pinning/package.json b/examples/angular/column-pinning/package.json index de16d8002c..e7f6795256 100644 --- a/examples/angular/column-pinning/package.json +++ b/examples/angular/column-pinning/package.json @@ -11,29 +11,22 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/animations": "^19.0.5", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/column-pinning/src/app/app.component.ts b/examples/angular/column-pinning/src/app/app.component.ts index 2b5395472d..cff2be27ba 100644 --- a/examples/angular/column-pinning/src/app/app.component.ts +++ b/examples/angular/column-pinning/src/app/app.component.ts @@ -91,7 +91,6 @@ const defaultColumns: Array> = [ @Component({ selector: 'app-root', - standalone: true, imports: [FlexRenderDirective, SlicePipe, NgTemplateOutlet], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, diff --git a/examples/angular/column-visibility/angular.json b/examples/angular/column-visibility/angular.json index 3c9f089af8..527fa62074 100644 --- a/examples/angular/column-visibility/angular.json +++ b/examples/angular/column-visibility/angular.json @@ -3,7 +3,7 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "basic": { + "column-visibility": { "cli": { "cache": { "enabled": false @@ -12,7 +12,31 @@ "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -20,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/column-visibility", "index": "src/index.html", @@ -34,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -46,32 +81,21 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "basic:build:production" + "buildTarget": "column-visibility:build:production" }, "development": { - "buildTarget": "basic:build:development" + "buildTarget": "column-visibility:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "basic:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "column-visibility:build" } } } diff --git a/examples/angular/column-visibility/package.json b/examples/angular/column-visibility/package.json index 4f72a5a50b..f7b1b01c6b 100644 --- a/examples/angular/column-visibility/package.json +++ b/examples/angular/column-visibility/package.json @@ -11,28 +11,20 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/column-visibility/src/app/app.component.ts b/examples/angular/column-visibility/src/app/app.component.ts index 66d416f64e..4b9be41f55 100644 --- a/examples/angular/column-visibility/src/app/app.component.ts +++ b/examples/angular/column-visibility/src/app/app.component.ts @@ -108,7 +108,6 @@ const defaultColumns: Array> = [ @Component({ selector: 'app-root', - standalone: true, imports: [FlexRenderDirective], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, diff --git a/examples/angular/filters/angular.json b/examples/angular/filters/angular.json index 2c4d7a1d6c..d85470334a 100644 --- a/examples/angular/filters/angular.json +++ b/examples/angular/filters/angular.json @@ -3,11 +3,40 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "selection": { + "filters": { + "cli": { + "cache": { + "enabled": false + } + }, "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -15,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/filters", "index": "src/index.html", @@ -29,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -41,32 +81,21 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "selection:build:production" + "buildTarget": "filters:build:production" }, "development": { - "buildTarget": "selection:build:development" + "buildTarget": "filters:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", - "options": { - "buildTarget": "selection:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", + "builder": "@angular/build:extract-i18n", "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "filters:build" } } } diff --git a/examples/angular/filters/package.json b/examples/angular/filters/package.json index 87843b4608..e001b94dc5 100644 --- a/examples/angular/filters/package.json +++ b/examples/angular/filters/package.json @@ -11,13 +11,12 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", @@ -25,16 +24,9 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "typescript": "5.6.3" } } diff --git a/examples/angular/filters/src/app/app.component.ts b/examples/angular/filters/src/app/app.component.ts index b221b64f25..816c746660 100644 --- a/examples/angular/filters/src/app/app.component.ts +++ b/examples/angular/filters/src/app/app.component.ts @@ -15,6 +15,7 @@ import { createPaginatedRowModel, createSortedRowModel, filterFns, + globalFacetingFeature, injectTable, isFunction, rowPaginationFeature, @@ -42,7 +43,6 @@ export const _features = tableFeatures({ @Component({ selector: 'app-root', - standalone: true, imports: [FilterComponent, FlexRenderDirective, FormsModule, NgClass], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, @@ -102,6 +102,7 @@ export class AppComponent { paginatedRowModel: createPaginatedRowModel(), sortedRowModel: createSortedRowModel(sortFns), }, + // enableExperimentalReactivity: true, columns: this.columns, data: this.data(), state: { diff --git a/examples/angular/filters/src/app/table-filter.component.ts b/examples/angular/filters/src/app/table-filter.component.ts index 5bdaded095..275d519036 100644 --- a/examples/angular/filters/src/app/table-filter.component.ts +++ b/examples/angular/filters/src/app/table-filter.component.ts @@ -1,4 +1,3 @@ -import { CommonModule } from '@angular/common' import { Component, computed, input } from '@angular/core' import { DebouncedInputDirective } from './debounced-input.directive' import type { _features } from './app.component' @@ -89,8 +88,7 @@ declare module '@tanstack/angular-table' {
} `, - standalone: true, - imports: [CommonModule, DebouncedInputDirective], + imports: [DebouncedInputDirective], }) export class FilterComponent { column = input.required>() diff --git a/examples/angular/grouping/angular.json b/examples/angular/grouping/angular.json index 9577b47c44..42e83b5e2c 100644 --- a/examples/angular/grouping/angular.json +++ b/examples/angular/grouping/angular.json @@ -4,10 +4,39 @@ "newProjectRoot": "projects", "projects": { "grouping": { + "cli": { + "cache": { + "enabled": false + } + }, "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -15,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/grouping", "index": "src/index.html", @@ -29,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -41,7 +81,7 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { "buildTarget": "grouping:build:production" @@ -53,21 +93,10 @@ "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { "buildTarget": "grouping:build" } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] - } } } } diff --git a/examples/angular/grouping/package.json b/examples/angular/grouping/package.json index 0c10da65e6..6c558b284e 100644 --- a/examples/angular/grouping/package.json +++ b/examples/angular/grouping/package.json @@ -11,29 +11,21 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/grouping/src/app/app.component.ts b/examples/angular/grouping/src/app/app.component.ts index 86f5c8ca5e..a2498c659f 100644 --- a/examples/angular/grouping/src/app/app.component.ts +++ b/examples/angular/grouping/src/app/app.component.ts @@ -14,6 +14,7 @@ import { createFilteredRowModel, createGroupedRowModel, createPaginatedRowModel, + createTableHelper, filterFns, injectTable, isFunction, @@ -22,7 +23,7 @@ import { tableFeatures, } from '@tanstack/angular-table' import { columns } from './columns' -import { makeData } from './makeData' +import { makeData, Person } from './makeData' import type { GroupingState, Updater } from '@tanstack/angular-table' export const _features = tableFeatures({ @@ -32,6 +33,16 @@ export const _features = tableFeatures({ rowExpandingFeature, }) +const tableHelper = createTableHelper({ + _features, + _rowModels: { + groupedRowModel: createGroupedRowModel(aggregationFns), + expandedRowModel: createExpandedRowModel(), + paginatedRowModel: createPaginatedRowModel(), + filteredRowModel: createFilteredRowModel(filterFns), + }, +}) + @Component({ selector: 'app-root', standalone: true, @@ -48,17 +59,10 @@ export class AppComponent { JSON.stringify(this.grouping(), null, 2), ) - readonly table = injectTable(() => ({ - _features, - _rowModels: { - groupedRowModel: createGroupedRowModel(aggregationFns), - expandedRowModel: createExpandedRowModel(), - paginatedRowModel: createPaginatedRowModel(), - filteredRowModel: createFilteredRowModel(filterFns), - }, + readonly table = tableHelper.injectTable(() => ({ enableExperimentalReactivity: true, data: this.data(), - columns, + columns: columns, initialState: { pagination: { pageSize: 20, pageIndex: 0 }, }, diff --git a/examples/angular/grouping/src/app/columns.ts b/examples/angular/grouping/src/app/columns.ts index 34567742fc..ce5f0cdd4e 100644 --- a/examples/angular/grouping/src/app/columns.ts +++ b/examples/angular/grouping/src/app/columns.ts @@ -1,16 +1,7 @@ +import type { Person } from './makeData' import type { _features } from './app.component' import type { ColumnDef } from '@tanstack/angular-table' -export type Person = { - firstName: string - lastName: string - age: number - visits: number - progress: number - status: 'relationship' | 'complicated' | 'single' - subRows?: Array -} - export const columns: Array> = [ { header: 'Name', diff --git a/examples/angular/grouping/src/app/makeData.ts b/examples/angular/grouping/src/app/makeData.ts index b9fb014aba..b393b01622 100644 --- a/examples/angular/grouping/src/app/makeData.ts +++ b/examples/angular/grouping/src/app/makeData.ts @@ -33,7 +33,7 @@ const newPerson = (): Person => { } } -export function makeData(...lens: Array) { +export function makeData(...lens: Array): Array { const makeDataLevel = (depth = 0): Array => { const len = lens[depth] return range(len).map((d): Person => { diff --git a/examples/angular/row-selection-signal/angular.json b/examples/angular/row-selection-signal/angular.json index 7bae30f0ba..106a174e63 100644 --- a/examples/angular/row-selection-signal/angular.json +++ b/examples/angular/row-selection-signal/angular.json @@ -3,11 +3,40 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "selection": { + "row-selection-signal": { + "cli": { + "cache": { + "enabled": false + } + }, "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -15,9 +44,9 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { - "outputPath": "dist/selection-signal", + "outputPath": "dist/row-selection-signal", "index": "src/index.html", "browser": "src/main.ts", "polyfills": ["zone.js"], @@ -29,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -41,41 +81,27 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "selection:build:production" + "buildTarget": "row-selection-signal:build:production" }, "development": { - "buildTarget": "selection:build:development" + "buildTarget": "row-selection-signal:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "selection:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "row-selection-signal:build" } } } } }, "cli": { - "analytics": false, - "cache": { - "enabled": false - } + "analytics": false } } diff --git a/examples/angular/row-selection-signal/package.json b/examples/angular/row-selection-signal/package.json index c9e4ec12e8..8a4704e936 100644 --- a/examples/angular/row-selection-signal/package.json +++ b/examples/angular/row-selection-signal/package.json @@ -11,13 +11,13 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/animations": "^19.0.5", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", @@ -25,16 +25,9 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "typescript": "5.6.3" } } diff --git a/examples/angular/row-selection-signal/src/app/app.component.ts b/examples/angular/row-selection-signal/src/app/app.component.ts index d9477c7ff6..90af11a770 100644 --- a/examples/angular/row-selection-signal/src/app/app.component.ts +++ b/examples/angular/row-selection-signal/src/app/app.component.ts @@ -36,7 +36,6 @@ const _features = tableFeatures({ @Component({ selector: 'app-root', - standalone: true, imports: [FilterComponent, FlexRenderDirective], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, diff --git a/examples/angular/row-selection-signal/src/app/filter.ts b/examples/angular/row-selection-signal/src/app/filter.ts index c21fcc3807..f2a33d71dc 100644 --- a/examples/angular/row-selection-signal/src/app/filter.ts +++ b/examples/angular/row-selection-signal/src/app/filter.ts @@ -1,4 +1,3 @@ -import { CommonModule } from '@angular/common' import { Component, input } from '@angular/core' import type { OnInit } from '@angular/core' import type { Column, RowData, Table } from '@tanstack/angular-table' @@ -36,8 +35,6 @@ import type { Column, RowData, Table } from '@tanstack/angular-table' /> } }`, - standalone: true, - imports: [CommonModule], }) export class FilterComponent implements OnInit { column = input.required>() diff --git a/examples/angular/row-selection/angular.json b/examples/angular/row-selection/angular.json index 6a37fa4647..6d49f0e78d 100644 --- a/examples/angular/row-selection/angular.json +++ b/examples/angular/row-selection/angular.json @@ -3,11 +3,40 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "selection": { + "row-selection": { + "cli": { + "cache": { + "enabled": false + } + }, "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -15,9 +44,9 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { - "outputPath": "dist/selection", + "outputPath": "dist/row-selection", "index": "src/index.html", "browser": "src/main.ts", "polyfills": ["zone.js"], @@ -29,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -41,41 +81,27 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "selection:build:production" + "buildTarget": "row-selection:build:production" }, "development": { - "buildTarget": "selection:build:development" + "buildTarget": "row-selection:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "selection:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "row-selection:build" } } } } }, "cli": { - "analytics": false, - "cache": { - "enabled": false - } + "analytics": false } } diff --git a/examples/angular/row-selection/package.json b/examples/angular/row-selection/package.json index 6ef2af82cb..616536b74f 100644 --- a/examples/angular/row-selection/package.json +++ b/examples/angular/row-selection/package.json @@ -11,13 +11,12 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/forms": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/forms": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", @@ -25,16 +24,9 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "typescript": "5.6.3" } } diff --git a/examples/angular/row-selection/src/app/filter.ts b/examples/angular/row-selection/src/app/filter.ts index 71b4d66404..f8b79d3f9b 100644 --- a/examples/angular/row-selection/src/app/filter.ts +++ b/examples/angular/row-selection/src/app/filter.ts @@ -1,4 +1,3 @@ -import { CommonModule } from '@angular/common' import { Component, input } from '@angular/core' import type { OnInit } from '@angular/core' import type { Column, Table } from '@tanstack/angular-table' @@ -37,7 +36,6 @@ import type { Column, Table } from '@tanstack/angular-table' } }`, standalone: true, - imports: [CommonModule], }) export class FilterComponent implements OnInit { column = input.required>() diff --git a/examples/angular/signal-input/angular.json b/examples/angular/signal-input/angular.json index 1ce36507d6..054d010446 100644 --- a/examples/angular/signal-input/angular.json +++ b/examples/angular/signal-input/angular.json @@ -3,11 +3,40 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "grouping": { + "signal-input": { + "cli": { + "cache": { + "enabled": false + } + }, "projectType": "application", "schematics": { "@schematics/angular:component": { + "inlineTemplate": true, + "inlineStyle": true, + "skipTests": true, "style": "scss" + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:interceptor": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:resolver": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true } }, "root": "", @@ -15,7 +44,7 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:application", + "builder": "@angular/build:application", "options": { "outputPath": "dist/signal-input", "index": "src/index.html", @@ -29,7 +58,18 @@ }, "configurations": { "production": { - "budgets": [], + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], "outputHashing": "all" }, "development": { @@ -41,41 +81,27 @@ "defaultConfiguration": "production" }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular/build:dev-server", "configurations": { "production": { - "buildTarget": "grouping:build:production" + "buildTarget": "signal-input:build:production" }, "development": { - "buildTarget": "grouping:build:development" + "buildTarget": "signal-input:build:development" } }, "defaultConfiguration": "development" }, "extract-i18n": { - "builder": "@angular-devkit/build-angular:extract-i18n", + "builder": "@angular/build:extract-i18n", "options": { - "buildTarget": "grouping:build" - } - }, - "test": { - "builder": "@angular-devkit/build-angular:karma", - "options": { - "polyfills": ["zone.js", "zone.js/testing"], - "tsConfig": "tsconfig.spec.json", - "inlineStyleLanguage": "scss", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss"], - "scripts": [] + "buildTarget": "signal-input:build" } } } } }, "cli": { - "analytics": false, - "cache": { - "enabled": false - } + "analytics": false } } diff --git a/examples/angular/signal-input/package.json b/examples/angular/signal-input/package.json index 26ca0f19ab..d4fc796f4c 100644 --- a/examples/angular/signal-input/package.json +++ b/examples/angular/signal-input/package.json @@ -11,28 +11,20 @@ }, "private": true, "dependencies": { - "@angular/animations": "^19.0.3", - "@angular/common": "^19.0.3", - "@angular/compiler": "^19.0.3", - "@angular/core": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/common": "^19.0.5", + "@angular/compiler": "^19.0.5", + "@angular/core": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@faker-js/faker": "^9.3.0", "@tanstack/angular-table": "^9.0.0-alpha.10", "rxjs": "~7.8.1", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.4", - "@angular/cli": "^19.0.4", - "@angular/compiler-cli": "^19.0.3", - "@types/jasmine": "~5.1.5", - "jasmine-core": "~5.5.0", - "karma": "~6.4.4", - "karma-chrome-launcher": "~3.2.0", - "karma-coverage": "~2.2.1", - "karma-jasmine": "~5.1.0", - "karma-jasmine-html-reporter": "~2.1.0", + "@angular/build": "^19.0.6", + "@angular/cli": "^19.0.6", + "@angular/compiler-cli": "^19.0.5", "tslib": "^2.8.1", "typescript": "5.6.3" } diff --git a/examples/angular/signal-input/src/app/app.component.ts b/examples/angular/signal-input/src/app/app.component.ts index bb731533e6..77ca8713c9 100644 --- a/examples/angular/signal-input/src/app/app.component.ts +++ b/examples/angular/signal-input/src/app/app.component.ts @@ -5,7 +5,6 @@ import type { PaginationState } from '@tanstack/angular-table' @Component({ selector: 'app-root', - standalone: true, imports: [PersonTableComponent], templateUrl: './app.component.html', changeDetection: ChangeDetectionStrategy.OnPush, diff --git a/examples/angular/signal-input/src/app/person-table/person-table.component.ts b/examples/angular/signal-input/src/app/person-table/person-table.component.ts index 00d28904ce..e06d8a00d9 100644 --- a/examples/angular/signal-input/src/app/person-table/person-table.component.ts +++ b/examples/angular/signal-input/src/app/person-table/person-table.component.ts @@ -23,7 +23,6 @@ const tableHelper = createTableHelper({ selector: 'app-person-table', templateUrl: 'person-table.component.html', changeDetection: ChangeDetectionStrategy.OnPush, - standalone: true, imports: [FlexRenderDirective], }) export class PersonTableComponent { diff --git a/packages/angular-table/package.json b/packages/angular-table/package.json index 68ce1a03e2..b6560a0b76 100644 --- a/packages/angular-table/package.json +++ b/packages/angular-table/package.json @@ -57,9 +57,9 @@ }, "devDependencies": { "@analogjs/vite-plugin-angular": "^1.10.1", - "@angular/core": "^19.0.3", - "@angular/platform-browser": "^19.0.3", - "@angular/platform-browser-dynamic": "^19.0.3", + "@angular/core": "^19.0.5", + "@angular/platform-browser": "^19.0.5", + "@angular/platform-browser-dynamic": "^19.0.5", "@vitest/ui": "^2.1.8", "ng-packagr": "^19.0.1" }, diff --git a/packages/angular-table/src/createTableHelper.ts b/packages/angular-table/src/createTableHelper.ts index 903694459b..afe0ca7280 100644 --- a/packages/angular-table/src/createTableHelper.ts +++ b/packages/angular-table/src/createTableHelper.ts @@ -1,6 +1,6 @@ -import { Signal } from '@angular/core' import { constructTableHelper } from './constructTableHelper' import { injectTable } from './injectTable' +import type { Signal } from '@angular/core' import type { RowData, Table, diff --git a/packages/angular-table/src/flex-render.ts b/packages/angular-table/src/flex-render.ts index 097b071517..a5511e126a 100644 --- a/packages/angular-table/src/flex-render.ts +++ b/packages/angular-table/src/flex-render.ts @@ -1,19 +1,19 @@ -import type { DoCheck, OnChanges, SimpleChanges } from '@angular/core' import { ChangeDetectorRef, ComponentRef, Directive, EmbeddedViewRef, Inject, - inject, InjectionToken, Injector, Input, - isSignal, TemplateRef, Type, ViewContainerRef, + inject, + isSignal, } from '@angular/core' +import type { DoCheck, OnChanges, SimpleChanges } from '@angular/core' import type { Table } from '@tanstack/table-core' export type FlexRenderContent> = diff --git a/packages/angular-table/src/injectTable.ts b/packages/angular-table/src/injectTable.ts index 6b5703ee79..9a874a7ae8 100644 --- a/packages/angular-table/src/injectTable.ts +++ b/packages/angular-table/src/injectTable.ts @@ -1,12 +1,4 @@ -import type { Signal } from '@angular/core' import { computed, signal } from '@angular/core' -import type { - RowData, - Table, - TableFeatures, - TableOptions, - TableState, -} from '@tanstack/table-core' import { constructTable, coreFeatures, @@ -16,6 +8,14 @@ import { import { lazyInit } from './lazy-signal-initializer' import { proxifyTable } from './proxy' import { reactivityFeature } from './reactivity' +import type { + RowData, + Table, + TableFeatures, + TableOptions, + TableState, +} from '@tanstack/table-core' +import type { Signal } from '@angular/core' export function injectTable< TFeatures extends TableFeatures, diff --git a/packages/angular-table/tests/flex-render.test.ts b/packages/angular-table/tests/flex-render.test.ts index c88bbc1e16..0f1fe04a8b 100644 --- a/packages/angular-table/tests/flex-render.test.ts +++ b/packages/angular-table/tests/flex-render.test.ts @@ -22,7 +22,7 @@ interface Data { describe('FlexRenderDirective', () => { const helper = createColumnHelper<{}, Data>() - test('should render primitives', async () => { + test('should render primitives', () => { const fixture = TestBed.createComponent(TestRenderComponent) // Null diff --git a/packages/angular-table/tests/lazy-init.test.ts b/packages/angular-table/tests/lazy-init.test.ts index ba9854fb2b..671a873137 100644 --- a/packages/angular-table/tests/lazy-init.test.ts +++ b/packages/angular-table/tests/lazy-init.test.ts @@ -32,7 +32,7 @@ describe('lazyInit', () => { expect(mockFn).toHaveBeenCalled() }) - test('should init eagerly accessing manually', async () => { + test('should init eagerly accessing manually', () => { const mockFn = vi.fn() TestBed.runInInjectionContext(() => { diff --git a/packages/angular-table/tests/test-utils.ts b/packages/angular-table/tests/test-utils.ts index 443f091a06..fdaeb58e56 100644 --- a/packages/angular-table/tests/test-utils.ts +++ b/packages/angular-table/tests/test-utils.ts @@ -1,7 +1,6 @@ import { SIGNAL, signalSetFn } from '@angular/core/primitives/signals' import type { InputSignal } from '@angular/core' import type { ComponentFixture } from '@angular/core/testing' -import { Table } from '@tanstack/table-core' type ToSignalInputUpdatableMap = { [K in keyof T as T[K] extends InputSignal diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7d371e7cdb..e5bb62e1d5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -74,30 +74,27 @@ importers: examples/angular/basic: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@angular/router': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@tanstack/angular-table': specifier: ^9.0.0-alpha.10 version: link:../../../packages/angular-table @@ -108,36 +105,21 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) '@types/jasmine': specifier: ~5.1.5 version: 5.1.5 jasmine-core: specifier: ~5.5.0 version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -147,27 +129,24 @@ importers: examples/angular/column-ordering: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@tanstack/angular-table': specifier: ^9.0.0-alpha.10 version: link:../../../packages/angular-table @@ -178,36 +157,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -218,26 +176,26 @@ importers: examples/angular/column-pinning: dependencies: '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -251,36 +209,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -290,27 +227,24 @@ importers: examples/angular/column-pinning-sticky: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -324,36 +258,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -363,27 +276,24 @@ importers: examples/angular/column-visibility: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@tanstack/angular-table': specifier: ^9.0.0-alpha.10 version: link:../../../packages/angular-table @@ -394,36 +304,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -433,27 +322,24 @@ importers: examples/angular/filters: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -470,63 +356,39 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) typescript: specifier: 5.6.3 version: 5.6.3 examples/angular/grouping: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -540,36 +402,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -579,27 +420,24 @@ importers: examples/angular/row-selection: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -616,36 +454,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) typescript: specifier: 5.6.3 version: 5.6.3 @@ -653,26 +470,26 @@ importers: examples/angular/row-selection-signal: dependencies: '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/forms': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -689,60 +506,36 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) typescript: specifier: 5.6.3 version: 5.6.3 examples/angular/signal-input: dependencies: - '@angular/animations': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/common': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) '@angular/compiler': - specifier: ^19.0.3 - version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@faker-js/faker': specifier: ^9.3.0 version: 9.3.0 @@ -756,36 +549,15 @@ importers: specifier: ~0.15.0 version: 0.15.0 devDependencies: - '@angular-devkit/build-angular': - specifier: ^19.0.4 - version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': + specifier: ^19.0.6 + version: 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) '@angular/cli': - specifier: ^19.0.4 - version: 19.0.4(@types/node@22.10.1)(chokidar@4.0.1) + specifier: ^19.0.6 + version: 19.0.6(@types/node@22.10.1)(chokidar@4.0.1) '@angular/compiler-cli': - specifier: ^19.0.3 - version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@types/jasmine': - specifier: ~5.1.5 - version: 5.1.5 - jasmine-core: - specifier: ~5.5.0 - version: 5.5.0 - karma: - specifier: ~6.4.4 - version: 6.4.4 - karma-chrome-launcher: - specifier: ~3.2.0 - version: 3.2.0 - karma-coverage: - specifier: ~2.2.1 - version: 2.2.1 - karma-jasmine: - specifier: ~5.1.0 - version: 5.1.0(karma@6.4.4) - karma-jasmine-html-reporter: - specifier: ~2.1.0 - version: 2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) + specifier: ^19.0.5 + version: 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -2945,22 +2717,22 @@ importers: devDependencies: '@analogjs/vite-plugin-angular': specifier: ^1.10.1 - version: 1.10.1(@angular-devkit/build-angular@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)))(@angular/build@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3)) + version: 1.10.1(@angular-devkit/build-angular@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)))(@angular/build@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3)) '@angular/core': - specifier: ^19.0.3 - version: 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + specifier: ^19.0.5 + version: 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) '@angular/platform-browser': - specifier: ^19.0.3 - version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + specifier: ^19.0.5 + version: 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@angular/platform-browser-dynamic': - specifier: ^19.0.3 - version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))) + specifier: ^19.0.5 + version: 19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))) '@vitest/ui': specifier: ^2.1.8 version: 2.1.8(vitest@2.1.8) ng-packagr: specifier: ^19.0.1 - version: 19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3) + version: 19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3) packages/lit-table: dependencies: @@ -3105,19 +2877,19 @@ packages: '@angular/build': optional: true - '@angular-devkit/architect@0.1900.4': - resolution: {integrity: sha512-9XwZ21BPYS2vGOOwVB40fsMyuwJT0H1lWaAMo8Umwi6XbKBVfaWbEhjtR9dlarrySKtFuTz9hmTZkIXHLjXPdA==} + '@angular-devkit/architect@0.1900.6': + resolution: {integrity: sha512-w11bAXQnNWBawTJfQPjvaTRrzrqsOUm9tK9WNvaia/xjiRFpmO0CfmKtn3axNSEJM8jb/czaNQrgTwG+TGc/8g==} 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@19.0.4': - resolution: {integrity: sha512-n7fcRdNB7ed5j6aZI+qPI/1LylFv1OiRNgBIeJxX3HEmzQxsHHLcxWog2yZK2Fvw3390xFx/VjZaklITj6tBFA==} + '@angular-devkit/build-angular@19.0.6': + resolution: {integrity: sha512-dWTAsE6BSI8z0xglQdYBdqTBwg1Q+RWE3OrmlGs+520Dcoq/F0Z41Y1F3MiuHuQPdDAIQr88iB0APkIRW4clMg==} 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 '@angular/localize': ^19.0.0 '@angular/platform-server': ^19.0.0 '@angular/service-worker': ^19.0.0 - '@angular/ssr': ^19.0.4 + '@angular/ssr': ^19.0.6 '@web/test-runner': ^0.19.0 browser-sync: ^3.0.2 jest: ^29.5.0 @@ -3153,15 +2925,15 @@ packages: tailwindcss: optional: true - '@angular-devkit/build-webpack@0.1900.4': - resolution: {integrity: sha512-eovr5Am8EwxF7d/y0Hbfz/KYWnOXXVXVwquPUcg8JBI19lLbfctz4+71Vjz2qGroijr2FlZztRpmhd498SLt/A==} + '@angular-devkit/build-webpack@0.1900.6': + resolution: {integrity: sha512-WehtVrbBow4fc7hsaUKb+BZ6MDE5lO98/tgv7GR5PkRdGKnyLA0pW1AfPLJJQDgcaKjneramMhDFNc1eGSX0mQ==} 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@19.0.4': - resolution: {integrity: sha512-+imxIj1JLr2hbUYQePHgkTUKr0VmlxNSZvIREcCWtXUcdCypiwhJAtGXv6MfpB4hAx+FJZYEpVWeLwYOS/gW0A==} + '@angular-devkit/core@19.0.6': + resolution: {integrity: sha512-WUWJhzQDsovfMY6jtb9Ktz/5sJszsaErj+XV2aXab85f1OweI/Iv2urPZnJwUSilvVN5Ok/fy3IJ6SuihK4Ceg==} 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 @@ -3169,18 +2941,18 @@ packages: chokidar: optional: true - '@angular-devkit/schematics@19.0.4': - resolution: {integrity: sha512-2r6Qs4N5NSPho+qzegCYS8kIgylXyH4DHaS7HJ5+4XvM1I8V8AII8payLWkUK0i29XufVoD5XfPUFnjxZrBfYQ==} + '@angular-devkit/schematics@19.0.6': + resolution: {integrity: sha512-R9hlHfAh1HKoIWgnYJlOEKhUezhTNl0fpUmHxG2252JSY5FLRxmYArTtJYYmbNdBbsBLNg3UHyM/GBPvJSA3NQ==} 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@19.0.3': - resolution: {integrity: sha512-YWoXM2S5p+Eq6cX1xjtFaai23oVNnbf3u34pEQCyKDjZpqI5lMu8e63lQT0tf7fZttEWlNUYRTwQ9+MpZ0sjzQ==} + '@angular/animations@19.0.5': + resolution: {integrity: sha512-HCOF2CrhUvjoZWusd4nh32VOxpUrg6bV+3Z8Q36Ix3aZdni8v0qoP2rl5wGbotaPtYg5RtyDH60Z2AOPKqlrZg==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/core': 19.0.3 + '@angular/core': 19.0.5 - '@angular/build@19.0.4': - resolution: {integrity: sha512-ubsNjLb54VkZwcPQ21Ke8aAHiIrRIcv7gG3R6/6XOoWeK1K2+tsv8bnO4mz5cHgzWOspLOT7FDC83NJjrKX3Nw==} + '@angular/build@19.0.6': + resolution: {integrity: sha512-KEVNLgTZUF2dfpOYQn+yR2HONHUTxq/2rFVhiK9qAvrm/m+uKJNEXx7hGtbRyoqenZff4ScJq+7feITUldfX8g==} 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 @@ -3188,7 +2960,7 @@ packages: '@angular/localize': ^19.0.0 '@angular/platform-server': ^19.0.0 '@angular/service-worker': ^19.0.0 - '@angular/ssr': ^19.0.4 + '@angular/ssr': ^19.0.6 less: ^4.2.0 postcss: ^8.4.0 tailwindcss: ^2.0.0 || ^3.0.0 @@ -3209,78 +2981,78 @@ packages: tailwindcss: optional: true - '@angular/cli@19.0.4': - resolution: {integrity: sha512-jxnD9qkhelcRMCrHDCxNsWgn6HQCvMIj8uI0T2eB9Vy93q2YWUo/fWl2Sy4gFlR+VNeF+1hYhPLb/vqLLzjWuA==} + '@angular/cli@19.0.6': + resolution: {integrity: sha512-ZEHhgRRVIdn10dbsAjB8TE9Co32hfuL9/im5Jcfa1yrn6KJefmigz6KN8Xu7FXMH5FkdqfQ11QpLBxJSPb9aww==} 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@19.0.3': - resolution: {integrity: sha512-YyBVZU+LQ38R+/U5vF/b1T3muROKpR0kkupMw7VKnGhQfgrRX5Dk3H2nr9ritt0zPc7TOUuQSlHMf3QWah2GDg==} + '@angular/common@19.0.5': + resolution: {integrity: sha512-fFK+euCj1AjBHBCpj9VnduMSeqoMRhZZHbhPYiND7tucRRJ8vwGU0sYK2KI/Ko+fsrNIXL/0O4F36jVPl09Smg==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/core': 19.0.3 + '@angular/core': 19.0.5 rxjs: ^6.5.3 || ^7.4.0 - '@angular/compiler-cli@19.0.3': - resolution: {integrity: sha512-nayLcC3hSHoGKXCZInMdFcIZJEHYkEGNsdAutgCMuSj+lXCGuRUysuGC0rGzJc2R6nhgfaLJnO8T/O5acqaqdA==} + '@angular/compiler-cli@19.0.5': + resolution: {integrity: sha512-KSzuWCTZlvJsoAenxM9cjTOzNM8mrFxDBInj0KVPz7QU83amGS4rcv1pWO/QGYQcErfskcN84TAdMegaRWWCmA==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} hasBin: true peerDependencies: - '@angular/compiler': 19.0.3 + '@angular/compiler': 19.0.5 typescript: '>=5.5 <5.7' - '@angular/compiler@19.0.3': - resolution: {integrity: sha512-cxtK4SlHAPstcXfjwOaoR1dAszrzo2iDF8ZiihbZPgKUG3m27qIU3Lp5XBgxfZPlO4jh6TXkWznY7f6Tyxkb0Q==} + '@angular/compiler@19.0.5': + resolution: {integrity: sha512-S8ku5Ljp0kqX3shfmE9DVo09629jeYJSlBRGbj2Glb92dd+VQZPOz7KxqKRTwmAl7lQIV/+4Lr6G/GVTsoC4vg==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/core': 19.0.3 + '@angular/core': 19.0.5 peerDependenciesMeta: '@angular/core': optional: true - '@angular/core@19.0.3': - resolution: {integrity: sha512-WM844gDzrbHtcM2TJB9DmfCmenUYyNSI6h924CeppDW5oG8ShinQGiWNjF5oI6EZ4tG60uK3QvCm3kjr1dmbOA==} + '@angular/core@19.0.5': + resolution: {integrity: sha512-Ywc6sPO6G/Y1stfk3y/MallV/h0yzQ0vdOHRWueLrk5kD1DTdbolV4X03Cs3PuVvravgcSVE3nnuuHFuH32emQ==} 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/forms@19.0.3': - resolution: {integrity: sha512-8wf8yDR6cW+lOhpzhmxUOiI5Wjr1Kf7o8NuJ2P5K6b7IMNRzRyR5q/6R4NUwtF6aaJ1wNqmSof+goQmtn1HOcw==} + '@angular/forms@19.0.5': + resolution: {integrity: sha512-OhNFkfOoguqCDq07vNBV28FFrmTM8S11Z3Cd6PQZJJF9TgAtpV5KtF7A3eXBCN92W4pmqluomPjfK7YyImzIYQ==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/common': 19.0.3 - '@angular/core': 19.0.3 - '@angular/platform-browser': 19.0.3 + '@angular/common': 19.0.5 + '@angular/core': 19.0.5 + '@angular/platform-browser': 19.0.5 rxjs: ^6.5.3 || ^7.4.0 - '@angular/platform-browser-dynamic@19.0.3': - resolution: {integrity: sha512-gFh+QN7JvepnD3mS0XmOtDmfY8h5sSkk2/guesE2A68Na8q+M3fGZlz7I37tCXToLth5us1X0Gi0UPCSESc4SA==} + '@angular/platform-browser-dynamic@19.0.5': + resolution: {integrity: sha512-KKFdue/uJVxkWdrntRAXkz+ycp4nD3SuGOH5pPf2svCBxieuHuFlWDi+DYVuFSEpC/ICCmlhrtzIAm44A4qzzQ==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/common': 19.0.3 - '@angular/compiler': 19.0.3 - '@angular/core': 19.0.3 - '@angular/platform-browser': 19.0.3 + '@angular/common': 19.0.5 + '@angular/compiler': 19.0.5 + '@angular/core': 19.0.5 + '@angular/platform-browser': 19.0.5 - '@angular/platform-browser@19.0.3': - resolution: {integrity: sha512-vggWHSzOsCpYqnGq5IIN+n7xdEvXfgUGaMdgzPhFMTsnlMTUs5+VEFl9tX9FANHkXKB5S1RttVyvEXRqJM9ncQ==} + '@angular/platform-browser@19.0.5': + resolution: {integrity: sha512-41+Jo5DEil4Ifvv+UE/p1l9YJtYN+xfhx+/C9cahVgvV5D2q+givyK73d0Mnb6XOfe1q+hoV5lZ+XhQYp21//g==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/animations': 19.0.3 - '@angular/common': 19.0.3 - '@angular/core': 19.0.3 + '@angular/animations': 19.0.5 + '@angular/common': 19.0.5 + '@angular/core': 19.0.5 peerDependenciesMeta: '@angular/animations': optional: true - '@angular/router@19.0.3': - resolution: {integrity: sha512-L/s8crRC6nj5knmHsnPeOXMNdC7vUOSOvTQonXhmT0FdlP9bPnnRrNeVDnLnd8AzjPSBfIFE2eQw6T8jCwdxMA==} + '@angular/router@19.0.5': + resolution: {integrity: sha512-6tNubVVj/rRyTg+OXjQxACfufvCLHAwDQtv9wqt6q/3OYSnysHTik3ho3FaFPwu7fXJ+6p9Rjzkh2VY9QMk4bw==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: - '@angular/common': 19.0.3 - '@angular/core': 19.0.3 - '@angular/platform-browser': 19.0.3 + '@angular/common': 19.0.5 + '@angular/core': 19.0.5 + '@angular/platform-browser': 19.0.5 rxjs: ^6.5.3 || ^7.4.0 '@babel/code-frame@7.26.2': @@ -3823,10 +3595,6 @@ packages: peerDependencies: vite: ^5 - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - '@commitlint/parse@19.5.0': resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==} engines: {node: '>=v18'} @@ -4880,8 +4648,8 @@ packages: '@napi-rs/wasm-runtime@0.2.4': resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} - '@ngtools/webpack@19.0.4': - resolution: {integrity: sha512-N3WCbQz5ipdAZoSWHNf81RLET6+isq35+GZu9u0StpFtJCpXAmRRAv4vdMUYL7DLOzRmvEgwww6Rd5AwGeLFSw==} + '@ngtools/webpack@19.0.6': + resolution: {integrity: sha512-eWrIb0tS1CK6+JvFS4GgTD4fN9TtmApKrlaj3pPQXKXKKd42361ec85fuQQXdb4G8eEEq0vyd/bn4NJllh/3vw==} 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 @@ -5328,8 +5096,8 @@ packages: '@rushstack/ts-command-line@4.22.3': resolution: {integrity: sha512-edMpWB3QhFFZ4KtSzS8WNjBgR4PXPPOVrOHMbb7kNpmQ1UFS9HdVtjCXg1H5fG+xYAbeE+TMPcVPUyX2p84STA==} - '@schematics/angular@19.0.4': - resolution: {integrity: sha512-1fXBtkA/AjgMPxHLpGlw7NuT/wggCqAwBAmDnSiRnBBV7Pgs/tHorLgh7A9eoUi3c8CYCuAh8zqWNyjBGGigOQ==} + '@schematics/angular@19.0.6': + resolution: {integrity: sha512-HicclmbW/+mlljU7a4PzbyIWG+7tognoL5LsgMFJQUDzJXHNjRt1riL0vk57o8Pcprnz9FheeWZXO1KRhXkQuw==} 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'} '@shikijs/engine-oniguruma@1.24.0': @@ -5394,9 +5162,6 @@ packages: engines: {node: '>=8.10'} hasBin: true - '@socket.io/component-emitter@3.1.2': - resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} - '@solid-primitives/scheduled@1.4.4': resolution: {integrity: sha512-BTGdFP7t+s7RSak+s1u0eTix4lHP23MrbGkgQTFlt1E+4fmnD/bEx3ZfNW7Grylz3GXgKyXrgDKA7jQ/wuWKgA==} peerDependencies: @@ -5636,12 +5401,6 @@ packages: '@types/conventional-commits-parser@5.0.1': resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} - '@types/cookie@0.4.1': - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} - - '@types/cors@2.8.17': - resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} - '@types/eslint-scope@3.7.7': resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} @@ -6223,10 +5982,6 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - base64id@2.0.0: - resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} - engines: {node: ^4.5.0 || >= 5.9} - batch@0.6.1: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} @@ -6411,9 +6166,6 @@ packages: resolution: {integrity: sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} @@ -6495,10 +6247,6 @@ packages: resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} engines: {node: '>=0.8'} - connect@3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} - engines: {node: '>= 0.10.0'} - content-disposition@0.5.2: resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==} engines: {node: '>= 0.6'} @@ -6533,10 +6281,6 @@ packages: resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} engines: {node: '>= 0.6'} - cookie@0.7.2: - resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} - engines: {node: '>= 0.6'} - copy-anything@2.0.6: resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} @@ -6552,10 +6296,6 @@ packages: core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: '>= 0.10'} - cosmiconfig@7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} @@ -6613,17 +6353,10 @@ packages: current-git-branch@1.1.0: resolution: {integrity: sha512-n5mwGZllLsFzxDPtTmadqGe4IIBPfqPbiIRX4xgFR9VK/Bx47U+94KiVkxSKAKN6/s43TlkztS2GZpgMKzwQ8A==} - custom-event@1.0.1: - resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==} - data-urls@5.0.0: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} - date-format@4.0.14: - resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} - engines: {node: '>=4.0'} - de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} @@ -6643,15 +6376,6 @@ packages: supports-color: optional: true - debug@4.3.7: - resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.4.0: resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} engines: {node: '>=6.0'} @@ -6745,9 +6469,6 @@ packages: detect-node@2.1.0: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - di@0.0.1: - resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==} - diff-sequences@29.6.3: resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -6769,9 +6490,6 @@ packages: dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} - dom-serialize@2.2.1: - resolution: {integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==} - dom-serializer@2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} @@ -6840,14 +6558,6 @@ packages: end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - engine.io-parser@5.2.3: - resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} - engines: {node: '>=10.0.0'} - - engine.io@6.6.2: - resolution: {integrity: sha512-gmNvsYi9C8iErnZdVcJnvCpSKbWTt1E8+JZo8b+daLninywUWi5NQ5STSHZ9rFjFO7imNcvb8Pc5pe/wMR5xEw==} - engines: {node: '>=10.2.0'} - enhanced-resolve@5.17.1: resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} engines: {node: '>=10.13.0'} @@ -6856,10 +6566,6 @@ packages: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} - ent@2.2.1: - resolution: {integrity: sha512-QHuXVeZx9d+tIQAz/XztU0ZwZf2Agg9CcXcgE1rurqvdBeDBrpSwjl8/6XUqMg7tw2Y7uAdKb2sRv+bSEFqQ5A==} - engines: {node: '>= 0.4'} - entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -7216,10 +6922,6 @@ packages: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} - finalhandler@1.1.2: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} - engines: {node: '>= 0.8'} - finalhandler@1.3.1: resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} engines: {node: '>= 0.8'} @@ -7316,10 +7018,6 @@ packages: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} - fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} - fs-minipass@2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} @@ -7386,10 +7084,6 @@ packages: engines: {node: 20 || >=22} hasBin: true - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported - glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} engines: {node: '>=12'} @@ -7482,9 +7176,6 @@ packages: html-entities@2.5.2: resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - html-tags@3.3.1: resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} engines: {node: '>=8'} @@ -7774,10 +7465,6 @@ packages: isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - isbinaryfile@4.0.10: - resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} - engines: {node: '>= 8.0.0'} - isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -7793,26 +7480,10 @@ packages: resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} engines: {node: '>=8'} - istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} - istanbul-lib-instrument@6.0.3: resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} engines: {node: '>=10'} - istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} - - istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} - - istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} - jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} @@ -7820,9 +7491,6 @@ packages: resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} engines: {node: 20 || >=22} - jasmine-core@4.6.1: - resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==} - jasmine-core@5.5.0: resolution: {integrity: sha512-NHOvoPO6o9gVR6pwqEACTEpbgcH+JJ6QDypyymGbSUIFIFsMMbBJ/xsFNud8MSClfnWclXd7RQlAZBz7yVo5TQ==} @@ -7917,34 +7585,9 @@ packages: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} - karma-chrome-launcher@3.2.0: - resolution: {integrity: sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==} - - karma-coverage@2.2.1: - resolution: {integrity: sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A==} - engines: {node: '>=10.0.0'} - - karma-jasmine-html-reporter@2.1.0: - resolution: {integrity: sha512-sPQE1+nlsn6Hwb5t+HHwyy0A1FNCVKuL1192b+XNauMYWThz2kweiBVW1DqloRpVvZIJkIoHVB7XRpK78n1xbQ==} - peerDependencies: - jasmine-core: ^4.0.0 || ^5.0.0 - karma: ^6.0.0 - karma-jasmine: ^5.0.0 - - karma-jasmine@5.1.0: - resolution: {integrity: sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==} - engines: {node: '>=12'} - peerDependencies: - karma: ^6.0.0 - karma-source-map-support@1.4.0: resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==} - karma@6.4.4: - resolution: {integrity: sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==} - engines: {node: '>= 10'} - hasBin: true - keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} @@ -8095,10 +7738,6 @@ packages: resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} engines: {node: '>=18'} - log4js@6.9.1: - resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} - engines: {node: '>=8.0'} - loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true @@ -8147,10 +7786,6 @@ packages: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} - make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - make-fetch-happen@14.0.3: resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==} engines: {node: ^18.17.0 || >=20.5.0} @@ -8225,11 +7860,6 @@ packages: engines: {node: '>=4'} hasBin: true - mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true - mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} @@ -8316,10 +7946,6 @@ packages: resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==} engines: {node: '>= 18'} - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} @@ -8549,10 +8175,6 @@ packages: obuf@1.1.2: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} - engines: {node: '>= 0.8'} - on-finished@2.4.1: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} engines: {node: '>= 0.8'} @@ -8939,17 +8561,10 @@ packages: resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} engines: {node: '>=6'} - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - qjobs@1.2.0: - resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==} - engines: {node: '>=0.9'} - qs@6.13.0: resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} @@ -9126,11 +8741,6 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - rimraf@5.0.10: resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} hasBin: true @@ -9410,17 +9020,6 @@ packages: resolution: {integrity: sha512-tEYNll18pPKHroYSmLLrksq233j021G0giwW7P3D24jC54pQ5W5BXMsQ/Mvw1OJCmEYDgY+lrzT+3nNUtoNfXQ==} engines: {node: '>= 18'} - socket.io-adapter@2.5.5: - resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==} - - socket.io-parser@4.2.4: - resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} - engines: {node: '>=10.0.0'} - - socket.io@4.8.1: - resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==} - engines: {node: '>=10.2.0'} - sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} @@ -9515,10 +9114,6 @@ packages: std-env@3.8.0: resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} - streamroller@3.1.5: - resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==} - engines: {node: '>=8.0'} - string-argv@0.3.2: resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} engines: {node: '>=0.6.19'} @@ -9868,10 +9463,6 @@ packages: engines: {node: '>=14.17'} hasBin: true - ua-parser-js@0.7.39: - resolution: {integrity: sha512-IZ6acm6RhQHNibSt7+c09hhvsKy9WUr4DVbeq9U8o71qxyYtJpQeDxQnMrVqnIFMLcQjHO0I9wgfO2vIahht4w==} - hasBin: true - uc.micro@2.1.0: resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} @@ -10126,10 +9717,6 @@ packages: jsdom: optional: true - void-elements@2.0.1: - resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==} - engines: {node: '>=0.10.0'} - vscode-uri@3.0.8: resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} @@ -10302,18 +9889,6 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - ws@8.18.0: resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} engines: {node: '>=10.0.0'} @@ -10363,18 +9938,10 @@ packages: engines: {node: '>= 14'} hasBin: true - yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} - yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} - yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} @@ -10415,29 +9982,29 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@analogjs/vite-plugin-angular@1.10.1(@angular-devkit/build-angular@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)))(@angular/build@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3))': + '@analogjs/vite-plugin-angular@1.10.1(@angular-devkit/build-angular@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)))(@angular/build@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3))': dependencies: ts-morph: 21.0.1 vfile: 6.0.3 optionalDependencies: - '@angular-devkit/build-angular': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) - '@angular/build': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3) + '@angular-devkit/build-angular': 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) + '@angular/build': 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3) - '@angular-devkit/architect@0.1900.4(chokidar@4.0.1)': + '@angular-devkit/architect@0.1900.6(chokidar@4.0.1)': dependencies: - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) + '@angular-devkit/core': 19.0.6(chokidar@4.0.1) rxjs: 7.8.1 transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))': + '@angular-devkit/build-angular@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - '@angular-devkit/build-webpack': 0.1900.4(chokidar@4.0.1)(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0)) - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) - '@angular/build': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.0)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + '@angular-devkit/architect': 0.1900.6(chokidar@4.0.1) + '@angular-devkit/build-webpack': 0.1900.6(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0)) + '@angular-devkit/core': 19.0.6(chokidar@4.0.1) + '@angular/build': 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.0)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) + '@angular/compiler-cli': 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) '@babel/core': 7.26.0 '@babel/generator': 7.26.2 '@babel/helper-annotate-as-pure': 7.25.9 @@ -10448,8 +10015,8 @@ snapshots: '@babel/preset-env': 7.26.0(@babel/core@7.26.0) '@babel/runtime': 7.26.0 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(sass@1.80.7)(terser@5.36.0)) + '@ngtools/webpack': 19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) ansi-colors: 4.1.3 autoprefixer: 10.4.20(postcss@8.4.49) babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.96.1(esbuild@0.24.0)) @@ -10491,8 +10058,7 @@ snapshots: webpack-subresource-integrity: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) optionalDependencies: esbuild: 0.24.0 - karma: 6.4.4 - ng-packagr: 19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3) + ng-packagr: 19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3) transitivePeerDependencies: - '@angular/compiler' - '@rspack/core' @@ -10512,214 +10078,94 @@ snapshots: - utf-8-validate - vite - webpack-cli + optional: true + + '@angular-devkit/build-webpack@0.1900.6(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0))': + dependencies: + '@angular-devkit/architect': 0.1900.6(chokidar@4.0.1) + rxjs: 7.8.1 + webpack: 5.96.1(esbuild@0.24.0) + webpack-dev-server: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) + transitivePeerDependencies: + - chokidar + optional: true + + '@angular-devkit/core@19.0.6(chokidar@4.0.1)': + dependencies: + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + jsonc-parser: 3.3.1 + picomatch: 4.0.2 + rxjs: 7.8.1 + source-map: 0.7.4 + optionalDependencies: + chokidar: 4.0.1 + + '@angular-devkit/schematics@19.0.6(chokidar@4.0.1)': + dependencies: + '@angular-devkit/core': 19.0.6(chokidar@4.0.1) + jsonc-parser: 3.3.1 + magic-string: 0.30.12 + ora: 5.4.1 + rxjs: 7.8.1 + transitivePeerDependencies: + - chokidar + + '@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))': + dependencies: + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) + tslib: 2.8.1 - '@angular-devkit/build-angular@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(karma@6.4.4)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': + '@angular/build@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.1)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - '@angular-devkit/build-webpack': 0.1900.4(chokidar@4.0.1)(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0)) - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) - '@angular/build': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.0)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + '@angular-devkit/architect': 0.1900.6(chokidar@4.0.1) + '@angular/compiler': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/compiler-cli': 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) '@babel/core': 7.26.0 - '@babel/generator': 7.26.2 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-split-export-declaration': 7.24.7 - '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) - '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/runtime': 7.26.0 - '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) - ansi-colors: 4.1.3 - autoprefixer: 10.4.20(postcss@8.4.49) - babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.96.1(esbuild@0.24.0)) + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0) + '@inquirer/confirm': 5.0.2(@types/node@22.10.1) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.80.7)(terser@5.36.0)) + beasties: 0.1.0 browserslist: 4.24.2 - copy-webpack-plugin: 12.0.2(webpack@5.96.1(esbuild@0.24.0)) - css-loader: 7.1.2(webpack@5.96.1(esbuild@0.24.0)) - esbuild-wasm: 0.24.0 + esbuild: 0.24.0 fast-glob: 3.3.2 - http-proxy-middleware: 3.0.3 + https-proxy-agent: 7.0.5 istanbul-lib-instrument: 6.0.3 - jsonc-parser: 3.3.1 - karma-source-map-support: 1.4.0 - less: 4.2.0 - less-loader: 12.2.0(less@4.2.0)(webpack@5.96.1(esbuild@0.24.0)) - license-webpack-plugin: 4.0.2(webpack@5.96.1(esbuild@0.24.0)) - loader-utils: 3.3.1 - mini-css-extract-plugin: 2.9.2(webpack@5.96.1(esbuild@0.24.0)) - open: 10.1.0 - ora: 5.4.1 + listr2: 8.2.5 + magic-string: 0.30.12 + mrmime: 2.0.0 + parse5-html-rewriting-stream: 7.0.0 picomatch: 4.0.2 piscina: 4.7.0 - postcss: 8.4.49 - postcss-loader: 8.1.1(postcss@8.4.49)(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)) - resolve-url-loader: 5.0.0 - rxjs: 7.8.1 + rollup: 4.26.0 sass: 1.80.7 - sass-loader: 16.0.3(sass@1.80.7)(webpack@5.96.1(esbuild@0.24.0)) semver: 7.6.3 - source-map-loader: 5.0.0(webpack@5.96.1(esbuild@0.24.0)) - source-map-support: 0.5.21 - terser: 5.36.0 - tree-kill: 1.2.2 - tslib: 2.8.1 typescript: 5.6.3 - webpack: 5.96.1(esbuild@0.24.0) - webpack-dev-middleware: 7.4.2(webpack@5.96.1(esbuild@0.24.0)) - webpack-dev-server: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) - webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) + vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.80.7)(terser@5.36.0) + watchpack: 2.4.2 optionalDependencies: - esbuild: 0.24.0 - karma: 6.4.4 - ng-packagr: 19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3) - transitivePeerDependencies: - - '@angular/compiler' - - '@rspack/core' - - '@swc/core' - - '@types/node' - - bufferutil - - chokidar - - debug - - html-webpack-plugin - - lightningcss - - node-sass - - sass-embedded - - stylus - - sugarss - - supports-color - - uglify-js - - utf-8-validate - - vite - - webpack-cli - - '@angular-devkit/build-angular@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3))(typescript@5.6.3)(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': - dependencies: - '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - '@angular-devkit/build-webpack': 0.1900.4(chokidar@4.0.1)(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0)) - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) - '@angular/build': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.0)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3) - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) - '@babel/core': 7.26.0 - '@babel/generator': 7.26.2 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) - '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/runtime': 7.26.0 - '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)) - '@vitejs/plugin-basic-ssl': 1.1.0(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) - ansi-colors: 4.1.3 - autoprefixer: 10.4.20(postcss@8.4.49) - babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.96.1(esbuild@0.24.0)) - browserslist: 4.24.2 - copy-webpack-plugin: 12.0.2(webpack@5.96.1(esbuild@0.24.0)) - css-loader: 7.1.2(webpack@5.96.1(esbuild@0.24.0)) - esbuild-wasm: 0.24.0 - fast-glob: 3.3.2 - http-proxy-middleware: 3.0.3 - istanbul-lib-instrument: 6.0.3 - jsonc-parser: 3.3.1 - karma-source-map-support: 1.4.0 - less: 4.2.0 - less-loader: 12.2.0(less@4.2.0)(webpack@5.96.1(esbuild@0.24.0)) - license-webpack-plugin: 4.0.2(webpack@5.96.1(esbuild@0.24.0)) - loader-utils: 3.3.1 - mini-css-extract-plugin: 2.9.2(webpack@5.96.1(esbuild@0.24.0)) - open: 10.1.0 - ora: 5.4.1 - picomatch: 4.0.2 - piscina: 4.7.0 + less: 4.2.1 + lmdb: 3.1.5 postcss: 8.4.49 - postcss-loader: 8.1.1(postcss@8.4.49)(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)) - resolve-url-loader: 5.0.0 - rxjs: 7.8.1 - sass: 1.80.7 - sass-loader: 16.0.3(sass@1.80.7)(webpack@5.96.1(esbuild@0.24.0)) - semver: 7.6.3 - source-map-loader: 5.0.0(webpack@5.96.1(esbuild@0.24.0)) - source-map-support: 0.5.21 - terser: 5.36.0 - tree-kill: 1.2.2 - tslib: 2.8.1 - typescript: 5.6.3 - webpack: 5.96.1(esbuild@0.24.0) - webpack-dev-middleware: 7.4.2(webpack@5.96.1(esbuild@0.24.0)) - webpack-dev-server: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) - webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) - optionalDependencies: - esbuild: 0.24.0 - ng-packagr: 19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3) transitivePeerDependencies: - - '@angular/compiler' - - '@rspack/core' - - '@swc/core' - '@types/node' - - bufferutil - chokidar - - debug - - html-webpack-plugin - lightningcss - - node-sass - sass-embedded - stylus - sugarss - supports-color - - uglify-js - - utf-8-validate - - vite - - webpack-cli - optional: true - - '@angular-devkit/build-webpack@0.1900.4(chokidar@4.0.1)(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0))': - dependencies: - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - rxjs: 7.8.1 - webpack: 5.96.1(esbuild@0.24.0) - webpack-dev-server: 5.1.0(webpack@5.96.1(esbuild@0.24.0)) - transitivePeerDependencies: - - chokidar - - '@angular-devkit/core@19.0.4(chokidar@4.0.1)': - dependencies: - ajv: 8.17.1 - ajv-formats: 3.0.1(ajv@8.17.1) - jsonc-parser: 3.3.1 - picomatch: 4.0.2 - rxjs: 7.8.1 - source-map: 0.7.4 - optionalDependencies: - chokidar: 4.0.1 - - '@angular-devkit/schematics@19.0.4(chokidar@4.0.1)': - dependencies: - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) - jsonc-parser: 3.3.1 - magic-string: 0.30.12 - ora: 5.4.1 - rxjs: 7.8.1 - transitivePeerDependencies: - - chokidar - - '@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))': - dependencies: - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) - tslib: 2.8.1 + - terser - '@angular/build@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(chokidar@4.0.1)(less@4.2.0)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3)': + '@angular/build@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.0)(postcss@8.4.49)(terser@5.36.0)(typescript@5.6.3)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + '@angular-devkit/architect': 0.1900.6(chokidar@4.0.1) + '@angular/compiler': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/compiler-cli': 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-split-export-declaration': 7.24.7 @@ -10757,13 +10203,14 @@ snapshots: - sugarss - supports-color - terser + optional: true - '@angular/build@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3)': + '@angular/build@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@22.10.1)(less@4.2.1)(terser@5.36.0)(typescript@5.6.3)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + '@angular-devkit/architect': 0.1900.6(chokidar@4.0.1) + '@angular/compiler': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/compiler-cli': 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-split-export-declaration': 7.24.7 @@ -10802,14 +10249,14 @@ snapshots: - terser optional: true - '@angular/cli@19.0.4(@types/node@22.10.1)(chokidar@4.0.1)': + '@angular/cli@19.0.6(@types/node@22.10.1)(chokidar@4.0.1)': dependencies: - '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1) - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) - '@angular-devkit/schematics': 19.0.4(chokidar@4.0.1) + '@angular-devkit/architect': 0.1900.6(chokidar@4.0.1) + '@angular-devkit/core': 19.0.6(chokidar@4.0.1) + '@angular-devkit/schematics': 19.0.6(chokidar@4.0.1) '@inquirer/prompts': 7.1.0(@types/node@22.10.1) '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.1.0(@types/node@22.10.1)) - '@schematics/angular': 19.0.4(chokidar@4.0.1) + '@schematics/angular': 19.0.6(chokidar@4.0.1) '@yarnpkg/lockfile': 1.1.0 ini: 5.0.0 jsonc-parser: 3.3.1 @@ -10827,15 +10274,15 @@ snapshots: - chokidar - supports-color - '@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)': + '@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)': dependencies: - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) rxjs: 7.8.1 tslib: 2.8.1 - '@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3)': + '@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3)': dependencies: - '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/compiler': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) '@babel/core': 7.26.0 '@jridgewell/sourcemap-codec': 1.5.0 chokidar: 4.0.1 @@ -10848,47 +10295,47 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))': + '@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))': dependencies: tslib: 2.8.1 optionalDependencies: - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) - '@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)': + '@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)': dependencies: rxjs: 7.8.1 tslib: 2.8.1 zone.js: 0.15.0 - '@angular/forms@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)': + '@angular/forms@19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)': dependencies: - '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) - '@angular/platform-browser': 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/common': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/platform-browser': 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) rxjs: 7.8.1 tslib: 2.8.1 - '@angular/platform-browser-dynamic@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))': + '@angular/platform-browser-dynamic@19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))': dependencies: - '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) - '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) - '@angular/platform-browser': 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/common': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + '@angular/compiler': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/platform-browser': 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) tslib: 2.8.1 - '@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))': + '@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))': dependencies: - '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/common': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) tslib: 2.8.1 optionalDependencies: - '@angular/animations': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/animations': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) - '@angular/router@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)': + '@angular/router@19.0.5(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)': dependencies: - '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) - '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.15.0) - '@angular/platform-browser': 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)) + '@angular/common': 19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1) + '@angular/core': 19.0.5(rxjs@7.8.1)(zone.js@0.15.0) + '@angular/platform-browser': 19.0.5(@angular/animations@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)) rxjs: 7.8.1 tslib: 2.8.1 @@ -10904,7 +10351,7 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.2 + '@babel/generator': 7.26.3 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helpers': 7.26.0 @@ -10927,6 +10374,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 + optional: true '@babel/generator@7.26.3': dependencies: @@ -10967,6 +10415,7 @@ snapshots: '@babel/helper-annotate-as-pure': 7.25.9 regexpu-core: 6.2.0 semver: 6.3.1 + optional: true '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)': dependencies: @@ -10978,6 +10427,7 @@ snapshots: resolve: 1.22.8 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-member-expression-to-functions@7.25.9': dependencies: @@ -11020,6 +10470,7 @@ snapshots: '@babel/traverse': 7.26.4 transitivePeerDependencies: - supports-color + optional: true '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11054,6 +10505,7 @@ snapshots: '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color + optional: true '@babel/helpers@7.26.0': dependencies: @@ -11071,16 +10523,19 @@ snapshots: '@babel/traverse': 7.26.4 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11090,6 +10545,7 @@ snapshots: '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11098,15 +10554,18 @@ snapshots: '@babel/traverse': 7.26.4 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 + optional: true '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)': dependencies: @@ -11128,11 +10587,13 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11142,6 +10603,7 @@ snapshots: '@babel/traverse': 7.26.4 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11151,16 +10613,19 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11169,6 +10634,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)': dependencies: @@ -11177,6 +10643,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11189,49 +10656,58 @@ snapshots: globals: 11.12.0 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 '@babel/template': 7.25.9 + optional: true '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11240,6 +10716,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11249,26 +10726,31 @@ snapshots: '@babel/traverse': 7.26.4 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11277,6 +10759,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)': dependencies: @@ -11285,6 +10768,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11295,6 +10779,7 @@ snapshots: '@babel/traverse': 7.26.4 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11303,27 +10788,32 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11331,6 +10821,7 @@ snapshots: '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) + optional: true '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11339,11 +10830,13 @@ snapshots: '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11352,11 +10845,13 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11365,6 +10860,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11374,11 +10870,13 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11395,17 +10893,20 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 regenerator-transform: 0.15.2 + optional: true '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11418,11 +10919,13 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11431,21 +10934,25 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color + optional: true '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)': dependencies: @@ -11462,24 +10969,28 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + optional: true '@babel/preset-env@7.26.0(@babel/core@7.26.0)': dependencies: @@ -11555,6 +11066,7 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)': dependencies: @@ -11562,6 +11074,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 '@babel/types': 7.26.3 esutils: 2.0.3 + optional: true '@babel/runtime@7.26.0': dependencies: @@ -11595,8 +11108,6 @@ snapshots: csstype: 3.1.3 vite: 6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) - '@colors/colors@1.5.0': {} - '@commitlint/parse@19.5.0': dependencies: '@commitlint/types': 19.5.0 @@ -11608,7 +11119,8 @@ snapshots: '@types/conventional-commits-parser': 5.0.1 chalk: 5.3.0 - '@discoveryjs/json-ext@0.6.3': {} + '@discoveryjs/json-ext@0.6.3': + optional: true '@dnd-kit/accessibility@3.1.1(react@19.0.0)': dependencies: @@ -12271,6 +11783,7 @@ snapshots: dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 + optional: true '@jridgewell/sourcemap-codec@1.5.0': {} @@ -12282,6 +11795,7 @@ snapshots: '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@jsonjoy.com/json-pack@1.1.0(tslib@2.8.1)': dependencies: @@ -12290,10 +11804,12 @@ snapshots: hyperdyperid: 1.2.0 thingies: 1.21.0(tslib@2.8.1) tslib: 2.8.1 + optional: true '@jsonjoy.com/util@1.5.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 + optional: true '@kwsites/file-exists@1.1.1': dependencies: @@ -12303,7 +11819,8 @@ snapshots: '@kwsites/promise-deferred@1.1.1': {} - '@leichtgewicht/ip-codec@2.0.5': {} + '@leichtgewicht/ip-codec@2.0.5': + optional: true '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.1.0(@types/node@22.10.1))': dependencies: @@ -12546,11 +12063,12 @@ snapshots: '@emnapi/runtime': 1.3.1 '@tybys/wasm-util': 0.9.0 - '@ngtools/webpack@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0))': + '@ngtools/webpack@19.0.6(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0))': dependencies: - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + '@angular/compiler-cli': 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) typescript: 5.6.3 webpack: 5.96.1(esbuild@0.24.0) + optional: true '@nodelib/fs.scandir@2.1.5': dependencies: @@ -12899,10 +12417,10 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@schematics/angular@19.0.4(chokidar@4.0.1)': + '@schematics/angular@19.0.6(chokidar@4.0.1)': dependencies: - '@angular-devkit/core': 19.0.4(chokidar@4.0.1) - '@angular-devkit/schematics': 19.0.4(chokidar@4.0.1) + '@angular-devkit/core': 19.0.6(chokidar@4.0.1) + '@angular-devkit/schematics': 19.0.6(chokidar@4.0.1) jsonc-parser: 3.3.1 transitivePeerDependencies: - chokidar @@ -12953,7 +12471,8 @@ snapshots: '@sinclair/typebox@0.27.8': {} - '@sindresorhus/merge-streams@2.3.0': {} + '@sindresorhus/merge-streams@2.3.0': + optional: true '@size-limit/esbuild@11.1.6(size-limit@11.1.6)': dependencies: @@ -12977,8 +12496,6 @@ snapshots: ignore: 5.3.2 p-map: 4.0.0 - '@socket.io/component-emitter@3.1.2': {} - '@solid-primitives/scheduled@1.4.4(solid-js@1.9.3)': dependencies: solid-js: 1.9.3 @@ -13251,39 +12768,39 @@ snapshots: dependencies: '@types/connect': 3.4.38 '@types/node': 22.10.1 + optional: true '@types/bonjour@3.5.13': dependencies: '@types/node': 22.10.1 + optional: true '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 5.0.2 '@types/node': 22.10.1 + optional: true '@types/connect@3.4.38': dependencies: '@types/node': 22.10.1 + optional: true '@types/conventional-commits-parser@5.0.1': dependencies: '@types/node': 22.10.1 - '@types/cookie@0.4.1': {} - - '@types/cors@2.8.17': - dependencies: - '@types/node': 22.10.1 - '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 9.6.1 '@types/estree': 1.0.6 + optional: true '@types/eslint@9.6.1': dependencies: '@types/estree': 1.0.6 '@types/json-schema': 7.0.15 + optional: true '@types/estree@1.0.6': {} @@ -13293,6 +12810,7 @@ snapshots: '@types/qs': 6.9.17 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 + optional: true '@types/express-serve-static-core@5.0.2': dependencies: @@ -13300,6 +12818,7 @@ snapshots: '@types/qs': 6.9.17 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 + optional: true '@types/express@4.17.21': dependencies: @@ -13307,26 +12826,31 @@ snapshots: '@types/express-serve-static-core': 4.19.6 '@types/qs': 6.9.17 '@types/serve-static': 1.15.7 + optional: true '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 - '@types/http-errors@2.0.4': {} + '@types/http-errors@2.0.4': + optional: true '@types/http-proxy@1.17.15': dependencies: '@types/node': 22.10.1 + optional: true '@types/jasmine@5.1.5': {} '@types/json-schema@7.0.15': {} - '@types/mime@1.3.5': {} + '@types/mime@1.3.5': + optional: true '@types/node-forge@1.3.11': dependencies: '@types/node': 22.10.1 + optional: true '@types/node@22.10.1': dependencies: @@ -13336,9 +12860,11 @@ snapshots: '@types/prop-types@15.7.14': {} - '@types/qs@6.9.17': {} + '@types/qs@6.9.17': + optional: true - '@types/range-parser@1.2.7': {} + '@types/range-parser@1.2.7': + optional: true '@types/react-dom@19.0.1': dependencies: @@ -13352,26 +12878,31 @@ snapshots: dependencies: csstype: 3.1.3 - '@types/retry@0.12.2': {} + '@types/retry@0.12.2': + optional: true '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 '@types/node': 22.10.1 + optional: true '@types/serve-index@1.9.4': dependencies: '@types/express': 4.17.21 + optional: true '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 '@types/node': 22.10.1 '@types/send': 0.17.4 + optional: true '@types/sockjs@0.3.36': dependencies: '@types/node': 22.10.1 + optional: true '@types/trusted-types@2.0.7': {} @@ -13380,6 +12911,7 @@ snapshots: '@types/ws@8.5.13': dependencies: '@types/node': 22.10.1 + optional: true '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.6.3))(eslint@9.16.0(jiti@2.4.1))(typescript@5.6.3)': dependencies: @@ -13466,15 +12998,16 @@ snapshots: '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(sass@1.80.7)(terser@5.36.0))': dependencies: vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(sass@1.80.7)(terser@5.36.0) + optional: true '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.80.7)(terser@5.36.0))': dependencies: vite: 5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.80.7)(terser@5.36.0) - optional: true '@vitejs/plugin-basic-ssl@1.1.0(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': dependencies: vite: 6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) + optional: true '@vitejs/plugin-react@4.3.4(vite@6.0.3(@types/node@22.10.1)(jiti@2.4.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': dependencies: @@ -13684,20 +13217,26 @@ snapshots: dependencies: '@webassemblyjs/helper-numbers': 1.13.2 '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + optional: true - '@webassemblyjs/floating-point-hex-parser@1.13.2': {} + '@webassemblyjs/floating-point-hex-parser@1.13.2': + optional: true - '@webassemblyjs/helper-api-error@1.13.2': {} + '@webassemblyjs/helper-api-error@1.13.2': + optional: true - '@webassemblyjs/helper-buffer@1.14.1': {} + '@webassemblyjs/helper-buffer@1.14.1': + optional: true '@webassemblyjs/helper-numbers@1.13.2': dependencies: '@webassemblyjs/floating-point-hex-parser': 1.13.2 '@webassemblyjs/helper-api-error': 1.13.2 '@xtuc/long': 4.2.2 + optional: true - '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} + '@webassemblyjs/helper-wasm-bytecode@1.13.2': + optional: true '@webassemblyjs/helper-wasm-section@1.14.1': dependencies: @@ -13705,16 +13244,20 @@ snapshots: '@webassemblyjs/helper-buffer': 1.14.1 '@webassemblyjs/helper-wasm-bytecode': 1.13.2 '@webassemblyjs/wasm-gen': 1.14.1 + optional: true '@webassemblyjs/ieee754@1.13.2': dependencies: '@xtuc/ieee754': 1.2.0 + optional: true '@webassemblyjs/leb128@1.13.2': dependencies: '@xtuc/long': 4.2.2 + optional: true - '@webassemblyjs/utf8@1.13.2': {} + '@webassemblyjs/utf8@1.13.2': + optional: true '@webassemblyjs/wasm-edit@1.14.1': dependencies: @@ -13726,6 +13269,7 @@ snapshots: '@webassemblyjs/wasm-opt': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 '@webassemblyjs/wast-printer': 1.14.1 + optional: true '@webassemblyjs/wasm-gen@1.14.1': dependencies: @@ -13734,6 +13278,7 @@ snapshots: '@webassemblyjs/ieee754': 1.13.2 '@webassemblyjs/leb128': 1.13.2 '@webassemblyjs/utf8': 1.13.2 + optional: true '@webassemblyjs/wasm-opt@1.14.1': dependencies: @@ -13741,6 +13286,7 @@ snapshots: '@webassemblyjs/helper-buffer': 1.14.1 '@webassemblyjs/wasm-gen': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 + optional: true '@webassemblyjs/wasm-parser@1.14.1': dependencies: @@ -13750,15 +13296,19 @@ snapshots: '@webassemblyjs/ieee754': 1.13.2 '@webassemblyjs/leb128': 1.13.2 '@webassemblyjs/utf8': 1.13.2 + optional: true '@webassemblyjs/wast-printer@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 '@xtuc/long': 4.2.2 + optional: true - '@xtuc/ieee754@1.2.0': {} + '@xtuc/ieee754@1.2.0': + optional: true - '@xtuc/long@4.2.2': {} + '@xtuc/long@4.2.2': + optional: true '@yarnpkg/lockfile@1.1.0': {} @@ -13799,6 +13349,7 @@ snapshots: dependencies: loader-utils: 2.0.4 regex-parser: 2.3.0 + optional: true agent-base@7.1.1: dependencies: @@ -13818,6 +13369,7 @@ snapshots: ajv-formats@2.1.1(ajv@8.17.1): optionalDependencies: ajv: 8.17.1 + optional: true ajv-formats@3.0.1(ajv@8.13.0): optionalDependencies: @@ -13830,11 +13382,13 @@ snapshots: ajv-keywords@3.5.2(ajv@6.12.6): dependencies: ajv: 6.12.6 + optional: true ajv-keywords@5.1.0(ajv@8.17.1): dependencies: ajv: 8.17.1 fast-deep-equal: 3.1.3 + optional: true ajv@6.12.6: dependencies: @@ -13880,7 +13434,8 @@ snapshots: dependencies: environment: 1.1.0 - ansi-html-community@0.0.8: {} + ansi-html-community@0.0.8: + optional: true ansi-regex@5.0.1: {} @@ -13917,7 +13472,8 @@ snapshots: array-each@1.0.1: {} - array-flatten@1.1.1: {} + array-flatten@1.1.1: + optional: true array-ify@1.0.0: {} @@ -13936,6 +13492,7 @@ snapshots: picocolors: 1.1.1 postcss: 8.4.49 postcss-value-parser: 4.2.0 + optional: true axios@1.7.9: dependencies: @@ -13962,6 +13519,7 @@ snapshots: find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.96.1(esbuild@0.24.0) + optional: true babel-plugin-add-module-exports@0.2.1: {} @@ -13989,6 +13547,7 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + optional: true babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0): dependencies: @@ -13997,6 +13556,7 @@ snapshots: core-js-compat: 3.39.0 transitivePeerDependencies: - supports-color + optional: true babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): dependencies: @@ -14004,6 +13564,7 @@ snapshots: '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) transitivePeerDependencies: - supports-color + optional: true babel-preset-solid@1.9.3(@babel/core@7.26.0): dependencies: @@ -14014,9 +13575,8 @@ snapshots: base64-js@1.5.1: {} - base64id@2.0.0: {} - - batch@0.6.1: {} + batch@0.6.1: + optional: true beasties@0.1.0: dependencies: @@ -14029,7 +13589,8 @@ snapshots: postcss: 8.4.49 postcss-media-query-parser: 0.2.3 - big.js@5.2.2: {} + big.js@5.2.2: + optional: true binary-extensions@2.3.0: {} @@ -14057,11 +13618,13 @@ snapshots: unpipe: 1.0.0 transitivePeerDependencies: - supports-color + optional: true bonjour-service@1.3.0: dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 + optional: true boolbase@1.0.0: {} @@ -14096,7 +13659,8 @@ snapshots: node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.2) - buffer-from@1.1.2: {} + buffer-from@1.1.2: + optional: true buffer@5.7.1: dependencies: @@ -14106,12 +13670,14 @@ snapshots: bundle-name@4.1.0: dependencies: run-applescript: 7.0.0 + optional: true bytes-iec@3.1.1: {} bytes@3.0.0: {} - bytes@3.1.2: {} + bytes@3.1.2: + optional: true cac@6.7.14: {} @@ -14134,6 +13700,7 @@ snapshots: dependencies: es-errors: 1.3.0 function-bind: 1.1.2 + optional: true call-bind@1.0.8: dependencies: @@ -14141,6 +13708,7 @@ snapshots: es-define-property: 1.0.1 get-intrinsic: 1.2.5 set-function-length: 1.2.2 + optional: true callsites@3.1.0: {} @@ -14198,7 +13766,8 @@ snapshots: chownr@3.0.0: {} - chrome-trace-event@1.0.4: {} + chrome-trace-event@1.0.4: + optional: true clean-stack@2.2.0: {} @@ -14229,12 +13798,6 @@ snapshots: execa: 5.1.1 is-wsl: 2.2.0 - cliui@7.0.4: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - cliui@8.0.1: dependencies: string-width: 4.2.3 @@ -14246,6 +13809,7 @@ snapshots: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 + optional: true clone@1.0.4: {} @@ -14267,11 +13831,13 @@ snapshots: commander@12.1.0: {} - commander@2.20.3: {} + commander@2.20.3: + optional: true commander@4.1.1: {} - common-path-prefix@3.0.0: {} + common-path-prefix@3.0.0: + optional: true commondir@1.0.1: {} @@ -14309,6 +13875,7 @@ snapshots: vary: 1.1.2 transitivePeerDependencies: - supports-color + optional: true computeds@0.0.1: {} @@ -14316,24 +13883,18 @@ snapshots: confbox@0.1.8: {} - connect-history-api-fallback@2.0.0: {} - - connect@3.7.0: - dependencies: - debug: 2.6.9 - finalhandler: 1.1.2 - parseurl: 1.3.3 - utils-merge: 1.0.1 - transitivePeerDependencies: - - supports-color + connect-history-api-fallback@2.0.0: + optional: true content-disposition@0.5.2: {} content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 + optional: true - content-type@1.0.5: {} + content-type@1.0.5: + optional: true conventional-changelog-angular@7.0.0: dependencies: @@ -14350,11 +13911,11 @@ snapshots: convert-source-map@2.0.0: {} - cookie-signature@1.0.6: {} - - cookie@0.7.1: {} + cookie-signature@1.0.6: + optional: true - cookie@0.7.2: {} + cookie@0.7.1: + optional: true copy-anything@2.0.6: dependencies: @@ -14369,17 +13930,15 @@ snapshots: schema-utils: 4.2.0 serialize-javascript: 6.0.2 webpack: 5.96.1(esbuild@0.24.0) + optional: true core-js-compat@3.39.0: dependencies: browserslist: 4.24.2 + optional: true - core-util-is@1.0.3: {} - - cors@2.8.5: - dependencies: - object-assign: 4.1.1 - vary: 1.1.2 + core-util-is@1.0.3: + optional: true cosmiconfig@7.1.0: dependencies: @@ -14397,6 +13956,7 @@ snapshots: parse-json: 5.2.0 optionalDependencies: typescript: 5.6.3 + optional: true cross-spawn@5.1.0: dependencies: @@ -14422,6 +13982,7 @@ snapshots: semver: 7.6.3 optionalDependencies: webpack: 5.96.1(esbuild@0.24.0) + optional: true css-select@5.1.0: dependencies: @@ -14449,15 +14010,11 @@ snapshots: execa: 0.6.3 is-git-repository: 1.1.1 - custom-event@1.0.1: {} - data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 whatwg-url: 14.1.0 - date-format@4.0.14: {} - de-indent@1.0.2: {} debug@2.6.9: @@ -14468,10 +14025,6 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.3.7: - dependencies: - ms: 2.1.3 - debug@4.4.0: dependencies: ms: 2.1.3 @@ -14488,12 +14041,14 @@ snapshots: deepmerge@4.3.1: {} - default-browser-id@5.0.0: {} + default-browser-id@5.0.0: + optional: true default-browser@5.2.1: dependencies: bundle-name: 4.1.0 default-browser-id: 5.0.0 + optional: true defaults@1.0.4: dependencies: @@ -14504,22 +14059,27 @@ snapshots: es-define-property: 1.0.1 es-errors: 1.3.0 gopd: 1.2.0 + optional: true define-lazy-prop@2.0.0: {} - define-lazy-prop@3.0.0: {} + define-lazy-prop@3.0.0: + optional: true delayed-stream@1.0.0: {} - depd@1.1.2: {} + depd@1.1.2: + optional: true - depd@2.0.0: {} + depd@2.0.0: + optional: true dependency-graph@1.0.0: {} dequal@2.0.3: {} - destroy@1.2.0: {} + destroy@1.2.0: + optional: true detect-file@1.0.0: {} @@ -14529,15 +14089,15 @@ snapshots: detect-libc@2.0.3: optional: true - detect-node@2.1.0: {} - - di@0.0.1: {} + detect-node@2.1.0: + optional: true diff-sequences@29.6.3: {} dns-packet@5.6.1: dependencies: '@leichtgewicht/ip-codec': 2.0.5 + optional: true doctrine@3.0.0: dependencies: @@ -14552,13 +14112,6 @@ snapshots: '@babel/runtime': 7.26.0 csstype: 3.1.3 - dom-serialize@2.2.1: - dependencies: - custom-event: 1.0.1 - ent: 2.2.1 - extend: 3.0.2 - void-elements: 2.0.1 - dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 @@ -14592,6 +14145,7 @@ snapshots: call-bind-apply-helpers: 1.0.0 es-errors: 1.3.0 gopd: 1.2.0 + optional: true eastasianwidth@0.2.0: {} @@ -14601,7 +14155,8 @@ snapshots: optionalDependencies: wcwidth: 1.0.1 - ee-first@1.1.1: {} + ee-first@1.1.1: + optional: true electron-to-chromium@1.5.71: {} @@ -14611,11 +14166,14 @@ snapshots: emoji-regex@9.2.2: {} - emojis-list@3.0.0: {} + emojis-list@3.0.0: + optional: true - encodeurl@1.0.2: {} + encodeurl@1.0.2: + optional: true - encodeurl@2.0.0: {} + encodeurl@2.0.0: + optional: true encoding@0.1.13: dependencies: @@ -14626,25 +14184,6 @@ snapshots: dependencies: once: 1.4.0 - engine.io-parser@5.2.3: {} - - engine.io@6.6.2: - dependencies: - '@types/cookie': 0.4.1 - '@types/cors': 2.8.17 - '@types/node': 22.10.1 - accepts: 1.3.8 - base64id: 2.0.0 - cookie: 0.7.2 - cors: 2.8.5 - debug: 4.3.7 - engine.io-parser: 5.2.3 - ws: 8.17.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - enhanced-resolve@5.17.1: dependencies: graceful-fs: 4.2.11 @@ -14654,10 +14193,6 @@ snapshots: dependencies: ansi-colors: 4.1.3 - ent@2.2.1: - dependencies: - punycode: 1.4.1 - entities@4.5.0: {} env-paths@2.2.1: {} @@ -14675,9 +14210,11 @@ snapshots: dependencies: is-arrayish: 0.2.1 - es-define-property@1.0.1: {} + es-define-property@1.0.1: + optional: true - es-errors@1.3.0: {} + es-errors@1.3.0: + optional: true es-module-lexer@1.5.4: {} @@ -14688,7 +14225,8 @@ snapshots: transitivePeerDependencies: - supports-color - esbuild-wasm@0.24.0: {} + esbuild-wasm@0.24.0: + optional: true esbuild@0.21.5: optionalDependencies: @@ -14772,7 +14310,8 @@ snapshots: escalade@3.2.0: {} - escape-html@1.0.3: {} + escape-html@1.0.3: + optional: true escape-string-regexp@1.0.5: {} @@ -14997,6 +14536,7 @@ snapshots: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 + optional: true eslint-scope@7.2.2: dependencies: @@ -15082,7 +14622,8 @@ snapshots: dependencies: estraverse: 5.3.0 - estraverse@4.3.0: {} + estraverse@4.3.0: + optional: true estraverse@5.3.0: {} @@ -15094,13 +14635,16 @@ snapshots: esutils@2.0.3: {} - etag@1.8.1: {} + etag@1.8.1: + optional: true - eventemitter3@4.0.7: {} + eventemitter3@4.0.7: + optional: true eventemitter3@5.0.1: {} - events@3.3.0: {} + events@3.3.0: + optional: true execa@0.6.3: dependencies: @@ -15167,6 +14711,7 @@ snapshots: vary: 1.1.2 transitivePeerDependencies: - supports-color + optional: true extend@3.0.2: {} @@ -15199,6 +14744,7 @@ snapshots: faye-websocket@0.11.4: dependencies: websocket-driver: 0.7.4 + optional: true fdir@6.4.2(picomatch@4.0.2): optionalDependencies: @@ -15218,18 +14764,6 @@ snapshots: dependencies: to-regex-range: 5.0.1 - finalhandler@1.1.2: - dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.3.0 - parseurl: 1.3.3 - statuses: 1.5.0 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - finalhandler@1.3.1: dependencies: debug: 2.6.9 @@ -15241,6 +14775,7 @@ snapshots: unpipe: 1.0.0 transitivePeerDependencies: - supports-color + optional: true find-cache-dir@3.3.2: dependencies: @@ -15252,6 +14787,7 @@ snapshots: dependencies: common-path-prefix: 3.0.0 pkg-dir: 7.0.0 + optional: true find-root@1.1.0: {} @@ -15269,6 +14805,7 @@ snapshots: dependencies: locate-path: 7.2.0 path-exists: 5.0.0 + optional: true findup-sync@5.0.0: dependencies: @@ -15317,11 +14854,14 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 - forwarded@0.2.0: {} + forwarded@0.2.0: + optional: true - fraction.js@4.3.7: {} + fraction.js@4.3.7: + optional: true - fresh@0.5.2: {} + fresh@0.5.2: + optional: true front-matter@4.0.2: dependencies: @@ -15335,12 +14875,6 @@ snapshots: jsonfile: 4.0.0 universalify: 0.1.2 - fs-extra@8.1.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - fs-minipass@2.1.0: dependencies: minipass: 3.3.6 @@ -15372,6 +14906,7 @@ snapshots: gopd: 1.2.0 has-symbols: 1.1.0 hasown: 2.0.2 + optional: true get-stream@3.0.0: {} @@ -15409,15 +14944,6 @@ snapshots: package-json-from-dist: 1.0.1 path-scurry: 2.0.0 - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@8.1.0: dependencies: fs.realpath: 1.0.0 @@ -15458,24 +14984,29 @@ snapshots: path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 + optional: true globrex@0.1.2: {} - gopd@1.2.0: {} + gopd@1.2.0: + optional: true graceful-fs@4.2.11: {} graphemer@1.4.0: {} - handle-thing@2.0.1: {} + handle-thing@2.0.1: + optional: true has-flag@4.0.0: {} has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.1 + optional: true - has-symbols@1.1.0: {} + has-symbols@1.1.0: + optional: true hasown@2.0.2: dependencies: @@ -15501,6 +15032,7 @@ snapshots: obuf: 1.1.2 readable-stream: 2.3.8 wbuf: 1.7.3 + optional: true html-encoding-sniffer@4.0.0: dependencies: @@ -15508,9 +15040,8 @@ snapshots: html-entities@2.3.3: {} - html-entities@2.5.2: {} - - html-escaper@2.0.2: {} + html-entities@2.5.2: + optional: true html-tags@3.3.1: {} @@ -15523,7 +15054,8 @@ snapshots: http-cache-semantics@4.1.1: {} - http-deceiver@1.2.7: {} + http-deceiver@1.2.7: + optional: true http-errors@1.6.3: dependencies: @@ -15531,6 +15063,7 @@ snapshots: inherits: 2.0.3 setprototypeof: 1.1.0 statuses: 1.5.0 + optional: true http-errors@2.0.0: dependencies: @@ -15539,8 +15072,10 @@ snapshots: setprototypeof: 1.2.0 statuses: 2.0.1 toidentifier: 1.0.1 + optional: true - http-parser-js@0.5.8: {} + http-parser-js@0.5.8: + optional: true http-proxy-agent@7.0.2: dependencies: @@ -15560,6 +15095,7 @@ snapshots: '@types/express': 4.17.21 transitivePeerDependencies: - debug + optional: true http-proxy-middleware@3.0.3: dependencies: @@ -15571,6 +15107,7 @@ snapshots: micromatch: 4.0.8 transitivePeerDependencies: - supports-color + optional: true http-proxy@1.18.1(debug@4.4.0): dependencies: @@ -15579,6 +15116,7 @@ snapshots: requires-port: 1.0.0 transitivePeerDependencies: - debug + optional: true https-proxy-agent@7.0.5: dependencies: @@ -15589,7 +15127,8 @@ snapshots: human-signals@2.1.0: {} - hyperdyperid@1.2.0: {} + hyperdyperid@1.2.0: + optional: true iconv-lite@0.4.24: dependencies: @@ -15602,6 +15141,7 @@ snapshots: icss-utils@5.1.0(postcss@8.4.49): dependencies: postcss: 8.4.49 + optional: true ieee754@1.2.1: {} @@ -15636,7 +15176,8 @@ snapshots: once: 1.4.0 wrappy: 1.0.2 - inherits@2.0.3: {} + inherits@2.0.3: + optional: true inherits@2.0.4: {} @@ -15655,9 +15196,11 @@ snapshots: jsbn: 1.1.0 sprintf-js: 1.1.3 - ipaddr.js@1.9.1: {} + ipaddr.js@1.9.1: + optional: true - ipaddr.js@2.2.0: {} + ipaddr.js@2.2.0: + optional: true is-absolute@1.0.0: dependencies: @@ -15676,7 +15219,8 @@ snapshots: is-docker@2.2.1: {} - is-docker@3.0.0: {} + is-docker@3.0.0: + optional: true is-extglob@2.1.1: {} @@ -15710,20 +15254,24 @@ snapshots: is-inside-container@1.0.0: dependencies: is-docker: 3.0.0 + optional: true is-interactive@1.0.0: {} - is-network-error@1.1.0: {} + is-network-error@1.1.0: + optional: true is-number@7.0.0: {} is-obj@2.0.0: {} - is-plain-obj@3.0.0: {} + is-plain-obj@3.0.0: + optional: true is-plain-object@2.0.4: dependencies: isobject: 3.0.1 + optional: true is-plain-object@5.0.0: {} @@ -15766,10 +15314,10 @@ snapshots: is-wsl@3.1.0: dependencies: is-inside-container: 1.0.0 + optional: true - isarray@1.0.0: {} - - isbinaryfile@4.0.10: {} + isarray@1.0.0: + optional: true isexe@2.0.0: {} @@ -15779,16 +15327,6 @@ snapshots: istanbul-lib-coverage@3.2.2: {} - istanbul-lib-instrument@5.2.1: - dependencies: - '@babel/core': 7.26.0 - '@babel/parser': 7.26.3 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.26.0 @@ -15799,25 +15337,6 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-lib-report@3.0.1: - dependencies: - istanbul-lib-coverage: 3.2.2 - make-dir: 4.0.0 - supports-color: 7.2.0 - - istanbul-lib-source-maps@4.0.1: - dependencies: - debug: 4.4.0 - istanbul-lib-coverage: 3.2.2 - source-map: 0.6.1 - transitivePeerDependencies: - - supports-color - - istanbul-reports@3.1.7: - dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.1 - jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 @@ -15828,8 +15347,6 @@ snapshots: dependencies: '@isaacs/cliui': 8.0.2 - jasmine-core@4.6.1: {} - jasmine-core@5.5.0: {} jest-diff@29.7.0: @@ -15846,8 +15363,10 @@ snapshots: '@types/node': 22.10.1 merge-stream: 2.0.0 supports-color: 8.1.1 + optional: true - jiti@1.21.6: {} + jiti@1.21.6: + optional: true jiti@2.4.1: {} @@ -15926,73 +15445,17 @@ snapshots: jsonparse@1.3.1: {} - karma-chrome-launcher@3.2.0: - dependencies: - which: 1.3.1 - - karma-coverage@2.2.1: - dependencies: - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 5.2.1 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.7 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - karma-jasmine-html-reporter@2.1.0(jasmine-core@5.5.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4): - dependencies: - jasmine-core: 5.5.0 - karma: 6.4.4 - karma-jasmine: 5.1.0(karma@6.4.4) - - karma-jasmine@5.1.0(karma@6.4.4): - dependencies: - jasmine-core: 4.6.1 - karma: 6.4.4 - karma-source-map-support@1.4.0: dependencies: source-map-support: 0.5.21 - - karma@6.4.4: - dependencies: - '@colors/colors': 1.5.0 - body-parser: 1.20.3 - braces: 3.0.3 - chokidar: 3.6.0 - connect: 3.7.0 - di: 0.0.1 - dom-serialize: 2.2.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - http-proxy: 1.18.1(debug@4.4.0) - isbinaryfile: 4.0.10 - lodash: 4.17.21 - log4js: 6.9.1 - mime: 2.6.0 - minimatch: 3.1.2 - mkdirp: 0.5.6 - qjobs: 1.2.0 - range-parser: 1.2.1 - rimraf: 3.0.2 - socket.io: 4.8.1 - source-map: 0.6.1 - tmp: 0.2.3 - ua-parser-js: 0.7.39 - yargs: 16.2.0 - transitivePeerDependencies: - - bufferutil - - debug - - supports-color - - utf-8-validate + optional: true keyv@4.5.4: dependencies: json-buffer: 3.0.1 - kind-of@6.0.3: {} + kind-of@6.0.3: + optional: true kleur@4.1.5: {} @@ -16025,12 +15488,14 @@ snapshots: dependencies: picocolors: 1.1.1 shell-quote: 1.8.2 + optional: true less-loader@12.2.0(less@4.2.0)(webpack@5.96.1(esbuild@0.24.0)): dependencies: less: 4.2.0 optionalDependencies: webpack: 5.96.1(esbuild@0.24.0) + optional: true less@4.2.0: dependencies: @@ -16045,6 +15510,7 @@ snapshots: mime: 1.6.0 needle: 3.3.1 source-map: 0.6.1 + optional: true less@4.2.1: dependencies: @@ -16070,6 +15536,7 @@ snapshots: webpack-sources: 3.2.3 optionalDependencies: webpack: 5.96.1(esbuild@0.24.0) + optional: true liftoff@5.0.0: dependencies: @@ -16134,15 +15601,18 @@ snapshots: '@lmdb/lmdb-win32-x64': 3.1.5 optional: true - loader-runner@4.3.0: {} + loader-runner@4.3.0: + optional: true loader-utils@2.0.4: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 + optional: true - loader-utils@3.3.1: {} + loader-utils@3.3.1: + optional: true local-pkg@0.5.1: dependencies: @@ -16162,8 +15632,10 @@ snapshots: locate-path@7.2.0: dependencies: p-locate: 6.0.0 + optional: true - lodash.debounce@4.0.8: {} + lodash.debounce@4.0.8: + optional: true lodash.merge@4.6.2: {} @@ -16182,16 +15654,6 @@ snapshots: strip-ansi: 7.1.0 wrap-ansi: 9.0.0 - log4js@6.9.1: - dependencies: - date-format: 4.0.14 - debug: 4.4.0 - flatted: 3.3.2 - rfdc: 1.4.1 - streamroller: 3.1.5 - transitivePeerDependencies: - - supports-color - loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 @@ -16241,10 +15703,6 @@ snapshots: dependencies: semver: 6.3.1 - make-dir@4.0.0: - dependencies: - semver: 7.6.3 - make-fetch-happen@14.0.3: dependencies: '@npmcli/agent': 3.0.0 @@ -16274,7 +15732,8 @@ snapshots: mdurl@2.0.0: {} - media-typer@0.3.0: {} + media-typer@0.3.0: + optional: true memfs@4.14.1: dependencies: @@ -16282,6 +15741,7 @@ snapshots: '@jsonjoy.com/util': 1.5.0(tslib@2.8.1) tree-dump: 1.0.2(tslib@2.8.1) tslib: 2.8.1 + optional: true meow@12.1.1: {} @@ -16289,13 +15749,15 @@ snapshots: dependencies: is-what: 4.1.16 - merge-descriptors@1.0.3: {} + merge-descriptors@1.0.3: + optional: true merge-stream@2.0.0: {} merge2@1.4.1: {} - methods@1.1.2: {} + methods@1.1.2: + optional: true micromatch@4.0.8: dependencies: @@ -16316,9 +15778,8 @@ snapshots: dependencies: mime-db: 1.52.0 - mime@1.6.0: {} - - mime@2.6.0: {} + mime@1.6.0: + optional: true mimic-fn@2.1.0: {} @@ -16331,8 +15792,10 @@ snapshots: schema-utils: 4.2.0 tapable: 2.2.1 webpack: 5.96.1(esbuild@0.24.0) + optional: true - minimalistic-assert@1.0.1: {} + minimalistic-assert@1.0.1: + optional: true minimatch@10.0.1: dependencies: @@ -16402,10 +15865,6 @@ snapshots: minipass: 7.1.2 rimraf: 5.0.10 - mkdirp@0.5.6: - dependencies: - minimist: 1.2.8 - mkdirp@1.0.4: {} mkdirp@3.0.1: {} @@ -16448,6 +15907,7 @@ snapshots: dependencies: dns-packet: 5.6.1 thunky: 1.1.0 + optional: true mute-stream@1.0.0: {} @@ -16471,15 +15931,17 @@ snapshots: negotiator@0.6.3: {} - negotiator@0.6.4: {} + negotiator@0.6.4: + optional: true negotiator@1.0.0: {} - neo-async@2.6.2: {} + neo-async@2.6.2: + optional: true - ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3): + ng-packagr@19.0.1(@angular/compiler-cli@19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3))(tslib@2.8.1)(typescript@5.6.3): dependencies: - '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) + '@angular/compiler-cli': 19.0.5(@angular/compiler@19.0.5(@angular/core@19.0.5(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.6.3) '@rollup/plugin-json': 6.1.0(rollup@4.28.1) '@rollup/wasm-node': 4.28.1 ajv: 8.17.1 @@ -16516,7 +15978,8 @@ snapshots: node-addon-api@7.1.1: optional: true - node-forge@1.3.1: {} + node-forge@1.3.1: + optional: true node-gyp-build-optional-packages@5.2.2: dependencies: @@ -16554,7 +16017,8 @@ snapshots: normalize-path@3.0.0: {} - normalize-range@0.1.2: {} + normalize-range@0.1.2: + optional: true npm-bundled@2.0.1: dependencies: @@ -16674,7 +16138,8 @@ snapshots: object-assign@4.1.1: {} - object-inspect@1.13.3: {} + object-inspect@1.13.3: + optional: true object.defaults@1.1.0: dependencies: @@ -16687,15 +16152,13 @@ snapshots: dependencies: isobject: 3.0.1 - obuf@1.1.2: {} - - on-finished@2.3.0: - dependencies: - ee-first: 1.1.1 + obuf@1.1.2: + optional: true on-finished@2.4.1: dependencies: ee-first: 1.1.1 + optional: true on-headers@1.0.2: {} @@ -16717,6 +16180,7 @@ snapshots: define-lazy-prop: 3.0.0 is-inside-container: 1.0.0 is-wsl: 3.1.0 + optional: true open@8.4.2: dependencies: @@ -16738,7 +16202,7 @@ snapshots: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.6.1 + cli-spinners: 2.9.2 is-interactive: 1.0.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 @@ -16774,6 +16238,7 @@ snapshots: p-limit@4.0.0: dependencies: yocto-queue: 1.1.1 + optional: true p-locate@4.1.0: dependencies: @@ -16786,6 +16251,7 @@ snapshots: p-locate@6.0.0: dependencies: p-limit: 4.0.0 + optional: true p-map@4.0.0: dependencies: @@ -16798,6 +16264,7 @@ snapshots: '@types/retry': 0.12.2 is-network-error: 1.1.0 retry: 0.13.1 + optional: true p-try@2.2.0: {} @@ -16863,7 +16330,8 @@ snapshots: dependencies: entities: 4.5.0 - parseurl@1.3.3: {} + parseurl@1.3.3: + optional: true pascal-case@3.1.2: dependencies: @@ -16874,7 +16342,8 @@ snapshots: path-exists@4.0.0: {} - path-exists@5.0.0: {} + path-exists@5.0.0: + optional: true path-is-absolute@1.0.1: {} @@ -16902,13 +16371,15 @@ snapshots: lru-cache: 11.0.2 minipass: 7.1.2 - path-to-regexp@0.1.12: {} + path-to-regexp@0.1.12: + optional: true path-to-regexp@3.3.0: {} path-type@4.0.0: {} - path-type@5.0.0: {} + path-type@5.0.0: + optional: true pathe@1.1.2: {} @@ -16938,6 +16409,7 @@ snapshots: pkg-dir@7.0.0: dependencies: find-up: 6.3.0 + optional: true pkg-types@1.2.1: dependencies: @@ -16962,12 +16434,14 @@ snapshots: webpack: 5.96.1(esbuild@0.24.0) transitivePeerDependencies: - typescript + optional: true postcss-media-query-parser@0.2.3: {} postcss-modules-extract-imports@3.1.0(postcss@8.4.49): dependencies: postcss: 8.4.49 + optional: true postcss-modules-local-by-default@4.1.0(postcss@8.4.49): dependencies: @@ -16975,16 +16449,19 @@ snapshots: postcss: 8.4.49 postcss-selector-parser: 7.0.0 postcss-value-parser: 4.2.0 + optional: true postcss-modules-scope@3.2.1(postcss@8.4.49): dependencies: postcss: 8.4.49 postcss-selector-parser: 7.0.0 + optional: true postcss-modules-values@4.0.0(postcss@8.4.49): dependencies: icss-utils: 5.1.0(postcss@8.4.49) postcss: 8.4.49 + optional: true postcss-safe-parser@6.0.0(postcss@8.4.49): dependencies: @@ -17003,8 +16480,10 @@ snapshots: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 + optional: true - postcss-value-parser@4.2.0: {} + postcss-value-parser@4.2.0: + optional: true postcss@8.4.49: dependencies: @@ -17039,7 +16518,8 @@ snapshots: proc-log@5.0.0: {} - process-nextick-args@2.0.1: {} + process-nextick-args@2.0.1: + optional: true promise-inflight@1.0.1: {} @@ -17058,6 +16538,7 @@ snapshots: dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 + optional: true proxy-from-env@1.1.0: {} @@ -17074,25 +16555,24 @@ snapshots: punycode.js@2.3.1: {} - punycode@1.4.1: {} - punycode@2.3.1: {} - qjobs@1.2.0: {} - qs@6.13.0: dependencies: side-channel: 1.0.6 + optional: true queue-microtask@1.2.3: {} randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 + optional: true range-parser@1.2.0: {} - range-parser@1.2.1: {} + range-parser@1.2.1: + optional: true raw-body@2.5.2: dependencies: @@ -17100,6 +16580,7 @@ snapshots: http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 + optional: true rc@1.2.8: dependencies: @@ -17145,6 +16626,7 @@ snapshots: safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 + optional: true readable-stream@3.6.2: dependencies: @@ -17172,16 +16654,20 @@ snapshots: regenerate-unicode-properties@10.2.0: dependencies: regenerate: 1.4.2 + optional: true - regenerate@1.4.2: {} + regenerate@1.4.2: + optional: true regenerator-runtime@0.14.1: {} regenerator-transform@0.15.2: dependencies: '@babel/runtime': 7.26.0 + optional: true - regex-parser@2.3.0: {} + regex-parser@2.3.0: + optional: true regexpu-core@6.2.0: dependencies: @@ -17191,6 +16677,7 @@ snapshots: regjsparser: 0.12.0 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.2.0 + optional: true registry-auth-token@3.3.2: dependencies: @@ -17201,11 +16688,13 @@ snapshots: dependencies: rc: 1.2.8 - regjsgen@0.8.0: {} + regjsgen@0.8.0: + optional: true regjsparser@0.12.0: dependencies: jsesc: 3.0.2 + optional: true remove-accents@0.5.0: {} @@ -17213,7 +16702,8 @@ snapshots: require-from-string@2.0.2: {} - requires-port@1.0.0: {} + requires-port@1.0.0: + optional: true resolve-dir@1.0.1: dependencies: @@ -17231,6 +16721,7 @@ snapshots: loader-utils: 2.0.4 postcss: 8.4.49 source-map: 0.6.1 + optional: true resolve@1.22.8: dependencies: @@ -17250,16 +16741,13 @@ snapshots: retry@0.12.0: {} - retry@0.13.1: {} + retry@0.13.1: + optional: true reusify@1.0.4: {} rfdc@1.4.1: {} - rimraf@3.0.2: - dependencies: - glob: 7.2.3 - rimraf@5.0.10: dependencies: glob: 10.4.5 @@ -17326,7 +16814,8 @@ snapshots: rrweb-cssom@0.7.1: {} - run-applescript@7.0.0: {} + run-applescript@7.0.0: + optional: true run-parallel@1.2.0: dependencies: @@ -17352,6 +16841,7 @@ snapshots: optionalDependencies: sass: 1.80.7 webpack: 5.96.1(esbuild@0.24.0) + optional: true sass@1.80.7: dependencies: @@ -17383,6 +16873,7 @@ snapshots: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) + optional: true schema-utils@4.2.0: dependencies: @@ -17390,13 +16881,16 @@ snapshots: ajv: 8.17.1 ajv-formats: 2.1.1(ajv@8.17.1) ajv-keywords: 5.1.0(ajv@8.17.1) + optional: true - select-hose@2.0.0: {} + select-hose@2.0.0: + optional: true selfsigned@2.4.1: dependencies: '@types/node-forge': 1.3.11 node-forge: 1.3.1 + optional: true semver@5.7.2: optional: true @@ -17426,10 +16920,12 @@ snapshots: statuses: 2.0.1 transitivePeerDependencies: - supports-color + optional: true serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 + optional: true seroval-plugins@1.1.1(seroval@1.1.1): dependencies: @@ -17458,6 +16954,7 @@ snapshots: parseurl: 1.3.3 transitivePeerDependencies: - supports-color + optional: true serve-static@1.16.2: dependencies: @@ -17467,6 +16964,7 @@ snapshots: send: 0.19.0 transitivePeerDependencies: - supports-color + optional: true serve@14.2.4: dependencies: @@ -17492,14 +16990,18 @@ snapshots: get-intrinsic: 1.2.5 gopd: 1.2.0 has-property-descriptors: 1.0.2 + optional: true - setprototypeof@1.1.0: {} + setprototypeof@1.1.0: + optional: true - setprototypeof@1.2.0: {} + setprototypeof@1.2.0: + optional: true shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 + optional: true shebang-command@1.2.0: dependencies: @@ -17513,7 +17015,8 @@ snapshots: shebang-regex@3.0.0: {} - shell-quote@1.8.2: {} + shell-quote@1.8.2: + optional: true sherif-darwin-arm64@1.0.2: optional: true @@ -17550,6 +17053,7 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.5 object-inspect: 1.13.3 + optional: true siginfo@2.0.0: {} @@ -17592,7 +17096,8 @@ snapshots: picocolors: 1.1.1 tinyglobby: 0.2.10 - slash@5.1.0: {} + slash@5.1.0: + optional: true slice-ansi@5.0.0: dependencies: @@ -17608,41 +17113,12 @@ snapshots: smol-toml@1.3.1: {} - socket.io-adapter@2.5.5: - dependencies: - debug: 4.3.7 - ws: 8.17.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - socket.io-parser@4.2.4: - dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.7 - transitivePeerDependencies: - - supports-color - - socket.io@4.8.1: - dependencies: - accepts: 1.3.8 - base64id: 2.0.0 - cors: 2.8.5 - debug: 4.3.7 - engine.io: 6.6.2 - socket.io-adapter: 2.5.5 - socket.io-parser: 4.2.4 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - sockjs@0.3.24: dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 websocket-driver: 0.7.4 + optional: true socks-proxy-agent@8.0.4: dependencies: @@ -17679,11 +17155,13 @@ snapshots: iconv-lite: 0.6.3 source-map-js: 1.2.1 webpack: 5.96.1(esbuild@0.24.0) + optional: true source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + optional: true source-map@0.5.7: {} @@ -17715,6 +17193,7 @@ snapshots: wbuf: 1.7.3 transitivePeerDependencies: - supports-color + optional: true spdy@4.0.2: dependencies: @@ -17725,6 +17204,7 @@ snapshots: spdy-transport: 3.0.0 transitivePeerDependencies: - supports-color + optional: true split2@4.2.0: {} @@ -17740,20 +17220,14 @@ snapshots: stackback@0.0.2: {} - statuses@1.5.0: {} + statuses@1.5.0: + optional: true - statuses@2.0.1: {} + statuses@2.0.1: + optional: true std-env@3.8.0: {} - streamroller@3.1.5: - dependencies: - date-format: 4.0.14 - debug: 4.4.0 - fs-extra: 8.1.0 - transitivePeerDependencies: - - supports-color - string-argv@0.3.2: {} string-ts@2.2.0: {} @@ -17779,6 +17253,7 @@ snapshots: string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 + optional: true string_decoder@1.3.0: dependencies: @@ -17913,6 +17388,7 @@ snapshots: webpack: 5.96.1(esbuild@0.24.0) optionalDependencies: esbuild: 0.24.0 + optional: true terser@5.36.0: dependencies: @@ -17920,16 +17396,19 @@ snapshots: acorn: 8.14.0 commander: 2.20.3 source-map-support: 0.5.21 + optional: true text-extensions@2.4.0: {} thingies@1.21.0(tslib@2.8.1): dependencies: tslib: 2.8.1 + optional: true through@2.3.8: {} - thunky@1.1.0: {} + thunky@1.1.0: + optional: true tiny-invariant@1.3.3: {} @@ -17966,7 +17445,8 @@ snapshots: dependencies: is-number: 7.0.0 - toidentifier@1.0.1: {} + toidentifier@1.0.1: + optional: true totalist@3.0.1: {} @@ -17981,8 +17461,10 @@ snapshots: tree-dump@1.0.2(tslib@2.8.1): dependencies: tslib: 2.8.1 + optional: true - tree-kill@1.2.2: {} + tree-kill@1.2.2: + optional: true ts-api-utils@1.4.3(typescript@5.6.3): dependencies: @@ -18041,8 +17523,10 @@ snapshots: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 + optional: true - typed-assert@1.0.9: {} + typed-assert@1.0.9: + optional: true typedoc-plugin-frontmatter@1.1.0(typedoc-plugin-markdown@4.3.1(typedoc@0.27.3(typescript@5.6.3))): dependencies: @@ -18077,8 +17561,6 @@ snapshots: typescript@5.6.3: {} - ua-parser-js@0.7.39: {} - uc.micro@2.1.0: {} ufo@1.5.4: {} @@ -18087,18 +17569,23 @@ snapshots: undici-types@6.20.0: {} - unicode-canonical-property-names-ecmascript@2.0.1: {} + unicode-canonical-property-names-ecmascript@2.0.1: + optional: true unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 + optional: true - unicode-match-property-value-ecmascript@2.2.0: {} + unicode-match-property-value-ecmascript@2.2.0: + optional: true - unicode-property-aliases-ecmascript@2.1.0: {} + unicode-property-aliases-ecmascript@2.1.0: + optional: true - unicorn-magic@0.1.0: {} + unicorn-magic@0.1.0: + optional: true unique-filename@4.0.0: dependencies: @@ -18116,7 +17603,8 @@ snapshots: universalify@2.0.1: {} - unpipe@1.0.0: {} + unpipe@1.0.0: + optional: true unplugin@1.16.0: dependencies: @@ -18144,9 +17632,11 @@ snapshots: util-deprecate@1.0.2: {} - utils-merge@1.0.1: {} + utils-merge@1.0.1: + optional: true - uuid@8.3.2: {} + uuid@8.3.2: + optional: true v8flags@4.0.1: {} @@ -18250,6 +17740,7 @@ snapshots: less: 4.2.0 sass: 1.80.7 terser: 5.36.0 + optional: true vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.80.7)(terser@5.36.0): dependencies: @@ -18262,7 +17753,6 @@ snapshots: less: 4.2.1 sass: 1.80.7 terser: 5.36.0 - optional: true vite@5.4.11(@types/node@22.10.1)(less@4.2.1)(sass@1.82.0)(terser@5.36.0): dependencies: @@ -18332,8 +17822,6 @@ snapshots: - supports-color - terser - void-elements@2.0.1: {} - vscode-uri@3.0.8: {} vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.1)): @@ -18385,6 +17873,7 @@ snapshots: wbuf@1.7.3: dependencies: minimalistic-assert: 1.0.1 + optional: true wcwidth@1.0.1: dependencies: @@ -18405,6 +17894,7 @@ snapshots: schema-utils: 4.2.0 optionalDependencies: webpack: 5.96.1(esbuild@0.24.0) + optional: true webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)): dependencies: @@ -18443,19 +17933,23 @@ snapshots: - debug - supports-color - utf-8-validate + optional: true webpack-merge@6.0.1: dependencies: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 + optional: true - webpack-sources@3.2.3: {} + webpack-sources@3.2.3: + optional: true webpack-subresource-integrity@5.1.0(webpack@5.96.1(esbuild@0.24.0)): dependencies: typed-assert: 1.0.9 webpack: 5.96.1(esbuild@0.24.0) + optional: true webpack-virtual-modules@0.6.2: {} @@ -18488,14 +17982,17 @@ snapshots: - '@swc/core' - esbuild - uglify-js + optional: true websocket-driver@0.7.4: dependencies: http-parser-js: 0.5.8 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 + optional: true - websocket-extensions@0.1.4: {} + websocket-extensions@0.1.4: + optional: true whatwg-encoding@3.1.1: dependencies: @@ -18529,7 +18026,8 @@ snapshots: dependencies: string-width: 5.1.2 - wildcard@2.0.1: {} + wildcard@2.0.1: + optional: true word-wrap@1.2.5: {} @@ -18559,8 +18057,6 @@ snapshots: wrappy@1.0.2: {} - ws@8.17.1: {} - ws@8.18.0: {} xml-name-validator@4.0.0: {} @@ -18583,20 +18079,8 @@ snapshots: yaml@2.6.1: {} - yargs-parser@20.2.9: {} - yargs-parser@21.1.1: {} - yargs@16.2.0: - dependencies: - cliui: 7.0.4 - escalade: 3.2.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - yargs@17.7.2: dependencies: cliui: 8.0.1 @@ -18609,7 +18093,8 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.1.1: {} + yocto-queue@1.1.1: + optional: true yoctocolors-cjs@2.1.2: {}