@taiga-ui/cdk 4.0.0-rc.7 → 4.0.0-rc.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/used-icons.d.ts +1 -1
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/esm2022/constants/used-icons.mjs +9 -1
- package/esm2022/constants/version.mjs +2 -2
- package/esm2022/services/index.mjs +2 -2
- package/esm2022/services/theme-color.service.mjs +30 -0
- package/fesm2022/taiga-ui-cdk-constants.mjs +9 -1
- package/fesm2022/taiga-ui-cdk-constants.mjs.map +1 -1
- package/fesm2022/taiga-ui-cdk-services.mjs +19 -22
- package/fesm2022/taiga-ui-cdk-services.mjs.map +1 -1
- package/package.json +5 -6
- package/schematics/ng-update/interfaces/html-comment.d.ts +3 -2
- package/schematics/ng-update/interfaces/replacement-attribute-value.d.ts +6 -2
- package/schematics/ng-update/interfaces/replacement-identifier.d.ts +4 -11
- package/schematics/ng-update/steps/replace-identifier.js +16 -12
- package/schematics/ng-update/utils/templates/replace-attr-values.js +39 -10
- package/schematics/ng-update/utils/templates/template-comments.js +7 -1
- package/schematics/ng-update/v4/index.js +3 -0
- package/schematics/ng-update/v4/migrate-icons/index.js +2 -2
- package/schematics/ng-update/v4/migrate-icons/rename-proprietary-icons.d.ts +2 -1
- package/schematics/ng-update/v4/migrate-icons/rename-proprietary-icons.js +19 -6
- package/schematics/ng-update/v4/steps/constants/attr-with-values-to-replace.js +42 -2
- package/schematics/ng-update/v4/steps/constants/attrs-to-replace.js +34 -3
- package/schematics/ng-update/v4/steps/constants/html-comments.js +9 -0
- package/schematics/ng-update/v4/steps/constants/identifiers-to-replace.js +243 -220
- package/schematics/ng-update/v4/steps/constants/inputs-to-remove.js +1 -0
- package/schematics/ng-update/v4/steps/constants/migration-warnings.js +20 -0
- package/schematics/ng-update/v4/steps/constants/modules-to-remove.js +8 -0
- package/schematics/ng-update/v4/steps/constants/tags-to-replace.js +3 -2
- package/schematics/ng-update/v4/steps/constants/types.js +29 -0
- package/schematics/ng-update/v4/steps/index.d.ts +4 -1
- package/schematics/ng-update/v4/steps/index.js +4 -1
- package/schematics/ng-update/v4/steps/migrate-alert-service.d.ts +2 -0
- package/schematics/ng-update/v4/steps/migrate-alert-service.js +110 -0
- package/schematics/ng-update/v4/steps/migrate-month-context.d.ts +2 -0
- package/schematics/ng-update/v4/steps/migrate-month-context.js +39 -0
- package/schematics/ng-update/v4/steps/migrate-number-format-settings.d.ts +2 -0
- package/schematics/ng-update/v4/steps/migrate-number-format-settings.js +64 -0
- package/schematics/ng-update/v4/steps/migrate-templates.js +5 -0
- package/schematics/ng-update/v4/steps/{migrate-styles.js → styles/index.js} +13 -1
- package/schematics/ng-update/v4/steps/styles/migrate-less-scss-constants.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-less-scss-constants.js +13 -0
- package/schematics/ng-update/v4/steps/styles/migrate-scrollbar-behavior.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-scrollbar-behavior.js +10 -0
- package/schematics/ng-update/v4/steps/styles/migrate-shadow-mixins.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-shadow-mixins.js +23 -0
- package/schematics/ng-update/v4/steps/styles/migrate-space-mixins.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-space-mixins.js +20 -0
- package/schematics/ng-update/v4/steps/styles/migrate-text-mixins.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-text-mixins.js +54 -0
- package/schematics/ng-update/v4/steps/templates/index.d.ts +3 -0
- package/schematics/ng-update/v4/steps/templates/index.js +3 -0
- package/schematics/ng-update/v4/steps/templates/migrate-avatar.js +10 -5
- package/schematics/ng-update/{v3/steps/migrate-polymorpheus.d.ts → v4/steps/templates/migrate-axes.d.ts} +2 -2
- package/schematics/ng-update/v4/steps/templates/migrate-axes.js +26 -0
- package/schematics/ng-update/v4/steps/templates/migrate-badge.js +7 -6
- package/schematics/ng-update/v4/steps/templates/migrate-badged-content.js +1 -1
- package/schematics/ng-update/v4/steps/templates/migrate-blocked.js +2 -1
- package/schematics/ng-update/v4/steps/templates/migrate-expandable.js +3 -2
- package/schematics/ng-update/v4/steps/templates/migrate-focusable.js +7 -4
- package/schematics/ng-update/v4/steps/templates/migrate-labeled.js +1 -1
- package/schematics/ng-update/{v3/steps/migrate-textfield-controller.d.ts → v4/steps/templates/migrate-mobile-tabs.d.ts} +2 -2
- package/schematics/ng-update/v4/steps/templates/migrate-mobile-tabs.js +45 -0
- package/schematics/ng-update/v4/steps/templates/migrate-notification.d.ts +8 -0
- package/schematics/ng-update/v4/steps/templates/migrate-notification.js +64 -0
- package/schematics/ng-update/v4/steps/templates/migrate-number-precision.d.ts +8 -0
- package/schematics/ng-update/v4/steps/templates/migrate-number-precision.js +36 -0
- package/schematics/ng-update/v4/steps/templates/migrate-overscroll.js +4 -6
- package/schematics/ng-update/v4/steps/templates/migrate-thumbnail-card.js +2 -1
- package/schematics/ng-update/v4/steps/templates/toggles/common.js +3 -2
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-checkbox.js +2 -1
- package/schematics/ng-update/v4/steps/update-packages.js +13 -4
- package/schematics/utils/templates/elements.js +2 -1
- package/schematics/utils/templates/inputs.js +2 -1
- package/services/index.d.ts +1 -1
- package/services/theme-color.service.d.ts +16 -0
- package/esm2022/services/static-request.service.mjs +0 -33
- package/schematics/ng-update/v3/constants/breakpoints.d.ts +0 -82
- package/schematics/ng-update/v3/constants/breakpoints.js +0 -34
- package/schematics/ng-update/v3/constants/constants.d.ts +0 -2
- package/schematics/ng-update/v3/constants/constants.js +0 -466
- package/schematics/ng-update/v3/constants/deprecated-functions.d.ts +0 -2
- package/schematics/ng-update/v3/constants/deprecated-functions.js +0 -680
- package/schematics/ng-update/v3/constants/enums.d.ts +0 -2
- package/schematics/ng-update/v3/constants/enums.js +0 -284
- package/schematics/ng-update/v3/constants/modules.d.ts +0 -2
- package/schematics/ng-update/v3/constants/modules.js +0 -9
- package/schematics/ng-update/v3/constants/services.d.ts +0 -2
- package/schematics/ng-update/v3/constants/services.js +0 -53
- package/schematics/ng-update/v3/constants/templates.d.ts +0 -57
- package/schematics/ng-update/v3/constants/templates.js +0 -744
- package/schematics/ng-update/v3/constants/tui-interactive-selectors.d.ts +0 -1
- package/schematics/ng-update/v3/constants/tui-interactive-selectors.js +0 -55
- package/schematics/ng-update/v3/constants/types.d.ts +0 -2
- package/schematics/ng-update/v3/constants/types.js +0 -156
- package/schematics/ng-update/v3/constants/warnings.d.ts +0 -2
- package/schematics/ng-update/v3/constants/warnings.js +0 -111
- package/schematics/ng-update/v3/index.d.ts +0 -3
- package/schematics/ng-update/v3/index.js +0 -105
- package/schematics/ng-update/v3/schema.json +0 -13
- package/schematics/ng-update/v3/steps/migrate-date-time.d.ts +0 -2
- package/schematics/ng-update/v3/steps/migrate-date-time.js +0 -207
- package/schematics/ng-update/v3/steps/migrate-polymorpheus.js +0 -78
- package/schematics/ng-update/v3/steps/migrate-progress.d.ts +0 -8
- package/schematics/ng-update/v3/steps/migrate-progress.js +0 -49
- package/schematics/ng-update/v3/steps/migrate-sliders/index.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-sliders/index.js +0 -19
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.js +0 -103
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.js +0 -90
- package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.js +0 -70
- package/schematics/ng-update/v3/steps/migrate-templates.d.ts +0 -4
- package/schematics/ng-update/v3/steps/migrate-templates.js +0 -216
- package/schematics/ng-update/v3/steps/migrate-textfield-controller.js +0 -98
- package/schematics/ng-update/v3/steps/miscellaneous.d.ts +0 -2
- package/schematics/ng-update/v3/steps/miscellaneous.js +0 -81
- package/schematics/ng-update/v3/steps/replace-functions.d.ts +0 -2
- package/schematics/ng-update/v3/steps/replace-functions.js +0 -138
- package/schematics/ng-update/v3/steps/replace-styles.d.ts +0 -3
- package/schematics/ng-update/v3/steps/replace-styles.js +0 -33
- package/schematics/ng-update/v3-30/constants/constants.d.ts +0 -2
- package/schematics/ng-update/v3-30/constants/constants.js +0 -8
- package/schematics/ng-update/v3-30/constants/icons.d.ts +0 -4
- package/schematics/ng-update/v3-30/constants/icons.js +0 -993
- package/schematics/ng-update/v3-30/index.d.ts +0 -3
- package/schematics/ng-update/v3-30/index.js +0 -33
- package/schematics/ng-update/v3-35/constants/constants.d.ts +0 -2
- package/schematics/ng-update/v3-35/constants/constants.js +0 -8
- package/schematics/ng-update/v3-35/constants/icons.d.ts +0 -4
- package/schematics/ng-update/v3-35/constants/icons.js +0 -2537
- package/schematics/ng-update/v3-35/index.d.ts +0 -3
- package/schematics/ng-update/v3-35/index.js +0 -33
- package/schematics/ng-update/v3-36/index.d.ts +0 -3
- package/schematics/ng-update/v3-36/index.js +0 -23
- package/schematics/ng-update/v3-40/index.d.ts +0 -3
- package/schematics/ng-update/v3-40/index.js +0 -62
- package/schematics/ng-update/v3-5/index.d.ts +0 -3
- package/schematics/ng-update/v3-5/index.js +0 -20
- package/schematics/ng-update/v3-5/steps/migrate-expand-templates.d.ts +0 -3
- package/schematics/ng-update/v3-5/steps/migrate-expand-templates.js +0 -44
- package/services/static-request.service.d.ts +0 -8
- /package/schematics/ng-update/v4/steps/{migrate-styles.d.ts → styles/index.d.ts} +0 -0
@@ -10,6 +10,17 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
10
10
|
from: { name: 'TuiPaginationModule', moduleSpecifier: '@taiga-ui/kit' },
|
11
11
|
to: { name: 'TuiPagination', moduleSpecifier: '@taiga-ui/kit' },
|
12
12
|
},
|
13
|
+
{
|
14
|
+
from: { name: 'TuiPlatformModule', moduleSpecifier: '@taiga-ui/cdk' },
|
15
|
+
to: { name: 'TuiPlatform', moduleSpecifier: '@taiga-ui/cdk' },
|
16
|
+
},
|
17
|
+
{
|
18
|
+
from: {
|
19
|
+
name: 'tuiIconResolverProvider',
|
20
|
+
moduleSpecifier: '@taiga-ui/experimental',
|
21
|
+
},
|
22
|
+
to: { name: 'tuiIconResolverProvider', moduleSpecifier: '@taiga-ui/core' },
|
23
|
+
},
|
13
24
|
{
|
14
25
|
from: { name: 'TuiAutoFocusModule', moduleSpecifier: '@taiga-ui/cdk' },
|
15
26
|
to: { name: 'TuiAutoFocus', moduleSpecifier: '@taiga-ui/cdk' },
|
@@ -83,13 +94,12 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
83
94
|
to: { name: 'TuiAlert', moduleSpecifier: '@taiga-ui/core' },
|
84
95
|
},
|
85
96
|
{
|
86
|
-
from:
|
97
|
+
from: [
|
98
|
+
{ name: 'TuiNotificationComponent', moduleSpecifier: '@taiga-ui/core' },
|
99
|
+
{ name: 'TuiNotificationModule', moduleSpecifier: '@taiga-ui/core' },
|
100
|
+
],
|
87
101
|
to: { name: 'TuiNotification', moduleSpecifier: '@taiga-ui/core' },
|
88
102
|
},
|
89
|
-
{
|
90
|
-
from: { name: 'TuiNotificationT', moduleSpecifier: '@taiga-ui/core' },
|
91
|
-
to: { name: 'TuiNotificationStatus', moduleSpecifier: '@taiga-ui/core' },
|
92
|
-
},
|
93
103
|
{
|
94
104
|
from: { name: 'TuiFormatPhonePipe', moduleSpecifier: '@taiga-ui/core' },
|
95
105
|
to: { name: 'TuiFormatPhonePipe', moduleSpecifier: '@taiga-ui/legacy' },
|
@@ -195,10 +205,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
195
205
|
},
|
196
206
|
{
|
197
207
|
from: { name: 'TuiPushModule', moduleSpecifier: '@taiga-ui/kit' },
|
198
|
-
to:
|
199
|
-
{ name: 'TuiPush', moduleSpecifier: '@taiga-ui/kit' },
|
200
|
-
{ name: 'TuiPushDirective', moduleSpecifier: '@taiga-ui/kit' },
|
201
|
-
],
|
208
|
+
to: { name: 'TuiPush', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
|
202
209
|
},
|
203
210
|
{
|
204
211
|
from: { name: 'TuiElasticContainerModule', moduleSpecifier: '@taiga-ui/kit' },
|
@@ -217,11 +224,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
217
224
|
to: { name: 'TuiInputInline', moduleSpecifier: '@taiga-ui/kit' },
|
218
225
|
},
|
219
226
|
{
|
220
|
-
from:
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
from: { name: 'TuiIslandModule', moduleSpecifier: '@taiga-ui/kit' },
|
227
|
+
from: [
|
228
|
+
{ name: 'TuiIslandComponent', moduleSpecifier: '@taiga-ui/kit' },
|
229
|
+
{ name: 'TuiIslandModule', moduleSpecifier: '@taiga-ui/kit' },
|
230
|
+
],
|
225
231
|
to: { name: 'TuiIslandDirective', moduleSpecifier: '@taiga-ui/legacy' },
|
226
232
|
},
|
227
233
|
{
|
@@ -233,7 +239,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
233
239
|
},
|
234
240
|
},
|
235
241
|
{
|
236
|
-
from:
|
242
|
+
from: [
|
243
|
+
{ name: 'TuiLineClampComponent', moduleSpecifier: '@taiga-ui/kit' },
|
244
|
+
{ name: 'TuiLineClampModule', moduleSpecifier: '@taiga-ui/kit' },
|
245
|
+
],
|
237
246
|
to: { name: 'TuiLineClamp', moduleSpecifier: '@taiga-ui/kit' },
|
238
247
|
},
|
239
248
|
{
|
@@ -306,14 +315,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
306
315
|
},
|
307
316
|
},
|
308
317
|
{
|
309
|
-
from:
|
310
|
-
|
311
|
-
name: '
|
312
|
-
|
313
|
-
},
|
314
|
-
},
|
315
|
-
{
|
316
|
-
from: { name: 'TuiCardComponent', moduleSpecifier: '@taiga-ui/addon-commerce' },
|
318
|
+
from: [
|
319
|
+
{ name: 'TuiCardModule', moduleSpecifier: '@taiga-ui/addon-commerce' },
|
320
|
+
{ name: 'TuiCardComponent', moduleSpecifier: '@taiga-ui/addon-commerce' },
|
321
|
+
],
|
317
322
|
to: {
|
318
323
|
name: 'TuiThumbnailCard',
|
319
324
|
moduleSpecifier: '@taiga-ui/addon-commerce',
|
@@ -336,11 +341,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
336
341
|
to: { name: 'TuiTextfieldComponent', moduleSpecifier: '@taiga-ui/legacy' },
|
337
342
|
},
|
338
343
|
{
|
339
|
-
from:
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
from: { name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/kit' },
|
344
|
+
from: [
|
345
|
+
{ name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/experimental' },
|
346
|
+
{ name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/kit' },
|
347
|
+
],
|
344
348
|
to: { name: 'TuiBadge', moduleSpecifier: '@taiga-ui/kit' },
|
345
349
|
},
|
346
350
|
{
|
@@ -352,11 +356,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
352
356
|
to: { name: 'TuiCopyProcessor', moduleSpecifier: '@taiga-ui/cdk' },
|
353
357
|
},
|
354
358
|
{
|
355
|
-
from:
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
from: { name: 'TuiControlValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
|
359
|
+
from: [
|
360
|
+
{ name: 'AbstractTuiValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
|
361
|
+
{ name: 'TuiControlValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
|
362
|
+
],
|
360
363
|
to: { name: 'TuiValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
|
361
364
|
},
|
362
365
|
{
|
@@ -380,15 +383,13 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
380
383
|
to: { name: 'TuiReplacePipe', moduleSpecifier: '@taiga-ui/cdk' },
|
381
384
|
},
|
382
385
|
{
|
383
|
-
from:
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
{
|
391
|
-
from: { name: 'TuiPrimitiveCheckboxModule', moduleSpecifier: '@taiga-ui/core' },
|
386
|
+
from: [
|
387
|
+
{ name: 'TuiCheckboxModule', moduleSpecifier: '@taiga-ui/experimental' },
|
388
|
+
{ name: 'TuiCheckboxModule', moduleSpecifier: '@taiga-ui/kit' },
|
389
|
+
{ name: 'TuiPrimitiveCheckboxModule', moduleSpecifier: '@taiga-ui/core' },
|
390
|
+
{ name: 'TuiCheckboxComponent', moduleSpecifier: '@taiga-ui/kit' },
|
391
|
+
{ name: 'TuiCheckboxLabeledComponent', moduleSpecifier: '@taiga-ui/kit' },
|
392
|
+
],
|
392
393
|
to: { name: 'TuiCheckbox', moduleSpecifier: '@taiga-ui/kit' },
|
393
394
|
},
|
394
395
|
{
|
@@ -399,39 +400,32 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
399
400
|
],
|
400
401
|
},
|
401
402
|
{
|
402
|
-
from:
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
from: { name: 'TuiRadioModule', moduleSpecifier: '@taiga-ui/core' },
|
403
|
+
from: [
|
404
|
+
{ name: 'TuiRadioModule', moduleSpecifier: '@taiga-ui/experimental' },
|
405
|
+
{ name: 'TuiRadioModule', moduleSpecifier: '@taiga-ui/core' },
|
406
|
+
],
|
407
407
|
to: { name: 'TuiRadio', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
|
408
408
|
},
|
409
409
|
{
|
410
|
-
from:
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
from: { name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/kit' },
|
410
|
+
from: [
|
411
|
+
{ name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/experimental' },
|
412
|
+
{ name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/kit' },
|
413
|
+
],
|
415
414
|
to: { name: 'TuiAvatar', moduleSpecifier: '@taiga-ui/kit' },
|
416
415
|
},
|
417
416
|
{
|
418
|
-
from:
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
to: { name: 'TuiSwitch', moduleSpecifier: '@taiga-ui/kit' },
|
424
|
-
},
|
425
|
-
{
|
426
|
-
from: { name: 'TuiToggleComponent', moduleSpecifier: '@taiga-ui/kit' },
|
417
|
+
from: [
|
418
|
+
{ name: 'TuiToggleModule', moduleSpecifier: '@taiga-ui/experimental' },
|
419
|
+
{ name: 'TuiToggleModule', moduleSpecifier: '@taiga-ui/kit' },
|
420
|
+
{ name: 'TuiToggleComponent', moduleSpecifier: '@taiga-ui/kit' },
|
421
|
+
],
|
427
422
|
to: { name: 'TuiSwitch', moduleSpecifier: '@taiga-ui/kit' },
|
428
423
|
},
|
429
424
|
{
|
430
|
-
from:
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
from: { name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/kit' },
|
425
|
+
from: [
|
426
|
+
{ name: 'TuiTextAreaModule', moduleSpecifier: '@taiga-ui/kit' },
|
427
|
+
{ name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/kit' },
|
428
|
+
],
|
435
429
|
to: { name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/legacy' },
|
436
430
|
},
|
437
431
|
{
|
@@ -439,15 +433,14 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
439
433
|
to: { name: 'TuiTextareaDirective', moduleSpecifier: '@taiga-ui/legacy' },
|
440
434
|
},
|
441
435
|
{
|
442
|
-
from: { name: '
|
443
|
-
to: {
|
444
|
-
name: 'TuiBadgedContent',
|
445
|
-
moduleSpecifier: '@taiga-ui/kit',
|
446
|
-
spreadInModule: true,
|
447
|
-
},
|
436
|
+
from: { name: 'TuiTextAreaComponent', moduleSpecifier: '@taiga-ui/kit' },
|
437
|
+
to: { name: 'TuiTextareaComponent', moduleSpecifier: '@taiga-ui/legacy' },
|
448
438
|
},
|
449
439
|
{
|
450
|
-
from:
|
440
|
+
from: [
|
441
|
+
{ name: 'TuiBadgedContentModule', moduleSpecifier: '@taiga-ui/experimental' },
|
442
|
+
{ name: 'TuiBadgedContentModule', moduleSpecifier: '@taiga-ui/kit' },
|
443
|
+
],
|
451
444
|
to: {
|
452
445
|
name: 'TuiBadgedContent',
|
453
446
|
moduleSpecifier: '@taiga-ui/kit',
|
@@ -461,10 +454,6 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
461
454
|
},
|
462
455
|
to: { name: 'TuiBadgeNotification', moduleSpecifier: '@taiga-ui/kit' },
|
463
456
|
},
|
464
|
-
{
|
465
|
-
from: { name: 'TuiTextAreaComponent', moduleSpecifier: '@taiga-ui/kit' },
|
466
|
-
to: { name: 'TuiTextareaComponent', moduleSpecifier: '@taiga-ui/legacy' },
|
467
|
-
},
|
468
457
|
{
|
469
458
|
from: { name: 'TuiInputCountModule', moduleSpecifier: '@taiga-ui/kit' },
|
470
459
|
to: { name: 'TuiInputNumberModule', moduleSpecifier: '@taiga-ui/kit' },
|
@@ -512,15 +501,17 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
512
501
|
to: { name: 'TUI_SANITIZER', moduleSpecifier: '@taiga-ui/legacy' },
|
513
502
|
},
|
514
503
|
{
|
515
|
-
from:
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
from: { name: 'TuiScrollbarComponent', moduleSpecifier: '@taiga-ui/core' },
|
504
|
+
from: [
|
505
|
+
{ name: 'TuiScrollbarModule', moduleSpecifier: '@taiga-ui/core' },
|
506
|
+
{ name: 'TuiScrollbarComponent', moduleSpecifier: '@taiga-ui/core' },
|
507
|
+
],
|
520
508
|
to: { name: 'TuiScrollbar', moduleSpecifier: '@taiga-ui/core' },
|
521
509
|
},
|
522
510
|
{
|
523
|
-
from:
|
511
|
+
from: [
|
512
|
+
{ name: 'TuiGroupModule', moduleSpecifier: '@taiga-ui/core' },
|
513
|
+
{ name: 'TuiGroupDirective', moduleSpecifier: '@taiga-ui/core' },
|
514
|
+
],
|
524
515
|
to: { name: 'TuiGroup', moduleSpecifier: '@taiga-ui/core' },
|
525
516
|
},
|
526
517
|
{
|
@@ -544,21 +535,12 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
544
535
|
to: { name: 'TuiDropdownService', moduleSpecifier: '@taiga-ui/core' },
|
545
536
|
},
|
546
537
|
{
|
547
|
-
from:
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
from: { name: 'TuiPortalModule', moduleSpecifier: '@taiga-ui/cdk' },
|
538
|
+
from: [
|
539
|
+
{ name: 'TuiPortalDirective', moduleSpecifier: '@taiga-ui/cdk' },
|
540
|
+
{ name: 'TuiPortalModule', moduleSpecifier: '@taiga-ui/cdk' },
|
541
|
+
],
|
552
542
|
to: { name: 'TuiDropdownPortal', moduleSpecifier: '@taiga-ui/core' },
|
553
543
|
},
|
554
|
-
{
|
555
|
-
from: { name: 'TuiDropdownModule', moduleSpecifier: '@taiga-ui/core' },
|
556
|
-
to: {
|
557
|
-
name: 'TuiDropdown',
|
558
|
-
moduleSpecifier: '@taiga-ui/core',
|
559
|
-
spreadInModule: true,
|
560
|
-
},
|
561
|
-
},
|
562
544
|
{
|
563
545
|
from: { name: 'TuiDroppableModule', moduleSpecifier: '@taiga-ui/cdk' },
|
564
546
|
to: { name: 'TuiDroppable', moduleSpecifier: '@taiga-ui/cdk' },
|
@@ -568,11 +550,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
568
550
|
to: { name: 'TuiValidator', moduleSpecifier: '@taiga-ui/cdk' },
|
569
551
|
},
|
570
552
|
{
|
571
|
-
from:
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
from: { name: 'TuiMoneyModule', moduleSpecifier: '@taiga-ui/addon-commerce' },
|
553
|
+
from: [
|
554
|
+
{ name: 'TuiAmountPipeModule', moduleSpecifier: '@taiga-ui/experimental' },
|
555
|
+
{ name: 'TuiMoneyModule', moduleSpecifier: '@taiga-ui/addon-commerce' },
|
556
|
+
],
|
576
557
|
to: { name: 'TuiAmountPipe', moduleSpecifier: '@taiga-ui/addon-commerce' },
|
577
558
|
},
|
578
559
|
{
|
@@ -605,7 +586,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
605
586
|
},
|
606
587
|
{
|
607
588
|
from: { name: 'TuiEditorSocketModule', moduleSpecifier: '@tinkoff/tui-editor' },
|
608
|
-
to: { name: 'TuiEditorSocket', moduleSpecifier: '@taiga/editor' },
|
589
|
+
to: { name: 'TuiEditorSocket', moduleSpecifier: '@taiga-ui/editor' },
|
609
590
|
},
|
610
591
|
{
|
611
592
|
from: { name: 'defaultEditorExtensions', moduleSpecifier: '@tinkoff/tui-editor' },
|
@@ -619,11 +600,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
619
600
|
to: { name: 'TUI_EDITOR_DEFAULT_EXTENSIONS', moduleSpecifier: '@taiga-ui/editor' },
|
620
601
|
},
|
621
602
|
{
|
622
|
-
from:
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
from: { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@tinkoff/tui-editor' },
|
603
|
+
from: [
|
604
|
+
{ name: 'defaultEditorTools', moduleSpecifier: '@tinkoff/tui-editor' },
|
605
|
+
{ name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@tinkoff/tui-editor' },
|
606
|
+
],
|
627
607
|
to: { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@taiga-ui/editor' },
|
628
608
|
},
|
629
609
|
{
|
@@ -662,19 +642,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
662
642
|
to: { name: 'TuiIcon', moduleSpecifier: '@taiga-ui/core' },
|
663
643
|
},
|
664
644
|
{
|
665
|
-
from:
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
from: { name: 'TuiCheckboxLabeledComponent', moduleSpecifier: '@taiga-ui/kit' },
|
670
|
-
to: { name: 'TuiCheckbox', moduleSpecifier: '@taiga-ui/kit' },
|
671
|
-
},
|
672
|
-
{
|
673
|
-
from: { name: 'TuiCheckboxLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
|
674
|
-
to: { name: 'TuiLabel', moduleSpecifier: '@taiga-ui/core' },
|
675
|
-
},
|
676
|
-
{
|
677
|
-
from: { name: 'TuiRadioLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
|
645
|
+
from: [
|
646
|
+
{ name: 'TuiCheckboxLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
|
647
|
+
{ name: 'TuiRadioLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
|
648
|
+
],
|
678
649
|
to: { name: 'TuiLabel', moduleSpecifier: '@taiga-ui/core' },
|
679
650
|
},
|
680
651
|
{
|
@@ -700,13 +671,20 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
700
671
|
to: { name: 'TuiTabs', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
|
701
672
|
},
|
702
673
|
{
|
703
|
-
from:
|
674
|
+
from: [
|
675
|
+
{ name: 'TuiHostedDropdownModule', moduleSpecifier: '@taiga-ui/core' },
|
676
|
+
{ name: 'TuiDropdownModule', moduleSpecifier: '@taiga-ui/core' },
|
677
|
+
],
|
704
678
|
to: {
|
705
679
|
name: 'TuiDropdown',
|
706
680
|
moduleSpecifier: '@taiga-ui/core',
|
707
681
|
spreadInModule: true,
|
708
682
|
},
|
709
683
|
},
|
684
|
+
{
|
685
|
+
from: { name: 'TuiHostedDropdownComponent', moduleSpecifier: '@taiga-ui/core' },
|
686
|
+
to: { name: 'TuiDropdownOpen', moduleSpecifier: '@taiga-ui/core' },
|
687
|
+
},
|
710
688
|
{
|
711
689
|
from: { name: 'TuiTitleModule', moduleSpecifier: '@taiga-ui/experimental' },
|
712
690
|
to: { name: 'TuiTitle', moduleSpecifier: '@taiga-ui/core' },
|
@@ -728,11 +706,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
728
706
|
to: { name: 'TuiCompass', moduleSpecifier: '@taiga-ui/kit' },
|
729
707
|
},
|
730
708
|
{
|
731
|
-
from:
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
from: { name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/kit' },
|
709
|
+
from: [
|
710
|
+
{ name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/experimental' },
|
711
|
+
{ name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/kit' },
|
712
|
+
],
|
736
713
|
to: { name: 'TuiRating', moduleSpecifier: '@taiga-ui/kit' },
|
737
714
|
},
|
738
715
|
{
|
@@ -744,7 +721,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
744
721
|
to: { name: 'TuiFlagPipe', moduleSpecifier: '@taiga-ui/core' },
|
745
722
|
},
|
746
723
|
{
|
747
|
-
from:
|
724
|
+
from: [
|
725
|
+
{ name: 'TuiSvgModule', moduleSpecifier: '@taiga-ui/core' },
|
726
|
+
{ name: 'TuiSvgComponent', moduleSpecifier: '@taiga-ui/core' },
|
727
|
+
],
|
748
728
|
to: { name: 'TuiIcon', moduleSpecifier: '@taiga-ui/core' },
|
749
729
|
},
|
750
730
|
{
|
@@ -773,7 +753,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
773
753
|
],
|
774
754
|
},
|
775
755
|
{
|
776
|
-
from:
|
756
|
+
from: [
|
757
|
+
{ name: 'TuiMarkerIconModule', moduleSpecifier: '@taiga-ui/kit' },
|
758
|
+
{ name: 'TuiMarkerIconComponent', moduleSpecifier: '@taiga-ui/kit' },
|
759
|
+
],
|
777
760
|
to: { name: 'TuiAvatar', moduleSpecifier: '@taiga-ui/kit' },
|
778
761
|
},
|
779
762
|
{
|
@@ -788,20 +771,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
788
771
|
],
|
789
772
|
},
|
790
773
|
{
|
791
|
-
from:
|
774
|
+
from: [
|
775
|
+
{ name: 'TuiLinkModule', moduleSpecifier: '@taiga-ui/core' },
|
776
|
+
{ name: 'TuiLinkComponent', moduleSpecifier: '@taiga-ui/core' },
|
777
|
+
],
|
792
778
|
to: { name: 'TuiLink', moduleSpecifier: '@taiga-ui/core' },
|
793
779
|
},
|
794
780
|
{
|
795
781
|
from: { name: 'TuiInteractiveStateT', moduleSpecifier: '@taiga-ui/core' },
|
796
782
|
to: { name: 'TuiInteractiveState', moduleSpecifier: '@taiga-ui/core' },
|
797
783
|
},
|
798
|
-
{
|
799
|
-
from: { name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/core' },
|
800
|
-
to: {
|
801
|
-
name: 'TuiButton',
|
802
|
-
moduleSpecifier: '@taiga-ui/core',
|
803
|
-
},
|
804
|
-
},
|
805
784
|
{
|
806
785
|
from: { name: 'TUI_ARROW', moduleSpecifier: '@taiga-ui/kit' },
|
807
786
|
to: {
|
@@ -816,6 +795,20 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
816
795
|
moduleSpecifier: '@taiga-ui/legacy',
|
817
796
|
},
|
818
797
|
},
|
798
|
+
{
|
799
|
+
from: { name: 'TuiDialog', moduleSpecifier: '@taiga-ui/cdk' },
|
800
|
+
to: {
|
801
|
+
name: 'TuiPopover',
|
802
|
+
moduleSpecifier: '@taiga-ui/cdk',
|
803
|
+
},
|
804
|
+
},
|
805
|
+
{
|
806
|
+
from: { name: 'TuiBaseDialogContext', moduleSpecifier: '@taiga-ui/cdk' },
|
807
|
+
to: {
|
808
|
+
name: 'TuiPopoverContext',
|
809
|
+
moduleSpecifier: '@taiga-ui/cdk',
|
810
|
+
},
|
811
|
+
},
|
819
812
|
{
|
820
813
|
from: { name: 'TuiDialogModule', moduleSpecifier: '@taiga-ui/core' },
|
821
814
|
to: {
|
@@ -824,7 +817,11 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
824
817
|
},
|
825
818
|
},
|
826
819
|
{
|
827
|
-
from:
|
820
|
+
from: [
|
821
|
+
{ name: 'TuiButtonComponent', moduleSpecifier: '@taiga-ui/core' },
|
822
|
+
{ name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/core' },
|
823
|
+
{ name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/experimental' },
|
824
|
+
],
|
828
825
|
to: {
|
829
826
|
name: 'TuiButton',
|
830
827
|
moduleSpecifier: '@taiga-ui/core',
|
@@ -1015,16 +1012,6 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1015
1012
|
moduleSpecifier: '@taiga-ui/proprietary',
|
1016
1013
|
},
|
1017
1014
|
},
|
1018
|
-
{
|
1019
|
-
from: {
|
1020
|
-
name: 'TuiIllustrationsModule',
|
1021
|
-
moduleSpecifier: '@taiga-ui/proprietary-icons',
|
1022
|
-
},
|
1023
|
-
to: {
|
1024
|
-
name: 'TuiIllustrationModePipe',
|
1025
|
-
moduleSpecifier: '@taiga-ui/proprietary',
|
1026
|
-
},
|
1027
|
-
},
|
1028
1015
|
{
|
1029
1016
|
from: {
|
1030
1017
|
name: 'ProductsNavigationModule',
|
@@ -1199,10 +1186,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1199
1186
|
},
|
1200
1187
|
},
|
1201
1188
|
{
|
1202
|
-
from:
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1189
|
+
from: [
|
1190
|
+
{
|
1191
|
+
name: 'TuiTableBarsHostModule',
|
1192
|
+
moduleSpecifier: '@taiga-ui/addon-tablebars',
|
1193
|
+
},
|
1194
|
+
{
|
1195
|
+
name: 'TuiTableBarsHostComponent',
|
1196
|
+
moduleSpecifier: '@taiga-ui/addon-tablebars',
|
1197
|
+
},
|
1198
|
+
],
|
1206
1199
|
to: {
|
1207
1200
|
name: 'TuiTableBarsHostComponent',
|
1208
1201
|
moduleSpecifier: '@taiga-ui/legacy',
|
@@ -1270,10 +1263,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1270
1263
|
},
|
1271
1264
|
},
|
1272
1265
|
{
|
1273
|
-
from:
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1266
|
+
from: [
|
1267
|
+
{
|
1268
|
+
name: 'TuiAppBarModule',
|
1269
|
+
moduleSpecifier: '@taiga-ui/addon-mobile',
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
name: 'TuiAppBarModule',
|
1273
|
+
moduleSpecifier: '@taiga-ui/layout',
|
1274
|
+
},
|
1275
|
+
],
|
1277
1276
|
to: {
|
1278
1277
|
name: 'TuiAppBar',
|
1279
1278
|
moduleSpecifier: '@taiga-ui/layout',
|
@@ -1316,7 +1315,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1316
1315
|
moduleSpecifier: '@taiga-ui/experimental',
|
1317
1316
|
},
|
1318
1317
|
to: {
|
1319
|
-
name: '
|
1318
|
+
name: 'TuiButton',
|
1320
1319
|
moduleSpecifier: '@taiga-ui/kit',
|
1321
1320
|
},
|
1322
1321
|
},
|
@@ -1391,8 +1390,9 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1391
1390
|
moduleSpecifier: '@taiga-ui/kit',
|
1392
1391
|
},
|
1393
1392
|
to: {
|
1394
|
-
name: '
|
1393
|
+
name: 'TuiFiles',
|
1395
1394
|
moduleSpecifier: '@taiga-ui/kit',
|
1395
|
+
spreadInModule: true,
|
1396
1396
|
},
|
1397
1397
|
},
|
1398
1398
|
{
|
@@ -1473,13 +1473,20 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1473
1473
|
to: {
|
1474
1474
|
name: 'TuiProprietaryNavigation',
|
1475
1475
|
moduleSpecifier: '@taiga-ui/proprietary',
|
1476
|
+
spreadInModule: true,
|
1476
1477
|
},
|
1477
1478
|
},
|
1478
1479
|
{
|
1479
|
-
from:
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1480
|
+
from: [
|
1481
|
+
{
|
1482
|
+
name: 'TuiErrorModule',
|
1483
|
+
moduleSpecifier: '@taiga-ui/core',
|
1484
|
+
},
|
1485
|
+
{
|
1486
|
+
name: 'TuiErrorComponent',
|
1487
|
+
moduleSpecifier: '@taiga-ui/core',
|
1488
|
+
},
|
1489
|
+
],
|
1483
1490
|
to: {
|
1484
1491
|
name: 'TuiError',
|
1485
1492
|
moduleSpecifier: '@taiga-ui/core',
|
@@ -1528,60 +1535,32 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1528
1535
|
},
|
1529
1536
|
},
|
1530
1537
|
{
|
1531
|
-
from:
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
moduleSpecifier: '@taiga-ui/addon-doc',
|
1558
|
-
},
|
1559
|
-
},
|
1560
|
-
{
|
1561
|
-
from: {
|
1562
|
-
name: 'TuiDocNavigationModule',
|
1563
|
-
moduleSpecifier: '@taiga-ui/addon-doc',
|
1564
|
-
},
|
1565
|
-
to: {
|
1566
|
-
name: 'TuiAddonDoc',
|
1567
|
-
moduleSpecifier: '@taiga-ui/addon-doc',
|
1568
|
-
},
|
1569
|
-
},
|
1570
|
-
{
|
1571
|
-
from: {
|
1572
|
-
name: 'TuiDocPageModule',
|
1573
|
-
moduleSpecifier: '@taiga-ui/addon-doc',
|
1574
|
-
},
|
1575
|
-
to: {
|
1576
|
-
name: 'TuiAddonDoc',
|
1577
|
-
moduleSpecifier: '@taiga-ui/addon-doc',
|
1578
|
-
},
|
1579
|
-
},
|
1580
|
-
{
|
1581
|
-
from: {
|
1582
|
-
name: 'TuiAddonDocModule',
|
1583
|
-
moduleSpecifier: '@taiga-ui/addon-doc',
|
1584
|
-
},
|
1538
|
+
from: [
|
1539
|
+
{
|
1540
|
+
name: 'TuiDocCodeModule',
|
1541
|
+
moduleSpecifier: '@taiga-ui/addon-doc',
|
1542
|
+
},
|
1543
|
+
{
|
1544
|
+
name: 'TuiDocDemoModule',
|
1545
|
+
moduleSpecifier: '@taiga-ui/addon-doc',
|
1546
|
+
},
|
1547
|
+
{
|
1548
|
+
name: 'TuiDocMainModule',
|
1549
|
+
moduleSpecifier: '@taiga-ui/addon-doc',
|
1550
|
+
},
|
1551
|
+
{
|
1552
|
+
name: 'TuiDocNavigationModule',
|
1553
|
+
moduleSpecifier: '@taiga-ui/addon-doc',
|
1554
|
+
},
|
1555
|
+
{
|
1556
|
+
name: 'TuiDocPageModule',
|
1557
|
+
moduleSpecifier: '@taiga-ui/addon-doc',
|
1558
|
+
},
|
1559
|
+
{
|
1560
|
+
name: 'TuiAddonDocModule',
|
1561
|
+
moduleSpecifier: '@taiga-ui/addon-doc',
|
1562
|
+
},
|
1563
|
+
],
|
1585
1564
|
to: {
|
1586
1565
|
name: 'TuiAddonDoc',
|
1587
1566
|
moduleSpecifier: '@taiga-ui/addon-doc',
|
@@ -1696,7 +1675,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1696
1675
|
},
|
1697
1676
|
to: {
|
1698
1677
|
name: 'TuiCurrencyPipe',
|
1699
|
-
moduleSpecifier: '@taiga-ui/addon-
|
1678
|
+
moduleSpecifier: '@taiga-ui/addon-commerce',
|
1700
1679
|
},
|
1701
1680
|
},
|
1702
1681
|
{
|
@@ -1845,6 +1824,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
1845
1824
|
moduleSpecifier: '@taiga-ui/legacy',
|
1846
1825
|
},
|
1847
1826
|
},
|
1827
|
+
{
|
1828
|
+
from: {
|
1829
|
+
name: 'TuiInputComponent',
|
1830
|
+
moduleSpecifier: '@taiga-ui/kit',
|
1831
|
+
},
|
1832
|
+
to: {
|
1833
|
+
name: 'TuiInputComponent',
|
1834
|
+
moduleSpecifier: '@taiga-ui/legacy',
|
1835
|
+
},
|
1836
|
+
},
|
1848
1837
|
{
|
1849
1838
|
from: {
|
1850
1839
|
name: 'TuiInputCopyModule',
|
@@ -2486,10 +2475,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
2486
2475
|
},
|
2487
2476
|
},
|
2488
2477
|
{
|
2489
|
-
from:
|
2490
|
-
|
2491
|
-
|
2492
|
-
|
2478
|
+
from: [
|
2479
|
+
{
|
2480
|
+
name: 'TuiLabelModule',
|
2481
|
+
moduleSpecifier: '@taiga-ui/core',
|
2482
|
+
},
|
2483
|
+
{
|
2484
|
+
name: 'TuiLabelComponent',
|
2485
|
+
moduleSpecifier: '@taiga-ui/core',
|
2486
|
+
},
|
2487
|
+
],
|
2493
2488
|
to: {
|
2494
2489
|
name: 'TuiLabel',
|
2495
2490
|
moduleSpecifier: '@taiga-ui/core',
|
@@ -2601,4 +2596,32 @@ exports.IDENTIFIERS_TO_REPLACE = [
|
|
2601
2596
|
from: { name: 'ANIMATION_FRAME', moduleSpecifier: '@ng-web-apis/common' },
|
2602
2597
|
to: { name: 'WA_ANIMATION_FRAME', moduleSpecifier: '@ng-web-apis/common' },
|
2603
2598
|
},
|
2599
|
+
{
|
2600
|
+
from: { name: 'MaskitoModule', moduleSpecifier: '@maskito/angular' },
|
2601
|
+
to: { name: 'MaskitoDirective', moduleSpecifier: '@maskito/angular' },
|
2602
|
+
},
|
2603
|
+
{
|
2604
|
+
from: { name: 'TuiStaticRequestService', moduleSpecifier: '@taiga-ui/cdk' },
|
2605
|
+
to: { name: 'TuiStaticRequestService', moduleSpecifier: '@taiga-ui/legacy' },
|
2606
|
+
},
|
2607
|
+
{
|
2608
|
+
from: { name: 'TuiDeepPartial', moduleSpecifier: '@taiga-ui/cdk' },
|
2609
|
+
to: { name: 'TuiDeepPartial', moduleSpecifier: '@taiga-ui/addon-doc' },
|
2610
|
+
},
|
2611
|
+
{
|
2612
|
+
from: { name: 'TUI_FOCUSABLE_ITEM_ACCESSOR', moduleSpecifier: '@taiga-ui/cdk' },
|
2613
|
+
to: { name: 'TUI_FOCUSABLE_ITEM_ACCESSOR', moduleSpecifier: '@taiga-ui/legacy' },
|
2614
|
+
},
|
2615
|
+
{
|
2616
|
+
from: { name: 'TuiNativeFocusableElement', moduleSpecifier: '@taiga-ui/cdk' },
|
2617
|
+
to: { name: 'TuiNativeFocusableElement', moduleSpecifier: '@taiga-ui/legacy' },
|
2618
|
+
},
|
2619
|
+
{
|
2620
|
+
from: { name: 'TuiFocusableElementAccessor', moduleSpecifier: '@taiga-ui/cdk' },
|
2621
|
+
to: { name: 'TuiFocusableElementAccessor', moduleSpecifier: '@taiga-ui/legacy' },
|
2622
|
+
},
|
2623
|
+
{
|
2624
|
+
from: { name: 'TuiObscuredModule', moduleSpecifier: '@taiga-ui/cdk' },
|
2625
|
+
to: { name: 'TuiObscured', moduleSpecifier: '@taiga-ui/cdk' },
|
2626
|
+
},
|
2604
2627
|
];
|