diff --git a/apps/demo/src/app/app.component.html b/apps/demo/src/app/app.component.html
index f9288acf..ee098ba7 100644
--- a/apps/demo/src/app/app.component.html
+++ b/apps/demo/src/app/app.component.html
@@ -12,12 +12,13 @@
/>
+
{
@Component({
standalone: true,
selector: 'getting-started',
- imports: [RouterLink, TuiDocCodeModule, TuiDocPageModule, TuiLinkModule],
+ imports: [RouterLink, TuiAddonDoc, TuiLink],
templateUrl: './index.html',
styles: [':host {max-width: 1200px}'],
changeDetection: ChangeDetectionStrategy.OnPush,
diff --git a/apps/demo/src/app/logo/index.ts b/apps/demo/src/app/logo/index.ts
index 0598589f..26292291 100644
--- a/apps/demo/src/app/logo/index.ts
+++ b/apps/demo/src/app/logo/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {PolymorpheusComponent} from '@tinkoff/ng-polymorpheus';
+import {PolymorpheusComponent} from '@taiga-ui/polymorpheus';
@Component({
standalone: true,
diff --git a/apps/demo/src/app/pages.ts b/apps/demo/src/app/pages.ts
index c898eb35..137fba01 100644
--- a/apps/demo/src/app/pages.ts
+++ b/apps/demo/src/app/pages.ts
@@ -1,6 +1,6 @@
-import type {TuiDocPages} from '@taiga-ui/addon-doc';
+import type {TuiDocRoutePages} from '@taiga-ui/addon-doc';
-export const pages: TuiDocPages = [
+export const pages: TuiDocRoutePages = [
{
section: 'Starting',
title: 'Getting started',
diff --git a/apps/demo/src/app/pages/classes/index.ts b/apps/demo/src/app/pages/classes/index.ts
index 1f4f3405..b37d7efb 100644
--- a/apps/demo/src/app/pages/classes/index.ts
+++ b/apps/demo/src/app/pages/classes/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
import {ACCESSORS_SAMPLES} from './samples/accessors';
import {CONSTRUCTORS_SAMPLES} from './samples/constructors';
@@ -77,7 +77,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/enums/index.ts b/apps/demo/src/app/pages/enums/index.ts
index 93598cc2..19b2c623 100644
--- a/apps/demo/src/app/pages/enums/index.ts
+++ b/apps/demo/src/app/pages/enums/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const code = `import {
addEnums,
@@ -37,7 +37,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/functions/index.ts b/apps/demo/src/app/pages/functions/index.ts
index e181c55c..addc9115 100644
--- a/apps/demo/src/app/pages/functions/index.ts
+++ b/apps/demo/src/app/pages/functions/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiAddonDocModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const code = `import {
addFunctions,
@@ -33,7 +33,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiAddonDocModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/get-bootstrap-function/index.ts b/apps/demo/src/app/pages/get-bootstrap-function/index.ts
index 6c8b37c9..c7debcf7 100644
--- a/apps/demo/src/app/pages/get-bootstrap-function/index.ts
+++ b/apps/demo/src/app/pages/get-bootstrap-function/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const bootstrap = `import {
getBootstrapFn,
@@ -36,7 +36,7 @@ addProviderToBootstrapApplicationFn(bootstrapFn, 'provideRouter()');
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/get-main-module/index.ts b/apps/demo/src/app/pages/get-main-module/index.ts
index 4030ddc6..d5f0c029 100644
--- a/apps/demo/src/app/pages/get-main-module/index.ts
+++ b/apps/demo/src/app/pages/get-main-module/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiAddonDocModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const code = `import {
getMainModule
@@ -13,7 +13,7 @@ const classDeclaration = getMainModule('src/main.ts');
@Component({
standalone: true,
- imports: [TuiAddonDocModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/imports-and-exports/index.ts b/apps/demo/src/app/pages/imports-and-exports/index.ts
index b427f9cc..5e0575a3 100644
--- a/apps/demo/src/app/pages/imports-and-exports/index.ts
+++ b/apps/demo/src/app/pages/imports-and-exports/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const imports = `import {
addImports,
@@ -88,7 +88,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/inject-sample/index.ts b/apps/demo/src/app/pages/inject-sample/index.ts
index 63032ad2..b33d6a96 100644
--- a/apps/demo/src/app/pages/inject-sample/index.ts
+++ b/apps/demo/src/app/pages/inject-sample/index.ts
@@ -1,6 +1,6 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
-import {TuiLinkModule} from '@taiga-ui/core';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
+import {TuiLink} from '@taiga-ui/core';
const example = `import {
setActiveProject,
@@ -72,7 +72,7 @@ function fixInjectImport(file: string) {
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule, TuiLinkModule],
+ imports: [TuiAddonDoc, TuiLink],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/interfaces/index.ts b/apps/demo/src/app/pages/interfaces/index.ts
index 2b052fdc..76598fc6 100644
--- a/apps/demo/src/app/pages/interfaces/index.ts
+++ b/apps/demo/src/app/pages/interfaces/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const interfaces = `import {
addInterfaces,
@@ -31,7 +31,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/source-files/index.ts b/apps/demo/src/app/pages/source-files/index.ts
index 42f94e32..13e2f383 100644
--- a/apps/demo/src/app/pages/source-files/index.ts
+++ b/apps/demo/src/app/pages/source-files/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const code = `import {
createSourceFile,
@@ -24,7 +24,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/types/index.ts b/apps/demo/src/app/pages/types/index.ts
index cb20ccd1..906db04d 100644
--- a/apps/demo/src/app/pages/types/index.ts
+++ b/apps/demo/src/app/pages/types/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiDocCodeModule, TuiDocPageModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const types = `import {
addTypeAliases,
@@ -31,7 +31,7 @@ saveActiveProject();
@Component({
standalone: true,
- imports: [TuiDocCodeModule, TuiDocPageModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/app/pages/variables/index.ts b/apps/demo/src/app/pages/variables/index.ts
index f13e2556..78e3329d 100644
--- a/apps/demo/src/app/pages/variables/index.ts
+++ b/apps/demo/src/app/pages/variables/index.ts
@@ -1,5 +1,5 @@
import {ChangeDetectionStrategy, Component} from '@angular/core';
-import {TuiAddonDocModule} from '@taiga-ui/addon-doc';
+import {TuiAddonDoc} from '@taiga-ui/addon-doc';
const code = `import {
addVariables,
@@ -36,7 +36,7 @@ saveActiveProject();
@Component({
standalone: true,
selector: 'variables',
- imports: [TuiAddonDocModule],
+ imports: [TuiAddonDoc],
templateUrl: './index.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
diff --git a/apps/demo/src/main.ts b/apps/demo/src/main.ts
index 101c41e3..83f4533d 100644
--- a/apps/demo/src/main.ts
+++ b/apps/demo/src/main.ts
@@ -6,7 +6,7 @@ import {
} from '@angular/platform-browser/animations';
import {PreloadAllModules, provideRouter, withPreloading} from '@angular/router';
import {TUI_DOC_LOGO, TUI_DOC_PAGES} from '@taiga-ui/addon-doc';
-import {TuiRootModule} from '@taiga-ui/core';
+import {NG_EVENT_PLUGINS} from '@taiga-ui/event-plugins';
import {AppComponent} from './app/app.component';
import {LOGO_CONTENT} from './app/logo';
@@ -15,7 +15,7 @@ import {ROUTES} from './app/routes';
bootstrapApplication(AppComponent, {
providers: [
- importProvidersFrom(BrowserModule, BrowserAnimationsModule, TuiRootModule),
+ importProvidersFrom(BrowserModule, BrowserAnimationsModule),
provideRouter(ROUTES, withPreloading(PreloadAllModules)),
{
provide: TUI_DOC_LOGO,
@@ -26,5 +26,6 @@ bootstrapApplication(AppComponent, {
useValue: pages,
},
provideAnimations(),
+ NG_EVENT_PLUGINS,
],
}).catch((e: unknown) => console.error(e));
diff --git a/apps/demo/src/styles.less b/apps/demo/src/styles.less
index e905d9ba..6a39cc72 100644
--- a/apps/demo/src/styles.less
+++ b/apps/demo/src/styles.less
@@ -6,10 +6,10 @@ li {
}
code {
- background: var(--tui-base-02);
- color: var(--tui-link);
+ background: var(--tui-background-base-alt);
+ color: var(--tui-text-action);
vertical-align: middle;
- box-shadow: inset 0 -2px var(--tui-secondary);
+ box-shadow: inset 0 -2px var(--tui-background-neutral-1);
padding: 0.375rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.5rem;
diff --git a/package-lock.json b/package-lock.json
index b6c1b24d..e16d314b 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -28,17 +28,18 @@
"@nx/node": "20.0.0",
"@nx/workspace": "20.0.0",
"@schematics/angular": "16.2.16",
- "@taiga-ui/addon-doc": "3.95.1",
- "@taiga-ui/addon-mobile": "3.95.1",
+ "@taiga-ui/addon-doc": "4.9.0",
+ "@taiga-ui/addon-mobile": "4.9.0",
"@taiga-ui/auto-changelog-config": "0.222.5",
"@taiga-ui/browserslist-config": "0.222.5",
- "@taiga-ui/cdk": "3.95.1",
+ "@taiga-ui/cdk": "4.9.0",
"@taiga-ui/commitlint-config": "0.222.5",
- "@taiga-ui/core": "3.95.1",
+ "@taiga-ui/core": "4.9.0",
"@taiga-ui/cspell-config": "0.222.5",
"@taiga-ui/eslint-plugin-experience": "0.222.5",
- "@taiga-ui/icons": "3.95.1",
- "@taiga-ui/kit": "3.95.1",
+ "@taiga-ui/event-plugins": "^4.2.3",
+ "@taiga-ui/icons": "4.9.0",
+ "@taiga-ui/kit": "4.9.0",
"@taiga-ui/prettier-config": "0.222.5",
"@taiga-ui/release-it-config": "0.222.5",
"@taiga-ui/stylelint-config": "0.222.5",
@@ -3937,9 +3938,9 @@
"peer": true
},
"node_modules/@cspell/dict-data-science": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.1.tgz",
- "integrity": "sha512-xeutkzK0eBe+LFXOFU2kJeAYO6IuFUc1g7iRLr7HeCmlC4rsdGclwGHh61KmttL3+YHQytYStxaRBdGAXWC8Lw==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.2.tgz",
+ "integrity": "sha512-VwAck6OZQVqrscKyOrvllixIugIPF+Q6YoFNvXZCPhHGtNyOAVraD3S7kOgPYBdUjgno4QbdMWm92BUPqL1QjQ==",
"dev": true,
"license": "MIT",
"peer": true
@@ -4545,15 +4546,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz",
"integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==",
- "cpu": [
- "arm"
- ],
+ "cpu": ["arm"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "android"
- ],
+ "os": ["android"],
"engines": {
"node": ">=12"
}
@@ -4562,15 +4559,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz",
"integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "android"
- ],
+ "os": ["android"],
"engines": {
"node": ">=12"
}
@@ -4579,15 +4572,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz",
"integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "android"
- ],
+ "os": ["android"],
"engines": {
"node": ">=12"
}
@@ -4596,15 +4585,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz",
"integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": ">=12"
}
@@ -4613,15 +4598,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz",
"integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": ">=12"
}
@@ -4630,15 +4611,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz",
"integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "freebsd"
- ],
+ "os": ["freebsd"],
"engines": {
"node": ">=12"
}
@@ -4647,15 +4624,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz",
"integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "freebsd"
- ],
+ "os": ["freebsd"],
"engines": {
"node": ">=12"
}
@@ -4664,15 +4637,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz",
"integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==",
- "cpu": [
- "arm"
- ],
+ "cpu": ["arm"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4681,15 +4650,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz",
"integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4698,15 +4663,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz",
"integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==",
- "cpu": [
- "ia32"
- ],
+ "cpu": ["ia32"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4715,15 +4676,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz",
"integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==",
- "cpu": [
- "loong64"
- ],
+ "cpu": ["loong64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4732,15 +4689,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz",
"integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==",
- "cpu": [
- "mips64el"
- ],
+ "cpu": ["mips64el"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4749,15 +4702,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz",
"integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==",
- "cpu": [
- "ppc64"
- ],
+ "cpu": ["ppc64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4766,15 +4715,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz",
"integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==",
- "cpu": [
- "riscv64"
- ],
+ "cpu": ["riscv64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4783,15 +4728,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz",
"integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==",
- "cpu": [
- "s390x"
- ],
+ "cpu": ["s390x"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4800,15 +4741,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz",
"integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">=12"
}
@@ -4817,15 +4754,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz",
"integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "netbsd"
- ],
+ "os": ["netbsd"],
"engines": {
"node": ">=12"
}
@@ -4834,15 +4767,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz",
"integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "openbsd"
- ],
+ "os": ["openbsd"],
"engines": {
"node": ">=12"
}
@@ -4851,15 +4780,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz",
"integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "sunos"
- ],
+ "os": ["sunos"],
"engines": {
"node": ">=12"
}
@@ -4868,15 +4793,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz",
"integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">=12"
}
@@ -4885,15 +4806,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz",
"integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==",
- "cpu": [
- "ia32"
- ],
+ "cpu": ["ia32"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">=12"
}
@@ -4902,15 +4819,11 @@
"version": "0.18.17",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz",
"integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">=12"
}
@@ -6238,44 +6151,51 @@
"license": "MIT"
},
"node_modules/@maskito/angular": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/@maskito/angular/-/angular-1.9.0.tgz",
- "integrity": "sha512-Wa/9nM9Nv0oieVZ6yxQNXfDRA4obFDR15xO16o1GKF8i9W1IdQQn+tuMRjkmx6HhJDN9+x3k8OTJ1f80BIrhjA==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@maskito/angular/-/angular-3.0.3.tgz",
+ "integrity": "sha512-75WFS0vDK3wul4RmnJrI/q+WNQfrqFYYLgypj0voB1FAFonHwWvWR09tzKo15aWs8BERfwfl7oeSPkh5Lw1dEA==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "tslib": "2.6.2"
+ "tslib": "2.7.0"
},
"peerDependencies": {
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "@angular/forms": ">=12.0.0",
- "@maskito/core": "^1.9.0",
- "rxjs": ">=6.0.0"
+ "@angular/core": ">=16.0.0",
+ "@angular/forms": ">=16.0.0",
+ "@maskito/core": "^3.0.3"
}
},
- "node_modules/@maskito/angular/node_modules/tslib": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
- "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
- "dev": true,
- "license": "0BSD"
- },
"node_modules/@maskito/core": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/@maskito/core/-/core-1.9.0.tgz",
- "integrity": "sha512-WQIUrwkdIUg6PzAb4Apa0RjTPHB0EqZLc9/7kWCKVIixhkITRFXFg2BhiDVSRv0mIKVlAEJcOvvjHK5T3UaIig==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@maskito/core/-/core-3.0.3.tgz",
+ "integrity": "sha512-bGd9+/j0yImCWDDMi/nJbGZIgWTQ4w/lTE3Y22NCmOBMST5cG4gZ4kNV6cfqpmJPQ3PWckMm8wOOmcdFgJWaHw==",
"dev": true,
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "peer": true
},
"node_modules/@maskito/kit": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/@maskito/kit/-/kit-1.9.0.tgz",
- "integrity": "sha512-LNNgOJ0tAfrPoPehvoP+ZyYF9giOYL02sOMKyDC3IcqDNA8BAU0PARmS7TNsVEBpvSuJhU6xVt40nxJaONgUdw==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@maskito/kit/-/kit-3.0.3.tgz",
+ "integrity": "sha512-tfaXOd84Rg7xcZqtWwtmbOKfehDF5Pk2vTL2qtYym3QouKbDaNB8HK8Jsaa5AhEJmFmTKvK9KF6WmhfZN2fL+A==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "peer": true,
+ "peerDependencies": {
+ "@maskito/core": "^3.0.3"
+ }
+ },
+ "node_modules/@maskito/phone": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@maskito/phone/-/phone-3.0.3.tgz",
+ "integrity": "sha512-RxYYE/h7XGRnaGPkCNuYuACj78pGf0GOqNP12U4HUycixOC6+sUK4YRFWjVMFCHKsGdbVP/0eaBKRBIZNG9ZDA==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"peerDependencies": {
- "@maskito/core": "^1.9.0"
+ "@maskito/core": "^3.0.3",
+ "@maskito/kit": "^3.0.3",
+ "libphonenumber-js": ">=1.0.0"
}
},
"node_modules/@module-federation/bridge-react-webpack-plugin": {
@@ -6691,15 +6611,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-android-arm-eabi/-/nice-android-arm-eabi-1.0.1.tgz",
"integrity": "sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==",
- "cpu": [
- "arm"
- ],
+ "cpu": ["arm"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "android"
- ],
+ "os": ["android"],
"engines": {
"node": ">= 10"
}
@@ -6708,15 +6624,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-android-arm64/-/nice-android-arm64-1.0.1.tgz",
"integrity": "sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "android"
- ],
+ "os": ["android"],
"engines": {
"node": ">= 10"
}
@@ -6725,15 +6637,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-darwin-arm64/-/nice-darwin-arm64-1.0.1.tgz",
"integrity": "sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": ">= 10"
}
@@ -6742,15 +6650,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-darwin-x64/-/nice-darwin-x64-1.0.1.tgz",
"integrity": "sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": ">= 10"
}
@@ -6759,15 +6663,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-freebsd-x64/-/nice-freebsd-x64-1.0.1.tgz",
"integrity": "sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "freebsd"
- ],
+ "os": ["freebsd"],
"engines": {
"node": ">= 10"
}
@@ -6776,15 +6676,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-arm-gnueabihf/-/nice-linux-arm-gnueabihf-1.0.1.tgz",
"integrity": "sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==",
- "cpu": [
- "arm"
- ],
+ "cpu": ["arm"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6793,15 +6689,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-arm64-gnu/-/nice-linux-arm64-gnu-1.0.1.tgz",
"integrity": "sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6810,15 +6702,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-arm64-musl/-/nice-linux-arm64-musl-1.0.1.tgz",
"integrity": "sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6827,15 +6715,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-ppc64-gnu/-/nice-linux-ppc64-gnu-1.0.1.tgz",
"integrity": "sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==",
- "cpu": [
- "ppc64"
- ],
+ "cpu": ["ppc64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6844,15 +6728,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-riscv64-gnu/-/nice-linux-riscv64-gnu-1.0.1.tgz",
"integrity": "sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==",
- "cpu": [
- "riscv64"
- ],
+ "cpu": ["riscv64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6861,15 +6741,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-s390x-gnu/-/nice-linux-s390x-gnu-1.0.1.tgz",
"integrity": "sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==",
- "cpu": [
- "s390x"
- ],
+ "cpu": ["s390x"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6878,15 +6754,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-x64-gnu/-/nice-linux-x64-gnu-1.0.1.tgz",
"integrity": "sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6895,15 +6767,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-x64-musl/-/nice-linux-x64-musl-1.0.1.tgz",
"integrity": "sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -6912,15 +6780,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-win32-arm64-msvc/-/nice-win32-arm64-msvc-1.0.1.tgz",
"integrity": "sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">= 10"
}
@@ -6929,15 +6793,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-win32-ia32-msvc/-/nice-win32-ia32-msvc-1.0.1.tgz",
"integrity": "sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==",
- "cpu": [
- "ia32"
- ],
+ "cpu": ["ia32"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">= 10"
}
@@ -6946,15 +6806,11 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@napi-rs/nice-win32-x64-msvc/-/nice-win32-x64-msvc-1.0.1.tgz",
"integrity": "sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">= 10"
}
@@ -6972,60 +6828,64 @@
}
},
"node_modules/@ng-web-apis/common": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/@ng-web-apis/common/-/common-3.2.3.tgz",
- "integrity": "sha512-1ts2FkLRw6dE/uTuYFMf9VTbLJ9CS8dpfIXTpxFsPArs13mEuz0Yvpe0rl0tMAhfNoeN4e7V8wVSyqDNgfzgmw==",
+ "version": "4.6.5",
+ "resolved": "https://registry.npmjs.org/@ng-web-apis/common/-/common-4.6.5.tgz",
+ "integrity": "sha512-a3JLQ8FFzlN5tFDOQF55O0fUxrjKCVLfFWocYeEv/+BXH1GxHsLN9EZWiU9QWyhwDMug6rh1VcMgTM+wJ9vAvQ==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "tslib": "^2.2.0"
+ "tslib": "^2.3.0"
},
"peerDependencies": {
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "rxjs": ">=6.4.0"
+ "@angular/common": ">=16.0.0",
+ "@angular/core": ">=16.0.0",
+ "rxjs": ">=7.0.0"
}
},
"node_modules/@ng-web-apis/intersection-observer": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/@ng-web-apis/intersection-observer/-/intersection-observer-3.2.3.tgz",
- "integrity": "sha512-0yp+rr6ZEyF2vz4zYlMZ1GNtTHQziKajCurqAycZkSXVUdon7MhfiY/PiTr8xklTr40DjrF4anXV7oUAaA0szQ==",
+ "version": "4.6.5",
+ "resolved": "https://registry.npmjs.org/@ng-web-apis/intersection-observer/-/intersection-observer-4.6.5.tgz",
+ "integrity": "sha512-nllLbrvDpToN2MmvQ6VT8GeWGirk1NRDCuD0ryBHqcibwalRZQhnacM0McstRJougeHaMC+/EV6GSZ1c8sa8uA==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "tslib": "^2.2.0"
+ "tslib": "^2.3.0"
},
"peerDependencies": {
- "@angular/core": ">=12.0.0",
- "@ng-web-apis/common": ">=2.0.0"
+ "@angular/core": ">=16.0.0",
+ "@ng-web-apis/common": ">=4.6.5"
}
},
"node_modules/@ng-web-apis/mutation-observer": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/@ng-web-apis/mutation-observer/-/mutation-observer-3.2.3.tgz",
- "integrity": "sha512-iFwxut1cw94lTXnloDMBRanqNTvEjbnigWkTowlPH3QY16ysTKuC51JeonRuARW4K3bbDGbXiLUYYZWKQaDfKw==",
+ "version": "4.6.5",
+ "resolved": "https://registry.npmjs.org/@ng-web-apis/mutation-observer/-/mutation-observer-4.6.5.tgz",
+ "integrity": "sha512-fA2gn2u9cA1VfKPFOWkIl9Oj/ZdMLWpdp7UlW7/Xkhq9craA7JJyPBIixmHG3pH5Li7EV6/gBtRvVw0Dd1rrdw==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "tslib": "^2.2.0"
+ "tslib": "^2.3.0"
},
"peerDependencies": {
- "@angular/core": ">=12.0.0",
- "@ng-web-apis/common": ">=2.0.0"
+ "@angular/core": ">=16.0.0",
+ "@ng-web-apis/common": ">=4.6.5"
}
},
"node_modules/@ng-web-apis/resize-observer": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/@ng-web-apis/resize-observer/-/resize-observer-3.2.3.tgz",
- "integrity": "sha512-x3KxBZSragzdQlkbY9tiHY0lVlkOFD7Y34rzXdBJ7PTnIvlq43X/tN31Mmb3R0Np4vsarWqnhO6Y42ljudsWdA==",
+ "version": "4.6.5",
+ "resolved": "https://registry.npmjs.org/@ng-web-apis/resize-observer/-/resize-observer-4.6.5.tgz",
+ "integrity": "sha512-0nDejsyI57ppDmJv+wd5WxhN+4MpLOq5r2blnzFlIewQLikytmGS8gdfJkPefjeSQ9vmfzR1ut2B1pNP8On5YA==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "tslib": "^2.2.0"
+ "tslib": "^2.3.0"
},
"peerDependencies": {
- "@angular/core": ">=12.0.0",
- "@ng-web-apis/common": ">=2.0.0"
+ "@angular/core": ">=16.0.0",
+ "@ng-web-apis/common": ">=4.6.5"
}
},
"node_modules/@ngtools/webpack": {
@@ -8139,15 +7999,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.0.0.tgz",
"integrity": "sha512-sVG2qdQh192eQbsRVs/VpYkgRdbinLEj/6LvHXjU+Qi3ABKAnNDuNquNqpmxVU7YnoIZsyHMlbPsr47PgU2ljw==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": ">= 10"
}
@@ -8156,15 +8012,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-20.0.0.tgz",
"integrity": "sha512-Vk1i9PYlzPr7XT9fu2nWKpzPS/kTM8bDCmBfu7lotJpR+gEp52vegy4bkz00C5sDtFZTFOUoDYvMxiS9lNuvbQ==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": ">= 10"
}
@@ -8173,15 +8025,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.0.0.tgz",
"integrity": "sha512-g9L4KG34U8KLNBpoX5iQnevh/q3mTHBNLaoF+dFfBLDFdqVkLc1cUoWEITP41RfExhU/jqgo66T3Wtjt/FmYPw==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "freebsd"
- ],
+ "os": ["freebsd"],
"engines": {
"node": ">= 10"
}
@@ -8190,15 +8038,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.0.0.tgz",
"integrity": "sha512-EcWjz4HM0UElppyDjIK9uGn0x+HgNMKloBQWYCQZv9z10joPDFleXNL66ywGi3KbpJp8jZZoBoXUBAuQ30wTkA==",
- "cpu": [
- "arm"
- ],
+ "cpu": ["arm"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -8207,15 +8051,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.0.0.tgz",
"integrity": "sha512-SNWNlG1IF3m84n//s9EVq4VXbACi4YC+0Zto6mBSWnJ54PQSBaPlYQOjA+zUg5j/TDBcErJwmWBhrsDpfUzASA==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -8224,15 +8064,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.0.0.tgz",
"integrity": "sha512-dP8Z2wmouSoGbiNFchf5XuMEzZ9LOxIL9m+YZ+g1aBK1lakqugGmu5AWC4LujLdRYJ2Aq0NiTujFb9X8N65LEg==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -8241,15 +8077,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.0.0.tgz",
"integrity": "sha512-B9ePhJ6t4Q/T20jjuegmIujEbgQAjVYSbaVqlL1TpSz5JOjYqTMJVOdZfK1iSizanmdAr/tgNk/3U+pN68Qo2w==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -8258,15 +8090,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.0.0.tgz",
"integrity": "sha512-SIJ42y+paUJ7OeOh1Wgk1BkgFj/oa/U3jsBrusyJMD1omShXJR0DW63yHHP19rhkVfkzDB4hl5AWYAb+IX0n1A==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "os": ["linux"],
"engines": {
"node": ">= 10"
}
@@ -8275,15 +8103,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.0.0.tgz",
"integrity": "sha512-NZi88z+xa70L9E5ota3R6+/TjBDQ/XtoWuNDqPRcgBAHtOEH4YpF0pJ+sc+TybotcXFUs99v1TRxPHagsBn8QQ==",
- "cpu": [
- "arm64"
- ],
+ "cpu": ["arm64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">= 10"
}
@@ -8292,15 +8116,11 @@
"version": "20.0.0",
"resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.0.0.tgz",
"integrity": "sha512-rtGphY7sXqHGQN1q6M6umR/iAIU0/IcstYW5IAXQ3wivaQJrV7sM+aumrFZfgAWHHDTWDdQncSQTdn49RoRjEA==",
- "cpu": [
- "x64"
- ],
+ "cpu": ["x64"],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
+ "os": ["win32"],
"engines": {
"node": ">= 10"
}
@@ -8648,9 +8468,9 @@
}
},
"node_modules/@nx/webpack/node_modules/memfs": {
- "version": "4.12.0",
- "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.12.0.tgz",
- "integrity": "sha512-74wDsex5tQDSClVkeK1vtxqYCAgCoXxx+K4NSHzgU/muYVYByFqa+0RnrPO9NM6naWm1+G9JmZ0p6QHhXmeYfA==",
+ "version": "4.13.0",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.13.0.tgz",
+ "integrity": "sha512-dIs5KGy24fbdDhIAg0RxXpFqQp3RwL6wgSMRF9OSuphL/Uc9a4u2/SDJKPLj/zUgtOGKuHrRMrj563+IErj4Cg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -9742,65 +9562,49 @@
}
},
"node_modules/@taiga-ui/addon-doc": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/addon-doc/-/addon-doc-3.95.1.tgz",
- "integrity": "sha512-9M+73JX86qd+U3ozleRM+zFhUYTfcNSsgjavaXrxIyzMV90KCi4o2pAZt3pRhoDKrU6PEvutAhAleTSl+XAjMA==",
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/addon-doc/-/addon-doc-4.9.0.tgz",
+ "integrity": "sha512-KFaOagcyWFGsCNmuv9UA1HIkEWmrWQG2pKTPBNJ5qM20FfQYKTyGfmHgIyF6Cm3sVuMwv1FbkhzJLlxY6v7D5A==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "markdown-it": "^14.1.0",
- "ngx-highlightjs": "^6.1.3",
- "tslib": ">=2.7.0"
- },
- "peerDependencies": {
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "@angular/forms": ">=12.0.0",
- "@angular/router": ">=12.0.0",
- "@ng-web-apis/common": ">=3.2.3 <4",
- "@taiga-ui/addon-mobile": ">=3.95.1 <4",
- "@taiga-ui/cdk": ">=3.95.1 <4",
- "@taiga-ui/core": ">=3.95.1 <4",
- "@taiga-ui/kit": ">=3.95.1 <4",
- "@tinkoff/ng-polymorpheus": ">=4.3.0"
- }
- },
- "node_modules/@taiga-ui/addon-doc/node_modules/ngx-highlightjs": {
- "version": "6.1.3",
- "resolved": "https://registry.npmjs.org/ngx-highlightjs/-/ngx-highlightjs-6.1.3.tgz",
- "integrity": "sha512-QF91hKhD75HpuJOgCGL3M7UyZommAqIgzubpZN2/At7OqBZ3G6NX9n/r6ksezSur34wjYOYQunNJhIvsXQzu6Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "highlight.js": "^11.0.0",
- "highlightjs-line-numbers.js": "^2.8.0",
- "tslib": "^2.0.0"
+ "tslib": "^2.7.0"
},
"peerDependencies": {
- "@angular/common": ">=13.0.0",
- "@angular/core": ">=13.0.0",
- "rxjs": ">=6.0.0"
+ "@angular/cdk": ">=16.0.0",
+ "@angular/common": ">=16.0.0",
+ "@angular/core": ">=16.0.0",
+ "@angular/forms": ">=16.0.0",
+ "@angular/router": ">=16.0.0",
+ "@ng-web-apis/common": "^4.6.5",
+ "@taiga-ui/addon-mobile": "^4.9.0",
+ "@taiga-ui/cdk": "^4.9.0",
+ "@taiga-ui/core": "^4.9.0",
+ "@taiga-ui/kit": "^4.9.0",
+ "@taiga-ui/polymorpheus": "^4.7.4",
+ "markdown-it": ">=14.1.0",
+ "ngx-highlightjs": ">=10.0.0"
}
},
"node_modules/@taiga-ui/addon-mobile": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/addon-mobile/-/addon-mobile-3.95.1.tgz",
- "integrity": "sha512-fKbCF+SdXsd12OLoXDJKZ4YAUx3DZJavAN1l69tOU6FgbkxgMuslyHDJkW+N7YbzWj6LX1n1LQF7ba3tIcE10g==",
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/addon-mobile/-/addon-mobile-4.9.0.tgz",
+ "integrity": "sha512-okT7bdZsa5Yrsg9h9UvMSfEPZWuBIZ7zf2fPQRvnQFS6fD3lCjIZOkFS/ST7qDNw6TdpwxxTN/LbSrt/Y0lvjQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "tslib": ">=2.7.0"
+ "tslib": "^2.7.0"
},
"peerDependencies": {
- "@angular/cdk": ">=12.0.0",
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "@ng-web-apis/common": ">=3.2.3 <4",
- "@taiga-ui/cdk": ">=3.95.1 <4",
- "@taiga-ui/core": ">=3.95.1 <4",
- "@taiga-ui/kit": ">=3.95.1 <4",
- "@tinkoff/ng-polymorpheus": ">=4.3.0",
- "rxjs": ">=6.0.0"
+ "@angular/cdk": ">=16.0.0",
+ "@angular/common": ">=16.0.0",
+ "@angular/core": ">=16.0.0",
+ "@ng-web-apis/common": "^4.6.5",
+ "@taiga-ui/cdk": "^4.9.0",
+ "@taiga-ui/core": "^4.9.0",
+ "@taiga-ui/kit": "^4.9.0",
+ "@taiga-ui/polymorpheus": "^4.7.4",
+ "rxjs": ">=7.0.0"
}
},
"node_modules/@taiga-ui/auto-changelog-config": {
@@ -9821,39 +9625,35 @@
"license": "Apache-2.0"
},
"node_modules/@taiga-ui/cdk": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/cdk/-/cdk-3.95.1.tgz",
- "integrity": "sha512-HBp5Vwej6iILtApkKMtX9vDI9BVT+6+sGgukFU+xko6+PNyGU1j6lIe/iscwfj32RLa4nxgKBxXms9Q57ww4jA==",
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/cdk/-/cdk-4.9.0.tgz",
+ "integrity": "sha512-obFCHu/AphJ6N8tJ0mryyI3gUZAYZgK0iBejEQpaG47BuP8j7Q/gftYexsA2iwkRyPm5qSs0rrrbsLf9+/Mx3A==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@ng-web-apis/common": "^3.2.3",
- "@ng-web-apis/mutation-observer": "^3.2.3",
- "@ng-web-apis/resize-observer": "^3.2.3",
- "@tinkoff/ng-event-plugins": "^3.2.0",
- "@tinkoff/ng-polymorpheus": "^4.3.0",
- "tslib": "^2.7.0"
+ "tslib": "2.7.0"
},
"optionalDependencies": {
- "ng-morph": "^4.8.2",
- "parse5": "^6.0.1"
+ "@angular-devkit/core": ">=16.0.0",
+ "@angular-devkit/schematics": ">=16.0.0",
+ "@schematics/angular": ">=16.0.0",
+ "ng-morph": "^4.8.4",
+ "parse5": "^7.1.2"
},
"peerDependencies": {
- "@angular/animations": ">=12.0.0",
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "@angular/forms": ">=12.0.0",
- "rxjs": ">=6.0.0"
+ "@angular/animations": ">=16.0.0",
+ "@angular/cdk": ">=16.0.0",
+ "@angular/common": ">=16.0.0",
+ "@angular/core": ">=16.0.0",
+ "@angular/forms": ">=16.0.0",
+ "@ng-web-apis/common": "^4.6.5",
+ "@ng-web-apis/mutation-observer": "^4.6.5",
+ "@ng-web-apis/resize-observer": "^4.6.5",
+ "@taiga-ui/event-plugins": "^4.2.4",
+ "@taiga-ui/polymorpheus": "^4.7.4",
+ "rxjs": ">=7.0.0"
}
},
- "node_modules/@taiga-ui/cdk/node_modules/parse5": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
- "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
- "dev": true,
- "license": "MIT",
- "optional": true
- },
"node_modules/@taiga-ui/commitlint-config": {
"version": "0.222.5",
"resolved": "https://registry.npmjs.org/@taiga-ui/commitlint-config/-/commitlint-config-0.222.5.tgz",
@@ -9866,29 +9666,28 @@
}
},
"node_modules/@taiga-ui/core": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/core/-/core-3.95.1.tgz",
- "integrity": "sha512-6BmT+Gm6dKVKbEmFCZk0lrVZ7/BDwPYY48PLkV3ksnOXi7przsYiIuQh+4EGnmZAVjga4MQ3m1tXb49dYkxWTw==",
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/core/-/core-4.9.0.tgz",
+ "integrity": "sha512-SDo3rTsBFsj52jzPzz8uqW5MppeDpDSs/dkUGvx401j5jTEESzQM6Qy4xCO/k2kJQUNeP+J7Rlc+tleHQ5UGaw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@taiga-ui/i18n": "^3.95.1",
- "tslib": ">=2.7.0"
+ "tslib": "^2.7.0"
},
"peerDependencies": {
- "@angular/animations": ">=12.0.0",
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "@angular/forms": ">=12.0.0",
- "@angular/platform-browser": ">=12.0.0",
- "@angular/router": ">=12.0.0",
- "@ng-web-apis/common": ">=3.2.3 <4",
- "@ng-web-apis/mutation-observer": ">=3.2.3 <4",
- "@taiga-ui/cdk": ">=3.95.1 <4",
- "@taiga-ui/i18n": ">=3.95.1 <4",
- "@tinkoff/ng-event-plugins": ">=3.2.0 <4",
- "@tinkoff/ng-polymorpheus": ">=4.3.0",
- "rxjs": ">=6.0.0"
+ "@angular/animations": ">=16.0.0",
+ "@angular/common": ">=16.0.0",
+ "@angular/core": ">=16.0.0",
+ "@angular/forms": ">=16.0.0",
+ "@angular/platform-browser": ">=16.0.0",
+ "@angular/router": ">=16.0.0",
+ "@ng-web-apis/common": "^4.6.5",
+ "@ng-web-apis/mutation-observer": "^4.6.5",
+ "@taiga-ui/cdk": "^4.9.0",
+ "@taiga-ui/event-plugins": "^4.2.4",
+ "@taiga-ui/i18n": "^4.9.0",
+ "@taiga-ui/polymorpheus": "^4.7.4",
+ "rxjs": ">=7.0.0"
}
},
"node_modules/@taiga-ui/cspell-config": {
@@ -9987,61 +9786,89 @@
"node": ">=16 || 14 >=14.17"
}
},
+ "node_modules/@taiga-ui/event-plugins": {
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/event-plugins/-/event-plugins-4.2.4.tgz",
+ "integrity": "sha512-Uf8JuXbf9M5j1sW5Cc8JJYI2L5ll5ikJkRSGCVSWDHKYwNBndbhX/KD2Un5RRqbZ+P2IbtAnYh7sZxxwTD0qbw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "tslib": "^2.3.0"
+ },
+ "peerDependencies": {
+ "@angular/core": ">=16.0.0",
+ "@angular/platform-browser": ">=16.0.0",
+ "rxjs": ">=7.0.0"
+ }
+ },
"node_modules/@taiga-ui/i18n": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/i18n/-/i18n-3.95.1.tgz",
- "integrity": "sha512-w2uuV2bJsanNE67M1rx6L0s1CEEkdjIVCTYV7UxFJEpZ3eTUPh3L6vs4H8eKVE9dMOs63KZ+dKF/CMvQ28ERJQ==",
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/i18n/-/i18n-4.9.0.tgz",
+ "integrity": "sha512-d7TnS9zuEnaZizlr47BvIprE7wWDkBXWkOgYnPxdEZqXxkpBtNP8hgf54ZjRP9xihJA7xomFgmWTiRX7W9+dNg==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "tslib": ">=2.7.0"
+ "tslib": "^2.7.0"
},
"peerDependencies": {
- "@angular/core": ">=12.0.0",
- "@ng-web-apis/common": ">=3.2.3 <4",
- "rxjs": ">=6.0.0"
+ "@angular/core": ">=16.0.0",
+ "@ng-web-apis/common": "^4.6.5",
+ "rxjs": ">=7.0.0"
}
},
"node_modules/@taiga-ui/icons": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/icons/-/icons-3.95.1.tgz",
- "integrity": "sha512-5qiPPpmEqGWGTzK94COHq1ZjIV3kGmEo0EKvBHJynjCEYqzIWWZ6tyVTrF0Bowns3P9DIyBWvUCFnLpbowRisg==",
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/icons/-/icons-4.9.0.tgz",
+ "integrity": "sha512-93XPEA5IR+cmWFHXbuKMxQyJ6bXrx8WTr47FEHMkyKoyhPAdvNQyfezsSJ5x1+RBlaYRf4UBmRSQ1f5ipOtahA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "tslib": ">=2.7.0"
+ "tslib": "^2.3.0"
+ }
+ },
+ "node_modules/@taiga-ui/kit": {
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/kit/-/kit-4.9.0.tgz",
+ "integrity": "sha512-bojjBkiX1VUulyEQXZ+rmlItZM90tvCHXX+yyHFZyc7KhmXdjIniNHjEgHj3tM6IkVzTMiUabfzlAS+SlHJAcA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "tslib": "^2.7.0"
},
"peerDependencies": {
- "@taiga-ui/cdk": ">=3.95.1 <4"
+ "@angular/common": ">=16.0.0",
+ "@angular/core": ">=16.0.0",
+ "@angular/forms": ">=16.0.0",
+ "@angular/router": ">=16.0.0",
+ "@maskito/angular": "^3.0.3",
+ "@maskito/core": "^3.0.3",
+ "@maskito/kit": "^3.0.3",
+ "@maskito/phone": "^3.0.3",
+ "@ng-web-apis/common": "^4.6.5",
+ "@ng-web-apis/intersection-observer": "^4.6.5",
+ "@ng-web-apis/mutation-observer": "^4.6.5",
+ "@ng-web-apis/resize-observer": "^4.6.5",
+ "@taiga-ui/cdk": "^4.9.0",
+ "@taiga-ui/core": "^4.9.0",
+ "@taiga-ui/i18n": "^4.9.0",
+ "@taiga-ui/polymorpheus": "^4.7.4",
+ "rxjs": ">=7.0.0"
}
},
- "node_modules/@taiga-ui/kit": {
- "version": "3.95.1",
- "resolved": "https://registry.npmjs.org/@taiga-ui/kit/-/kit-3.95.1.tgz",
- "integrity": "sha512-MsE1n4nrjOdiiLERy41NoBGG3WYvWi4eW7gmLaupt+a9ixx25bOQKEmq3mR46HjoH7n1nc+BktwvtFh9FP0Npg==",
+ "node_modules/@taiga-ui/polymorpheus": {
+ "version": "4.7.4",
+ "resolved": "https://registry.npmjs.org/@taiga-ui/polymorpheus/-/polymorpheus-4.7.4.tgz",
+ "integrity": "sha512-2D5xgTe9QC6WVZdpJsN9SntygzfWKGqREhQZMjb6Kvx+RRudqYr8/b0OgquRvXCVN+PztX3NhMO7bCYH0L/jAg==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
- "@maskito/angular": "^1.9.0",
- "@maskito/core": "^1.9.0",
- "@maskito/kit": "^1.9.0",
- "@ng-web-apis/intersection-observer": "^3.2.3",
- "text-mask-core": "^5.1.2",
- "tslib": ">=2.7.0"
+ "tslib": "^2.7.0"
},
"peerDependencies": {
- "@angular/common": ">=12.0.0",
- "@angular/core": ">=12.0.0",
- "@angular/forms": ">=12.0.0",
- "@angular/router": ">=12.0.0",
- "@ng-web-apis/common": ">=3.2.3 <4",
- "@ng-web-apis/mutation-observer": ">=3.2.3 <4",
- "@ng-web-apis/resize-observer": ">=3.2.3 <4",
- "@taiga-ui/cdk": ">=3.95.1 <4",
- "@taiga-ui/core": ">=3.95.1 <4",
- "@taiga-ui/i18n": ">=3.95.1 <4",
- "@tinkoff/ng-polymorpheus": ">=4.3.0",
- "rxjs": ">=6.0.0"
+ "@angular/core": ">=16.0.0",
+ "@angular/platform-browser": ">=16.0.0"
}
},
"node_modules/@taiga-ui/prettier-config": {
@@ -10143,42 +9970,6 @@
"dev": true,
"license": "Apache-2.0"
},
- "node_modules/@tinkoff/ng-event-plugins": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/@tinkoff/ng-event-plugins/-/ng-event-plugins-3.2.0.tgz",
- "integrity": "sha512-n56R5xNfiytabh2WmWdQXfNU6m7dfOo3LLxlARE+DX7f5yciW2xBdDkuEHX74q8dlCuAVlW9aslSfz8c//ymwA==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "tslib": "^2.2.0"
- },
- "peerDependencies": {
- "@angular/core": ">=12.0.0",
- "@angular/platform-browser": ">=12.0.0",
- "rxjs": ">=6.0.0"
- }
- },
- "node_modules/@tinkoff/ng-polymorpheus": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/@tinkoff/ng-polymorpheus/-/ng-polymorpheus-4.3.0.tgz",
- "integrity": "sha512-Ck/XCLuBwlUgvK22PxTlLTZhGG6I32kLqLYtDQh8N/QZZhs40+hb/78/ElFGzD567CCvrzNnueFkaOoXhuEVrw==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "tslib": "2.6.2"
- },
- "peerDependencies": {
- "@angular/core": ">=12.0.0",
- "@angular/platform-browser": ">=12.0.0"
- }
- },
- "node_modules/@tinkoff/ng-polymorpheus/node_modules/tslib": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
- "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
- "dev": true,
- "license": "0BSD"
- },
"node_modules/@tootallnate/once": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
@@ -10719,18 +10510,18 @@
"license": "MIT"
},
"node_modules/@typescript-eslint/eslint-plugin": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.8.0.tgz",
- "integrity": "sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.8.1.tgz",
+ "integrity": "sha512-xfvdgA8AP/vxHgtgU310+WBnLB4uJQ9XdyP17RebG26rLtDrQJV3ZYrcopX91GrHmMoH8bdSwMRh2a//TiJ1jQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@eslint-community/regexpp": "^4.10.0",
- "@typescript-eslint/scope-manager": "8.8.0",
- "@typescript-eslint/type-utils": "8.8.0",
- "@typescript-eslint/utils": "8.8.0",
- "@typescript-eslint/visitor-keys": "8.8.0",
+ "@typescript-eslint/scope-manager": "8.8.1",
+ "@typescript-eslint/type-utils": "8.8.1",
+ "@typescript-eslint/utils": "8.8.1",
+ "@typescript-eslint/visitor-keys": "8.8.1",
"graphemer": "^1.4.0",
"ignore": "^5.3.1",
"natural-compare": "^1.4.0",
@@ -10947,17 +10738,17 @@
}
},
"node_modules/@typescript-eslint/parser": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.8.0.tgz",
- "integrity": "sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.8.1.tgz",
+ "integrity": "sha512-hQUVn2Lij2NAxVFEdvIGxT9gP1tq2yM83m+by3whWFsWC+1y8pxxxHUFE1UqDu2VsGi2i6RLcv4QvouM84U+ow==",
"dev": true,
"license": "BSD-2-Clause",
"peer": true,
"dependencies": {
- "@typescript-eslint/scope-manager": "8.8.0",
- "@typescript-eslint/types": "8.8.0",
- "@typescript-eslint/typescript-estree": "8.8.0",
- "@typescript-eslint/visitor-keys": "8.8.0",
+ "@typescript-eslint/scope-manager": "8.8.1",
+ "@typescript-eslint/types": "8.8.1",
+ "@typescript-eslint/typescript-estree": "8.8.1",
+ "@typescript-eslint/visitor-keys": "8.8.1",
"debug": "^4.3.4"
},
"engines": {
@@ -10977,14 +10768,14 @@
}
},
"node_modules/@typescript-eslint/scope-manager": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.8.0.tgz",
- "integrity": "sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.8.1.tgz",
+ "integrity": "sha512-X4JdU+66Mazev/J0gfXlcC/dV6JI37h+93W9BRYXrSn0hrE64IoWgVkO9MSJgEzoWkxONgaQpICWg8vAN74wlA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "8.8.0",
- "@typescript-eslint/visitor-keys": "8.8.0"
+ "@typescript-eslint/types": "8.8.1",
+ "@typescript-eslint/visitor-keys": "8.8.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -10995,14 +10786,14 @@
}
},
"node_modules/@typescript-eslint/type-utils": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.8.0.tgz",
- "integrity": "sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.8.1.tgz",
+ "integrity": "sha512-qSVnpcbLP8CALORf0za+vjLYj1Wp8HSoiI8zYU5tHxRVj30702Z1Yw4cLwfNKhTPWp5+P+k1pjmD5Zd1nhxiZA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/typescript-estree": "8.8.0",
- "@typescript-eslint/utils": "8.8.0",
+ "@typescript-eslint/typescript-estree": "8.8.1",
+ "@typescript-eslint/utils": "8.8.1",
"debug": "^4.3.4",
"ts-api-utils": "^1.3.0"
},
@@ -11020,9 +10811,9 @@
}
},
"node_modules/@typescript-eslint/types": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.8.0.tgz",
- "integrity": "sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.8.1.tgz",
+ "integrity": "sha512-WCcTP4SDXzMd23N27u66zTKMuEevH4uzU8C9jf0RO4E04yVHgQgW+r+TeVTNnO1KIfrL8ebgVVYYMMO3+jC55Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11034,14 +10825,14 @@
}
},
"node_modules/@typescript-eslint/typescript-estree": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.8.0.tgz",
- "integrity": "sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.8.1.tgz",
+ "integrity": "sha512-A5d1R9p+X+1js4JogdNilDuuq+EHZdsH9MjTVxXOdVFfTJXunKJR/v+fNNyO4TnoOn5HqobzfRlc70NC6HTcdg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
- "@typescript-eslint/types": "8.8.0",
- "@typescript-eslint/visitor-keys": "8.8.0",
+ "@typescript-eslint/types": "8.8.1",
+ "@typescript-eslint/visitor-keys": "8.8.1",
"debug": "^4.3.4",
"fast-glob": "^3.3.2",
"is-glob": "^4.0.3",
@@ -11109,16 +10900,16 @@
}
},
"node_modules/@typescript-eslint/utils": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.8.0.tgz",
- "integrity": "sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.8.1.tgz",
+ "integrity": "sha512-/QkNJDbV0bdL7H7d0/y0qBbV2HTtf0TIyjSDTvvmQEzeVx8jEImEbLuOA4EsvE8gIgqMitns0ifb5uQhMj8d9w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
- "@typescript-eslint/scope-manager": "8.8.0",
- "@typescript-eslint/types": "8.8.0",
- "@typescript-eslint/typescript-estree": "8.8.0"
+ "@typescript-eslint/scope-manager": "8.8.1",
+ "@typescript-eslint/types": "8.8.1",
+ "@typescript-eslint/typescript-estree": "8.8.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -11132,13 +10923,13 @@
}
},
"node_modules/@typescript-eslint/visitor-keys": {
- "version": "8.8.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.8.0.tgz",
- "integrity": "sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==",
+ "version": "8.8.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.8.1.tgz",
+ "integrity": "sha512-0/TdC3aeRAsW7MDvYRwEc1Uwm0TIBfzjPFgg60UU2Haj5qsCs9cc3zNgY71edqE3LbWfF/WoZQd3lJoDXFQpag==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "8.8.0",
+ "@typescript-eslint/types": "8.8.1",
"eslint-visitor-keys": "^3.4.3"
},
"engines": {
@@ -11787,9 +11578,7 @@
"resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
"dev": true,
- "engines": [
- "node >= 0.8.0"
- ],
+ "engines": ["node >= 0.8.0"],
"license": "Apache-2.0",
"bin": {
"ansi-html": "bin/ansi-html"
@@ -13969,9 +13758,7 @@
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz",
"integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
"dev": true,
- "engines": [
- "node >= 6.0"
- ],
+ "engines": ["node >= 6.0"],
"license": "MIT",
"peer": true,
"dependencies": {
@@ -16046,9 +15833,9 @@
}
},
"node_modules/electron-to-chromium": {
- "version": "1.5.32",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.32.tgz",
- "integrity": "sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==",
+ "version": "1.5.33",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.33.tgz",
+ "integrity": "sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==",
"dev": true,
"license": "ISC"
},
@@ -17335,9 +17122,7 @@
"dev": true,
"license": "MIT",
"peer": true,
- "workspaces": [
- "examples"
- ],
+ "workspaces": ["examples"],
"dependencies": {
"globals": "^13.23.0"
},
@@ -20241,9 +20026,7 @@
"hasInstallScript": true,
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ],
+ "os": ["darwin"],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
@@ -21067,13 +20850,6 @@
"node": ">=12.0.0"
}
},
- "node_modules/highlightjs-line-numbers.js": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/highlightjs-line-numbers.js/-/highlightjs-line-numbers.js-2.8.0.tgz",
- "integrity": "sha512-TEf1gw0c8mb8nan0QwliqS7obT4cpUd9hzsGzsZLweteNnWea/VIqy5/aQqsa5wnz9lnvmtAkS1ZtDTjB/goYQ==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/homedir-polyfill": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
@@ -25364,9 +25140,7 @@
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
"integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
"dev": true,
- "engines": [
- "node >= 0.2.0"
- ],
+ "engines": ["node >= 0.2.0"],
"license": "MIT"
},
"node_modules/JSONStream": {
@@ -25764,6 +25538,14 @@
"node": ">= 0.8.0"
}
},
+ "node_modules/libphonenumber-js": {
+ "version": "1.11.11",
+ "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.11.tgz",
+ "integrity": "sha512-mF3KaORjJQR6JBNcOkluDcJKhtoQT4VTLRMrX1v/wlBayL4M8ybwEDeryyPcrSEJmD0rVwHUbBarpZwN5NfPFQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
"node_modules/license-webpack-plugin": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz",
@@ -25811,6 +25593,7 @@
"integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"uc.micro": "^2.0.0"
}
@@ -26454,6 +26237,7 @@
"integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"argparse": "^2.0.1",
"entities": "^4.4.0",
@@ -26490,7 +26274,8 @@
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/media-typer": {
"version": "0.3.0",
@@ -27302,9 +27087,7 @@
"hasInstallScript": true,
"license": "MIT",
"optional": true,
- "os": [
- "!win32"
- ],
+ "os": ["!win32"],
"dependencies": {
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.2"
@@ -30231,6 +30014,7 @@
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=6"
}
@@ -34569,13 +34353,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/text-mask-core": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/text-mask-core/-/text-mask-core-5.1.2.tgz",
- "integrity": "sha512-VfkCMdmRRZqXgQZFlDMiavm3hzsMzBM23CxHZsaeAYg66ZhXCNJWrFmnJwNy8KF9f74YvAUAuQenxsMCfuvhUw==",
- "dev": true,
- "license": "Unlicense"
- },
"node_modules/text-table": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
@@ -35476,7 +35253,8 @@
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/uglify-js": {
"version": "3.19.3",
diff --git a/package.json b/package.json
index dff4ab01..75a16643 100644
--- a/package.json
+++ b/package.json
@@ -88,17 +88,18 @@
"@nx/node": "20.0.0",
"@nx/workspace": "20.0.0",
"@schematics/angular": "16.2.16",
- "@taiga-ui/addon-doc": "3.95.1",
- "@taiga-ui/addon-mobile": "3.95.1",
+ "@taiga-ui/addon-doc": "4.9.0",
+ "@taiga-ui/addon-mobile": "4.9.0",
"@taiga-ui/auto-changelog-config": "0.222.5",
"@taiga-ui/browserslist-config": "0.222.5",
- "@taiga-ui/cdk": "3.95.1",
+ "@taiga-ui/cdk": "4.9.0",
"@taiga-ui/commitlint-config": "0.222.5",
- "@taiga-ui/core": "3.95.1",
+ "@taiga-ui/core": "4.9.0",
"@taiga-ui/cspell-config": "0.222.5",
"@taiga-ui/eslint-plugin-experience": "0.222.5",
- "@taiga-ui/icons": "3.95.1",
- "@taiga-ui/kit": "3.95.1",
+ "@taiga-ui/event-plugins": "^4.2.3",
+ "@taiga-ui/icons": "4.9.0",
+ "@taiga-ui/kit": "4.9.0",
"@taiga-ui/prettier-config": "0.222.5",
"@taiga-ui/release-it-config": "0.222.5",
"@taiga-ui/stylelint-config": "0.222.5",