@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
@@ -1,680 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DEPRECATED_FUNCTIONS = void 0;
4
- exports.DEPRECATED_FUNCTIONS = [
5
- {
6
- from: 'tuiReplayedValueChangesFrom',
7
- to: 'tuiControlValue',
8
- moduleSpecifier: ['@taiga-ui/cdk'],
9
- },
10
- {
11
- from: 'controlPoint',
12
- to: 'tuiControlPoint',
13
- moduleSpecifier: ['@taiga-ui/addon-charts'],
14
- },
15
- {
16
- from: 'describeSector',
17
- to: 'tuiDescribeSector',
18
- moduleSpecifier: ['@taiga-ui/addon-charts'],
19
- },
20
- {
21
- from: 'drawCurve',
22
- to: 'tuiDrawCurve',
23
- moduleSpecifier: ['@taiga-ui/addon-charts'],
24
- },
25
- {
26
- from: 'drawLine',
27
- to: 'tuiDrawLine',
28
- moduleSpecifier: ['@taiga-ui/addon-charts'],
29
- },
30
- {
31
- from: 'draw',
32
- to: 'tuiDraw',
33
- moduleSpecifier: ['@taiga-ui/addon-charts'],
34
- },
35
- {
36
- from: 'lineAngle',
37
- to: 'tuiLineAngle',
38
- moduleSpecifier: ['@taiga-ui/addon-charts'],
39
- },
40
- {
41
- from: 'formatCurrency',
42
- to: 'tuiFormatCurrency',
43
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
44
- },
45
- {
46
- from: 'getCurrencySymbol',
47
- to: 'tuiGetCurrencySymbol',
48
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
49
- },
50
- {
51
- from: 'getPaymentSystem',
52
- to: 'tuiGetPaymentSystem',
53
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
54
- },
55
- {
56
- from: 'isMaestro',
57
- to: 'tuiIsMaestro',
58
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
59
- },
60
- {
61
- from: 'isMastercard',
62
- to: 'tuiIsMastercard',
63
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
64
- },
65
- {
66
- from: 'isMir',
67
- to: 'tuiIsMir',
68
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
69
- },
70
- {
71
- from: 'isElectron',
72
- to: 'tuiIsElectron',
73
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
74
- },
75
- {
76
- from: 'isVisa',
77
- to: 'tuiIsVisa',
78
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
79
- },
80
- {
81
- from: 'isCardLengthValid',
82
- to: 'tuiIsCardLengthValid',
83
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
84
- },
85
- {
86
- from: 'isCardNumberValid',
87
- to: 'tuiIsCardNumberValid',
88
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
89
- },
90
- {
91
- from: 'isExpireValid',
92
- to: 'tuiIsExpireValid',
93
- moduleSpecifier: ['@taiga-ui/addon-commerce'],
94
- },
95
- {
96
- from: 'tryParseMarkdownCodeBlock',
97
- to: 'tuiTryParseMarkdownCodeBlock',
98
- moduleSpecifier: ['@taiga-ui/addon-doc'],
99
- },
100
- {
101
- from: 'coerceValue',
102
- to: 'tuiCoerceValue',
103
- moduleSpecifier: ['@taiga-ui/addon-doc'],
104
- },
105
- {
106
- from: 'generateRoutes',
107
- to: 'tuiGenerateRoutes',
108
- moduleSpecifier: ['@taiga-ui/addon-doc'],
109
- },
110
- {
111
- from: 'inspectAny',
112
- to: 'tuiInspectAny',
113
- moduleSpecifier: ['@taiga-ui/addon-doc'],
114
- },
115
- {
116
- from: 'rawLoadRecord',
117
- to: 'tuiRawLoadRecord',
118
- moduleSpecifier: ['@taiga-ui/addon-doc'],
119
- },
120
- {
121
- from: 'transliterateKeyboardLayout',
122
- to: 'tuiTransliterateKeyboardLayout',
123
- moduleSpecifier: ['@taiga-ui/addon-doc'],
124
- },
125
- {
126
- from: 'isEmptyParagraph',
127
- to: 'tuiIsEmptyParagraph',
128
- moduleSpecifier: ['@taiga-ui/addon-editor'],
129
- },
130
- {
131
- from: 'getElementPoint',
132
- to: 'tuiGetElementPoint',
133
- moduleSpecifier: ['@taiga-ui/addon-editor'],
134
- },
135
- {
136
- from: 'getGradientData',
137
- to: 'tuiGetGradientData',
138
- moduleSpecifier: ['@taiga-ui/addon-editor'],
139
- },
140
- {
141
- from: 'getMarkRange',
142
- to: 'tuiGetMarkRange',
143
- moduleSpecifier: ['@taiga-ui/addon-editor'],
144
- },
145
- {
146
- from: 'isSelectionIn',
147
- to: 'tuiIsSelectionIn',
148
- moduleSpecifier: ['@taiga-ui/addon-editor'],
149
- },
150
- {
151
- from: 'parseGradient',
152
- to: 'tuiParseGradient',
153
- moduleSpecifier: ['@taiga-ui/addon-editor'],
154
- },
155
- {
156
- from: 'toGradient',
157
- to: 'tuiToGradient',
158
- moduleSpecifier: ['@taiga-ui/addon-editor'],
159
- },
160
- {
161
- from: 'defaultSort',
162
- to: 'tuiDefaultSort',
163
- moduleSpecifier: ['@taiga-ui/addon-table'],
164
- },
165
- {
166
- from: 'mockCurrentDate',
167
- to: 'tuiMockCurrentDate',
168
- moduleSpecifier: ['@taiga-ui/cdk'],
169
- },
170
- {
171
- from: 'restoreRealDate',
172
- to: 'tuiRestoreRealDate',
173
- moduleSpecifier: ['@taiga-ui/cdk'],
174
- },
175
- {
176
- from: 'mockDateInside',
177
- to: 'tuiMockDateInside',
178
- moduleSpecifier: ['@taiga-ui/cdk'],
179
- },
180
- {
181
- from: 'pendingIfNotMoscowTimeZone',
182
- to: 'tuiPendingIfNotMoscowTimeZone',
183
- moduleSpecifier: ['@taiga-ui/cdk'],
184
- },
185
- {
186
- from: 'dragAndDropFrom',
187
- to: 'tuiDragAndDropFrom',
188
- moduleSpecifier: ['@taiga-ui/cdk'],
189
- },
190
- {
191
- from: 'focusVisibleObservable',
192
- to: 'tuiFocusVisibleObservable',
193
- moduleSpecifier: ['@taiga-ui/cdk'],
194
- },
195
- {
196
- from: 'itemsQueryListObservable',
197
- to: 'tuiQueryListChanges',
198
- moduleSpecifier: ['@taiga-ui/cdk'],
199
- },
200
- {
201
- from: 'mouseDragFinishFrom',
202
- to: 'tuiMouseDragFinishFrom',
203
- moduleSpecifier: ['@taiga-ui/cdk'],
204
- },
205
- {
206
- from: 'mustBePresent',
207
- to: 'tuiMustBePresent',
208
- moduleSpecifier: ['@taiga-ui/cdk'],
209
- },
210
- {
211
- from: 'pressedObservable',
212
- to: 'tuiPressedObservable',
213
- moduleSpecifier: ['@taiga-ui/cdk'],
214
- },
215
- {
216
- from: 'preventDefault',
217
- to: 'tuiPreventDefault',
218
- moduleSpecifier: ['@taiga-ui/cdk'],
219
- },
220
- {
221
- from: 'stopPropagation',
222
- to: 'tuiStopPropagation',
223
- moduleSpecifier: ['@taiga-ui/cdk'],
224
- },
225
- {
226
- from: 'typedFromEvent',
227
- to: 'tuiTypedFromEvent',
228
- moduleSpecifier: ['@taiga-ui/cdk'],
229
- },
230
- {
231
- from: 'watch',
232
- to: 'tuiWatch',
233
- moduleSpecifier: ['@taiga-ui/cdk'],
234
- },
235
- {
236
- from: 'isEdgeOlderThan',
237
- to: 'tuiIsEdgeOlderThan',
238
- moduleSpecifier: ['@taiga-ui/cdk'],
239
- },
240
- {
241
- from: 'isEdge',
242
- to: 'tuiIsEdge',
243
- moduleSpecifier: ['@taiga-ui/cdk'],
244
- },
245
- {
246
- from: 'isFirefox',
247
- to: 'tuiIsFirefox',
248
- moduleSpecifier: ['@taiga-ui/cdk'],
249
- },
250
- {
251
- from: 'isIE',
252
- to: 'tuiIsIE',
253
- moduleSpecifier: ['@taiga-ui/cdk'],
254
- },
255
- {
256
- from: 'isSafari',
257
- to: 'tuiIsSafari',
258
- moduleSpecifier: ['@taiga-ui/cdk'],
259
- },
260
- {
261
- from: 'canScroll',
262
- to: 'tuiCanScroll',
263
- moduleSpecifier: ['@taiga-ui/cdk'],
264
- },
265
- {
266
- from: 'containsOrAfter',
267
- to: 'tuiContainsOrAfter',
268
- moduleSpecifier: ['@taiga-ui/cdk'],
269
- },
270
- {
271
- from: 'getActualTarget',
272
- to: 'tuiGetActualTarget',
273
- moduleSpecifier: ['@taiga-ui/cdk'],
274
- },
275
- {
276
- from: 'getClipboardDataText',
277
- to: 'tuiGetClipboardDataText',
278
- moduleSpecifier: ['@taiga-ui/cdk'],
279
- },
280
- {
281
- from: 'getDocumentOrShadowRoot',
282
- to: 'tuiGetDocumentOrShadowRoot',
283
- moduleSpecifier: ['@taiga-ui/cdk'],
284
- },
285
- {
286
- from: 'getElementObscurers',
287
- to: 'tuiGetElementObscures',
288
- moduleSpecifier: ['@taiga-ui/cdk'],
289
- },
290
- {
291
- from: 'getElementOffset',
292
- to: 'tuiGetElementOffset',
293
- moduleSpecifier: ['@taiga-ui/cdk'],
294
- },
295
- {
296
- from: 'getScrollParent',
297
- to: 'tuiGetScrollParent',
298
- moduleSpecifier: ['@taiga-ui/cdk'],
299
- },
300
- {
301
- from: 'isCurrentTarget',
302
- to: 'tuiIsCurrentTarget',
303
- moduleSpecifier: ['@taiga-ui/cdk'],
304
- },
305
- {
306
- from: 'isInsideIframe',
307
- to: 'tuiIsInsideIframe',
308
- moduleSpecifier: ['@taiga-ui/cdk'],
309
- },
310
- {
311
- from: 'isNodeIn',
312
- to: 'tuiIsNodeIn',
313
- moduleSpecifier: ['@taiga-ui/cdk'],
314
- },
315
- {
316
- from: 'blurNativeFocused',
317
- to: 'tuiBlurNativeFocused',
318
- moduleSpecifier: ['@taiga-ui/cdk'],
319
- },
320
- {
321
- from: 'getClosestFocusable',
322
- to: 'tuiGetClosestFocusable',
323
- moduleSpecifier: ['@taiga-ui/cdk'],
324
- },
325
- {
326
- from: 'getClosestKeyboardFocusable',
327
- to: 'tuiGetClosestFocusable',
328
- moduleSpecifier: ['@taiga-ui/cdk'],
329
- },
330
- {
331
- from: 'getNativeFocused',
332
- to: 'tuiGetNativeFocused',
333
- moduleSpecifier: ['@taiga-ui/cdk'],
334
- },
335
- {
336
- from: 'isNativeFocusedIn',
337
- to: 'tuiIsNativeFocusedIn',
338
- moduleSpecifier: ['@taiga-ui/cdk'],
339
- },
340
- {
341
- from: 'isNativeFocused',
342
- to: 'tuiIsNativeFocused',
343
- moduleSpecifier: ['@taiga-ui/cdk'],
344
- },
345
- {
346
- from: 'isNativeKeyboardFocusable',
347
- to: 'tuiIsNativeKeyboardFocusable',
348
- moduleSpecifier: ['@taiga-ui/cdk'],
349
- },
350
- {
351
- from: 'isNativeMouseFocusable',
352
- to: 'tuiIsNativeMouseFocusable',
353
- moduleSpecifier: ['@taiga-ui/cdk'],
354
- },
355
- {
356
- from: 'moveFocus',
357
- to: 'tuiMoveFocus',
358
- moduleSpecifier: ['@taiga-ui/cdk'],
359
- },
360
- {
361
- from: 'setNativeMouseFocused',
362
- to: 'tuiSetNativeMouseFocused',
363
- moduleSpecifier: ['@taiga-ui/cdk'],
364
- },
365
- {
366
- from: 'px',
367
- to: 'tuiPx',
368
- moduleSpecifier: ['@taiga-ui/cdk'],
369
- },
370
- {
371
- from: 'clamp',
372
- to: 'tuiClamp',
373
- moduleSpecifier: ['@taiga-ui/cdk'],
374
- },
375
- {
376
- from: 'inRange',
377
- to: 'tuiInRange',
378
- moduleSpecifier: ['@taiga-ui/cdk'],
379
- },
380
- {
381
- from: 'normalizeToIntNumber',
382
- to: 'tuiNormalizeToIntNumber',
383
- moduleSpecifier: ['@taiga-ui/cdk'],
384
- },
385
- {
386
- from: 'quantize',
387
- to: 'tuiQuantize',
388
- moduleSpecifier: ['@taiga-ui/cdk'],
389
- },
390
- {
391
- from: 'round',
392
- to: 'tuiRound',
393
- moduleSpecifier: ['@taiga-ui/cdk'],
394
- },
395
- {
396
- from: 'ceil',
397
- to: 'tuiCeil',
398
- moduleSpecifier: ['@taiga-ui/cdk'],
399
- },
400
- {
401
- from: 'floor',
402
- to: 'tuiFloor',
403
- moduleSpecifier: ['@taiga-ui/cdk'],
404
- },
405
- {
406
- from: 'sum',
407
- to: 'tuiSum',
408
- moduleSpecifier: ['@taiga-ui/cdk'],
409
- },
410
- {
411
- from: 'toInt',
412
- to: 'tuiToInt',
413
- moduleSpecifier: ['@taiga-ui/cdk'],
414
- },
415
- {
416
- from: 'toRadians',
417
- to: 'tuiToRadians',
418
- moduleSpecifier: ['@taiga-ui/cdk'],
419
- },
420
- {
421
- from: 'distanceBetweenTouches',
422
- to: 'tuiDistanceBetweenTouches',
423
- moduleSpecifier: ['@taiga-ui/cdk'],
424
- },
425
- {
426
- from: 'easeInOutQuad',
427
- to: 'tuiEaseInOutQuad',
428
- moduleSpecifier: ['@taiga-ui/cdk'],
429
- },
430
- {
431
- from: 'flatLength',
432
- to: 'tuiFlatLength',
433
- moduleSpecifier: ['@taiga-ui/cdk'],
434
- },
435
- {
436
- from: 'getOriginalArrayFromQueryList',
437
- to: 'tuiGetOriginalArrayFromQueryList',
438
- moduleSpecifier: ['@taiga-ui/cdk'],
439
- },
440
- {
441
- from: 'getSwipeDirection',
442
- to: 'tuiGetSwipeDirection',
443
- moduleSpecifier: ['@taiga-ui/cdk'],
444
- },
445
- {
446
- from: 'isElementEditable',
447
- to: 'tuiIsElementEditable',
448
- moduleSpecifier: ['@taiga-ui/cdk'],
449
- },
450
- {
451
- from: 'isNumber',
452
- to: 'tuiIsNumber',
453
- moduleSpecifier: ['@taiga-ui/cdk'],
454
- },
455
- {
456
- from: 'isPresent',
457
- to: 'tuiIsPresent',
458
- moduleSpecifier: ['@taiga-ui/cdk'],
459
- },
460
- {
461
- from: 'markControlAsTouchedAndValidate',
462
- to: 'tuiMarkControlAsTouchedAndValidate',
463
- moduleSpecifier: ['@taiga-ui/cdk'],
464
- },
465
- {
466
- from: 'nullableSame',
467
- to: 'tuiNullableSame',
468
- moduleSpecifier: ['@taiga-ui/cdk'],
469
- },
470
- {
471
- from: 'uniqBy',
472
- to: 'tuiUniqBy',
473
- moduleSpecifier: ['@taiga-ui/cdk'],
474
- },
475
- {
476
- from: 'isApplePlatform',
477
- to: 'tuiIsApplePlatform',
478
- moduleSpecifier: ['@taiga-ui/cdk'],
479
- },
480
- {
481
- from: 'isApple',
482
- to: 'tuiIsApple',
483
- moduleSpecifier: ['@taiga-ui/cdk'],
484
- },
485
- {
486
- from: 'isIos',
487
- to: 'tuiIsIos',
488
- moduleSpecifier: ['@taiga-ui/cdk'],
489
- },
490
- {
491
- from: 'svgLinearGradientProcessor',
492
- to: 'tuiSvgLinearGradientProcessor',
493
- moduleSpecifier: ['@taiga-ui/cdk'],
494
- },
495
- {
496
- from: 'textfieldWatchedControllerFactory',
497
- to: 'tuiTextfieldWatchedControllerFactory',
498
- moduleSpecifier: ['@taiga-ui/core'],
499
- },
500
- {
501
- from: 'smartSearch',
502
- to: 'tuiSmartSearch',
503
- moduleSpecifier: ['@taiga-ui/core'],
504
- },
505
- {
506
- from: 'isMobileResFactory',
507
- to: 'tuiIsMobileResFactory',
508
- moduleSpecifier: ['@taiga-ui/core'],
509
- },
510
- {
511
- from: 'modeFactory',
512
- to: 'tuiModeFactory',
513
- moduleSpecifier: ['@taiga-ui/core'],
514
- },
515
- {
516
- from: 'watchedControllerFactory',
517
- to: 'tuiWatchedControllerFactory',
518
- moduleSpecifier: ['@taiga-ui/core'],
519
- },
520
- {
521
- from: 'areCssVarsSupported',
522
- to: 'tuiAreCssVarsSupported',
523
- moduleSpecifier: ['@taiga-ui/core'],
524
- },
525
- {
526
- from: 'areCssVarsSupported',
527
- to: 'tuiAreCssVarsSupported',
528
- moduleSpecifier: ['@taiga-ui/core'],
529
- },
530
- {
531
- from: 'checkFixedPosition',
532
- to: 'tuiCheckFixedPosition',
533
- moduleSpecifier: ['@taiga-ui/core'],
534
- },
535
- {
536
- from: 'getSafeAreaSize',
537
- to: 'tuiGetSafeAreaSize',
538
- moduleSpecifier: ['@taiga-ui/core'],
539
- },
540
- {
541
- from: 'getScreenWidth',
542
- to: 'tuiGetScreenWidth',
543
- moduleSpecifier: ['@taiga-ui/core'],
544
- },
545
- {
546
- from: 'processIcon',
547
- to: 'tuiProcessIcon',
548
- moduleSpecifier: ['@taiga-ui/core'],
549
- },
550
- {
551
- from: 'capitalizeFirstLetter',
552
- to: 'tuiCapitalizeFirstLetter',
553
- moduleSpecifier: ['@taiga-ui/core'],
554
- },
555
- {
556
- from: 'capitalize',
557
- to: 'tuiCapitalize',
558
- moduleSpecifier: ['@taiga-ui/core'],
559
- },
560
- {
561
- from: 'formatNumber',
562
- to: 'tuiFormatNumber',
563
- moduleSpecifier: ['@taiga-ui/core'],
564
- },
565
- {
566
- from: 'formatPhone',
567
- to: 'tuiFormatPhone',
568
- moduleSpecifier: ['@taiga-ui/core'],
569
- },
570
- {
571
- from: 'getFractionPartPadded',
572
- to: 'tuiGetFractionPartPadded',
573
- moduleSpecifier: ['@taiga-ui/core'],
574
- },
575
- {
576
- from: 'numberToStringWithoutExp',
577
- to: 'tuiNumberToStringWithoutExp',
578
- moduleSpecifier: ['@taiga-ui/core'],
579
- },
580
- {
581
- from: 'otherDecimalSymbol',
582
- to: 'tuiOtherDecimalSymbol',
583
- moduleSpecifier: ['@taiga-ui/core'],
584
- },
585
- {
586
- from: 'pluralize',
587
- to: 'tuiPluralize',
588
- moduleSpecifier: ['@taiga-ui/core'],
589
- },
590
- {
591
- from: 'maskedMoneyValueIsEmpty',
592
- to: 'tuiMaskedMoneyValueIsEmpty',
593
- moduleSpecifier: ['@taiga-ui/core'],
594
- },
595
- {
596
- from: 'maskedNumberStringToNumber',
597
- to: 'tuiMaskedNumberStringToNumber',
598
- moduleSpecifier: ['@taiga-ui/core'],
599
- },
600
- {
601
- from: 'getBorder',
602
- to: 'tuiGetBorder',
603
- moduleSpecifier: ['@taiga-ui/core'],
604
- },
605
- {
606
- from: 'iconsPathFactory',
607
- to: 'tuiIconsPathFactory',
608
- moduleSpecifier: ['@taiga-ui/core'],
609
- },
610
- {
611
- from: 'isEditingKey',
612
- to: 'tuiIsEditingKey',
613
- moduleSpecifier: ['@taiga-ui/core'],
614
- },
615
- {
616
- from: 'isPresumedHTMLString',
617
- to: 'tuiIsPresumedHTMLString',
618
- moduleSpecifier: ['@taiga-ui/core'],
619
- },
620
- {
621
- from: 'sizeBigger',
622
- to: 'tuiSizeBigger',
623
- moduleSpecifier: ['@taiga-ui/core'],
624
- },
625
- {
626
- from: 'extractI18n',
627
- to: 'tuiExtractI18n',
628
- moduleSpecifier: ['@taiga-ui/i18n'],
629
- },
630
- {
631
- from: 'extractValueFromEvent',
632
- to: 'tuiExtractValueFromEvent',
633
- moduleSpecifier: ['@taiga-ui/kit'],
634
- },
635
- {
636
- from: 'getWordRange',
637
- to: 'tuiGetWordRange',
638
- moduleSpecifier: ['@taiga-ui/kit'],
639
- },
640
- {
641
- from: 'scrollToElement',
642
- to: 'tuiScrollToElement',
643
- moduleSpecifier: ['@taiga-ui/kit'],
644
- },
645
- {
646
- from: 'setRangeOffset',
647
- to: 'tuiSetRangeOffset',
648
- moduleSpecifier: ['@taiga-ui/kit'],
649
- },
650
- {
651
- from: 'formatSize',
652
- to: 'tuiFormatSize',
653
- moduleSpecifier: ['@taiga-ui/kit'],
654
- },
655
- {
656
- from: 'getAcceptArray',
657
- to: 'tuiGetAcceptArray',
658
- moduleSpecifier: ['@taiga-ui/kit'],
659
- },
660
- {
661
- from: 'stringHashToHsl',
662
- to: 'tuiStringHashToHsl',
663
- moduleSpecifier: ['@taiga-ui/kit'],
664
- },
665
- {
666
- from: 'normalizeDateValue',
667
- to: 'tuiNormalizeDateValue',
668
- moduleSpecifier: ['@taiga-ui/kit'],
669
- },
670
- {
671
- from: 'getPrecision',
672
- to: 'tuiGetPrecision',
673
- moduleSpecifier: ['@taiga-ui/kit'],
674
- },
675
- {
676
- from: 'isFlat',
677
- to: 'tuiIsFlat',
678
- moduleSpecifier: ['@taiga-ui/kit'],
679
- },
680
- ];
@@ -1,2 +0,0 @@
1
- import type { ReplacementEnum } from '../../interfaces/replacement-enum';
2
- export declare const ENUMS_TO_REPLACE: ReplacementEnum[];