@taiga-ui/legacy 4.0.0-alpha.0

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 (658) hide show
  1. package/LICENSE +190 -0
  2. package/README.md +22 -0
  3. package/classes/abstract-native-select.d.ts +20 -0
  4. package/classes/abstract-textfield-host.d.ts +19 -0
  5. package/classes/control.d.ts +59 -0
  6. package/classes/index.d.ts +8 -0
  7. package/classes/interactive.d.ts +35 -0
  8. package/classes/multiple-control.d.ts +11 -0
  9. package/classes/named-day.d.ts +11 -0
  10. package/classes/nullable-control.d.ts +10 -0
  11. package/classes/stringifiable-item.d.ts +11 -0
  12. package/components/arrow/arrow.component.d.ts +22 -0
  13. package/components/arrow/arrow.options.d.ts +23 -0
  14. package/components/arrow/arrow.providers.d.ts +24 -0
  15. package/components/arrow/index.d.ts +3 -0
  16. package/components/color-selector/color-edit/color-edit.component.d.ts +21 -0
  17. package/components/color-selector/color-edit/color-edit.module.d.ts +19 -0
  18. package/components/color-selector/color-picker/color-picker.component.d.ts +25 -0
  19. package/components/color-selector/color-picker/color-picker.module.d.ts +13 -0
  20. package/components/color-selector/color-selector.component.d.ts +55 -0
  21. package/components/color-selector/color-selector.module.d.ts +23 -0
  22. package/components/color-selector/flat-picker/flat-picker.component.d.ts +15 -0
  23. package/components/color-selector/flat-picker/flat-picker.module.d.ts +11 -0
  24. package/components/color-selector/index.d.ts +15 -0
  25. package/components/color-selector/linear-multi-picker/linear-multi-picker.component.d.ts +20 -0
  26. package/components/color-selector/linear-multi-picker/linear-multi-picker.module.d.ts +11 -0
  27. package/components/color-selector/linear-picker/linear-picker.component.d.ts +13 -0
  28. package/components/color-selector/linear-picker/linear-picker.module.d.ts +11 -0
  29. package/components/color-selector/palette/palette.component.d.ts +13 -0
  30. package/components/color-selector/palette/palette.module.d.ts +12 -0
  31. package/components/color-selector/services/picker.service.d.ts +11 -0
  32. package/components/combo-box/combo-box-strict.directive.d.ts +11 -0
  33. package/components/combo-box/combo-box.component.d.ts +50 -0
  34. package/components/combo-box/combo-box.directive.d.ts +12 -0
  35. package/components/combo-box/combo-box.module.d.ts +19 -0
  36. package/components/combo-box/index.d.ts +4 -0
  37. package/components/index.d.ts +33 -0
  38. package/components/input/index.d.ts +3 -0
  39. package/components/input/input.component.d.ts +30 -0
  40. package/components/input/input.directive.d.ts +11 -0
  41. package/components/input/input.module.d.ts +14 -0
  42. package/components/input-color/index.d.ts +2 -0
  43. package/components/input-color/input-color.component.d.ts +29 -0
  44. package/components/input-color/input-color.module.d.ts +16 -0
  45. package/components/input-copy/index.d.ts +4 -0
  46. package/components/input-copy/input-copy.component.d.ts +33 -0
  47. package/components/input-copy/input-copy.directive.d.ts +11 -0
  48. package/components/input-copy/input-copy.module.d.ts +18 -0
  49. package/components/input-copy/input-copy.options.d.ts +26 -0
  50. package/components/input-date/index.d.ts +3 -0
  51. package/components/input-date/input-date.component.d.ts +64 -0
  52. package/components/input-date/input-date.directive.d.ts +18 -0
  53. package/components/input-date/input-date.module.d.ts +23 -0
  54. package/components/input-date/native-date/native-date.component.d.ts +14 -0
  55. package/components/input-date-multi/index.d.ts +2 -0
  56. package/components/input-date-multi/input-date-multi.component.d.ts +69 -0
  57. package/components/input-date-multi/input-date-multi.module.d.ts +23 -0
  58. package/components/input-date-range/index.d.ts +3 -0
  59. package/components/input-date-range/input-date-range.component.d.ts +70 -0
  60. package/components/input-date-range/input-date-range.directive.d.ts +15 -0
  61. package/components/input-date-range/input-date-range.module.d.ts +21 -0
  62. package/components/input-date-time/index.d.ts +3 -0
  63. package/components/input-date-time/input-date-time.component.d.ts +80 -0
  64. package/components/input-date-time/input-date-time.directive.d.ts +16 -0
  65. package/components/input-date-time/input-date-time.module.d.ts +22 -0
  66. package/components/input-date-time/native-date-time/native-date-time.directive.d.ts +9 -0
  67. package/components/input-month/index.d.ts +3 -0
  68. package/components/input-month/input-month.component.d.ts +44 -0
  69. package/components/input-month/input-month.directive.d.ts +18 -0
  70. package/components/input-month/input-month.module.d.ts +18 -0
  71. package/components/input-month-range/index.d.ts +3 -0
  72. package/components/input-month-range/input-month-range.component.d.ts +38 -0
  73. package/components/input-month-range/input-month-range.directive.d.ts +18 -0
  74. package/components/input-month-range/input-month-range.module.d.ts +17 -0
  75. package/components/input-number/index.d.ts +4 -0
  76. package/components/input-number/input-number.component.d.ts +62 -0
  77. package/components/input-number/input-number.directive.d.ts +15 -0
  78. package/components/input-number/input-number.module.d.ts +17 -0
  79. package/components/input-number/input-number.options.d.ts +27 -0
  80. package/components/input-password/index.d.ts +4 -0
  81. package/components/input-password/input-password.component.d.ts +33 -0
  82. package/components/input-password/input-password.directive.d.ts +15 -0
  83. package/components/input-password/input-password.module.d.ts +19 -0
  84. package/components/input-password/input-password.options.d.ts +25 -0
  85. package/components/input-phone/index.d.ts +4 -0
  86. package/components/input-phone/input-phone.component.d.ts +51 -0
  87. package/components/input-phone/input-phone.directive.d.ts +16 -0
  88. package/components/input-phone/input-phone.module.d.ts +15 -0
  89. package/components/input-phone/input-phone.options.d.ts +22 -0
  90. package/components/input-phone/utils/complete-phone-insertion-preprocessor.d.ts +9 -0
  91. package/components/input-phone/utils/create-phone-mask-expression.d.ts +7 -0
  92. package/components/input-phone/utils/index.d.ts +2 -0
  93. package/components/input-phone-international/index.d.ts +3 -0
  94. package/components/input-phone-international/input-phone-international.component.d.ts +41 -0
  95. package/components/input-phone-international/input-phone-international.options.d.ts +22 -0
  96. package/components/input-phone-international/utils/extract-value-from-event.d.ts +1 -0
  97. package/components/input-range/index.d.ts +2 -0
  98. package/components/input-range/input-range.component.d.ts +55 -0
  99. package/components/input-range/input-range.module.d.ts +18 -0
  100. package/components/input-slider/index.d.ts +2 -0
  101. package/components/input-slider/input-slider.component.d.ts +41 -0
  102. package/components/input-slider/input-slider.module.d.ts +17 -0
  103. package/components/input-tag/index.d.ts +3 -0
  104. package/components/input-tag/input-tag.component.d.ts +97 -0
  105. package/components/input-tag/input-tag.module.d.ts +21 -0
  106. package/components/input-tag/input-tag.options.d.ts +23 -0
  107. package/components/input-time/index.d.ts +4 -0
  108. package/components/input-time/input-time.component.d.ts +63 -0
  109. package/components/input-time/input-time.directive.d.ts +16 -0
  110. package/components/input-time/input-time.module.d.ts +22 -0
  111. package/components/input-time/input-time.options.d.ts +35 -0
  112. package/components/input-time/native-time/native-time.component.d.ts +12 -0
  113. package/components/input-year/index.d.ts +3 -0
  114. package/components/input-year/input-year.component.d.ts +35 -0
  115. package/components/input-year/input-year.directive.d.ts +13 -0
  116. package/components/input-year/input-year.module.d.ts +17 -0
  117. package/components/island/index.d.ts +1 -0
  118. package/components/island/island.directive.d.ts +19 -0
  119. package/components/multi-select/hide-selected.pipe.d.ts +11 -0
  120. package/components/multi-select/index.d.ts +10 -0
  121. package/components/multi-select/multi-select-group/multi-select-group.component.d.ts +23 -0
  122. package/components/multi-select/multi-select-group/multi-select-group.directive.d.ts +8 -0
  123. package/components/multi-select/multi-select.component.d.ts +68 -0
  124. package/components/multi-select/multi-select.directive.d.ts +17 -0
  125. package/components/multi-select/multi-select.module.d.ts +30 -0
  126. package/components/multi-select/multi-select.options.d.ts +23 -0
  127. package/components/multi-select/native-multi-select/native-multi-select-group.component.d.ts +9 -0
  128. package/components/multi-select/native-multi-select/native-multi-select.component.d.ts +8 -0
  129. package/components/multi-select/native-multi-select/native-multi-select.d.ts +11 -0
  130. package/components/multi-select-option/index.d.ts +2 -0
  131. package/components/multi-select-option/multi-select-option.component.d.ts +12 -0
  132. package/components/multi-select-option/multi-select-option.module.d.ts +12 -0
  133. package/components/primitive-textfield/index.d.ts +7 -0
  134. package/components/primitive-textfield/primitive-textfield-options.d.ts +22 -0
  135. package/components/primitive-textfield/primitive-textfield-types.d.ts +14 -0
  136. package/components/primitive-textfield/primitive-textfield.component.d.ts +74 -0
  137. package/components/primitive-textfield/primitive-textfield.directive.d.ts +13 -0
  138. package/components/primitive-textfield/primitive-textfield.module.d.ts +20 -0
  139. package/components/primitive-textfield/textfield/textfield.component.d.ts +13 -0
  140. package/components/primitive-textfield/value-decoration/value-decoration.component.d.ts +22 -0
  141. package/components/select/index.d.ts +6 -0
  142. package/components/select/native-select/native-select-group.component.d.ts +13 -0
  143. package/components/select/native-select/native-select.component.d.ts +12 -0
  144. package/components/select/select.component.d.ts +43 -0
  145. package/components/select/select.directive.d.ts +15 -0
  146. package/components/select/select.module.d.ts +23 -0
  147. package/components/select/select.options.d.ts +22 -0
  148. package/components/select-option/index.d.ts +2 -0
  149. package/components/select-option/select-option.component.d.ts +33 -0
  150. package/components/select-option/select-option.module.d.ts +13 -0
  151. package/components/sheet/components/sheet/sheet.component.d.ts +31 -0
  152. package/components/sheet/components/sheet/sheet.providers.d.ts +2 -0
  153. package/components/sheet/components/sheet-bar/sheet-bar.component.d.ts +10 -0
  154. package/components/sheet/components/sheet-heading/sheet-heading.component.d.ts +14 -0
  155. package/components/sheet/components/sheets-host/sheets-host.component.d.ts +15 -0
  156. package/components/sheet/directives/sheet-close/sheet-close.directive.d.ts +14 -0
  157. package/components/sheet/directives/sheet-stop/sheet-stop.directive.d.ts +6 -0
  158. package/components/sheet/directives/sheet-top/sheet-top.directive.d.ts +14 -0
  159. package/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.d.ts +17 -0
  160. package/components/sheet/index.d.ts +14 -0
  161. package/components/sheet/sheet-options.d.ts +24 -0
  162. package/components/sheet/sheet-tokens.d.ts +18 -0
  163. package/components/sheet/sheet.d.ts +19 -0
  164. package/components/sheet/sheet.directive.d.ts +16 -0
  165. package/components/sheet/sheet.module.d.ts +23 -0
  166. package/components/sheet/sheet.service.d.ts +16 -0
  167. package/components/svg/content-processor.d.ts +18 -0
  168. package/components/svg/deprecated-icons.d.ts +4 -0
  169. package/components/svg/index.d.ts +5 -0
  170. package/components/svg/svg-options.d.ts +44 -0
  171. package/components/svg/svg.component.d.ts +49 -0
  172. package/components/svg/svg.service.d.ts +21 -0
  173. package/components/table-bar/index.d.ts +5 -0
  174. package/components/table-bar/table-bar.component.d.ts +13 -0
  175. package/components/table-bar/table-bar.directive.d.ts +7 -0
  176. package/components/table-bar/table-bar.options.d.ts +14 -0
  177. package/components/table-bar/table-bars-host.component.d.ts +6 -0
  178. package/components/table-bar/table-bars.service.d.ts +10 -0
  179. package/components/tag/index.d.ts +3 -0
  180. package/components/tag/tag.component.d.ts +43 -0
  181. package/components/tag/tag.module.d.ts +15 -0
  182. package/components/tag/tag.options.d.ts +25 -0
  183. package/components/textarea/index.d.ts +3 -0
  184. package/components/textarea/textarea.component.d.ts +53 -0
  185. package/components/textarea/textarea.directive.d.ts +11 -0
  186. package/components/textarea/textarea.module.d.ts +20 -0
  187. package/components/tooltip/index.d.ts +2 -0
  188. package/components/tooltip/tooltip.component.d.ts +15 -0
  189. package/components/tooltip/tooltip.module.d.ts +15 -0
  190. package/directives/index.d.ts +5 -0
  191. package/directives/legacy-dropdown-open-monitor/index.d.ts +1 -0
  192. package/directives/legacy-dropdown-open-monitor/legacy-dropdown-open-monitor.d.ts +9 -0
  193. package/directives/textfield-controller/index.d.ts +14 -0
  194. package/directives/textfield-controller/textfield-appearance.directive.d.ts +14 -0
  195. package/directives/textfield-controller/textfield-cleaner.directive.d.ts +14 -0
  196. package/directives/textfield-controller/textfield-controller.module.d.ts +20 -0
  197. package/directives/textfield-controller/textfield-controller.provider.d.ts +11 -0
  198. package/directives/textfield-controller/textfield-custom-content.directive.d.ts +15 -0
  199. package/directives/textfield-controller/textfield-filler.directive.d.ts +14 -0
  200. package/directives/textfield-controller/textfield-icon-left.directive.d.ts +17 -0
  201. package/directives/textfield-controller/textfield-icon.directive.d.ts +17 -0
  202. package/directives/textfield-controller/textfield-label-outside.directive.d.ts +14 -0
  203. package/directives/textfield-controller/textfield-postfix.directive.d.ts +14 -0
  204. package/directives/textfield-controller/textfield-prefix.directive.d.ts +14 -0
  205. package/directives/textfield-controller/textfield-size.directive.d.ts +15 -0
  206. package/directives/textfield-controller/textfield.controller.d.ts +41 -0
  207. package/directives/textfield-controller/textfield.options.d.ts +25 -0
  208. package/directives/unfinished-validator/index.d.ts +2 -0
  209. package/directives/unfinished-validator/unfinished-validator.directive.d.ts +11 -0
  210. package/directives/unfinished-validator/unfinished.validator.d.ts +7 -0
  211. package/directives/value-accessor/index.d.ts +3 -0
  212. package/directives/value-accessor/value-accessor.directive.d.ts +8 -0
  213. package/directives/value-accessor/value-accessor.module.d.ts +10 -0
  214. package/directives/value-accessor/value-accessor.provider.d.ts +5 -0
  215. package/directives/wrapper/README.md +19 -0
  216. package/directives/wrapper/index.d.ts +2 -0
  217. package/directives/wrapper/wrapper.directive.d.ts +21 -0
  218. package/directives/wrapper/wrapper.module.d.ts +10 -0
  219. package/esm2022/classes/abstract-native-select.mjs +40 -0
  220. package/esm2022/classes/abstract-textfield-host.mjs +37 -0
  221. package/esm2022/classes/control.mjs +176 -0
  222. package/esm2022/classes/index.mjs +9 -0
  223. package/esm2022/classes/interactive.mjs +85 -0
  224. package/esm2022/classes/multiple-control.mjs +21 -0
  225. package/esm2022/classes/named-day.mjs +14 -0
  226. package/esm2022/classes/nullable-control.mjs +18 -0
  227. package/esm2022/classes/stringifiable-item.mjs +14 -0
  228. package/esm2022/classes/taiga-ui-legacy-classes.mjs +5 -0
  229. package/esm2022/components/arrow/arrow.component.mjs +48 -0
  230. package/esm2022/components/arrow/arrow.options.mjs +21 -0
  231. package/esm2022/components/arrow/arrow.providers.mjs +21 -0
  232. package/esm2022/components/arrow/index.mjs +4 -0
  233. package/esm2022/components/arrow/taiga-ui-legacy-components-arrow.mjs +5 -0
  234. package/esm2022/components/color-selector/color-edit/color-edit.component.mjs +62 -0
  235. package/esm2022/components/color-selector/color-edit/color-edit.module.mjs +54 -0
  236. package/esm2022/components/color-selector/color-picker/color-picker.component.mjs +73 -0
  237. package/esm2022/components/color-selector/color-picker/color-picker.module.mjs +24 -0
  238. package/esm2022/components/color-selector/color-selector.component.mjs +250 -0
  239. package/esm2022/components/color-selector/color-selector.module.mjs +66 -0
  240. package/esm2022/components/color-selector/flat-picker/flat-picker.component.mjs +37 -0
  241. package/esm2022/components/color-selector/flat-picker/flat-picker.module.mjs +22 -0
  242. package/esm2022/components/color-selector/index.mjs +16 -0
  243. package/esm2022/components/color-selector/linear-multi-picker/linear-multi-picker.component.mjs +65 -0
  244. package/esm2022/components/color-selector/linear-multi-picker/linear-multi-picker.module.mjs +22 -0
  245. package/esm2022/components/color-selector/linear-picker/linear-picker.component.mjs +34 -0
  246. package/esm2022/components/color-selector/linear-picker/linear-picker.module.mjs +22 -0
  247. package/esm2022/components/color-selector/palette/palette.component.mjs +26 -0
  248. package/esm2022/components/color-selector/palette/palette.module.mjs +24 -0
  249. package/esm2022/components/color-selector/services/picker.service.mjs +30 -0
  250. package/esm2022/components/color-selector/taiga-ui-legacy-components-color-selector.mjs +5 -0
  251. package/esm2022/components/combo-box/combo-box-strict.directive.mjs +32 -0
  252. package/esm2022/components/combo-box/combo-box.component.mjs +181 -0
  253. package/esm2022/components/combo-box/combo-box.directive.mjs +26 -0
  254. package/esm2022/components/combo-box/combo-box.module.mjs +70 -0
  255. package/esm2022/components/combo-box/index.mjs +5 -0
  256. package/esm2022/components/combo-box/taiga-ui-legacy-components-combo-box.mjs +5 -0
  257. package/esm2022/components/index.mjs +34 -0
  258. package/esm2022/components/input/index.mjs +4 -0
  259. package/esm2022/components/input/input.component.mjs +92 -0
  260. package/esm2022/components/input/input.directive.mjs +23 -0
  261. package/esm2022/components/input/input.module.mjs +33 -0
  262. package/esm2022/components/input/taiga-ui-legacy-components-input.mjs +5 -0
  263. package/esm2022/components/input-color/index.mjs +3 -0
  264. package/esm2022/components/input-color/input-color.component.mjs +85 -0
  265. package/esm2022/components/input-color/input-color.module.mjs +43 -0
  266. package/esm2022/components/input-color/taiga-ui-legacy-components-input-color.mjs +5 -0
  267. package/esm2022/components/input-copy/index.mjs +5 -0
  268. package/esm2022/components/input-copy/input-copy.component.mjs +106 -0
  269. package/esm2022/components/input-copy/input-copy.directive.mjs +23 -0
  270. package/esm2022/components/input-copy/input-copy.module.mjs +55 -0
  271. package/esm2022/components/input-copy/input-copy.options.mjs +21 -0
  272. package/esm2022/components/input-copy/taiga-ui-legacy-components-input-copy.mjs +5 -0
  273. package/esm2022/components/input-date/index.mjs +4 -0
  274. package/esm2022/components/input-date/input-date.component.mjs +220 -0
  275. package/esm2022/components/input-date/input-date.directive.mjs +41 -0
  276. package/esm2022/components/input-date/input-date.module.mjs +74 -0
  277. package/esm2022/components/input-date/native-date/native-date.component.mjs +51 -0
  278. package/esm2022/components/input-date/taiga-ui-legacy-components-input-date.mjs +5 -0
  279. package/esm2022/components/input-date-multi/index.mjs +3 -0
  280. package/esm2022/components/input-date-multi/input-date-multi.component.mjs +215 -0
  281. package/esm2022/components/input-date-multi/input-date-multi.module.mjs +70 -0
  282. package/esm2022/components/input-date-multi/taiga-ui-legacy-components-input-date-multi.mjs +5 -0
  283. package/esm2022/components/input-date-range/index.mjs +4 -0
  284. package/esm2022/components/input-date-range/input-date-range.component.mjs +267 -0
  285. package/esm2022/components/input-date-range/input-date-range.directive.mjs +34 -0
  286. package/esm2022/components/input-date-range/input-date-range.module.mjs +70 -0
  287. package/esm2022/components/input-date-range/taiga-ui-legacy-components-input-date-range.mjs +5 -0
  288. package/esm2022/components/input-date-time/index.mjs +4 -0
  289. package/esm2022/components/input-date-time/input-date-time.component.mjs +305 -0
  290. package/esm2022/components/input-date-time/input-date-time.directive.mjs +35 -0
  291. package/esm2022/components/input-date-time/input-date-time.module.mjs +77 -0
  292. package/esm2022/components/input-date-time/native-date-time/native-date-time.directive.mjs +44 -0
  293. package/esm2022/components/input-date-time/taiga-ui-legacy-components-input-date-time.mjs +5 -0
  294. package/esm2022/components/input-month/index.mjs +4 -0
  295. package/esm2022/components/input-month/input-month.component.mjs +135 -0
  296. package/esm2022/components/input-month/input-month.directive.mjs +44 -0
  297. package/esm2022/components/input-month/input-month.module.mjs +56 -0
  298. package/esm2022/components/input-month/taiga-ui-legacy-components-input-month.mjs +5 -0
  299. package/esm2022/components/input-month-range/index.mjs +4 -0
  300. package/esm2022/components/input-month-range/input-month-range.component.mjs +123 -0
  301. package/esm2022/components/input-month-range/input-month-range.directive.mjs +50 -0
  302. package/esm2022/components/input-month-range/input-month-range.module.mjs +52 -0
  303. package/esm2022/components/input-month-range/taiga-ui-legacy-components-input-month-range.mjs +5 -0
  304. package/esm2022/components/input-number/index.mjs +5 -0
  305. package/esm2022/components/input-number/input-number.component.mjs +263 -0
  306. package/esm2022/components/input-number/input-number.directive.mjs +36 -0
  307. package/esm2022/components/input-number/input-number.module.mjs +47 -0
  308. package/esm2022/components/input-number/input-number.options.mjs +26 -0
  309. package/esm2022/components/input-number/taiga-ui-legacy-components-input-number.mjs +5 -0
  310. package/esm2022/components/input-password/index.mjs +5 -0
  311. package/esm2022/components/input-password/input-password.component.mjs +81 -0
  312. package/esm2022/components/input-password/input-password.directive.mjs +33 -0
  313. package/esm2022/components/input-password/input-password.module.mjs +59 -0
  314. package/esm2022/components/input-password/input-password.options.mjs +21 -0
  315. package/esm2022/components/input-password/taiga-ui-legacy-components-input-password.mjs +5 -0
  316. package/esm2022/components/input-phone/index.mjs +5 -0
  317. package/esm2022/components/input-phone/input-phone.component.mjs +220 -0
  318. package/esm2022/components/input-phone/input-phone.directive.mjs +36 -0
  319. package/esm2022/components/input-phone/input-phone.module.mjs +47 -0
  320. package/esm2022/components/input-phone/input-phone.options.mjs +21 -0
  321. package/esm2022/components/input-phone/taiga-ui-legacy-components-input-phone.mjs +5 -0
  322. package/esm2022/components/input-phone/utils/complete-phone-insertion-preprocessor.mjs +41 -0
  323. package/esm2022/components/input-phone/utils/create-phone-mask-expression.mjs +17 -0
  324. package/esm2022/components/input-phone/utils/index.mjs +3 -0
  325. package/esm2022/components/input-phone-international/index.mjs +4 -0
  326. package/esm2022/components/input-phone-international/input-phone-international.component.mjs +184 -0
  327. package/esm2022/components/input-phone-international/input-phone-international.options.mjs +20 -0
  328. package/esm2022/components/input-phone-international/taiga-ui-legacy-components-input-phone-international.mjs +5 -0
  329. package/esm2022/components/input-phone-international/utils/extract-value-from-event.mjs +7 -0
  330. package/esm2022/components/input-range/index.mjs +3 -0
  331. package/esm2022/components/input-range/input-range.component.mjs +206 -0
  332. package/esm2022/components/input-range/input-range.module.mjs +54 -0
  333. package/esm2022/components/input-range/taiga-ui-legacy-components-input-range.mjs +5 -0
  334. package/esm2022/components/input-slider/index.mjs +3 -0
  335. package/esm2022/components/input-slider/input-slider.component.mjs +153 -0
  336. package/esm2022/components/input-slider/input-slider.module.mjs +47 -0
  337. package/esm2022/components/input-slider/taiga-ui-legacy-components-input-slider.mjs +5 -0
  338. package/esm2022/components/input-tag/index.mjs +4 -0
  339. package/esm2022/components/input-tag/input-tag.component.mjs +418 -0
  340. package/esm2022/components/input-tag/input-tag.module.mjs +66 -0
  341. package/esm2022/components/input-tag/input-tag.options.mjs +21 -0
  342. package/esm2022/components/input-tag/taiga-ui-legacy-components-input-tag.mjs +5 -0
  343. package/esm2022/components/input-time/index.mjs +5 -0
  344. package/esm2022/components/input-time/input-time.component.mjs +278 -0
  345. package/esm2022/components/input-time/input-time.directive.mjs +38 -0
  346. package/esm2022/components/input-time/input-time.module.mjs +70 -0
  347. package/esm2022/components/input-time/input-time.options.mjs +31 -0
  348. package/esm2022/components/input-time/native-time/native-time.component.mjs +67 -0
  349. package/esm2022/components/input-time/taiga-ui-legacy-components-input-time.mjs +5 -0
  350. package/esm2022/components/input-year/index.mjs +4 -0
  351. package/esm2022/components/input-year/input-year.component.mjs +110 -0
  352. package/esm2022/components/input-year/input-year.directive.mjs +30 -0
  353. package/esm2022/components/input-year/input-year.module.mjs +52 -0
  354. package/esm2022/components/input-year/taiga-ui-legacy-components-input-year.mjs +5 -0
  355. package/esm2022/components/island/index.mjs +2 -0
  356. package/esm2022/components/island/island.directive.mjs +77 -0
  357. package/esm2022/components/island/taiga-ui-legacy-components-island.mjs +5 -0
  358. package/esm2022/components/multi-select/hide-selected.pipe.mjs +43 -0
  359. package/esm2022/components/multi-select/index.mjs +11 -0
  360. package/esm2022/components/multi-select/multi-select-group/multi-select-group.component.mjs +99 -0
  361. package/esm2022/components/multi-select/multi-select-group/multi-select-group.directive.mjs +65 -0
  362. package/esm2022/components/multi-select/multi-select.component.mjs +207 -0
  363. package/esm2022/components/multi-select/multi-select.directive.mjs +34 -0
  364. package/esm2022/components/multi-select/multi-select.module.mjs +114 -0
  365. package/esm2022/components/multi-select/multi-select.options.mjs +20 -0
  366. package/esm2022/components/multi-select/native-multi-select/native-multi-select-group.component.mjs +60 -0
  367. package/esm2022/components/multi-select/native-multi-select/native-multi-select.component.mjs +56 -0
  368. package/esm2022/components/multi-select/native-multi-select/native-multi-select.mjs +19 -0
  369. package/esm2022/components/multi-select/taiga-ui-legacy-components-multi-select.mjs +5 -0
  370. package/esm2022/components/multi-select-option/index.mjs +3 -0
  371. package/esm2022/components/multi-select-option/multi-select-option.component.mjs +28 -0
  372. package/esm2022/components/multi-select-option/multi-select-option.module.mjs +23 -0
  373. package/esm2022/components/multi-select-option/taiga-ui-legacy-components-multi-select-option.mjs +5 -0
  374. package/esm2022/components/primitive-textfield/index.mjs +8 -0
  375. package/esm2022/components/primitive-textfield/primitive-textfield-options.mjs +17 -0
  376. package/esm2022/components/primitive-textfield/primitive-textfield-types.mjs +2 -0
  377. package/esm2022/components/primitive-textfield/primitive-textfield.component.mjs +253 -0
  378. package/esm2022/components/primitive-textfield/primitive-textfield.directive.mjs +31 -0
  379. package/esm2022/components/primitive-textfield/primitive-textfield.module.mjs +65 -0
  380. package/esm2022/components/primitive-textfield/taiga-ui-legacy-components-primitive-textfield.mjs +5 -0
  381. package/esm2022/components/primitive-textfield/textfield/textfield.component.mjs +39 -0
  382. package/esm2022/components/primitive-textfield/value-decoration/value-decoration.component.mjs +71 -0
  383. package/esm2022/components/select/index.mjs +7 -0
  384. package/esm2022/components/select/native-select/native-select-group.component.mjs +60 -0
  385. package/esm2022/components/select/native-select/native-select.component.mjs +56 -0
  386. package/esm2022/components/select/select.component.mjs +119 -0
  387. package/esm2022/components/select/select.directive.mjs +32 -0
  388. package/esm2022/components/select/select.module.mjs +86 -0
  389. package/esm2022/components/select/select.options.mjs +19 -0
  390. package/esm2022/components/select/taiga-ui-legacy-components-select.mjs +5 -0
  391. package/esm2022/components/select-option/index.mjs +3 -0
  392. package/esm2022/components/select-option/select-option.component.mjs +71 -0
  393. package/esm2022/components/select-option/select-option.module.mjs +24 -0
  394. package/esm2022/components/select-option/taiga-ui-legacy-components-select-option.mjs +5 -0
  395. package/esm2022/components/sheet/components/sheet/sheet.component.mjs +118 -0
  396. package/esm2022/components/sheet/components/sheet/sheet.providers.mjs +42 -0
  397. package/esm2022/components/sheet/components/sheet-bar/sheet-bar.component.mjs +27 -0
  398. package/esm2022/components/sheet/components/sheet-heading/sheet-heading.component.mjs +31 -0
  399. package/esm2022/components/sheet/components/sheets-host/sheets-host.component.mjs +46 -0
  400. package/esm2022/components/sheet/directives/sheet-close/sheet-close.directive.mjs +38 -0
  401. package/esm2022/components/sheet/directives/sheet-stop/sheet-stop.directive.mjs +37 -0
  402. package/esm2022/components/sheet/directives/sheet-top/sheet-top.directive.mjs +51 -0
  403. package/esm2022/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.mjs +76 -0
  404. package/esm2022/components/sheet/index.mjs +15 -0
  405. package/esm2022/components/sheet/sheet-options.mjs +21 -0
  406. package/esm2022/components/sheet/sheet-tokens.mjs +17 -0
  407. package/esm2022/components/sheet/sheet.directive.mjs +38 -0
  408. package/esm2022/components/sheet/sheet.mjs +2 -0
  409. package/esm2022/components/sheet/sheet.module.mjs +74 -0
  410. package/esm2022/components/sheet/sheet.service.mjs +51 -0
  411. package/esm2022/components/sheet/taiga-ui-legacy-components-sheet.mjs +5 -0
  412. package/esm2022/components/svg/content-processor.mjs +40 -0
  413. package/esm2022/components/svg/deprecated-icons.mjs +62 -0
  414. package/esm2022/components/svg/index.mjs +6 -0
  415. package/esm2022/components/svg/svg-options.mjs +76 -0
  416. package/esm2022/components/svg/svg.component.mjs +149 -0
  417. package/esm2022/components/svg/svg.service.mjs +64 -0
  418. package/esm2022/components/svg/taiga-ui-legacy-components-svg.mjs +5 -0
  419. package/esm2022/components/table-bar/index.mjs +6 -0
  420. package/esm2022/components/table-bar/table-bar.component.mjs +33 -0
  421. package/esm2022/components/table-bar/table-bar.directive.mjs +21 -0
  422. package/esm2022/components/table-bar/table-bar.options.mjs +16 -0
  423. package/esm2022/components/table-bar/table-bars-host.component.mjs +35 -0
  424. package/esm2022/components/table-bar/table-bars.service.mjs +21 -0
  425. package/esm2022/components/table-bar/taiga-ui-legacy-components-table-bar.mjs +5 -0
  426. package/esm2022/components/tag/index.mjs +4 -0
  427. package/esm2022/components/tag/tag.component.mjs +174 -0
  428. package/esm2022/components/tag/tag.module.mjs +41 -0
  429. package/esm2022/components/tag/tag.options.mjs +22 -0
  430. package/esm2022/components/tag/taiga-ui-legacy-components-tag.mjs +5 -0
  431. package/esm2022/components/taiga-ui-legacy-components.mjs +5 -0
  432. package/esm2022/components/textarea/index.mjs +4 -0
  433. package/esm2022/components/textarea/taiga-ui-legacy-components-textarea.mjs +5 -0
  434. package/esm2022/components/textarea/textarea.component.mjs +192 -0
  435. package/esm2022/components/textarea/textarea.directive.mjs +23 -0
  436. package/esm2022/components/textarea/textarea.module.mjs +67 -0
  437. package/esm2022/components/tooltip/index.mjs +3 -0
  438. package/esm2022/components/tooltip/taiga-ui-legacy-components-tooltip.mjs +5 -0
  439. package/esm2022/components/tooltip/tooltip.component.mjs +50 -0
  440. package/esm2022/components/tooltip/tooltip.module.mjs +27 -0
  441. package/esm2022/directives/index.mjs +6 -0
  442. package/esm2022/directives/legacy-dropdown-open-monitor/index.mjs +2 -0
  443. package/esm2022/directives/legacy-dropdown-open-monitor/legacy-dropdown-open-monitor.mjs +40 -0
  444. package/esm2022/directives/legacy-dropdown-open-monitor/taiga-ui-legacy-directives-legacy-dropdown-open-monitor.mjs +5 -0
  445. package/esm2022/directives/taiga-ui-legacy-directives.mjs +5 -0
  446. package/esm2022/directives/textfield-controller/index.mjs +15 -0
  447. package/esm2022/directives/textfield-controller/taiga-ui-legacy-directives-textfield-controller.mjs +5 -0
  448. package/esm2022/directives/textfield-controller/textfield-appearance.directive.mjs +37 -0
  449. package/esm2022/directives/textfield-controller/textfield-cleaner.directive.mjs +31 -0
  450. package/esm2022/directives/textfield-controller/textfield-controller.module.mjs +75 -0
  451. package/esm2022/directives/textfield-controller/textfield-controller.provider.mjs +50 -0
  452. package/esm2022/directives/textfield-controller/textfield-custom-content.directive.mjs +31 -0
  453. package/esm2022/directives/textfield-controller/textfield-filler.directive.mjs +31 -0
  454. package/esm2022/directives/textfield-controller/textfield-icon-left.directive.mjs +27 -0
  455. package/esm2022/directives/textfield-controller/textfield-icon.directive.mjs +27 -0
  456. package/esm2022/directives/textfield-controller/textfield-label-outside.directive.mjs +35 -0
  457. package/esm2022/directives/textfield-controller/textfield-postfix.directive.mjs +31 -0
  458. package/esm2022/directives/textfield-controller/textfield-prefix.directive.mjs +31 -0
  459. package/esm2022/directives/textfield-controller/textfield-size.directive.mjs +31 -0
  460. package/esm2022/directives/textfield-controller/textfield.controller.mjs +48 -0
  461. package/esm2022/directives/textfield-controller/textfield.options.mjs +21 -0
  462. package/esm2022/directives/unfinished-validator/index.mjs +3 -0
  463. package/esm2022/directives/unfinished-validator/taiga-ui-legacy-directives-unfinished-validator.mjs +5 -0
  464. package/esm2022/directives/unfinished-validator/unfinished-validator.directive.mjs +28 -0
  465. package/esm2022/directives/unfinished-validator/unfinished.validator.mjs +18 -0
  466. package/esm2022/directives/value-accessor/index.mjs +4 -0
  467. package/esm2022/directives/value-accessor/taiga-ui-legacy-directives-value-accessor.mjs +5 -0
  468. package/esm2022/directives/value-accessor/value-accessor.directive.mjs +19 -0
  469. package/esm2022/directives/value-accessor/value-accessor.module.mjs +20 -0
  470. package/esm2022/directives/value-accessor/value-accessor.provider.mjs +13 -0
  471. package/esm2022/directives/wrapper/index.mjs +3 -0
  472. package/esm2022/directives/wrapper/taiga-ui-legacy-directives-wrapper.mjs +5 -0
  473. package/esm2022/directives/wrapper/wrapper.directive.mjs +85 -0
  474. package/esm2022/directives/wrapper/wrapper.module.mjs +20 -0
  475. package/esm2022/index.mjs +7 -0
  476. package/esm2022/pipes/format-phone/format-phone.pipe.mjs +53 -0
  477. package/esm2022/pipes/format-phone/index.mjs +2 -0
  478. package/esm2022/pipes/format-phone/taiga-ui-legacy-pipes-format-phone.mjs +5 -0
  479. package/esm2022/pipes/index.mjs +4 -0
  480. package/esm2022/pipes/iso-to-country-code/index.mjs +2 -0
  481. package/esm2022/pipes/iso-to-country-code/iso-to-country-code.pipe.mjs +44 -0
  482. package/esm2022/pipes/iso-to-country-code/taiga-ui-legacy-pipes-iso-to-country-code.mjs +5 -0
  483. package/esm2022/pipes/taiga-ui-legacy-pipes.mjs +5 -0
  484. package/esm2022/pipes/to-country-code/index.mjs +2 -0
  485. package/esm2022/pipes/to-country-code/taiga-ui-legacy-pipes-to-country-code.mjs +5 -0
  486. package/esm2022/pipes/to-country-code/to-country-code.pipe.mjs +74 -0
  487. package/esm2022/taiga-ui-legacy.mjs +5 -0
  488. package/esm2022/tokens/countries-masks.mjs +255 -0
  489. package/esm2022/tokens/focusable-item-accessor.mjs +14 -0
  490. package/esm2022/tokens/fonts-ready.mjs +10 -0
  491. package/esm2022/tokens/icons.mjs +7 -0
  492. package/esm2022/tokens/index.mjs +15 -0
  493. package/esm2022/tokens/is-apple.mjs +10 -0
  494. package/esm2022/tokens/is-chromium.mjs +9 -0
  495. package/esm2022/tokens/is-firefox.mjs +10 -0
  496. package/esm2022/tokens/is-stackblitz.mjs +8 -0
  497. package/esm2022/tokens/month-formatter.mjs +18 -0
  498. package/esm2022/tokens/sanitizer.mjs +7 -0
  499. package/esm2022/tokens/taiga-ui-legacy-tokens.mjs +5 -0
  500. package/esm2022/tokens/textfield-appearance.mjs +8 -0
  501. package/esm2022/tokens/textfield-host.mjs +14 -0
  502. package/esm2022/tokens/touch-supported.mjs +8 -0
  503. package/esm2022/tokens/value-accessor.mjs +7 -0
  504. package/esm2022/utils/date-mode-maskito-adapter.mjs +9 -0
  505. package/esm2022/utils/format-phone.mjs +60 -0
  506. package/esm2022/utils/get-border.mjs +23 -0
  507. package/esm2022/utils/get-max-allowed-phone-length.mjs +26 -0
  508. package/esm2022/utils/get-safe-area-size.mjs +18 -0
  509. package/esm2022/utils/icons-path-factory.mjs +22 -0
  510. package/esm2022/utils/index.mjs +14 -0
  511. package/esm2022/utils/is-apple.mjs +9 -0
  512. package/esm2022/utils/is-presumed-html-string.mjs +8 -0
  513. package/esm2022/utils/iso-to-country-code.mjs +16 -0
  514. package/esm2022/utils/not-kz-region.mjs +24 -0
  515. package/esm2022/utils/process-icon.mjs +34 -0
  516. package/esm2022/utils/specific-dropdown-controllers.mjs +9 -0
  517. package/esm2022/utils/status.mjs +2 -0
  518. package/esm2022/utils/taiga-ui-legacy-utils.mjs +5 -0
  519. package/fesm2022/taiga-ui-legacy-classes.mjs +391 -0
  520. package/fesm2022/taiga-ui-legacy-classes.mjs.map +1 -0
  521. package/fesm2022/taiga-ui-legacy-components-arrow.mjs +93 -0
  522. package/fesm2022/taiga-ui-legacy-components-arrow.mjs.map +1 -0
  523. package/fesm2022/taiga-ui-legacy-components-color-selector.mjs +725 -0
  524. package/fesm2022/taiga-ui-legacy-components-color-selector.mjs.map +1 -0
  525. package/fesm2022/taiga-ui-legacy-components-combo-box.mjs +294 -0
  526. package/fesm2022/taiga-ui-legacy-components-combo-box.mjs.map +1 -0
  527. package/fesm2022/taiga-ui-legacy-components-input-color.mjs +127 -0
  528. package/fesm2022/taiga-ui-legacy-components-input-color.mjs.map +1 -0
  529. package/fesm2022/taiga-ui-legacy-components-input-copy.mjs +195 -0
  530. package/fesm2022/taiga-ui-legacy-components-input-copy.mjs.map +1 -0
  531. package/fesm2022/taiga-ui-legacy-components-input-date-multi.mjs +283 -0
  532. package/fesm2022/taiga-ui-legacy-components-input-date-multi.mjs.map +1 -0
  533. package/fesm2022/taiga-ui-legacy-components-input-date-range.mjs +363 -0
  534. package/fesm2022/taiga-ui-legacy-components-input-date-range.mjs.map +1 -0
  535. package/fesm2022/taiga-ui-legacy-components-input-date-time.mjs +447 -0
  536. package/fesm2022/taiga-ui-legacy-components-input-date-time.mjs.map +1 -0
  537. package/fesm2022/taiga-ui-legacy-components-input-date.mjs +370 -0
  538. package/fesm2022/taiga-ui-legacy-components-input-date.mjs.map +1 -0
  539. package/fesm2022/taiga-ui-legacy-components-input-month-range.mjs +218 -0
  540. package/fesm2022/taiga-ui-legacy-components-input-month-range.mjs.map +1 -0
  541. package/fesm2022/taiga-ui-legacy-components-input-month.mjs +228 -0
  542. package/fesm2022/taiga-ui-legacy-components-input-month.mjs.map +1 -0
  543. package/fesm2022/taiga-ui-legacy-components-input-number.mjs +363 -0
  544. package/fesm2022/taiga-ui-legacy-components-input-number.mjs.map +1 -0
  545. package/fesm2022/taiga-ui-legacy-components-input-password.mjs +185 -0
  546. package/fesm2022/taiga-ui-legacy-components-input-password.mjs.map +1 -0
  547. package/fesm2022/taiga-ui-legacy-components-input-phone-international.mjs +214 -0
  548. package/fesm2022/taiga-ui-legacy-components-input-phone-international.mjs.map +1 -0
  549. package/fesm2022/taiga-ui-legacy-components-input-phone.mjs +371 -0
  550. package/fesm2022/taiga-ui-legacy-components-input-phone.mjs.map +1 -0
  551. package/fesm2022/taiga-ui-legacy-components-input-range.mjs +259 -0
  552. package/fesm2022/taiga-ui-legacy-components-input-range.mjs.map +1 -0
  553. package/fesm2022/taiga-ui-legacy-components-input-slider.mjs +198 -0
  554. package/fesm2022/taiga-ui-legacy-components-input-slider.mjs.map +1 -0
  555. package/fesm2022/taiga-ui-legacy-components-input-tag.mjs +501 -0
  556. package/fesm2022/taiga-ui-legacy-components-input-tag.mjs.map +1 -0
  557. package/fesm2022/taiga-ui-legacy-components-input-time.mjs +465 -0
  558. package/fesm2022/taiga-ui-legacy-components-input-time.mjs.map +1 -0
  559. package/fesm2022/taiga-ui-legacy-components-input-year.mjs +185 -0
  560. package/fesm2022/taiga-ui-legacy-components-input-year.mjs.map +1 -0
  561. package/fesm2022/taiga-ui-legacy-components-input.mjs +141 -0
  562. package/fesm2022/taiga-ui-legacy-components-input.mjs.map +1 -0
  563. package/fesm2022/taiga-ui-legacy-components-island.mjs +83 -0
  564. package/fesm2022/taiga-ui-legacy-components-island.mjs.map +1 -0
  565. package/fesm2022/taiga-ui-legacy-components-multi-select-option.mjs +53 -0
  566. package/fesm2022/taiga-ui-legacy-components-multi-select-option.mjs.map +1 -0
  567. package/fesm2022/taiga-ui-legacy-components-multi-select.mjs +644 -0
  568. package/fesm2022/taiga-ui-legacy-components-multi-select.mjs.map +1 -0
  569. package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs +455 -0
  570. package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs.map +1 -0
  571. package/fesm2022/taiga-ui-legacy-components-select-option.mjs +97 -0
  572. package/fesm2022/taiga-ui-legacy-components-select-option.mjs.map +1 -0
  573. package/fesm2022/taiga-ui-legacy-components-select.mjs +339 -0
  574. package/fesm2022/taiga-ui-legacy-components-select.mjs.map +1 -0
  575. package/fesm2022/taiga-ui-legacy-components-sheet.mjs +564 -0
  576. package/fesm2022/taiga-ui-legacy-components-sheet.mjs.map +1 -0
  577. package/fesm2022/taiga-ui-legacy-components-svg.mjs +379 -0
  578. package/fesm2022/taiga-ui-legacy-components-svg.mjs.map +1 -0
  579. package/fesm2022/taiga-ui-legacy-components-table-bar.mjs +115 -0
  580. package/fesm2022/taiga-ui-legacy-components-table-bar.mjs.map +1 -0
  581. package/fesm2022/taiga-ui-legacy-components-tag.mjs +238 -0
  582. package/fesm2022/taiga-ui-legacy-components-tag.mjs.map +1 -0
  583. package/fesm2022/taiga-ui-legacy-components-textarea.mjs +276 -0
  584. package/fesm2022/taiga-ui-legacy-components-textarea.mjs.map +1 -0
  585. package/fesm2022/taiga-ui-legacy-components-tooltip.mjs +77 -0
  586. package/fesm2022/taiga-ui-legacy-components-tooltip.mjs.map +1 -0
  587. package/fesm2022/taiga-ui-legacy-components.mjs +38 -0
  588. package/fesm2022/taiga-ui-legacy-components.mjs.map +1 -0
  589. package/fesm2022/taiga-ui-legacy-directives-legacy-dropdown-open-monitor.mjs +46 -0
  590. package/fesm2022/taiga-ui-legacy-directives-legacy-dropdown-open-monitor.mjs.map +1 -0
  591. package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs +440 -0
  592. package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs.map +1 -0
  593. package/fesm2022/taiga-ui-legacy-directives-unfinished-validator.mjs +50 -0
  594. package/fesm2022/taiga-ui-legacy-directives-unfinished-validator.mjs.map +1 -0
  595. package/fesm2022/taiga-ui-legacy-directives-value-accessor.mjs +52 -0
  596. package/fesm2022/taiga-ui-legacy-directives-value-accessor.mjs.map +1 -0
  597. package/fesm2022/taiga-ui-legacy-directives-wrapper.mjs +107 -0
  598. package/fesm2022/taiga-ui-legacy-directives-wrapper.mjs.map +1 -0
  599. package/fesm2022/taiga-ui-legacy-directives.mjs +10 -0
  600. package/fesm2022/taiga-ui-legacy-directives.mjs.map +1 -0
  601. package/fesm2022/taiga-ui-legacy-pipes-format-phone.mjs +59 -0
  602. package/fesm2022/taiga-ui-legacy-pipes-format-phone.mjs.map +1 -0
  603. package/fesm2022/taiga-ui-legacy-pipes-iso-to-country-code.mjs +50 -0
  604. package/fesm2022/taiga-ui-legacy-pipes-iso-to-country-code.mjs.map +1 -0
  605. package/fesm2022/taiga-ui-legacy-pipes-to-country-code.mjs +80 -0
  606. package/fesm2022/taiga-ui-legacy-pipes-to-country-code.mjs.map +1 -0
  607. package/fesm2022/taiga-ui-legacy-pipes.mjs +8 -0
  608. package/fesm2022/taiga-ui-legacy-pipes.mjs.map +1 -0
  609. package/fesm2022/taiga-ui-legacy-tokens.mjs +368 -0
  610. package/fesm2022/taiga-ui-legacy-tokens.mjs.map +1 -0
  611. package/fesm2022/taiga-ui-legacy-utils.mjs +264 -0
  612. package/fesm2022/taiga-ui-legacy-utils.mjs.map +1 -0
  613. package/fesm2022/taiga-ui-legacy.mjs +11 -0
  614. package/fesm2022/taiga-ui-legacy.mjs.map +1 -0
  615. package/index.d.ts +6 -0
  616. package/package.json +315 -0
  617. package/pipes/format-phone/format-phone.pipe.d.ts +37 -0
  618. package/pipes/format-phone/index.d.ts +1 -0
  619. package/pipes/index.d.ts +3 -0
  620. package/pipes/iso-to-country-code/index.d.ts +1 -0
  621. package/pipes/iso-to-country-code/iso-to-country-code.pipe.d.ts +30 -0
  622. package/pipes/to-country-code/index.d.ts +1 -0
  623. package/pipes/to-country-code/to-country-code.pipe.d.ts +38 -0
  624. package/styles/mixins/mixins.less +245 -0
  625. package/styles/mixins/mixins.scss +230 -0
  626. package/styles/mixins/textfield.less +315 -0
  627. package/styles/mixins/textfield.scss +306 -0
  628. package/styles/taiga-ui-local.less +3 -0
  629. package/styles/taiga-ui-local.scss +3 -0
  630. package/tokens/countries-masks.d.ts +8 -0
  631. package/tokens/focusable-item-accessor.d.ts +26 -0
  632. package/tokens/fonts-ready.d.ts +6 -0
  633. package/tokens/icons.d.ts +5 -0
  634. package/tokens/index.d.ts +14 -0
  635. package/tokens/is-apple.d.ts +5 -0
  636. package/tokens/is-chromium.d.ts +5 -0
  637. package/tokens/is-firefox.d.ts +5 -0
  638. package/tokens/is-stackblitz.d.ts +4 -0
  639. package/tokens/month-formatter.d.ts +11 -0
  640. package/tokens/sanitizer.d.ts +7 -0
  641. package/tokens/textfield-appearance.d.ts +6 -0
  642. package/tokens/textfield-host.d.ts +24 -0
  643. package/tokens/touch-supported.d.ts +4 -0
  644. package/tokens/value-accessor.d.ts +7 -0
  645. package/utils/date-mode-maskito-adapter.d.ts +6 -0
  646. package/utils/format-phone.d.ts +30 -0
  647. package/utils/get-border.d.ts +5 -0
  648. package/utils/get-max-allowed-phone-length.d.ts +24 -0
  649. package/utils/get-safe-area-size.d.ts +7 -0
  650. package/utils/icons-path-factory.d.ts +13 -0
  651. package/utils/index.d.ts +13 -0
  652. package/utils/is-apple.d.ts +4 -0
  653. package/utils/is-presumed-html-string.d.ts +4 -0
  654. package/utils/iso-to-country-code.d.ts +13 -0
  655. package/utils/not-kz-region.d.ts +20 -0
  656. package/utils/process-icon.d.ts +4 -0
  657. package/utils/specific-dropdown-controllers.d.ts +4 -0
  658. package/utils/status.d.ts +4 -0
@@ -0,0 +1,37 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_APPEARANCE_DIRECTIVE = tuiCreateTokenFromFactory(() => new TuiTextfieldAppearanceDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldAppearanceDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ // it's an empty string by default for backward compatibility
16
+ // (see comment https://github.com/taiga-family/taiga-ui/pull/3007#issuecomment-1315179508)
17
+ this.appearance = '';
18
+ }
19
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldAppearanceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
20
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldAppearanceDirective, selector: "[tuiTextfieldAppearance]", inputs: { appearance: ["tuiTextfieldAppearance", "appearance"] }, providers: [
21
+ tuiProvide(TUI_TEXTFIELD_APPEARANCE_DIRECTIVE, TuiTextfieldAppearanceDirective),
22
+ ], usesInheritance: true, ngImport: i0 }); }
23
+ }
24
+ export { TuiTextfieldAppearanceDirective };
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldAppearanceDirective, decorators: [{
26
+ type: Directive,
27
+ args: [{
28
+ selector: '[tuiTextfieldAppearance]',
29
+ providers: [
30
+ tuiProvide(TUI_TEXTFIELD_APPEARANCE_DIRECTIVE, TuiTextfieldAppearanceDirective),
31
+ ],
32
+ }]
33
+ }], propDecorators: { appearance: [{
34
+ type: Input,
35
+ args: ['tuiTextfieldAppearance']
36
+ }] } });
37
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWFwcGVhcmFuY2UuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLWFwcGVhcmFuY2UuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBQzVELE9BQU8sRUFBQyx5QkFBeUIsRUFBRSxVQUFVLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFFeEY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxrQ0FBa0MsR0FBRyx5QkFBeUIsQ0FDdkUsR0FBRyxFQUFFLENBQUMsSUFBSSwrQkFBK0IsRUFBRSxDQUM5QyxDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQU1hLCtCQUFnQyxTQUFRLHFCQUFxQjtJQU4xRTs7UUFPSSw2REFBNkQ7UUFDN0QsMkZBQTJGO1FBRXBGLGVBQVUsR0FBRyxFQUFFLENBQUM7S0FDMUI7K0dBTFksK0JBQStCO21HQUEvQiwrQkFBK0IscUhBSjdCO1lBQ1AsVUFBVSxDQUFDLGtDQUFrQyxFQUFFLCtCQUErQixDQUFDO1NBQ2xGOztTQUVRLCtCQUErQjs0RkFBL0IsK0JBQStCO2tCQU4zQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSwwQkFBMEI7b0JBQ3BDLFNBQVMsRUFBRTt3QkFDUCxVQUFVLENBQUMsa0NBQWtDLGtDQUFrQztxQkFDbEY7aUJBQ0o7OEJBS1UsVUFBVTtzQkFEaEIsS0FBSzt1QkFBQyx3QkFBd0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFR1aUNvbnRyb2xsZXJ9IGZyb20gJ0B0YWlnYS11aS9jZGsvY2xhc3Nlcyc7XG5pbXBvcnQge3R1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnksIHR1aVByb3ZpZGV9IGZyb20gJ0B0YWlnYS11aS9jZGsvdXRpbHMvbWlzY2VsbGFuZW91cyc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5leHBvcnQgY29uc3QgVFVJX1RFWFRGSUVMRF9BUFBFQVJBTkNFX0RJUkVDVElWRSA9IHR1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnkoXG4gICAgKCkgPT4gbmV3IFR1aVRleHRmaWVsZEFwcGVhcmFuY2VEaXJlY3RpdmUoKSxcbik7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlUZXh0ZmllbGRBcHBlYXJhbmNlXScsXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHR1aVByb3ZpZGUoVFVJX1RFWFRGSUVMRF9BUFBFQVJBTkNFX0RJUkVDVElWRSwgVHVpVGV4dGZpZWxkQXBwZWFyYW5jZURpcmVjdGl2ZSksXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVGV4dGZpZWxkQXBwZWFyYW5jZURpcmVjdGl2ZSBleHRlbmRzIEFic3RyYWN0VHVpQ29udHJvbGxlciB7XG4gICAgLy8gaXQncyBhbiBlbXB0eSBzdHJpbmcgYnkgZGVmYXVsdCBmb3IgYmFja3dhcmQgY29tcGF0aWJpbGl0eVxuICAgIC8vIChzZWUgY29tbWVudCBodHRwczovL2dpdGh1Yi5jb20vdGFpZ2EtZmFtaWx5L3RhaWdhLXVpL3B1bGwvMzAwNyNpc3N1ZWNvbW1lbnQtMTMxNTE3OTUwOClcbiAgICBASW5wdXQoJ3R1aVRleHRmaWVsZEFwcGVhcmFuY2UnKVxuICAgIHB1YmxpYyBhcHBlYXJhbmNlID0gJyc7XG59XG4iXX0=
@@ -0,0 +1,31 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_CLEANER = tuiCreateTokenFromFactory(() => new TuiTextfieldCleanerDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldCleanerDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.cleaner = false;
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldCleanerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldCleanerDirective, selector: "[tuiTextfieldCleaner]", inputs: { cleaner: ["tuiTextfieldCleaner", "cleaner"] }, providers: [tuiProvide(TUI_TEXTFIELD_CLEANER, TuiTextfieldCleanerDirective)], usesInheritance: true, ngImport: i0 }); }
19
+ }
20
+ export { TuiTextfieldCleanerDirective };
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldCleanerDirective, decorators: [{
22
+ type: Directive,
23
+ args: [{
24
+ selector: '[tuiTextfieldCleaner]',
25
+ providers: [tuiProvide(TUI_TEXTFIELD_CLEANER, TuiTextfieldCleanerDirective)],
26
+ }]
27
+ }], propDecorators: { cleaner: [{
28
+ type: Input,
29
+ args: ['tuiTextfieldCleaner']
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWNsZWFuZXIuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLWNsZWFuZXIuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBQzVELE9BQU8sRUFBQyx5QkFBeUIsRUFBRSxVQUFVLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFFeEY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyx5QkFBeUIsQ0FDMUQsR0FBRyxFQUFFLENBQUMsSUFBSSw0QkFBNEIsRUFBRSxDQUMzQyxDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQUlhLDRCQUE2QixTQUFRLHFCQUFxQjtJQUp2RTs7UUFNVyxZQUFPLEdBQUcsS0FBSyxDQUFDO0tBQzFCOytHQUhZLDRCQUE0QjttR0FBNUIsNEJBQTRCLHlHQUYxQixDQUFDLFVBQVUsQ0FBQyxxQkFBcUIsRUFBRSw0QkFBNEIsQ0FBQyxDQUFDOztTQUVuRSw0QkFBNEI7NEZBQTVCLDRCQUE0QjtrQkFKeEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsdUJBQXVCO29CQUNqQyxTQUFTLEVBQUUsQ0FBQyxVQUFVLENBQUMscUJBQXFCLCtCQUErQixDQUFDO2lCQUMvRTs4QkFHVSxPQUFPO3NCQURiLEtBQUs7dUJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmUsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RUdWlDb250cm9sbGVyfSBmcm9tICdAdGFpZ2EtdWkvY2RrL2NsYXNzZXMnO1xuaW1wb3J0IHt0dWlDcmVhdGVUb2tlbkZyb21GYWN0b3J5LCB0dWlQcm92aWRlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzL21pc2NlbGxhbmVvdXMnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqL1xuZXhwb3J0IGNvbnN0IFRVSV9URVhURklFTERfQ0xFQU5FUiA9IHR1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnkoXG4gICAgKCkgPT4gbmV3IFR1aVRleHRmaWVsZENsZWFuZXJEaXJlY3RpdmUoKSxcbik7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlUZXh0ZmllbGRDbGVhbmVyXScsXG4gICAgcHJvdmlkZXJzOiBbdHVpUHJvdmlkZShUVUlfVEVYVEZJRUxEX0NMRUFORVIsIFR1aVRleHRmaWVsZENsZWFuZXJEaXJlY3RpdmUpXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVGV4dGZpZWxkQ2xlYW5lckRpcmVjdGl2ZSBleHRlbmRzIEFic3RyYWN0VHVpQ29udHJvbGxlciB7XG4gICAgQElucHV0KCd0dWlUZXh0ZmllbGRDbGVhbmVyJylcbiAgICBwdWJsaWMgY2xlYW5lciA9IGZhbHNlO1xufVxuIl19
@@ -0,0 +1,75 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { PolymorpheusOutlet, PolymorpheusTemplate } from '@taiga-ui/polymorpheus';
3
+ import { TuiTextfieldAppearanceDirective } from './textfield-appearance.directive';
4
+ import { TuiTextfieldCleanerDirective } from './textfield-cleaner.directive';
5
+ import { TuiTextfieldCustomContentDirective } from './textfield-custom-content.directive';
6
+ import { TuiTextfieldFillerDirective } from './textfield-filler.directive';
7
+ import { TuiTextfieldIconDirective } from './textfield-icon.directive';
8
+ import { TuiTextfieldIconLeftDirective } from './textfield-icon-left.directive';
9
+ import { TuiTextfieldLabelOutsideDirective } from './textfield-label-outside.directive';
10
+ import { TuiTextfieldPostfixDirective } from './textfield-postfix.directive';
11
+ import { TuiTextfieldPrefixDirective } from './textfield-prefix.directive';
12
+ import { TuiTextfieldSizeDirective } from './textfield-size.directive';
13
+ import * as i0 from "@angular/core";
14
+ /**
15
+ * @deprecated: drop in v5.0
16
+ */
17
+ class TuiTextfieldControllerModule {
18
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldControllerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
19
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldControllerModule, declarations: [TuiTextfieldAppearanceDirective,
20
+ TuiTextfieldCleanerDirective,
21
+ TuiTextfieldCustomContentDirective,
22
+ TuiTextfieldLabelOutsideDirective,
23
+ TuiTextfieldSizeDirective,
24
+ TuiTextfieldIconDirective,
25
+ TuiTextfieldIconLeftDirective,
26
+ TuiTextfieldPrefixDirective,
27
+ TuiTextfieldPostfixDirective,
28
+ TuiTextfieldFillerDirective], imports: [PolymorpheusOutlet, PolymorpheusTemplate], exports: [TuiTextfieldAppearanceDirective,
29
+ TuiTextfieldCleanerDirective,
30
+ TuiTextfieldCustomContentDirective,
31
+ TuiTextfieldLabelOutsideDirective,
32
+ TuiTextfieldSizeDirective,
33
+ TuiTextfieldIconDirective,
34
+ TuiTextfieldIconLeftDirective,
35
+ TuiTextfieldPrefixDirective,
36
+ TuiTextfieldPostfixDirective,
37
+ TuiTextfieldFillerDirective,
38
+ PolymorpheusOutlet,
39
+ PolymorpheusTemplate] }); }
40
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldControllerModule }); }
41
+ }
42
+ export { TuiTextfieldControllerModule };
43
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldControllerModule, decorators: [{
44
+ type: NgModule,
45
+ args: [{
46
+ imports: [PolymorpheusOutlet, PolymorpheusTemplate],
47
+ declarations: [
48
+ TuiTextfieldAppearanceDirective,
49
+ TuiTextfieldCleanerDirective,
50
+ TuiTextfieldCustomContentDirective,
51
+ TuiTextfieldLabelOutsideDirective,
52
+ TuiTextfieldSizeDirective,
53
+ TuiTextfieldIconDirective,
54
+ TuiTextfieldIconLeftDirective,
55
+ TuiTextfieldPrefixDirective,
56
+ TuiTextfieldPostfixDirective,
57
+ TuiTextfieldFillerDirective,
58
+ ],
59
+ exports: [
60
+ TuiTextfieldAppearanceDirective,
61
+ TuiTextfieldCleanerDirective,
62
+ TuiTextfieldCustomContentDirective,
63
+ TuiTextfieldLabelOutsideDirective,
64
+ TuiTextfieldSizeDirective,
65
+ TuiTextfieldIconDirective,
66
+ TuiTextfieldIconLeftDirective,
67
+ TuiTextfieldPrefixDirective,
68
+ TuiTextfieldPostfixDirective,
69
+ TuiTextfieldFillerDirective,
70
+ PolymorpheusOutlet,
71
+ PolymorpheusTemplate,
72
+ ],
73
+ }]
74
+ }] });
75
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWNvbnRyb2xsZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLWNvbnRyb2xsZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLGtCQUFrQixFQUFFLG9CQUFvQixFQUFDLE1BQU0sd0JBQXdCLENBQUM7QUFFaEYsT0FBTyxFQUFDLCtCQUErQixFQUFDLE1BQU0sa0NBQWtDLENBQUM7QUFDakYsT0FBTyxFQUFDLDRCQUE0QixFQUFDLE1BQU0sK0JBQStCLENBQUM7QUFDM0UsT0FBTyxFQUFDLGtDQUFrQyxFQUFDLE1BQU0sc0NBQXNDLENBQUM7QUFDeEYsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDekUsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sNEJBQTRCLENBQUM7QUFDckUsT0FBTyxFQUFDLDZCQUE2QixFQUFDLE1BQU0saUNBQWlDLENBQUM7QUFDOUUsT0FBTyxFQUFDLGlDQUFpQyxFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDdEYsT0FBTyxFQUFDLDRCQUE0QixFQUFDLE1BQU0sK0JBQStCLENBQUM7QUFDM0UsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDekUsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sNEJBQTRCLENBQUM7O0FBRXJFOztHQUVHO0FBQ0gsTUE2QmEsNEJBQTRCOytHQUE1Qiw0QkFBNEI7Z0hBQTVCLDRCQUE0QixpQkExQmpDLCtCQUErQjtZQUMvQiw0QkFBNEI7WUFDNUIsa0NBQWtDO1lBQ2xDLGlDQUFpQztZQUNqQyx5QkFBeUI7WUFDekIseUJBQXlCO1lBQ3pCLDZCQUE2QjtZQUM3QiwyQkFBMkI7WUFDM0IsNEJBQTRCO1lBQzVCLDJCQUEyQixhQVhyQixrQkFBa0IsRUFBRSxvQkFBb0IsYUFjOUMsK0JBQStCO1lBQy9CLDRCQUE0QjtZQUM1QixrQ0FBa0M7WUFDbEMsaUNBQWlDO1lBQ2pDLHlCQUF5QjtZQUN6Qix5QkFBeUI7WUFDekIsNkJBQTZCO1lBQzdCLDJCQUEyQjtZQUMzQiw0QkFBNEI7WUFDNUIsMkJBQTJCO1lBQzNCLGtCQUFrQjtZQUNsQixvQkFBb0I7Z0hBR2YsNEJBQTRCOztTQUE1Qiw0QkFBNEI7NEZBQTVCLDRCQUE0QjtrQkE3QnhDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsa0JBQWtCLEVBQUUsb0JBQW9CLENBQUM7b0JBQ25ELFlBQVksRUFBRTt3QkFDViwrQkFBK0I7d0JBQy9CLDRCQUE0Qjt3QkFDNUIsa0NBQWtDO3dCQUNsQyxpQ0FBaUM7d0JBQ2pDLHlCQUF5Qjt3QkFDekIseUJBQXlCO3dCQUN6Qiw2QkFBNkI7d0JBQzdCLDJCQUEyQjt3QkFDM0IsNEJBQTRCO3dCQUM1QiwyQkFBMkI7cUJBQzlCO29CQUNELE9BQU8sRUFBRTt3QkFDTCwrQkFBK0I7d0JBQy9CLDRCQUE0Qjt3QkFDNUIsa0NBQWtDO3dCQUNsQyxpQ0FBaUM7d0JBQ2pDLHlCQUF5Qjt3QkFDekIseUJBQXlCO3dCQUN6Qiw2QkFBNkI7d0JBQzdCLDJCQUEyQjt3QkFDM0IsNEJBQTRCO3dCQUM1QiwyQkFBMkI7d0JBQzNCLGtCQUFrQjt3QkFDbEIsb0JBQW9CO3FCQUN2QjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtQb2x5bW9ycGhldXNPdXRsZXQsIFBvbHltb3JwaGV1c1RlbXBsYXRlfSBmcm9tICdAdGFpZ2EtdWkvcG9seW1vcnBoZXVzJztcblxuaW1wb3J0IHtUdWlUZXh0ZmllbGRBcHBlYXJhbmNlRGlyZWN0aXZlfSBmcm9tICcuL3RleHRmaWVsZC1hcHBlYXJhbmNlLmRpcmVjdGl2ZSc7XG5pbXBvcnQge1R1aVRleHRmaWVsZENsZWFuZXJEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWNsZWFuZXIuZGlyZWN0aXZlJztcbmltcG9ydCB7VHVpVGV4dGZpZWxkQ3VzdG9tQ29udGVudERpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtY3VzdG9tLWNvbnRlbnQuZGlyZWN0aXZlJztcbmltcG9ydCB7VHVpVGV4dGZpZWxkRmlsbGVyRGlyZWN0aXZlfSBmcm9tICcuL3RleHRmaWVsZC1maWxsZXIuZGlyZWN0aXZlJztcbmltcG9ydCB7VHVpVGV4dGZpZWxkSWNvbkRpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtaWNvbi5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUdWlUZXh0ZmllbGRJY29uTGVmdERpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtaWNvbi1sZWZ0LmRpcmVjdGl2ZSc7XG5pbXBvcnQge1R1aVRleHRmaWVsZExhYmVsT3V0c2lkZURpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtbGFiZWwtb3V0c2lkZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUdWlUZXh0ZmllbGRQb3N0Zml4RGlyZWN0aXZlfSBmcm9tICcuL3RleHRmaWVsZC1wb3N0Zml4LmRpcmVjdGl2ZSc7XG5pbXBvcnQge1R1aVRleHRmaWVsZFByZWZpeERpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtcHJlZml4LmRpcmVjdGl2ZSc7XG5pbXBvcnQge1R1aVRleHRmaWVsZFNpemVEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLXNpemUuZGlyZWN0aXZlJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1BvbHltb3JwaGV1c091dGxldCwgUG9seW1vcnBoZXVzVGVtcGxhdGVdLFxuICAgIGRlY2xhcmF0aW9uczogW1xuICAgICAgICBUdWlUZXh0ZmllbGRBcHBlYXJhbmNlRGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRDbGVhbmVyRGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRDdXN0b21Db250ZW50RGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRMYWJlbE91dHNpZGVEaXJlY3RpdmUsXG4gICAgICAgIFR1aVRleHRmaWVsZFNpemVEaXJlY3RpdmUsXG4gICAgICAgIFR1aVRleHRmaWVsZEljb25EaXJlY3RpdmUsXG4gICAgICAgIFR1aVRleHRmaWVsZEljb25MZWZ0RGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRQcmVmaXhEaXJlY3RpdmUsXG4gICAgICAgIFR1aVRleHRmaWVsZFBvc3RmaXhEaXJlY3RpdmUsXG4gICAgICAgIFR1aVRleHRmaWVsZEZpbGxlckRpcmVjdGl2ZSxcbiAgICBdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgVHVpVGV4dGZpZWxkQXBwZWFyYW5jZURpcmVjdGl2ZSxcbiAgICAgICAgVHVpVGV4dGZpZWxkQ2xlYW5lckRpcmVjdGl2ZSxcbiAgICAgICAgVHVpVGV4dGZpZWxkQ3VzdG9tQ29udGVudERpcmVjdGl2ZSxcbiAgICAgICAgVHVpVGV4dGZpZWxkTGFiZWxPdXRzaWRlRGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRTaXplRGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRJY29uRGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRJY29uTGVmdERpcmVjdGl2ZSxcbiAgICAgICAgVHVpVGV4dGZpZWxkUHJlZml4RGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRQb3N0Zml4RGlyZWN0aXZlLFxuICAgICAgICBUdWlUZXh0ZmllbGRGaWxsZXJEaXJlY3RpdmUsXG4gICAgICAgIFBvbHltb3JwaGV1c091dGxldCxcbiAgICAgICAgUG9seW1vcnBoZXVzVGVtcGxhdGUsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVGV4dGZpZWxkQ29udHJvbGxlck1vZHVsZSB7fVxuIl19
@@ -0,0 +1,50 @@
1
+ import { ChangeDetectorRef, InjectionToken } from '@angular/core';
2
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
3
+ import { tuiWatch } from '@taiga-ui/cdk/observables';
4
+ import { TUI_TEXTFIELD_APPEARANCE } from '@taiga-ui/legacy/tokens';
5
+ import { merge, NEVER } from 'rxjs';
6
+ import { TuiTextfieldController } from './textfield.controller';
7
+ import { TUI_TEXTFIELD_OPTIONS } from './textfield.options';
8
+ import { TUI_TEXTFIELD_APPEARANCE_DIRECTIVE } from './textfield-appearance.directive';
9
+ import { TUI_TEXTFIELD_CLEANER } from './textfield-cleaner.directive';
10
+ import { TUI_TEXTFIELD_CUSTOM_CONTENT } from './textfield-custom-content.directive';
11
+ import { TUI_TEXTFIELD_FILLER } from './textfield-filler.directive';
12
+ import { TUI_TEXTFIELD_ICON } from './textfield-icon.directive';
13
+ import { TUI_TEXTFIELD_ICON_LEFT } from './textfield-icon-left.directive';
14
+ import { TUI_TEXTFIELD_LABEL_OUTSIDE } from './textfield-label-outside.directive';
15
+ import { TUI_TEXTFIELD_POSTFIX } from './textfield-postfix.directive';
16
+ import { TUI_TEXTFIELD_PREFIX } from './textfield-prefix.directive';
17
+ import { TUI_TEXTFIELD_SIZE } from './textfield-size.directive';
18
+ /**
19
+ * @deprecated: drop in v5.0
20
+ */
21
+ export const TUI_TEXTFIELD_WATCHED_CONTROLLER = new InjectionToken('[TUI_TEXTFIELD_WATCHED_CONTROLLER]');
22
+ /**
23
+ * @deprecated: drop in v5.0
24
+ */
25
+ export const TEXTFIELD_CONTROLLER_PROVIDER = [
26
+ {
27
+ provide: TUI_TEXTFIELD_WATCHED_CONTROLLER,
28
+ deps: [
29
+ ChangeDetectorRef,
30
+ TUI_TEXTFIELD_OPTIONS,
31
+ TUI_TEXTFIELD_APPEARANCE,
32
+ TUI_TEXTFIELD_APPEARANCE_DIRECTIVE,
33
+ TUI_TEXTFIELD_CLEANER,
34
+ TUI_TEXTFIELD_CUSTOM_CONTENT,
35
+ TUI_TEXTFIELD_ICON,
36
+ TUI_TEXTFIELD_ICON_LEFT,
37
+ TUI_TEXTFIELD_LABEL_OUTSIDE,
38
+ TUI_TEXTFIELD_SIZE,
39
+ TUI_TEXTFIELD_PREFIX,
40
+ TUI_TEXTFIELD_POSTFIX,
41
+ TUI_TEXTFIELD_FILLER,
42
+ ],
43
+ useFactory: (cdr, options, legacyAppearance, ...controllers) => {
44
+ const change$ = merge(...controllers.map(({ change$ }) => change$ || NEVER)).pipe(tuiWatch(cdr), takeUntilDestroyed());
45
+ change$.subscribe();
46
+ return new TuiTextfieldController(change$, options, legacyAppearance, ...controllers);
47
+ },
48
+ },
49
+ ];
50
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWNvbnRyb2xsZXIucHJvdmlkZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90ZXh0ZmllbGQtY29udHJvbGxlci5wcm92aWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUMsaUJBQWlCLEVBQUUsY0FBYyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hFLE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLDRCQUE0QixDQUFDO0FBQzlELE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSwyQkFBMkIsQ0FBQztBQUNuRCxPQUFPLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSx5QkFBeUIsQ0FBQztBQUNqRSxPQUFPLEVBQUMsS0FBSyxFQUFFLEtBQUssRUFBQyxNQUFNLE1BQU0sQ0FBQztBQUVsQyxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUU5RCxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUUxRCxPQUFPLEVBQUMsa0NBQWtDLEVBQUMsTUFBTSxrQ0FBa0MsQ0FBQztBQUVwRixPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSwrQkFBK0IsQ0FBQztBQUVwRSxPQUFPLEVBQUMsNEJBQTRCLEVBQUMsTUFBTSxzQ0FBc0MsQ0FBQztBQUVsRixPQUFPLEVBQUMsb0JBQW9CLEVBQUMsTUFBTSw4QkFBOEIsQ0FBQztBQUVsRSxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSw0QkFBNEIsQ0FBQztBQUU5RCxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUV4RSxPQUFPLEVBQUMsMkJBQTJCLEVBQUMsTUFBTSxxQ0FBcUMsQ0FBQztBQUVoRixPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSwrQkFBK0IsQ0FBQztBQUVwRSxPQUFPLEVBQUMsb0JBQW9CLEVBQUMsTUFBTSw4QkFBOEIsQ0FBQztBQUVsRSxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSw0QkFBNEIsQ0FBQztBQUU5RDs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLGdDQUFnQyxHQUN6QyxJQUFJLGNBQWMsQ0FBeUIsb0NBQW9DLENBQUMsQ0FBQztBQUVyRjs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLDZCQUE2QixHQUFhO0lBQ25EO1FBQ0ksT0FBTyxFQUFFLGdDQUFnQztRQUN6QyxJQUFJLEVBQUU7WUFDRixpQkFBaUI7WUFDakIscUJBQXFCO1lBQ3JCLHdCQUF3QjtZQUN4QixrQ0FBa0M7WUFDbEMscUJBQXFCO1lBQ3JCLDRCQUE0QjtZQUM1QixrQkFBa0I7WUFDbEIsdUJBQXVCO1lBQ3ZCLDJCQUEyQjtZQUMzQixrQkFBa0I7WUFDbEIsb0JBQW9CO1lBQ3BCLHFCQUFxQjtZQUNyQixvQkFBb0I7U0FDdkI7UUFDRCxVQUFVLEVBQUUsQ0FDUixHQUFzQixFQUN0QixPQUE0QixFQUM1QixnQkFBd0IsRUFDeEIsR0FBRyxXQVdGLEVBQ0gsRUFBRTtZQUNBLE1BQU0sT0FBTyxHQUFHLEtBQUssQ0FDakIsR0FBRyxXQUFXLENBQUMsR0FBRyxDQUFDLENBQUMsRUFBQyxPQUFPLEVBQUMsRUFBRSxFQUFFLENBQUMsT0FBTyxJQUFJLEtBQUssQ0FBQyxDQUN0RCxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLEVBQUUsa0JBQWtCLEVBQUUsQ0FBQyxDQUFDO1lBRTVDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsQ0FBQztZQUVwQixPQUFPLElBQUksc0JBQXNCLENBQzdCLE9BQU8sRUFDUCxPQUFPLEVBQ1AsZ0JBQWdCLEVBQ2hCLEdBQUcsV0FBVyxDQUNqQixDQUFDO1FBQ04sQ0FBQztLQUNKO0NBQ0osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHtQcm92aWRlcn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NoYW5nZURldGVjdG9yUmVmLCBJbmplY3Rpb25Ub2tlbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge3Rha2VVbnRpbERlc3Ryb3llZH0gZnJvbSAnQGFuZ3VsYXIvY29yZS9yeGpzLWludGVyb3AnO1xuaW1wb3J0IHt0dWlXYXRjaH0gZnJvbSAnQHRhaWdhLXVpL2Nkay9vYnNlcnZhYmxlcyc7XG5pbXBvcnQge1RVSV9URVhURklFTERfQVBQRUFSQU5DRX0gZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeS90b2tlbnMnO1xuaW1wb3J0IHttZXJnZSwgTkVWRVJ9IGZyb20gJ3J4anMnO1xuXG5pbXBvcnQge1R1aVRleHRmaWVsZENvbnRyb2xsZXJ9IGZyb20gJy4vdGV4dGZpZWxkLmNvbnRyb2xsZXInO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZE9wdGlvbnN9IGZyb20gJy4vdGV4dGZpZWxkLm9wdGlvbnMnO1xuaW1wb3J0IHtUVUlfVEVYVEZJRUxEX09QVElPTlN9IGZyb20gJy4vdGV4dGZpZWxkLm9wdGlvbnMnO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZEFwcGVhcmFuY2VEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWFwcGVhcmFuY2UuZGlyZWN0aXZlJztcbmltcG9ydCB7VFVJX1RFWFRGSUVMRF9BUFBFQVJBTkNFX0RJUkVDVElWRX0gZnJvbSAnLi90ZXh0ZmllbGQtYXBwZWFyYW5jZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZENsZWFuZXJEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWNsZWFuZXIuZGlyZWN0aXZlJztcbmltcG9ydCB7VFVJX1RFWFRGSUVMRF9DTEVBTkVSfSBmcm9tICcuL3RleHRmaWVsZC1jbGVhbmVyLmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkQ3VzdG9tQ29udGVudERpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtY3VzdG9tLWNvbnRlbnQuZGlyZWN0aXZlJztcbmltcG9ydCB7VFVJX1RFWFRGSUVMRF9DVVNUT01fQ09OVEVOVH0gZnJvbSAnLi90ZXh0ZmllbGQtY3VzdG9tLWNvbnRlbnQuZGlyZWN0aXZlJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRGaWxsZXJEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWZpbGxlci5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUVUlfVEVYVEZJRUxEX0ZJTExFUn0gZnJvbSAnLi90ZXh0ZmllbGQtZmlsbGVyLmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkSWNvbkRpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtaWNvbi5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUVUlfVEVYVEZJRUxEX0lDT059IGZyb20gJy4vdGV4dGZpZWxkLWljb24uZGlyZWN0aXZlJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRJY29uTGVmdERpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtaWNvbi1sZWZ0LmRpcmVjdGl2ZSc7XG5pbXBvcnQge1RVSV9URVhURklFTERfSUNPTl9MRUZUfSBmcm9tICcuL3RleHRmaWVsZC1pY29uLWxlZnQuZGlyZWN0aXZlJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRMYWJlbE91dHNpZGVEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWxhYmVsLW91dHNpZGUuZGlyZWN0aXZlJztcbmltcG9ydCB7VFVJX1RFWFRGSUVMRF9MQUJFTF9PVVRTSURFfSBmcm9tICcuL3RleHRmaWVsZC1sYWJlbC1vdXRzaWRlLmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkUG9zdGZpeERpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtcG9zdGZpeC5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUVUlfVEVYVEZJRUxEX1BPU1RGSVh9IGZyb20gJy4vdGV4dGZpZWxkLXBvc3RmaXguZGlyZWN0aXZlJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRQcmVmaXhEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLXByZWZpeC5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUVUlfVEVYVEZJRUxEX1BSRUZJWH0gZnJvbSAnLi90ZXh0ZmllbGQtcHJlZml4LmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkU2l6ZURpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtc2l6ZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUVUlfVEVYVEZJRUxEX1NJWkV9IGZyb20gJy4vdGV4dGZpZWxkLXNpemUuZGlyZWN0aXZlJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX1dBVENIRURfQ09OVFJPTExFUiA9XG4gICAgbmV3IEluamVjdGlvblRva2VuPFR1aVRleHRmaWVsZENvbnRyb2xsZXI+KCdbVFVJX1RFWFRGSUVMRF9XQVRDSEVEX0NPTlRST0xMRVJdJyk7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5leHBvcnQgY29uc3QgVEVYVEZJRUxEX0NPTlRST0xMRVJfUFJPVklERVI6IFByb3ZpZGVyID0gW1xuICAgIHtcbiAgICAgICAgcHJvdmlkZTogVFVJX1RFWFRGSUVMRF9XQVRDSEVEX0NPTlRST0xMRVIsXG4gICAgICAgIGRlcHM6IFtcbiAgICAgICAgICAgIENoYW5nZURldGVjdG9yUmVmLFxuICAgICAgICAgICAgVFVJX1RFWFRGSUVMRF9PUFRJT05TLFxuICAgICAgICAgICAgVFVJX1RFWFRGSUVMRF9BUFBFQVJBTkNFLFxuICAgICAgICAgICAgVFVJX1RFWFRGSUVMRF9BUFBFQVJBTkNFX0RJUkVDVElWRSxcbiAgICAgICAgICAgIFRVSV9URVhURklFTERfQ0xFQU5FUixcbiAgICAgICAgICAgIFRVSV9URVhURklFTERfQ1VTVE9NX0NPTlRFTlQsXG4gICAgICAgICAgICBUVUlfVEVYVEZJRUxEX0lDT04sXG4gICAgICAgICAgICBUVUlfVEVYVEZJRUxEX0lDT05fTEVGVCxcbiAgICAgICAgICAgIFRVSV9URVhURklFTERfTEFCRUxfT1VUU0lERSxcbiAgICAgICAgICAgIFRVSV9URVhURklFTERfU0laRSxcbiAgICAgICAgICAgIFRVSV9URVhURklFTERfUFJFRklYLFxuICAgICAgICAgICAgVFVJX1RFWFRGSUVMRF9QT1NURklYLFxuICAgICAgICAgICAgVFVJX1RFWFRGSUVMRF9GSUxMRVIsXG4gICAgICAgIF0sXG4gICAgICAgIHVzZUZhY3Rvcnk6IChcbiAgICAgICAgICAgIGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgICAgICAgICBvcHRpb25zOiBUdWlUZXh0ZmllbGRPcHRpb25zLFxuICAgICAgICAgICAgbGVnYWN5QXBwZWFyYW5jZTogc3RyaW5nLFxuICAgICAgICAgICAgLi4uY29udHJvbGxlcnM6IFtcbiAgICAgICAgICAgICAgICBUdWlUZXh0ZmllbGRBcHBlYXJhbmNlRGlyZWN0aXZlLFxuICAgICAgICAgICAgICAgIFR1aVRleHRmaWVsZENsZWFuZXJEaXJlY3RpdmUsXG4gICAgICAgICAgICAgICAgVHVpVGV4dGZpZWxkQ3VzdG9tQ29udGVudERpcmVjdGl2ZSxcbiAgICAgICAgICAgICAgICBUdWlUZXh0ZmllbGRJY29uRGlyZWN0aXZlLFxuICAgICAgICAgICAgICAgIFR1aVRleHRmaWVsZEljb25MZWZ0RGlyZWN0aXZlLFxuICAgICAgICAgICAgICAgIFR1aVRleHRmaWVsZExhYmVsT3V0c2lkZURpcmVjdGl2ZSxcbiAgICAgICAgICAgICAgICBUdWlUZXh0ZmllbGRTaXplRGlyZWN0aXZlLFxuICAgICAgICAgICAgICAgIFR1aVRleHRmaWVsZFByZWZpeERpcmVjdGl2ZSxcbiAgICAgICAgICAgICAgICBUdWlUZXh0ZmllbGRQb3N0Zml4RGlyZWN0aXZlLFxuICAgICAgICAgICAgICAgIFR1aVRleHRmaWVsZEZpbGxlckRpcmVjdGl2ZSxcbiAgICAgICAgICAgIF1cbiAgICAgICAgKSA9PiB7XG4gICAgICAgICAgICBjb25zdCBjaGFuZ2UkID0gbWVyZ2UoXG4gICAgICAgICAgICAgICAgLi4uY29udHJvbGxlcnMubWFwKCh7Y2hhbmdlJH0pID0+IGNoYW5nZSQgfHwgTkVWRVIpLFxuICAgICAgICAgICAgKS5waXBlKHR1aVdhdGNoKGNkciksIHRha2VVbnRpbERlc3Ryb3llZCgpKTtcblxuICAgICAgICAgICAgY2hhbmdlJC5zdWJzY3JpYmUoKTtcblxuICAgICAgICAgICAgcmV0dXJuIG5ldyBUdWlUZXh0ZmllbGRDb250cm9sbGVyKFxuICAgICAgICAgICAgICAgIGNoYW5nZSQsXG4gICAgICAgICAgICAgICAgb3B0aW9ucyxcbiAgICAgICAgICAgICAgICBsZWdhY3lBcHBlYXJhbmNlLFxuICAgICAgICAgICAgICAgIC4uLmNvbnRyb2xsZXJzLFxuICAgICAgICAgICAgKTtcbiAgICAgICAgfSxcbiAgICB9LFxuXTtcbiJdfQ==
@@ -0,0 +1,31 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_CUSTOM_CONTENT = tuiCreateTokenFromFactory(() => new TuiTextfieldCustomContentDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldCustomContentDirective extends AbstractTuiController {
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldCustomContentDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
14
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldCustomContentDirective, selector: "[tuiTextfieldCustomContent]", inputs: { customContent: ["tuiTextfieldCustomContent", "customContent"] }, providers: [
15
+ tuiProvide(TUI_TEXTFIELD_CUSTOM_CONTENT, TuiTextfieldCustomContentDirective),
16
+ ], usesInheritance: true, ngImport: i0 }); }
17
+ }
18
+ export { TuiTextfieldCustomContentDirective };
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldCustomContentDirective, decorators: [{
20
+ type: Directive,
21
+ args: [{
22
+ selector: '[tuiTextfieldCustomContent]',
23
+ providers: [
24
+ tuiProvide(TUI_TEXTFIELD_CUSTOM_CONTENT, TuiTextfieldCustomContentDirective),
25
+ ],
26
+ }]
27
+ }], propDecorators: { customContent: [{
28
+ type: Input,
29
+ args: ['tuiTextfieldCustomContent']
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWN1c3RvbS1jb250ZW50LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2xlZ2FjeS9kaXJlY3RpdmVzL3RleHRmaWVsZC1jb250cm9sbGVyL3RleHRmaWVsZC1jdXN0b20tY29udGVudC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFDLHFCQUFxQixFQUFDLE1BQU0sdUJBQXVCLENBQUM7QUFDNUQsT0FBTyxFQUFDLHlCQUF5QixFQUFFLFVBQVUsRUFBQyxNQUFNLG1DQUFtQyxDQUFDOztBQUd4Rjs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLDRCQUE0QixHQUFHLHlCQUF5QixDQUNqRSxHQUFHLEVBQUUsQ0FBQyxJQUFJLGtDQUFrQyxFQUFFLENBQ2pELENBQUM7QUFFRjs7R0FFRztBQUNILE1BTWEsa0NBQW1DLFNBQVEscUJBQXFCOytHQUFoRSxrQ0FBa0M7bUdBQWxDLGtDQUFrQyxpSUFKaEM7WUFDUCxVQUFVLENBQUMsNEJBQTRCLEVBQUUsa0NBQWtDLENBQUM7U0FDL0U7O1NBRVEsa0NBQWtDOzRGQUFsQyxrQ0FBa0M7a0JBTjlDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDZCQUE2QjtvQkFDdkMsU0FBUyxFQUFFO3dCQUNQLFVBQVUsQ0FBQyw0QkFBNEIscUNBQXFDO3FCQUMvRTtpQkFDSjs4QkFHVSxhQUFhO3NCQURuQixLQUFLO3VCQUFDLDJCQUEyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VHVpQ29udHJvbGxlcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9jbGFzc2VzJztcbmltcG9ydCB7dHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeSwgdHVpUHJvdmlkZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9taXNjZWxsYW5lb3VzJztcbmltcG9ydCB0eXBlIHtQb2x5bW9ycGhldXNDb250ZW50fSBmcm9tICdAdGFpZ2EtdWkvcG9seW1vcnBoZXVzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX0NVU1RPTV9DT05URU5UID0gdHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeShcbiAgICAoKSA9PiBuZXcgVHVpVGV4dGZpZWxkQ3VzdG9tQ29udGVudERpcmVjdGl2ZSgpLFxuKTtcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVRleHRmaWVsZEN1c3RvbUNvbnRlbnRdJyxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAgdHVpUHJvdmlkZShUVUlfVEVYVEZJRUxEX0NVU1RPTV9DT05URU5ULCBUdWlUZXh0ZmllbGRDdXN0b21Db250ZW50RGlyZWN0aXZlKSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlUZXh0ZmllbGRDdXN0b21Db250ZW50RGlyZWN0aXZlIGV4dGVuZHMgQWJzdHJhY3RUdWlDb250cm9sbGVyIHtcbiAgICBASW5wdXQoJ3R1aVRleHRmaWVsZEN1c3RvbUNvbnRlbnQnKVxuICAgIHB1YmxpYyBjdXN0b21Db250ZW50OiBQb2x5bW9ycGhldXNDb250ZW50O1xufVxuIl19
@@ -0,0 +1,31 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_FILLER = tuiCreateTokenFromFactory(() => new TuiTextfieldFillerDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldFillerDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.filler = '';
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldFillerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldFillerDirective, selector: "[tuiTextfieldFiller]", inputs: { filler: ["tuiTextfieldFiller", "filler"] }, providers: [tuiProvide(TUI_TEXTFIELD_FILLER, TuiTextfieldFillerDirective)], usesInheritance: true, ngImport: i0 }); }
19
+ }
20
+ export { TuiTextfieldFillerDirective };
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldFillerDirective, decorators: [{
22
+ type: Directive,
23
+ args: [{
24
+ selector: '[tuiTextfieldFiller]',
25
+ providers: [tuiProvide(TUI_TEXTFIELD_FILLER, TuiTextfieldFillerDirective)],
26
+ }]
27
+ }], propDecorators: { filler: [{
28
+ type: Input,
29
+ args: ['tuiTextfieldFiller']
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWZpbGxlci5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90ZXh0ZmllbGQtZmlsbGVyLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUMvQyxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSx1QkFBdUIsQ0FBQztBQUM1RCxPQUFPLEVBQUMseUJBQXlCLEVBQUUsVUFBVSxFQUFDLE1BQU0sbUNBQW1DLENBQUM7O0FBRXhGOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sb0JBQW9CLEdBQUcseUJBQXlCLENBQ3pELEdBQUcsRUFBRSxDQUFDLElBQUksMkJBQTJCLEVBQUUsQ0FDMUMsQ0FBQztBQUVGOztHQUVHO0FBQ0gsTUFJYSwyQkFBNEIsU0FBUSxxQkFBcUI7SUFKdEU7O1FBTVcsV0FBTSxHQUFHLEVBQUUsQ0FBQztLQUN0QjsrR0FIWSwyQkFBMkI7bUdBQTNCLDJCQUEyQixxR0FGekIsQ0FBQyxVQUFVLENBQUMsb0JBQW9CLEVBQUUsMkJBQTJCLENBQUMsQ0FBQzs7U0FFakUsMkJBQTJCOzRGQUEzQiwyQkFBMkI7a0JBSnZDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsU0FBUyxFQUFFLENBQUMsVUFBVSxDQUFDLG9CQUFvQiw4QkFBOEIsQ0FBQztpQkFDN0U7OEJBR1UsTUFBTTtzQkFEWixLQUFLO3VCQUFDLG9CQUFvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VHVpQ29udHJvbGxlcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9jbGFzc2VzJztcbmltcG9ydCB7dHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeSwgdHVpUHJvdmlkZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9taXNjZWxsYW5lb3VzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX0ZJTExFUiA9IHR1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnkoXG4gICAgKCkgPT4gbmV3IFR1aVRleHRmaWVsZEZpbGxlckRpcmVjdGl2ZSgpLFxuKTtcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVRleHRmaWVsZEZpbGxlcl0nLFxuICAgIHByb3ZpZGVyczogW3R1aVByb3ZpZGUoVFVJX1RFWFRGSUVMRF9GSUxMRVIsIFR1aVRleHRmaWVsZEZpbGxlckRpcmVjdGl2ZSldLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlUZXh0ZmllbGRGaWxsZXJEaXJlY3RpdmUgZXh0ZW5kcyBBYnN0cmFjdFR1aUNvbnRyb2xsZXIge1xuICAgIEBJbnB1dCgndHVpVGV4dGZpZWxkRmlsbGVyJylcbiAgICBwdWJsaWMgZmlsbGVyID0gJyc7XG59XG4iXX0=
@@ -0,0 +1,27 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_ICON_LEFT = tuiCreateTokenFromFactory(() => new TuiTextfieldIconLeftDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldIconLeftDirective extends AbstractTuiController {
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldIconLeftDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
14
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldIconLeftDirective, selector: "[tuiTextfieldIconLeft]", inputs: { iconStart: ["tuiTextfieldIconLeft", "iconStart"] }, providers: [tuiProvide(TUI_TEXTFIELD_ICON_LEFT, TuiTextfieldIconLeftDirective)], usesInheritance: true, ngImport: i0 }); }
15
+ }
16
+ export { TuiTextfieldIconLeftDirective };
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldIconLeftDirective, decorators: [{
18
+ type: Directive,
19
+ args: [{
20
+ selector: '[tuiTextfieldIconLeft]',
21
+ providers: [tuiProvide(TUI_TEXTFIELD_ICON_LEFT, TuiTextfieldIconLeftDirective)],
22
+ }]
23
+ }], propDecorators: { iconStart: [{
24
+ type: Input,
25
+ args: ['tuiTextfieldIconLeft']
26
+ }] } });
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWljb24tbGVmdC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90ZXh0ZmllbGQtaWNvbi1sZWZ0LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUMvQyxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSx1QkFBdUIsQ0FBQztBQUU1RCxPQUFPLEVBQUMseUJBQXlCLEVBQUUsVUFBVSxFQUFDLE1BQU0sbUNBQW1DLENBQUM7O0FBSXhGOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sdUJBQXVCLEdBQUcseUJBQXlCLENBQzVELEdBQUcsRUFBRSxDQUFDLElBQUksNkJBQTZCLEVBQUUsQ0FDNUMsQ0FBQztBQUVGOztHQUVHO0FBQ0gsTUFJYSw2QkFBOEIsU0FBUSxxQkFBcUI7K0dBQTNELDZCQUE2QjttR0FBN0IsNkJBQTZCLCtHQUYzQixDQUFDLFVBQVUsQ0FBQyx1QkFBdUIsRUFBRSw2QkFBNkIsQ0FBQyxDQUFDOztTQUV0RSw2QkFBNkI7NEZBQTdCLDZCQUE2QjtrQkFKekMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsd0JBQXdCO29CQUNsQyxTQUFTLEVBQUUsQ0FBQyxVQUFVLENBQUMsdUJBQXVCLGdDQUFnQyxDQUFDO2lCQUNsRjs4QkFHVSxTQUFTO3NCQURmLEtBQUs7dUJBQUMsc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmUsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RUdWlDb250cm9sbGVyfSBmcm9tICdAdGFpZ2EtdWkvY2RrL2NsYXNzZXMnO1xuaW1wb3J0IHR5cGUge1R1aUNvbnRleHR9IGZyb20gJ0B0YWlnYS11aS9jZGsvdHlwZXMnO1xuaW1wb3J0IHt0dWlDcmVhdGVUb2tlbkZyb21GYWN0b3J5LCB0dWlQcm92aWRlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzL21pc2NlbGxhbmVvdXMnO1xuaW1wb3J0IHR5cGUge1R1aVNpemVMLCBUdWlTaXplU30gZnJvbSAnQHRhaWdhLXVpL2NvcmUvdHlwZXMnO1xuaW1wb3J0IHR5cGUge1BvbHltb3JwaGV1c0NvbnRlbnR9IGZyb20gJ0B0YWlnYS11aS9wb2x5bW9ycGhldXMnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqL1xuZXhwb3J0IGNvbnN0IFRVSV9URVhURklFTERfSUNPTl9MRUZUID0gdHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeShcbiAgICAoKSA9PiBuZXcgVHVpVGV4dGZpZWxkSWNvbkxlZnREaXJlY3RpdmUoKSxcbik7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlUZXh0ZmllbGRJY29uTGVmdF0nLFxuICAgIHByb3ZpZGVyczogW3R1aVByb3ZpZGUoVFVJX1RFWFRGSUVMRF9JQ09OX0xFRlQsIFR1aVRleHRmaWVsZEljb25MZWZ0RGlyZWN0aXZlKV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVRleHRmaWVsZEljb25MZWZ0RGlyZWN0aXZlIGV4dGVuZHMgQWJzdHJhY3RUdWlDb250cm9sbGVyIHtcbiAgICBASW5wdXQoJ3R1aVRleHRmaWVsZEljb25MZWZ0JylcbiAgICBwdWJsaWMgaWNvblN0YXJ0OiBQb2x5bW9ycGhldXNDb250ZW50PFR1aUNvbnRleHQ8VHVpU2l6ZUwgfCBUdWlTaXplUz4+O1xufVxuIl19
@@ -0,0 +1,27 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_ICON = tuiCreateTokenFromFactory(() => new TuiTextfieldIconDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldIconDirective extends AbstractTuiController {
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldIconDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
14
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldIconDirective, selector: "[tuiTextfieldIcon]", inputs: { icon: ["tuiTextfieldIcon", "icon"] }, providers: [tuiProvide(TUI_TEXTFIELD_ICON, TuiTextfieldIconDirective)], usesInheritance: true, ngImport: i0 }); }
15
+ }
16
+ export { TuiTextfieldIconDirective };
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldIconDirective, decorators: [{
18
+ type: Directive,
19
+ args: [{
20
+ selector: '[tuiTextfieldIcon]',
21
+ providers: [tuiProvide(TUI_TEXTFIELD_ICON, TuiTextfieldIconDirective)],
22
+ }]
23
+ }], propDecorators: { icon: [{
24
+ type: Input,
25
+ args: ['tuiTextfieldIcon']
26
+ }] } });
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWljb24uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLWljb24uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBRTVELE9BQU8sRUFBQyx5QkFBeUIsRUFBRSxVQUFVLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFJeEY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBRyx5QkFBeUIsQ0FDdkQsR0FBRyxFQUFFLENBQUMsSUFBSSx5QkFBeUIsRUFBRSxDQUN4QyxDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQUlhLHlCQUEwQixTQUFRLHFCQUFxQjsrR0FBdkQseUJBQXlCO21HQUF6Qix5QkFBeUIsNkZBRnZCLENBQUMsVUFBVSxDQUFDLGtCQUFrQixFQUFFLHlCQUF5QixDQUFDLENBQUM7O1NBRTdELHlCQUF5Qjs0RkFBekIseUJBQXlCO2tCQUpyQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxvQkFBb0I7b0JBQzlCLFNBQVMsRUFBRSxDQUFDLFVBQVUsQ0FBQyxrQkFBa0IsNEJBQTRCLENBQUM7aUJBQ3pFOzhCQUdVLElBQUk7c0JBRFYsS0FBSzt1QkFBQyxrQkFBa0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFR1aUNvbnRyb2xsZXJ9IGZyb20gJ0B0YWlnYS11aS9jZGsvY2xhc3Nlcyc7XG5pbXBvcnQgdHlwZSB7VHVpQ29udGV4dH0gZnJvbSAnQHRhaWdhLXVpL2Nkay90eXBlcyc7XG5pbXBvcnQge3R1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnksIHR1aVByb3ZpZGV9IGZyb20gJ0B0YWlnYS11aS9jZGsvdXRpbHMvbWlzY2VsbGFuZW91cyc7XG5pbXBvcnQgdHlwZSB7VHVpU2l6ZUwsIFR1aVNpemVTfSBmcm9tICdAdGFpZ2EtdWkvY29yZS90eXBlcyc7XG5pbXBvcnQgdHlwZSB7UG9seW1vcnBoZXVzQ29udGVudH0gZnJvbSAnQHRhaWdhLXVpL3BvbHltb3JwaGV1cyc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5leHBvcnQgY29uc3QgVFVJX1RFWFRGSUVMRF9JQ09OID0gdHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeShcbiAgICAoKSA9PiBuZXcgVHVpVGV4dGZpZWxkSWNvbkRpcmVjdGl2ZSgpLFxuKTtcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVRleHRmaWVsZEljb25dJyxcbiAgICBwcm92aWRlcnM6IFt0dWlQcm92aWRlKFRVSV9URVhURklFTERfSUNPTiwgVHVpVGV4dGZpZWxkSWNvbkRpcmVjdGl2ZSldLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlUZXh0ZmllbGRJY29uRGlyZWN0aXZlIGV4dGVuZHMgQWJzdHJhY3RUdWlDb250cm9sbGVyIHtcbiAgICBASW5wdXQoJ3R1aVRleHRmaWVsZEljb24nKVxuICAgIHB1YmxpYyBpY29uOiBQb2x5bW9ycGhldXNDb250ZW50PFR1aUNvbnRleHQ8VHVpU2l6ZUwgfCBUdWlTaXplUz4+O1xufVxuIl19
@@ -0,0 +1,35 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_LABEL_OUTSIDE = tuiCreateTokenFromFactory(() => new TuiTextfieldLabelOutsideDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldLabelOutsideDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.labelOutside = false;
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldLabelOutsideDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldLabelOutsideDirective, selector: "[tuiTextfieldLabelOutside]", inputs: { labelOutside: ["tuiTextfieldLabelOutside", "labelOutside"] }, providers: [
19
+ tuiProvide(TUI_TEXTFIELD_LABEL_OUTSIDE, TuiTextfieldLabelOutsideDirective),
20
+ ], usesInheritance: true, ngImport: i0 }); }
21
+ }
22
+ export { TuiTextfieldLabelOutsideDirective };
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldLabelOutsideDirective, decorators: [{
24
+ type: Directive,
25
+ args: [{
26
+ selector: '[tuiTextfieldLabelOutside]',
27
+ providers: [
28
+ tuiProvide(TUI_TEXTFIELD_LABEL_OUTSIDE, TuiTextfieldLabelOutsideDirective),
29
+ ],
30
+ }]
31
+ }], propDecorators: { labelOutside: [{
32
+ type: Input,
33
+ args: ['tuiTextfieldLabelOutside']
34
+ }] } });
35
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLWxhYmVsLW91dHNpZGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLWxhYmVsLW91dHNpZGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBQzVELE9BQU8sRUFBQyx5QkFBeUIsRUFBRSxVQUFVLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFFeEY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSwyQkFBMkIsR0FBRyx5QkFBeUIsQ0FDaEUsR0FBRyxFQUFFLENBQUMsSUFBSSxpQ0FBaUMsRUFBRSxDQUNoRCxDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQU1hLGlDQUFrQyxTQUFRLHFCQUFxQjtJQU41RTs7UUFRVyxpQkFBWSxHQUFHLEtBQUssQ0FBQztLQUMvQjsrR0FIWSxpQ0FBaUM7bUdBQWpDLGlDQUFpQyw2SEFKL0I7WUFDUCxVQUFVLENBQUMsMkJBQTJCLEVBQUUsaUNBQWlDLENBQUM7U0FDN0U7O1NBRVEsaUNBQWlDOzRGQUFqQyxpQ0FBaUM7a0JBTjdDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDRCQUE0QjtvQkFDdEMsU0FBUyxFQUFFO3dCQUNQLFVBQVUsQ0FBQywyQkFBMkIsb0NBQW9DO3FCQUM3RTtpQkFDSjs4QkFHVSxZQUFZO3NCQURsQixLQUFLO3VCQUFDLDBCQUEwQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VHVpQ29udHJvbGxlcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9jbGFzc2VzJztcbmltcG9ydCB7dHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeSwgdHVpUHJvdmlkZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9taXNjZWxsYW5lb3VzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX0xBQkVMX09VVFNJREUgPSB0dWlDcmVhdGVUb2tlbkZyb21GYWN0b3J5KFxuICAgICgpID0+IG5ldyBUdWlUZXh0ZmllbGRMYWJlbE91dHNpZGVEaXJlY3RpdmUoKSxcbik7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlUZXh0ZmllbGRMYWJlbE91dHNpZGVdJyxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAgdHVpUHJvdmlkZShUVUlfVEVYVEZJRUxEX0xBQkVMX09VVFNJREUsIFR1aVRleHRmaWVsZExhYmVsT3V0c2lkZURpcmVjdGl2ZSksXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVGV4dGZpZWxkTGFiZWxPdXRzaWRlRGlyZWN0aXZlIGV4dGVuZHMgQWJzdHJhY3RUdWlDb250cm9sbGVyIHtcbiAgICBASW5wdXQoJ3R1aVRleHRmaWVsZExhYmVsT3V0c2lkZScpXG4gICAgcHVibGljIGxhYmVsT3V0c2lkZSA9IGZhbHNlO1xufVxuIl19
@@ -0,0 +1,31 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_POSTFIX = tuiCreateTokenFromFactory(() => new TuiTextfieldPostfixDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldPostfixDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.postfix = '';
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldPostfixDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldPostfixDirective, selector: "[tuiTextfieldPostfix]", inputs: { postfix: ["tuiTextfieldPostfix", "postfix"] }, providers: [tuiProvide(TUI_TEXTFIELD_POSTFIX, TuiTextfieldPostfixDirective)], usesInheritance: true, ngImport: i0 }); }
19
+ }
20
+ export { TuiTextfieldPostfixDirective };
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldPostfixDirective, decorators: [{
22
+ type: Directive,
23
+ args: [{
24
+ selector: '[tuiTextfieldPostfix]',
25
+ providers: [tuiProvide(TUI_TEXTFIELD_POSTFIX, TuiTextfieldPostfixDirective)],
26
+ }]
27
+ }], propDecorators: { postfix: [{
28
+ type: Input,
29
+ args: ['tuiTextfieldPostfix']
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLXBvc3RmaXguZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLXBvc3RmaXguZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBQzVELE9BQU8sRUFBQyx5QkFBeUIsRUFBRSxVQUFVLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFFeEY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyx5QkFBeUIsQ0FDMUQsR0FBRyxFQUFFLENBQUMsSUFBSSw0QkFBNEIsRUFBRSxDQUMzQyxDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQUlhLDRCQUE2QixTQUFRLHFCQUFxQjtJQUp2RTs7UUFNVyxZQUFPLEdBQUcsRUFBRSxDQUFDO0tBQ3ZCOytHQUhZLDRCQUE0QjttR0FBNUIsNEJBQTRCLHlHQUYxQixDQUFDLFVBQVUsQ0FBQyxxQkFBcUIsRUFBRSw0QkFBNEIsQ0FBQyxDQUFDOztTQUVuRSw0QkFBNEI7NEZBQTVCLDRCQUE0QjtrQkFKeEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsdUJBQXVCO29CQUNqQyxTQUFTLEVBQUUsQ0FBQyxVQUFVLENBQUMscUJBQXFCLCtCQUErQixDQUFDO2lCQUMvRTs4QkFHVSxPQUFPO3NCQURiLEtBQUs7dUJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmUsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RUdWlDb250cm9sbGVyfSBmcm9tICdAdGFpZ2EtdWkvY2RrL2NsYXNzZXMnO1xuaW1wb3J0IHt0dWlDcmVhdGVUb2tlbkZyb21GYWN0b3J5LCB0dWlQcm92aWRlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzL21pc2NlbGxhbmVvdXMnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqL1xuZXhwb3J0IGNvbnN0IFRVSV9URVhURklFTERfUE9TVEZJWCA9IHR1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnkoXG4gICAgKCkgPT4gbmV3IFR1aVRleHRmaWVsZFBvc3RmaXhEaXJlY3RpdmUoKSxcbik7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlUZXh0ZmllbGRQb3N0Zml4XScsXG4gICAgcHJvdmlkZXJzOiBbdHVpUHJvdmlkZShUVUlfVEVYVEZJRUxEX1BPU1RGSVgsIFR1aVRleHRmaWVsZFBvc3RmaXhEaXJlY3RpdmUpXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVGV4dGZpZWxkUG9zdGZpeERpcmVjdGl2ZSBleHRlbmRzIEFic3RyYWN0VHVpQ29udHJvbGxlciB7XG4gICAgQElucHV0KCd0dWlUZXh0ZmllbGRQb3N0Zml4JylcbiAgICBwdWJsaWMgcG9zdGZpeCA9ICcnO1xufVxuIl19
@@ -0,0 +1,31 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_PREFIX = tuiCreateTokenFromFactory(() => new TuiTextfieldPrefixDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldPrefixDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.prefix = '';
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldPrefixDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldPrefixDirective, selector: "[tuiTextfieldPrefix]", inputs: { prefix: ["tuiTextfieldPrefix", "prefix"] }, providers: [tuiProvide(TUI_TEXTFIELD_PREFIX, TuiTextfieldPrefixDirective)], usesInheritance: true, ngImport: i0 }); }
19
+ }
20
+ export { TuiTextfieldPrefixDirective };
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldPrefixDirective, decorators: [{
22
+ type: Directive,
23
+ args: [{
24
+ selector: '[tuiTextfieldPrefix]',
25
+ providers: [tuiProvide(TUI_TEXTFIELD_PREFIX, TuiTextfieldPrefixDirective)],
26
+ }]
27
+ }], propDecorators: { prefix: [{
28
+ type: Input,
29
+ args: ['tuiTextfieldPrefix']
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLXByZWZpeC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90ZXh0ZmllbGQtcHJlZml4LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUMvQyxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSx1QkFBdUIsQ0FBQztBQUM1RCxPQUFPLEVBQUMseUJBQXlCLEVBQUUsVUFBVSxFQUFDLE1BQU0sbUNBQW1DLENBQUM7O0FBRXhGOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sb0JBQW9CLEdBQUcseUJBQXlCLENBQ3pELEdBQUcsRUFBRSxDQUFDLElBQUksMkJBQTJCLEVBQUUsQ0FDMUMsQ0FBQztBQUVGOztHQUVHO0FBQ0gsTUFJYSwyQkFBNEIsU0FBUSxxQkFBcUI7SUFKdEU7O1FBTVcsV0FBTSxHQUFHLEVBQUUsQ0FBQztLQUN0QjsrR0FIWSwyQkFBMkI7bUdBQTNCLDJCQUEyQixxR0FGekIsQ0FBQyxVQUFVLENBQUMsb0JBQW9CLEVBQUUsMkJBQTJCLENBQUMsQ0FBQzs7U0FFakUsMkJBQTJCOzRGQUEzQiwyQkFBMkI7a0JBSnZDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsU0FBUyxFQUFFLENBQUMsVUFBVSxDQUFDLG9CQUFvQiw4QkFBOEIsQ0FBQztpQkFDN0U7OEJBR1UsTUFBTTtzQkFEWixLQUFLO3VCQUFDLG9CQUFvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VHVpQ29udHJvbGxlcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9jbGFzc2VzJztcbmltcG9ydCB7dHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeSwgdHVpUHJvdmlkZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9taXNjZWxsYW5lb3VzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX1BSRUZJWCA9IHR1aUNyZWF0ZVRva2VuRnJvbUZhY3RvcnkoXG4gICAgKCkgPT4gbmV3IFR1aVRleHRmaWVsZFByZWZpeERpcmVjdGl2ZSgpLFxuKTtcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVRleHRmaWVsZFByZWZpeF0nLFxuICAgIHByb3ZpZGVyczogW3R1aVByb3ZpZGUoVFVJX1RFWFRGSUVMRF9QUkVGSVgsIFR1aVRleHRmaWVsZFByZWZpeERpcmVjdGl2ZSldLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlUZXh0ZmllbGRQcmVmaXhEaXJlY3RpdmUgZXh0ZW5kcyBBYnN0cmFjdFR1aUNvbnRyb2xsZXIge1xuICAgIEBJbnB1dCgndHVpVGV4dGZpZWxkUHJlZml4JylcbiAgICBwdWJsaWMgcHJlZml4ID0gJyc7XG59XG4iXX0=
@@ -0,0 +1,31 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { AbstractTuiController } from '@taiga-ui/cdk/classes';
3
+ import { tuiCreateTokenFromFactory, tuiProvide } from '@taiga-ui/cdk/utils/miscellaneous';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ export const TUI_TEXTFIELD_SIZE = tuiCreateTokenFromFactory(() => new TuiTextfieldSizeDirective());
9
+ /**
10
+ * @deprecated: drop in v5.0
11
+ */
12
+ class TuiTextfieldSizeDirective extends AbstractTuiController {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.size = 'l';
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldSizeDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
18
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextfieldSizeDirective, selector: "[tuiTextfieldSize]", inputs: { size: ["tuiTextfieldSize", "size"] }, providers: [tuiProvide(TUI_TEXTFIELD_SIZE, TuiTextfieldSizeDirective)], usesInheritance: true, ngImport: i0 }); }
19
+ }
20
+ export { TuiTextfieldSizeDirective };
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextfieldSizeDirective, decorators: [{
22
+ type: Directive,
23
+ args: [{
24
+ selector: '[tuiTextfieldSize]',
25
+ providers: [tuiProvide(TUI_TEXTFIELD_SIZE, TuiTextfieldSizeDirective)],
26
+ }]
27
+ }], propDecorators: { size: [{
28
+ type: Input,
29
+ args: ['tuiTextfieldSize']
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLXNpemUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXIvdGV4dGZpZWxkLXNpemUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBQzVELE9BQU8sRUFBQyx5QkFBeUIsRUFBRSxVQUFVLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFHeEY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBRyx5QkFBeUIsQ0FDdkQsR0FBRyxFQUFFLENBQUMsSUFBSSx5QkFBeUIsRUFBRSxDQUN4QyxDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQUlhLHlCQUEwQixTQUFRLHFCQUFxQjtJQUpwRTs7UUFNVyxTQUFJLEdBQXdCLEdBQUcsQ0FBQztLQUMxQzsrR0FIWSx5QkFBeUI7bUdBQXpCLHlCQUF5Qiw2RkFGdkIsQ0FBQyxVQUFVLENBQUMsa0JBQWtCLEVBQUUseUJBQXlCLENBQUMsQ0FBQzs7U0FFN0QseUJBQXlCOzRGQUF6Qix5QkFBeUI7a0JBSnJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLG9CQUFvQjtvQkFDOUIsU0FBUyxFQUFFLENBQUMsVUFBVSxDQUFDLGtCQUFrQiw0QkFBNEIsQ0FBQztpQkFDekU7OEJBR1UsSUFBSTtzQkFEVixLQUFLO3VCQUFDLGtCQUFrQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VHVpQ29udHJvbGxlcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9jbGFzc2VzJztcbmltcG9ydCB7dHVpQ3JlYXRlVG9rZW5Gcm9tRmFjdG9yeSwgdHVpUHJvdmlkZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9taXNjZWxsYW5lb3VzJztcbmltcG9ydCB0eXBlIHtUdWlTaXplTCwgVHVpU2l6ZVN9IGZyb20gJ0B0YWlnYS11aS9jb3JlL3R5cGVzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX1NJWkUgPSB0dWlDcmVhdGVUb2tlbkZyb21GYWN0b3J5KFxuICAgICgpID0+IG5ldyBUdWlUZXh0ZmllbGRTaXplRGlyZWN0aXZlKCksXG4pO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdHVpVGV4dGZpZWxkU2l6ZV0nLFxuICAgIHByb3ZpZGVyczogW3R1aVByb3ZpZGUoVFVJX1RFWFRGSUVMRF9TSVpFLCBUdWlUZXh0ZmllbGRTaXplRGlyZWN0aXZlKV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVRleHRmaWVsZFNpemVEaXJlY3RpdmUgZXh0ZW5kcyBBYnN0cmFjdFR1aUNvbnRyb2xsZXIge1xuICAgIEBJbnB1dCgndHVpVGV4dGZpZWxkU2l6ZScpXG4gICAgcHVibGljIHNpemU6IFR1aVNpemVMIHwgVHVpU2l6ZVMgPSAnbCc7XG59XG4iXX0=
@@ -0,0 +1,48 @@
1
+ export class TuiTextfieldController {
2
+ constructor(change$, options, legacyAppearance, appearanceDirective, cleanerDirective, customContentDirective, iconDirective, iconLeftDirective, labelOutsideDirective, sizeDirective, prefixDirective, postfixDirective, fillerDirective) {
3
+ this.change$ = change$;
4
+ this.options = options;
5
+ this.legacyAppearance = legacyAppearance;
6
+ this.appearanceDirective = appearanceDirective;
7
+ this.cleanerDirective = cleanerDirective;
8
+ this.customContentDirective = customContentDirective;
9
+ this.iconDirective = iconDirective;
10
+ this.iconLeftDirective = iconLeftDirective;
11
+ this.labelOutsideDirective = labelOutsideDirective;
12
+ this.sizeDirective = sizeDirective;
13
+ this.prefixDirective = prefixDirective;
14
+ this.postfixDirective = postfixDirective;
15
+ this.fillerDirective = fillerDirective;
16
+ }
17
+ get appearance() {
18
+ return this.appearanceDirective.appearance || this.legacyAppearance;
19
+ }
20
+ get cleaner() {
21
+ return this.cleanerDirective.cleaner;
22
+ }
23
+ get customContent() {
24
+ return this.customContentDirective.customContent || '';
25
+ }
26
+ get icon() {
27
+ return this.iconDirective.icon;
28
+ }
29
+ get iconStart() {
30
+ return this.iconLeftDirective.iconStart;
31
+ }
32
+ get labelOutside() {
33
+ return this.labelOutsideDirective.labelOutside;
34
+ }
35
+ get size() {
36
+ return this.sizeDirective.size;
37
+ }
38
+ get prefix() {
39
+ return this.prefixDirective.prefix;
40
+ }
41
+ get postfix() {
42
+ return this.postfixDirective.postfix;
43
+ }
44
+ get filler() {
45
+ return this.fillerDirective.filler;
46
+ }
47
+ }
48
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLmNvbnRyb2xsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90ZXh0ZmllbGQuY29udHJvbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFpQkEsTUFBTSxPQUFPLHNCQUFzQjtJQUMvQixZQUNvQixPQUF5QixFQUN6QixPQUE0QixFQUMzQixnQkFBd0IsRUFDeEIsbUJBQW9ELEVBQ3BELGdCQUE4QyxFQUM5QyxzQkFBMEQsRUFDMUQsYUFBd0MsRUFDeEMsaUJBQWdELEVBQ2hELHFCQUF3RCxFQUN4RCxhQUF3QyxFQUN4QyxlQUE0QyxFQUM1QyxnQkFBOEMsRUFDOUMsZUFBNEM7UUFaN0MsWUFBTyxHQUFQLE9BQU8sQ0FBa0I7UUFDekIsWUFBTyxHQUFQLE9BQU8sQ0FBcUI7UUFDM0IscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFRO1FBQ3hCLHdCQUFtQixHQUFuQixtQkFBbUIsQ0FBaUM7UUFDcEQscUJBQWdCLEdBQWhCLGdCQUFnQixDQUE4QjtRQUM5QywyQkFBc0IsR0FBdEIsc0JBQXNCLENBQW9DO1FBQzFELGtCQUFhLEdBQWIsYUFBYSxDQUEyQjtRQUN4QyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQStCO1FBQ2hELDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBbUM7UUFDeEQsa0JBQWEsR0FBYixhQUFhLENBQTJCO1FBQ3hDLG9CQUFlLEdBQWYsZUFBZSxDQUE2QjtRQUM1QyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQThCO1FBQzlDLG9CQUFlLEdBQWYsZUFBZSxDQUE2QjtJQUM5RCxDQUFDO0lBRUosSUFBVyxVQUFVO1FBQ2pCLE9BQU8sSUFBSSxDQUFDLG1CQUFtQixDQUFDLFVBQVUsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLENBQUM7SUFDeEUsQ0FBQztJQUVELElBQVcsT0FBTztRQUNkLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQztJQUN6QyxDQUFDO0lBRUQsSUFBVyxhQUFhO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLHNCQUFzQixDQUFDLGFBQWEsSUFBSSxFQUFFLENBQUM7SUFDM0QsQ0FBQztJQUVELElBQVcsSUFBSTtRQUNYLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUM7SUFDbkMsQ0FBQztJQUVELElBQVcsU0FBUztRQUNoQixPQUFPLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxTQUFTLENBQUM7SUFDNUMsQ0FBQztJQUVELElBQVcsWUFBWTtRQUNuQixPQUFPLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxZQUFZLENBQUM7SUFDbkQsQ0FBQztJQUVELElBQVcsSUFBSTtRQUNYLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUM7SUFDbkMsQ0FBQztJQUVELElBQVcsTUFBTTtRQUNiLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUFNLENBQUM7SUFDdkMsQ0FBQztJQUVELElBQVcsT0FBTztRQUNkLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQztJQUN6QyxDQUFDO0lBRUQsSUFBVyxNQUFNO1FBQ2IsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQztJQUN2QyxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7VHVpQ29udGV4dH0gZnJvbSAnQHRhaWdhLXVpL2Nkay90eXBlcyc7XG5pbXBvcnQgdHlwZSB7VHVpU2l6ZUwsIFR1aVNpemVTfSBmcm9tICdAdGFpZ2EtdWkvY29yZS90eXBlcyc7XG5pbXBvcnQgdHlwZSB7UG9seW1vcnBoZXVzQ29udGVudH0gZnJvbSAnQHRhaWdhLXVpL3BvbHltb3JwaGV1cyc7XG5pbXBvcnQgdHlwZSB7T2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRPcHRpb25zfSBmcm9tICcuL3RleHRmaWVsZC5vcHRpb25zJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRBcHBlYXJhbmNlRGlyZWN0aXZlfSBmcm9tICcuL3RleHRmaWVsZC1hcHBlYXJhbmNlLmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkQ2xlYW5lckRpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtY2xlYW5lci5kaXJlY3RpdmUnO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZEN1c3RvbUNvbnRlbnREaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWN1c3RvbS1jb250ZW50LmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkRmlsbGVyRGlyZWN0aXZlfSBmcm9tICcuL3RleHRmaWVsZC1maWxsZXIuZGlyZWN0aXZlJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRJY29uRGlyZWN0aXZlfSBmcm9tICcuL3RleHRmaWVsZC1pY29uLmRpcmVjdGl2ZSc7XG5pbXBvcnQgdHlwZSB7VHVpVGV4dGZpZWxkSWNvbkxlZnREaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLWljb24tbGVmdC5kaXJlY3RpdmUnO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZExhYmVsT3V0c2lkZURpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0ZmllbGQtbGFiZWwtb3V0c2lkZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZFBvc3RmaXhEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLXBvc3RmaXguZGlyZWN0aXZlJztcbmltcG9ydCB0eXBlIHtUdWlUZXh0ZmllbGRQcmVmaXhEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLXByZWZpeC5kaXJlY3RpdmUnO1xuaW1wb3J0IHR5cGUge1R1aVRleHRmaWVsZFNpemVEaXJlY3RpdmV9IGZyb20gJy4vdGV4dGZpZWxkLXNpemUuZGlyZWN0aXZlJztcblxuZXhwb3J0IGNsYXNzIFR1aVRleHRmaWVsZENvbnRyb2xsZXIge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwdWJsaWMgcmVhZG9ubHkgY2hhbmdlJDogT2JzZXJ2YWJsZTx2b2lkPixcbiAgICAgICAgcHVibGljIHJlYWRvbmx5IG9wdGlvbnM6IFR1aVRleHRmaWVsZE9wdGlvbnMsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgbGVnYWN5QXBwZWFyYW5jZTogc3RyaW5nLFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IGFwcGVhcmFuY2VEaXJlY3RpdmU6IFR1aVRleHRmaWVsZEFwcGVhcmFuY2VEaXJlY3RpdmUsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgY2xlYW5lckRpcmVjdGl2ZTogVHVpVGV4dGZpZWxkQ2xlYW5lckRpcmVjdGl2ZSxcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBjdXN0b21Db250ZW50RGlyZWN0aXZlOiBUdWlUZXh0ZmllbGRDdXN0b21Db250ZW50RGlyZWN0aXZlLFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IGljb25EaXJlY3RpdmU6IFR1aVRleHRmaWVsZEljb25EaXJlY3RpdmUsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgaWNvbkxlZnREaXJlY3RpdmU6IFR1aVRleHRmaWVsZEljb25MZWZ0RGlyZWN0aXZlLFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IGxhYmVsT3V0c2lkZURpcmVjdGl2ZTogVHVpVGV4dGZpZWxkTGFiZWxPdXRzaWRlRGlyZWN0aXZlLFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IHNpemVEaXJlY3RpdmU6IFR1aVRleHRmaWVsZFNpemVEaXJlY3RpdmUsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgcHJlZml4RGlyZWN0aXZlOiBUdWlUZXh0ZmllbGRQcmVmaXhEaXJlY3RpdmUsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgcG9zdGZpeERpcmVjdGl2ZTogVHVpVGV4dGZpZWxkUG9zdGZpeERpcmVjdGl2ZSxcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBmaWxsZXJEaXJlY3RpdmU6IFR1aVRleHRmaWVsZEZpbGxlckRpcmVjdGl2ZSxcbiAgICApIHt9XG5cbiAgICBwdWJsaWMgZ2V0IGFwcGVhcmFuY2UoKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuYXBwZWFyYW5jZURpcmVjdGl2ZS5hcHBlYXJhbmNlIHx8IHRoaXMubGVnYWN5QXBwZWFyYW5jZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGNsZWFuZXIoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLmNsZWFuZXJEaXJlY3RpdmUuY2xlYW5lcjtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGN1c3RvbUNvbnRlbnQoKTogUG9seW1vcnBoZXVzQ29udGVudCB7XG4gICAgICAgIHJldHVybiB0aGlzLmN1c3RvbUNvbnRlbnREaXJlY3RpdmUuY3VzdG9tQ29udGVudCB8fCAnJztcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGljb24oKTogUG9seW1vcnBoZXVzQ29udGVudDxUdWlDb250ZXh0PFR1aVNpemVMIHwgVHVpU2l6ZVM+PiB7XG4gICAgICAgIHJldHVybiB0aGlzLmljb25EaXJlY3RpdmUuaWNvbjtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGljb25TdGFydCgpOiBQb2x5bW9ycGhldXNDb250ZW50PFR1aUNvbnRleHQ8VHVpU2l6ZUwgfCBUdWlTaXplUz4+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuaWNvbkxlZnREaXJlY3RpdmUuaWNvblN0YXJ0O1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgbGFiZWxPdXRzaWRlKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5sYWJlbE91dHNpZGVEaXJlY3RpdmUubGFiZWxPdXRzaWRlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgc2l6ZSgpOiBUdWlTaXplTCB8IFR1aVNpemVTIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuc2l6ZURpcmVjdGl2ZS5zaXplO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgcHJlZml4KCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLnByZWZpeERpcmVjdGl2ZS5wcmVmaXg7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBwb3N0Zml4KCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLnBvc3RmaXhEaXJlY3RpdmUucG9zdGZpeDtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGZpbGxlcigpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy5maWxsZXJEaXJlY3RpdmUuZmlsbGVyO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,21 @@
1
+ import { tuiCreateToken, tuiProvideOptions } from '@taiga-ui/cdk/utils/miscellaneous';
2
+ /**
3
+ * @deprecated: drop in v5.0
4
+ * Default values for primitive textfield options
5
+ */
6
+ export const TUI_TEXTFIELD_DEFAULT_OPTIONS = {
7
+ iconCleaner: '@tui.x',
8
+ hintOnDisabled: false,
9
+ };
10
+ /**
11
+ * @deprecated: drop in v5.0
12
+ * Default parameters for textfield
13
+ */
14
+ export const TUI_TEXTFIELD_OPTIONS = tuiCreateToken(TUI_TEXTFIELD_DEFAULT_OPTIONS);
15
+ /**
16
+ * @deprecated: drop in v5.0
17
+ */
18
+ export function tuiTextfieldOptionsProvider(options) {
19
+ return tuiProvideOptions(TUI_TEXTFIELD_OPTIONS, options, TUI_TEXTFIELD_DEFAULT_OPTIONS);
20
+ }
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGZpZWxkLm9wdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90ZXh0ZmllbGQub3B0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxPQUFPLEVBQUMsY0FBYyxFQUFFLGlCQUFpQixFQUFDLE1BQU0sbUNBQW1DLENBQUM7QUFZcEY7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sNkJBQTZCLEdBQXdCO0lBQzlELFdBQVcsRUFBRSxRQUFRO0lBQ3JCLGNBQWMsRUFBRSxLQUFLO0NBQ3hCLENBQUM7QUFFRjs7O0dBR0c7QUFDSCxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyxjQUFjLENBQUMsNkJBQTZCLENBQUMsQ0FBQztBQUVuRjs7R0FFRztBQUNILE1BQU0sVUFBVSwyQkFBMkIsQ0FDdkMsT0FBcUM7SUFFckMsT0FBTyxpQkFBaUIsQ0FDcEIscUJBQXFCLEVBQ3JCLE9BQU8sRUFDUCw2QkFBNkIsQ0FDaEMsQ0FBQztBQUNOLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7UHJvdmlkZXJ9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHR5cGUge1R1aUNvbnRleHR9IGZyb20gJ0B0YWlnYS11aS9jZGsvdHlwZXMnO1xuaW1wb3J0IHt0dWlDcmVhdGVUb2tlbiwgdHVpUHJvdmlkZU9wdGlvbnN9IGZyb20gJ0B0YWlnYS11aS9jZGsvdXRpbHMvbWlzY2VsbGFuZW91cyc7XG5pbXBvcnQgdHlwZSB7VHVpU2l6ZUwsIFR1aVNpemVTfSBmcm9tICdAdGFpZ2EtdWkvY29yZS90eXBlcyc7XG5pbXBvcnQgdHlwZSB7UG9seW1vcnBoZXVzQ29udGVudH0gZnJvbSAnQHRhaWdhLXVpL3BvbHltb3JwaGV1cyc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5leHBvcnQgaW50ZXJmYWNlIFR1aVRleHRmaWVsZE9wdGlvbnMge1xuICAgIHJlYWRvbmx5IGhpbnRPbkRpc2FibGVkOiBib29sZWFuO1xuICAgIHJlYWRvbmx5IGljb25DbGVhbmVyOiBQb2x5bW9ycGhldXNDb250ZW50PFR1aUNvbnRleHQ8VHVpU2l6ZUwgfCBUdWlTaXplUz4+O1xufVxuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqIERlZmF1bHQgdmFsdWVzIGZvciBwcmltaXRpdmUgdGV4dGZpZWxkIG9wdGlvbnNcbiAqL1xuZXhwb3J0IGNvbnN0IFRVSV9URVhURklFTERfREVGQVVMVF9PUFRJT05TOiBUdWlUZXh0ZmllbGRPcHRpb25zID0ge1xuICAgIGljb25DbGVhbmVyOiAnQHR1aS54JyxcbiAgICBoaW50T25EaXNhYmxlZDogZmFsc2UsXG59O1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqIERlZmF1bHQgcGFyYW1ldGVycyBmb3IgdGV4dGZpZWxkXG4gKi9cbmV4cG9ydCBjb25zdCBUVUlfVEVYVEZJRUxEX09QVElPTlMgPSB0dWlDcmVhdGVUb2tlbihUVUlfVEVYVEZJRUxEX0RFRkFVTFRfT1BUSU9OUyk7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5leHBvcnQgZnVuY3Rpb24gdHVpVGV4dGZpZWxkT3B0aW9uc1Byb3ZpZGVyKFxuICAgIG9wdGlvbnM6IFBhcnRpYWw8VHVpVGV4dGZpZWxkT3B0aW9ucz4sXG4pOiBQcm92aWRlciB7XG4gICAgcmV0dXJuIHR1aVByb3ZpZGVPcHRpb25zKFxuICAgICAgICBUVUlfVEVYVEZJRUxEX09QVElPTlMsXG4gICAgICAgIG9wdGlvbnMsXG4gICAgICAgIFRVSV9URVhURklFTERfREVGQVVMVF9PUFRJT05TLFxuICAgICk7XG59XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './unfinished.validator';
2
+ export * from './unfinished-validator.directive';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy91bmZpbmlzaGVkLXZhbGlkYXRvci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsa0NBQWtDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3VuZmluaXNoZWQudmFsaWRhdG9yJztcbmV4cG9ydCAqIGZyb20gJy4vdW5maW5pc2hlZC12YWxpZGF0b3IuZGlyZWN0aXZlJztcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktbGVnYWN5LWRpcmVjdGl2ZXMtdW5maW5pc2hlZC12YWxpZGF0b3IuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy91bmZpbmlzaGVkLXZhbGlkYXRvci90YWlnYS11aS1sZWdhY3ktZGlyZWN0aXZlcy11bmZpbmlzaGVkLXZhbGlkYXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==