@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,192 @@
1
+ import { ChangeDetectionStrategy, Component, ContentChild, ElementRef, HostBinding, HostListener, inject, Input, ViewChild, } from '@angular/core';
2
+ import { TUI_IS_IOS } from '@taiga-ui/cdk/tokens';
3
+ import { tuiIsNativeFocused } from '@taiga-ui/cdk/utils/focus';
4
+ import { TUI_TEXTFIELD_OPTIONS } from '@taiga-ui/core/components/textfield';
5
+ import { TuiHintOptionsDirective } from '@taiga-ui/core/directives/hint';
6
+ import { AbstractTuiControl, tuiAsControl } from '@taiga-ui/legacy/classes';
7
+ import { TUI_ICON_START_PADDINGS, TuiTextfieldComponent, } from '@taiga-ui/legacy/components/primitive-textfield';
8
+ import { TEXTFIELD_CONTROLLER_PROVIDER, TUI_TEXTFIELD_WATCHED_CONTROLLER, } from '@taiga-ui/legacy/directives';
9
+ import { tuiAsFocusableItemAccessor } from '@taiga-ui/legacy/tokens';
10
+ import { tuiGetBorder } from '@taiga-ui/legacy/utils';
11
+ import * as i0 from "@angular/core";
12
+ import * as i1 from "@angular/common";
13
+ import * as i2 from "@angular/forms";
14
+ import * as i3 from "@taiga-ui/core/components/scrollbar";
15
+ import * as i4 from "@taiga-ui/legacy/components/tooltip";
16
+ import * as i5 from "@taiga-ui/legacy/directives";
17
+ import * as i6 from "@taiga-ui/polymorpheus";
18
+ import * as i7 from "@taiga-ui/core/components/icon";
19
+ import * as i8 from "@taiga-ui/core/directives/appearance";
20
+ export const DEFAULT_ROWS = 20;
21
+ export const LINE_HEIGHT_M = 20;
22
+ export const LINE_HEIGHT_L = 24;
23
+ /**
24
+ * @deprecated: drop in v5.0
25
+ */
26
+ class TuiTextareaComponent extends AbstractTuiControl {
27
+ constructor() {
28
+ super(...arguments);
29
+ this.options = inject(TUI_TEXTFIELD_OPTIONS);
30
+ this.isIOS = inject(TUI_IS_IOS);
31
+ this.controller = inject(TUI_TEXTFIELD_WATCHED_CONTROLLER);
32
+ this.hintOptions = inject(TuiHintOptionsDirective, { optional: true });
33
+ this.rows = DEFAULT_ROWS;
34
+ this.maxLength = null;
35
+ this.expandable = false;
36
+ }
37
+ get nativeFocusableElement() {
38
+ if (this.computedDisabled) {
39
+ return null;
40
+ }
41
+ return (this.textfield?.nativeElement || this.focusableElement?.nativeElement || null);
42
+ }
43
+ get focused() {
44
+ return tuiIsNativeFocused(this.nativeFocusableElement);
45
+ }
46
+ get computeMaxHeight() {
47
+ return this.expandable ? this.rows * this.lineHeight : null;
48
+ }
49
+ onValueChange(value) {
50
+ this.value = value;
51
+ }
52
+ get labelOutside() {
53
+ return this.options.appearance === 'table' || this.controller.labelOutside;
54
+ }
55
+ get size() {
56
+ return this.controller.size;
57
+ }
58
+ get borderStart() {
59
+ return this.iconLeftContent ? TUI_ICON_START_PADDINGS[this.size] : 0;
60
+ }
61
+ get borderEnd() {
62
+ return tuiGetBorder(!!this.iconContent, this.hasCleaner, this.hasTooltip, this.hasCustomContent, this.size);
63
+ }
64
+ get hasTooltip() {
65
+ return (!!this.hintOptions?.content &&
66
+ (this.controller.options.hintOnDisabled || !this.computedDisabled));
67
+ }
68
+ get hasValue() {
69
+ return this.value !== '';
70
+ }
71
+ get hasCounter() {
72
+ return !!this.maxLength && this.interactive;
73
+ }
74
+ get appearance() {
75
+ return this.options.appearance === 'table' ? 'table' : this.controller.appearance;
76
+ }
77
+ get hasCleaner() {
78
+ return this.controller.cleaner && this.hasValue && this.interactive;
79
+ }
80
+ get hasPlaceholder() {
81
+ return this.placeholderRaisable || (!this.hasValue && !this.hasExampleText);
82
+ }
83
+ get hasCustomContent() {
84
+ return !!this.controller.customContent;
85
+ }
86
+ get iconLeftContent() {
87
+ return this.controller.iconStart;
88
+ }
89
+ get iconContent() {
90
+ return this.controller.icon;
91
+ }
92
+ get iconCleaner() {
93
+ return this.controller.options.iconCleaner;
94
+ }
95
+ get hasExampleText() {
96
+ return (!!this.textfield?.nativeElement.placeholder &&
97
+ this.focused &&
98
+ !this.hasValue &&
99
+ !this.readOnly);
100
+ }
101
+ get placeholderRaised() {
102
+ return (this.placeholderRaisable &&
103
+ ((this.computedFocused && !this.readOnly) || this.hasValue));
104
+ }
105
+ get fittedContent() {
106
+ return this.value.slice(0, this.maxLength || Infinity);
107
+ }
108
+ get extraContent() {
109
+ return this.value.slice(this.maxLength || Infinity);
110
+ }
111
+ onFocused(focused) {
112
+ this.updateFocused(focused);
113
+ }
114
+ onMouseDown(event) {
115
+ if (event.target === this.nativeFocusableElement) {
116
+ return;
117
+ }
118
+ event.preventDefault();
119
+ if (this.nativeFocusableElement) {
120
+ this.nativeFocusableElement.focus();
121
+ }
122
+ }
123
+ getFallbackValue() {
124
+ return '';
125
+ }
126
+ get lineHeight() {
127
+ return this.controller.size === 'm' ? LINE_HEIGHT_M : LINE_HEIGHT_L;
128
+ }
129
+ get placeholderRaisable() {
130
+ return this.size !== 's' && !this.controller.labelOutside;
131
+ }
132
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
133
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextareaComponent, selector: "tui-textarea", inputs: { rows: "rows", maxLength: "maxLength", expandable: "expandable" }, host: { listeners: { "focusin": "onFocused(true)", "focusout": "onFocused(false)" }, properties: { "class._ios": "isIOS", "class._expandable": "this.expandable", "class._label-outside": "this.labelOutside", "attr.data-size": "this.size", "style.--border-start.rem": "this.borderStart", "style.--border-end.rem": "this.borderEnd", "class._has-tooltip": "this.hasTooltip", "class._has-value": "this.hasValue", "class._has-counter": "this.hasCounter" } }, providers: [
134
+ tuiAsFocusableItemAccessor(TuiTextareaComponent),
135
+ tuiAsControl(TuiTextareaComponent),
136
+ TEXTFIELD_CONTROLLER_PROVIDER,
137
+ ], queries: [{ propertyName: "textfield", first: true, predicate: TuiTextfieldComponent, descendants: true, read: ElementRef }], viewQueries: [{ propertyName: "focusableElement", first: true, predicate: ["focusableElement"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<ng-container *ngIf=\"hintOptions?.change$ | async\" />\n<div\n automation-id=\"tui-text-area__wrapper\"\n tuiWrapper\n class=\"t-outline\"\n [appearance]=\"appearance\"\n [disabled]=\"disabled\"\n [focus]=\"computedFocused\"\n [hover]=\"pseudoHover\"\n [invalid]=\"computedInvalid\"\n [readOnly]=\"readOnly\"\n>\n <div\n *ngIf=\"hasCounter\"\n automation-id=\"tui-text-area__counter\"\n class=\"t-counter\"\n >\n {{ value.length }}/{{ maxLength }}\n </div>\n\n <label\n class=\"t-content\"\n (mousedown)=\"onMouseDown($event)\"\n >\n <div class=\"t-wrapper\">\n <div\n *ngIf=\"hasPlaceholder\"\n automation-id=\"tui-text-area__placeholder\"\n class=\"t-placeholder\"\n [class.t-placeholder_raised]=\"placeholderRaised\"\n >\n <ng-content />\n </div>\n <tui-scrollbar\n automation-id=\"tui-text-area__scrollbar\"\n class=\"t-box\"\n [style.maxHeight.px]=\"computeMaxHeight\"\n >\n <div class=\"t-input-wrapper\">\n <div class=\"t-relative\">\n <div\n aria-hidden=\"true\"\n class=\"t-pseudo-content\"\n >\n <span [textContent]=\"fittedContent || nativeFocusableElement?.placeholder\"></span>\n <span\n class=\"t-pseudo-content__extra\"\n [textContent]=\"extraContent\"\n ></span>\n <span class=\"t-caret\"></span>\n </div>\n <textarea\n #focusableElement\n automation-id=\"tui-text-area__native\"\n class=\"t-input\"\n [disabled]=\"computedDisabled\"\n [id]=\"id\"\n [readOnly]=\"readOnly\"\n [tabIndex]=\"computedFocusable ? 0 : -1\"\n [(ngModel)]=\"value\"\n ></textarea>\n <ng-content select=\"textarea\" />\n </div>\n </div>\n </tui-scrollbar>\n </div>\n <div class=\"t-icons\">\n <div\n *ngIf=\"iconLeftContent\"\n class=\"t-icon t-icon_left t-textfield-icon\"\n >\n <tui-icon\n *polymorpheusOutlet=\"iconLeftContent as src; context: {$implicit: size}\"\n tuiAppearance=\"icon\"\n [icon]=\"src.toString()\"\n />\n </div>\n <ng-container *ngIf=\"hasCustomContent\">\n <tui-icon\n *polymorpheusOutlet=\"controller.customContent as src\"\n [icon]=\"src\"\n />\n </ng-container>\n <ng-container *ngIf=\"hasCleaner\">\n <tui-icon\n *polymorpheusOutlet=\"iconCleaner as src; context: {$implicit: size}\"\n tuiAppearance=\"icon\"\n class=\"t-cleaner\"\n [icon]=\"src.toString()\"\n (click.stop)=\"onValueChange('')\"\n />\n </ng-container>\n <tui-tooltip\n *ngIf=\"hasTooltip\"\n automation-id=\"tui-text-area__tooltip\"\n [content]=\"hintOptions?.content\"\n [describeId]=\"id\"\n />\n <div\n *ngIf=\"iconContent\"\n class=\"t-icon t-textfield-icon\"\n >\n <tui-icon\n *polymorpheusOutlet=\"iconContent as src; context: {$implicit: size}\"\n tuiAppearance=\"icon\"\n [icon]=\"src.toString()\"\n />\n </div>\n </div>\n </label>\n</div>\n", styles: [":host{position:relative;z-index:0;display:flex;flex-direction:column;min-height:var(--tui-textarea-height);border-radius:var(--tui-radius-m);color:var(--tui-text-primary)}:host[data-size=s]{--tui-height: var(--tui-height-s);--tui-textarea-height: 4.5625rem;font:var(--tui-font-text-s)}:host[data-size=m]{--tui-height: var(--tui-height-m);--tui-textarea-height: 5.5rem;font:var(--tui-font-text-s)}:host[data-size=l]{--tui-height: var(--tui-height-l);--tui-textarea-height: 6.75rem;font:var(--tui-font-text-m)}:host[data-size=m]._has-counter{--tui-textarea-height: 6.625rem}:host[data-size=l]._has-counter{--tui-textarea-height: 7.875rem}.t-outline{min-height:inherit}.t-content{display:block;margin-top:0;margin-bottom:0;min-height:inherit;box-sizing:border-box;overflow:hidden;cursor:text}:host._disabled .t-content{cursor:auto;opacity:var(--tui-disabled-opacity)}:host:not(._expandable) .t-content{position:absolute;top:0;left:0;bottom:1px;right:0;min-height:auto}:host._has-counter:not(._expandable) .t-content{bottom:1.6875rem}:host._label-outside._has-counter:not(._expandable) .t-content{bottom:1rem}.t-wrapper{position:relative;width:100%;height:100%;min-height:inherit;box-sizing:border-box;padding:calc((var(--tui-height) - 1.25rem) / 2) 0}:host[data-size=l]._label-outside .t-wrapper{padding:calc((var(--tui-height) - 1.5rem) / 2) 0}:host[data-size=m]:not(._label-outside) .t-wrapper{padding:calc((var(--tui-height) - 2.25rem) / 2) 0}:host[data-size=l]:not(._label-outside) .t-wrapper{padding:calc((var(--tui-height) - 2.625rem) / 2) 0}:host-context(table)[data-size=m]._label-outside .t-wrapper{padding-bottom:.75rem}:host-context(table)[data-size=l]._label-outside .t-wrapper{padding-bottom:1rem}.t-input-wrapper{min-height:inherit;width:100%;flex:1}.t-relative{position:relative;min-height:inherit}.t-box{display:flex;min-height:calc(100% - 1rem);width:100%}:host:not(._expandable) .t-box{height:calc(100% - 1rem)}:host:not(._expandable)._label-outside .t-box{height:100%}:host._has-counter._expandable .t-box{margin-bottom:1.25rem}:host[data-size=m]:not(._label-outside) .t-box{border-top:1rem solid transparent}:host[data-size=l]:not(._label-outside) .t-box{border-top:1.25rem solid transparent}.t-pseudo-content{white-space:pre-wrap;word-wrap:break-word;word-break:keep-all;pointer-events:none;color:transparent;overflow:hidden;border:0 solid transparent;border-inline-start-width:var(--border-start, 0);border-inline-end-width:var(--border-end, 0)}:host[data-size=s] .t-pseudo-content,:host[data-size=m] .t-pseudo-content{padding:0 .75rem}:host[data-size=l] .t-pseudo-content{padding:0 1rem}.t-pseudo-content__extra{background-color:var(--tui-status-negative-pale-night)}.t-input{padding:0;margin:0;border-width:0;border-radius:inherit;background:none;font-size:inherit;line-height:inherit;font-weight:inherit;color:inherit;caret-color:currentColor;-webkit-appearance:none;appearance:none;word-break:keep-all;-webkit-text-fill-color:currentColor;position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;resize:none;overflow:hidden;outline:none;border-style:solid;border-color:transparent;border-inline-start-width:var(--border-start, 0);border-inline-end-width:var(--border-end, 0)}.t-input:-webkit-autofill,.t-input:-webkit-autofill:hover,.t-input:-webkit-autofill:focus{-webkit-text-fill-color:var(--tui-text-primary)!important;border-color:var(--tui-service-autofill-background);box-shadow:0 0 0 100rem var(--tui-service-autofill-background) inset!important}@supports (-webkit-touch-callout: none){.t-input:active{font-size:1rem}}.t-input:not(:last-of-type){display:none}.t-input::placeholder{color:var(--tui-text-tertiary);opacity:0}:host._focused .t-input:not(:read-only)::placeholder{opacity:1}:host[data-size=s] .t-input,:host[data-size=m] .t-input{padding:0 .75rem}:host[data-size=l] .t-input{padding:0 1rem}@supports (-webkit-marquee-repetition: infinite) and (object-fit: fill){:host._ios .t-input{padding-left:.8125rem}}.t-placeholder{transition-property:transform,font-size,color,letter-spacing;transition-duration:var(--tui-duration, .3s);transition-timing-function:ease-in-out;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;width:100%;-webkit-user-select:none;user-select:none;font:var(--tui-font-text-s);color:var(--tui-text-secondary);pointer-events:none;will-change:transform;transform:translateY(0);position:absolute;top:calc(var(--tui-height) / 2 - .625rem);left:0;max-width:100%;border:0 solid transparent;border-inline-start-width:var(--border-start, 0);border-inline-end-width:var(--border-end, 0);box-sizing:border-box}@supports (-webkit-hyphens: none){.t-placeholder{will-change:unset;transition-property:transform,color,letter-spacing}}.t-placeholder_raised{transform:translateY(-.625rem)}:host[data-size=m] .t-placeholder_raised{font:var(--tui-font-text-xs);line-height:1.25rem;transform:translateY(-.5rem);letter-spacing:.025rem}:host._invalid:not(._focused) .t-placeholder_raised,:host._invalid:not(._focused):hover .t-placeholder_raised{color:var(--tui-text-negative)}:host._focused .t-placeholder,:host[data-size=m]._focused._label-outside .t-placeholder,:host[data-size=l]._focused._label-outside .t-placeholder{color:var(--tui-text-tertiary)}:host[data-size=l] .t-placeholder{font:var(--tui-font-text-m);line-height:1.25rem}:host[data-size=l] .t-placeholder_raised{font-size:.8156rem}:host[data-size=m]._focused:not(._label-outside) .t-placeholder,:host[data-size=l]._focused:not(._label-outside) .t-placeholder{color:var(--tui-text-primary)}:host[data-size=s] .t-placeholder{padding:0 .75rem}:host[data-size=m] .t-placeholder{padding:0 .75rem}:host[data-size=l] .t-placeholder{padding:0 1rem}:host._label-outside .t-placeholder{overflow:initial;height:auto;white-space:initial}.t-icons{position:absolute;top:0;left:0;bottom:0;right:0;display:flex;justify-content:flex-end;pointer-events:none;padding:calc((var(--tui-height) - 1.5rem) / 2) 1rem}:host[data-size=m] .t-icons{padding:calc((var(--tui-height) - 1.5rem) / 2) .625rem}.t-icons>:not(:first-child){margin-inline-start:.25rem}.t-icon{position:relative;display:flex;width:1.5rem;height:1.5rem;align-items:center;justify-content:center;box-sizing:border-box;cursor:pointer;pointer-events:none}.t-icon_left{margin-inline-end:auto}.t-cleaner{position:relative;display:flex;width:1.5rem;height:1.5rem;align-items:center;justify-content:center;box-sizing:border-box;cursor:pointer;pointer-events:none;pointer-events:auto;border:.25rem solid transparent}:host._readonly .t-cleaner,:host._disabled .t-cleaner{pointer-events:none}.t-caret{display:inline-block;height:1rem;width:0}.t-counter{position:absolute;right:.75rem;bottom:.5rem;font:var(--tui-font-text-s);pointer-events:none;margin-top:auto;text-align:right;color:var(--tui-text-tertiary)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.TuiScrollbar, selector: "tui-scrollbar", inputs: ["hidden"] }, { kind: "component", type: i4.TuiTooltipComponent, selector: "tui-tooltip", inputs: ["content", "direction", "appearance", "showDelay", "hideDelay", "describeId", "context"] }, { kind: "directive", type: i5.TuiWrapperDirective, selector: "[tuiWrapper]", inputs: ["disabled", "readOnly", "hover", "active", "focus", "invalid", "appearance"] }, { kind: "directive", type: i6.PolymorpheusOutlet, selector: "[polymorpheusOutlet]", inputs: ["polymorpheusOutlet", "polymorpheusOutletContext"] }, { kind: "component", type: i7.TuiIcon, selector: "tui-icon", inputs: ["icon", "background"] }, { kind: "directive", type: i8.TuiAppearance, selector: "[tuiAppearance]", inputs: ["tuiAppearance", "tuiAppearanceState", "tuiAppearanceFocus"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
138
+ }
139
+ export { TuiTextareaComponent };
140
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaComponent, decorators: [{
141
+ type: Component,
142
+ args: [{ selector: 'tui-textarea', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
143
+ tuiAsFocusableItemAccessor(TuiTextareaComponent),
144
+ tuiAsControl(TuiTextareaComponent),
145
+ TEXTFIELD_CONTROLLER_PROVIDER,
146
+ ], host: {
147
+ '[class._ios]': 'isIOS',
148
+ }, template: "<ng-container *ngIf=\"hintOptions?.change$ | async\" />\n<div\n automation-id=\"tui-text-area__wrapper\"\n tuiWrapper\n class=\"t-outline\"\n [appearance]=\"appearance\"\n [disabled]=\"disabled\"\n [focus]=\"computedFocused\"\n [hover]=\"pseudoHover\"\n [invalid]=\"computedInvalid\"\n [readOnly]=\"readOnly\"\n>\n <div\n *ngIf=\"hasCounter\"\n automation-id=\"tui-text-area__counter\"\n class=\"t-counter\"\n >\n {{ value.length }}/{{ maxLength }}\n </div>\n\n <label\n class=\"t-content\"\n (mousedown)=\"onMouseDown($event)\"\n >\n <div class=\"t-wrapper\">\n <div\n *ngIf=\"hasPlaceholder\"\n automation-id=\"tui-text-area__placeholder\"\n class=\"t-placeholder\"\n [class.t-placeholder_raised]=\"placeholderRaised\"\n >\n <ng-content />\n </div>\n <tui-scrollbar\n automation-id=\"tui-text-area__scrollbar\"\n class=\"t-box\"\n [style.maxHeight.px]=\"computeMaxHeight\"\n >\n <div class=\"t-input-wrapper\">\n <div class=\"t-relative\">\n <div\n aria-hidden=\"true\"\n class=\"t-pseudo-content\"\n >\n <span [textContent]=\"fittedContent || nativeFocusableElement?.placeholder\"></span>\n <span\n class=\"t-pseudo-content__extra\"\n [textContent]=\"extraContent\"\n ></span>\n <span class=\"t-caret\"></span>\n </div>\n <textarea\n #focusableElement\n automation-id=\"tui-text-area__native\"\n class=\"t-input\"\n [disabled]=\"computedDisabled\"\n [id]=\"id\"\n [readOnly]=\"readOnly\"\n [tabIndex]=\"computedFocusable ? 0 : -1\"\n [(ngModel)]=\"value\"\n ></textarea>\n <ng-content select=\"textarea\" />\n </div>\n </div>\n </tui-scrollbar>\n </div>\n <div class=\"t-icons\">\n <div\n *ngIf=\"iconLeftContent\"\n class=\"t-icon t-icon_left t-textfield-icon\"\n >\n <tui-icon\n *polymorpheusOutlet=\"iconLeftContent as src; context: {$implicit: size}\"\n tuiAppearance=\"icon\"\n [icon]=\"src.toString()\"\n />\n </div>\n <ng-container *ngIf=\"hasCustomContent\">\n <tui-icon\n *polymorpheusOutlet=\"controller.customContent as src\"\n [icon]=\"src\"\n />\n </ng-container>\n <ng-container *ngIf=\"hasCleaner\">\n <tui-icon\n *polymorpheusOutlet=\"iconCleaner as src; context: {$implicit: size}\"\n tuiAppearance=\"icon\"\n class=\"t-cleaner\"\n [icon]=\"src.toString()\"\n (click.stop)=\"onValueChange('')\"\n />\n </ng-container>\n <tui-tooltip\n *ngIf=\"hasTooltip\"\n automation-id=\"tui-text-area__tooltip\"\n [content]=\"hintOptions?.content\"\n [describeId]=\"id\"\n />\n <div\n *ngIf=\"iconContent\"\n class=\"t-icon t-textfield-icon\"\n >\n <tui-icon\n *polymorpheusOutlet=\"iconContent as src; context: {$implicit: size}\"\n tuiAppearance=\"icon\"\n [icon]=\"src.toString()\"\n />\n </div>\n </div>\n </label>\n</div>\n", styles: [":host{position:relative;z-index:0;display:flex;flex-direction:column;min-height:var(--tui-textarea-height);border-radius:var(--tui-radius-m);color:var(--tui-text-primary)}:host[data-size=s]{--tui-height: var(--tui-height-s);--tui-textarea-height: 4.5625rem;font:var(--tui-font-text-s)}:host[data-size=m]{--tui-height: var(--tui-height-m);--tui-textarea-height: 5.5rem;font:var(--tui-font-text-s)}:host[data-size=l]{--tui-height: var(--tui-height-l);--tui-textarea-height: 6.75rem;font:var(--tui-font-text-m)}:host[data-size=m]._has-counter{--tui-textarea-height: 6.625rem}:host[data-size=l]._has-counter{--tui-textarea-height: 7.875rem}.t-outline{min-height:inherit}.t-content{display:block;margin-top:0;margin-bottom:0;min-height:inherit;box-sizing:border-box;overflow:hidden;cursor:text}:host._disabled .t-content{cursor:auto;opacity:var(--tui-disabled-opacity)}:host:not(._expandable) .t-content{position:absolute;top:0;left:0;bottom:1px;right:0;min-height:auto}:host._has-counter:not(._expandable) .t-content{bottom:1.6875rem}:host._label-outside._has-counter:not(._expandable) .t-content{bottom:1rem}.t-wrapper{position:relative;width:100%;height:100%;min-height:inherit;box-sizing:border-box;padding:calc((var(--tui-height) - 1.25rem) / 2) 0}:host[data-size=l]._label-outside .t-wrapper{padding:calc((var(--tui-height) - 1.5rem) / 2) 0}:host[data-size=m]:not(._label-outside) .t-wrapper{padding:calc((var(--tui-height) - 2.25rem) / 2) 0}:host[data-size=l]:not(._label-outside) .t-wrapper{padding:calc((var(--tui-height) - 2.625rem) / 2) 0}:host-context(table)[data-size=m]._label-outside .t-wrapper{padding-bottom:.75rem}:host-context(table)[data-size=l]._label-outside .t-wrapper{padding-bottom:1rem}.t-input-wrapper{min-height:inherit;width:100%;flex:1}.t-relative{position:relative;min-height:inherit}.t-box{display:flex;min-height:calc(100% - 1rem);width:100%}:host:not(._expandable) .t-box{height:calc(100% - 1rem)}:host:not(._expandable)._label-outside .t-box{height:100%}:host._has-counter._expandable .t-box{margin-bottom:1.25rem}:host[data-size=m]:not(._label-outside) .t-box{border-top:1rem solid transparent}:host[data-size=l]:not(._label-outside) .t-box{border-top:1.25rem solid transparent}.t-pseudo-content{white-space:pre-wrap;word-wrap:break-word;word-break:keep-all;pointer-events:none;color:transparent;overflow:hidden;border:0 solid transparent;border-inline-start-width:var(--border-start, 0);border-inline-end-width:var(--border-end, 0)}:host[data-size=s] .t-pseudo-content,:host[data-size=m] .t-pseudo-content{padding:0 .75rem}:host[data-size=l] .t-pseudo-content{padding:0 1rem}.t-pseudo-content__extra{background-color:var(--tui-status-negative-pale-night)}.t-input{padding:0;margin:0;border-width:0;border-radius:inherit;background:none;font-size:inherit;line-height:inherit;font-weight:inherit;color:inherit;caret-color:currentColor;-webkit-appearance:none;appearance:none;word-break:keep-all;-webkit-text-fill-color:currentColor;position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;resize:none;overflow:hidden;outline:none;border-style:solid;border-color:transparent;border-inline-start-width:var(--border-start, 0);border-inline-end-width:var(--border-end, 0)}.t-input:-webkit-autofill,.t-input:-webkit-autofill:hover,.t-input:-webkit-autofill:focus{-webkit-text-fill-color:var(--tui-text-primary)!important;border-color:var(--tui-service-autofill-background);box-shadow:0 0 0 100rem var(--tui-service-autofill-background) inset!important}@supports (-webkit-touch-callout: none){.t-input:active{font-size:1rem}}.t-input:not(:last-of-type){display:none}.t-input::placeholder{color:var(--tui-text-tertiary);opacity:0}:host._focused .t-input:not(:read-only)::placeholder{opacity:1}:host[data-size=s] .t-input,:host[data-size=m] .t-input{padding:0 .75rem}:host[data-size=l] .t-input{padding:0 1rem}@supports (-webkit-marquee-repetition: infinite) and (object-fit: fill){:host._ios .t-input{padding-left:.8125rem}}.t-placeholder{transition-property:transform,font-size,color,letter-spacing;transition-duration:var(--tui-duration, .3s);transition-timing-function:ease-in-out;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;width:100%;-webkit-user-select:none;user-select:none;font:var(--tui-font-text-s);color:var(--tui-text-secondary);pointer-events:none;will-change:transform;transform:translateY(0);position:absolute;top:calc(var(--tui-height) / 2 - .625rem);left:0;max-width:100%;border:0 solid transparent;border-inline-start-width:var(--border-start, 0);border-inline-end-width:var(--border-end, 0);box-sizing:border-box}@supports (-webkit-hyphens: none){.t-placeholder{will-change:unset;transition-property:transform,color,letter-spacing}}.t-placeholder_raised{transform:translateY(-.625rem)}:host[data-size=m] .t-placeholder_raised{font:var(--tui-font-text-xs);line-height:1.25rem;transform:translateY(-.5rem);letter-spacing:.025rem}:host._invalid:not(._focused) .t-placeholder_raised,:host._invalid:not(._focused):hover .t-placeholder_raised{color:var(--tui-text-negative)}:host._focused .t-placeholder,:host[data-size=m]._focused._label-outside .t-placeholder,:host[data-size=l]._focused._label-outside .t-placeholder{color:var(--tui-text-tertiary)}:host[data-size=l] .t-placeholder{font:var(--tui-font-text-m);line-height:1.25rem}:host[data-size=l] .t-placeholder_raised{font-size:.8156rem}:host[data-size=m]._focused:not(._label-outside) .t-placeholder,:host[data-size=l]._focused:not(._label-outside) .t-placeholder{color:var(--tui-text-primary)}:host[data-size=s] .t-placeholder{padding:0 .75rem}:host[data-size=m] .t-placeholder{padding:0 .75rem}:host[data-size=l] .t-placeholder{padding:0 1rem}:host._label-outside .t-placeholder{overflow:initial;height:auto;white-space:initial}.t-icons{position:absolute;top:0;left:0;bottom:0;right:0;display:flex;justify-content:flex-end;pointer-events:none;padding:calc((var(--tui-height) - 1.5rem) / 2) 1rem}:host[data-size=m] .t-icons{padding:calc((var(--tui-height) - 1.5rem) / 2) .625rem}.t-icons>:not(:first-child){margin-inline-start:.25rem}.t-icon{position:relative;display:flex;width:1.5rem;height:1.5rem;align-items:center;justify-content:center;box-sizing:border-box;cursor:pointer;pointer-events:none}.t-icon_left{margin-inline-end:auto}.t-cleaner{position:relative;display:flex;width:1.5rem;height:1.5rem;align-items:center;justify-content:center;box-sizing:border-box;cursor:pointer;pointer-events:none;pointer-events:auto;border:.25rem solid transparent}:host._readonly .t-cleaner,:host._disabled .t-cleaner{pointer-events:none}.t-caret{display:inline-block;height:1rem;width:0}.t-counter{position:absolute;right:.75rem;bottom:.5rem;font:var(--tui-font-text-s);pointer-events:none;margin-top:auto;text-align:right;color:var(--tui-text-tertiary)}\n"] }]
149
+ }], propDecorators: { focusableElement: [{
150
+ type: ViewChild,
151
+ args: ['focusableElement']
152
+ }], textfield: [{
153
+ type: ContentChild,
154
+ args: [TuiTextfieldComponent, { read: ElementRef }]
155
+ }], rows: [{
156
+ type: Input
157
+ }], maxLength: [{
158
+ type: Input
159
+ }], expandable: [{
160
+ type: Input
161
+ }, {
162
+ type: HostBinding,
163
+ args: ['class._expandable']
164
+ }], labelOutside: [{
165
+ type: HostBinding,
166
+ args: ['class._label-outside']
167
+ }], size: [{
168
+ type: HostBinding,
169
+ args: ['attr.data-size']
170
+ }], borderStart: [{
171
+ type: HostBinding,
172
+ args: ['style.--border-start.rem']
173
+ }], borderEnd: [{
174
+ type: HostBinding,
175
+ args: ['style.--border-end.rem']
176
+ }], hasTooltip: [{
177
+ type: HostBinding,
178
+ args: ['class._has-tooltip']
179
+ }], hasValue: [{
180
+ type: HostBinding,
181
+ args: ['class._has-value']
182
+ }], hasCounter: [{
183
+ type: HostBinding,
184
+ args: ['class._has-counter']
185
+ }], onFocused: [{
186
+ type: HostListener,
187
+ args: ['focusin', ['true']]
188
+ }, {
189
+ type: HostListener,
190
+ args: ['focusout', ['false']]
191
+ }] } });
192
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2NvbXBvbmVudHMvdGV4dGFyZWEvdGV4dGFyZWEuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2NvbXBvbmVudHMvdGV4dGFyZWEvdGV4dGFyZWEudGVtcGxhdGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osVUFBVSxFQUNWLFdBQVcsRUFDWCxZQUFZLEVBQ1osTUFBTSxFQUNOLEtBQUssRUFDTCxTQUFTLEdBQ1osTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBRWhELE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLDJCQUEyQixDQUFDO0FBQzdELE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBQzFFLE9BQU8sRUFBQyx1QkFBdUIsRUFBQyxNQUFNLGdDQUFnQyxDQUFDO0FBRXZFLE9BQU8sRUFBQyxrQkFBa0IsRUFBRSxZQUFZLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUMxRSxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLHFCQUFxQixHQUN4QixNQUFNLGlEQUFpRCxDQUFDO0FBQ3pELE9BQU8sRUFDSCw2QkFBNkIsRUFDN0IsZ0NBQWdDLEdBQ25DLE1BQU0sNkJBQTZCLENBQUM7QUFFckMsT0FBTyxFQUFDLDBCQUEwQixFQUFDLE1BQU0seUJBQXlCLENBQUM7QUFDbkUsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLHdCQUF3QixDQUFDOzs7Ozs7Ozs7O0FBR3BELE1BQU0sQ0FBQyxNQUFNLFlBQVksR0FBRyxFQUFFLENBQUM7QUFDL0IsTUFBTSxDQUFDLE1BQU0sYUFBYSxHQUFHLEVBQUUsQ0FBQztBQUNoQyxNQUFNLENBQUMsTUFBTSxhQUFhLEdBQUcsRUFBRSxDQUFDO0FBRWhDOztHQUVHO0FBQ0gsTUFjYSxvQkFDVCxTQUFRLGtCQUEwQjtJQWZ0Qzs7UUF3QnFCLFlBQU8sR0FBRyxNQUFNLENBQUMscUJBQXFCLENBQUMsQ0FBQztRQUV0QyxVQUFLLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQzNCLGVBQVUsR0FBRyxNQUFNLENBQUMsZ0NBQWdDLENBQUMsQ0FBQztRQUN0RCxnQkFBVyxHQUFHLE1BQU0sQ0FBQyx1QkFBdUIsRUFBRSxFQUFDLFFBQVEsRUFBRSxJQUFJLEVBQUMsQ0FBQyxDQUFDO1FBRzVFLFNBQUksR0FBRyxZQUFZLENBQUM7UUFHcEIsY0FBUyxHQUFrQixJQUFJLENBQUM7UUFJaEMsZUFBVSxHQUFHLEtBQUssQ0FBQztLQXVKN0I7SUFySkcsSUFBVyxzQkFBc0I7UUFDN0IsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLEVBQUU7WUFDdkIsT0FBTyxJQUFJLENBQUM7U0FDZjtRQUVELE9BQU8sQ0FDSCxJQUFJLENBQUMsU0FBUyxFQUFFLGFBQWEsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsYUFBYSxJQUFJLElBQUksQ0FDaEYsQ0FBQztJQUNOLENBQUM7SUFFRCxJQUFXLE9BQU87UUFDZCxPQUFPLGtCQUFrQixDQUFDLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFRCxJQUFXLGdCQUFnQjtRQUN2QixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO0lBQ2hFLENBQUM7SUFFTSxhQUFhLENBQUMsS0FBYTtRQUM5QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFDYyxZQUFZO1FBQ3RCLE9BQU8sSUFBSSxDQUFDLE9BQU8sQ0FBQyxVQUFVLEtBQUssT0FBTyxJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDO0lBQy9FLENBQUM7SUFFRCxJQUNjLElBQUk7UUFDZCxPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDO0lBQ2hDLENBQUM7SUFFRCxJQUNjLFdBQVc7UUFDckIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUMsQ0FBQyx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUN6RSxDQUFDO0lBRUQsSUFDYyxTQUFTO1FBQ25CLE9BQU8sWUFBWSxDQUNmLENBQUMsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUNsQixJQUFJLENBQUMsVUFBVSxFQUNmLElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLGdCQUFnQixFQUNyQixJQUFJLENBQUMsSUFBSSxDQUNaLENBQUM7SUFDTixDQUFDO0lBRUQsSUFDYyxVQUFVO1FBQ3BCLE9BQU8sQ0FDSCxDQUFDLENBQUMsSUFBSSxDQUFDLFdBQVcsRUFBRSxPQUFPO1lBQzNCLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsY0FBYyxJQUFJLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQ3JFLENBQUM7SUFDTixDQUFDO0lBRUQsSUFDYyxRQUFRO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLEtBQUssS0FBSyxFQUFFLENBQUM7SUFDN0IsQ0FBQztJQUVELElBQ2MsVUFBVTtRQUNwQixPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDaEQsQ0FBQztJQUVELElBQWMsVUFBVTtRQUNwQixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsVUFBVSxLQUFLLE9BQU8sQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLFVBQVUsQ0FBQztJQUN0RixDQUFDO0lBRUQsSUFBYyxVQUFVO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsV0FBVyxDQUFDO0lBQ3hFLENBQUM7SUFFRCxJQUFjLGNBQWM7UUFDeEIsT0FBTyxJQUFJLENBQUMsbUJBQW1CLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLElBQUksQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLENBQUM7SUFDaEYsQ0FBQztJQUVELElBQWMsZ0JBQWdCO1FBQzFCLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDO0lBQzNDLENBQUM7SUFFRCxJQUFjLGVBQWU7UUFHekIsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQztJQUNyQyxDQUFDO0lBRUQsSUFBYyxXQUFXO1FBQ3JCLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUM7SUFDaEMsQ0FBQztJQUVELElBQWMsV0FBVztRQUNyQixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBQztJQUMvQyxDQUFDO0lBRUQsSUFBYyxjQUFjO1FBQ3hCLE9BQU8sQ0FDSCxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxhQUFhLENBQUMsV0FBVztZQUMzQyxJQUFJLENBQUMsT0FBTztZQUNaLENBQUMsSUFBSSxDQUFDLFFBQVE7WUFDZCxDQUFDLElBQUksQ0FBQyxRQUFRLENBQ2pCLENBQUM7SUFDTixDQUFDO0lBRUQsSUFBYyxpQkFBaUI7UUFDM0IsT0FBTyxDQUNILElBQUksQ0FBQyxtQkFBbUI7WUFDeEIsQ0FBQyxDQUFDLElBQUksQ0FBQyxlQUFlLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUM5RCxDQUFDO0lBQ04sQ0FBQztJQUVELElBQWMsYUFBYTtRQUN2QixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsU0FBUyxJQUFJLFFBQVEsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFRCxJQUFjLFlBQVk7UUFDdEIsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsU0FBUyxJQUFJLFFBQVEsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFJUyxTQUFTLENBQUMsT0FBZ0I7UUFDaEMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUNoQyxDQUFDO0lBRVMsV0FBVyxDQUFDLEtBQWlCO1FBQ25DLElBQUksS0FBSyxDQUFDLE1BQU0sS0FBSyxJQUFJLENBQUMsc0JBQXNCLEVBQUU7WUFDOUMsT0FBTztTQUNWO1FBRUQsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBRXZCLElBQUksSUFBSSxDQUFDLHNCQUFzQixFQUFFO1lBQzdCLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxLQUFLLEVBQUUsQ0FBQztTQUN2QztJQUNMLENBQUM7SUFFUyxnQkFBZ0I7UUFDdEIsT0FBTyxFQUFFLENBQUM7SUFDZCxDQUFDO0lBRUQsSUFBWSxVQUFVO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQztJQUN4RSxDQUFDO0lBRUQsSUFBWSxtQkFBbUI7UUFDM0IsT0FBTyxJQUFJLENBQUMsSUFBSSxLQUFLLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDO0lBQzlELENBQUM7K0dBOUtRLG9CQUFvQjttR0FBcEIsb0JBQW9CLHdqQkFUbEI7WUFDUCwwQkFBMEIsQ0FBQyxvQkFBb0IsQ0FBQztZQUNoRCxZQUFZLENBQUMsb0JBQW9CLENBQUM7WUFDbEMsNkJBQTZCO1NBQ2hDLGlFQVlhLHFCQUFxQiwyQkFBUyxVQUFVLDBLQzNEMUQsMm1JQStHQTs7U0QzRGEsb0JBQW9COzRGQUFwQixvQkFBb0I7a0JBZGhDLFNBQVM7K0JBQ0ksY0FBYyxtQkFHUCx1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDO3dCQUNQLDBCQUEwQixzQkFBc0I7d0JBQ2hELFlBQVksc0JBQXNCO3dCQUNsQyw2QkFBNkI7cUJBQ2hDLFFBQ0s7d0JBQ0YsY0FBYyxFQUFFLE9BQU87cUJBQzFCOzhCQU9nQixnQkFBZ0I7c0JBRGhDLFNBQVM7dUJBQUMsa0JBQWtCO2dCQUlaLFNBQVM7c0JBRHpCLFlBQVk7dUJBQUMscUJBQXFCLEVBQUUsRUFBQyxJQUFJLEVBQUUsVUFBVSxFQUFDO2dCQVVoRCxJQUFJO3NCQURWLEtBQUs7Z0JBSUMsU0FBUztzQkFEZixLQUFLO2dCQUtDLFVBQVU7c0JBRmhCLEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsbUJBQW1CO2dCQTBCbEIsWUFBWTtzQkFEekIsV0FBVzt1QkFBQyxzQkFBc0I7Z0JBTXJCLElBQUk7c0JBRGpCLFdBQVc7dUJBQUMsZ0JBQWdCO2dCQU1mLFdBQVc7c0JBRHhCLFdBQVc7dUJBQUMsMEJBQTBCO2dCQU16QixTQUFTO3NCQUR0QixXQUFXO3VCQUFDLHdCQUF3QjtnQkFZdkIsVUFBVTtzQkFEdkIsV0FBVzt1QkFBQyxvQkFBb0I7Z0JBU25CLFFBQVE7c0JBRHJCLFdBQVc7dUJBQUMsa0JBQWtCO2dCQU1qQixVQUFVO3NCQUR2QixXQUFXO3VCQUFDLG9CQUFvQjtnQkE2RHZCLFNBQVM7c0JBRmxCLFlBQVk7dUJBQUMsU0FBUyxFQUFFLENBQUMsTUFBTSxDQUFDOztzQkFDaEMsWUFBWTt1QkFBQyxVQUFVLEVBQUUsQ0FBQyxPQUFPLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBDb250ZW50Q2hpbGQsXG4gICAgRWxlbWVudFJlZixcbiAgICBIb3N0QmluZGluZyxcbiAgICBIb3N0TGlzdGVuZXIsXG4gICAgaW5qZWN0LFxuICAgIElucHV0LFxuICAgIFZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RVSV9JU19JT1N9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcbmltcG9ydCB0eXBlIHtUdWlDb250ZXh0fSBmcm9tICdAdGFpZ2EtdWkvY2RrL3R5cGVzJztcbmltcG9ydCB7dHVpSXNOYXRpdmVGb2N1c2VkfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzL2ZvY3VzJztcbmltcG9ydCB7VFVJX1RFWFRGSUVMRF9PUFRJT05TfSBmcm9tICdAdGFpZ2EtdWkvY29yZS9jb21wb25lbnRzL3RleHRmaWVsZCc7XG5pbXBvcnQge1R1aUhpbnRPcHRpb25zRGlyZWN0aXZlfSBmcm9tICdAdGFpZ2EtdWkvY29yZS9kaXJlY3RpdmVzL2hpbnQnO1xuaW1wb3J0IHR5cGUge1R1aVNpemVMLCBUdWlTaXplU30gZnJvbSAnQHRhaWdhLXVpL2NvcmUvdHlwZXMnO1xuaW1wb3J0IHtBYnN0cmFjdFR1aUNvbnRyb2wsIHR1aUFzQ29udHJvbH0gZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeS9jbGFzc2VzJztcbmltcG9ydCB7XG4gICAgVFVJX0lDT05fU1RBUlRfUEFERElOR1MsXG4gICAgVHVpVGV4dGZpZWxkQ29tcG9uZW50LFxufSBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2NvbXBvbmVudHMvcHJpbWl0aXZlLXRleHRmaWVsZCc7XG5pbXBvcnQge1xuICAgIFRFWFRGSUVMRF9DT05UUk9MTEVSX1BST1ZJREVSLFxuICAgIFRVSV9URVhURklFTERfV0FUQ0hFRF9DT05UUk9MTEVSLFxufSBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHR5cGUge1R1aUZvY3VzYWJsZUVsZW1lbnRBY2Nlc3Nvcn0gZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeS90b2tlbnMnO1xuaW1wb3J0IHt0dWlBc0ZvY3VzYWJsZUl0ZW1BY2Nlc3Nvcn0gZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeS90b2tlbnMnO1xuaW1wb3J0IHt0dWlHZXRCb3JkZXJ9IGZyb20gJ0B0YWlnYS11aS9sZWdhY3kvdXRpbHMnO1xuaW1wb3J0IHR5cGUge1BvbHltb3JwaGV1c0NvbnRlbnR9IGZyb20gJ0B0YWlnYS11aS9wb2x5bW9ycGhldXMnO1xuXG5leHBvcnQgY29uc3QgREVGQVVMVF9ST1dTID0gMjA7XG5leHBvcnQgY29uc3QgTElORV9IRUlHSFRfTSA9IDIwO1xuZXhwb3J0IGNvbnN0IExJTkVfSEVJR0hUX0wgPSAyNDtcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAndHVpLXRleHRhcmVhJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vdGV4dGFyZWEudGVtcGxhdGUuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdGV4dGFyZWEuc3R5bGUubGVzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB0dWlBc0ZvY3VzYWJsZUl0ZW1BY2Nlc3NvcihUdWlUZXh0YXJlYUNvbXBvbmVudCksXG4gICAgICAgIHR1aUFzQ29udHJvbChUdWlUZXh0YXJlYUNvbXBvbmVudCksXG4gICAgICAgIFRFWFRGSUVMRF9DT05UUk9MTEVSX1BST1ZJREVSLFxuICAgIF0sXG4gICAgaG9zdDoge1xuICAgICAgICAnW2NsYXNzLl9pb3NdJzogJ2lzSU9TJyxcbiAgICB9LFxufSlcbmV4cG9ydCBjbGFzcyBUdWlUZXh0YXJlYUNvbXBvbmVudFxuICAgIGV4dGVuZHMgQWJzdHJhY3RUdWlDb250cm9sPHN0cmluZz5cbiAgICBpbXBsZW1lbnRzIFR1aUZvY3VzYWJsZUVsZW1lbnRBY2Nlc3Nvclxue1xuICAgIEBWaWV3Q2hpbGQoJ2ZvY3VzYWJsZUVsZW1lbnQnKVxuICAgIHByaXZhdGUgcmVhZG9ubHkgZm9jdXNhYmxlRWxlbWVudD86IEVsZW1lbnRSZWY8SFRNTFRleHRBcmVhRWxlbWVudD47XG5cbiAgICBAQ29udGVudENoaWxkKFR1aVRleHRmaWVsZENvbXBvbmVudCwge3JlYWQ6IEVsZW1lbnRSZWZ9KVxuICAgIHByaXZhdGUgcmVhZG9ubHkgdGV4dGZpZWxkPzogRWxlbWVudFJlZjxIVE1MVGV4dEFyZWFFbGVtZW50PjtcblxuICAgIHByaXZhdGUgcmVhZG9ubHkgb3B0aW9ucyA9IGluamVjdChUVUlfVEVYVEZJRUxEX09QVElPTlMpO1xuXG4gICAgcHJvdGVjdGVkIHJlYWRvbmx5IGlzSU9TID0gaW5qZWN0KFRVSV9JU19JT1MpO1xuICAgIHByb3RlY3RlZCByZWFkb25seSBjb250cm9sbGVyID0gaW5qZWN0KFRVSV9URVhURklFTERfV0FUQ0hFRF9DT05UUk9MTEVSKTtcbiAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgaGludE9wdGlvbnMgPSBpbmplY3QoVHVpSGludE9wdGlvbnNEaXJlY3RpdmUsIHtvcHRpb25hbDogdHJ1ZX0pO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgcm93cyA9IERFRkFVTFRfUk9XUztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIG1heExlbmd0aDogbnVtYmVyIHwgbnVsbCA9IG51bGw7XG5cbiAgICBASW5wdXQoKVxuICAgIEBIb3N0QmluZGluZygnY2xhc3MuX2V4cGFuZGFibGUnKVxuICAgIHB1YmxpYyBleHBhbmRhYmxlID0gZmFsc2U7XG5cbiAgICBwdWJsaWMgZ2V0IG5hdGl2ZUZvY3VzYWJsZUVsZW1lbnQoKTogSFRNTFRleHRBcmVhRWxlbWVudCB8IG51bGwge1xuICAgICAgICBpZiAodGhpcy5jb21wdXRlZERpc2FibGVkKSB7XG4gICAgICAgICAgICByZXR1cm4gbnVsbDtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiAoXG4gICAgICAgICAgICB0aGlzLnRleHRmaWVsZD8ubmF0aXZlRWxlbWVudCB8fCB0aGlzLmZvY3VzYWJsZUVsZW1lbnQ/Lm5hdGl2ZUVsZW1lbnQgfHwgbnVsbFxuICAgICAgICApO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgZm9jdXNlZCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHR1aUlzTmF0aXZlRm9jdXNlZCh0aGlzLm5hdGl2ZUZvY3VzYWJsZUVsZW1lbnQpO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgY29tcHV0ZU1heEhlaWdodCgpOiBudW1iZXIgfCBudWxsIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZXhwYW5kYWJsZSA/IHRoaXMucm93cyAqIHRoaXMubGluZUhlaWdodCA6IG51bGw7XG4gICAgfVxuXG4gICAgcHVibGljIG9uVmFsdWVDaGFuZ2UodmFsdWU6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLnZhbHVlID0gdmFsdWU7XG4gICAgfVxuXG4gICAgQEhvc3RCaW5kaW5nKCdjbGFzcy5fbGFiZWwtb3V0c2lkZScpXG4gICAgcHJvdGVjdGVkIGdldCBsYWJlbE91dHNpZGUoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm9wdGlvbnMuYXBwZWFyYW5jZSA9PT0gJ3RhYmxlJyB8fCB0aGlzLmNvbnRyb2xsZXIubGFiZWxPdXRzaWRlO1xuICAgIH1cblxuICAgIEBIb3N0QmluZGluZygnYXR0ci5kYXRhLXNpemUnKVxuICAgIHByb3RlY3RlZCBnZXQgc2l6ZSgpOiBUdWlTaXplTCB8IFR1aVNpemVTIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY29udHJvbGxlci5zaXplO1xuICAgIH1cblxuICAgIEBIb3N0QmluZGluZygnc3R5bGUuLS1ib3JkZXItc3RhcnQucmVtJylcbiAgICBwcm90ZWN0ZWQgZ2V0IGJvcmRlclN0YXJ0KCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLmljb25MZWZ0Q29udGVudCA/IFRVSV9JQ09OX1NUQVJUX1BBRERJTkdTW3RoaXMuc2l6ZV0gOiAwO1xuICAgIH1cblxuICAgIEBIb3N0QmluZGluZygnc3R5bGUuLS1ib3JkZXItZW5kLnJlbScpXG4gICAgcHJvdGVjdGVkIGdldCBib3JkZXJFbmQoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHR1aUdldEJvcmRlcihcbiAgICAgICAgICAgICEhdGhpcy5pY29uQ29udGVudCxcbiAgICAgICAgICAgIHRoaXMuaGFzQ2xlYW5lcixcbiAgICAgICAgICAgIHRoaXMuaGFzVG9vbHRpcCxcbiAgICAgICAgICAgIHRoaXMuaGFzQ3VzdG9tQ29udGVudCxcbiAgICAgICAgICAgIHRoaXMuc2l6ZSxcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBASG9zdEJpbmRpbmcoJ2NsYXNzLl9oYXMtdG9vbHRpcCcpXG4gICAgcHJvdGVjdGVkIGdldCBoYXNUb29sdGlwKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gKFxuICAgICAgICAgICAgISF0aGlzLmhpbnRPcHRpb25zPy5jb250ZW50ICYmXG4gICAgICAgICAgICAodGhpcy5jb250cm9sbGVyLm9wdGlvbnMuaGludE9uRGlzYWJsZWQgfHwgIXRoaXMuY29tcHV0ZWREaXNhYmxlZClcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBASG9zdEJpbmRpbmcoJ2NsYXNzLl9oYXMtdmFsdWUnKVxuICAgIHByb3RlY3RlZCBnZXQgaGFzVmFsdWUoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLnZhbHVlICE9PSAnJztcbiAgICB9XG5cbiAgICBASG9zdEJpbmRpbmcoJ2NsYXNzLl9oYXMtY291bnRlcicpXG4gICAgcHJvdGVjdGVkIGdldCBoYXNDb3VudGVyKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gISF0aGlzLm1heExlbmd0aCAmJiB0aGlzLmludGVyYWN0aXZlO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBnZXQgYXBwZWFyYW5jZSgpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy5vcHRpb25zLmFwcGVhcmFuY2UgPT09ICd0YWJsZScgPyAndGFibGUnIDogdGhpcy5jb250cm9sbGVyLmFwcGVhcmFuY2U7XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIGdldCBoYXNDbGVhbmVyKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5jb250cm9sbGVyLmNsZWFuZXIgJiYgdGhpcy5oYXNWYWx1ZSAmJiB0aGlzLmludGVyYWN0aXZlO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBnZXQgaGFzUGxhY2Vob2xkZXIoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLnBsYWNlaG9sZGVyUmFpc2FibGUgfHwgKCF0aGlzLmhhc1ZhbHVlICYmICF0aGlzLmhhc0V4YW1wbGVUZXh0KTtcbiAgICB9XG5cbiAgICBwcm90ZWN0ZWQgZ2V0IGhhc0N1c3RvbUNvbnRlbnQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiAhIXRoaXMuY29udHJvbGxlci5jdXN0b21Db250ZW50O1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBnZXQgaWNvbkxlZnRDb250ZW50KCk6IFBvbHltb3JwaGV1c0NvbnRlbnQ8XG4gICAgICAgIFR1aUNvbnRleHQ8VHVpU2l6ZUwgfCBUdWlTaXplUz5cbiAgICA+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY29udHJvbGxlci5pY29uU3RhcnQ7XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIGdldCBpY29uQ29udGVudCgpOiBQb2x5bW9ycGhldXNDb250ZW50PFR1aUNvbnRleHQ8VHVpU2l6ZUwgfCBUdWlTaXplUz4+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY29udHJvbGxlci5pY29uO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBnZXQgaWNvbkNsZWFuZXIoKTogUG9seW1vcnBoZXVzQ29udGVudDxUdWlDb250ZXh0PFR1aVNpemVMIHwgVHVpU2l6ZVM+PiB7XG4gICAgICAgIHJldHVybiB0aGlzLmNvbnRyb2xsZXIub3B0aW9ucy5pY29uQ2xlYW5lcjtcbiAgICB9XG5cbiAgICBwcm90ZWN0ZWQgZ2V0IGhhc0V4YW1wbGVUZXh0KCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gKFxuICAgICAgICAgICAgISF0aGlzLnRleHRmaWVsZD8ubmF0aXZlRWxlbWVudC5wbGFjZWhvbGRlciAmJlxuICAgICAgICAgICAgdGhpcy5mb2N1c2VkICYmXG4gICAgICAgICAgICAhdGhpcy5oYXNWYWx1ZSAmJlxuICAgICAgICAgICAgIXRoaXMucmVhZE9ubHlcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwcm90ZWN0ZWQgZ2V0IHBsYWNlaG9sZGVyUmFpc2VkKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gKFxuICAgICAgICAgICAgdGhpcy5wbGFjZWhvbGRlclJhaXNhYmxlICYmXG4gICAgICAgICAgICAoKHRoaXMuY29tcHV0ZWRGb2N1c2VkICYmICF0aGlzLnJlYWRPbmx5KSB8fCB0aGlzLmhhc1ZhbHVlKVxuICAgICAgICApO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBnZXQgZml0dGVkQ29udGVudCgpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy52YWx1ZS5zbGljZSgwLCB0aGlzLm1heExlbmd0aCB8fCBJbmZpbml0eSk7XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIGdldCBleHRyYUNvbnRlbnQoKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIHRoaXMudmFsdWUuc2xpY2UodGhpcy5tYXhMZW5ndGggfHwgSW5maW5pdHkpO1xuICAgIH1cblxuICAgIEBIb3N0TGlzdGVuZXIoJ2ZvY3VzaW4nLCBbJ3RydWUnXSlcbiAgICBASG9zdExpc3RlbmVyKCdmb2N1c291dCcsIFsnZmFsc2UnXSlcbiAgICBwcm90ZWN0ZWQgb25Gb2N1c2VkKGZvY3VzZWQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICAgICAgdGhpcy51cGRhdGVGb2N1c2VkKGZvY3VzZWQpO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBvbk1vdXNlRG93bihldmVudDogTW91c2VFdmVudCk6IHZvaWQge1xuICAgICAgICBpZiAoZXZlbnQudGFyZ2V0ID09PSB0aGlzLm5hdGl2ZUZvY3VzYWJsZUVsZW1lbnQpIHtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuXG4gICAgICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG5cbiAgICAgICAgaWYgKHRoaXMubmF0aXZlRm9jdXNhYmxlRWxlbWVudCkge1xuICAgICAgICAgICAgdGhpcy5uYXRpdmVGb2N1c2FibGVFbGVtZW50LmZvY3VzKCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwcm90ZWN0ZWQgZ2V0RmFsbGJhY2tWYWx1ZSgpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gJyc7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBnZXQgbGluZUhlaWdodCgpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gdGhpcy5jb250cm9sbGVyLnNpemUgPT09ICdtJyA/IExJTkVfSEVJR0hUX00gOiBMSU5FX0hFSUdIVF9MO1xuICAgIH1cblxuICAgIHByaXZhdGUgZ2V0IHBsYWNlaG9sZGVyUmFpc2FibGUoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLnNpemUgIT09ICdzJyAmJiAhdGhpcy5jb250cm9sbGVyLmxhYmVsT3V0c2lkZTtcbiAgICB9XG59XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwiaGludE9wdGlvbnM/LmNoYW5nZSQgfCBhc3luY1wiIC8+XG48ZGl2XG4gICAgYXV0b21hdGlvbi1pZD1cInR1aS10ZXh0LWFyZWFfX3dyYXBwZXJcIlxuICAgIHR1aVdyYXBwZXJcbiAgICBjbGFzcz1cInQtb3V0bGluZVwiXG4gICAgW2FwcGVhcmFuY2VdPVwiYXBwZWFyYW5jZVwiXG4gICAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICBbZm9jdXNdPVwiY29tcHV0ZWRGb2N1c2VkXCJcbiAgICBbaG92ZXJdPVwicHNldWRvSG92ZXJcIlxuICAgIFtpbnZhbGlkXT1cImNvbXB1dGVkSW52YWxpZFwiXG4gICAgW3JlYWRPbmx5XT1cInJlYWRPbmx5XCJcbj5cbiAgICA8ZGl2XG4gICAgICAgICpuZ0lmPVwiaGFzQ291bnRlclwiXG4gICAgICAgIGF1dG9tYXRpb24taWQ9XCJ0dWktdGV4dC1hcmVhX19jb3VudGVyXCJcbiAgICAgICAgY2xhc3M9XCJ0LWNvdW50ZXJcIlxuICAgID5cbiAgICAgICAge3sgdmFsdWUubGVuZ3RoIH19L3t7IG1heExlbmd0aCB9fVxuICAgIDwvZGl2PlxuXG4gICAgPGxhYmVsXG4gICAgICAgIGNsYXNzPVwidC1jb250ZW50XCJcbiAgICAgICAgKG1vdXNlZG93bik9XCJvbk1vdXNlRG93bigkZXZlbnQpXCJcbiAgICA+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0LXdyYXBwZXJcIj5cbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAqbmdJZj1cImhhc1BsYWNlaG9sZGVyXCJcbiAgICAgICAgICAgICAgICBhdXRvbWF0aW9uLWlkPVwidHVpLXRleHQtYXJlYV9fcGxhY2Vob2xkZXJcIlxuICAgICAgICAgICAgICAgIGNsYXNzPVwidC1wbGFjZWhvbGRlclwiXG4gICAgICAgICAgICAgICAgW2NsYXNzLnQtcGxhY2Vob2xkZXJfcmFpc2VkXT1cInBsYWNlaG9sZGVyUmFpc2VkXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8bmctY29udGVudCAvPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8dHVpLXNjcm9sbGJhclxuICAgICAgICAgICAgICAgIGF1dG9tYXRpb24taWQ9XCJ0dWktdGV4dC1hcmVhX19zY3JvbGxiYXJcIlxuICAgICAgICAgICAgICAgIGNsYXNzPVwidC1ib3hcIlxuICAgICAgICAgICAgICAgIFtzdHlsZS5tYXhIZWlnaHQucHhdPVwiY29tcHV0ZU1heEhlaWdodFwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInQtaW5wdXQtd3JhcHBlclwiPlxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidC1yZWxhdGl2ZVwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGFyaWEtaGlkZGVuPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0LXBzZXVkby1jb250ZW50XCJcbiAgICAgICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBbdGV4dENvbnRlbnRdPVwiZml0dGVkQ29udGVudCB8fCBuYXRpdmVGb2N1c2FibGVFbGVtZW50Py5wbGFjZWhvbGRlclwiPjwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInQtcHNldWRvLWNvbnRlbnRfX2V4dHJhXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3RleHRDb250ZW50XT1cImV4dHJhQ29udGVudFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPjwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInQtY2FyZXRcIj48L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDx0ZXh0YXJlYVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICNmb2N1c2FibGVFbGVtZW50XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgYXV0b21hdGlvbi1pZD1cInR1aS10ZXh0LWFyZWFfX25hdGl2ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0LWlucHV0XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiY29tcHV0ZWREaXNhYmxlZFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW2lkXT1cImlkXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBbcmVhZE9ubHldPVwicmVhZE9ubHlcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFt0YWJJbmRleF09XCJjb21wdXRlZEZvY3VzYWJsZSA/IDAgOiAtMVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJ2YWx1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICA+PC90ZXh0YXJlYT5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cInRleHRhcmVhXCIgLz5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L3R1aS1zY3JvbGxiYXI+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8ZGl2IGNsYXNzPVwidC1pY29uc1wiPlxuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICpuZ0lmPVwiaWNvbkxlZnRDb250ZW50XCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cInQtaWNvbiB0LWljb25fbGVmdCB0LXRleHRmaWVsZC1pY29uXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8dHVpLWljb25cbiAgICAgICAgICAgICAgICAgICAgKnBvbHltb3JwaGV1c091dGxldD1cImljb25MZWZ0Q29udGVudCBhcyBzcmM7IGNvbnRleHQ6IHskaW1wbGljaXQ6IHNpemV9XCJcbiAgICAgICAgICAgICAgICAgICAgdHVpQXBwZWFyYW5jZT1cImljb25cIlxuICAgICAgICAgICAgICAgICAgICBbaWNvbl09XCJzcmMudG9TdHJpbmcoKVwiXG4gICAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImhhc0N1c3RvbUNvbnRlbnRcIj5cbiAgICAgICAgICAgICAgICA8dHVpLWljb25cbiAgICAgICAgICAgICAgICAgICAgKnBvbHltb3JwaGV1c091dGxldD1cImNvbnRyb2xsZXIuY3VzdG9tQ29udGVudCBhcyBzcmNcIlxuICAgICAgICAgICAgICAgICAgICBbaWNvbl09XCJzcmNcIlxuICAgICAgICAgICAgICAgIC8+XG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJoYXNDbGVhbmVyXCI+XG4gICAgICAgICAgICAgICAgPHR1aS1pY29uXG4gICAgICAgICAgICAgICAgICAgICpwb2x5bW9ycGhldXNPdXRsZXQ9XCJpY29uQ2xlYW5lciBhcyBzcmM7IGNvbnRleHQ6IHskaW1wbGljaXQ6IHNpemV9XCJcbiAgICAgICAgICAgICAgICAgICAgdHVpQXBwZWFyYW5jZT1cImljb25cIlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInQtY2xlYW5lclwiXG4gICAgICAgICAgICAgICAgICAgIFtpY29uXT1cInNyYy50b1N0cmluZygpXCJcbiAgICAgICAgICAgICAgICAgICAgKGNsaWNrLnN0b3ApPVwib25WYWx1ZUNoYW5nZSgnJylcIlxuICAgICAgICAgICAgICAgIC8+XG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDx0dWktdG9vbHRpcFxuICAgICAgICAgICAgICAgICpuZ0lmPVwiaGFzVG9vbHRpcFwiXG4gICAgICAgICAgICAgICAgYXV0b21hdGlvbi1pZD1cInR1aS10ZXh0LWFyZWFfX3Rvb2x0aXBcIlxuICAgICAgICAgICAgICAgIFtjb250ZW50XT1cImhpbnRPcHRpb25zPy5jb250ZW50XCJcbiAgICAgICAgICAgICAgICBbZGVzY3JpYmVJZF09XCJpZFwiXG4gICAgICAgICAgICAvPlxuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICpuZ0lmPVwiaWNvbkNvbnRlbnRcIlxuICAgICAgICAgICAgICAgIGNsYXNzPVwidC1pY29uIHQtdGV4dGZpZWxkLWljb25cIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIDx0dWktaWNvblxuICAgICAgICAgICAgICAgICAgICAqcG9seW1vcnBoZXVzT3V0bGV0PVwiaWNvbkNvbnRlbnQgYXMgc3JjOyBjb250ZXh0OiB7JGltcGxpY2l0OiBzaXplfVwiXG4gICAgICAgICAgICAgICAgICAgIHR1aUFwcGVhcmFuY2U9XCJpY29uXCJcbiAgICAgICAgICAgICAgICAgICAgW2ljb25dPVwic3JjLnRvU3RyaW5nKClcIlxuICAgICAgICAgICAgICAgIC8+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9sYWJlbD5cbjwvZGl2PlxuIl19
@@ -0,0 +1,23 @@
1
+ import { Directive } from '@angular/core';
2
+ import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
3
+ import { tuiAsTextfieldHost } from '@taiga-ui/legacy/tokens';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * @deprecated: drop in v5.0
7
+ */
8
+ class TuiTextareaDirective extends AbstractTuiTextfieldHost {
9
+ onValueChange(value) {
10
+ this.host.onValueChange(value);
11
+ }
12
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
13
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiTextareaDirective, selector: "tui-textarea", providers: [tuiAsTextfieldHost(TuiTextareaDirective)], usesInheritance: true, ngImport: i0 }); }
14
+ }
15
+ export { TuiTextareaDirective };
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaDirective, decorators: [{
17
+ type: Directive,
18
+ args: [{
19
+ selector: 'tui-textarea',
20
+ providers: [tuiAsTextfieldHost(TuiTextareaDirective)],
21
+ }]
22
+ }] });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2NvbXBvbmVudHMvdGV4dGFyZWEvdGV4dGFyZWEuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDeEMsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFDbEUsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0seUJBQXlCLENBQUM7O0FBSTNEOztHQUVHO0FBQ0gsTUFJYSxvQkFBcUIsU0FBUSx3QkFBOEM7SUFDN0UsYUFBYSxDQUFDLEtBQWE7UUFDOUIsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDbkMsQ0FBQzsrR0FIUSxvQkFBb0I7bUdBQXBCLG9CQUFvQix1Q0FGbEIsQ0FBQyxrQkFBa0IsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDOztTQUU1QyxvQkFBb0I7NEZBQXBCLG9CQUFvQjtrQkFKaEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsY0FBYztvQkFDeEIsU0FBUyxFQUFFLENBQUMsa0JBQWtCLHNCQUFzQixDQUFDO2lCQUN4RCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RUdWlUZXh0ZmllbGRIb3N0fSBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2NsYXNzZXMnO1xuaW1wb3J0IHt0dWlBc1RleHRmaWVsZEhvc3R9IGZyb20gJ0B0YWlnYS11aS9sZWdhY3kvdG9rZW5zJztcblxuaW1wb3J0IHR5cGUge1R1aVRleHRhcmVhQ29tcG9uZW50fSBmcm9tICcuL3RleHRhcmVhLmNvbXBvbmVudCc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQ6IGRyb3AgaW4gdjUuMFxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ3R1aS10ZXh0YXJlYScsXG4gICAgcHJvdmlkZXJzOiBbdHVpQXNUZXh0ZmllbGRIb3N0KFR1aVRleHRhcmVhRGlyZWN0aXZlKV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVRleHRhcmVhRGlyZWN0aXZlIGV4dGVuZHMgQWJzdHJhY3RUdWlUZXh0ZmllbGRIb3N0PFR1aVRleHRhcmVhQ29tcG9uZW50PiB7XG4gICAgcHVibGljIG9uVmFsdWVDaGFuZ2UodmFsdWU6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLmhvc3Qub25WYWx1ZUNoYW5nZSh2YWx1ZSk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,67 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { FormsModule } from '@angular/forms';
4
+ import { TuiIcon } from '@taiga-ui/core/components/icon';
5
+ import { TuiScrollbar } from '@taiga-ui/core/components/scrollbar';
6
+ import { TuiAppearance } from '@taiga-ui/core/directives/appearance';
7
+ import { TuiPrimitiveTextfieldModule, TuiTextfieldComponent, } from '@taiga-ui/legacy/components/primitive-textfield';
8
+ import { TuiTooltipModule } from '@taiga-ui/legacy/components/tooltip';
9
+ import { TuiWrapperModule } from '@taiga-ui/legacy/directives';
10
+ import { PolymorpheusOutlet, PolymorpheusTemplate } from '@taiga-ui/polymorpheus';
11
+ import { TuiTextareaComponent } from './textarea.component';
12
+ import { TuiTextareaDirective } from './textarea.directive';
13
+ import * as i0 from "@angular/core";
14
+ /**
15
+ * @deprecated: drop in v5.0
16
+ */
17
+ class TuiTextareaModule {
18
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
19
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaModule, declarations: [TuiTextareaComponent, TuiTextareaDirective], imports: [CommonModule,
20
+ FormsModule,
21
+ TuiScrollbar,
22
+ TuiTooltipModule,
23
+ TuiWrapperModule,
24
+ TuiPrimitiveTextfieldModule,
25
+ PolymorpheusOutlet,
26
+ PolymorpheusTemplate,
27
+ TuiIcon,
28
+ TuiAppearance], exports: [TuiTextareaComponent,
29
+ TuiTextareaDirective,
30
+ TuiTextfieldComponent,
31
+ PolymorpheusOutlet,
32
+ PolymorpheusTemplate] }); }
33
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaModule, imports: [CommonModule,
34
+ FormsModule,
35
+ TuiScrollbar,
36
+ TuiTooltipModule,
37
+ TuiWrapperModule,
38
+ TuiPrimitiveTextfieldModule,
39
+ TuiIcon] }); }
40
+ }
41
+ export { TuiTextareaModule };
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTextareaModule, decorators: [{
43
+ type: NgModule,
44
+ args: [{
45
+ imports: [
46
+ CommonModule,
47
+ FormsModule,
48
+ TuiScrollbar,
49
+ TuiTooltipModule,
50
+ TuiWrapperModule,
51
+ TuiPrimitiveTextfieldModule,
52
+ PolymorpheusOutlet,
53
+ PolymorpheusTemplate,
54
+ TuiIcon,
55
+ TuiAppearance,
56
+ ],
57
+ declarations: [TuiTextareaComponent, TuiTextareaDirective],
58
+ exports: [
59
+ TuiTextareaComponent,
60
+ TuiTextareaDirective,
61
+ TuiTextfieldComponent,
62
+ PolymorpheusOutlet,
63
+ PolymorpheusTemplate,
64
+ ],
65
+ }]
66
+ }] });
67
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2NvbXBvbmVudHMvdGV4dGFyZWEvdGV4dGFyZWEubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sZ0NBQWdDLENBQUM7QUFDdkQsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBQ2pFLE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxzQ0FBc0MsQ0FBQztBQUNuRSxPQUFPLEVBQ0gsMkJBQTJCLEVBQzNCLHFCQUFxQixHQUN4QixNQUFNLGlEQUFpRCxDQUFDO0FBQ3pELE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBQ3JFLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBQzdELE9BQU8sRUFBQyxrQkFBa0IsRUFBRSxvQkFBb0IsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBRWhGLE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQzFELE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDOztBQUUxRDs7R0FFRztBQUNILE1Bc0JhLGlCQUFpQjsrR0FBakIsaUJBQWlCO2dIQUFqQixpQkFBaUIsaUJBVFgsb0JBQW9CLEVBQUUsb0JBQW9CLGFBWHJELFlBQVk7WUFDWixXQUFXO1lBQ1gsWUFBWTtZQUNaLGdCQUFnQjtZQUNoQixnQkFBZ0I7WUFDaEIsMkJBQTJCO1lBQzNCLGtCQUFrQjtZQUNsQixvQkFBb0I7WUFDcEIsT0FBTztZQUNQLGFBQWEsYUFJYixvQkFBb0I7WUFDcEIsb0JBQW9CO1lBQ3BCLHFCQUFxQjtZQUNyQixrQkFBa0I7WUFDbEIsb0JBQW9CO2dIQUdmLGlCQUFpQixZQXBCdEIsWUFBWTtZQUNaLFdBQVc7WUFDWCxZQUFZO1lBQ1osZ0JBQWdCO1lBQ2hCLGdCQUFnQjtZQUNoQiwyQkFBMkI7WUFHM0IsT0FBTzs7U0FZRixpQkFBaUI7NEZBQWpCLGlCQUFpQjtrQkF0QjdCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFO3dCQUNMLFlBQVk7d0JBQ1osV0FBVzt3QkFDWCxZQUFZO3dCQUNaLGdCQUFnQjt3QkFDaEIsZ0JBQWdCO3dCQUNoQiwyQkFBMkI7d0JBQzNCLGtCQUFrQjt3QkFDbEIsb0JBQW9CO3dCQUNwQixPQUFPO3dCQUNQLGFBQWE7cUJBQ2hCO29CQUNELFlBQVksRUFBRSxDQUFDLG9CQUFvQixFQUFFLG9CQUFvQixDQUFDO29CQUMxRCxPQUFPLEVBQUU7d0JBQ0wsb0JBQW9CO3dCQUNwQixvQkFBb0I7d0JBQ3BCLHFCQUFxQjt3QkFDckIsa0JBQWtCO3dCQUNsQixvQkFBb0I7cUJBQ3ZCO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7Rm9ybXNNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7VHVpSWNvbn0gZnJvbSAnQHRhaWdhLXVpL2NvcmUvY29tcG9uZW50cy9pY29uJztcbmltcG9ydCB7VHVpU2Nyb2xsYmFyfSBmcm9tICdAdGFpZ2EtdWkvY29yZS9jb21wb25lbnRzL3Njcm9sbGJhcic7XG5pbXBvcnQge1R1aUFwcGVhcmFuY2V9IGZyb20gJ0B0YWlnYS11aS9jb3JlL2RpcmVjdGl2ZXMvYXBwZWFyYW5jZSc7XG5pbXBvcnQge1xuICAgIFR1aVByaW1pdGl2ZVRleHRmaWVsZE1vZHVsZSxcbiAgICBUdWlUZXh0ZmllbGRDb21wb25lbnQsXG59IGZyb20gJ0B0YWlnYS11aS9sZWdhY3kvY29tcG9uZW50cy9wcmltaXRpdmUtdGV4dGZpZWxkJztcbmltcG9ydCB7VHVpVG9vbHRpcE1vZHVsZX0gZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeS9jb21wb25lbnRzL3Rvb2x0aXAnO1xuaW1wb3J0IHtUdWlXcmFwcGVyTW9kdWxlfSBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHtQb2x5bW9ycGhldXNPdXRsZXQsIFBvbHltb3JwaGV1c1RlbXBsYXRlfSBmcm9tICdAdGFpZ2EtdWkvcG9seW1vcnBoZXVzJztcblxuaW1wb3J0IHtUdWlUZXh0YXJlYUNvbXBvbmVudH0gZnJvbSAnLi90ZXh0YXJlYS5jb21wb25lbnQnO1xuaW1wb3J0IHtUdWlUZXh0YXJlYURpcmVjdGl2ZX0gZnJvbSAnLi90ZXh0YXJlYS5kaXJlY3RpdmUnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIENvbW1vbk1vZHVsZSxcbiAgICAgICAgRm9ybXNNb2R1bGUsXG4gICAgICAgIFR1aVNjcm9sbGJhcixcbiAgICAgICAgVHVpVG9vbHRpcE1vZHVsZSxcbiAgICAgICAgVHVpV3JhcHBlck1vZHVsZSxcbiAgICAgICAgVHVpUHJpbWl0aXZlVGV4dGZpZWxkTW9kdWxlLFxuICAgICAgICBQb2x5bW9ycGhldXNPdXRsZXQsXG4gICAgICAgIFBvbHltb3JwaGV1c1RlbXBsYXRlLFxuICAgICAgICBUdWlJY29uLFxuICAgICAgICBUdWlBcHBlYXJhbmNlLFxuICAgIF0sXG4gICAgZGVjbGFyYXRpb25zOiBbVHVpVGV4dGFyZWFDb21wb25lbnQsIFR1aVRleHRhcmVhRGlyZWN0aXZlXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFR1aVRleHRhcmVhQ29tcG9uZW50LFxuICAgICAgICBUdWlUZXh0YXJlYURpcmVjdGl2ZSxcbiAgICAgICAgVHVpVGV4dGZpZWxkQ29tcG9uZW50LFxuICAgICAgICBQb2x5bW9ycGhldXNPdXRsZXQsXG4gICAgICAgIFBvbHltb3JwaGV1c1RlbXBsYXRlLFxuICAgIF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVRleHRhcmVhTW9kdWxlIHt9XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './tooltip.component';
2
+ export * from './tooltip.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvY29tcG9uZW50cy90b29sdGlwL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxrQkFBa0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vdG9vbHRpcC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90b29sdGlwLm1vZHVsZSc7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktbGVnYWN5LWNvbXBvbmVudHMtdG9vbHRpcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2xlZ2FjeS9jb21wb25lbnRzL3Rvb2x0aXAvdGFpZ2EtdWktbGVnYWN5LWNvbXBvbmVudHMtdG9vbHRpcC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
@@ -0,0 +1,50 @@
1
+ import { ChangeDetectionStrategy, Component, HostBinding, HostListener, inject, Input, ViewChild, } from '@angular/core';
2
+ import { TUI_IS_MOBILE } from '@taiga-ui/cdk/tokens';
3
+ import { TuiHintHover, TuiHintOptionsDirective } from '@taiga-ui/core/directives/hint';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@taiga-ui/core/components/icon";
6
+ import * as i2 from "@taiga-ui/polymorpheus";
7
+ import * as i3 from "@taiga-ui/core/directives/appearance";
8
+ import * as i4 from "@taiga-ui/core/directives/hint";
9
+ import * as i5 from "@angular/common";
10
+ /**
11
+ * @deprecated: drop in v5.0
12
+ */
13
+ class TuiTooltipComponent extends TuiHintOptionsDirective {
14
+ constructor() {
15
+ super(...arguments);
16
+ this.isMobile = inject(TUI_IS_MOBILE);
17
+ this.describeId = '';
18
+ }
19
+ get computedAppearance() {
20
+ return this.appearance || '';
21
+ }
22
+ stopOnMobile(event) {
23
+ if (this.isMobile) {
24
+ event.preventDefault();
25
+ event.stopPropagation();
26
+ }
27
+ this.driver$?.toggle();
28
+ }
29
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTooltipComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
30
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TuiTooltipComponent, selector: "tui-tooltip", inputs: { content: "content", direction: "direction", appearance: "appearance", showDelay: "showDelay", hideDelay: "hideDelay", describeId: "describeId", context: "context" }, host: { listeners: { "mousedown": "stopOnMobile($event)" }, properties: { "attr.data-appearance": "this.computedAppearance" } }, viewQueries: [{ propertyName: "driver$", first: true, predicate: TuiHintHover, descendants: true }], usesInheritance: true, ngImport: i0, template: "<span\n #driver=\"tuiHintHover\"\n automation-id=\"tui-tooltip__icon\"\n tuiAppearance=\"icon\"\n class=\"t-tooltip-icon\"\n [tuiAppearanceState]=\"(driver | async) ? 'hover' : null\"\n [tuiHint]=\"content\"\n [tuiHintAppearance]=\"computedAppearance\"\n [tuiHintContext]=\"context\"\n [tuiHintDescribe]=\"describeId\"\n [tuiHintDirection]=\"direction\"\n [tuiHintHideDelay]=\"hideDelay\"\n [tuiHintShowDelay]=\"showDelay\"\n>\n <tui-icon\n *polymorpheusOutlet=\"icon as src\"\n class=\"t-icon\"\n [icon]=\"src\"\n />\n</span>\n", styles: [":host{transition-property:color;transition-duration:var(--tui-duration, .3s);transition-timing-function:ease-in-out;position:relative;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;font-size:0;line-height:0;pointer-events:auto;cursor:pointer;color:var(--tui-text-primary)}:host[data-appearance=error]{color:var(--tui-text-negative)}.t-tooltip-icon{display:inline-block;width:100%;height:100%}.t-icon{border:.25rem solid transparent}\n"], dependencies: [{ kind: "component", type: i1.TuiIcon, selector: "tui-icon", inputs: ["icon", "background"] }, { kind: "directive", type: i2.PolymorpheusOutlet, selector: "[polymorpheusOutlet]", inputs: ["polymorpheusOutlet", "polymorpheusOutletContext"] }, { kind: "directive", type: i3.TuiAppearance, selector: "[tuiAppearance]", inputs: ["tuiAppearance", "tuiAppearanceState", "tuiAppearanceFocus"] }, { kind: "directive", type: i4.TuiHintDirective, selector: "[tuiHint]:not(ng-container):not(ng-template)", inputs: ["tuiHintContext", "tuiHintAppearance", "tuiHint"] }, { kind: "directive", type: i4.TuiHintDescribe, selector: "[tuiHintDescribe]", inputs: ["tuiHintDescribe"] }, { kind: "pipe", type: i5.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
31
+ }
32
+ export { TuiTooltipComponent };
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTooltipComponent, decorators: [{
34
+ type: Component,
35
+ args: [{ selector: 'tui-tooltip', changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['content', 'direction', 'appearance', 'showDelay', 'hideDelay'], template: "<span\n #driver=\"tuiHintHover\"\n automation-id=\"tui-tooltip__icon\"\n tuiAppearance=\"icon\"\n class=\"t-tooltip-icon\"\n [tuiAppearanceState]=\"(driver | async) ? 'hover' : null\"\n [tuiHint]=\"content\"\n [tuiHintAppearance]=\"computedAppearance\"\n [tuiHintContext]=\"context\"\n [tuiHintDescribe]=\"describeId\"\n [tuiHintDirection]=\"direction\"\n [tuiHintHideDelay]=\"hideDelay\"\n [tuiHintShowDelay]=\"showDelay\"\n>\n <tui-icon\n *polymorpheusOutlet=\"icon as src\"\n class=\"t-icon\"\n [icon]=\"src\"\n />\n</span>\n", styles: [":host{transition-property:color;transition-duration:var(--tui-duration, .3s);transition-timing-function:ease-in-out;position:relative;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;font-size:0;line-height:0;pointer-events:auto;cursor:pointer;color:var(--tui-text-primary)}:host[data-appearance=error]{color:var(--tui-text-negative)}.t-tooltip-icon{display:inline-block;width:100%;height:100%}.t-icon{border:.25rem solid transparent}\n"] }]
36
+ }], propDecorators: { driver$: [{
37
+ type: ViewChild,
38
+ args: [TuiHintHover]
39
+ }], describeId: [{
40
+ type: Input
41
+ }], context: [{
42
+ type: Input
43
+ }], computedAppearance: [{
44
+ type: HostBinding,
45
+ args: ['attr.data-appearance']
46
+ }], stopOnMobile: [{
47
+ type: HostListener,
48
+ args: ['mousedown', ['$event']]
49
+ }] } });
50
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvY29tcG9uZW50cy90b29sdGlwL3Rvb2x0aXAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbGVnYWN5L2NvbXBvbmVudHMvdG9vbHRpcC90b29sdGlwLnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsV0FBVyxFQUNYLFlBQVksRUFDWixNQUFNLEVBQ04sS0FBSyxFQUNMLFNBQVMsR0FDWixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sc0JBQXNCLENBQUM7QUFDbkQsT0FBTyxFQUFDLFlBQVksRUFBRSx1QkFBdUIsRUFBQyxNQUFNLGdDQUFnQyxDQUFDOzs7Ozs7O0FBRXJGOztHQUVHO0FBQ0gsTUFPYSxtQkFBNkIsU0FBUSx1QkFBdUI7SUFQekU7O1FBUXFCLGFBQVEsR0FBRyxNQUFNLENBQUMsYUFBYSxDQUFDLENBQUM7UUFNM0MsZUFBVSxHQUFHLEVBQUUsQ0FBQztLQW1CMUI7SUFkRyxJQUNjLGtCQUFrQjtRQUM1QixPQUFPLElBQUksQ0FBQyxVQUFVLElBQUksRUFBRSxDQUFDO0lBQ2pDLENBQUM7SUFHUyxZQUFZLENBQUMsS0FBaUI7UUFDcEMsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2YsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1lBQ3ZCLEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztTQUMzQjtRQUVELElBQUksQ0FBQyxPQUFPLEVBQUUsTUFBTSxFQUFFLENBQUM7SUFDM0IsQ0FBQzsrR0F6QlEsbUJBQW1CO21HQUFuQixtQkFBbUIsNllBR2pCLFlBQVksdUVDekIzQixpbEJBb0JBOztTREVhLG1CQUFtQjs0RkFBbkIsbUJBQW1CO2tCQVAvQixTQUFTOytCQUNJLGFBQWEsbUJBR04sdUJBQXVCLENBQUMsTUFBTSxVQUN2QyxDQUFDLFNBQVMsRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxXQUFXLENBQUM7OEJBTXJELE9BQU87c0JBRHpCLFNBQVM7dUJBQUMsWUFBWTtnQkFJaEIsVUFBVTtzQkFEaEIsS0FBSztnQkFJQyxPQUFPO3NCQURiLEtBQUs7Z0JBSVEsa0JBQWtCO3NCQUQvQixXQUFXO3VCQUFDLHNCQUFzQjtnQkFNekIsWUFBWTtzQkFEckIsWUFBWTt1QkFBQyxXQUFXLEVBQUUsQ0FBQyxRQUFRLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBIb3N0QmluZGluZyxcbiAgICBIb3N0TGlzdGVuZXIsXG4gICAgaW5qZWN0LFxuICAgIElucHV0LFxuICAgIFZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RVSV9JU19NT0JJTEV9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcbmltcG9ydCB7VHVpSGludEhvdmVyLCBUdWlIaW50T3B0aW9uc0RpcmVjdGl2ZX0gZnJvbSAnQHRhaWdhLXVpL2NvcmUvZGlyZWN0aXZlcy9oaW50JztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZDogZHJvcCBpbiB2NS4wXG4gKi9cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAndHVpLXRvb2x0aXAnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi90b29sdGlwLnRlbXBsYXRlLmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3Rvb2x0aXAuc3R5bGUubGVzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICAgIGlucHV0czogWydjb250ZW50JywgJ2RpcmVjdGlvbicsICdhcHBlYXJhbmNlJywgJ3Nob3dEZWxheScsICdoaWRlRGVsYXknXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVG9vbHRpcENvbXBvbmVudDxDID0gYW55PiBleHRlbmRzIFR1aUhpbnRPcHRpb25zRGlyZWN0aXZlIHtcbiAgICBwcml2YXRlIHJlYWRvbmx5IGlzTW9iaWxlID0gaW5qZWN0KFRVSV9JU19NT0JJTEUpO1xuXG4gICAgQFZpZXdDaGlsZChUdWlIaW50SG92ZXIpXG4gICAgcHJvdGVjdGVkIHJlYWRvbmx5IGRyaXZlciQ/OiBUdWlIaW50SG92ZXI7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBkZXNjcmliZUlkID0gJyc7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBjb250ZXh0PzogQztcblxuICAgIEBIb3N0QmluZGluZygnYXR0ci5kYXRhLWFwcGVhcmFuY2UnKVxuICAgIHByb3RlY3RlZCBnZXQgY29tcHV0ZWRBcHBlYXJhbmNlKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmFwcGVhcmFuY2UgfHwgJyc7XG4gICAgfVxuXG4gICAgQEhvc3RMaXN0ZW5lcignbW91c2Vkb3duJywgWyckZXZlbnQnXSlcbiAgICBwcm90ZWN0ZWQgc3RvcE9uTW9iaWxlKGV2ZW50OiBNb3VzZUV2ZW50KTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmlzTW9iaWxlKSB7XG4gICAgICAgICAgICBldmVudC5wcmV2ZW50RGVmYXVsdCgpO1xuICAgICAgICAgICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLmRyaXZlciQ/LnRvZ2dsZSgpO1xuICAgIH1cbn1cbiIsIjxzcGFuXG4gICAgI2RyaXZlcj1cInR1aUhpbnRIb3ZlclwiXG4gICAgYXV0b21hdGlvbi1pZD1cInR1aS10b29sdGlwX19pY29uXCJcbiAgICB0dWlBcHBlYXJhbmNlPVwiaWNvblwiXG4gICAgY2xhc3M9XCJ0LXRvb2x0aXAtaWNvblwiXG4gICAgW3R1aUFwcGVhcmFuY2VTdGF0ZV09XCIoZHJpdmVyIHwgYXN5bmMpID8gJ2hvdmVyJyA6IG51bGxcIlxuICAgIFt0dWlIaW50XT1cImNvbnRlbnRcIlxuICAgIFt0dWlIaW50QXBwZWFyYW5jZV09XCJjb21wdXRlZEFwcGVhcmFuY2VcIlxuICAgIFt0dWlIaW50Q29udGV4dF09XCJjb250ZXh0XCJcbiAgICBbdHVpSGludERlc2NyaWJlXT1cImRlc2NyaWJlSWRcIlxuICAgIFt0dWlIaW50RGlyZWN0aW9uXT1cImRpcmVjdGlvblwiXG4gICAgW3R1aUhpbnRIaWRlRGVsYXldPVwiaGlkZURlbGF5XCJcbiAgICBbdHVpSGludFNob3dEZWxheV09XCJzaG93RGVsYXlcIlxuPlxuICAgIDx0dWktaWNvblxuICAgICAgICAqcG9seW1vcnBoZXVzT3V0bGV0PVwiaWNvbiBhcyBzcmNcIlxuICAgICAgICBjbGFzcz1cInQtaWNvblwiXG4gICAgICAgIFtpY29uXT1cInNyY1wiXG4gICAgLz5cbjwvc3Bhbj5cbiJdfQ==
@@ -0,0 +1,27 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { TuiIcon } from '@taiga-ui/core/components/icon';
4
+ import { TuiAppearance } from '@taiga-ui/core/directives/appearance';
5
+ import { TuiHint } from '@taiga-ui/core/directives/hint';
6
+ import { PolymorpheusOutlet } from '@taiga-ui/polymorpheus';
7
+ import { TuiTooltipComponent } from './tooltip.component';
8
+ import * as i0 from "@angular/core";
9
+ import * as i1 from "@taiga-ui/core/directives/hint";
10
+ /**
11
+ * @deprecated: drop in v5.0
12
+ */
13
+ class TuiTooltipModule {
14
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
15
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TuiTooltipModule, declarations: [TuiTooltipComponent], imports: [CommonModule, TuiIcon, PolymorpheusOutlet, TuiAppearance, i1.TuiHintComponent, i1.TuiHintDirective, i1.TuiHintOptionsDirective, i1.TuiHintUnstyled, i1.TuiHintDriver, i1.TuiHintPosition, i1.TuiHintHover, i1.TuiHintDescribe, i1.TuiHintHost, i1.TuiHintManual, i1.TuiHintPointer], exports: [TuiTooltipComponent] }); }
16
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTooltipModule, imports: [CommonModule, TuiIcon, i1.TuiHintComponent] }); }
17
+ }
18
+ export { TuiTooltipModule };
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiTooltipModule, decorators: [{
20
+ type: NgModule,
21
+ args: [{
22
+ imports: [CommonModule, TuiIcon, PolymorpheusOutlet, TuiAppearance, ...TuiHint],
23
+ declarations: [TuiTooltipComponent],
24
+ exports: [TuiTooltipComponent],
25
+ }]
26
+ }] });
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvY29tcG9uZW50cy90b29sdGlwL3Rvb2x0aXAubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxPQUFPLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN2RCxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sc0NBQXNDLENBQUM7QUFDbkUsT0FBTyxFQUFDLE9BQU8sRUFBQyxNQUFNLGdDQUFnQyxDQUFDO0FBQ3ZELE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBRTFELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLHFCQUFxQixDQUFDOzs7QUFFeEQ7O0dBRUc7QUFDSCxNQUthLGdCQUFnQjsrR0FBaEIsZ0JBQWdCO2dIQUFoQixnQkFBZ0IsaUJBSFYsbUJBQW1CLGFBRHhCLFlBQVksRUFBRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsYUFBYSx1T0FFeEQsbUJBQW1CO2dIQUVwQixnQkFBZ0IsWUFKZixZQUFZLEVBQUUsT0FBTzs7U0FJdEIsZ0JBQWdCOzRGQUFoQixnQkFBZ0I7a0JBTDVCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxhQUFhLEVBQUUsR0FBRyxPQUFPLENBQUM7b0JBQy9FLFlBQVksRUFBRSxDQUFDLG1CQUFtQixDQUFDO29CQUNuQyxPQUFPLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztpQkFDakMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlJY29ufSBmcm9tICdAdGFpZ2EtdWkvY29yZS9jb21wb25lbnRzL2ljb24nO1xuaW1wb3J0IHtUdWlBcHBlYXJhbmNlfSBmcm9tICdAdGFpZ2EtdWkvY29yZS9kaXJlY3RpdmVzL2FwcGVhcmFuY2UnO1xuaW1wb3J0IHtUdWlIaW50fSBmcm9tICdAdGFpZ2EtdWkvY29yZS9kaXJlY3RpdmVzL2hpbnQnO1xuaW1wb3J0IHtQb2x5bW9ycGhldXNPdXRsZXR9IGZyb20gJ0B0YWlnYS11aS9wb2x5bW9ycGhldXMnO1xuXG5pbXBvcnQge1R1aVRvb2x0aXBDb21wb25lbnR9IGZyb20gJy4vdG9vbHRpcC5jb21wb25lbnQnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkOiBkcm9wIGluIHY1LjBcbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBUdWlJY29uLCBQb2x5bW9ycGhldXNPdXRsZXQsIFR1aUFwcGVhcmFuY2UsIC4uLlR1aUhpbnRdLFxuICAgIGRlY2xhcmF0aW9uczogW1R1aVRvb2x0aXBDb21wb25lbnRdLFxuICAgIGV4cG9ydHM6IFtUdWlUb29sdGlwQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpVG9vbHRpcE1vZHVsZSB7fVxuIl19
@@ -0,0 +1,6 @@
1
+ export * from '@taiga-ui/legacy/directives/legacy-dropdown-open-monitor';
2
+ export * from '@taiga-ui/legacy/directives/textfield-controller';
3
+ export * from '@taiga-ui/legacy/directives/unfinished-validator';
4
+ export * from '@taiga-ui/legacy/directives/value-accessor';
5
+ export * from '@taiga-ui/legacy/directives/wrapper';
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBEQUEwRCxDQUFDO0FBQ3pFLGNBQWMsa0RBQWtELENBQUM7QUFDakUsY0FBYyxrREFBa0QsQ0FBQztBQUNqRSxjQUFjLDRDQUE0QyxDQUFDO0FBQzNELGNBQWMscUNBQXFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2RpcmVjdGl2ZXMvbGVnYWN5LWRyb3Bkb3duLW9wZW4tbW9uaXRvcic7XG5leHBvcnQgKiBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2RpcmVjdGl2ZXMvdGV4dGZpZWxkLWNvbnRyb2xsZXInO1xuZXhwb3J0ICogZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeS9kaXJlY3RpdmVzL3VuZmluaXNoZWQtdmFsaWRhdG9yJztcbmV4cG9ydCAqIGZyb20gJ0B0YWlnYS11aS9sZWdhY3kvZGlyZWN0aXZlcy92YWx1ZS1hY2Nlc3Nvcic7XG5leHBvcnQgKiBmcm9tICdAdGFpZ2EtdWkvbGVnYWN5L2RpcmVjdGl2ZXMvd3JhcHBlcic7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './legacy-dropdown-open-monitor';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy9sZWdhY3ktZHJvcGRvd24tb3Blbi1tb25pdG9yL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0NBQWdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xlZ2FjeS1kcm9wZG93bi1vcGVuLW1vbml0b3InO1xuIl19
@@ -0,0 +1,40 @@
1
+ import { Directive, inject } from '@angular/core';
2
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
3
+ import { tuiInjectElement } from '@taiga-ui/cdk/utils/dom';
4
+ import { tuiGetClosestFocusable } from '@taiga-ui/cdk/utils/focus';
5
+ import { TuiDropdownOpen } from '@taiga-ui/core/directives/dropdown';
6
+ import { filter } from 'rxjs';
7
+ import * as i0 from "@angular/core";
8
+ class TuiLegacyDropdownOpenMonitorDirective {
9
+ constructor() {
10
+ this.el = tuiInjectElement();
11
+ this.host = inject(TuiDropdownOpen, { self: true });
12
+ this.external = inject(TuiDropdownOpen, {
13
+ skipSelf: true,
14
+ optional: true,
15
+ });
16
+ this.external?.driver
17
+ .pipe(filter(() => this.host.dropdown === this.external?.dropdown &&
18
+ !this.host.focused), takeUntilDestroyed())
19
+ .subscribe((value) => {
20
+ if (value) {
21
+ tuiGetClosestFocusable({
22
+ initial: this.el,
23
+ root: this.el,
24
+ })?.focus();
25
+ }
26
+ this.host.toggle(value);
27
+ });
28
+ }
29
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiLegacyDropdownOpenMonitorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
30
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TuiLegacyDropdownOpenMonitorDirective, isStandalone: true, selector: "[tuiDropdownOpenMonitor]", ngImport: i0 }); }
31
+ }
32
+ export { TuiLegacyDropdownOpenMonitorDirective };
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TuiLegacyDropdownOpenMonitorDirective, decorators: [{
34
+ type: Directive,
35
+ args: [{
36
+ standalone: true,
37
+ selector: '[tuiDropdownOpenMonitor]',
38
+ }]
39
+ }], ctorParameters: function () { return []; } });
40
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGVnYWN5LWRyb3Bkb3duLW9wZW4tbW9uaXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2xlZ2FjeS9kaXJlY3RpdmVzL2xlZ2FjeS1kcm9wZG93bi1vcGVuLW1vbml0b3IvbGVnYWN5LWRyb3Bkb3duLW9wZW4tbW9uaXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLE1BQU0sRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNoRCxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSw0QkFBNEIsQ0FBQztBQUM5RCxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSwyQkFBMkIsQ0FBQztBQUNqRSxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sb0NBQW9DLENBQUM7QUFDbkUsT0FBTyxFQUFDLE1BQU0sRUFBQyxNQUFNLE1BQU0sQ0FBQzs7QUFFNUIsTUFJYSxxQ0FBcUM7SUFROUM7UUFQaUIsT0FBRSxHQUFHLGdCQUFnQixFQUFFLENBQUM7UUFDeEIsU0FBSSxHQUFHLE1BQU0sQ0FBQyxlQUFlLEVBQUUsRUFBQyxJQUFJLEVBQUUsSUFBSSxFQUFDLENBQUMsQ0FBQztRQUM3QyxhQUFRLEdBQUcsTUFBTSxDQUFDLGVBQWUsRUFBRTtZQUNoRCxRQUFRLEVBQUUsSUFBSTtZQUNkLFFBQVEsRUFBRSxJQUFJO1NBQ2pCLENBQUMsQ0FBQztRQUdDLElBQUksQ0FBQyxRQUFRLEVBQUUsTUFBTTthQUNoQixJQUFJLENBQ0QsTUFBTSxDQUNGLEdBQUcsRUFBRSxDQUNELElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxLQUFLLElBQUksQ0FBQyxRQUFRLEVBQUUsUUFBUTtZQUM5QyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUN6QixFQUNELGtCQUFrQixFQUFFLENBQ3ZCO2FBQ0EsU0FBUyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDakIsSUFBSSxLQUFLLEVBQUU7Z0JBQ1Asc0JBQXNCLENBQUM7b0JBQ25CLE9BQU8sRUFBRSxJQUFJLENBQUMsRUFBRTtvQkFDaEIsSUFBSSxFQUFFLElBQUksQ0FBQyxFQUFFO2lCQUNoQixDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUM7YUFDZjtZQUVELElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzVCLENBQUMsQ0FBQyxDQUFDO0lBQ1gsQ0FBQzsrR0E1QlEscUNBQXFDO21HQUFyQyxxQ0FBcUM7O1NBQXJDLHFDQUFxQzs0RkFBckMscUNBQXFDO2tCQUpqRCxTQUFTO21CQUFDO29CQUNQLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsMEJBQTBCO2lCQUN2QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBpbmplY3R9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHt0YWtlVW50aWxEZXN0cm95ZWR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUvcnhqcy1pbnRlcm9wJztcbmltcG9ydCB7dHVpSW5qZWN0RWxlbWVudH0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9kb20nO1xuaW1wb3J0IHt0dWlHZXRDbG9zZXN0Rm9jdXNhYmxlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzL2ZvY3VzJztcbmltcG9ydCB7VHVpRHJvcGRvd25PcGVufSBmcm9tICdAdGFpZ2EtdWkvY29yZS9kaXJlY3RpdmVzL2Ryb3Bkb3duJztcbmltcG9ydCB7ZmlsdGVyfSBmcm9tICdyeGpzJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBzZWxlY3RvcjogJ1t0dWlEcm9wZG93bk9wZW5Nb25pdG9yXScsXG59KVxuZXhwb3J0IGNsYXNzIFR1aUxlZ2FjeURyb3Bkb3duT3Blbk1vbml0b3JEaXJlY3RpdmUge1xuICAgIHByaXZhdGUgcmVhZG9ubHkgZWwgPSB0dWlJbmplY3RFbGVtZW50KCk7XG4gICAgcHJpdmF0ZSByZWFkb25seSBob3N0ID0gaW5qZWN0KFR1aURyb3Bkb3duT3Blbiwge3NlbGY6IHRydWV9KTtcbiAgICBwcml2YXRlIHJlYWRvbmx5IGV4dGVybmFsID0gaW5qZWN0KFR1aURyb3Bkb3duT3Blbiwge1xuICAgICAgICBza2lwU2VsZjogdHJ1ZSxcbiAgICAgICAgb3B0aW9uYWw6IHRydWUsXG4gICAgfSk7XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgdGhpcy5leHRlcm5hbD8uZHJpdmVyXG4gICAgICAgICAgICAucGlwZShcbiAgICAgICAgICAgICAgICBmaWx0ZXIoXG4gICAgICAgICAgICAgICAgICAgICgpID0+XG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmhvc3QuZHJvcGRvd24gPT09IHRoaXMuZXh0ZXJuYWw/LmRyb3Bkb3duICYmXG4gICAgICAgICAgICAgICAgICAgICAgICAhdGhpcy5ob3N0LmZvY3VzZWQsXG4gICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICB0YWtlVW50aWxEZXN0cm95ZWQoKSxcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgIC5zdWJzY3JpYmUoKHZhbHVlKSA9PiB7XG4gICAgICAgICAgICAgICAgaWYgKHZhbHVlKSB7XG4gICAgICAgICAgICAgICAgICAgIHR1aUdldENsb3Nlc3RGb2N1c2FibGUoe1xuICAgICAgICAgICAgICAgICAgICAgICAgaW5pdGlhbDogdGhpcy5lbCxcbiAgICAgICAgICAgICAgICAgICAgICAgIHJvb3Q6IHRoaXMuZWwsXG4gICAgICAgICAgICAgICAgICAgIH0pPy5mb2N1cygpO1xuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIHRoaXMuaG9zdC50b2dnbGUodmFsdWUpO1xuICAgICAgICAgICAgfSk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktbGVnYWN5LWRpcmVjdGl2ZXMtbGVnYWN5LWRyb3Bkb3duLW9wZW4tbW9uaXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2xlZ2FjeS9kaXJlY3RpdmVzL2xlZ2FjeS1kcm9wZG93bi1vcGVuLW1vbml0b3IvdGFpZ2EtdWktbGVnYWN5LWRpcmVjdGl2ZXMtbGVnYWN5LWRyb3Bkb3duLW9wZW4tbW9uaXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktbGVnYWN5LWRpcmVjdGl2ZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90YWlnYS11aS1sZWdhY3ktZGlyZWN0aXZlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
@@ -0,0 +1,15 @@
1
+ export * from './textfield.controller';
2
+ export * from './textfield.options';
3
+ export * from './textfield-appearance.directive';
4
+ export * from './textfield-cleaner.directive';
5
+ export * from './textfield-controller.module';
6
+ export * from './textfield-controller.provider';
7
+ export * from './textfield-custom-content.directive';
8
+ export * from './textfield-filler.directive';
9
+ export * from './textfield-icon.directive';
10
+ export * from './textfield-icon-left.directive';
11
+ export * from './textfield-label-outside.directive';
12
+ export * from './textfield-postfix.directive';
13
+ export * from './textfield-prefix.directive';
14
+ export * from './textfield-size.directive';
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsNEJBQTRCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RleHRmaWVsZC5jb250cm9sbGVyJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dGZpZWxkLm9wdGlvbnMnO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0ZmllbGQtYXBwZWFyYW5jZS5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0ZmllbGQtY2xlYW5lci5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0ZmllbGQtY29udHJvbGxlci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0ZmllbGQtY29udHJvbGxlci5wcm92aWRlcic7XG5leHBvcnQgKiBmcm9tICcuL3RleHRmaWVsZC1jdXN0b20tY29udGVudC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0ZmllbGQtZmlsbGVyLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL3RleHRmaWVsZC1pY29uLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL3RleHRmaWVsZC1pY29uLWxlZnQuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dGZpZWxkLWxhYmVsLW91dHNpZGUuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dGZpZWxkLXBvc3RmaXguZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dGZpZWxkLXByZWZpeC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi90ZXh0ZmllbGQtc2l6ZS5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktbGVnYWN5LWRpcmVjdGl2ZXMtdGV4dGZpZWxkLWNvbnRyb2xsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9sZWdhY3kvZGlyZWN0aXZlcy90ZXh0ZmllbGQtY29udHJvbGxlci90YWlnYS11aS1sZWdhY3ktZGlyZWN0aXZlcy10ZXh0ZmllbGQtY29udHJvbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==