@taiga-ui/cdk 4.0.0-alpha.0 → 4.0.0-rc.10

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.
Files changed (199) hide show
  1. package/classes/index.d.ts +0 -1
  2. package/constants/used-icons.d.ts +1 -1
  3. package/constants/version.d.ts +1 -1
  4. package/constants/version.js +1 -1
  5. package/esm2022/classes/index.mjs +1 -2
  6. package/esm2022/constants/used-icons.mjs +9 -1
  7. package/esm2022/constants/version.mjs +2 -2
  8. package/esm2022/directives/auto-focus/autofocus.options.mjs +3 -3
  9. package/esm2022/directives/copy-processor/copy-processor.directive.mjs +3 -3
  10. package/esm2022/directives/high-dpi/high-dpi.directive.mjs +3 -3
  11. package/esm2022/directives/obscured/obscured.service.mjs +3 -3
  12. package/esm2022/services/index.mjs +2 -2
  13. package/esm2022/services/scroll.service.mjs +4 -4
  14. package/esm2022/services/theme-color.service.mjs +30 -0
  15. package/esm2022/tokens/active-element.mjs +3 -3
  16. package/esm2022/tokens/environment.mjs +15 -7
  17. package/esm2022/tokens/removed-element.mjs +3 -3
  18. package/esm2022/tokens/window-size.mjs +3 -3
  19. package/esm2022/utils/focus/focused-in.mjs +7 -0
  20. package/esm2022/utils/focus/index.mjs +2 -1
  21. package/fesm2022/taiga-ui-cdk-classes.mjs +1 -15
  22. package/fesm2022/taiga-ui-cdk-classes.mjs.map +1 -1
  23. package/fesm2022/taiga-ui-cdk-constants.mjs +9 -1
  24. package/fesm2022/taiga-ui-cdk-constants.mjs.map +1 -1
  25. package/fesm2022/taiga-ui-cdk-directives-auto-focus.mjs +2 -2
  26. package/fesm2022/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -1
  27. package/fesm2022/taiga-ui-cdk-directives-copy-processor.mjs +2 -2
  28. package/fesm2022/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -1
  29. package/fesm2022/taiga-ui-cdk-directives-high-dpi.mjs +2 -2
  30. package/fesm2022/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -1
  31. package/fesm2022/taiga-ui-cdk-directives-obscured.mjs +2 -2
  32. package/fesm2022/taiga-ui-cdk-directives-obscured.mjs.map +1 -1
  33. package/fesm2022/taiga-ui-cdk-services.mjs +22 -25
  34. package/fesm2022/taiga-ui-cdk-services.mjs.map +1 -1
  35. package/fesm2022/taiga-ui-cdk-tokens.mjs +19 -12
  36. package/fesm2022/taiga-ui-cdk-tokens.mjs.map +1 -1
  37. package/fesm2022/taiga-ui-cdk-utils-focus.mjs +8 -2
  38. package/fesm2022/taiga-ui-cdk-utils-focus.mjs.map +1 -1
  39. package/package.json +356 -67
  40. package/schematics/ng-update/interfaces/html-comment.d.ts +3 -2
  41. package/schematics/ng-update/interfaces/replacement-attribute-value.d.ts +6 -2
  42. package/schematics/ng-update/interfaces/replacement-identifier.d.ts +4 -10
  43. package/schematics/ng-update/interfaces/replacement-type.d.ts +4 -0
  44. package/schematics/ng-update/steps/rename-types.js +6 -2
  45. package/schematics/ng-update/steps/replace-identifier.js +30 -8
  46. package/schematics/ng-update/steps/replace-package-name.js +4 -5
  47. package/schematics/ng-update/utils/templates/replace-attr-values.js +39 -10
  48. package/schematics/ng-update/utils/templates/template-comments.js +7 -1
  49. package/schematics/ng-update/v4/index.js +9 -1
  50. package/schematics/ng-update/v4/migrate-icons/index.js +2 -2
  51. package/schematics/ng-update/v4/migrate-icons/rename-icons.js +13 -5
  52. package/schematics/ng-update/v4/migrate-icons/rename-proprietary-icons.d.ts +2 -1
  53. package/schematics/ng-update/v4/migrate-icons/rename-proprietary-icons.js +19 -6
  54. package/schematics/ng-update/v4/steps/constants/attr-to-directive-replace.js +3 -2
  55. package/schematics/ng-update/v4/steps/constants/attr-with-values-to-replace.js +44 -3
  56. package/schematics/ng-update/v4/steps/constants/attrs-to-replace.js +107 -21
  57. package/schematics/ng-update/v4/steps/constants/html-comments.js +9 -0
  58. package/schematics/ng-update/v4/steps/constants/identifiers-to-replace.js +552 -213
  59. package/schematics/ng-update/v4/steps/constants/index.d.ts +1 -0
  60. package/schematics/ng-update/v4/steps/constants/index.js +1 -0
  61. package/schematics/ng-update/v4/steps/constants/inputs-to-remove.js +1 -0
  62. package/schematics/ng-update/v4/steps/constants/migration-warnings.js +20 -0
  63. package/schematics/ng-update/v4/steps/constants/modules-to-remove.js +20 -0
  64. package/schematics/ng-update/v4/steps/constants/modules-to-replace.d.ts +7 -6
  65. package/schematics/ng-update/v4/steps/constants/modules-to-replace.js +1 -0
  66. package/schematics/ng-update/v4/steps/constants/services.d.ts +2 -0
  67. package/schematics/ng-update/v4/steps/constants/services.js +15 -0
  68. package/schematics/ng-update/v4/steps/constants/tags-to-replace.js +14 -2
  69. package/schematics/ng-update/v4/steps/constants/types.js +33 -1
  70. package/schematics/ng-update/v4/steps/index.d.ts +4 -1
  71. package/schematics/ng-update/v4/steps/index.js +4 -1
  72. package/schematics/ng-update/v4/steps/migrate-alert-service.d.ts +2 -0
  73. package/schematics/ng-update/v4/steps/migrate-alert-service.js +110 -0
  74. package/schematics/ng-update/v4/steps/migrate-month-context.d.ts +2 -0
  75. package/schematics/ng-update/v4/steps/migrate-month-context.js +39 -0
  76. package/schematics/ng-update/v4/steps/migrate-number-format-settings.d.ts +2 -0
  77. package/schematics/ng-update/v4/steps/migrate-number-format-settings.js +64 -0
  78. package/schematics/ng-update/v4/steps/migrate-root.d.ts +3 -0
  79. package/schematics/ng-update/v4/steps/migrate-root.js +61 -0
  80. package/schematics/ng-update/v4/steps/migrate-templates.js +10 -2
  81. package/schematics/ng-update/v4/steps/styles/index.js +38 -0
  82. package/schematics/ng-update/v4/steps/styles/migrate-less-scss-constants.d.ts +1 -0
  83. package/schematics/ng-update/v4/steps/styles/migrate-less-scss-constants.js +13 -0
  84. package/schematics/ng-update/v4/steps/styles/migrate-scrollbar-behavior.d.ts +1 -0
  85. package/schematics/ng-update/v4/steps/styles/migrate-scrollbar-behavior.js +10 -0
  86. package/schematics/ng-update/v4/steps/styles/migrate-shadow-mixins.d.ts +1 -0
  87. package/schematics/ng-update/v4/steps/styles/migrate-shadow-mixins.js +23 -0
  88. package/schematics/ng-update/v4/steps/styles/migrate-space-mixins.d.ts +1 -0
  89. package/schematics/ng-update/v4/steps/styles/migrate-space-mixins.js +20 -0
  90. package/schematics/ng-update/v4/steps/styles/migrate-text-mixins.d.ts +1 -0
  91. package/schematics/ng-update/v4/steps/styles/migrate-text-mixins.js +54 -0
  92. package/schematics/ng-update/v4/steps/templates/index.d.ts +6 -0
  93. package/schematics/ng-update/v4/steps/templates/index.js +6 -0
  94. package/schematics/ng-update/v4/steps/templates/migrate-avatar.js +10 -5
  95. package/schematics/ng-update/{v3/steps/migrate-polymorpheus.d.ts → v4/steps/templates/migrate-axes.d.ts} +2 -2
  96. package/schematics/ng-update/v4/steps/templates/migrate-axes.js +26 -0
  97. package/schematics/ng-update/v4/steps/templates/migrate-badge.js +15 -6
  98. package/schematics/ng-update/v4/steps/templates/migrate-badged-content.js +1 -1
  99. package/schematics/ng-update/{v3/steps/migrate-textfield-controller.d.ts → v4/steps/templates/migrate-blocked.d.ts} +2 -2
  100. package/schematics/ng-update/v4/steps/templates/migrate-blocked.js +35 -0
  101. package/schematics/ng-update/v4/steps/templates/migrate-button-appearance.d.ts +8 -0
  102. package/schematics/ng-update/v4/steps/templates/migrate-button-appearance.js +41 -0
  103. package/schematics/ng-update/v4/steps/templates/migrate-expandable.js +3 -2
  104. package/schematics/ng-update/v4/steps/templates/migrate-focusable.js +7 -4
  105. package/schematics/ng-update/v4/steps/templates/migrate-label.d.ts +8 -0
  106. package/schematics/ng-update/v4/steps/templates/migrate-label.js +39 -0
  107. package/schematics/ng-update/v4/steps/templates/migrate-labeled.js +5 -7
  108. package/schematics/ng-update/v4/steps/templates/migrate-mobile-tabs.d.ts +8 -0
  109. package/schematics/ng-update/v4/steps/templates/migrate-mobile-tabs.js +45 -0
  110. package/schematics/ng-update/v4/steps/templates/migrate-notification.d.ts +8 -0
  111. package/schematics/ng-update/v4/steps/templates/migrate-notification.js +64 -0
  112. package/schematics/ng-update/v4/steps/templates/migrate-number-precision.d.ts +8 -0
  113. package/schematics/ng-update/v4/steps/templates/migrate-number-precision.js +36 -0
  114. package/schematics/ng-update/v4/steps/templates/migrate-overscroll.js +4 -6
  115. package/schematics/ng-update/v4/steps/templates/migrate-thumbnail-card.js +2 -1
  116. package/schematics/ng-update/v4/steps/templates/toggles/common.js +3 -2
  117. package/schematics/ng-update/v4/steps/templates/toggles/migrate-checkbox.js +36 -0
  118. package/schematics/ng-update/v4/steps/update-packages.js +21 -8
  119. package/schematics/ng-update/v4/steps/utils/replace-modules-with-providers.d.ts +1 -11
  120. package/schematics/ng-update/v4/steps/utils/replace-modules-with-providers.js +8 -4
  121. package/schematics/utils/get-named-import-references.js +4 -2
  122. package/schematics/utils/templates/elements.js +2 -1
  123. package/schematics/utils/templates/inputs.js +2 -1
  124. package/services/index.d.ts +1 -1
  125. package/services/theme-color.service.d.ts +16 -0
  126. package/tokens/environment.d.ts +1 -0
  127. package/utils/focus/focused-in.d.ts +2 -0
  128. package/utils/focus/index.d.ts +1 -0
  129. package/classes/controller.d.ts +0 -9
  130. package/esm2022/classes/controller.mjs +0 -18
  131. package/esm2022/services/static-request.service.mjs +0 -33
  132. package/schematics/ng-update/v3/constants/breakpoints.d.ts +0 -82
  133. package/schematics/ng-update/v3/constants/breakpoints.js +0 -34
  134. package/schematics/ng-update/v3/constants/constants.d.ts +0 -2
  135. package/schematics/ng-update/v3/constants/constants.js +0 -466
  136. package/schematics/ng-update/v3/constants/deprecated-functions.d.ts +0 -2
  137. package/schematics/ng-update/v3/constants/deprecated-functions.js +0 -680
  138. package/schematics/ng-update/v3/constants/enums.d.ts +0 -2
  139. package/schematics/ng-update/v3/constants/enums.js +0 -284
  140. package/schematics/ng-update/v3/constants/modules.d.ts +0 -2
  141. package/schematics/ng-update/v3/constants/modules.js +0 -9
  142. package/schematics/ng-update/v3/constants/services.d.ts +0 -2
  143. package/schematics/ng-update/v3/constants/services.js +0 -53
  144. package/schematics/ng-update/v3/constants/templates.d.ts +0 -57
  145. package/schematics/ng-update/v3/constants/templates.js +0 -744
  146. package/schematics/ng-update/v3/constants/tui-interactive-selectors.d.ts +0 -1
  147. package/schematics/ng-update/v3/constants/tui-interactive-selectors.js +0 -55
  148. package/schematics/ng-update/v3/constants/types.d.ts +0 -2
  149. package/schematics/ng-update/v3/constants/types.js +0 -156
  150. package/schematics/ng-update/v3/constants/warnings.d.ts +0 -2
  151. package/schematics/ng-update/v3/constants/warnings.js +0 -111
  152. package/schematics/ng-update/v3/index.d.ts +0 -3
  153. package/schematics/ng-update/v3/index.js +0 -105
  154. package/schematics/ng-update/v3/schema.json +0 -13
  155. package/schematics/ng-update/v3/steps/migrate-date-time.d.ts +0 -2
  156. package/schematics/ng-update/v3/steps/migrate-date-time.js +0 -207
  157. package/schematics/ng-update/v3/steps/migrate-polymorpheus.js +0 -78
  158. package/schematics/ng-update/v3/steps/migrate-progress.d.ts +0 -8
  159. package/schematics/ng-update/v3/steps/migrate-progress.js +0 -49
  160. package/schematics/ng-update/v3/steps/migrate-sliders/index.d.ts +0 -3
  161. package/schematics/ng-update/v3/steps/migrate-sliders/index.js +0 -19
  162. package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.d.ts +0 -3
  163. package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.js +0 -103
  164. package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.d.ts +0 -3
  165. package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.js +0 -90
  166. package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.d.ts +0 -3
  167. package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.js +0 -70
  168. package/schematics/ng-update/v3/steps/migrate-templates.d.ts +0 -4
  169. package/schematics/ng-update/v3/steps/migrate-templates.js +0 -216
  170. package/schematics/ng-update/v3/steps/migrate-textfield-controller.js +0 -98
  171. package/schematics/ng-update/v3/steps/miscellaneous.d.ts +0 -2
  172. package/schematics/ng-update/v3/steps/miscellaneous.js +0 -81
  173. package/schematics/ng-update/v3/steps/replace-functions.d.ts +0 -2
  174. package/schematics/ng-update/v3/steps/replace-functions.js +0 -138
  175. package/schematics/ng-update/v3/steps/replace-styles.d.ts +0 -3
  176. package/schematics/ng-update/v3/steps/replace-styles.js +0 -33
  177. package/schematics/ng-update/v3-30/constants/constants.d.ts +0 -2
  178. package/schematics/ng-update/v3-30/constants/constants.js +0 -8
  179. package/schematics/ng-update/v3-30/constants/icons.d.ts +0 -4
  180. package/schematics/ng-update/v3-30/constants/icons.js +0 -993
  181. package/schematics/ng-update/v3-30/index.d.ts +0 -3
  182. package/schematics/ng-update/v3-30/index.js +0 -33
  183. package/schematics/ng-update/v3-35/constants/constants.d.ts +0 -2
  184. package/schematics/ng-update/v3-35/constants/constants.js +0 -8
  185. package/schematics/ng-update/v3-35/constants/icons.d.ts +0 -4
  186. package/schematics/ng-update/v3-35/constants/icons.js +0 -2537
  187. package/schematics/ng-update/v3-35/index.d.ts +0 -3
  188. package/schematics/ng-update/v3-35/index.js +0 -33
  189. package/schematics/ng-update/v3-36/index.d.ts +0 -3
  190. package/schematics/ng-update/v3-36/index.js +0 -23
  191. package/schematics/ng-update/v3-40/index.d.ts +0 -3
  192. package/schematics/ng-update/v3-40/index.js +0 -62
  193. package/schematics/ng-update/v3-5/index.d.ts +0 -3
  194. package/schematics/ng-update/v3-5/index.js +0 -20
  195. package/schematics/ng-update/v3-5/steps/migrate-expand-templates.d.ts +0 -3
  196. package/schematics/ng-update/v3-5/steps/migrate-expand-templates.js +0 -44
  197. package/schematics/ng-update/v4/steps/migrate-styles.js +0 -20
  198. package/services/static-request.service.d.ts +0 -8
  199. /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' },
@@ -66,6 +77,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
66
77
  from: { name: 'TUI_DIGIT_REGEXP', moduleSpecifier: '@taiga-ui/core' },
67
78
  to: { name: 'TUI_DIGIT_REGEXP', moduleSpecifier: '@taiga-ui/cdk' },
68
79
  },
80
+ {
81
+ from: { name: 'tuiCapitalizeFirstLetter', moduleSpecifier: '@taiga-ui/core' },
82
+ to: { name: 'tuiCapitalizeFirstLetter', moduleSpecifier: '@taiga-ui/legacy' },
83
+ },
69
84
  {
70
85
  from: { name: 'TUI_NON_DIGIT_REGEXP', moduleSpecifier: '@taiga-ui/core' },
71
86
  to: { name: 'TUI_NON_DIGIT_REGEXP', moduleSpecifier: '@taiga-ui/cdk' },
@@ -79,9 +94,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
79
94
  to: { name: 'TuiAlert', moduleSpecifier: '@taiga-ui/core' },
80
95
  },
81
96
  {
82
- from: { name: 'TuiNotificationModule', moduleSpecifier: '@taiga-ui/core' },
97
+ from: [
98
+ { name: 'TuiNotificationComponent', moduleSpecifier: '@taiga-ui/core' },
99
+ { name: 'TuiNotificationModule', moduleSpecifier: '@taiga-ui/core' },
100
+ ],
83
101
  to: { name: 'TuiNotification', moduleSpecifier: '@taiga-ui/core' },
84
102
  },
103
+ {
104
+ from: { name: 'TuiFormatPhonePipe', moduleSpecifier: '@taiga-ui/core' },
105
+ to: { name: 'TuiFormatPhonePipe', moduleSpecifier: '@taiga-ui/legacy' },
106
+ },
85
107
  {
86
108
  from: { name: 'TuiCalendarModule', moduleSpecifier: '@taiga-ui/core' },
87
109
  to: { name: 'TuiCalendar', moduleSpecifier: '@taiga-ui/core' },
@@ -128,11 +150,19 @@ exports.IDENTIFIERS_TO_REPLACE = [
128
150
  },
129
151
  {
130
152
  from: { name: 'TuiDataListModule', moduleSpecifier: '@taiga-ui/core' },
131
- to: { name: 'TuiDataList', moduleSpecifier: '@taiga-ui/core' },
153
+ to: {
154
+ name: 'TuiDataList',
155
+ moduleSpecifier: '@taiga-ui/core',
156
+ spreadInModule: true,
157
+ },
132
158
  },
133
159
  {
134
160
  from: { name: 'TuiDataListWrapperModule', moduleSpecifier: '@taiga-ui/kit' },
135
- to: { name: 'TuiDataListWrapper', moduleSpecifier: '@taiga-ui/kit' },
161
+ to: {
162
+ name: 'TuiDataListWrapper',
163
+ moduleSpecifier: '@taiga-ui/kit',
164
+ spreadInModule: true,
165
+ },
136
166
  },
137
167
  {
138
168
  from: { name: 'TuiErrorModule', moduleSpecifier: '@taiga-ui/core' },
@@ -140,7 +170,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
140
170
  },
141
171
  {
142
172
  from: { name: 'TuiExpandModule', moduleSpecifier: '@taiga-ui/core' },
143
- to: { name: 'TuiExpand', moduleSpecifier: '@taiga-ui/core' },
173
+ to: { name: 'TuiExpand', moduleSpecifier: '@taiga-ui/core', spreadInModule: true },
144
174
  },
145
175
  {
146
176
  from: { name: 'TuiLoaderModule', moduleSpecifier: '@taiga-ui/core' },
@@ -148,7 +178,11 @@ exports.IDENTIFIERS_TO_REPLACE = [
148
178
  },
149
179
  {
150
180
  from: { name: 'TuiAccordionModule', moduleSpecifier: '@taiga-ui/kit' },
151
- to: { name: 'TuiAccordion', moduleSpecifier: '@taiga-ui/kit' },
181
+ to: {
182
+ name: 'TuiAccordion',
183
+ moduleSpecifier: '@taiga-ui/kit',
184
+ spreadInModule: true,
185
+ },
152
186
  },
153
187
  {
154
188
  from: { name: 'TuiBreadcrumbsModule', moduleSpecifier: '@taiga-ui/kit' },
@@ -167,14 +201,11 @@ exports.IDENTIFIERS_TO_REPLACE = [
167
201
  },
168
202
  {
169
203
  from: { name: 'TuiCarouselModule', moduleSpecifier: '@taiga-ui/kit' },
170
- to: { name: 'TuiCarousel', moduleSpecifier: '@taiga-ui/kit' },
204
+ to: { name: 'TuiCarousel', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
171
205
  },
172
206
  {
173
207
  from: { name: 'TuiPushModule', moduleSpecifier: '@taiga-ui/kit' },
174
- to: [
175
- { name: 'TuiPush', moduleSpecifier: '@taiga-ui/kit' },
176
- { name: 'TuiPushDirective', moduleSpecifier: '@taiga-ui/kit' },
177
- ],
208
+ to: { name: 'TuiPush', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
178
209
  },
179
210
  {
180
211
  from: { name: 'TuiElasticContainerModule', moduleSpecifier: '@taiga-ui/kit' },
@@ -182,7 +213,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
182
213
  },
183
214
  {
184
215
  from: { name: 'TuiFilesModule', moduleSpecifier: '@taiga-ui/kit' },
185
- to: { name: 'TuiFiles', moduleSpecifier: '@taiga-ui/kit' },
216
+ to: { name: 'TuiFiles', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
186
217
  },
187
218
  {
188
219
  from: { name: 'TuiFilterModule', moduleSpecifier: '@taiga-ui/kit' },
@@ -193,19 +224,25 @@ exports.IDENTIFIERS_TO_REPLACE = [
193
224
  to: { name: 'TuiInputInline', moduleSpecifier: '@taiga-ui/kit' },
194
225
  },
195
226
  {
196
- from: { name: 'TuiIslandComponent', moduleSpecifier: '@taiga-ui/kit' },
197
- to: { name: 'TuiIslandDirective', moduleSpecifier: '@taiga-ui/legacy' },
198
- },
199
- {
200
- from: { name: 'TuiIslandModule', moduleSpecifier: '@taiga-ui/kit' },
227
+ from: [
228
+ { name: 'TuiIslandComponent', moduleSpecifier: '@taiga-ui/kit' },
229
+ { name: 'TuiIslandModule', moduleSpecifier: '@taiga-ui/kit' },
230
+ ],
201
231
  to: { name: 'TuiIslandDirective', moduleSpecifier: '@taiga-ui/legacy' },
202
232
  },
203
233
  {
204
234
  from: { name: 'TuiItemsWithMoreModule', moduleSpecifier: '@taiga-ui/kit' },
205
- to: { name: 'TuiItemsWithMore', moduleSpecifier: '@taiga-ui/kit' },
235
+ to: {
236
+ name: 'TuiItemsWithMore',
237
+ moduleSpecifier: '@taiga-ui/kit',
238
+ spreadInModule: true,
239
+ },
206
240
  },
207
241
  {
208
- from: { name: 'TuiLineClampModule', moduleSpecifier: '@taiga-ui/kit' },
242
+ from: [
243
+ { name: 'TuiLineClampComponent', moduleSpecifier: '@taiga-ui/kit' },
244
+ { name: 'TuiLineClampModule', moduleSpecifier: '@taiga-ui/kit' },
245
+ ],
209
246
  to: { name: 'TuiLineClamp', moduleSpecifier: '@taiga-ui/kit' },
210
247
  },
211
248
  {
@@ -214,19 +251,19 @@ exports.IDENTIFIERS_TO_REPLACE = [
214
251
  },
215
252
  {
216
253
  from: { name: 'TuiSliderModule', moduleSpecifier: '@taiga-ui/kit' },
217
- to: { name: 'TuiSlider', moduleSpecifier: '@taiga-ui/kit' },
254
+ to: { name: 'TuiSlider', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
218
255
  },
219
256
  {
220
257
  from: { name: 'TuiTilesModule', moduleSpecifier: '@taiga-ui/kit' },
221
- to: { name: 'TuiTiles', moduleSpecifier: '@taiga-ui/kit' },
258
+ to: { name: 'TuiTiles', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
222
259
  },
223
260
  {
224
261
  from: { name: 'TuiStepperModule', moduleSpecifier: '@taiga-ui/kit' },
225
- to: { name: 'TuiStepper', moduleSpecifier: '@taiga-ui/kit' },
262
+ to: { name: 'TuiStepper', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
226
263
  },
227
264
  {
228
265
  from: { name: 'TuiTreeModule', moduleSpecifier: '@taiga-ui/kit' },
229
- to: { name: 'TuiTree', moduleSpecifier: '@taiga-ui/kit' },
266
+ to: { name: 'TuiTree', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
230
267
  },
231
268
  {
232
269
  from: {
@@ -254,10 +291,6 @@ exports.IDENTIFIERS_TO_REPLACE = [
254
291
  from: { name: 'TuiUnmaskHandlerModule', moduleSpecifier: '@taiga-ui/kit' },
255
292
  to: { name: 'TuiUnmaskHandler', moduleSpecifier: '@taiga-ui/kit' },
256
293
  },
257
- {
258
- from: { name: 'TuiDialogFormService', moduleSpecifier: '@taiga-ui/kit' },
259
- to: { name: 'TuiConfirmService', moduleSpecifier: '@taiga-ui/kit' },
260
- },
261
294
  {
262
295
  from: { name: 'TuiSortCountriesPipeModule', moduleSpecifier: '@taiga-ui/kit' },
263
296
  to: { name: 'TuiSortCountriesPipe', moduleSpecifier: '@taiga-ui/kit' },
@@ -282,14 +315,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
282
315
  },
283
316
  },
284
317
  {
285
- from: { name: 'TuiCardModule', moduleSpecifier: '@taiga-ui/addon-commerce' },
286
- to: {
287
- name: 'TuiThumbnailCard',
288
- moduleSpecifier: '@taiga-ui/addon-commerce',
289
- },
290
- },
291
- {
292
- 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
+ ],
293
322
  to: {
294
323
  name: 'TuiThumbnailCard',
295
324
  moduleSpecifier: '@taiga-ui/addon-commerce',
@@ -312,11 +341,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
312
341
  to: { name: 'TuiTextfieldComponent', moduleSpecifier: '@taiga-ui/legacy' },
313
342
  },
314
343
  {
315
- from: { name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/experimental' },
316
- to: { name: 'TuiBadge', moduleSpecifier: '@taiga-ui/kit' },
317
- },
318
- {
319
- from: { name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/kit' },
344
+ from: [
345
+ { name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/experimental' },
346
+ { name: 'TuiBadgeModule', moduleSpecifier: '@taiga-ui/kit' },
347
+ ],
320
348
  to: { name: 'TuiBadge', moduleSpecifier: '@taiga-ui/kit' },
321
349
  },
322
350
  {
@@ -328,11 +356,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
328
356
  to: { name: 'TuiCopyProcessor', moduleSpecifier: '@taiga-ui/cdk' },
329
357
  },
330
358
  {
331
- from: { name: 'AbstractTuiValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
332
- to: { name: 'TuiValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
333
- },
334
- {
335
- from: { name: 'TuiControlValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
359
+ from: [
360
+ { name: 'AbstractTuiValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
361
+ { name: 'TuiControlValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
362
+ ],
336
363
  to: { name: 'TuiValueTransformer', moduleSpecifier: '@taiga-ui/cdk' },
337
364
  },
338
365
  {
@@ -356,7 +383,13 @@ exports.IDENTIFIERS_TO_REPLACE = [
356
383
  to: { name: 'TuiReplacePipe', moduleSpecifier: '@taiga-ui/cdk' },
357
384
  },
358
385
  {
359
- from: { name: 'TuiCheckboxModule', moduleSpecifier: '@taiga-ui/experimental' },
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
+ ],
360
393
  to: { name: 'TuiCheckbox', moduleSpecifier: '@taiga-ui/kit' },
361
394
  },
362
395
  {
@@ -367,27 +400,32 @@ exports.IDENTIFIERS_TO_REPLACE = [
367
400
  ],
368
401
  },
369
402
  {
370
- from: { name: 'TuiRadioModule', moduleSpecifier: '@taiga-ui/experimental' },
371
- to: { name: 'TuiRadio', moduleSpecifier: '@taiga-ui/kit' },
372
- },
373
- {
374
- from: { name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/experimental' },
375
- to: { name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/kit' },
403
+ from: [
404
+ { name: 'TuiRadioModule', moduleSpecifier: '@taiga-ui/experimental' },
405
+ { name: 'TuiRadioModule', moduleSpecifier: '@taiga-ui/core' },
406
+ ],
407
+ to: { name: 'TuiRadio', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
376
408
  },
377
409
  {
378
- from: { name: 'TuiToggleModule', moduleSpecifier: '@taiga-ui/experimental' },
379
- to: { name: 'TuiSwitch', moduleSpecifier: '@taiga-ui/kit' },
410
+ from: [
411
+ { name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/experimental' },
412
+ { name: 'TuiAvatarModule', moduleSpecifier: '@taiga-ui/kit' },
413
+ ],
414
+ to: { name: 'TuiAvatar', moduleSpecifier: '@taiga-ui/kit' },
380
415
  },
381
416
  {
382
- from: { name: 'TuiToggleModule', 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
+ ],
383
422
  to: { name: 'TuiSwitch', moduleSpecifier: '@taiga-ui/kit' },
384
423
  },
385
424
  {
386
- from: { name: 'TuiTextAreaModule', moduleSpecifier: '@taiga-ui/kit' },
387
- to: { name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/legacy' },
388
- },
389
- {
390
- from: { name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/kit' },
425
+ from: [
426
+ { name: 'TuiTextAreaModule', moduleSpecifier: '@taiga-ui/kit' },
427
+ { name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/kit' },
428
+ ],
391
429
  to: { name: 'TuiTextareaModule', moduleSpecifier: '@taiga-ui/legacy' },
392
430
  },
393
431
  {
@@ -395,12 +433,19 @@ exports.IDENTIFIERS_TO_REPLACE = [
395
433
  to: { name: 'TuiTextareaDirective', moduleSpecifier: '@taiga-ui/legacy' },
396
434
  },
397
435
  {
398
- from: { name: 'TuiBadgedContentModule', moduleSpecifier: '@taiga-ui/experimental' },
399
- to: { name: 'TuiBadgedContent', moduleSpecifier: '@taiga-ui/kit' },
436
+ from: { name: 'TuiTextAreaComponent', moduleSpecifier: '@taiga-ui/kit' },
437
+ to: { name: 'TuiTextareaComponent', moduleSpecifier: '@taiga-ui/legacy' },
400
438
  },
401
439
  {
402
- from: { name: 'TuiBadgedContentModule', moduleSpecifier: '@taiga-ui/kit' },
403
- to: { name: 'TuiBadgedContent', moduleSpecifier: '@taiga-ui/kit' },
440
+ from: [
441
+ { name: 'TuiBadgedContentModule', moduleSpecifier: '@taiga-ui/experimental' },
442
+ { name: 'TuiBadgedContentModule', moduleSpecifier: '@taiga-ui/kit' },
443
+ ],
444
+ to: {
445
+ name: 'TuiBadgedContent',
446
+ moduleSpecifier: '@taiga-ui/kit',
447
+ spreadInModule: true,
448
+ },
404
449
  },
405
450
  {
406
451
  from: {
@@ -409,10 +454,6 @@ exports.IDENTIFIERS_TO_REPLACE = [
409
454
  },
410
455
  to: { name: 'TuiBadgeNotification', moduleSpecifier: '@taiga-ui/kit' },
411
456
  },
412
- {
413
- from: { name: 'TuiTextAreaComponent', moduleSpecifier: '@taiga-ui/kit' },
414
- to: { name: 'TuiTextareaComponent', moduleSpecifier: '@taiga-ui/legacy' },
415
- },
416
457
  {
417
458
  from: { name: 'TuiInputCountModule', moduleSpecifier: '@taiga-ui/kit' },
418
459
  to: { name: 'TuiInputNumberModule', moduleSpecifier: '@taiga-ui/kit' },
@@ -456,15 +497,21 @@ exports.IDENTIFIERS_TO_REPLACE = [
456
497
  to: { name: 'TUI_SCROLL_REF', moduleSpecifier: '@taiga-ui/core' },
457
498
  },
458
499
  {
459
- from: { name: 'TUI_SANITIZER', moduleSpecifier: '@taiga-ui/cdk' },
500
+ from: { name: 'TUI_SANITIZER', moduleSpecifier: '@taiga-ui/core' },
460
501
  to: { name: 'TUI_SANITIZER', moduleSpecifier: '@taiga-ui/legacy' },
461
502
  },
462
503
  {
463
- from: { name: 'TuiScrollbarModule', moduleSpecifier: '@taiga-ui/core' },
504
+ from: [
505
+ { name: 'TuiScrollbarModule', moduleSpecifier: '@taiga-ui/core' },
506
+ { name: 'TuiScrollbarComponent', moduleSpecifier: '@taiga-ui/core' },
507
+ ],
464
508
  to: { name: 'TuiScrollbar', moduleSpecifier: '@taiga-ui/core' },
465
509
  },
466
510
  {
467
- from: { name: 'TuiGroupModule', moduleSpecifier: '@taiga-ui/core' },
511
+ from: [
512
+ { name: 'TuiGroupModule', moduleSpecifier: '@taiga-ui/core' },
513
+ { name: 'TuiGroupDirective', moduleSpecifier: '@taiga-ui/core' },
514
+ ],
468
515
  to: { name: 'TuiGroup', moduleSpecifier: '@taiga-ui/core' },
469
516
  },
470
517
  {
@@ -488,17 +535,12 @@ exports.IDENTIFIERS_TO_REPLACE = [
488
535
  to: { name: 'TuiDropdownService', moduleSpecifier: '@taiga-ui/core' },
489
536
  },
490
537
  {
491
- from: { name: 'TuiPortalDirective', moduleSpecifier: '@taiga-ui/cdk' },
492
- to: { name: 'TuiDropdownPortal', moduleSpecifier: '@taiga-ui/core' },
493
- },
494
- {
495
- from: { name: 'TuiPortalModule', moduleSpecifier: '@taiga-ui/cdk' },
538
+ from: [
539
+ { name: 'TuiPortalDirective', moduleSpecifier: '@taiga-ui/cdk' },
540
+ { name: 'TuiPortalModule', moduleSpecifier: '@taiga-ui/cdk' },
541
+ ],
496
542
  to: { name: 'TuiDropdownPortal', moduleSpecifier: '@taiga-ui/core' },
497
543
  },
498
- {
499
- from: { name: 'TuiDropdownModule', moduleSpecifier: '@taiga-ui/core' },
500
- to: { name: 'TuiDropdown', moduleSpecifier: '@taiga-ui/core' },
501
- },
502
544
  {
503
545
  from: { name: 'TuiDroppableModule', moduleSpecifier: '@taiga-ui/cdk' },
504
546
  to: { name: 'TuiDroppable', moduleSpecifier: '@taiga-ui/cdk' },
@@ -508,17 +550,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
508
550
  to: { name: 'TuiValidator', moduleSpecifier: '@taiga-ui/cdk' },
509
551
  },
510
552
  {
511
- from: { name: 'TuiAmountPipeModule', moduleSpecifier: '@taiga-ui/experimental' },
512
- to: { name: 'TuiAmountPipe', moduleSpecifier: '@taiga-ui/addon-commerce' },
513
- },
514
- {
515
- 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
+ ],
516
557
  to: { name: 'TuiAmountPipe', moduleSpecifier: '@taiga-ui/addon-commerce' },
517
558
  },
518
559
  {
519
560
  from: { name: 'TuiResizeModule', moduleSpecifier: '@taiga-ui/cdk' },
520
561
  to: {
521
- name: 'ResizeObserverDirective',
562
+ name: 'WaResizeObserver',
522
563
  moduleSpecifier: '@ng-web-apis/resize-observer',
523
564
  },
524
565
  },
@@ -545,7 +586,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
545
586
  },
546
587
  {
547
588
  from: { name: 'TuiEditorSocketModule', moduleSpecifier: '@tinkoff/tui-editor' },
548
- to: { name: 'TuiEditorSocket', moduleSpecifier: '@taiga/editor' },
589
+ to: { name: 'TuiEditorSocket', moduleSpecifier: '@taiga-ui/editor' },
549
590
  },
550
591
  {
551
592
  from: { name: 'defaultEditorExtensions', moduleSpecifier: '@tinkoff/tui-editor' },
@@ -559,11 +600,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
559
600
  to: { name: 'TUI_EDITOR_DEFAULT_EXTENSIONS', moduleSpecifier: '@taiga-ui/editor' },
560
601
  },
561
602
  {
562
- from: { name: 'defaultEditorTools', moduleSpecifier: '@tinkoff/tui-editor' },
563
- to: { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@taiga-ui/editor' },
564
- },
565
- {
566
- 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
+ ],
567
607
  to: { name: 'TUI_EDITOR_DEFAULT_TOOLS', moduleSpecifier: '@taiga-ui/editor' },
568
608
  },
569
609
  {
@@ -602,20 +642,48 @@ exports.IDENTIFIERS_TO_REPLACE = [
602
642
  to: { name: 'TuiIcon', moduleSpecifier: '@taiga-ui/core' },
603
643
  },
604
644
  {
605
- from: { name: 'TuiCheckboxLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
645
+ from: [
646
+ { name: 'TuiCheckboxLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
647
+ { name: 'TuiRadioLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
648
+ ],
606
649
  to: { name: 'TuiLabel', moduleSpecifier: '@taiga-ui/core' },
607
650
  },
608
651
  {
609
- from: { name: 'TuiRadioLabeledModule', moduleSpecifier: '@taiga-ui/kit' },
610
- to: { name: 'TuiLabel', moduleSpecifier: '@taiga-ui/core' },
652
+ from: { name: 'TuiRadioLabeledComponent', moduleSpecifier: '@taiga-ui/kit' },
653
+ to: { name: 'TuiRadioComponent', moduleSpecifier: '@taiga-ui/kit' },
654
+ },
655
+ {
656
+ from: { name: 'TuiCheckboxBlockModule', moduleSpecifier: '@taiga-ui/kit' },
657
+ to: [
658
+ { name: 'TuiBlock', moduleSpecifier: '@taiga-ui/kit' },
659
+ { name: 'TuiCheckbox', moduleSpecifier: '@taiga-ui/kit' },
660
+ ],
661
+ },
662
+ {
663
+ from: { name: 'TuiRadioBlockModule', moduleSpecifier: '@taiga-ui/kit' },
664
+ to: [
665
+ { name: 'TuiBlock', moduleSpecifier: '@taiga-ui/kit' },
666
+ { name: 'TuiRadio', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
667
+ ],
611
668
  },
612
669
  {
613
670
  from: { name: 'TuiTabsModule', moduleSpecifier: '@taiga-ui/kit' },
614
- to: { name: 'TuiTabs', moduleSpecifier: '@taiga-ui/kit' },
671
+ to: { name: 'TuiTabs', moduleSpecifier: '@taiga-ui/kit', spreadInModule: true },
615
672
  },
616
673
  {
617
- from: { name: 'TuiHostedDropdownModule', moduleSpecifier: '@taiga-ui/core' },
618
- to: { name: 'TuiDropdown', moduleSpecifier: '@taiga-ui/core' },
674
+ from: [
675
+ { name: 'TuiHostedDropdownModule', moduleSpecifier: '@taiga-ui/core' },
676
+ { name: 'TuiDropdownModule', moduleSpecifier: '@taiga-ui/core' },
677
+ ],
678
+ to: {
679
+ name: 'TuiDropdown',
680
+ moduleSpecifier: '@taiga-ui/core',
681
+ spreadInModule: true,
682
+ },
683
+ },
684
+ {
685
+ from: { name: 'TuiHostedDropdownComponent', moduleSpecifier: '@taiga-ui/core' },
686
+ to: { name: 'TuiDropdownOpen', moduleSpecifier: '@taiga-ui/core' },
619
687
  },
620
688
  {
621
689
  from: { name: 'TuiTitleModule', moduleSpecifier: '@taiga-ui/experimental' },
@@ -638,11 +706,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
638
706
  to: { name: 'TuiCompass', moduleSpecifier: '@taiga-ui/kit' },
639
707
  },
640
708
  {
641
- from: { name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/experimental' },
642
- to: { name: 'TuiRating', moduleSpecifier: '@taiga-ui/kit' },
643
- },
644
- {
645
- from: { name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/kit' },
709
+ from: [
710
+ { name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/experimental' },
711
+ { name: 'TuiRatingModule', moduleSpecifier: '@taiga-ui/kit' },
712
+ ],
646
713
  to: { name: 'TuiRating', moduleSpecifier: '@taiga-ui/kit' },
647
714
  },
648
715
  {
@@ -654,12 +721,11 @@ exports.IDENTIFIERS_TO_REPLACE = [
654
721
  to: { name: 'TuiFlagPipe', moduleSpecifier: '@taiga-ui/core' },
655
722
  },
656
723
  {
657
- from: { name: 'TuiSvgModule', moduleSpecifier: '@taiga-ui/core' },
658
- to: { name: 'TuiSvgComponent', moduleSpecifier: '@taiga-ui/legacy' },
659
- },
660
- {
661
- from: { name: 'TuiRootModule', moduleSpecifier: '@taiga-ui/core' },
662
- to: { name: 'TuiRoot', moduleSpecifier: '@taiga-ui/core' },
724
+ from: [
725
+ { name: 'TuiSvgModule', moduleSpecifier: '@taiga-ui/core' },
726
+ { name: 'TuiSvgComponent', moduleSpecifier: '@taiga-ui/core' },
727
+ ],
728
+ to: { name: 'TuiIcon', moduleSpecifier: '@taiga-ui/core' },
663
729
  },
664
730
  {
665
731
  from: { name: 'TuiCellModule', moduleSpecifier: '@taiga-ui/experimental' },
@@ -687,7 +753,10 @@ exports.IDENTIFIERS_TO_REPLACE = [
687
753
  ],
688
754
  },
689
755
  {
690
- from: { name: 'TuiMarkerIconModule', moduleSpecifier: '@taiga-ui/kit' },
756
+ from: [
757
+ { name: 'TuiMarkerIconModule', moduleSpecifier: '@taiga-ui/kit' },
758
+ { name: 'TuiMarkerIconComponent', moduleSpecifier: '@taiga-ui/kit' },
759
+ ],
691
760
  to: { name: 'TuiAvatar', moduleSpecifier: '@taiga-ui/kit' },
692
761
  },
693
762
  {
@@ -702,20 +771,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
702
771
  ],
703
772
  },
704
773
  {
705
- from: { name: 'TuiLinkModule', moduleSpecifier: '@taiga-ui/core' },
774
+ from: [
775
+ { name: 'TuiLinkModule', moduleSpecifier: '@taiga-ui/core' },
776
+ { name: 'TuiLinkComponent', moduleSpecifier: '@taiga-ui/core' },
777
+ ],
706
778
  to: { name: 'TuiLink', moduleSpecifier: '@taiga-ui/core' },
707
779
  },
708
780
  {
709
781
  from: { name: 'TuiInteractiveStateT', moduleSpecifier: '@taiga-ui/core' },
710
782
  to: { name: 'TuiInteractiveState', moduleSpecifier: '@taiga-ui/core' },
711
783
  },
712
- {
713
- from: { name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/core' },
714
- to: {
715
- name: 'TuiButton',
716
- moduleSpecifier: '@taiga-ui/core',
717
- },
718
- },
719
784
  {
720
785
  from: { name: 'TUI_ARROW', moduleSpecifier: '@taiga-ui/kit' },
721
786
  to: {
@@ -730,6 +795,20 @@ exports.IDENTIFIERS_TO_REPLACE = [
730
795
  moduleSpecifier: '@taiga-ui/legacy',
731
796
  },
732
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
+ },
733
812
  {
734
813
  from: { name: 'TuiDialogModule', moduleSpecifier: '@taiga-ui/core' },
735
814
  to: {
@@ -738,16 +817,23 @@ exports.IDENTIFIERS_TO_REPLACE = [
738
817
  },
739
818
  },
740
819
  {
741
- from: { name: 'TuiAlertModule', moduleSpecifier: '@taiga-ui/core' },
820
+ from: [
821
+ { name: 'TuiButtonComponent', moduleSpecifier: '@taiga-ui/core' },
822
+ { name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/core' },
823
+ { name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/experimental' },
824
+ ],
742
825
  to: {
743
- name: 'TuiAlert',
826
+ name: 'TuiButton',
744
827
  moduleSpecifier: '@taiga-ui/core',
745
828
  },
746
829
  },
747
830
  {
748
- from: { name: 'TuiButtonModule', moduleSpecifier: '@taiga-ui/experimental' },
831
+ from: {
832
+ name: 'tuiButtonOptionsProvider',
833
+ moduleSpecifier: '@taiga-ui/experimental',
834
+ },
749
835
  to: {
750
- name: 'TuiButton',
836
+ name: 'tuiButtonOptionsProvider',
751
837
  moduleSpecifier: '@taiga-ui/core',
752
838
  },
753
839
  },
@@ -867,22 +953,12 @@ exports.IDENTIFIERS_TO_REPLACE = [
867
953
  },
868
954
  {
869
955
  from: {
870
- name: 'TuiPromptDialogModule',
871
- moduleSpecifier: '@taiga-ui/proprietary-core',
872
- },
873
- to: {
874
956
  name: 'TuiPromptDialogComponent',
875
- moduleSpecifier: '@taiga-ui/proprietary',
876
- },
877
- },
878
- {
879
- from: {
880
- name: 'TuiProprietaryRoot2023Module',
881
957
  moduleSpecifier: '@taiga-ui/proprietary-core',
882
958
  },
883
959
  to: {
884
- name: 'TuiProprietaryRoot2023Component',
885
- moduleSpecifier: '@taiga-ui/proprietary',
960
+ name: 'TuiConfirm',
961
+ moduleSpecifier: '@taiga-ui/kit',
886
962
  },
887
963
  },
888
964
  {
@@ -908,30 +984,31 @@ exports.IDENTIFIERS_TO_REPLACE = [
908
984
  {
909
985
  from: {
910
986
  name: 'TuiNavigationModule',
911
- moduleSpecifier: '@taiga-ui/proprietary-navigation',
987
+ moduleSpecifier: '@taiga-ui/experimental',
912
988
  },
913
989
  to: {
914
- name: 'TuiNavigationComponent',
915
- moduleSpecifier: '@taiga-ui/proprietary',
990
+ name: 'TuiNavigation',
991
+ moduleSpecifier: '@taiga-ui/layout',
992
+ spreadInModule: true,
916
993
  },
917
994
  },
918
995
  {
919
996
  from: {
920
- name: 'TuiEmailsPipeModule',
921
- moduleSpecifier: '@taiga-ui/proprietary-banking',
997
+ name: 'TuiSegmentedModule',
998
+ moduleSpecifier: '@taiga-ui/experimental',
922
999
  },
923
1000
  to: {
924
- name: 'TuiEmailsPipe',
925
- moduleSpecifier: '@taiga-ui/proprietary',
1001
+ name: 'TuiSegmented',
1002
+ moduleSpecifier: '@taiga-ui/kit',
926
1003
  },
927
1004
  },
928
1005
  {
929
1006
  from: {
930
- name: 'TuiIllustrationsModule',
931
- moduleSpecifier: '@taiga-ui/proprietary-icons',
1007
+ name: 'TuiEmailsPipeModule',
1008
+ moduleSpecifier: '@taiga-ui/proprietary-banking',
932
1009
  },
933
1010
  to: {
934
- name: 'TuiIllustrationModePipe',
1011
+ name: 'TuiEmailsPipe',
935
1012
  moduleSpecifier: '@taiga-ui/proprietary',
936
1013
  },
937
1014
  },
@@ -1085,6 +1162,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
1085
1162
  to: {
1086
1163
  name: 'TuiTableFilters',
1087
1164
  moduleSpecifier: '@taiga-ui/addon-table',
1165
+ spreadInModule: true,
1088
1166
  },
1089
1167
  },
1090
1168
  {
@@ -1104,14 +1182,20 @@ exports.IDENTIFIERS_TO_REPLACE = [
1104
1182
  },
1105
1183
  to: {
1106
1184
  name: 'TuiArrowComponent',
1107
- moduleSpecifier: '@taiga-ui/kit',
1185
+ moduleSpecifier: '@taiga-ui/legacy',
1108
1186
  },
1109
1187
  },
1110
1188
  {
1111
- from: {
1112
- name: 'TuiTableBarsHostModule',
1113
- moduleSpecifier: '@taiga-ui/addon-tablebars',
1114
- },
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
+ ],
1115
1199
  to: {
1116
1200
  name: 'TuiTableBarsHostComponent',
1117
1201
  moduleSpecifier: '@taiga-ui/legacy',
@@ -1135,6 +1219,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
1135
1219
  to: {
1136
1220
  name: 'TuiTable',
1137
1221
  moduleSpecifier: '@taiga-ui/addon-table',
1222
+ spreadInModule: true,
1138
1223
  },
1139
1224
  },
1140
1225
  {
@@ -1169,12 +1254,29 @@ exports.IDENTIFIERS_TO_REPLACE = [
1169
1254
  },
1170
1255
  {
1171
1256
  from: {
1172
- name: 'TuiAppBarModule',
1173
- moduleSpecifier: '@taiga-ui/layout',
1257
+ name: 'TuiPromptData',
1258
+ moduleSpecifier: '@taiga-ui/kit',
1174
1259
  },
1260
+ to: {
1261
+ name: 'TuiConfirmData',
1262
+ moduleSpecifier: '@taiga-ui/kit',
1263
+ },
1264
+ },
1265
+ {
1266
+ from: [
1267
+ {
1268
+ name: 'TuiAppBarModule',
1269
+ moduleSpecifier: '@taiga-ui/addon-mobile',
1270
+ },
1271
+ {
1272
+ name: 'TuiAppBarModule',
1273
+ moduleSpecifier: '@taiga-ui/layout',
1274
+ },
1275
+ ],
1175
1276
  to: {
1176
1277
  name: 'TuiAppBar',
1177
1278
  moduleSpecifier: '@taiga-ui/layout',
1279
+ spreadInModule: true,
1178
1280
  },
1179
1281
  },
1180
1282
  {
@@ -1197,6 +1299,26 @@ exports.IDENTIFIERS_TO_REPLACE = [
1197
1299
  moduleSpecifier: '@taiga-ui/kit',
1198
1300
  },
1199
1301
  },
1302
+ {
1303
+ from: {
1304
+ name: 'TuiButtonGroupModule',
1305
+ moduleSpecifier: '@taiga-ui/experimental',
1306
+ },
1307
+ to: {
1308
+ name: 'TuiButtonGroup',
1309
+ moduleSpecifier: '@taiga-ui/kit',
1310
+ },
1311
+ },
1312
+ {
1313
+ from: {
1314
+ name: 'TuiButtonVerticalModule',
1315
+ moduleSpecifier: '@taiga-ui/experimental',
1316
+ },
1317
+ to: {
1318
+ name: 'TuiButton',
1319
+ moduleSpecifier: '@taiga-ui/kit',
1320
+ },
1321
+ },
1200
1322
  {
1201
1323
  from: {
1202
1324
  name: 'TuiPreviewModule',
@@ -1205,6 +1327,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
1205
1327
  to: {
1206
1328
  name: 'TuiPreview',
1207
1329
  moduleSpecifier: '@taiga-ui/kit',
1330
+ spreadInModule: true,
1208
1331
  },
1209
1332
  },
1210
1333
  {
@@ -1215,6 +1338,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
1215
1338
  to: {
1216
1339
  name: 'TuiBlockStatus',
1217
1340
  moduleSpecifier: '@taiga-ui/layout',
1341
+ spreadInModule: true,
1218
1342
  },
1219
1343
  },
1220
1344
  {
@@ -1223,165 +1347,220 @@ exports.IDENTIFIERS_TO_REPLACE = [
1223
1347
  moduleSpecifier: '@taiga-ui/addon-mobile',
1224
1348
  },
1225
1349
  to: {
1226
- name: 'TuiSidebar',
1350
+ name: 'TuiTabBar',
1227
1351
  moduleSpecifier: '@taiga-ui/addon-mobile',
1352
+ spreadInModule: true,
1228
1353
  },
1229
1354
  },
1230
1355
  {
1231
1356
  from: {
1232
- name: 'TuiScrollIntoViewLinkModule',
1233
- moduleSpecifier: '@taiga-ui/addon-doc',
1357
+ name: 'TuiSidebarModule',
1358
+ moduleSpecifier: '@taiga-ui/addon-mobile',
1234
1359
  },
1235
1360
  to: {
1236
- name: 'TuiDocScrollIntoViewLink',
1237
- moduleSpecifier: '@taiga-ui/addon-doc',
1361
+ name: 'TuiSidebar',
1362
+ moduleSpecifier: '@taiga-ui/addon-mobile',
1363
+ spreadInModule: true,
1238
1364
  },
1239
1365
  },
1240
1366
  {
1241
1367
  from: {
1242
- name: 'TuiTextCodeModule',
1243
- moduleSpecifier: '@taiga-ui/addon-doc',
1368
+ name: 'TuiProgressModule',
1369
+ moduleSpecifier: '@taiga-ui/kit',
1244
1370
  },
1245
1371
  to: {
1246
- name: 'TuiDocText',
1247
- moduleSpecifier: '@taiga-ui/addon-doc',
1372
+ name: 'TuiProgress',
1373
+ moduleSpecifier: '@taiga-ui/kit',
1374
+ spreadInModule: true,
1248
1375
  },
1249
1376
  },
1250
1377
  {
1251
1378
  from: {
1252
- name: 'TuiPreviewDialogModule',
1253
- moduleSpecifier: '@taiga-ui/addon-preview',
1379
+ name: 'TuiRadioListModule',
1380
+ moduleSpecifier: '@taiga-ui/kit',
1254
1381
  },
1255
1382
  to: {
1256
- name: 'TuiPreviewDialog',
1383
+ name: 'TuiRadioList',
1257
1384
  moduleSpecifier: '@taiga-ui/kit',
1258
1385
  },
1259
1386
  },
1260
1387
  {
1261
1388
  from: {
1262
- name: 'tuiDefaultSort',
1263
- moduleSpecifier: '@taiga-ui/addon-table',
1389
+ name: 'TuiInputFilesModule',
1390
+ moduleSpecifier: '@taiga-ui/kit',
1264
1391
  },
1265
1392
  to: {
1266
- name: 'tuiDefaultSort',
1267
- moduleSpecifier: '@taiga-ui/cdk',
1393
+ name: 'TuiFiles',
1394
+ moduleSpecifier: '@taiga-ui/kit',
1395
+ spreadInModule: true,
1268
1396
  },
1269
1397
  },
1270
1398
  {
1271
1399
  from: {
1272
- name: 'TuiNavigationModule',
1273
- moduleSpecifier: '@taiga-ui/proprietary-navigation',
1400
+ name: 'TuiScrollIntoViewLinkModule',
1401
+ moduleSpecifier: '@taiga-ui/addon-doc',
1274
1402
  },
1275
1403
  to: {
1276
- name: 'TuiProprietaryNavigation',
1277
- moduleSpecifier: '@taiga-ui/proprietary',
1404
+ name: 'TuiDocScrollIntoViewLink',
1405
+ moduleSpecifier: '@taiga-ui/addon-doc',
1278
1406
  },
1279
1407
  },
1280
1408
  {
1281
1409
  from: {
1282
- name: 'TuiErrorModule',
1283
- moduleSpecifier: '@taiga-ui/core',
1410
+ name: 'TuiTextCodeModule',
1411
+ moduleSpecifier: '@taiga-ui/addon-doc',
1284
1412
  },
1285
1413
  to: {
1286
- name: 'TuiError',
1287
- moduleSpecifier: '@taiga-ui/core',
1414
+ name: 'TuiDocText',
1415
+ moduleSpecifier: '@taiga-ui/addon-doc',
1288
1416
  },
1289
1417
  },
1290
1418
  {
1291
1419
  from: {
1292
- name: 'TuiStringifyPipeModule',
1293
- moduleSpecifier: '@taiga-ui/kit',
1420
+ name: 'TuiPreviewDialogModule',
1421
+ moduleSpecifier: '@taiga-ui/addon-preview',
1294
1422
  },
1295
1423
  to: {
1296
- name: 'TuiStringifyPipe',
1424
+ name: 'TuiPreviewDialog',
1297
1425
  moduleSpecifier: '@taiga-ui/kit',
1298
1426
  },
1299
1427
  },
1300
1428
  {
1301
1429
  from: {
1302
- name: 'TuiHintModule',
1303
- moduleSpecifier: '@taiga-ui/core',
1430
+ name: 'TuiPreviewDialogService',
1431
+ moduleSpecifier: '@taiga-ui/addon-preview',
1304
1432
  },
1305
1433
  to: {
1306
- name: 'TuiHint',
1307
- moduleSpecifier: '@taiga-ui/core',
1434
+ name: 'TuiPreviewDialogService',
1435
+ moduleSpecifier: '@taiga-ui/kit',
1308
1436
  },
1309
1437
  },
1310
1438
  {
1311
1439
  from: {
1312
- name: 'TuiDocDocumentationModule',
1313
- moduleSpecifier: '@taiga-ui/addon-doc',
1440
+ name: 'PolymorpheusModule',
1441
+ moduleSpecifier: '@tinkoff/ng-polymorpheus',
1442
+ },
1443
+ to: [
1444
+ { name: 'PolymorpheusTemplate', moduleSpecifier: '@taiga-ui/polymorpheus' },
1445
+ { name: 'PolymorpheusOutlet', moduleSpecifier: '@taiga-ui/polymorpheus' },
1446
+ ],
1447
+ },
1448
+ {
1449
+ from: {
1450
+ name: 'tuiDefaultSort',
1451
+ moduleSpecifier: '@taiga-ui/addon-table',
1314
1452
  },
1315
1453
  to: {
1316
- name: 'TuiAddonDoc',
1317
- moduleSpecifier: '@taiga-ui/addon-doc',
1454
+ name: 'tuiDefaultSort',
1455
+ moduleSpecifier: '@taiga-ui/cdk',
1318
1456
  },
1319
1457
  },
1320
1458
  {
1321
1459
  from: {
1322
- name: 'TuiDocPage',
1323
- moduleSpecifier: '@taiga-ui/addon-doc',
1460
+ name: 'AbstractTuiControl',
1461
+ moduleSpecifier: '@taiga-ui/cdk',
1324
1462
  },
1325
1463
  to: {
1326
- name: 'TuiDocRoutePage',
1327
- moduleSpecifier: '@taiga-ui/addon-doc',
1464
+ name: 'AbstractTuiControl',
1465
+ moduleSpecifier: '@taiga-ui/legacy',
1328
1466
  },
1329
1467
  },
1330
1468
  {
1331
1469
  from: {
1332
- name: 'TuiDocCodeModule',
1333
- moduleSpecifier: '@taiga-ui/addon-doc',
1470
+ name: 'TuiNavigationModule',
1471
+ moduleSpecifier: '@taiga-ui/proprietary-navigation',
1334
1472
  },
1335
1473
  to: {
1336
- name: 'TuiAddonDoc',
1337
- moduleSpecifier: '@taiga-ui/addon-doc',
1474
+ name: 'TuiProprietaryNavigation',
1475
+ moduleSpecifier: '@taiga-ui/proprietary',
1476
+ spreadInModule: true,
1477
+ },
1478
+ },
1479
+ {
1480
+ from: [
1481
+ {
1482
+ name: 'TuiErrorModule',
1483
+ moduleSpecifier: '@taiga-ui/core',
1484
+ },
1485
+ {
1486
+ name: 'TuiErrorComponent',
1487
+ moduleSpecifier: '@taiga-ui/core',
1488
+ },
1489
+ ],
1490
+ to: {
1491
+ name: 'TuiError',
1492
+ moduleSpecifier: '@taiga-ui/core',
1338
1493
  },
1339
1494
  },
1340
1495
  {
1341
1496
  from: {
1342
- name: 'TuiDocDemoModule',
1343
- moduleSpecifier: '@taiga-ui/addon-doc',
1497
+ name: 'TuiStringifyPipeModule',
1498
+ moduleSpecifier: '@taiga-ui/kit',
1344
1499
  },
1345
1500
  to: {
1346
- name: 'TuiAddonDoc',
1347
- moduleSpecifier: '@taiga-ui/addon-doc',
1501
+ name: 'TuiStringifyPipe',
1502
+ moduleSpecifier: '@taiga-ui/kit',
1348
1503
  },
1349
1504
  },
1350
1505
  {
1351
1506
  from: {
1352
- name: 'TuiDocMainModule',
1353
- moduleSpecifier: '@taiga-ui/addon-doc',
1507
+ name: 'TuiHintModule',
1508
+ moduleSpecifier: '@taiga-ui/core',
1354
1509
  },
1355
1510
  to: {
1356
- name: 'TuiAddonDoc',
1357
- moduleSpecifier: '@taiga-ui/addon-doc',
1511
+ name: 'TuiHint',
1512
+ moduleSpecifier: '@taiga-ui/core',
1513
+ spreadInModule: true,
1358
1514
  },
1359
1515
  },
1360
1516
  {
1361
1517
  from: {
1362
- name: 'TuiDocNavigationModule',
1518
+ name: 'TuiDocDocumentationModule',
1363
1519
  moduleSpecifier: '@taiga-ui/addon-doc',
1364
1520
  },
1365
1521
  to: {
1366
1522
  name: 'TuiAddonDoc',
1367
1523
  moduleSpecifier: '@taiga-ui/addon-doc',
1524
+ spreadInModule: true,
1368
1525
  },
1369
1526
  },
1370
1527
  {
1371
1528
  from: {
1372
- name: 'TuiDocPageModule',
1529
+ name: 'TuiDocPage',
1373
1530
  moduleSpecifier: '@taiga-ui/addon-doc',
1374
1531
  },
1375
1532
  to: {
1376
- name: 'TuiAddonDoc',
1533
+ name: 'TuiDocRoutePage',
1377
1534
  moduleSpecifier: '@taiga-ui/addon-doc',
1378
1535
  },
1379
1536
  },
1380
1537
  {
1381
- from: {
1382
- name: 'TuiAddonDocModule',
1383
- moduleSpecifier: '@taiga-ui/addon-doc',
1384
- },
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
+ ],
1385
1564
  to: {
1386
1565
  name: 'TuiAddonDoc',
1387
1566
  moduleSpecifier: '@taiga-ui/addon-doc',
@@ -1496,7 +1675,7 @@ exports.IDENTIFIERS_TO_REPLACE = [
1496
1675
  },
1497
1676
  to: {
1498
1677
  name: 'TuiCurrencyPipe',
1499
- moduleSpecifier: '@taiga-ui/addon-mobile',
1678
+ moduleSpecifier: '@taiga-ui/addon-commerce',
1500
1679
  },
1501
1680
  },
1502
1681
  {
@@ -1645,6 +1824,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
1645
1824
  moduleSpecifier: '@taiga-ui/legacy',
1646
1825
  },
1647
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
+ },
1648
1837
  {
1649
1838
  from: {
1650
1839
  name: 'TuiInputCopyModule',
@@ -2125,6 +2314,16 @@ exports.IDENTIFIERS_TO_REPLACE = [
2125
2314
  moduleSpecifier: '@taiga-ui/legacy',
2126
2315
  },
2127
2316
  },
2317
+ {
2318
+ from: {
2319
+ name: 'TuiMultiSelectComponent',
2320
+ moduleSpecifier: '@taiga-ui/kit',
2321
+ },
2322
+ to: {
2323
+ name: 'TuiMultiSelectComponent',
2324
+ moduleSpecifier: '@taiga-ui/legacy',
2325
+ },
2326
+ },
2128
2327
  {
2129
2328
  from: {
2130
2329
  name: 'TuiMultiSelectOptions',
@@ -2276,13 +2475,153 @@ exports.IDENTIFIERS_TO_REPLACE = [
2276
2475
  },
2277
2476
  },
2278
2477
  {
2279
- from: {
2280
- name: 'TuiLabelModule',
2281
- moduleSpecifier: '@taiga-ui/core',
2282
- },
2478
+ from: [
2479
+ {
2480
+ name: 'TuiLabelModule',
2481
+ moduleSpecifier: '@taiga-ui/core',
2482
+ },
2483
+ {
2484
+ name: 'TuiLabelComponent',
2485
+ moduleSpecifier: '@taiga-ui/core',
2486
+ },
2487
+ ],
2283
2488
  to: {
2284
2489
  name: 'TuiLabel',
2285
2490
  moduleSpecifier: '@taiga-ui/core',
2286
2491
  },
2287
2492
  },
2493
+ {
2494
+ from: {
2495
+ name: 'ResizeObserverModule',
2496
+ moduleSpecifier: '@ng-web-apis/resize-observer',
2497
+ },
2498
+ to: {
2499
+ name: 'WaResizeObserver',
2500
+ moduleSpecifier: '@ng-web-apis/resize-observer',
2501
+ },
2502
+ },
2503
+ {
2504
+ from: {
2505
+ name: 'IntersectionObserverModule',
2506
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2507
+ },
2508
+ to: {
2509
+ name: 'WaIntersectionObserver',
2510
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2511
+ },
2512
+ },
2513
+ {
2514
+ from: {
2515
+ name: 'INTERSECTION_THRESHOLD',
2516
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2517
+ },
2518
+ to: {
2519
+ name: 'WA_INTERSECTION_THRESHOLD',
2520
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2521
+ },
2522
+ },
2523
+ {
2524
+ from: {
2525
+ name: 'INTERSECTION_ROOT_MARGIN',
2526
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2527
+ },
2528
+ to: {
2529
+ name: 'WA_INTERSECTION_ROOT_MARGIN',
2530
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2531
+ },
2532
+ },
2533
+ {
2534
+ from: {
2535
+ name: 'INTERSECTION_ROOT',
2536
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2537
+ },
2538
+ to: {
2539
+ name: 'WA_INTERSECTION_ROOT',
2540
+ moduleSpecifier: '@ng-web-apis/intersection-observer',
2541
+ },
2542
+ },
2543
+ {
2544
+ from: {
2545
+ name: 'MUTATION_OBSERVER_INIT',
2546
+ moduleSpecifier: '@ng-web-apis/mutation-observer',
2547
+ },
2548
+ to: {
2549
+ name: 'WA_MUTATION_OBSERVER_INIT',
2550
+ moduleSpecifier: '@ng-web-apis/mutation-observer',
2551
+ },
2552
+ },
2553
+ {
2554
+ from: {
2555
+ name: 'MutationObserverDirective',
2556
+ moduleSpecifier: '@ng-web-apis/mutation-observer',
2557
+ },
2558
+ to: {
2559
+ name: 'WaMutationObserver',
2560
+ moduleSpecifier: '@ng-web-apis/mutation-observer',
2561
+ },
2562
+ },
2563
+ {
2564
+ from: { name: 'WINDOW', moduleSpecifier: '@ng-web-apis/common' },
2565
+ to: { name: 'WA_WINDOW', moduleSpecifier: '@ng-web-apis/common' },
2566
+ },
2567
+ {
2568
+ from: { name: 'USER_AGENT', moduleSpecifier: '@ng-web-apis/common' },
2569
+ to: { name: 'WA_USER_AGENT', moduleSpecifier: '@ng-web-apis/common' },
2570
+ },
2571
+ {
2572
+ from: { name: 'NAVIGATOR', moduleSpecifier: '@ng-web-apis/common' },
2573
+ to: { name: 'WA_NAVIGATOR', moduleSpecifier: '@ng-web-apis/common' },
2574
+ },
2575
+ {
2576
+ from: { name: 'SESSION_STORAGE', moduleSpecifier: '@ng-web-apis/common' },
2577
+ to: { name: 'WA_SESSION_STORAGE', moduleSpecifier: '@ng-web-apis/common' },
2578
+ },
2579
+ {
2580
+ from: { name: 'PAGE_VISIBILITY', moduleSpecifier: '@ng-web-apis/common' },
2581
+ to: { name: 'WA_PAGE_VISIBILITY', moduleSpecifier: '@ng-web-apis/common' },
2582
+ },
2583
+ {
2584
+ from: { name: 'LOCATION', moduleSpecifier: '@ng-web-apis/common' },
2585
+ to: { name: 'WA_LOCATION', moduleSpecifier: '@ng-web-apis/common' },
2586
+ },
2587
+ {
2588
+ from: { name: 'PERFORMANCE', moduleSpecifier: '@ng-web-apis/common' },
2589
+ to: { name: 'WA_PERFORMANCE', moduleSpecifier: '@ng-web-apis/common' },
2590
+ },
2591
+ {
2592
+ from: { name: 'LOCAL_STORAGE', moduleSpecifier: '@ng-web-apis/common' },
2593
+ to: { name: 'WA_LOCAL_STORAGE', moduleSpecifier: '@ng-web-apis/common' },
2594
+ },
2595
+ {
2596
+ from: { name: 'ANIMATION_FRAME', moduleSpecifier: '@ng-web-apis/common' },
2597
+ to: { name: 'WA_ANIMATION_FRAME', moduleSpecifier: '@ng-web-apis/common' },
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
+ },
2288
2627
  ];