Date: Wed, 23 Apr 2025 20:55:38 +0200
Subject: [PATCH 181/188] docs: optimize bundle size
---
angular.json | 1 -
.../angular-intl-demo/src/app/app.config.ts | 16 +++-------
.../app/pipes/country/country.component.ts | 12 ++++----
.../app/pipes/currency/currency.component.ts | 17 ++++++-----
.../src/app/pipes/date/date.component.ts | 30 +++++++++++--------
.../app/pipes/decimal/decimal.component.ts | 18 ++++++-----
.../app/pipes/duration/duration.component.ts | 16 +++++-----
.../app/pipes/language/language.component.ts | 13 ++++----
.../src/app/pipes/list/list.component.ts | 13 ++++----
.../app/pipes/percent/percent.component.ts | 18 ++++++-----
.../src/app/pipes/pipes.component.html | 23 +++++++++-----
.../src/app/pipes/pipes.component.ts | 23 ++++++++++++--
.../relative-time/relative-time.component.ts | 30 +++++++++++--------
.../src/app/pipes/unit/unit.component.ts | 18 ++++++-----
14 files changed, 143 insertions(+), 105 deletions(-)
diff --git a/angular.json b/angular.json
index 7506bad9..dd7eec88 100644
--- a/angular.json
+++ b/angular.json
@@ -51,7 +51,6 @@
"outputPath": "dist/angular-intl-demo",
"index": "projects/angular-intl-demo/src/index.html",
"browser": "projects/angular-intl-demo/src/main.ts",
- "polyfills": ["zone.js"],
"tsConfig": "projects/angular-intl-demo/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
diff --git a/projects/angular-intl-demo/src/app/app.config.ts b/projects/angular-intl-demo/src/app/app.config.ts
index 0c049e3f..cb6ece49 100644
--- a/projects/angular-intl-demo/src/app/app.config.ts
+++ b/projects/angular-intl-demo/src/app/app.config.ts
@@ -1,24 +1,16 @@
import { provideHttpClient } from '@angular/common/http';
-import { ApplicationConfig } from '@angular/core';
import {
- MAT_FORM_FIELD_DEFAULT_OPTIONS,
- MatFormFieldDefaultOptions,
-} from '@angular/material/form-field';
-import { provideAnimations } from '@angular/platform-browser/animations';
+ ApplicationConfig,
+ provideZonelessChangeDetection,
+} from '@angular/core';
import { provideRouter, withHashLocation } from '@angular/router';
import { provideMarkdown } from 'ngx-markdown';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [
+ provideZonelessChangeDetection(),
provideMarkdown(),
- {
- provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,
- useValue: {
- subscriptSizing: 'dynamic',
- } satisfies MatFormFieldDefaultOptions,
- },
- provideAnimations(),
provideHttpClient(),
provideRouter(routes, withHashLocation()),
],
diff --git a/projects/angular-intl-demo/src/app/pipes/country/country.component.ts b/projects/angular-intl-demo/src/app/pipes/country/country.component.ts
index a9baf40a..eca4d1aa 100644
--- a/projects/angular-intl-demo/src/app/pipes/country/country.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/country/country.component.ts
@@ -1,8 +1,7 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatSelectModule } from '@angular/material/select';
+import { MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatOption, MatSelect } from '@angular/material/select';
import {
IntlCountryPipe,
IntlCountryPipeOptions,
@@ -15,11 +14,12 @@ import { countries } from './countries';
templateUrl: './country.component.html',
styleUrls: ['./country.component.scss'],
imports: [
- MatFormFieldModule,
- MatSelectModule,
FormsModule,
- MatOptionModule,
IntlCountryPipe,
+ MatFormField,
+ MatSelect,
+ MatOption,
+ MatLabel,
],
})
export class CountryComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/currency/currency.component.ts b/projects/angular-intl-demo/src/app/pipes/currency/currency.component.ts
index 623c0c60..7403cedf 100644
--- a/projects/angular-intl-demo/src/app/pipes/currency/currency.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/currency/currency.component.ts
@@ -1,9 +1,8 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatError, MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatInput } from '@angular/material/input';
+import { MatOption, MatSelect } from '@angular/material/select';
import {
IntlCurrencyPipe,
IntlCurrencyPipeOptions,
@@ -16,12 +15,14 @@ import { currencies } from './currencies';
templateUrl: './currency.component.html',
styleUrls: ['./currency.component.scss'],
imports: [
- MatFormFieldModule,
- MatInputModule,
FormsModule,
- MatSelectModule,
- MatOptionModule,
IntlCurrencyPipe,
+ MatFormField,
+ MatInput,
+ MatSelect,
+ MatOption,
+ MatLabel,
+ MatError,
],
})
export class CurrencyComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/date/date.component.ts b/projects/angular-intl-demo/src/app/pipes/date/date.component.ts
index 77a74677..f8501874 100644
--- a/projects/angular-intl-demo/src/app/pipes/date/date.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/date/date.component.ts
@@ -1,11 +1,15 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatButtonModule } from '@angular/material/button';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatIconModule } from '@angular/material/icon';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatIconButton } from '@angular/material/button';
+import { MatOption } from '@angular/material/core';
+import {
+ MatFormField,
+ MatLabel,
+ MatSuffix,
+} from '@angular/material/form-field';
+import { MatIcon } from '@angular/material/icon';
+import { MatInput } from '@angular/material/input';
+import { MatSelect } from '@angular/material/select';
import { IntlDatePipe, IntlDatePipeOptions } from 'angular-ecmascript-intl';
import { languages } from '../../languages';
import { getDateString } from '../date-utils';
@@ -15,14 +19,16 @@ import { getDateString } from '../date-utils';
templateUrl: './date.component.html',
styleUrls: ['./date.component.scss'],
imports: [
- MatFormFieldModule,
- MatInputModule,
FormsModule,
- MatButtonModule,
- MatIconModule,
- MatSelectModule,
- MatOptionModule,
IntlDatePipe,
+ MatFormField,
+ MatInput,
+ MatIconButton,
+ MatIcon,
+ MatSelect,
+ MatOption,
+ MatLabel,
+ MatSuffix,
],
})
export class DateComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/decimal/decimal.component.ts b/projects/angular-intl-demo/src/app/pipes/decimal/decimal.component.ts
index 77b0c437..bca36f8f 100644
--- a/projects/angular-intl-demo/src/app/pipes/decimal/decimal.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/decimal/decimal.component.ts
@@ -1,9 +1,9 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatOption } from '@angular/material/core';
+import { MatError, MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatInput } from '@angular/material/input';
+import { MatSelect } from '@angular/material/select';
import {
IntlDecimalPipe,
IntlDecimalPipeOptions,
@@ -15,12 +15,14 @@ import { languages } from '../../languages';
templateUrl: './decimal.component.html',
styleUrls: ['./decimal.component.scss'],
imports: [
- MatFormFieldModule,
- MatInputModule,
FormsModule,
- MatSelectModule,
- MatOptionModule,
IntlDecimalPipe,
+ MatFormField,
+ MatInput,
+ MatSelect,
+ MatOption,
+ MatLabel,
+ MatError,
],
})
export class DecimalComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/duration/duration.component.ts b/projects/angular-intl-demo/src/app/pipes/duration/duration.component.ts
index 714ee71a..3796ef24 100644
--- a/projects/angular-intl-demo/src/app/pipes/duration/duration.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/duration/duration.component.ts
@@ -1,9 +1,8 @@
-import { CommonModule } from '@angular/common';
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatInput } from '@angular/material/input';
+import { MatOption, MatSelect } from '@angular/material/select';
import {
IntlDurationPipe,
IntlDurationPipeOptions,
@@ -13,12 +12,13 @@ import { languages } from '../../languages';
@Component({
selector: 'app-duration',
imports: [
- CommonModule,
- MatFormFieldModule,
- MatSelectModule,
IntlDurationPipe,
FormsModule,
- MatInputModule,
+ MatFormField,
+ MatInput,
+ MatSelect,
+ MatOption,
+ MatLabel,
],
templateUrl: './duration.component.html',
styleUrls: ['./duration.component.scss'],
diff --git a/projects/angular-intl-demo/src/app/pipes/language/language.component.ts b/projects/angular-intl-demo/src/app/pipes/language/language.component.ts
index bfa6b548..b77a97ba 100644
--- a/projects/angular-intl-demo/src/app/pipes/language/language.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/language/language.component.ts
@@ -1,8 +1,8 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatSelectModule } from '@angular/material/select';
+import { MatOption } from '@angular/material/core';
+import { MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatSelect } from '@angular/material/select';
import {
IntlLanguagePipe,
IntlLanguagePipeOptions,
@@ -14,11 +14,12 @@ import { languages } from '../../languages';
templateUrl: './language.component.html',
styleUrls: ['./language.component.scss'],
imports: [
- MatFormFieldModule,
- MatSelectModule,
FormsModule,
- MatOptionModule,
IntlLanguagePipe,
+ MatFormField,
+ MatSelect,
+ MatOption,
+ MatLabel,
],
})
export class LanguageComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/list/list.component.ts b/projects/angular-intl-demo/src/app/pipes/list/list.component.ts
index 07e54832..a491e6df 100644
--- a/projects/angular-intl-demo/src/app/pipes/list/list.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/list/list.component.ts
@@ -1,8 +1,8 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatSelectModule } from '@angular/material/select';
+import { MatOption } from '@angular/material/core';
+import { MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatSelect } from '@angular/material/select';
import { IntlListPipe, IntlListPipeOptions } from 'angular-ecmascript-intl';
import { languages } from '../../languages';
import { list } from './list';
@@ -12,11 +12,12 @@ import { list } from './list';
templateUrl: './list.component.html',
styleUrls: ['./list.component.scss'],
imports: [
- MatFormFieldModule,
- MatSelectModule,
FormsModule,
- MatOptionModule,
IntlListPipe,
+ MatFormField,
+ MatSelect,
+ MatOption,
+ MatLabel,
],
})
export class ListComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/percent/percent.component.ts b/projects/angular-intl-demo/src/app/pipes/percent/percent.component.ts
index e6b9c201..0ad64696 100644
--- a/projects/angular-intl-demo/src/app/pipes/percent/percent.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/percent/percent.component.ts
@@ -1,9 +1,9 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatOption } from '@angular/material/core';
+import { MatError, MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatInput } from '@angular/material/input';
+import { MatSelect } from '@angular/material/select';
import {
IntlPercentPipe,
IntlPercentPipeOptions,
@@ -15,12 +15,14 @@ import { languages } from '../../languages';
templateUrl: './percent.component.html',
styleUrls: ['./percent.component.scss'],
imports: [
- MatFormFieldModule,
- MatInputModule,
FormsModule,
- MatSelectModule,
- MatOptionModule,
IntlPercentPipe,
+ MatFormField,
+ MatInput,
+ MatSelect,
+ MatOption,
+ MatLabel,
+ MatError,
],
})
export class PercentComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/pipes.component.html b/projects/angular-intl-demo/src/app/pipes/pipes.component.html
index 771ccec1..5ae5ec9a 100644
--- a/projects/angular-intl-demo/src/app/pipes/pipes.component.html
+++ b/projects/angular-intl-demo/src/app/pipes/pipes.component.html
@@ -5,24 +5,27 @@
mat-tab-link
routerLink="date"
routerLinkActive
- >Date
+ Date
+
Decimal
+ Decimal
+
Percent
+ Percent
+
Unit
+ Unit
+
Country
+ Country
+
List
+ List
+
Duration
+ Duration
+
-
+
diff --git a/projects/angular-intl-demo/src/app/pipes/pipes.component.ts b/projects/angular-intl-demo/src/app/pipes/pipes.component.ts
index 4b4f0699..17e7d03d 100644
--- a/projects/angular-intl-demo/src/app/pipes/pipes.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/pipes.component.ts
@@ -1,11 +1,30 @@
import { Component } from '@angular/core';
-import { MatTabsModule } from '@angular/material/tabs';
+import {
+ MAT_FORM_FIELD_DEFAULT_OPTIONS,
+ MatFormFieldDefaultOptions,
+} from '@angular/material/form-field';
+import { MatTabLink, MatTabNav, MatTabNavPanel } from '@angular/material/tabs';
import { RouterLink, RouterLinkActive, RouterOutlet } from '@angular/router';
@Component({
selector: 'app-pipes',
templateUrl: './pipes.component.html',
styleUrls: ['./pipes.component.scss'],
- imports: [MatTabsModule, RouterLink, RouterLinkActive, RouterOutlet],
+ imports: [
+ RouterLink,
+ RouterLinkActive,
+ RouterOutlet,
+ MatTabNav,
+ MatTabLink,
+ MatTabNavPanel,
+ ],
+ providers: [
+ {
+ provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,
+ useValue: {
+ subscriptSizing: 'dynamic',
+ } satisfies MatFormFieldDefaultOptions,
+ },
+ ],
})
export class PipesComponent {}
diff --git a/projects/angular-intl-demo/src/app/pipes/relative-time/relative-time.component.ts b/projects/angular-intl-demo/src/app/pipes/relative-time/relative-time.component.ts
index e4a3d394..dc9ff314 100644
--- a/projects/angular-intl-demo/src/app/pipes/relative-time/relative-time.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/relative-time/relative-time.component.ts
@@ -1,11 +1,15 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatButtonModule } from '@angular/material/button';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatIconModule } from '@angular/material/icon';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatIconButton } from '@angular/material/button';
+import { MatOption } from '@angular/material/core';
+import {
+ MatFormField,
+ MatLabel,
+ MatSuffix,
+} from '@angular/material/form-field';
+import { MatIcon } from '@angular/material/icon';
+import { MatInput } from '@angular/material/input';
+import { MatSelect } from '@angular/material/select';
import {
IntlRelativeTimePipe,
IntlRelativeTimePipeOptions,
@@ -18,14 +22,16 @@ import { getDateString } from '../date-utils';
templateUrl: './relative-time.component.html',
styleUrls: ['./relative-time.component.scss'],
imports: [
- MatFormFieldModule,
- MatInputModule,
FormsModule,
- MatButtonModule,
- MatIconModule,
- MatSelectModule,
- MatOptionModule,
IntlRelativeTimePipe,
+ MatFormField,
+ MatInput,
+ MatIconButton,
+ MatIcon,
+ MatSelect,
+ MatOption,
+ MatLabel,
+ MatSuffix,
],
})
export class RelativeTimeComponent {
diff --git a/projects/angular-intl-demo/src/app/pipes/unit/unit.component.ts b/projects/angular-intl-demo/src/app/pipes/unit/unit.component.ts
index d375b4b2..aa2975d2 100644
--- a/projects/angular-intl-demo/src/app/pipes/unit/unit.component.ts
+++ b/projects/angular-intl-demo/src/app/pipes/unit/unit.component.ts
@@ -1,9 +1,9 @@
import { Component, computed, signal } from '@angular/core';
import { FormsModule } from '@angular/forms';
-import { MatOptionModule } from '@angular/material/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
+import { MatOption } from '@angular/material/core';
+import { MatError, MatFormField, MatLabel } from '@angular/material/form-field';
+import { MatInput } from '@angular/material/input';
+import { MatSelect } from '@angular/material/select';
import { IntlUnitPipe, IntlUnitPipeOptions } from 'angular-ecmascript-intl';
import { languages } from '../../languages';
import { units } from './units';
@@ -13,12 +13,14 @@ import { units } from './units';
templateUrl: './unit.component.html',
styleUrls: ['./unit.component.scss'],
imports: [
- MatFormFieldModule,
- MatInputModule,
FormsModule,
- MatSelectModule,
- MatOptionModule,
IntlUnitPipe,
+ MatFormField,
+ MatInput,
+ MatSelect,
+ MatOption,
+ MatLabel,
+ MatError,
],
})
export class UnitComponent {
From 4fb64d9884a460d453ba0184906522d5bf22a0a7 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Wed, 23 Apr 2025 22:01:41 +0000
Subject: [PATCH 182/188] fix(deps): update dependency marked to v15.0.10
---
pnpm-lock.yaml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 7d881c58..cb03211f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -40,10 +40,10 @@ importers:
version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
marked:
specifier: ^15.0.0
- version: 15.0.9
+ version: 15.0.10
ngx-markdown:
specifier: ^19.0.0
- version: 19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ version: 19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.10)(rxjs@7.8.2)(zone.js@0.15.0)
prismjs:
specifier: ^1.29.0
version: 1.30.0
@@ -3949,8 +3949,8 @@ packages:
resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- marked@15.0.9:
- resolution: {integrity: sha512-9AW/bn9DxQeZVjR52l5jsc0W2pwuhP04QaQewPvylil12Cfr2GBfWmgp6mu8i9Jy8UlBjqDZ9uMTDuJ8QOGZJA==}
+ marked@15.0.10:
+ resolution: {integrity: sha512-BXzsfFiR2UqXFKRwpugWuCYi9mWd1aX/Yns/X52xWfvfen9lnGEDbJw9ZEjjvLZVqntqT2gX45eYvqb2dIokDw==}
engines: {node: '>= 18'}
hasBin: true
@@ -9687,7 +9687,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- marked@15.0.9: {}
+ marked@15.0.10: {}
math-intrinsics@1.1.0: {}
@@ -9725,7 +9725,7 @@ snapshots:
katex: 0.16.22
khroma: 2.1.0
lodash-es: 4.17.21
- marked: 15.0.9
+ marked: 15.0.10
roughjs: 4.6.6
stylis: 4.3.6
ts-dedent: 2.2.0
@@ -9913,12 +9913,12 @@ snapshots:
optionalDependencies:
rollup: 4.40.0
- ngx-markdown@19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.9)(rxjs@7.8.2)(zone.js@0.15.0):
+ ngx-markdown@19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.10)(rxjs@7.8.2)(zone.js@0.15.0):
dependencies:
'@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
'@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
'@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
- marked: 15.0.9
+ marked: 15.0.10
rxjs: 7.8.2
tslib: 2.8.1
zone.js: 0.15.0
From feaa87acd8e9095a9522b0fdbc8973c7026eeef3 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Fri, 25 Apr 2025 02:52:48 +0000
Subject: [PATCH 183/188] fix(deps): update dependency marked to v15.0.11
---
pnpm-lock.yaml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cb03211f..ae26d0a2 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -40,10 +40,10 @@ importers:
version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
marked:
specifier: ^15.0.0
- version: 15.0.10
+ version: 15.0.11
ngx-markdown:
specifier: ^19.0.0
- version: 19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.10)(rxjs@7.8.2)(zone.js@0.15.0)
+ version: 19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.11)(rxjs@7.8.2)(zone.js@0.15.0)
prismjs:
specifier: ^1.29.0
version: 1.30.0
@@ -3949,8 +3949,8 @@ packages:
resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- marked@15.0.10:
- resolution: {integrity: sha512-BXzsfFiR2UqXFKRwpugWuCYi9mWd1aX/Yns/X52xWfvfen9lnGEDbJw9ZEjjvLZVqntqT2gX45eYvqb2dIokDw==}
+ marked@15.0.11:
+ resolution: {integrity: sha512-1BEXAU2euRCG3xwgLVT1y0xbJEld1XOrmRJpUwRCcy7rxhSCwMrmEu9LXoPhHSCJG41V7YcQ2mjKRr5BA3ITIA==}
engines: {node: '>= 18'}
hasBin: true
@@ -9687,7 +9687,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- marked@15.0.10: {}
+ marked@15.0.11: {}
math-intrinsics@1.1.0: {}
@@ -9725,7 +9725,7 @@ snapshots:
katex: 0.16.22
khroma: 2.1.0
lodash-es: 4.17.21
- marked: 15.0.10
+ marked: 15.0.11
roughjs: 4.6.6
stylis: 4.3.6
ts-dedent: 2.2.0
@@ -9913,12 +9913,12 @@ snapshots:
optionalDependencies:
rollup: 4.40.0
- ngx-markdown@19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.10)(rxjs@7.8.2)(zone.js@0.15.0):
+ ngx-markdown@19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.11)(rxjs@7.8.2)(zone.js@0.15.0):
dependencies:
'@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
'@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
'@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
- marked: 15.0.10
+ marked: 15.0.11
rxjs: 7.8.2
tslib: 2.8.1
zone.js: 0.15.0
From cbd7dd599fbc753a57c1f4a86005b69bca791aac Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Sat, 26 Apr 2025 18:06:08 +0000
Subject: [PATCH 184/188] chore(deps): update dependency jasmine-core to ~5.7.0
---
package.json | 2 +-
pnpm-lock.yaml | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/package.json b/package.json
index 0014bcc7..07598439 100644
--- a/package.json
+++ b/package.json
@@ -43,7 +43,7 @@
"dayjs": "^1.11.7",
"eslint": "^9.0.0",
"globals": "^16.0.0",
- "jasmine-core": "~5.6.0",
+ "jasmine-core": "~5.7.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ae26d0a2..50c56e19 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -88,8 +88,8 @@ importers:
specifier: ^16.0.0
version: 16.0.0
jasmine-core:
- specifier: ~5.6.0
- version: 5.6.0
+ specifier: ~5.7.0
+ version: 5.7.0
karma:
specifier: ~6.4.0
version: 6.4.4
@@ -107,7 +107,7 @@ importers:
version: 5.1.0(karma@6.4.4)
karma-jasmine-html-reporter:
specifier: ~2.1.0
- version: 2.1.0(jasmine-core@5.6.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4)
+ version: 2.1.0(jasmine-core@5.7.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4)
karma-safarinative-launcher:
specifier: ^1.1.0
version: 1.1.0(karma@6.4.4)
@@ -3700,8 +3700,8 @@ packages:
jasmine-core@4.6.1:
resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==}
- jasmine-core@5.6.0:
- resolution: {integrity: sha512-niVlkeYVRwKFpmfWg6suo6H9CrNnydfBLEqefM5UjibYS+UoTjZdmvPJSiuyrRLGnFj1eYRhFd/ch+5hSlsFVA==}
+ jasmine-core@5.7.0:
+ resolution: {integrity: sha512-EnUzZBHxS1Ofq+FPWs16rs2YC9o6Hb3buKJQDlkhJBDx+Bm5wNF+J1gUS06dWuW2ozaQ3oNIA1SESX9M5LopOQ==}
jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
@@ -9378,7 +9378,7 @@ snapshots:
jasmine-core@4.6.1: {}
- jasmine-core@5.6.0: {}
+ jasmine-core@5.7.0: {}
jest-worker@27.5.1:
dependencies:
@@ -9444,9 +9444,9 @@ snapshots:
is-wsl: 2.2.0
which: 3.0.1
- karma-jasmine-html-reporter@2.1.0(jasmine-core@5.6.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4):
+ karma-jasmine-html-reporter@2.1.0(jasmine-core@5.7.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4):
dependencies:
- jasmine-core: 5.6.0
+ jasmine-core: 5.7.0
karma: 6.4.4
karma-jasmine: 5.1.0(karma@6.4.4)
From d9ef756b5997cb1adbdc221a4645a98ad154563c Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon, 28 Apr 2025 02:46:34 +0000
Subject: [PATCH 185/188] chore(deps): lock file maintenance
---
pnpm-lock.yaml | 701 +++++++++++++------------------------------------
1 file changed, 179 insertions(+), 522 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 50c56e19..a48167e6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -59,10 +59,10 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: 20.0.0-next.8
- version: 20.0.0-next.8(bdeda90f466d4eb271f66780110d52e9)
+ version: 20.0.0-next.8(4fe82e6445ddd4c8e6df9e6de4bdd970)
'@angular/cli':
specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@types/node@22.14.1)(chokidar@4.0.3)
+ version: 20.0.0-next.8(@types/node@22.15.2)(chokidar@4.0.3)
'@angular/compiler-cli':
specifier: 20.0.0-next.8
version: 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
@@ -133,8 +133,8 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.1902.8':
- resolution: {integrity: sha512-0A1EhtC/A/N7ukOD+s04l7sCyeSF5llBupkZdksSfi5y56s8U6Lt7KuqrbsErkOKgaCWrP/+Ef8fo0RmYpnefQ==}
+ '@angular-devkit/architect@0.1902.9':
+ resolution: {integrity: sha512-SLUc7EaFMjhCnimqxTcv32wESJBLQ3E6c/1sAndPojyCoGiX24ASu2pxrTXrYNS9DqiJT8tReAnqmh7dmf3xwQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@angular-devkit/architect@0.2000.0-next.8':
@@ -198,8 +198,8 @@ packages:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
- '@angular-devkit/core@19.2.8':
- resolution: {integrity: sha512-kcxUHKf5Hi98r4gAvMP3ntJV8wuQ3/i6wuU9RcMP0UKUt2Rer5Ryis3MPqT92jvVVwg6lhrLIhXsFuWJMiYjXQ==}
+ '@angular-devkit/core@19.2.9':
+ resolution: {integrity: sha512-vbTomKnN7H4jaif0hWAECFU2WvRbhfkYWHdlk/JtJM53iIJVL3mKWBRZ0QXITjmgfdIo3c9RcX+wFI7gGqGd6g==}
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
@@ -216,8 +216,8 @@ packages:
chokidar:
optional: true
- '@angular-devkit/schematics@19.2.8':
- resolution: {integrity: sha512-QsmFuYdAyeCyg9WF/AJBhFXDUfCwmDFTEbsv5t5KPSP6slhk0GoLNZApniiFytU2siRlSxVNpve2uATyYuAYkQ==}
+ '@angular-devkit/schematics@19.2.9':
+ resolution: {integrity: sha512-B8FQ4hFsP4Ffh895F9GVvyhgDoZztWnAyYKiM1pyvLSQikzaUZqi9NZnD12HgMALmwm2z36zTzoSNsYFBTHgaw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@angular-devkit/schematics@20.0.0-next.8':
@@ -934,300 +934,150 @@ packages:
resolution: {integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==}
engines: {node: '>=14.17.0'}
- '@esbuild/aix-ppc64@0.25.2':
- resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.25.3':
resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.2':
- resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.25.3':
resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.2':
- resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.25.3':
resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.2':
- resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.25.3':
resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.2':
- resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.25.3':
resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.2':
- resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.25.3':
resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.2':
- resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.25.3':
resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.2':
- resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.25.3':
resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.2':
- resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.25.3':
resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.2':
- resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.25.3':
resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.2':
- resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.25.3':
resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.2':
- resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.25.3':
resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.2':
- resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.25.3':
resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.2':
- resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.25.3':
resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.2':
- resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.25.3':
resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.2':
- resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.25.3':
resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.2':
- resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.25.3':
resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.2':
- resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
-
'@esbuild/netbsd-arm64@0.25.3':
resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.2':
- resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.25.3':
resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.2':
- resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
'@esbuild/openbsd-arm64@0.25.3':
resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.2':
- resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.25.3':
resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.25.2':
- resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.25.3':
resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.2':
- resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.25.3':
resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.2':
- resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.25.3':
resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.2':
- resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.25.3':
resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
engines: {node: '>=18'}
@@ -1383,8 +1233,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/rawlist@4.0.12':
- resolution: {integrity: sha512-wNPJZy8Oc7RyGISPxp9/MpTOqX8lr0r+lCCWm7hQra+MDtYRgINv1hxw7R+vKP71Bu/3LszabxOodfV/uTfsaA==}
+ '@inquirer/rawlist@4.1.0':
+ resolution: {integrity: sha512-6ob45Oh9pXmfprKqUiEeMz/tjtVTFQTgDDz1xAMKMrIvyrYjAmRbQZjMJfsictlL4phgjLhdLu27IkHNnNjB7g==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1401,8 +1251,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/select@4.1.1':
- resolution: {integrity: sha512-IUXzzTKVdiVNMA+2yUvPxWsSgOG4kfX93jOM4Zb5FgujeInotv5SPIJVeXQ+fO4xu7tW8VowFhdG5JRmmCyQ1Q==}
+ '@inquirer/select@4.2.0':
+ resolution: {integrity: sha512-KkXQ4aSySWimpV4V/TUJWdB3tdfENZUU765GjOIZ0uPwdbGIG6jrxD4dDf1w68uP+DVtfNhr1A92B+0mbTZ8FA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1695,8 +1545,8 @@ packages:
resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/redact@3.1.1':
- resolution: {integrity: sha512-3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA==}
+ '@npmcli/redact@3.2.0':
+ resolution: {integrity: sha512-NyJXHoZwJE0iUsCDTclXf1bWHJTsshtnp5xUN6F2vY+OLJv6d2cNc4Do6fKNkmPToB0GzoffxRh405ibTwG+Og==}
engines: {node: ^18.17.0 || >=20.5.0}
'@npmcli/run-script@9.1.0':
@@ -1932,12 +1782,12 @@ packages:
resolution: {integrity: sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/tuf@3.1.0':
- resolution: {integrity: sha512-suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA==}
+ '@sigstore/tuf@3.1.1':
+ resolution: {integrity: sha512-eFFvlcBIoGwVkkwmTi/vEQFSva3xs5Ot3WmBcjgjVdiaoelBLQaQ/ZBfhlG0MnG0cmTYScPpk7eDdGDWUcFUmg==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/verify@2.1.0':
- resolution: {integrity: sha512-kAAM06ca4CzhvjIZdONAL9+MLppW3K48wOFy1TbuaWFW/OMfl8JuTgW0Bm02JB1WJGT/ET2eqav0KTEKmxqkIA==}
+ '@sigstore/verify@2.1.1':
+ resolution: {integrity: sha512-hVJD77oT67aowHxwT4+M6PGOp+E2LtLdTK3+FC0lBO9T7sYwItDMXZ7Z07IDCvR1M717a4axbIWckrW67KMP/w==}
engines: {node: ^18.17.0 || >=20.5.0}
'@socket.io/component-emitter@3.1.2':
@@ -2071,9 +1921,6 @@ packages:
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express-serve-static-core@5.0.6':
- resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
-
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -2098,8 +1945,8 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@22.14.1':
- resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
+ '@types/node@22.15.2':
+ resolution: {integrity: sha512-uKXqKN9beGoMdBfcaTY1ecwz6ctxuJAcUlwE55938g0ZJ8lRxwAZqRz2AJ4pzpt5dHdTPMB863UZ0ESiFUcP7A==}
'@types/qs@6.9.18':
resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
@@ -2143,10 +1990,6 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.30.1':
- resolution: {integrity: sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@typescript-eslint/scope-manager@8.31.0':
resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2158,33 +2001,16 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.30.1':
- resolution: {integrity: sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@typescript-eslint/types@8.31.0':
resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.30.1':
- resolution: {integrity: sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
-
'@typescript-eslint/typescript-estree@8.31.0':
resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.30.1':
- resolution: {integrity: sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
-
'@typescript-eslint/utils@8.31.0':
resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2192,10 +2018,6 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.30.1':
- resolution: {integrity: sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@typescript-eslint/visitor-keys@8.31.0':
resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2960,8 +2782,8 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- detect-libc@2.0.3:
- resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ detect-libc@2.0.4:
+ resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
engines: {node: '>=8'}
detect-node@2.1.0:
@@ -3007,8 +2829,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.139:
- resolution: {integrity: sha512-GGnRYOTdN5LYpwbIr0rwP/ZHOQSvAF6TG0LSzp28uCBb9JiXHJGmaaKw29qjNJc5bGnnp6kXJqRnGMQoELwi5w==}
+ electron-to-chromium@1.5.143:
+ resolution: {integrity: sha512-QqklJMOFBMqe46k8iIOwA9l2hz57V2OKMmP5eSWcUvwx+mASAsbU+wkF1pHjn9ZVSBPrsYWr4/W/95y5SwYg2g==}
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -3087,8 +2909,8 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+ es-module-lexer@1.7.0:
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
@@ -3099,11 +2921,6 @@ packages:
engines: {node: '>=18'}
hasBin: true
- esbuild@0.25.2:
- resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==}
- engines: {node: '>=18'}
- hasBin: true
-
esbuild@0.25.3:
resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
engines: {node: '>=18'}
@@ -3541,8 +3358,8 @@ packages:
resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
engines: {node: ^18.17.0 || >=20.5.0}
- injection-js@2.4.0:
- resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==}
+ injection-js@2.5.0:
+ resolution: {integrity: sha512-UpY2ONt4xbht4GhSqQ2zMJ1rBIQq4uOY+DlR6aOeYyqK7xadXt7UQbJIyxmgk288bPMkIZKjViieHm0O0i72Jw==}
internmap@1.0.1:
resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==}
@@ -4376,8 +4193,8 @@ packages:
parse5-sax-parser@7.0.0:
resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==}
- parse5@7.2.1:
- resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -4738,11 +4555,6 @@ packages:
webpack:
optional: true
- sass@1.86.3:
- resolution: {integrity: sha512-iGtg8kus4GrsGLRDLRBRHY9dNVA78ZaS7xr01cWnS7PEMQyFtTqBiyCrfpTYTZXRWM94akzckYjh8oADfFNTzw==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
sass@1.87.0:
resolution: {integrity: sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==}
engines: {node: '>=14.0.0'}
@@ -4751,8 +4563,8 @@ packages:
sax@1.4.1:
resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
- schema-utils@4.3.0:
- resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
+ schema-utils@4.3.2:
+ resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
engines: {node: '>= 10.13.0'}
select-hose@2.0.0:
@@ -5435,9 +5247,9 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@angular-devkit/architect@0.1902.8(chokidar@4.0.3)':
+ '@angular-devkit/architect@0.1902.9(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 19.2.8(chokidar@4.0.3)
+ '@angular-devkit/core': 19.2.9(chokidar@4.0.3)
rxjs: 7.8.1
transitivePeerDependencies:
- chokidar
@@ -5449,13 +5261,13 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@20.0.0-next.8(bdeda90f466d4eb271f66780110d52e9)':
+ '@angular-devkit/build-angular@20.0.0-next.8(4fe82e6445ddd4c8e6df9e6de4bdd970)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
'@angular-devkit/build-webpack': 0.2000.0-next.8(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.99.6))(webpack@5.99.6(esbuild@0.25.3))
'@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
- '@angular/build': 20.0.0-next.8(cf5d73d8152428c55138532bad704931)
+ '@angular/build': 20.0.0-next.8(3513f8f78f326c3dac6587251a2bd87e)
'@angular/compiler-cli': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
'@babel/core': 7.26.10
'@babel/generator': 7.27.0
@@ -5468,7 +5280,7 @@ snapshots:
'@babel/runtime': 7.27.0
'@discoveryjs/json-ext': 0.6.3
'@ngtools/webpack': 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.6(esbuild@0.25.3))
- '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.2(@types/node@22.14.1)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
+ '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
ansi-colors: 4.1.3
autoprefixer: 10.4.21(postcss@8.5.3)
babel-loader: 10.0.0(@babel/core@7.26.10)(webpack@5.99.6(esbuild@0.25.3))
@@ -5547,7 +5359,7 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/core@19.2.8(chokidar@4.0.3)':
+ '@angular-devkit/core@19.2.9(chokidar@4.0.3)':
dependencies:
ajv: 8.17.1
ajv-formats: 3.0.1(ajv@8.17.1)
@@ -5569,9 +5381,9 @@ snapshots:
optionalDependencies:
chokidar: 4.0.3
- '@angular-devkit/schematics@19.2.8(chokidar@4.0.3)':
+ '@angular-devkit/schematics@19.2.9(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 19.2.8(chokidar@4.0.3)
+ '@angular-devkit/core': 19.2.9(chokidar@4.0.3)
jsonc-parser: 3.3.1
magic-string: 0.30.17
ora: 5.4.1
@@ -5591,8 +5403,8 @@ snapshots:
'@angular-eslint/builder@19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@angular-devkit/architect': 0.1902.8(chokidar@4.0.3)
- '@angular-devkit/core': 19.2.8(chokidar@4.0.3)
+ '@angular-devkit/architect': 0.1902.9(chokidar@4.0.3)
+ '@angular-devkit/core': 19.2.9(chokidar@4.0.3)
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
transitivePeerDependencies:
@@ -5600,31 +5412,31 @@ snapshots:
'@angular-eslint/bundled-angular-compiler@19.3.0': {}
- '@angular-eslint/eslint-plugin-template@19.3.0(@typescript-eslint/types@8.30.1)(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@angular-eslint/eslint-plugin-template@19.3.0(@typescript-eslint/types@8.31.0)(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 19.3.0
- '@angular-eslint/utils': 19.3.0(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/types': 8.30.1
- '@typescript-eslint/utils': 8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-eslint/utils': 19.3.0(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/types': 8.31.0
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
aria-query: 5.3.2
axobject-query: 4.1.0
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
- '@angular-eslint/eslint-plugin@19.3.0(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@angular-eslint/eslint-plugin@19.3.0(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 19.3.0
- '@angular-eslint/utils': 19.3.0(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-eslint/utils': 19.3.0(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
- '@angular-eslint/schematics@19.3.0(@typescript-eslint/types@8.30.1)(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@angular-eslint/schematics@19.3.0(@typescript-eslint/types@8.31.0)(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@angular-devkit/core': 19.2.8(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.8(chokidar@4.0.3)
- '@angular-eslint/eslint-plugin': 19.3.0(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@angular-eslint/eslint-plugin-template': 19.3.0(@typescript-eslint/types@8.30.1)(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-devkit/core': 19.2.9(chokidar@4.0.3)
+ '@angular-devkit/schematics': 19.2.9(chokidar@4.0.3)
+ '@angular-eslint/eslint-plugin': 19.3.0(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-eslint/eslint-plugin-template': 19.3.0(@typescript-eslint/types@8.31.0)(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
ignore: 7.0.3
semver: 7.7.1
strip-json-comments: 3.1.1
@@ -5642,10 +5454,10 @@ snapshots:
eslint-scope: 8.3.0
typescript: 5.8.3
- '@angular-eslint/utils@19.3.0(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@angular-eslint/utils@19.3.0(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 19.3.0
- '@typescript-eslint/utils': 8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
@@ -5655,7 +5467,7 @@ snapshots:
'@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
tslib: 2.8.1
- '@angular/build@20.0.0-next.8(cf5d73d8152428c55138532bad704931)':
+ '@angular/build@20.0.0-next.8(3513f8f78f326c3dac6587251a2bd87e)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
@@ -5664,8 +5476,8 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-split-export-declaration': 7.24.7
- '@inquirer/confirm': 5.1.9(@types/node@22.14.1)
- '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.2(@types/node@22.14.1)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
+ '@inquirer/confirm': 5.1.9(@types/node@22.15.2)
+ '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
beasties: 0.3.3
browserslist: 4.24.4
esbuild: 0.25.3
@@ -5685,7 +5497,7 @@ snapshots:
tinyglobby: 0.2.13
tslib: 2.8.1
typescript: 5.8.3
- vite: 6.3.2(@types/node@22.14.1)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
+ vite: 6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
watchpack: 2.4.2
optionalDependencies:
'@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
@@ -5712,17 +5524,17 @@ snapshots:
dependencies:
'@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
'@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- parse5: 7.2.1
+ parse5: 7.3.0
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/cli@20.0.0-next.8(@types/node@22.14.1)(chokidar@4.0.3)':
+ '@angular/cli@20.0.0-next.8(@types/node@22.15.2)(chokidar@4.0.3)':
dependencies:
'@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
'@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
'@angular-devkit/schematics': 20.0.0-next.8(chokidar@4.0.3)
- '@inquirer/prompts': 7.4.1(@types/node@22.14.1)
- '@listr2/prompt-adapter-inquirer': 2.0.21(@inquirer/prompts@7.4.1(@types/node@22.14.1))
+ '@inquirer/prompts': 7.4.1(@types/node@22.15.2)
+ '@listr2/prompt-adapter-inquirer': 2.0.21(@inquirer/prompts@7.4.1(@types/node@22.15.2))
'@schematics/angular': 20.0.0-next.8(chokidar@4.0.3)
'@yarnpkg/lockfile': 1.1.0
ini: 5.0.0
@@ -6507,153 +6319,78 @@ snapshots:
'@discoveryjs/json-ext@0.6.3': {}
- '@esbuild/aix-ppc64@0.25.2':
- optional: true
-
'@esbuild/aix-ppc64@0.25.3':
optional: true
- '@esbuild/android-arm64@0.25.2':
- optional: true
-
'@esbuild/android-arm64@0.25.3':
optional: true
- '@esbuild/android-arm@0.25.2':
- optional: true
-
'@esbuild/android-arm@0.25.3':
optional: true
- '@esbuild/android-x64@0.25.2':
- optional: true
-
'@esbuild/android-x64@0.25.3':
optional: true
- '@esbuild/darwin-arm64@0.25.2':
- optional: true
-
'@esbuild/darwin-arm64@0.25.3':
optional: true
- '@esbuild/darwin-x64@0.25.2':
- optional: true
-
'@esbuild/darwin-x64@0.25.3':
optional: true
- '@esbuild/freebsd-arm64@0.25.2':
- optional: true
-
'@esbuild/freebsd-arm64@0.25.3':
optional: true
- '@esbuild/freebsd-x64@0.25.2':
- optional: true
-
'@esbuild/freebsd-x64@0.25.3':
optional: true
- '@esbuild/linux-arm64@0.25.2':
- optional: true
-
'@esbuild/linux-arm64@0.25.3':
optional: true
- '@esbuild/linux-arm@0.25.2':
- optional: true
-
'@esbuild/linux-arm@0.25.3':
optional: true
- '@esbuild/linux-ia32@0.25.2':
- optional: true
-
'@esbuild/linux-ia32@0.25.3':
optional: true
- '@esbuild/linux-loong64@0.25.2':
- optional: true
-
'@esbuild/linux-loong64@0.25.3':
optional: true
- '@esbuild/linux-mips64el@0.25.2':
- optional: true
-
'@esbuild/linux-mips64el@0.25.3':
optional: true
- '@esbuild/linux-ppc64@0.25.2':
- optional: true
-
'@esbuild/linux-ppc64@0.25.3':
optional: true
- '@esbuild/linux-riscv64@0.25.2':
- optional: true
-
'@esbuild/linux-riscv64@0.25.3':
optional: true
- '@esbuild/linux-s390x@0.25.2':
- optional: true
-
'@esbuild/linux-s390x@0.25.3':
optional: true
- '@esbuild/linux-x64@0.25.2':
- optional: true
-
'@esbuild/linux-x64@0.25.3':
optional: true
- '@esbuild/netbsd-arm64@0.25.2':
- optional: true
-
'@esbuild/netbsd-arm64@0.25.3':
optional: true
- '@esbuild/netbsd-x64@0.25.2':
- optional: true
-
'@esbuild/netbsd-x64@0.25.3':
optional: true
- '@esbuild/openbsd-arm64@0.25.2':
- optional: true
-
'@esbuild/openbsd-arm64@0.25.3':
optional: true
- '@esbuild/openbsd-x64@0.25.2':
- optional: true
-
'@esbuild/openbsd-x64@0.25.3':
optional: true
- '@esbuild/sunos-x64@0.25.2':
- optional: true
-
'@esbuild/sunos-x64@0.25.3':
optional: true
- '@esbuild/win32-arm64@0.25.2':
- optional: true
-
'@esbuild/win32-arm64@0.25.3':
optional: true
- '@esbuild/win32-ia32@0.25.2':
- optional: true
-
'@esbuild/win32-ia32@0.25.3':
optional: true
- '@esbuild/win32-x64@0.25.2':
- optional: true
-
'@esbuild/win32-x64@0.25.3':
optional: true
@@ -6731,27 +6468,27 @@ snapshots:
- supports-color
optional: true
- '@inquirer/checkbox@4.1.5(@types/node@22.14.1)':
+ '@inquirer/checkbox@4.1.5(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/confirm@5.1.9(@types/node@22.14.1)':
+ '@inquirer/confirm@5.1.9(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/core@10.1.10(@types/node@22.14.1)':
+ '@inquirer/core@10.1.10(@types/node@22.15.2)':
dependencies:
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -6759,97 +6496,97 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/editor@4.2.10(@types/node@22.14.1)':
+ '@inquirer/editor@4.2.10(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
external-editor: 3.1.0
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/expand@4.0.12(@types/node@22.14.1)':
+ '@inquirer/expand@4.0.12(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@inquirer/figures@1.0.11': {}
- '@inquirer/input@4.1.9(@types/node@22.14.1)':
+ '@inquirer/input@4.1.9(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/number@3.0.12(@types/node@22.14.1)':
+ '@inquirer/number@3.0.12(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/password@4.0.12(@types/node@22.14.1)':
+ '@inquirer/password@4.0.12(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
ansi-escapes: 4.3.2
optionalDependencies:
- '@types/node': 22.14.1
-
- '@inquirer/prompts@7.4.1(@types/node@22.14.1)':
- dependencies:
- '@inquirer/checkbox': 4.1.5(@types/node@22.14.1)
- '@inquirer/confirm': 5.1.9(@types/node@22.14.1)
- '@inquirer/editor': 4.2.10(@types/node@22.14.1)
- '@inquirer/expand': 4.0.12(@types/node@22.14.1)
- '@inquirer/input': 4.1.9(@types/node@22.14.1)
- '@inquirer/number': 3.0.12(@types/node@22.14.1)
- '@inquirer/password': 4.0.12(@types/node@22.14.1)
- '@inquirer/rawlist': 4.0.12(@types/node@22.14.1)
- '@inquirer/search': 3.0.12(@types/node@22.14.1)
- '@inquirer/select': 4.1.1(@types/node@22.14.1)
+ '@types/node': 22.15.2
+
+ '@inquirer/prompts@7.4.1(@types/node@22.15.2)':
+ dependencies:
+ '@inquirer/checkbox': 4.1.5(@types/node@22.15.2)
+ '@inquirer/confirm': 5.1.9(@types/node@22.15.2)
+ '@inquirer/editor': 4.2.10(@types/node@22.15.2)
+ '@inquirer/expand': 4.0.12(@types/node@22.15.2)
+ '@inquirer/input': 4.1.9(@types/node@22.15.2)
+ '@inquirer/number': 3.0.12(@types/node@22.15.2)
+ '@inquirer/password': 4.0.12(@types/node@22.15.2)
+ '@inquirer/rawlist': 4.1.0(@types/node@22.15.2)
+ '@inquirer/search': 3.0.12(@types/node@22.15.2)
+ '@inquirer/select': 4.2.0(@types/node@22.15.2)
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/rawlist@4.0.12(@types/node@22.14.1)':
+ '@inquirer/rawlist@4.1.0(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/search@3.0.12(@types/node@22.14.1)':
+ '@inquirer/search@3.0.12(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@inquirer/select@4.1.1(@types/node@22.14.1)':
+ '@inquirer/select@4.2.0(@types/node@22.15.2)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@22.15.2)
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/type': 3.0.6(@types/node@22.15.2)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@inquirer/type@1.5.5':
dependencies:
mute-stream: 1.0.0
- '@inquirer/type@3.0.6(@types/node@22.14.1)':
+ '@inquirer/type@3.0.6(@types/node@22.15.2)':
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@isaacs/cliui@8.0.2':
dependencies:
@@ -6906,9 +6643,9 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.21(@inquirer/prompts@7.4.1(@types/node@22.14.1))':
+ '@listr2/prompt-adapter-inquirer@2.0.21(@inquirer/prompts@7.4.1(@types/node@22.15.2))':
dependencies:
- '@inquirer/prompts': 7.4.1(@types/node@22.14.1)
+ '@inquirer/prompts': 7.4.1(@types/node@22.15.2)
'@inquirer/type': 1.5.5
'@lmdb/lmdb-darwin-arm64@3.2.6':
@@ -7084,7 +6821,7 @@ snapshots:
dependencies:
which: 5.0.0
- '@npmcli/redact@3.1.1': {}
+ '@npmcli/redact@3.2.0': {}
'@npmcli/run-script@9.1.0':
dependencies:
@@ -7268,14 +7005,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@sigstore/tuf@3.1.0':
+ '@sigstore/tuf@3.1.1':
dependencies:
'@sigstore/protobuf-specs': 0.4.1
tuf-js: 3.0.1
transitivePeerDependencies:
- supports-color
- '@sigstore/verify@2.1.0':
+ '@sigstore/verify@2.1.1':
dependencies:
'@sigstore/bundle': 3.1.0
'@sigstore/core': 2.0.0
@@ -7293,24 +7030,24 @@ snapshots:
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 5.0.6
- '@types/node': 22.14.1
+ '@types/express-serve-static-core': 4.19.6
+ '@types/node': 22.15.2
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/cors@2.8.17':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/d3-array@3.2.1':
optional: true
@@ -7474,14 +7211,7 @@ snapshots:
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 22.14.1
- '@types/qs': 6.9.18
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
-
- '@types/express-serve-static-core@5.0.6':
- dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -7500,7 +7230,7 @@ snapshots:
'@types/http-proxy@1.17.16':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/jasmine@5.1.7': {}
@@ -7510,9 +7240,9 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
- '@types/node@22.14.1':
+ '@types/node@22.15.2':
dependencies:
undici-types: 6.21.0
@@ -7525,7 +7255,7 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/serve-index@1.9.4':
dependencies:
@@ -7534,19 +7264,19 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/send': 0.17.4
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@types/trusted-types@2.0.7':
optional: true
'@types/ws@8.18.1':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
'@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
@@ -7577,11 +7307,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.30.1':
- dependencies:
- '@typescript-eslint/types': 8.30.1
- '@typescript-eslint/visitor-keys': 8.30.1
-
'@typescript-eslint/scope-manager@8.31.0':
dependencies:
'@typescript-eslint/types': 8.31.0
@@ -7598,24 +7323,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.30.1': {}
-
'@typescript-eslint/types@8.31.0': {}
- '@typescript-eslint/typescript-estree@8.30.1(typescript@5.8.3)':
- dependencies:
- '@typescript-eslint/types': 8.30.1
- '@typescript-eslint/visitor-keys': 8.30.1
- debug: 4.4.0
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/typescript-estree@8.31.0(typescript@5.8.3)':
dependencies:
'@typescript-eslint/types': 8.31.0
@@ -7630,17 +7339,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
- '@typescript-eslint/scope-manager': 8.30.1
- '@typescript-eslint/types': 8.30.1
- '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3)
- eslint: 9.25.1(jiti@1.21.7)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
@@ -7652,19 +7350,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.30.1':
- dependencies:
- '@typescript-eslint/types': 8.30.1
- eslint-visitor-keys: 4.2.0
-
'@typescript-eslint/visitor-keys@8.31.0':
dependencies:
'@typescript-eslint/types': 8.31.0
eslint-visitor-keys: 4.2.0
- '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.2(@types/node@22.14.1)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))':
+ '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))':
dependencies:
- vite: 6.3.2(@types/node@22.14.1)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
+ vite: 6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
'@webassemblyjs/ast@1.14.1':
dependencies:
@@ -7802,15 +7495,15 @@ snapshots:
angular-eslint@19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript-eslint@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(typescript@5.8.3):
dependencies:
- '@angular-devkit/core': 19.2.8(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.8(chokidar@4.0.3)
+ '@angular-devkit/core': 19.2.9(chokidar@4.0.3)
+ '@angular-devkit/schematics': 19.2.9(chokidar@4.0.3)
'@angular-eslint/builder': 19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@angular-eslint/eslint-plugin': 19.3.0(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@angular-eslint/eslint-plugin-template': 19.3.0(@typescript-eslint/types@8.30.1)(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@angular-eslint/schematics': 19.3.0(@typescript-eslint/types@8.30.1)(@typescript-eslint/utils@8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-eslint/eslint-plugin': 19.3.0(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-eslint/eslint-plugin-template': 19.3.0(@typescript-eslint/types@8.31.0)(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@angular-eslint/schematics': 19.3.0(@typescript-eslint/types@8.31.0)(@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
'@angular-eslint/template-parser': 19.3.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/types': 8.30.1
- '@typescript-eslint/utils': 8.30.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/types': 8.31.0
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
typescript-eslint: 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
@@ -7964,7 +7657,7 @@ snapshots:
browserslist@4.24.4:
dependencies:
caniuse-lite: 1.0.30001715
- electron-to-chromium: 1.5.139
+ electron-to-chromium: 1.5.143
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
@@ -8182,7 +7875,7 @@ snapshots:
dependencies:
glob-parent: 6.0.2
normalize-path: 3.0.0
- schema-utils: 4.3.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
tinyglobby: 0.2.13
webpack: 5.99.6(esbuild@0.25.3)
@@ -8545,7 +8238,7 @@ snapshots:
detect-libc@1.0.3:
optional: true
- detect-libc@2.0.3:
+ detect-libc@2.0.4:
optional: true
detect-node@2.1.0: {}
@@ -8600,7 +8293,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.139: {}
+ electron-to-chromium@1.5.143: {}
emoji-regex@10.4.0: {}
@@ -8627,7 +8320,7 @@ snapshots:
engine.io@6.6.4:
dependencies:
'@types/cors': 2.8.17
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.7.2
@@ -8675,7 +8368,7 @@ snapshots:
es-errors@1.3.0: {}
- es-module-lexer@1.6.0: {}
+ es-module-lexer@1.7.0: {}
es-object-atoms@1.1.1:
dependencies:
@@ -8683,34 +8376,6 @@ snapshots:
esbuild-wasm@0.25.3: {}
- esbuild@0.25.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.2
- '@esbuild/android-arm': 0.25.2
- '@esbuild/android-arm64': 0.25.2
- '@esbuild/android-x64': 0.25.2
- '@esbuild/darwin-arm64': 0.25.2
- '@esbuild/darwin-x64': 0.25.2
- '@esbuild/freebsd-arm64': 0.25.2
- '@esbuild/freebsd-x64': 0.25.2
- '@esbuild/linux-arm': 0.25.2
- '@esbuild/linux-arm64': 0.25.2
- '@esbuild/linux-ia32': 0.25.2
- '@esbuild/linux-loong64': 0.25.2
- '@esbuild/linux-mips64el': 0.25.2
- '@esbuild/linux-ppc64': 0.25.2
- '@esbuild/linux-riscv64': 0.25.2
- '@esbuild/linux-s390x': 0.25.2
- '@esbuild/linux-x64': 0.25.2
- '@esbuild/netbsd-arm64': 0.25.2
- '@esbuild/netbsd-x64': 0.25.2
- '@esbuild/openbsd-arm64': 0.25.2
- '@esbuild/openbsd-x64': 0.25.2
- '@esbuild/sunos-x64': 0.25.2
- '@esbuild/win32-arm64': 0.25.2
- '@esbuild/win32-ia32': 0.25.2
- '@esbuild/win32-x64': 0.25.2
-
esbuild@0.25.3:
optionalDependencies:
'@esbuild/aix-ppc64': 0.25.3
@@ -9235,7 +8900,7 @@ snapshots:
ini@5.0.0: {}
- injection-js@2.4.0:
+ injection-js@2.5.0:
dependencies:
tslib: 2.8.1
@@ -9382,7 +9047,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -9759,7 +9424,7 @@ snapshots:
mini-css-extract-plugin@2.9.2(webpack@5.99.6(esbuild@0.25.3)):
dependencies:
- schema-utils: 4.3.0
+ schema-utils: 4.3.2
tapable: 2.2.1
webpack: 5.99.6(esbuild@0.25.3)
@@ -9896,9 +9561,9 @@ snapshots:
chokidar: 4.0.3
commander: 13.1.0
dependency-graph: 1.0.0
- esbuild: 0.25.2
+ esbuild: 0.25.3
find-cache-dir: 3.3.2
- injection-js: 2.4.0
+ injection-js: 2.5.0
jsonc-parser: 3.3.1
less: 4.3.0
ora: 5.4.1
@@ -9906,7 +9571,7 @@ snapshots:
postcss: 8.5.3
rollup-plugin-dts: 6.2.1(rollup@4.40.0)(typescript@5.8.3)
rxjs: 7.8.2
- sass: 1.86.3
+ sass: 1.87.0
tinyglobby: 0.2.13
tslib: 2.8.1
typescript: 5.8.3
@@ -9941,7 +9606,7 @@ snapshots:
node-gyp-build-optional-packages@5.2.2:
dependencies:
- detect-libc: 2.0.3
+ detect-libc: 2.0.4
optional: true
node-gyp@11.2.0:
@@ -9999,7 +9664,7 @@ snapshots:
npm-registry-fetch@18.0.2:
dependencies:
- '@npmcli/redact': 3.1.1
+ '@npmcli/redact': 3.2.0
jsonparse: 1.3.1
make-fetch-happen: 14.0.3
minipass: 7.1.2
@@ -10162,16 +9827,16 @@ snapshots:
parse5-html-rewriting-stream@7.1.0:
dependencies:
entities: 6.0.0
- parse5: 7.2.1
+ parse5: 7.3.0
parse5-sax-parser: 7.0.0
parse5-sax-parser@7.0.0:
dependencies:
- parse5: 7.2.1
+ parse5: 7.3.0
- parse5@7.2.1:
+ parse5@7.3.0:
dependencies:
- entities: 4.5.0
+ entities: 6.0.0
parseurl@1.3.3: {}
@@ -10519,14 +10184,6 @@ snapshots:
sass: 1.87.0
webpack: 5.99.6(esbuild@0.25.3)
- sass@1.86.3:
- dependencies:
- chokidar: 4.0.3
- immutable: 5.1.1
- source-map-js: 1.2.1
- optionalDependencies:
- '@parcel/watcher': 2.5.1
-
sass@1.87.0:
dependencies:
chokidar: 4.0.3
@@ -10538,7 +10195,7 @@ snapshots:
sax@1.4.1:
optional: true
- schema-utils@4.3.0:
+ schema-utils@4.3.2:
dependencies:
'@types/json-schema': 7.0.15
ajv: 8.17.1
@@ -10659,8 +10316,8 @@ snapshots:
'@sigstore/core': 2.0.0
'@sigstore/protobuf-specs': 0.4.1
'@sigstore/sign': 3.1.0
- '@sigstore/tuf': 3.1.0
- '@sigstore/verify': 2.1.0
+ '@sigstore/tuf': 3.1.1
+ '@sigstore/verify': 2.1.1
transitivePeerDependencies:
- supports-color
@@ -10870,7 +10527,7 @@ snapshots:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 4.3.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
terser: 5.39.0
webpack: 5.99.6(esbuild@0.25.3)
@@ -11019,7 +10676,7 @@ snapshots:
vary@1.1.2: {}
- vite@6.3.2(@types/node@22.14.1)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0):
+ vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0):
dependencies:
esbuild: 0.25.3
fdir: 6.4.4(picomatch@4.0.2)
@@ -11028,7 +10685,7 @@ snapshots:
rollup: 4.40.0
tinyglobby: 0.2.13
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.2
fsevents: 2.3.3
jiti: 1.21.7
less: 4.3.0
@@ -11083,7 +10740,7 @@ snapshots:
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
- schema-utils: 4.3.0
+ schema-utils: 4.3.2
optionalDependencies:
webpack: 5.99.6(esbuild@0.25.3)
@@ -11110,7 +10767,7 @@ snapshots:
launch-editor: 2.10.0
open: 10.1.1
p-retry: 6.2.1
- schema-utils: 4.3.0
+ schema-utils: 4.3.2
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
@@ -11149,7 +10806,7 @@ snapshots:
browserslist: 4.24.4
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.1
- es-module-lexer: 1.6.0
+ es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -11158,7 +10815,7 @@ snapshots:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 4.3.0
+ schema-utils: 4.3.2
tapable: 2.2.1
terser-webpack-plugin: 5.3.14(esbuild@0.25.3)(webpack@5.99.6)
watchpack: 2.4.2
From d1ea259d7e7bd5aef166c879955d66a21ed89689 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon, 28 Apr 2025 15:29:49 +0000
Subject: [PATCH 186/188] chore(deps): update pnpm to v10.10.0
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 07598439..547529bd 100644
--- a/package.json
+++ b/package.json
@@ -62,5 +62,5 @@
"yarn": "Please use pnpm instead of yarn to install dependencies",
"pnpm": "^10.7.0"
},
- "packageManager": "pnpm@10.9.0"
+ "packageManager": "pnpm@10.10.0"
}
From 5c2fcba53703925eedafb521d4bcc4c077fb796f Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon, 28 Apr 2025 19:44:44 +0000
Subject: [PATCH 187/188] chore(deps): update dependency typescript-eslint to
v8.31.1
---
pnpm-lock.yaml | 122 +++++++++++++++++++++++++++++++++++++------------
1 file changed, 92 insertions(+), 30 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a48167e6..a581d694 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -74,7 +74,7 @@ importers:
version: 5.1.7
angular-eslint:
specifier: ^19.0.0-alpha.4
- version: 19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript-eslint@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(typescript@5.8.3)
+ version: 19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript-eslint@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(typescript@5.8.3)
cpy-cli:
specifier: ^5.0.0
version: 5.0.0
@@ -125,7 +125,7 @@ importers:
version: 5.8.3
typescript-eslint:
specifier: ^8.0.0
- version: 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ version: 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
packages:
@@ -1975,16 +1975,16 @@ packages:
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
- '@typescript-eslint/eslint-plugin@8.31.0':
- resolution: {integrity: sha512-evaQJZ/J/S4wisevDvC1KFZkPzRetH8kYZbkgcTRyql3mcKsf+ZFDV1BVWUGTCAW5pQHoqn5gK5b8kn7ou9aFQ==}
+ '@typescript-eslint/eslint-plugin@8.31.1':
+ resolution: {integrity: sha512-oUlH4h1ABavI4F0Xnl8/fOtML/eu8nI2A1nYd+f+55XI0BLu+RIqKoCiZKNo6DtqZBEQm5aNKA20G3Z5w3R6GQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.31.0':
- resolution: {integrity: sha512-67kYYShjBR0jNI5vsf/c3WG4u+zDnCTHTPqVMQguffaWWFs7artgwKmfwdifl+r6XyM5LYLas/dInj2T0SgJyw==}
+ '@typescript-eslint/parser@8.31.1':
+ resolution: {integrity: sha512-oU/OtYVydhXnumd0BobL9rkJg7wFJ9bFFPmSmB/bf/XWN85hlViji59ko6bSKBXyseT9V8l+CN1nwmlbiN0G7Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1994,8 +1994,12 @@ packages:
resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.31.0':
- resolution: {integrity: sha512-DJ1N1GdjI7IS7uRlzJuEDCgDQix3ZVYVtgeWEyhyn4iaoitpMBX6Ndd488mXSx0xah/cONAkEaYyylDyAeHMHg==}
+ '@typescript-eslint/scope-manager@8.31.1':
+ resolution: {integrity: sha512-BMNLOElPxrtNQMIsFHE+3P0Yf1z0dJqV9zLdDxN/xLlWMlXK/ApEsVEKzpizg9oal8bAT5Sc7+ocal7AC1HCVw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/type-utils@8.31.1':
+ resolution: {integrity: sha512-fNaT/m9n0+dpSp8G/iOQ05GoHYXbxw81x+yvr7TArTuZuCA6VVKbqWYVZrV5dVagpDTtj/O8k5HBEE/p/HM5LA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2005,12 +2009,22 @@ packages:
resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/types@8.31.1':
+ resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@8.31.0':
resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
+ '@typescript-eslint/typescript-estree@8.31.1':
+ resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
'@typescript-eslint/utils@8.31.0':
resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2018,10 +2032,21 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
+ '@typescript-eslint/utils@8.31.1':
+ resolution: {integrity: sha512-2DSI4SNfF5T4oRveQ4nUrSjUqjMND0nLq9rEkz0gfGr3tg0S5KB6DhwR+WZPCjzkZl3cH+4x2ce3EsL50FubjQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+
'@typescript-eslint/visitor-keys@8.31.0':
resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/visitor-keys@8.31.1':
+ resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@vitejs/plugin-basic-ssl@2.0.0':
resolution: {integrity: sha512-gc9Tjg8bUxBVSTzeWT3Njc0Cl3PakHFKdNfABnZWiUgbxqmHDEn7uECv3fHVylxoYgNzAcmU7ZrILz+BwSo3sA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
@@ -4906,8 +4931,8 @@ packages:
typed-assert@1.0.9:
resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
- typescript-eslint@8.31.0:
- resolution: {integrity: sha512-u+93F0sB0An8WEAPtwxVhFby573E8ckdjwUUQUj9QA4v8JAvgtoDdIyYR3XFwFHq2W1KJ1AurwJCO+w+Y1ixyQ==}
+ typescript-eslint@8.31.1:
+ resolution: {integrity: sha512-j6DsEotD/fH39qKzXTQRwYYWlt7D+0HmfpOK+DVhwJOFLcdmn92hq3mBb7HlKJHbjjI/gTOqEcc9d6JfpFf/VA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -7278,14 +7303,14 @@ snapshots:
dependencies:
'@types/node': 22.15.2
- '@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.31.0
- '@typescript-eslint/type-utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.31.0
+ '@typescript-eslint/parser': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.31.1
+ '@typescript-eslint/type-utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.31.1
eslint: 9.25.1(jiti@1.21.7)
graphemer: 1.4.0
ignore: 5.3.2
@@ -7295,12 +7320,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.31.0
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.31.0
+ '@typescript-eslint/scope-manager': 8.31.1
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.31.1
debug: 4.4.0
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
@@ -7312,10 +7337,15 @@ snapshots:
'@typescript-eslint/types': 8.31.0
'@typescript-eslint/visitor-keys': 8.31.0
- '@typescript-eslint/type-utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ '@typescript-eslint/scope-manager@8.31.1':
dependencies:
- '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/visitor-keys': 8.31.1
+
+ '@typescript-eslint/type-utils@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
debug: 4.4.0
eslint: 9.25.1(jiti@1.21.7)
ts-api-utils: 2.1.0(typescript@5.8.3)
@@ -7325,6 +7355,8 @@ snapshots:
'@typescript-eslint/types@8.31.0': {}
+ '@typescript-eslint/types@8.31.1': {}
+
'@typescript-eslint/typescript-estree@8.31.0(typescript@5.8.3)':
dependencies:
'@typescript-eslint/types': 8.31.0
@@ -7339,6 +7371,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@8.31.1(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/visitor-keys': 8.31.1
+ debug: 4.4.0
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.1
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
dependencies:
'@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
@@ -7350,11 +7396,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/utils@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@1.21.7))
+ '@typescript-eslint/scope-manager': 8.31.1
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ eslint: 9.25.1(jiti@1.21.7)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/visitor-keys@8.31.0':
dependencies:
'@typescript-eslint/types': 8.31.0
eslint-visitor-keys: 4.2.0
+ '@typescript-eslint/visitor-keys@8.31.1':
+ dependencies:
+ '@typescript-eslint/types': 8.31.1
+ eslint-visitor-keys: 4.2.0
+
'@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))':
dependencies:
vite: 6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
@@ -7493,7 +7555,7 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- angular-eslint@19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript-eslint@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(typescript@5.8.3):
+ angular-eslint@19.3.0(chokidar@4.0.3)(eslint@9.25.1(jiti@1.21.7))(typescript-eslint@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(typescript@5.8.3):
dependencies:
'@angular-devkit/core': 19.2.9(chokidar@4.0.3)
'@angular-devkit/schematics': 19.2.9(chokidar@4.0.3)
@@ -7506,7 +7568,7 @@ snapshots:
'@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
- typescript-eslint: 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ typescript-eslint: 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
transitivePeerDependencies:
- chokidar
- supports-color
@@ -10606,11 +10668,11 @@ snapshots:
typed-assert@1.0.9: {}
- typescript-eslint@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3):
+ typescript-eslint@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/eslint-plugin': 8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.1(eslint@9.25.1(jiti@1.21.7))(typescript@5.8.3)
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
transitivePeerDependencies:
From 285594cadc00aecd296549f67bd3dbf2a34afe13 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Thu, 1 May 2025 00:01:49 +0000
Subject: [PATCH 188/188] fix(deps): update angular
---
package.json | 22 +-
pnpm-lock.yaml | 663 +++++++++++++++++++++++++------------------------
2 files changed, 351 insertions(+), 334 deletions(-)
diff --git a/package.json b/package.json
index 547529bd..c8113f70 100644
--- a/package.json
+++ b/package.json
@@ -15,16 +15,16 @@
},
"private": true,
"dependencies": {
- "@angular/animations": "20.0.0-next.8",
+ "@angular/animations": "20.0.0-next.9",
"@angular/cdk": "20.0.0-next.8",
- "@angular/common": "20.0.0-next.8",
- "@angular/compiler": "20.0.0-next.8",
- "@angular/core": "20.0.0-next.8",
- "@angular/forms": "20.0.0-next.8",
+ "@angular/common": "20.0.0-next.9",
+ "@angular/compiler": "20.0.0-next.9",
+ "@angular/core": "20.0.0-next.9",
+ "@angular/forms": "20.0.0-next.9",
"@angular/material": "20.0.0-next.8",
- "@angular/platform-browser": "20.0.0-next.8",
- "@angular/platform-browser-dynamic": "20.0.0-next.8",
- "@angular/router": "20.0.0-next.8",
+ "@angular/platform-browser": "20.0.0-next.9",
+ "@angular/platform-browser-dynamic": "20.0.0-next.9",
+ "@angular/router": "20.0.0-next.9",
"marked": "^15.0.0",
"ngx-markdown": "^19.0.0",
"prismjs": "^1.29.0",
@@ -33,9 +33,9 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
- "@angular-devkit/build-angular": "20.0.0-next.8",
- "@angular/cli": "20.0.0-next.8",
- "@angular/compiler-cli": "20.0.0-next.8",
+ "@angular-devkit/build-angular": "20.0.0-next.9",
+ "@angular/cli": "20.0.0-next.9",
+ "@angular/compiler-cli": "20.0.0-next.9",
"@eslint/js": "^9.2.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "^19.0.0-alpha.4",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a581d694..6d2b21ad 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,41 +9,41 @@ importers:
.:
dependencies:
'@angular/animations':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
'@angular/cdk':
specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ version: 20.0.0-next.8(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
'@angular/common':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
'@angular/compiler':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9
'@angular/core':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
'@angular/forms':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
'@angular/material':
specifier: 20.0.0-next.8
- version: 20.0.0-next.8(a85dbcc3f730d1b0d687dd3562f18136)
+ version: 20.0.0-next.8(bbb1c99faa061c9c45c426efb0172412)
'@angular/platform-browser':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
'@angular/platform-browser-dynamic':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.8)(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.9)(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))
'@angular/router':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
marked:
specifier: ^15.0.0
version: 15.0.11
ngx-markdown:
specifier: ^19.0.0
- version: 19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.11)(rxjs@7.8.2)(zone.js@0.15.0)
+ version: 19.1.1(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.11)(rxjs@7.8.2)(zone.js@0.15.0)
prismjs:
specifier: ^1.29.0
version: 1.30.0
@@ -58,14 +58,14 @@ importers:
version: 0.15.0
devDependencies:
'@angular-devkit/build-angular':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(4fe82e6445ddd4c8e6df9e6de4bdd970)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(dddfadc72005d81f6c348b22694e4294)
'@angular/cli':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@types/node@22.15.2)(chokidar@4.0.3)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@types/node@22.15.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: 20.0.0-next.8
- version: 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
+ specifier: 20.0.0-next.9
+ version: 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
'@eslint/js':
specifier: ^9.2.0
version: 9.25.1
@@ -113,7 +113,7 @@ importers:
version: 1.1.0(karma@6.4.4)
ng-packagr:
specifier: ~20.0.0-next.8
- version: 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
+ version: 20.0.0-rc.0(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
prettier:
specifier: ~3.5.0
version: 3.5.3
@@ -137,12 +137,12 @@ packages:
resolution: {integrity: sha512-SLUc7EaFMjhCnimqxTcv32wESJBLQ3E6c/1sAndPojyCoGiX24ASu2pxrTXrYNS9DqiJT8tReAnqmh7dmf3xwQ==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-devkit/architect@0.2000.0-next.8':
- resolution: {integrity: sha512-51/FLE/DHfxJ6rGetayn5Tp4SwnYo3rfGflSIBovTEiiSGT8Cz5kuNZkXgcqv7fYIVvtZesIqBkqq4SfXA9YVQ==}
+ '@angular-devkit/architect@0.2000.0-next.9':
+ resolution: {integrity: sha512-YR6AbJTbArhTwNrUYxj52+PH6FFQMPfxIILGqC/ywfrQdU0218sLocfkpGS6FnSNcdgXdzKSZyuWGB+3SSpY0Q==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-devkit/build-angular@20.0.0-next.8':
- resolution: {integrity: sha512-jKMeeYPPeTrzMpF5l902RN6TB92N6qhBkYhmDR68/8C7Hh3xSW43EZWYnezs277/9rTi2SMOJykt6Fiwakun7A==}
+ '@angular-devkit/build-angular@20.0.0-next.9':
+ resolution: {integrity: sha512-ZST69xXPunUFaosiGwaE6xwEn/y1+dv5z+SMbSArLupqLCZO+J8orOTIxd30fqBPrGCBPY7u3AjIUzPkYQtHFQ==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler-cli': ^20.0.0 || ^20.0.0-next.0
@@ -151,7 +151,7 @@ packages:
'@angular/platform-browser': ^20.0.0 || ^20.0.0-next.0
'@angular/platform-server': ^20.0.0 || ^20.0.0-next.0
'@angular/service-worker': ^20.0.0 || ^20.0.0-next.0
- '@angular/ssr': ^20.0.0-next.8
+ '@angular/ssr': ^20.0.0-next.9
'@web/test-runner': ^0.20.0
browser-sync: ^3.0.2
jest: ^29.5.0
@@ -191,8 +191,8 @@ packages:
tailwindcss:
optional: true
- '@angular-devkit/build-webpack@0.2000.0-next.8':
- resolution: {integrity: sha512-px3VunmJicUUfZU1EwC56IzoS1F68qVe5s4aVUV6nBbFeB/9quXTHOVUNQjT2+ZlMTLYHlxDgIRCfuWjPGkynQ==}
+ '@angular-devkit/build-webpack@0.2000.0-next.9':
+ resolution: {integrity: sha512-zliPqpqJid8Mmw+Mn0uxmIfZxPnmpae1DRIUIRQA/MZIt4xs6Yr6scn3I8xooU2osbu3DhxT0xuAoW0vIkt00g==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
@@ -207,8 +207,8 @@ packages:
chokidar:
optional: true
- '@angular-devkit/core@20.0.0-next.8':
- resolution: {integrity: sha512-tZT4HmENfGoH8BKEn6VdZJ5HXPmDTr37pGpLRs4ZT1lAu7OMdcGcq3Z/2Ry/mMr84+f2jXiyIWkoBjjmmVrsCg==}
+ '@angular-devkit/core@20.0.0-next.9':
+ resolution: {integrity: sha512-T6Fl1UZWQsYodeQcp9DbSmHRStuREsFcAoIC1c83NSoxanrx2kZIgz5OoniHkysvyBTnuneN/0gdQTKguxhx6Q==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^4.0.0
@@ -220,8 +220,8 @@ packages:
resolution: {integrity: sha512-B8FQ4hFsP4Ffh895F9GVvyhgDoZztWnAyYKiM1pyvLSQikzaUZqi9NZnD12HgMALmwm2z36zTzoSNsYFBTHgaw==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-devkit/schematics@20.0.0-next.8':
- resolution: {integrity: sha512-0gfRj8pjcQ5539zUnrFURFXjNuwgOLwlgdcD4sg1r/rSAU9oG6ftcC0EP9e4i/dMBfjm9bKCDlGgLxdVZVX9QA==}
+ '@angular-devkit/schematics@20.0.0-next.9':
+ resolution: {integrity: sha512-mtPucxDtz7GpMVRrjxX6seTIiRPwV09n7B8yEVMU2anXEOM/QBgX4rizxscgc69KGU3Tr4Z5m5w+H8jlNxBIoQ==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@angular-eslint/builder@19.3.0':
@@ -264,15 +264,15 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular/animations@20.0.0-next.8':
- resolution: {integrity: sha512-qTUnS2xZA9goGIF35uco2P1IpV3iNjqiZTD2Cp2O79uzPCbR1wrly49WaJxv/ttja8oVV+kHiZ2PdUC9DBh6VQ==}
+ '@angular/animations@20.0.0-next.9':
+ resolution: {integrity: sha512-lO0KPbUiCTE/ODvYZMVms+2tu0yWbBB4ryI4HyFDVlMIIx7a/4jhQVoXQHuLseuw9Z8e9StO3RB7zbEsZjtT5g==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/common': 20.0.0-next.8
- '@angular/core': 20.0.0-next.8
+ '@angular/common': 20.0.0-next.9
+ '@angular/core': 20.0.0-next.9
- '@angular/build@20.0.0-next.8':
- resolution: {integrity: sha512-XFMJH9bdsqA8kYfWgo6Gq6IbcgZ+Q6S976hDswSOSuk3FLQLAMy4E3tNjfpUO88k0P4drwMePbEMTPxsKE27bg==}
+ '@angular/build@20.0.0-next.9':
+ resolution: {integrity: sha512-803SVKnM7gRT7Aiu7KZ3h6zWWfcsxUW2umaqhEwF9zjaYx+Th1RoEjv+SaaeFQ5G0fJnJynutxGLrPu5WZtHNQ==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler': ^20.0.0 || ^20.0.0-next.0
@@ -282,7 +282,7 @@ packages:
'@angular/platform-browser': ^20.0.0 || ^20.0.0-next.0
'@angular/platform-server': ^20.0.0 || ^20.0.0-next.0
'@angular/service-worker': ^20.0.0 || ^20.0.0-next.0
- '@angular/ssr': ^20.0.0-next.8
+ '@angular/ssr': ^20.0.0-next.9
karma: ^6.4.0
less: ^4.2.0
ng-packagr: ^20.0.0 || ^20.0.0-next.0
@@ -324,48 +324,48 @@ packages:
'@angular/core': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/cli@20.0.0-next.8':
- resolution: {integrity: sha512-eT9881dGNKamr5kRCKH50YUJj/+k+f4OXWLUGAb7Z8JObV5uImiL1yZACLXMMGkw8+ts+irQCs/0RfulUHZLig==}
+ '@angular/cli@20.0.0-next.9':
+ resolution: {integrity: sha512-V1ze/mX7WqLrJ5ZzVyVnA2n0jbv7qEbPmkTiCjLQ0Mzv0KrjdbGUPRslUc/URXC0A3KCuVEw8Lpy6xMsTht/Tw==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular/common@20.0.0-next.8':
- resolution: {integrity: sha512-w2LzTuuR5mnSRizBjNKlIw2tVA3u1jjNc7ErZEDWyKT9hBjYOdWz8IFoNRdhra2gVH4l2Bj7f2i8NVRlYjkJFQ==}
+ '@angular/common@20.0.0-next.9':
+ resolution: {integrity: sha512-+V9Rbp6rbkJ7qx/ZGxrIdFb36X1TZSik9eXHVpcUncojdsg+je2mG7fvuCcuktkc2JRhv08TQnhOWi/BNuHQGA==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/core': 20.0.0-next.8
+ '@angular/core': 20.0.0-next.9
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@20.0.0-next.8':
- resolution: {integrity: sha512-EXE/rnd2i0G7ejEP8JV2sNJ4wq8ib5g+qtTy2BLZHg8X1ewqpdf3dI1Id9b7r0sUU8TEzUi9YSOkuqOrpv/1SA==}
+ '@angular/compiler-cli@20.0.0-next.9':
+ resolution: {integrity: sha512-M0kAujqufiNnPt/PJoNj8c7to6epjPfwBYsUf0M6xi1jqjhXYqOJr4FUnatV5WkzjCdfVVf1YrwnGtZnKeUdDg==}
engines: {node: ^20.11.1 || >=22.11.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 20.0.0-next.8
+ '@angular/compiler': 20.0.0-next.9
typescript: '>=5.8 <5.9'
- '@angular/compiler@20.0.0-next.8':
- resolution: {integrity: sha512-XsuNoSCC/QPIDhHN1YbBBxoNxgUh3bGioCZ4DeO43PE2FQ9MFv4DjQhuLH5TNkSig+bXd3sI9kj6MkQgedZi5Q==}
+ '@angular/compiler@20.0.0-next.9':
+ resolution: {integrity: sha512-5f0fEokhjE4JU/d/I7dB1t/TOoGWOGftdqjswfniHij2s/UMdgXNSr7HcTk+AibZ3pT142PDSqtWDuYaG4zAtA==}
engines: {node: ^20.11.1 || >=22.11.0}
- '@angular/core@20.0.0-next.8':
- resolution: {integrity: sha512-DRQQ2D0JAMRlRw380xi3LbONCfvmQSU05RCcuJtaRVnavof3zbAlw8e/A6vD9PIvBj4maCOHgu5ePvM4dgt98w==}
+ '@angular/core@20.0.0-next.9':
+ resolution: {integrity: sha512-dTcDo1mp3A0hsAAajgMHjb8DX/MweUrPqJH660iXSCZVSM5MqFUBhazrJgySt31CKCPE5F3W+ZeISN8QCi9pcQ==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/compiler': 20.0.0-next.8
+ '@angular/compiler': 20.0.0-next.9
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
peerDependenciesMeta:
'@angular/compiler':
optional: true
- '@angular/forms@20.0.0-next.8':
- resolution: {integrity: sha512-VnIlh9metcJ5ZBBfwsPB4huboJR3liqMi9LVxEAg7h50BtB1XpLbmXD1wA4REw4rIUGEdxN3ie9XmuLH2Vk8ZA==}
+ '@angular/forms@20.0.0-next.9':
+ resolution: {integrity: sha512-ne7hBsqpyfpkSgkC7JRBrY5pnPEE+uIm9xYaDjsBzJHaJYGWkkF9eHdPmW7X13Lok8LRG7z24wxZlTeY/UNn0g==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/common': 20.0.0-next.8
- '@angular/core': 20.0.0-next.8
- '@angular/platform-browser': 20.0.0-next.8
+ '@angular/common': 20.0.0-next.9
+ '@angular/core': 20.0.0-next.9
+ '@angular/platform-browser': 20.0.0-next.9
rxjs: ^6.5.3 || ^7.4.0
'@angular/material@20.0.0-next.8':
@@ -378,33 +378,33 @@ packages:
'@angular/platform-browser': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/platform-browser-dynamic@20.0.0-next.8':
- resolution: {integrity: sha512-gsqrycQuNOP5+q3OMrBJlH4hnN6/bAiiw6CJjVniSutQtyqjQiOLQ6ZukpSy62ixJCBPICgBw/t47MKp0xErHQ==}
+ '@angular/platform-browser-dynamic@20.0.0-next.9':
+ resolution: {integrity: sha512-QHWt3w/E84htr5bvgUypF3+WuJX09s5CwA9zWtJdBhJmQLYE8lvKJnAua8Z4l0qDvF+7sTFO/6nMf0fgSDRU0Q==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/common': 20.0.0-next.8
- '@angular/compiler': 20.0.0-next.8
- '@angular/core': 20.0.0-next.8
- '@angular/platform-browser': 20.0.0-next.8
+ '@angular/common': 20.0.0-next.9
+ '@angular/compiler': 20.0.0-next.9
+ '@angular/core': 20.0.0-next.9
+ '@angular/platform-browser': 20.0.0-next.9
- '@angular/platform-browser@20.0.0-next.8':
- resolution: {integrity: sha512-HoeRDDU5ml/9jWUUIn+gbkyZY9xsq+9ok3mOa05nfjX+mP37x2XcehUyM8mZo3nefT+db6dXIWnC6H1z7zbgwg==}
+ '@angular/platform-browser@20.0.0-next.9':
+ resolution: {integrity: sha512-gvyrm4o4UWn/VSiaJirI4hOf50bD6wF3QwpoP9NOG4YQyo5GjFQf6QPGVAfPgKjrp3eyTemVMhFq2yoVj9elNg==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/animations': 20.0.0-next.8
- '@angular/common': 20.0.0-next.8
- '@angular/core': 20.0.0-next.8
+ '@angular/animations': 20.0.0-next.9
+ '@angular/common': 20.0.0-next.9
+ '@angular/core': 20.0.0-next.9
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/router@20.0.0-next.8':
- resolution: {integrity: sha512-QJNJtJg7Zt29jv1tZZDDgw8A2PoM1ZDaBTLGJVj9JStbtfY6QWavxdemX2gtG2rwD6mXwXAG76p+pnkmTFExVQ==}
+ '@angular/router@20.0.0-next.9':
+ resolution: {integrity: sha512-pkgcyBTfO1LIUHBfmnxQNDhWN6Gr7S4RNkvms9n/fj/athKEvAxSjwcqkrIFADkqOw0t2zRjdqEPIoHAouImHw==}
engines: {node: ^20.11.1 || >=22.11.0}
peerDependencies:
- '@angular/common': 20.0.0-next.8
- '@angular/core': 20.0.0-next.8
- '@angular/platform-browser': 20.0.0-next.8
+ '@angular/common': 20.0.0-next.9
+ '@angular/core': 20.0.0-next.9
+ '@angular/platform-browser': 20.0.0-next.9
rxjs: ^6.5.3 || ^7.4.0
'@antfu/install-pkg@1.0.0':
@@ -417,6 +417,10 @@ packages:
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.26.8':
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
@@ -504,6 +508,10 @@ packages:
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
@@ -1224,8 +1232,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/prompts@7.4.1':
- resolution: {integrity: sha512-UlmM5FVOZF0gpoe1PT/jN4vk8JmpIWBlMvTL8M+hlvPmzN89K6z03+IFmyeu/oFCenwdwHDr2gky7nIGSEVvlA==}
+ '@inquirer/prompts@7.5.0':
+ resolution: {integrity: sha512-tk8Bx7l5AX/CR0sVfGj3Xg6v7cYlFBkEahH+EgBB+cZib6Fc83dwerTbzj7f2+qKckjIUGsviWRI1d7lx6nqQA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1496,8 +1504,8 @@ packages:
resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
engines: {node: '>= 10'}
- '@ngtools/webpack@20.0.0-next.8':
- resolution: {integrity: sha512-acLTW8aEf1girmfRp9fo3rP1V/w8y2E8PU06SzLcmeUYa8HpnkWDGyvgugPY1DPFe6xwNarovaFfqFAH+/6G2w==}
+ '@ngtools/webpack@20.0.0-next.9':
+ resolution: {integrity: sha512-e31bSzguIYXHzVBAyoX7TFHRTsOX+QnSdZkZ+CWKTGBIeDCrf7Z8dsJoy2INWJRS5Vnf1CMM32fvtGxkYfPDDw==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
'@angular/compiler-cli': ^20.0.0 || ^20.0.0-next.0
@@ -1657,113 +1665,113 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.0':
- resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==}
+ '@rollup/rollup-android-arm-eabi@4.40.1':
+ resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.0':
- resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==}
+ '@rollup/rollup-android-arm64@4.40.1':
+ resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.0':
- resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==}
+ '@rollup/rollup-darwin-arm64@4.40.1':
+ resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.0':
- resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==}
+ '@rollup/rollup-darwin-x64@4.40.1':
+ resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.0':
- resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==}
+ '@rollup/rollup-freebsd-arm64@4.40.1':
+ resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.0':
- resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==}
+ '@rollup/rollup-freebsd-x64@4.40.1':
+ resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
- resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.0':
- resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.0':
- resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
+ '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.0':
- resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
+ '@rollup/rollup-linux-arm64-musl@4.40.1':
+ resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
- resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
- resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.0':
- resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.0':
- resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
+ '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.0':
- resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
+ '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.0':
- resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
+ '@rollup/rollup-linux-x64-gnu@4.40.1':
+ resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.0':
- resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
+ '@rollup/rollup-linux-x64-musl@4.40.1':
+ resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.0':
- resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.0':
- resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==}
+ '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.0':
- resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==}
+ '@rollup/rollup-win32-x64-msvc@4.40.1':
+ resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
cpu: [x64]
os: [win32]
- '@rollup/wasm-node@4.40.0':
- resolution: {integrity: sha512-TrH9Uwkd+ZAZIaZAceS842hZFig6s7cWJTFmrj/VqMgCmqgkxFjpMqlk8s3cdrIrsCXRshxWlKeys8xpqqA6xg==}
+ '@rollup/wasm-node@4.40.1':
+ resolution: {integrity: sha512-3nXUKfAq1nD/vgQi7ncLNyn8jx1PAsN6njSS9baCpI9JHk92Y/JOWZib7HvLJ5BBZ4MC5NSeqkpUKnmceXyzXA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- '@schematics/angular@20.0.0-next.8':
- resolution: {integrity: sha512-rFhGMuSVqUDk7eKwnvW2QLy7Is25leNj3DbmOQWlbqaHaTbPalSMn0RAcPMxLZNWt3IGHaAO3R3LUQLZwGUVTQ==}
+ '@schematics/angular@20.0.0-next.9':
+ resolution: {integrity: sha512-rE05t3pCS7EaHQixe/qcIp7BGGLgY0tXbuTW422GIFpaQJ6k02GHk9eGhi3UdhHY4D+4TCywz6ISmvO/JWmy8Q==}
engines: {node: ^20.11.1 || >=22.11.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@sigstore/bundle@3.1.0':
@@ -3999,8 +4007,8 @@ packages:
nested-error-stacks@2.1.1:
resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
- ng-packagr@20.0.0-next.8:
- resolution: {integrity: sha512-jmvpjZ0YTW54zc5bRLI+i2SULrx8SxSccpa6lR8PlCPj/6hRbOwWz5YpDbhhDJRzflb1TXB7M29z/Ux18ghe+g==}
+ ng-packagr@20.0.0-rc.0:
+ resolution: {integrity: sha512-XxyqxmF229CYlqqdw2G7WLp2BSacMr0swSiLM7qJBu0jPJFAMmGOfvxOMD542suCekYRaFzzQ+WRpSLftEjV5A==}
engines: {node: ^20.11.1 || >=22.11.0}
hasBin: true
peerDependencies:
@@ -4522,8 +4530,8 @@ packages:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
- rollup@4.40.0:
- resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==}
+ rollup@4.40.1:
+ resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -5020,8 +5028,8 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vite@6.3.2:
- resolution: {integrity: sha512-ZSvGOXKGceizRQIZSz7TGJ0pS3QLlVY/9hwxVh17W3re67je1RKYzFHivZ/t0tubU78Vkyb9WnHPENSBCzbckg==}
+ vite@6.3.4:
+ resolution: {integrity: sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -5137,8 +5145,8 @@ packages:
html-webpack-plugin:
optional: true
- webpack@5.99.6:
- resolution: {integrity: sha512-TJOLrJ6oeccsGWPl7ujCYuc0pIq2cNsuD6GZDma8i5o5Npvcco/z+NKvZSFsP0/x6SShVb0+X2JK/JHUjKY9dQ==}
+ webpack@5.99.7:
+ resolution: {integrity: sha512-CNqKBRMQjwcmKR0idID5va1qlhrqVUKpovi+Ec79ksW8ux7iS1+A6VqzfZXgVYCFRKl7XL5ap3ZoMpwBJxcg0w==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -5279,21 +5287,21 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/architect@0.2000.0-next.8(chokidar@4.0.3)':
+ '@angular-devkit/architect@0.2000.0-next.9(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
+ '@angular-devkit/core': 20.0.0-next.9(chokidar@4.0.3)
rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@20.0.0-next.8(4fe82e6445ddd4c8e6df9e6de4bdd970)':
+ '@angular-devkit/build-angular@20.0.0-next.9(dddfadc72005d81f6c348b22694e4294)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
- '@angular-devkit/build-webpack': 0.2000.0-next.8(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.99.6))(webpack@5.99.6(esbuild@0.25.3))
- '@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
- '@angular/build': 20.0.0-next.8(3513f8f78f326c3dac6587251a2bd87e)
- '@angular/compiler-cli': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
+ '@angular-devkit/architect': 0.2000.0-next.9(chokidar@4.0.3)
+ '@angular-devkit/build-webpack': 0.2000.0-next.9(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.99.7))(webpack@5.99.7(esbuild@0.25.3))
+ '@angular-devkit/core': 20.0.0-next.9(chokidar@4.0.3)
+ '@angular/build': 20.0.0-next.9(86f5bb51c57de762b7b0a931605636cc)
+ '@angular/compiler-cli': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
'@babel/core': 7.26.10
'@babel/generator': 7.27.0
'@babel/helper-annotate-as-pure': 7.25.9
@@ -5304,14 +5312,14 @@ snapshots:
'@babel/preset-env': 7.26.9(@babel/core@7.26.10)
'@babel/runtime': 7.27.0
'@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.6(esbuild@0.25.3))
- '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
+ '@ngtools/webpack': 20.0.0-next.9(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.7(esbuild@0.25.3))
+ '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.4(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
ansi-colors: 4.1.3
autoprefixer: 10.4.21(postcss@8.5.3)
- babel-loader: 10.0.0(@babel/core@7.26.10)(webpack@5.99.6(esbuild@0.25.3))
+ babel-loader: 10.0.0(@babel/core@7.26.10)(webpack@5.99.7(esbuild@0.25.3))
browserslist: 4.24.4
- copy-webpack-plugin: 13.0.0(webpack@5.99.6(esbuild@0.25.3))
- css-loader: 7.1.2(webpack@5.99.6(esbuild@0.25.3))
+ copy-webpack-plugin: 13.0.0(webpack@5.99.7(esbuild@0.25.3))
+ css-loader: 7.1.2(webpack@5.99.7(esbuild@0.25.3))
esbuild-wasm: 0.25.3
fast-glob: 3.3.3
http-proxy-middleware: 3.0.5
@@ -5319,38 +5327,38 @@ snapshots:
jsonc-parser: 3.3.1
karma-source-map-support: 1.4.0
less: 4.3.0
- less-loader: 12.2.0(less@4.3.0)(webpack@5.99.6(esbuild@0.25.3))
- license-webpack-plugin: 4.0.2(webpack@5.99.6(esbuild@0.25.3))
+ less-loader: 12.2.0(less@4.3.0)(webpack@5.99.7(esbuild@0.25.3))
+ license-webpack-plugin: 4.0.2(webpack@5.99.7(esbuild@0.25.3))
loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2(webpack@5.99.6(esbuild@0.25.3))
+ mini-css-extract-plugin: 2.9.2(webpack@5.99.7(esbuild@0.25.3))
open: 10.1.1
ora: 5.4.1
picomatch: 4.0.2
piscina: 4.9.2
postcss: 8.5.3
- postcss-loader: 8.1.1(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.6(esbuild@0.25.3))
+ postcss-loader: 8.1.1(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.7(esbuild@0.25.3))
resolve-url-loader: 5.0.0
rxjs: 7.8.2
sass: 1.87.0
- sass-loader: 16.0.5(sass@1.87.0)(webpack@5.99.6(esbuild@0.25.3))
+ sass-loader: 16.0.5(sass@1.87.0)(webpack@5.99.7(esbuild@0.25.3))
semver: 7.7.1
- source-map-loader: 5.0.0(webpack@5.99.6(esbuild@0.25.3))
+ source-map-loader: 5.0.0(webpack@5.99.7(esbuild@0.25.3))
source-map-support: 0.5.21
terser: 5.39.0
tree-kill: 1.2.2
tslib: 2.8.1
typescript: 5.8.3
- webpack: 5.99.6(esbuild@0.25.3)
- webpack-dev-middleware: 7.4.2(webpack@5.99.6)
- webpack-dev-server: 5.2.1(webpack@5.99.6)
+ webpack: 5.99.7(esbuild@0.25.3)
+ webpack-dev-middleware: 7.4.2(webpack@5.99.7)
+ webpack-dev-server: 5.2.1(webpack@5.99.7)
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(webpack@5.99.6(esbuild@0.25.3))
+ webpack-subresource-integrity: 5.1.0(webpack@5.99.7(esbuild@0.25.3))
optionalDependencies:
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
esbuild: 0.25.3
karma: 6.4.4
- ng-packagr: 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
+ ng-packagr: 20.0.0-rc.0(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
transitivePeerDependencies:
- '@angular/compiler'
- '@rspack/core'
@@ -5375,12 +5383,12 @@ snapshots:
- webpack-cli
- yaml
- '@angular-devkit/build-webpack@0.2000.0-next.8(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.99.6))(webpack@5.99.6(esbuild@0.25.3))':
+ '@angular-devkit/build-webpack@0.2000.0-next.9(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.99.7))(webpack@5.99.7(esbuild@0.25.3))':
dependencies:
- '@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
+ '@angular-devkit/architect': 0.2000.0-next.9(chokidar@4.0.3)
rxjs: 7.8.2
- webpack: 5.99.6(esbuild@0.25.3)
- webpack-dev-server: 5.2.1(webpack@5.99.6)
+ webpack: 5.99.7(esbuild@0.25.3)
+ webpack-dev-server: 5.2.1(webpack@5.99.7)
transitivePeerDependencies:
- chokidar
@@ -5395,7 +5403,7 @@ snapshots:
optionalDependencies:
chokidar: 4.0.3
- '@angular-devkit/core@20.0.0-next.8(chokidar@4.0.3)':
+ '@angular-devkit/core@20.0.0-next.9(chokidar@4.0.3)':
dependencies:
ajv: 8.17.1
ajv-formats: 3.0.1(ajv@8.17.1)
@@ -5416,9 +5424,9 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/schematics@20.0.0-next.8(chokidar@4.0.3)':
+ '@angular-devkit/schematics@20.0.0-next.9(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
+ '@angular-devkit/core': 20.0.0-next.9(chokidar@4.0.3)
jsonc-parser: 3.3.1
magic-string: 0.30.17
ora: 5.4.1
@@ -5486,23 +5494,23 @@ snapshots:
eslint: 9.25.1(jiti@1.21.7)
typescript: 5.8.3
- '@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))':
+ '@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))':
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
tslib: 2.8.1
- '@angular/build@20.0.0-next.8(3513f8f78f326c3dac6587251a2bd87e)':
+ '@angular/build@20.0.0-next.9(86f5bb51c57de762b7b0a931605636cc)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
- '@angular/compiler': 20.0.0-next.8
- '@angular/compiler-cli': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
+ '@angular-devkit/architect': 0.2000.0-next.9(chokidar@4.0.3)
+ '@angular/compiler': 20.0.0-next.9
+ '@angular/compiler-cli': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
'@babel/core': 7.26.10
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-split-export-declaration': 7.24.7
'@inquirer/confirm': 5.1.9(@types/node@22.15.2)
- '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
+ '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.4(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))
beasties: 0.3.3
browserslist: 4.24.4
esbuild: 0.25.3
@@ -5515,22 +5523,22 @@ snapshots:
parse5-html-rewriting-stream: 7.1.0
picomatch: 4.0.2
piscina: 4.9.2
- rollup: 4.40.0
+ rollup: 4.40.1
sass: 1.87.0
semver: 7.7.1
source-map-support: 0.5.21
tinyglobby: 0.2.13
tslib: 2.8.1
typescript: 5.8.3
- vite: 6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
+ vite: 6.3.4(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
watchpack: 2.4.2
optionalDependencies:
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
karma: 6.4.4
less: 4.3.0
lmdb: 3.2.6
- ng-packagr: 20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
+ ng-packagr: 20.0.0-rc.0(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3)
postcss: 8.5.3
transitivePeerDependencies:
- '@types/node'
@@ -5545,22 +5553,22 @@ snapshots:
- tsx
- yaml
- '@angular/cdk@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
+ '@angular/cdk@20.0.0-next.8(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
parse5: 7.3.0
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/cli@20.0.0-next.8(@types/node@22.15.2)(chokidar@4.0.3)':
+ '@angular/cli@20.0.0-next.9(@types/node@22.15.2)(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/architect': 0.2000.0-next.8(chokidar@4.0.3)
- '@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.0.0-next.8(chokidar@4.0.3)
- '@inquirer/prompts': 7.4.1(@types/node@22.15.2)
- '@listr2/prompt-adapter-inquirer': 2.0.21(@inquirer/prompts@7.4.1(@types/node@22.15.2))
- '@schematics/angular': 20.0.0-next.8(chokidar@4.0.3)
+ '@angular-devkit/architect': 0.2000.0-next.9(chokidar@4.0.3)
+ '@angular-devkit/core': 20.0.0-next.9(chokidar@4.0.3)
+ '@angular-devkit/schematics': 20.0.0-next.9(chokidar@4.0.3)
+ '@inquirer/prompts': 7.5.0(@types/node@22.15.2)
+ '@listr2/prompt-adapter-inquirer': 2.0.21(@inquirer/prompts@7.5.0(@types/node@22.15.2))
+ '@schematics/angular': 20.0.0-next.9(chokidar@4.0.3)
'@yarnpkg/lockfile': 1.1.0
ini: 5.0.0
jsonc-parser: 3.3.1
@@ -5576,15 +5584,15 @@ snapshots:
- chokidar
- supports-color
- '@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
+ '@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)':
dependencies:
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)':
+ '@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)':
dependencies:
- '@angular/compiler': 20.0.0-next.8
+ '@angular/compiler': 20.0.0-next.9
'@babel/core': 7.26.10
'@jridgewell/sourcemap-codec': 1.5.0
chokidar: 4.0.3
@@ -5597,57 +5605,57 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@angular/compiler@20.0.0-next.8':
+ '@angular/compiler@20.0.0-next.9':
dependencies:
tslib: 2.8.1
- '@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)':
+ '@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)':
dependencies:
rxjs: 7.8.2
tslib: 2.8.1
zone.js: 0.15.0
optionalDependencies:
- '@angular/compiler': 20.0.0-next.8
+ '@angular/compiler': 20.0.0-next.9
- '@angular/forms@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
+ '@angular/forms@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/material@20.0.0-next.8(a85dbcc3f730d1b0d687dd3562f18136)':
+ '@angular/material@20.0.0-next.8(bbb1c99faa061c9c45c426efb0172412)':
dependencies:
- '@angular/cdk': 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/forms': 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/cdk': 20.0.0-next.8(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/forms': 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/platform-browser-dynamic@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.8)(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))':
+ '@angular/platform-browser-dynamic@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.9)(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))':
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/compiler': 20.0.0-next.8
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/compiler': 20.0.0-next.9
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
tslib: 2.8.1
- '@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))':
+ '@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))':
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
tslib: 2.8.1
optionalDependencies:
- '@angular/animations': 20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/animations': 20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
- '@angular/router@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
+ '@angular/router@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
rxjs: 7.8.2
tslib: 2.8.1
@@ -5666,6 +5674,12 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/code-frame@7.27.1':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.27.1
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
'@babel/compat-data@7.26.8': {}
'@babel/core@7.26.10':
@@ -5801,6 +5815,8 @@ snapshots:
'@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
+
'@babel/helper-validator-option@7.25.9': {}
'@babel/helper-wrap-function@7.25.9':
@@ -6563,7 +6579,7 @@ snapshots:
optionalDependencies:
'@types/node': 22.15.2
- '@inquirer/prompts@7.4.1(@types/node@22.15.2)':
+ '@inquirer/prompts@7.5.0(@types/node@22.15.2)':
dependencies:
'@inquirer/checkbox': 4.1.5(@types/node@22.15.2)
'@inquirer/confirm': 5.1.9(@types/node@22.15.2)
@@ -6668,9 +6684,9 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.21(@inquirer/prompts@7.4.1(@types/node@22.15.2))':
+ '@listr2/prompt-adapter-inquirer@2.0.21(@inquirer/prompts@7.5.0(@types/node@22.15.2))':
dependencies:
- '@inquirer/prompts': 7.4.1(@types/node@22.15.2)
+ '@inquirer/prompts': 7.5.0(@types/node@22.15.2)
'@inquirer/type': 1.5.5
'@lmdb/lmdb-darwin-arm64@3.2.6':
@@ -6782,11 +6798,11 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.0.1
optional: true
- '@ngtools/webpack@20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.6(esbuild@0.25.3))':
+ '@ngtools/webpack@20.0.0-next.9(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.7(esbuild@0.25.3))':
dependencies:
- '@angular/compiler-cli': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
+ '@angular/compiler-cli': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
typescript: 5.8.3
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -6923,90 +6939,90 @@ snapshots:
'@pkgjs/parseargs@0.11.0':
optional: true
- '@rollup/plugin-json@6.1.0(rollup@4.40.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.40.1)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.1
- '@rollup/pluginutils@5.1.4(rollup@4.40.0)':
+ '@rollup/pluginutils@5.1.4(rollup@4.40.1)':
dependencies:
'@types/estree': 1.0.7
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.1
- '@rollup/rollup-android-arm-eabi@4.40.0':
+ '@rollup/rollup-android-arm-eabi@4.40.1':
optional: true
- '@rollup/rollup-android-arm64@4.40.0':
+ '@rollup/rollup-android-arm64@4.40.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.0':
+ '@rollup/rollup-darwin-arm64@4.40.1':
optional: true
- '@rollup/rollup-darwin-x64@4.40.0':
+ '@rollup/rollup-darwin-x64@4.40.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.0':
+ '@rollup/rollup-freebsd-arm64@4.40.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.0':
+ '@rollup/rollup-freebsd-x64@4.40.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.40.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.0':
+ '@rollup/rollup-linux-arm64-gnu@4.40.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.0':
+ '@rollup/rollup-linux-arm64-musl@4.40.1':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.40.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.0':
+ '@rollup/rollup-linux-riscv64-musl@4.40.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.0':
+ '@rollup/rollup-linux-s390x-gnu@4.40.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.0':
+ '@rollup/rollup-linux-x64-gnu@4.40.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.0':
+ '@rollup/rollup-linux-x64-musl@4.40.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.0':
+ '@rollup/rollup-win32-arm64-msvc@4.40.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.0':
+ '@rollup/rollup-win32-ia32-msvc@4.40.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.0':
+ '@rollup/rollup-win32-x64-msvc@4.40.1':
optional: true
- '@rollup/wasm-node@4.40.0':
+ '@rollup/wasm-node@4.40.1':
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
fsevents: 2.3.3
- '@schematics/angular@20.0.0-next.8(chokidar@4.0.3)':
+ '@schematics/angular@20.0.0-next.9(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 20.0.0-next.8(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.0.0-next.8(chokidar@4.0.3)
+ '@angular-devkit/core': 20.0.0-next.9(chokidar@4.0.3)
+ '@angular-devkit/schematics': 20.0.0-next.9(chokidar@4.0.3)
jsonc-parser: 3.3.1
transitivePeerDependencies:
- chokidar
@@ -7417,9 +7433,9 @@ snapshots:
'@typescript-eslint/types': 8.31.1
eslint-visitor-keys: 4.2.0
- '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))':
+ '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.4(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0))':
dependencies:
- vite: 6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
+ vite: 6.3.4(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0)
'@webassemblyjs/ast@1.14.1':
dependencies:
@@ -7620,11 +7636,11 @@ snapshots:
axobject-query@4.1.0: {}
- babel-loader@10.0.0(@babel/core@7.26.10)(webpack@5.99.6(esbuild@0.25.3)):
+ babel-loader@10.0.0(@babel/core@7.26.10)(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
'@babel/core': 7.26.10
find-up: 5.0.0
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10):
dependencies:
@@ -7933,14 +7949,14 @@ snapshots:
dependencies:
is-what: 3.14.1
- copy-webpack-plugin@13.0.0(webpack@5.99.6(esbuild@0.25.3)):
+ copy-webpack-plugin@13.0.0(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
glob-parent: 6.0.2
normalize-path: 3.0.0
schema-utils: 4.3.2
serialize-javascript: 6.0.2
tinyglobby: 0.2.13
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
core-js-compat@3.41.0:
dependencies:
@@ -8000,7 +8016,7 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- css-loader@7.1.2(webpack@5.99.6(esbuild@0.25.3)):
+ css-loader@7.1.2(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
icss-utils: 5.1.0(postcss@8.5.3)
postcss: 8.5.3
@@ -8011,7 +8027,7 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.7.1
optionalDependencies:
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
css-select@5.1.0:
dependencies:
@@ -9259,11 +9275,11 @@ snapshots:
layout-base@2.0.1:
optional: true
- less-loader@12.2.0(less@4.3.0)(webpack@5.99.6(esbuild@0.25.3)):
+ less-loader@12.2.0(less@4.3.0)(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
less: 4.3.0
optionalDependencies:
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
less@4.3.0:
dependencies:
@@ -9284,11 +9300,11 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.99.6(esbuild@0.25.3)):
+ license-webpack-plugin@4.0.2(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
lines-and-columns@1.2.4: {}
@@ -9484,11 +9500,11 @@ snapshots:
mimic-function@5.0.1: {}
- mini-css-extract-plugin@2.9.2(webpack@5.99.6(esbuild@0.25.3)):
+ mini-css-extract-plugin@2.9.2(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
schema-utils: 4.3.2
tapable: 2.2.1
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
minimalistic-assert@1.0.1: {}
@@ -9611,12 +9627,12 @@ snapshots:
nested-error-stacks@2.1.1: {}
- ng-packagr@20.0.0-next.8(@angular/compiler-cli@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3):
+ ng-packagr@20.0.0-rc.0(@angular/compiler-cli@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3):
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular/compiler-cli': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(typescript@5.8.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.40.0)
- '@rollup/wasm-node': 4.40.0
+ '@angular/compiler-cli': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(typescript@5.8.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.40.1)
+ '@rollup/wasm-node': 4.40.1
ajv: 8.17.1
ansi-colors: 4.1.3
browserslist: 4.24.4
@@ -9631,20 +9647,20 @@ snapshots:
ora: 5.4.1
piscina: 4.9.2
postcss: 8.5.3
- rollup-plugin-dts: 6.2.1(rollup@4.40.0)(typescript@5.8.3)
+ rollup-plugin-dts: 6.2.1(rollup@4.40.1)(typescript@5.8.3)
rxjs: 7.8.2
sass: 1.87.0
tinyglobby: 0.2.13
tslib: 2.8.1
typescript: 5.8.3
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.1
- ngx-markdown@19.1.1(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.11)(rxjs@7.8.2)(zone.js@0.15.0):
+ ngx-markdown@19.1.1(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(marked@15.0.11)(rxjs@7.8.2)(zone.js@0.15.0):
dependencies:
- '@angular/common': 20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
- '@angular/core': 20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)
- '@angular/platform-browser': 20.0.0-next.8(@angular/animations@20.0.0-next.8(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.8(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.8(@angular/compiler@20.0.0-next.8)(rxjs@7.8.2)(zone.js@0.15.0))
+ '@angular/common': 20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)
+ '@angular/core': 20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)
+ '@angular/platform-browser': 20.0.0-next.9(@angular/animations@20.0.0-next.9(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.9(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.9(@angular/compiler@20.0.0-next.9)(rxjs@7.8.2)(zone.js@0.15.0))
marked: 15.0.11
rxjs: 7.8.2
tslib: 2.8.1
@@ -9879,7 +9895,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -9965,14 +9981,14 @@ snapshots:
points-on-curve: 0.2.0
optional: true
- postcss-loader@8.1.1(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.6(esbuild@0.25.3)):
+ postcss-loader@8.1.1(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.8.3)
jiti: 1.21.7
postcss: 8.5.3
semver: 7.7.1
optionalDependencies:
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
transitivePeerDependencies:
- typescript
@@ -10168,38 +10184,38 @@ snapshots:
robust-predicates@3.0.2:
optional: true
- rollup-plugin-dts@6.2.1(rollup@4.40.0)(typescript@5.8.3):
+ rollup-plugin-dts@6.2.1(rollup@4.40.1)(typescript@5.8.3):
dependencies:
magic-string: 0.30.17
- rollup: 4.40.0
+ rollup: 4.40.1
typescript: 5.8.3
optionalDependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
- rollup@4.40.0:
+ rollup@4.40.1:
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.0
- '@rollup/rollup-android-arm64': 4.40.0
- '@rollup/rollup-darwin-arm64': 4.40.0
- '@rollup/rollup-darwin-x64': 4.40.0
- '@rollup/rollup-freebsd-arm64': 4.40.0
- '@rollup/rollup-freebsd-x64': 4.40.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.0
- '@rollup/rollup-linux-arm-musleabihf': 4.40.0
- '@rollup/rollup-linux-arm64-gnu': 4.40.0
- '@rollup/rollup-linux-arm64-musl': 4.40.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0
- '@rollup/rollup-linux-riscv64-gnu': 4.40.0
- '@rollup/rollup-linux-riscv64-musl': 4.40.0
- '@rollup/rollup-linux-s390x-gnu': 4.40.0
- '@rollup/rollup-linux-x64-gnu': 4.40.0
- '@rollup/rollup-linux-x64-musl': 4.40.0
- '@rollup/rollup-win32-arm64-msvc': 4.40.0
- '@rollup/rollup-win32-ia32-msvc': 4.40.0
- '@rollup/rollup-win32-x64-msvc': 4.40.0
+ '@rollup/rollup-android-arm-eabi': 4.40.1
+ '@rollup/rollup-android-arm64': 4.40.1
+ '@rollup/rollup-darwin-arm64': 4.40.1
+ '@rollup/rollup-darwin-x64': 4.40.1
+ '@rollup/rollup-freebsd-arm64': 4.40.1
+ '@rollup/rollup-freebsd-x64': 4.40.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.40.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.40.1
+ '@rollup/rollup-linux-arm64-gnu': 4.40.1
+ '@rollup/rollup-linux-arm64-musl': 4.40.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.40.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.40.1
+ '@rollup/rollup-linux-riscv64-musl': 4.40.1
+ '@rollup/rollup-linux-s390x-gnu': 4.40.1
+ '@rollup/rollup-linux-x64-gnu': 4.40.1
+ '@rollup/rollup-linux-x64-musl': 4.40.1
+ '@rollup/rollup-win32-arm64-msvc': 4.40.1
+ '@rollup/rollup-win32-ia32-msvc': 4.40.1
+ '@rollup/rollup-win32-x64-msvc': 4.40.1
fsevents: 2.3.3
roughjs@4.6.6:
@@ -10239,12 +10255,12 @@ snapshots:
safer-buffer@2.1.2: {}
- sass-loader@16.0.5(sass@1.87.0)(webpack@5.99.6(esbuild@0.25.3)):
+ sass-loader@16.0.5(sass@1.87.0)(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
sass: 1.87.0
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
sass@1.87.0:
dependencies:
@@ -10448,11 +10464,11 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.99.6(esbuild@0.25.3)):
+ source-map-loader@5.0.0(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
source-map-support@0.5.21:
dependencies:
@@ -10585,14 +10601,14 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- terser-webpack-plugin@5.3.14(esbuild@0.25.3)(webpack@5.99.6):
+ terser-webpack-plugin@5.3.14(esbuild@0.25.3)(webpack@5.99.7):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.2
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
optionalDependencies:
esbuild: 0.25.3
@@ -10738,13 +10754,13 @@ snapshots:
vary@1.1.2: {}
- vite@6.3.2(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0):
+ vite@6.3.4(@types/node@22.15.2)(jiti@1.21.7)(less@4.3.0)(sass@1.87.0)(terser@5.39.0):
dependencies:
esbuild: 0.25.3
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
postcss: 8.5.3
- rollup: 4.40.0
+ rollup: 4.40.1
tinyglobby: 0.2.13
optionalDependencies:
'@types/node': 22.15.2
@@ -10795,7 +10811,7 @@ snapshots:
weak-lru-cache@1.2.2:
optional: true
- webpack-dev-middleware@7.4.2(webpack@5.99.6):
+ webpack-dev-middleware@7.4.2(webpack@5.99.7):
dependencies:
colorette: 2.0.20
memfs: 4.17.0
@@ -10804,9 +10820,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.3.2
optionalDependencies:
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
- webpack-dev-server@5.2.1(webpack@5.99.6):
+ webpack-dev-server@5.2.1(webpack@5.99.7):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -10834,10 +10850,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.99.6)
+ webpack-dev-middleware: 7.4.2(webpack@5.99.7)
ws: 8.18.1
optionalDependencies:
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
transitivePeerDependencies:
- bufferutil
- debug
@@ -10852,15 +10868,16 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-subresource-integrity@5.1.0(webpack@5.99.6(esbuild@0.25.3)):
+ webpack-subresource-integrity@5.1.0(webpack@5.99.7(esbuild@0.25.3)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.7(esbuild@0.25.3)
- webpack@5.99.6(esbuild@0.25.3):
+ webpack@5.99.7(esbuild@0.25.3):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.7
+ '@types/json-schema': 7.0.15
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
@@ -10879,7 +10896,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(esbuild@0.25.3)(webpack@5.99.6)
+ terser-webpack-plugin: 5.3.14(esbuild@0.25.3)(webpack@5.99.7)
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies: