@salutejs/plasma-new-hope 0.336.0-canary.2219.17586567115.0 → 0.336.0-canary.2219.17680564117.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 (280) hide show
  1. package/cjs/components/Autocomplete/Autocomplete.css +3 -0
  2. package/cjs/components/CodeField/CodeField.css +7 -6
  3. package/cjs/components/CodeField/CodeField.js +63 -27
  4. package/cjs/components/CodeField/CodeField.js.map +1 -1
  5. package/cjs/components/CodeField/CodeField.styles.js +7 -1
  6. package/cjs/components/CodeField/CodeField.styles.js.map +1 -1
  7. package/cjs/components/CodeField/{CodeField.styles_ebdpd0.css → CodeField.styles_14p25hi.css} +1 -0
  8. package/cjs/components/CodeField/hooks/useWebOTP.js +95 -0
  9. package/cjs/components/CodeField/hooks/useWebOTP.js.map +1 -0
  10. package/cjs/components/CodeField/utils/handleCodeError.js +2 -2
  11. package/cjs/components/CodeField/utils/handleCodeError.js.map +1 -1
  12. package/cjs/components/CodeField/utils/handleItemError.js +14 -4
  13. package/cjs/components/CodeField/utils/handleItemError.js.map +1 -1
  14. package/cjs/components/CodeField/utils/isWebOTPSupported.js +10 -0
  15. package/cjs/components/CodeField/utils/isWebOTPSupported.js.map +1 -0
  16. package/cjs/components/Combobox/ComboboxNew/Combobox.css +3 -0
  17. package/cjs/components/Combobox/ComboboxNew/Combobox.js +54 -56
  18. package/cjs/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
  19. package/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js +1 -4
  20. package/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js.map +1 -1
  21. package/cjs/components/DatePicker/RangeDate/RangeDate.css +3 -0
  22. package/cjs/components/DatePicker/RangeDate/RangeDate.js +30 -22
  23. package/cjs/components/DatePicker/RangeDate/RangeDate.js.map +1 -1
  24. package/cjs/components/DatePicker/RangeDate/RangeDatePopover/RangeDatePopover.css +3 -0
  25. package/cjs/components/DatePicker/SingleDate/SingleDate.css +3 -0
  26. package/cjs/components/Pagination/Pagination.css +3 -0
  27. package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +3 -0
  28. package/cjs/components/Popover/Popover.js +4 -1
  29. package/cjs/components/Popover/Popover.js.map +1 -1
  30. package/cjs/components/Range/Range.css +3 -0
  31. package/cjs/components/Select/Select.css +3 -0
  32. package/cjs/components/Select/Select.js +23 -11
  33. package/cjs/components/Select/Select.js.map +1 -1
  34. package/cjs/components/Select/hooks/usePathMaps.js +1 -4
  35. package/cjs/components/Select/hooks/usePathMaps.js.map +1 -1
  36. package/cjs/components/Select/ui/Target/Target.css +3 -0
  37. package/cjs/components/Select/ui/Target/Target.js +0 -2
  38. package/cjs/components/Select/ui/Target/Target.js.map +1 -1
  39. package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.css +3 -0
  40. package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +32 -49
  41. package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js.map +1 -1
  42. package/cjs/components/Slider/Slider.css +3 -0
  43. package/cjs/components/Slider/components/DoubleUncontrolled/DoubleUncontrolled.css +3 -0
  44. package/cjs/components/Table/Table.css +3 -0
  45. package/cjs/components/Table/ui/Cell/Cell.css +3 -0
  46. package/cjs/components/Table/ui/EditableCell/EditableCell.css +3 -0
  47. package/cjs/components/Table/ui/HeadCell/HeadCell.css +3 -0
  48. package/cjs/components/Table/ui/HeadCell/ui/Filter/Filter.css +3 -0
  49. package/cjs/components/TextField/TextField.js +19 -3
  50. package/cjs/components/TextField/TextField.js.map +1 -1
  51. package/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.css +58 -0
  52. package/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js +86 -0
  53. package/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js.map +1 -0
  54. package/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js +25 -0
  55. package/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js.map +1 -0
  56. package/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles_y9tozi.css +2 -0
  57. package/cjs/engines/common.js +11 -1
  58. package/cjs/engines/common.js.map +1 -1
  59. package/cjs/index.css +10 -6
  60. package/emotion/cjs/components/CodeField/CodeField.js +61 -23
  61. package/emotion/cjs/components/CodeField/CodeField.styles.js +18 -11
  62. package/emotion/cjs/components/CodeField/hooks/useWebOTP.js +246 -0
  63. package/emotion/cjs/components/CodeField/utils/handleCodeError.js +2 -2
  64. package/emotion/cjs/components/CodeField/utils/handleItemError.js +12 -3
  65. package/emotion/cjs/components/CodeField/utils/index.js +4 -0
  66. package/emotion/cjs/components/CodeField/utils/isWebOTPSupported.js +13 -0
  67. package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.js +57 -64
  68. package/emotion/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js +2 -5
  69. package/emotion/cjs/components/Combobox/ComboboxNew/utils/index.js +0 -4
  70. package/emotion/cjs/components/DatePicker/RangeDate/RangeDate.js +24 -22
  71. package/emotion/cjs/components/Popover/Popover.js +3 -1
  72. package/emotion/cjs/components/Select/Select.js +26 -9
  73. package/emotion/cjs/components/Select/hooks/usePathMaps.js +2 -5
  74. package/emotion/cjs/components/Select/ui/Target/Target.js +1 -2
  75. package/emotion/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +32 -71
  76. package/emotion/cjs/components/Select/utils/index.js +0 -4
  77. package/emotion/cjs/components/TextField/TextField.js +20 -4
  78. package/emotion/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js +78 -0
  79. package/emotion/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js +49 -0
  80. package/emotion/cjs/components/TextField/ui/index.js +12 -3
  81. package/emotion/cjs/engines/common.js +14 -1
  82. package/emotion/cjs/examples/components/Range/Range.config.js +8 -7
  83. package/emotion/es/components/CodeField/CodeField.js +64 -26
  84. package/emotion/es/components/CodeField/CodeField.styles.js +15 -11
  85. package/emotion/es/components/CodeField/hooks/useWebOTP.js +236 -0
  86. package/emotion/es/components/CodeField/utils/handleCodeError.js +2 -2
  87. package/emotion/es/components/CodeField/utils/handleItemError.js +12 -3
  88. package/emotion/es/components/CodeField/utils/index.js +1 -0
  89. package/emotion/es/components/CodeField/utils/isWebOTPSupported.js +3 -0
  90. package/emotion/es/components/Combobox/ComboboxNew/Combobox.js +58 -65
  91. package/emotion/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js +2 -5
  92. package/emotion/es/components/Combobox/ComboboxNew/utils/index.js +0 -1
  93. package/emotion/es/components/DatePicker/RangeDate/RangeDate.js +24 -22
  94. package/emotion/es/components/Popover/Popover.js +4 -2
  95. package/emotion/es/components/Select/Select.js +26 -9
  96. package/emotion/es/components/Select/hooks/usePathMaps.js +2 -5
  97. package/emotion/es/components/Select/ui/Target/Target.js +1 -2
  98. package/emotion/es/components/Select/ui/Target/ui/Textfield/Textfield.js +33 -72
  99. package/emotion/es/components/Select/utils/index.js +0 -1
  100. package/emotion/es/components/TextField/TextField.js +21 -5
  101. package/emotion/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js +63 -0
  102. package/emotion/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js +27 -0
  103. package/emotion/es/components/TextField/ui/index.js +1 -0
  104. package/emotion/es/engines/common.js +14 -1
  105. package/emotion/es/examples/components/Range/Range.config.js +8 -7
  106. package/es/components/Autocomplete/Autocomplete.css +3 -0
  107. package/es/components/CodeField/CodeField.css +7 -6
  108. package/es/components/CodeField/CodeField.js +66 -30
  109. package/es/components/CodeField/CodeField.js.map +1 -1
  110. package/es/components/CodeField/CodeField.styles.js +7 -2
  111. package/es/components/CodeField/CodeField.styles.js.map +1 -1
  112. package/es/components/CodeField/{CodeField.styles_ebdpd0.css → CodeField.styles_14p25hi.css} +1 -0
  113. package/es/components/CodeField/hooks/useWebOTP.js +91 -0
  114. package/es/components/CodeField/hooks/useWebOTP.js.map +1 -0
  115. package/es/components/CodeField/utils/handleCodeError.js +2 -2
  116. package/es/components/CodeField/utils/handleCodeError.js.map +1 -1
  117. package/es/components/CodeField/utils/handleItemError.js +14 -4
  118. package/es/components/CodeField/utils/handleItemError.js.map +1 -1
  119. package/es/components/CodeField/utils/isWebOTPSupported.js +6 -0
  120. package/es/components/CodeField/utils/isWebOTPSupported.js.map +1 -0
  121. package/es/components/Combobox/ComboboxNew/Combobox.css +3 -0
  122. package/es/components/Combobox/ComboboxNew/Combobox.js +55 -57
  123. package/es/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
  124. package/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js +1 -4
  125. package/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js.map +1 -1
  126. package/es/components/DatePicker/RangeDate/RangeDate.css +3 -0
  127. package/es/components/DatePicker/RangeDate/RangeDate.js +30 -22
  128. package/es/components/DatePicker/RangeDate/RangeDate.js.map +1 -1
  129. package/es/components/DatePicker/RangeDate/RangeDatePopover/RangeDatePopover.css +3 -0
  130. package/es/components/DatePicker/SingleDate/SingleDate.css +3 -0
  131. package/es/components/Pagination/Pagination.css +3 -0
  132. package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +3 -0
  133. package/es/components/Popover/Popover.js +4 -1
  134. package/es/components/Popover/Popover.js.map +1 -1
  135. package/es/components/Range/Range.css +3 -0
  136. package/es/components/Select/Select.css +3 -0
  137. package/es/components/Select/Select.js +23 -11
  138. package/es/components/Select/Select.js.map +1 -1
  139. package/es/components/Select/hooks/usePathMaps.js +1 -4
  140. package/es/components/Select/hooks/usePathMaps.js.map +1 -1
  141. package/es/components/Select/ui/Target/Target.css +3 -0
  142. package/es/components/Select/ui/Target/Target.js +0 -2
  143. package/es/components/Select/ui/Target/Target.js.map +1 -1
  144. package/es/components/Select/ui/Target/ui/Textfield/Textfield.css +3 -0
  145. package/es/components/Select/ui/Target/ui/Textfield/Textfield.js +33 -50
  146. package/es/components/Select/ui/Target/ui/Textfield/Textfield.js.map +1 -1
  147. package/es/components/Slider/Slider.css +3 -0
  148. package/es/components/Slider/components/DoubleUncontrolled/DoubleUncontrolled.css +3 -0
  149. package/es/components/Table/Table.css +3 -0
  150. package/es/components/Table/ui/Cell/Cell.css +3 -0
  151. package/es/components/Table/ui/EditableCell/EditableCell.css +3 -0
  152. package/es/components/Table/ui/HeadCell/HeadCell.css +3 -0
  153. package/es/components/Table/ui/HeadCell/ui/Filter/Filter.css +3 -0
  154. package/es/components/TextField/TextField.js +19 -3
  155. package/es/components/TextField/TextField.js.map +1 -1
  156. package/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.css +58 -0
  157. package/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js +78 -0
  158. package/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js.map +1 -0
  159. package/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js +21 -0
  160. package/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js.map +1 -0
  161. package/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles_y9tozi.css +2 -0
  162. package/es/engines/common.js +12 -2
  163. package/es/engines/common.js.map +1 -1
  164. package/es/index.css +10 -6
  165. package/package.json +2 -2
  166. package/styled-components/cjs/components/CodeField/CodeField.js +61 -23
  167. package/styled-components/cjs/components/CodeField/CodeField.styles.js +14 -5
  168. package/styled-components/cjs/components/CodeField/hooks/useWebOTP.js +246 -0
  169. package/styled-components/cjs/components/CodeField/utils/handleCodeError.js +2 -2
  170. package/styled-components/cjs/components/CodeField/utils/handleItemError.js +12 -3
  171. package/styled-components/cjs/components/CodeField/utils/index.js +4 -0
  172. package/styled-components/cjs/components/CodeField/utils/isWebOTPSupported.js +13 -0
  173. package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.js +57 -64
  174. package/styled-components/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js +2 -5
  175. package/styled-components/cjs/components/Combobox/ComboboxNew/utils/index.js +0 -4
  176. package/styled-components/cjs/components/DatePicker/RangeDate/RangeDate.js +24 -22
  177. package/styled-components/cjs/components/Popover/Popover.js +3 -1
  178. package/styled-components/cjs/components/Select/Select.js +26 -9
  179. package/styled-components/cjs/components/Select/hooks/usePathMaps.js +2 -5
  180. package/styled-components/cjs/components/Select/ui/Target/Target.js +1 -2
  181. package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +32 -71
  182. package/styled-components/cjs/components/Select/utils/index.js +0 -4
  183. package/styled-components/cjs/components/TextField/TextField.js +19 -3
  184. package/styled-components/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js +78 -0
  185. package/styled-components/cjs/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js +114 -0
  186. package/styled-components/cjs/components/TextField/ui/index.js +12 -3
  187. package/styled-components/cjs/engines/common.js +14 -1
  188. package/styled-components/cjs/examples/components/Combobox/Combobox.js +15 -0
  189. package/styled-components/cjs/examples/components/Range/Range.config.js +46 -0
  190. package/styled-components/es/components/CodeField/CodeField.js +64 -26
  191. package/styled-components/es/components/CodeField/CodeField.styles.js +11 -5
  192. package/styled-components/es/components/CodeField/hooks/useWebOTP.js +236 -0
  193. package/styled-components/es/components/CodeField/utils/handleCodeError.js +2 -2
  194. package/styled-components/es/components/CodeField/utils/handleItemError.js +12 -3
  195. package/styled-components/es/components/CodeField/utils/index.js +1 -0
  196. package/styled-components/es/components/CodeField/utils/isWebOTPSupported.js +3 -0
  197. package/styled-components/es/components/Combobox/ComboboxNew/Combobox.js +58 -65
  198. package/styled-components/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js +2 -5
  199. package/styled-components/es/components/Combobox/ComboboxNew/utils/index.js +0 -1
  200. package/styled-components/es/components/DatePicker/RangeDate/RangeDate.js +24 -22
  201. package/styled-components/es/components/Popover/Popover.js +4 -2
  202. package/styled-components/es/components/Select/Select.js +26 -9
  203. package/styled-components/es/components/Select/hooks/usePathMaps.js +2 -5
  204. package/styled-components/es/components/Select/ui/Target/Target.js +1 -2
  205. package/styled-components/es/components/Select/ui/Target/ui/Textfield/Textfield.js +33 -72
  206. package/styled-components/es/components/Select/utils/index.js +0 -1
  207. package/styled-components/es/components/TextField/TextField.js +20 -4
  208. package/styled-components/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.js +63 -0
  209. package/styled-components/es/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.js +92 -0
  210. package/styled-components/es/components/TextField/ui/index.js +1 -0
  211. package/styled-components/es/engines/common.js +14 -1
  212. package/styled-components/es/examples/components/Range/Range.config.js +46 -0
  213. package/types/components/CodeField/CodeField.d.ts.map +1 -1
  214. package/types/components/CodeField/CodeField.styles.d.ts +1 -0
  215. package/types/components/CodeField/CodeField.styles.d.ts.map +1 -1
  216. package/types/components/CodeField/hooks/useWebOTP.d.ts +20 -0
  217. package/types/components/CodeField/hooks/useWebOTP.d.ts.map +1 -0
  218. package/types/components/CodeField/utils/handleCodeError.d.ts +2 -2
  219. package/types/components/CodeField/utils/handleCodeError.d.ts.map +1 -1
  220. package/types/components/CodeField/utils/handleItemError.d.ts +3 -2
  221. package/types/components/CodeField/utils/handleItemError.d.ts.map +1 -1
  222. package/types/components/CodeField/utils/index.d.ts +1 -0
  223. package/types/components/CodeField/utils/index.d.ts.map +1 -1
  224. package/types/components/CodeField/utils/isWebOTPSupported.d.ts +2 -0
  225. package/types/components/CodeField/utils/isWebOTPSupported.d.ts.map +1 -0
  226. package/types/components/Combobox/ComboboxNew/Combobox.d.ts.map +1 -1
  227. package/types/components/Combobox/ComboboxNew/hooks/getPathMaps.d.ts +1 -2
  228. package/types/components/Combobox/ComboboxNew/hooks/getPathMaps.d.ts.map +1 -1
  229. package/types/components/Combobox/ComboboxNew/utils/index.d.ts +0 -1
  230. package/types/components/Combobox/ComboboxNew/utils/index.d.ts.map +1 -1
  231. package/types/components/DatePicker/RangeDate/RangeDate.d.ts.map +1 -1
  232. package/types/components/NumberFormat/NumberFormat.d.ts.map +1 -1
  233. package/types/components/NumberFormat/NumberFormat.types.d.ts +1 -1
  234. package/types/components/Popover/Popover.d.ts.map +1 -1
  235. package/types/components/Select/Select.d.ts.map +1 -1
  236. package/types/components/Select/hooks/usePathMaps.d.ts +1 -2
  237. package/types/components/Select/hooks/usePathMaps.d.ts.map +1 -1
  238. package/types/components/Select/ui/Target/Target.d.ts +0 -1
  239. package/types/components/Select/ui/Target/Target.d.ts.map +1 -1
  240. package/types/components/Select/ui/Target/Target.types.d.ts +1 -2
  241. package/types/components/Select/ui/Target/Target.types.d.ts.map +1 -1
  242. package/types/components/Select/ui/Target/ui/Textfield/Textfield.d.ts.map +1 -1
  243. package/types/components/Select/ui/Target/ui/Textfield/Textfield.types.d.ts +1 -1
  244. package/types/components/Select/ui/Target/ui/Textfield/Textfield.types.d.ts.map +1 -1
  245. package/types/components/Select/utils/index.d.ts +0 -1
  246. package/types/components/Select/utils/index.d.ts.map +1 -1
  247. package/types/components/TextField/TextField.d.ts.map +1 -1
  248. package/types/components/TextField/TextField.types.d.ts +2 -2
  249. package/types/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.d.ts +21 -0
  250. package/types/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.d.ts.map +1 -0
  251. package/types/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.d.ts +3 -0
  252. package/types/components/TextField/ui/TextFieldChipNew/TextFieldChipNew.styles.d.ts.map +1 -0
  253. package/types/components/TextField/ui/index.d.ts +1 -0
  254. package/types/components/TextField/ui/index.d.ts.map +1 -1
  255. package/types/engines/common.d.ts.map +1 -1
  256. package/types/examples/components/NumberFormat/NumberFormat.d.ts.map +1 -1
  257. package/types/examples/components/Range/Range.config.d.ts +1 -0
  258. package/types/examples/components/Range/Range.config.d.ts.map +1 -1
  259. package/types/examples/components/Range/Range.d.ts +1 -0
  260. package/types/examples/components/Range/Range.d.ts.map +1 -1
  261. package/cjs/components/Combobox/ComboboxNew/utils/getRemovedElement.js +0 -17
  262. package/cjs/components/Combobox/ComboboxNew/utils/getRemovedElement.js.map +0 -1
  263. package/cjs/components/Select/utils/getRemovedElement.js +0 -17
  264. package/cjs/components/Select/utils/getRemovedElement.js.map +0 -1
  265. package/emotion/cjs/components/Combobox/ComboboxNew/utils/getRemovedElement.js +0 -20
  266. package/emotion/cjs/components/Select/utils/getRemovedElement.js +0 -20
  267. package/emotion/es/components/Combobox/ComboboxNew/utils/getRemovedElement.js +0 -10
  268. package/emotion/es/components/Select/utils/getRemovedElement.js +0 -10
  269. package/es/components/Combobox/ComboboxNew/utils/getRemovedElement.js +0 -13
  270. package/es/components/Combobox/ComboboxNew/utils/getRemovedElement.js.map +0 -1
  271. package/es/components/Select/utils/getRemovedElement.js +0 -13
  272. package/es/components/Select/utils/getRemovedElement.js.map +0 -1
  273. package/styled-components/cjs/components/Combobox/ComboboxNew/utils/getRemovedElement.js +0 -20
  274. package/styled-components/cjs/components/Select/utils/getRemovedElement.js +0 -20
  275. package/styled-components/es/components/Combobox/ComboboxNew/utils/getRemovedElement.js +0 -10
  276. package/styled-components/es/components/Select/utils/getRemovedElement.js +0 -10
  277. package/types/components/Combobox/ComboboxNew/utils/getRemovedElement.d.ts +0 -2
  278. package/types/components/Combobox/ComboboxNew/utils/getRemovedElement.d.ts.map +0 -1
  279. package/types/components/Select/utils/getRemovedElement.d.ts +0 -2
  280. package/types/components/Select/utils/getRemovedElement.d.ts.map +0 -1
@@ -156,6 +156,9 @@
156
156
  .TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);-webkit-scroll-snap-align:center;-moz-scroll-snap-align:center;-ms-scroll-snap-align:center;scroll-snap-align:center;-webkit-scroll-snap-stop:normal;-moz-scroll-snap-stop:normal;-ms-scroll-snap-stop:normal;scroll-snap-stop:normal;position:relative;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
157
157
  .TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:after{content:',';}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:last-child:after{content:'';}
158
158
 
159
+ .TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);--plasma-chip-disabled-opacity:0.4;position:relative;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
160
+ .TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:after{content:',';}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:last-child:after{content:'';}
161
+
159
162
  .TextField_1lzb2r1_bpunezx__7d079491{display:block;}
160
163
 
161
164
  .Textfield_styles_1mikp58_s1yhwv5r__b997b904{--plasma-textfield-color:var(--plasma-select-textfield-color);--plasma-textfield-bg-color:var(--plasma-select-textfield-background-color);--plasma-textfield-border-color:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield__label-color:var(--plasma-select-textfield-label-color);--plasma-textfield__left-helper-color:var(--plasma-select-textfield-left-helper-color);--plasma-textfield-color-readonly:var(--plasma-select-textfield-color);--plasma-textfield-bg-color-readonly:var(--s1yhwv5r-0);--plasma-textfield__placeholder-color-readonly:var(--s1yhwv5r-1);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield-left-helper-color);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield-label-color);--plasma-textfield-border-color-readonly:var(--s1yhwv5r-2);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield-border-color-hover:var(--plasma-select-textfield-border-color-hover);--plasma-textfield-border-color-focus:var(--plasma-select-textfield-border-color-focus);--plasma-textfield__optional-color:var(--plasma-select-new-textfield-optional-color);--plasma-textfield-height:var(--plasma-select-textfield-height);--plasma-textfield-border-width:var(--plasma-select-textfield-border-width);--plasma-textfield-border-radius:var(--plasma-select-textfield-border-radius);--plasma-textfield-padding:var(--plasma-select-textfield-padding);--plasma-textfield-padding-with-chips:var(--plasma-select-textfield-padding-with-chips);--plasma-textfield__left-content-margin:var(--plasma-select-textfield-left-content-margin);--plasma-textfield__right-content-margin:var(--plasma-select-textfield-right-content-margin);--plasma-textfield__right-content-with-hint-margin:var(--plasma-select-textfield-right-content-with-hint-margin);--plasma-textfield-content-right-wrapper-gap:var(--plasma-select-textfield-content-right-wrapper-gap);--plasma-textfield-content-right-wrapper-margin:var(--plasma-select-textfield-content-right-wrapper-margin);--plasma-textfield-font-family:var(--plasma-select-textfield-font-family);--plasma-textfield-font-style:var(--plasma-select-textfield-font-style);--plasma-textfield-font-size:var(--plasma-select-textfield-font-size);--plasma-textfield-font-weight:var(--plasma-select-textfield-font-weight);--plasma-textfield-letter-spacing:var(--plasma-select-textfield-letter-spacing);--plasma-textfield-line-height:var(--plasma-select-textfield-line-height);--plasma-textfield-content-slot-color:var(--plasma-select-textfield-content-slot-color);--plasma-textfield-content-slot-color-hover:var(--plasma-select-textfield-content-slot-color-hover);--plasma-textfield-content-slot-color-active:var(--plasma-select-textfield-content-slot-color-active);--plasma-textfield-content-right-slot-color:var(--plasma-select-textfield-content-right-slot-color);--plasma-textfield-content-right-slot-color-hover:var(--plasma-select-textfield-content-right-slot-color-hover);--plasma-textfield-content-right-slot-color-active:var(--plasma-select-textfield-content-right-slot-color-active);--plasma-textfield__label-offset:var(--plasma-select-textfield-label-offset);--plasma-textfield__label-font-family:var(--plasma-select-textfield-label-font-family);--plasma-textfield__label-font-style:var(--plasma-select-textfield-label-font-style);--plasma-textfield__label-font-size:var(--plasma-select-textfield-label-font-size);--plasma-textfield__label-font-weight:var(--plasma-select-textfield-label-font-weight);--plasma-textfield__label-letter-spacing:var(--plasma-select-textfield-label-letter-spacing);--plasma-textfield__label-line-height:var(--plasma-select-textfield-label-line-height);--plasma-textfield-placement_inner__label-font-family:var(--plasma-select-textfield-placement-inner-label-font-family);--plasma-textfield-placement_inner__label-font-style:var(--plasma-select-textfield-placement-inner-label-font-style);--plasma-textfield-placement_inner__label-font-size:var(--plasma-select-textfield-placement-inner-label-font-size);--plasma-textfield-placement_inner__label-font-weight:var(--plasma-select-textfield-placement-inner-label-font-weight);--plasma-textfield-placement_inner__label-letter-spacing:var(--plasma-select-textfield-placement-inner-label-letter-spacing);--plasma-textfield-placement_inner__label-line-height:var(--plasma-select-textfield-placement-inner-label-line-height);--plasma-textfield-placement_inner__label-padding:var(--plasma-select-textfield-placement-inner-label-padding);--plasma-textfield-placement_inner__content-padding:var(--plasma-select-textfield-placement-inner-content-padding);--plasma-textfield__title-caption-color:var(--plasma-select-textfield-title-caption-color);--plasma-textfield__title-caption-label-inner-offset:var(--plasma-select-textfield-title-caption-label-inner-offset);--plasma-textfield__title-caption-font-family:var(--plasma-select-textfield-title-caption-font-family);--plasma-textfield__title-caption-font-style:var(--plasma-select-textfield-title-caption-font-style);--plasma-textfield__title-caption-font-size:var(--plasma-select-textfield-title-caption-font-size);--plasma-textfield__title-caption-font-weight:var(--plasma-select-textfield-title-caption-font-weight);--plasma-textfield__title-caption-letter-spacing:var(--plasma-select-textfield-title-caption-letter-spacing);--plasma-textfield__title-caption-line-height:var(--plasma-select-textfield-title-caption-line-height);--plasma-textfield__left-helper-offset:var(--plasma-select-textfield-left-helper-offset);--plasma-textfield__left-helper-font-family:var(--plasma-select-textfield-left-helper-font-family);--plasma-textfield__left-helper-font-style:var(--plasma-select-textfield-left-helper-font-style);--plasma-textfield__left-helper-font-size:var(--plasma-select-textfield-left-helper-font-size);--plasma-textfield__left-helper-font-weight:var(--plasma-select-textfield-left-helper-font-weight);--plasma-textfield__left-helper-letter-spacing:var(--plasma-select-textfield-left-helper-letter-spacing);--plasma-textfield__left-helper-line-height:var(--plasma-select-textfield-left-helper-line-height);--plasma-textfield__before-text-color:var(--plasma-select-textfield-before-text-color);--plasma-textfield__after-text-color:var(--plasma-select-textfield-after-text-color);--plasma-textfield__before-text-margin:var(--plasma-select-textfield-before-text-margin);--plasma-textfield__after-text-margin:var(--plasma-select-textfield-after-text-margin);--plasma-textfield-disabled-opacity:var(--plasma-select-textfield-disabled-opacity);--plasma-textfield__hint-custom-icon-target-size:var(--plasma-select-textfield__hint-custom-icon-target-size);--plasma-textfield__hint-margin:var(--plasma-select-textfield__hint-margin);--plasma-textfield__hint-target-size:var(--plasma-select-textfield__hint-target-size);--plasma-textfield__hint-icon-color:var(--plasma-select-textfield__hint-icon-color);--plasma-textfield__hint-inner-label-placement-offset:var(--plasma-select-textfield__hint-inner-label-placement-offset);--plasma-textfield__clear-hint-inner-label-placement-offset:var(--plasma-select-textfield__clear-hint-inner-label-placement-offset);--plasma-textfield__tooltip-background-color:var(--plasma-select-textfield__tooltip-background-color);--plasma-textfield__tooltip-box-shadow:var(--plasma-select-textfield__tooltip-box-shadow);--plasma-textfield__tooltip-color:var(--plasma-select-textfield__tooltip-color);--plasma-textfield__tooltip-padding-top:var(--plasma-select-textfield__tooltip-padding-top);--plasma-textfield__tooltip-padding-right:var(--plasma-select-textfield__tooltip-padding-right);--plasma-textfield__tooltip-padding-bottom:var(--plasma-select-textfield__tooltip-padding-bottom);--plasma-textfield__tooltip-padding-left:var(--plasma-select-textfield__tooltip-padding-left);--plasma-textfield__tooltip-min-height:var(--plasma-select-textfield__tooltip-min-height);--plasma-textfield__tooltip-border-radius:var(--plasma-select-textfield__tooltip-border-radius);--plasma-textfield__tooltip-text-font-family:var(--plasma-select-textfield__tooltip-text-font-family);--plasma-textfield__tooltip-text-font-size:var(--plasma-select-textfield__tooltip-text-font-size);--plasma-textfield__tooltip-text-font-style:var(--plasma-select-textfield__tooltip-text-font-style);--plasma-textfield__tooltip-text-font-weight:var(--plasma-select-textfield__tooltip-text-font-weight);--plasma-textfield__tooltip-text-font-letter-spacing:var(--plasma-select-textfield__tooltip-text-font-letter-spacing);--plasma-textfield__tooltip-text-font-line-height:var(--plasma-select-textfield__tooltip-text-font-line-height);--plasma-textfield__tooltip-content-left-margin:var(--plasma-select-textfield__tooltip-content-left-margin);--plasma-textfield__tooltip-arrow-mask-width:var(--plasma-select-textfield__tooltip-arrow-mask-width);--plasma-textfield__tooltip-arrow-mask-height:var(--plasma-select-textfield__tooltip-arrow-mask-height);--plasma-textfield__tooltip-arrow-mask-image:var(--plasma-select-textfield__tooltip-arrow-mask-image);--plasma-textfield__tooltip-arrow-height:var(--plasma-select-textfield__tooltip-arrow-height);--plasma-textfield__tooltip-arrow-edge-margin:var(--plasma-select-textfield__tooltip-arrow-edge-margin);--plasma-textfield__tooltip-arrow-background:var(--plasma-select-textfield__tooltip-arrow-background);--plasma-textfield__chip-height:var(--plasma-select-textfield-chip-height);--plasma-textfield__chip-border-radius:var(--plasma-select-textfield-chip-border-radius);--plasma-textfield__chip-gap:var(--plasma-select-textfield-chip-gap);--plasma-textfield__chip-color:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-hover:var(--plasma-select-textfield-chip-color-hover);--plasma-textfield__chip-background:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-active:var(--plasma-select-textfield-chip-background-active);--plasma-textfield__chip-color-active:var(--plasma-select-textfield-chip-color-active);--plasma-textfield__chip-close-icon-color:var(--plasma-select-textfield-chip-close-icons-color);--plasma-textfield__chip-outline-size:var(--plasma-select-textfield-chip-outline-size);--plasma-textfield__chip-width:var(--plasma-select-textfield-chip-width);--plasma-textfield__chip-padding:var(--plasma-select-textfield-chip-padding);--plasma-textfield__chip-close-icon-size:var(--plasma-select-textfield-chip-close-icon-size);--plasma-textfield__chip-font-family:var(--plasma-select-textfield-chip-font-family);--plasma-textfield__chip-font-size:var(--plasma-select-textfield-chip-font-size);--plasma-textfield__chip-font-style:var(--plasma-select-textfield-chip-font-style);--plasma-textfield__chip-font-weight:var(--plasma-select-textfield-chip-font-weight);--plasma-textfield__chip-letter-spacing:var(--plasma-select-textfield-chip-letter-spacing);--plasma-textfield__chip-line-height:var(--plasma-select-textfield-chip-line-height);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield-chip-background-hover);--plasma-textfield__chip-clear-content-margin-left:var(--plasma-select-textfield-chip-clear-content-margin-left);--plasma-textfield__chip-clear-content-margin-right:var(--plasma-select-textfield-chip-clear-content-margin-right);--plasma-textfield__indicator-color:var(--plasma-select-new-textfield-indicator-color);--plasma-textfield__indicator-size-inner:var(--plasma-select-new-textfield-indicator-size-inner);--plasma-textfield__indicator-size-outer:var(--plasma-select-new-textfield-indicator-size-outer);--plasma-textfield__indicator-placement-inner:var(--plasma-select-new-textfield-indicator-placement-inner);--plasma-textfield__indicator-placement-outer:var(--plasma-select-new-textfield-indicator-placement-outer);--plasma-textfield__indicator-placement-inner-right:var(--plasma-select-new-textfield-indicator-placement-inner-right);--plasma-textfield__indicator-placement-outer-right:var(--plasma-select-new-textfield-indicator-placement-outer-right);--plasma-textfield__clear-indicator-placement-inner:var(--plasma-select-new-textfield-clear-indicator-placement-inner);--plasma-textfield__clear-indicator-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-placement-inner-right );--plasma-textfield__clear-indicator-hint-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-hint-placement-inner-right);--plasma-textfield-focus-color:var(--plasma-select-textfield-focus-color);--plasma-textfield-box-shadow:var(--s1yhwv5r-3);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904 div.Textfield_styles_1mikp58_inputWrapper__b997b904:focus-within{background-color:var(--plasma-select-textfield-background-color-focus);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904.Textfield_styles_1mikp58_readonly__b997b904{--plasma-textfield-color-readonly:var(--plasma-select-textfield-color-readonly);--plasma-textfield-bg-color-readonly:var(--plasma-select-textfield-bg-color-readonly);--plasma-textfield__placeholder-color-readonly:var(--plasma-select-textfield__placeholder-color-readonly);--plasma-textfield-divider-color-readonly:var(--plasma-select-textfield-divider-color-readonly);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield__left-helper-color-readonly);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield__label-color-readonly);--plasma-textfield__title-caption-color-readonly:var(--plasma-select-textfield__title-caption-color-readonly);--plasma-textfield-border-color-readonly:var(--plasma-select-textfield-border-color-readonly);--plasma-textfield-readonly-opacity:var(--plasma-select-textfield-readonly-opacity);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield__chip-color-readonly);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield__chip-color-readonly-hover);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield__chip-background-readonly);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield__chip-background-readonly-hover);--plasma-textfield__chip-opacity-readonly:var(--plasma-select-textfield__chip-opacity-readonly);--plasma-textfield-box-shadow:none;}
@@ -158,6 +158,9 @@
158
158
  .TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);-webkit-scroll-snap-align:center;-moz-scroll-snap-align:center;-ms-scroll-snap-align:center;scroll-snap-align:center;-webkit-scroll-snap-stop:normal;-moz-scroll-snap-stop:normal;-ms-scroll-snap-stop:normal;scroll-snap-stop:normal;position:relative;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
159
159
  .TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:after{content:',';}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:last-child:after{content:'';}
160
160
 
161
+ .TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);--plasma-chip-disabled-opacity:0.4;position:relative;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
162
+ .TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:after{content:',';}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:last-child:after{content:'';}
163
+
161
164
  .TextField_1lzb2r1_bpunezx__7d079491{display:block;}
162
165
 
163
166
  .Textfield_styles_1mikp58_s1yhwv5r__b997b904{--plasma-textfield-color:var(--plasma-select-textfield-color);--plasma-textfield-bg-color:var(--plasma-select-textfield-background-color);--plasma-textfield-border-color:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield__label-color:var(--plasma-select-textfield-label-color);--plasma-textfield__left-helper-color:var(--plasma-select-textfield-left-helper-color);--plasma-textfield-color-readonly:var(--plasma-select-textfield-color);--plasma-textfield-bg-color-readonly:var(--s1yhwv5r-0);--plasma-textfield__placeholder-color-readonly:var(--s1yhwv5r-1);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield-left-helper-color);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield-label-color);--plasma-textfield-border-color-readonly:var(--s1yhwv5r-2);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield-border-color-hover:var(--plasma-select-textfield-border-color-hover);--plasma-textfield-border-color-focus:var(--plasma-select-textfield-border-color-focus);--plasma-textfield__optional-color:var(--plasma-select-new-textfield-optional-color);--plasma-textfield-height:var(--plasma-select-textfield-height);--plasma-textfield-border-width:var(--plasma-select-textfield-border-width);--plasma-textfield-border-radius:var(--plasma-select-textfield-border-radius);--plasma-textfield-padding:var(--plasma-select-textfield-padding);--plasma-textfield-padding-with-chips:var(--plasma-select-textfield-padding-with-chips);--plasma-textfield__left-content-margin:var(--plasma-select-textfield-left-content-margin);--plasma-textfield__right-content-margin:var(--plasma-select-textfield-right-content-margin);--plasma-textfield__right-content-with-hint-margin:var(--plasma-select-textfield-right-content-with-hint-margin);--plasma-textfield-content-right-wrapper-gap:var(--plasma-select-textfield-content-right-wrapper-gap);--plasma-textfield-content-right-wrapper-margin:var(--plasma-select-textfield-content-right-wrapper-margin);--plasma-textfield-font-family:var(--plasma-select-textfield-font-family);--plasma-textfield-font-style:var(--plasma-select-textfield-font-style);--plasma-textfield-font-size:var(--plasma-select-textfield-font-size);--plasma-textfield-font-weight:var(--plasma-select-textfield-font-weight);--plasma-textfield-letter-spacing:var(--plasma-select-textfield-letter-spacing);--plasma-textfield-line-height:var(--plasma-select-textfield-line-height);--plasma-textfield-content-slot-color:var(--plasma-select-textfield-content-slot-color);--plasma-textfield-content-slot-color-hover:var(--plasma-select-textfield-content-slot-color-hover);--plasma-textfield-content-slot-color-active:var(--plasma-select-textfield-content-slot-color-active);--plasma-textfield-content-right-slot-color:var(--plasma-select-textfield-content-right-slot-color);--plasma-textfield-content-right-slot-color-hover:var(--plasma-select-textfield-content-right-slot-color-hover);--plasma-textfield-content-right-slot-color-active:var(--plasma-select-textfield-content-right-slot-color-active);--plasma-textfield__label-offset:var(--plasma-select-textfield-label-offset);--plasma-textfield__label-font-family:var(--plasma-select-textfield-label-font-family);--plasma-textfield__label-font-style:var(--plasma-select-textfield-label-font-style);--plasma-textfield__label-font-size:var(--plasma-select-textfield-label-font-size);--plasma-textfield__label-font-weight:var(--plasma-select-textfield-label-font-weight);--plasma-textfield__label-letter-spacing:var(--plasma-select-textfield-label-letter-spacing);--plasma-textfield__label-line-height:var(--plasma-select-textfield-label-line-height);--plasma-textfield-placement_inner__label-font-family:var(--plasma-select-textfield-placement-inner-label-font-family);--plasma-textfield-placement_inner__label-font-style:var(--plasma-select-textfield-placement-inner-label-font-style);--plasma-textfield-placement_inner__label-font-size:var(--plasma-select-textfield-placement-inner-label-font-size);--plasma-textfield-placement_inner__label-font-weight:var(--plasma-select-textfield-placement-inner-label-font-weight);--plasma-textfield-placement_inner__label-letter-spacing:var(--plasma-select-textfield-placement-inner-label-letter-spacing);--plasma-textfield-placement_inner__label-line-height:var(--plasma-select-textfield-placement-inner-label-line-height);--plasma-textfield-placement_inner__label-padding:var(--plasma-select-textfield-placement-inner-label-padding);--plasma-textfield-placement_inner__content-padding:var(--plasma-select-textfield-placement-inner-content-padding);--plasma-textfield__title-caption-color:var(--plasma-select-textfield-title-caption-color);--plasma-textfield__title-caption-label-inner-offset:var(--plasma-select-textfield-title-caption-label-inner-offset);--plasma-textfield__title-caption-font-family:var(--plasma-select-textfield-title-caption-font-family);--plasma-textfield__title-caption-font-style:var(--plasma-select-textfield-title-caption-font-style);--plasma-textfield__title-caption-font-size:var(--plasma-select-textfield-title-caption-font-size);--plasma-textfield__title-caption-font-weight:var(--plasma-select-textfield-title-caption-font-weight);--plasma-textfield__title-caption-letter-spacing:var(--plasma-select-textfield-title-caption-letter-spacing);--plasma-textfield__title-caption-line-height:var(--plasma-select-textfield-title-caption-line-height);--plasma-textfield__left-helper-offset:var(--plasma-select-textfield-left-helper-offset);--plasma-textfield__left-helper-font-family:var(--plasma-select-textfield-left-helper-font-family);--plasma-textfield__left-helper-font-style:var(--plasma-select-textfield-left-helper-font-style);--plasma-textfield__left-helper-font-size:var(--plasma-select-textfield-left-helper-font-size);--plasma-textfield__left-helper-font-weight:var(--plasma-select-textfield-left-helper-font-weight);--plasma-textfield__left-helper-letter-spacing:var(--plasma-select-textfield-left-helper-letter-spacing);--plasma-textfield__left-helper-line-height:var(--plasma-select-textfield-left-helper-line-height);--plasma-textfield__before-text-color:var(--plasma-select-textfield-before-text-color);--plasma-textfield__after-text-color:var(--plasma-select-textfield-after-text-color);--plasma-textfield__before-text-margin:var(--plasma-select-textfield-before-text-margin);--plasma-textfield__after-text-margin:var(--plasma-select-textfield-after-text-margin);--plasma-textfield-disabled-opacity:var(--plasma-select-textfield-disabled-opacity);--plasma-textfield__hint-custom-icon-target-size:var(--plasma-select-textfield__hint-custom-icon-target-size);--plasma-textfield__hint-margin:var(--plasma-select-textfield__hint-margin);--plasma-textfield__hint-target-size:var(--plasma-select-textfield__hint-target-size);--plasma-textfield__hint-icon-color:var(--plasma-select-textfield__hint-icon-color);--plasma-textfield__hint-inner-label-placement-offset:var(--plasma-select-textfield__hint-inner-label-placement-offset);--plasma-textfield__clear-hint-inner-label-placement-offset:var(--plasma-select-textfield__clear-hint-inner-label-placement-offset);--plasma-textfield__tooltip-background-color:var(--plasma-select-textfield__tooltip-background-color);--plasma-textfield__tooltip-box-shadow:var(--plasma-select-textfield__tooltip-box-shadow);--plasma-textfield__tooltip-color:var(--plasma-select-textfield__tooltip-color);--plasma-textfield__tooltip-padding-top:var(--plasma-select-textfield__tooltip-padding-top);--plasma-textfield__tooltip-padding-right:var(--plasma-select-textfield__tooltip-padding-right);--plasma-textfield__tooltip-padding-bottom:var(--plasma-select-textfield__tooltip-padding-bottom);--plasma-textfield__tooltip-padding-left:var(--plasma-select-textfield__tooltip-padding-left);--plasma-textfield__tooltip-min-height:var(--plasma-select-textfield__tooltip-min-height);--plasma-textfield__tooltip-border-radius:var(--plasma-select-textfield__tooltip-border-radius);--plasma-textfield__tooltip-text-font-family:var(--plasma-select-textfield__tooltip-text-font-family);--plasma-textfield__tooltip-text-font-size:var(--plasma-select-textfield__tooltip-text-font-size);--plasma-textfield__tooltip-text-font-style:var(--plasma-select-textfield__tooltip-text-font-style);--plasma-textfield__tooltip-text-font-weight:var(--plasma-select-textfield__tooltip-text-font-weight);--plasma-textfield__tooltip-text-font-letter-spacing:var(--plasma-select-textfield__tooltip-text-font-letter-spacing);--plasma-textfield__tooltip-text-font-line-height:var(--plasma-select-textfield__tooltip-text-font-line-height);--plasma-textfield__tooltip-content-left-margin:var(--plasma-select-textfield__tooltip-content-left-margin);--plasma-textfield__tooltip-arrow-mask-width:var(--plasma-select-textfield__tooltip-arrow-mask-width);--plasma-textfield__tooltip-arrow-mask-height:var(--plasma-select-textfield__tooltip-arrow-mask-height);--plasma-textfield__tooltip-arrow-mask-image:var(--plasma-select-textfield__tooltip-arrow-mask-image);--plasma-textfield__tooltip-arrow-height:var(--plasma-select-textfield__tooltip-arrow-height);--plasma-textfield__tooltip-arrow-edge-margin:var(--plasma-select-textfield__tooltip-arrow-edge-margin);--plasma-textfield__tooltip-arrow-background:var(--plasma-select-textfield__tooltip-arrow-background);--plasma-textfield__chip-height:var(--plasma-select-textfield-chip-height);--plasma-textfield__chip-border-radius:var(--plasma-select-textfield-chip-border-radius);--plasma-textfield__chip-gap:var(--plasma-select-textfield-chip-gap);--plasma-textfield__chip-color:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-hover:var(--plasma-select-textfield-chip-color-hover);--plasma-textfield__chip-background:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-active:var(--plasma-select-textfield-chip-background-active);--plasma-textfield__chip-color-active:var(--plasma-select-textfield-chip-color-active);--plasma-textfield__chip-close-icon-color:var(--plasma-select-textfield-chip-close-icons-color);--plasma-textfield__chip-outline-size:var(--plasma-select-textfield-chip-outline-size);--plasma-textfield__chip-width:var(--plasma-select-textfield-chip-width);--plasma-textfield__chip-padding:var(--plasma-select-textfield-chip-padding);--plasma-textfield__chip-close-icon-size:var(--plasma-select-textfield-chip-close-icon-size);--plasma-textfield__chip-font-family:var(--plasma-select-textfield-chip-font-family);--plasma-textfield__chip-font-size:var(--plasma-select-textfield-chip-font-size);--plasma-textfield__chip-font-style:var(--plasma-select-textfield-chip-font-style);--plasma-textfield__chip-font-weight:var(--plasma-select-textfield-chip-font-weight);--plasma-textfield__chip-letter-spacing:var(--plasma-select-textfield-chip-letter-spacing);--plasma-textfield__chip-line-height:var(--plasma-select-textfield-chip-line-height);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield-chip-background-hover);--plasma-textfield__chip-clear-content-margin-left:var(--plasma-select-textfield-chip-clear-content-margin-left);--plasma-textfield__chip-clear-content-margin-right:var(--plasma-select-textfield-chip-clear-content-margin-right);--plasma-textfield__indicator-color:var(--plasma-select-new-textfield-indicator-color);--plasma-textfield__indicator-size-inner:var(--plasma-select-new-textfield-indicator-size-inner);--plasma-textfield__indicator-size-outer:var(--plasma-select-new-textfield-indicator-size-outer);--plasma-textfield__indicator-placement-inner:var(--plasma-select-new-textfield-indicator-placement-inner);--plasma-textfield__indicator-placement-outer:var(--plasma-select-new-textfield-indicator-placement-outer);--plasma-textfield__indicator-placement-inner-right:var(--plasma-select-new-textfield-indicator-placement-inner-right);--plasma-textfield__indicator-placement-outer-right:var(--plasma-select-new-textfield-indicator-placement-outer-right);--plasma-textfield__clear-indicator-placement-inner:var(--plasma-select-new-textfield-clear-indicator-placement-inner);--plasma-textfield__clear-indicator-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-placement-inner-right );--plasma-textfield__clear-indicator-hint-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-hint-placement-inner-right);--plasma-textfield-focus-color:var(--plasma-select-textfield-focus-color);--plasma-textfield-box-shadow:var(--s1yhwv5r-3);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904 div.Textfield_styles_1mikp58_inputWrapper__b997b904:focus-within{background-color:var(--plasma-select-textfield-background-color-focus);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904.Textfield_styles_1mikp58_readonly__b997b904{--plasma-textfield-color-readonly:var(--plasma-select-textfield-color-readonly);--plasma-textfield-bg-color-readonly:var(--plasma-select-textfield-bg-color-readonly);--plasma-textfield__placeholder-color-readonly:var(--plasma-select-textfield__placeholder-color-readonly);--plasma-textfield-divider-color-readonly:var(--plasma-select-textfield-divider-color-readonly);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield__left-helper-color-readonly);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield__label-color-readonly);--plasma-textfield__title-caption-color-readonly:var(--plasma-select-textfield__title-caption-color-readonly);--plasma-textfield-border-color-readonly:var(--plasma-select-textfield-border-color-readonly);--plasma-textfield-readonly-opacity:var(--plasma-select-textfield-readonly-opacity);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield__chip-color-readonly);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield__chip-color-readonly-hover);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield__chip-background-readonly);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield__chip-background-readonly-hover);--plasma-textfield__chip-opacity-readonly:var(--plasma-select-textfield__chip-opacity-readonly);--plasma-textfield-box-shadow:none;}
@@ -169,6 +169,9 @@
169
169
  .TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);-webkit-scroll-snap-align:center;-moz-scroll-snap-align:center;-ms-scroll-snap-align:center;scroll-snap-align:center;-webkit-scroll-snap-stop:normal;-moz-scroll-snap-stop:normal;-ms-scroll-snap-stop:normal;scroll-snap-stop:normal;position:relative;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
170
170
  .TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:after{content:',';}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:last-child:after{content:'';}
171
171
 
172
+ .TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);--plasma-chip-disabled-opacity:0.4;position:relative;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
173
+ .TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:after{content:',';}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:last-child:after{content:'';}
174
+
172
175
  .TextField_1lzb2r1_bpunezx__7d079491{display:block;}
173
176
 
174
177
  .Textfield_styles_1mikp58_s1yhwv5r__b997b904{--plasma-textfield-color:var(--plasma-select-textfield-color);--plasma-textfield-bg-color:var(--plasma-select-textfield-background-color);--plasma-textfield-border-color:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield__label-color:var(--plasma-select-textfield-label-color);--plasma-textfield__left-helper-color:var(--plasma-select-textfield-left-helper-color);--plasma-textfield-color-readonly:var(--plasma-select-textfield-color);--plasma-textfield-bg-color-readonly:var(--s1yhwv5r-0);--plasma-textfield__placeholder-color-readonly:var(--s1yhwv5r-1);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield-left-helper-color);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield-label-color);--plasma-textfield-border-color-readonly:var(--s1yhwv5r-2);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield-border-color-hover:var(--plasma-select-textfield-border-color-hover);--plasma-textfield-border-color-focus:var(--plasma-select-textfield-border-color-focus);--plasma-textfield__optional-color:var(--plasma-select-new-textfield-optional-color);--plasma-textfield-height:var(--plasma-select-textfield-height);--plasma-textfield-border-width:var(--plasma-select-textfield-border-width);--plasma-textfield-border-radius:var(--plasma-select-textfield-border-radius);--plasma-textfield-padding:var(--plasma-select-textfield-padding);--plasma-textfield-padding-with-chips:var(--plasma-select-textfield-padding-with-chips);--plasma-textfield__left-content-margin:var(--plasma-select-textfield-left-content-margin);--plasma-textfield__right-content-margin:var(--plasma-select-textfield-right-content-margin);--plasma-textfield__right-content-with-hint-margin:var(--plasma-select-textfield-right-content-with-hint-margin);--plasma-textfield-content-right-wrapper-gap:var(--plasma-select-textfield-content-right-wrapper-gap);--plasma-textfield-content-right-wrapper-margin:var(--plasma-select-textfield-content-right-wrapper-margin);--plasma-textfield-font-family:var(--plasma-select-textfield-font-family);--plasma-textfield-font-style:var(--plasma-select-textfield-font-style);--plasma-textfield-font-size:var(--plasma-select-textfield-font-size);--plasma-textfield-font-weight:var(--plasma-select-textfield-font-weight);--plasma-textfield-letter-spacing:var(--plasma-select-textfield-letter-spacing);--plasma-textfield-line-height:var(--plasma-select-textfield-line-height);--plasma-textfield-content-slot-color:var(--plasma-select-textfield-content-slot-color);--plasma-textfield-content-slot-color-hover:var(--plasma-select-textfield-content-slot-color-hover);--plasma-textfield-content-slot-color-active:var(--plasma-select-textfield-content-slot-color-active);--plasma-textfield-content-right-slot-color:var(--plasma-select-textfield-content-right-slot-color);--plasma-textfield-content-right-slot-color-hover:var(--plasma-select-textfield-content-right-slot-color-hover);--plasma-textfield-content-right-slot-color-active:var(--plasma-select-textfield-content-right-slot-color-active);--plasma-textfield__label-offset:var(--plasma-select-textfield-label-offset);--plasma-textfield__label-font-family:var(--plasma-select-textfield-label-font-family);--plasma-textfield__label-font-style:var(--plasma-select-textfield-label-font-style);--plasma-textfield__label-font-size:var(--plasma-select-textfield-label-font-size);--plasma-textfield__label-font-weight:var(--plasma-select-textfield-label-font-weight);--plasma-textfield__label-letter-spacing:var(--plasma-select-textfield-label-letter-spacing);--plasma-textfield__label-line-height:var(--plasma-select-textfield-label-line-height);--plasma-textfield-placement_inner__label-font-family:var(--plasma-select-textfield-placement-inner-label-font-family);--plasma-textfield-placement_inner__label-font-style:var(--plasma-select-textfield-placement-inner-label-font-style);--plasma-textfield-placement_inner__label-font-size:var(--plasma-select-textfield-placement-inner-label-font-size);--plasma-textfield-placement_inner__label-font-weight:var(--plasma-select-textfield-placement-inner-label-font-weight);--plasma-textfield-placement_inner__label-letter-spacing:var(--plasma-select-textfield-placement-inner-label-letter-spacing);--plasma-textfield-placement_inner__label-line-height:var(--plasma-select-textfield-placement-inner-label-line-height);--plasma-textfield-placement_inner__label-padding:var(--plasma-select-textfield-placement-inner-label-padding);--plasma-textfield-placement_inner__content-padding:var(--plasma-select-textfield-placement-inner-content-padding);--plasma-textfield__title-caption-color:var(--plasma-select-textfield-title-caption-color);--plasma-textfield__title-caption-label-inner-offset:var(--plasma-select-textfield-title-caption-label-inner-offset);--plasma-textfield__title-caption-font-family:var(--plasma-select-textfield-title-caption-font-family);--plasma-textfield__title-caption-font-style:var(--plasma-select-textfield-title-caption-font-style);--plasma-textfield__title-caption-font-size:var(--plasma-select-textfield-title-caption-font-size);--plasma-textfield__title-caption-font-weight:var(--plasma-select-textfield-title-caption-font-weight);--plasma-textfield__title-caption-letter-spacing:var(--plasma-select-textfield-title-caption-letter-spacing);--plasma-textfield__title-caption-line-height:var(--plasma-select-textfield-title-caption-line-height);--plasma-textfield__left-helper-offset:var(--plasma-select-textfield-left-helper-offset);--plasma-textfield__left-helper-font-family:var(--plasma-select-textfield-left-helper-font-family);--plasma-textfield__left-helper-font-style:var(--plasma-select-textfield-left-helper-font-style);--plasma-textfield__left-helper-font-size:var(--plasma-select-textfield-left-helper-font-size);--plasma-textfield__left-helper-font-weight:var(--plasma-select-textfield-left-helper-font-weight);--plasma-textfield__left-helper-letter-spacing:var(--plasma-select-textfield-left-helper-letter-spacing);--plasma-textfield__left-helper-line-height:var(--plasma-select-textfield-left-helper-line-height);--plasma-textfield__before-text-color:var(--plasma-select-textfield-before-text-color);--plasma-textfield__after-text-color:var(--plasma-select-textfield-after-text-color);--plasma-textfield__before-text-margin:var(--plasma-select-textfield-before-text-margin);--plasma-textfield__after-text-margin:var(--plasma-select-textfield-after-text-margin);--plasma-textfield-disabled-opacity:var(--plasma-select-textfield-disabled-opacity);--plasma-textfield__hint-custom-icon-target-size:var(--plasma-select-textfield__hint-custom-icon-target-size);--plasma-textfield__hint-margin:var(--plasma-select-textfield__hint-margin);--plasma-textfield__hint-target-size:var(--plasma-select-textfield__hint-target-size);--plasma-textfield__hint-icon-color:var(--plasma-select-textfield__hint-icon-color);--plasma-textfield__hint-inner-label-placement-offset:var(--plasma-select-textfield__hint-inner-label-placement-offset);--plasma-textfield__clear-hint-inner-label-placement-offset:var(--plasma-select-textfield__clear-hint-inner-label-placement-offset);--plasma-textfield__tooltip-background-color:var(--plasma-select-textfield__tooltip-background-color);--plasma-textfield__tooltip-box-shadow:var(--plasma-select-textfield__tooltip-box-shadow);--plasma-textfield__tooltip-color:var(--plasma-select-textfield__tooltip-color);--plasma-textfield__tooltip-padding-top:var(--plasma-select-textfield__tooltip-padding-top);--plasma-textfield__tooltip-padding-right:var(--plasma-select-textfield__tooltip-padding-right);--plasma-textfield__tooltip-padding-bottom:var(--plasma-select-textfield__tooltip-padding-bottom);--plasma-textfield__tooltip-padding-left:var(--plasma-select-textfield__tooltip-padding-left);--plasma-textfield__tooltip-min-height:var(--plasma-select-textfield__tooltip-min-height);--plasma-textfield__tooltip-border-radius:var(--plasma-select-textfield__tooltip-border-radius);--plasma-textfield__tooltip-text-font-family:var(--plasma-select-textfield__tooltip-text-font-family);--plasma-textfield__tooltip-text-font-size:var(--plasma-select-textfield__tooltip-text-font-size);--plasma-textfield__tooltip-text-font-style:var(--plasma-select-textfield__tooltip-text-font-style);--plasma-textfield__tooltip-text-font-weight:var(--plasma-select-textfield__tooltip-text-font-weight);--plasma-textfield__tooltip-text-font-letter-spacing:var(--plasma-select-textfield__tooltip-text-font-letter-spacing);--plasma-textfield__tooltip-text-font-line-height:var(--plasma-select-textfield__tooltip-text-font-line-height);--plasma-textfield__tooltip-content-left-margin:var(--plasma-select-textfield__tooltip-content-left-margin);--plasma-textfield__tooltip-arrow-mask-width:var(--plasma-select-textfield__tooltip-arrow-mask-width);--plasma-textfield__tooltip-arrow-mask-height:var(--plasma-select-textfield__tooltip-arrow-mask-height);--plasma-textfield__tooltip-arrow-mask-image:var(--plasma-select-textfield__tooltip-arrow-mask-image);--plasma-textfield__tooltip-arrow-height:var(--plasma-select-textfield__tooltip-arrow-height);--plasma-textfield__tooltip-arrow-edge-margin:var(--plasma-select-textfield__tooltip-arrow-edge-margin);--plasma-textfield__tooltip-arrow-background:var(--plasma-select-textfield__tooltip-arrow-background);--plasma-textfield__chip-height:var(--plasma-select-textfield-chip-height);--plasma-textfield__chip-border-radius:var(--plasma-select-textfield-chip-border-radius);--plasma-textfield__chip-gap:var(--plasma-select-textfield-chip-gap);--plasma-textfield__chip-color:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-hover:var(--plasma-select-textfield-chip-color-hover);--plasma-textfield__chip-background:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-active:var(--plasma-select-textfield-chip-background-active);--plasma-textfield__chip-color-active:var(--plasma-select-textfield-chip-color-active);--plasma-textfield__chip-close-icon-color:var(--plasma-select-textfield-chip-close-icons-color);--plasma-textfield__chip-outline-size:var(--plasma-select-textfield-chip-outline-size);--plasma-textfield__chip-width:var(--plasma-select-textfield-chip-width);--plasma-textfield__chip-padding:var(--plasma-select-textfield-chip-padding);--plasma-textfield__chip-close-icon-size:var(--plasma-select-textfield-chip-close-icon-size);--plasma-textfield__chip-font-family:var(--plasma-select-textfield-chip-font-family);--plasma-textfield__chip-font-size:var(--plasma-select-textfield-chip-font-size);--plasma-textfield__chip-font-style:var(--plasma-select-textfield-chip-font-style);--plasma-textfield__chip-font-weight:var(--plasma-select-textfield-chip-font-weight);--plasma-textfield__chip-letter-spacing:var(--plasma-select-textfield-chip-letter-spacing);--plasma-textfield__chip-line-height:var(--plasma-select-textfield-chip-line-height);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield-chip-background-hover);--plasma-textfield__chip-clear-content-margin-left:var(--plasma-select-textfield-chip-clear-content-margin-left);--plasma-textfield__chip-clear-content-margin-right:var(--plasma-select-textfield-chip-clear-content-margin-right);--plasma-textfield__indicator-color:var(--plasma-select-new-textfield-indicator-color);--plasma-textfield__indicator-size-inner:var(--plasma-select-new-textfield-indicator-size-inner);--plasma-textfield__indicator-size-outer:var(--plasma-select-new-textfield-indicator-size-outer);--plasma-textfield__indicator-placement-inner:var(--plasma-select-new-textfield-indicator-placement-inner);--plasma-textfield__indicator-placement-outer:var(--plasma-select-new-textfield-indicator-placement-outer);--plasma-textfield__indicator-placement-inner-right:var(--plasma-select-new-textfield-indicator-placement-inner-right);--plasma-textfield__indicator-placement-outer-right:var(--plasma-select-new-textfield-indicator-placement-outer-right);--plasma-textfield__clear-indicator-placement-inner:var(--plasma-select-new-textfield-clear-indicator-placement-inner);--plasma-textfield__clear-indicator-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-placement-inner-right );--plasma-textfield__clear-indicator-hint-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-hint-placement-inner-right);--plasma-textfield-focus-color:var(--plasma-select-textfield-focus-color);--plasma-textfield-box-shadow:var(--s1yhwv5r-3);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904 div.Textfield_styles_1mikp58_inputWrapper__b997b904:focus-within{background-color:var(--plasma-select-textfield-background-color-focus);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904.Textfield_styles_1mikp58_readonly__b997b904{--plasma-textfield-color-readonly:var(--plasma-select-textfield-color-readonly);--plasma-textfield-bg-color-readonly:var(--plasma-select-textfield-bg-color-readonly);--plasma-textfield__placeholder-color-readonly:var(--plasma-select-textfield__placeholder-color-readonly);--plasma-textfield-divider-color-readonly:var(--plasma-select-textfield-divider-color-readonly);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield__left-helper-color-readonly);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield__label-color-readonly);--plasma-textfield__title-caption-color-readonly:var(--plasma-select-textfield__title-caption-color-readonly);--plasma-textfield-border-color-readonly:var(--plasma-select-textfield-border-color-readonly);--plasma-textfield-readonly-opacity:var(--plasma-select-textfield-readonly-opacity);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield__chip-color-readonly);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield__chip-color-readonly-hover);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield__chip-background-readonly);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield__chip-background-readonly-hover);--plasma-textfield__chip-opacity-readonly:var(--plasma-select-textfield__chip-opacity-readonly);--plasma-textfield-box-shadow:none;}
@@ -169,6 +169,9 @@
169
169
  .TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);-webkit-scroll-snap-align:center;-moz-scroll-snap-align:center;-ms-scroll-snap-align:center;scroll-snap-align:center;-webkit-scroll-snap-stop:normal;-moz-scroll-snap-stop:normal;-ms-scroll-snap-stop:normal;scroll-snap-stop:normal;position:relative;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_s32p7ut__9f1b34fd[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
170
170
  .TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd.TextFieldChip_styles_14q069b_focusVisible__9f1b34fd:focus::before,.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:after{content:',';}.TextFieldChip_styles_14q069b_t4nir3h__9f1b34fd:last-child:after{content:'';}
171
171
 
172
+ .TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7{--plasma-chip-color:var(--plasma-textfield__chip-color);--plasma-chip-background:var(--plasma-textfield__chip-background);--plasma-chip-color-hover:var(--plasma-textfield__chip-color-hover);--plasma-chip-background-hover:var(--plasma-textfield__chip-background-hover);--plasma-chip-color-active:var(--plasma-textfield__chip-color-active);--plasma-chip-background-active:var(--plasma-textfield__chip-background-active);--plasma-chip-background-readonly:var(--plasma-textfield__chip-background-readonly);--plasma-chip-color-readonly:var(--plasma-textfield__chip-color-readonly);--plasma-chip-background-readonly-hover:var(--plasma-textfield__chip-background-readonly-hover);--plasma-chip-color-readonly-hover:var(--plasma-textfield__chip-color-readonly-hover);--plasma-chip-border-radius:var(--plasma-textfield__chip-border-radius);--plasma-chip-width:var(--plasma-textfield__chip-width);--plasma-chip-height:var(--plasma-textfield__chip-height);--plasma-chip-padding:var(--plasma-textfield__chip-padding);--plasma-chip-font-family:var(--plasma-textfield__chip-font-family);--plasma-chip-font-size:var(--plasma-textfield__chip-font-size);--plasma-chip-font-style:var(--plasma-textfield__chip-font-style);--plasma-chip-font-weight:var(--plasma-textfield__chip-font-weight);--plasma-chip-letter-spacing:var(--plasma-textfield__chip-letter-spacing);--plasma-chip-lineheight:var(--plasma-textfield__chip-line-height);--plasma-chip-clear-content-margin-left:var(--plasma-textfield__chip-clear-content-margin-left);--plasma-chip-clear-content-margin-right:var(--plasma-textfield__chip-clear-content-margin-right);--plasma-chip-close-icon-size:var(--plasma-textfield__chip-close-icon-size);--plasma-chip-close-icon-color:var(--plasma-textfield__chip-close-icon-color);--plasma-chip-focus-color:var(--plasma-textfield-focus-color);--plasma-chip-disabled-opacity:0.4;position:relative;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_s11qqqhl__d1734be7[readonly]{opacity:var(--plasma-textfield__chip-opacity-readonly);}
173
+ .TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7{display:block;-webkit-flex:none;-ms-flex:none;flex:none;background:none;border:none;outline:none;padding:0;white-space:nowrap;cursor:pointer;font-family:var(--plasma-textfield-font-family);font-size:var(--plasma-textfield-font-size);font-style:var(--plasma-textfield-font-style);font-weight:var(--plasma-textfield-font-weight);-webkit-letter-spacing:var(--plasma-textfield-letter-spacing);-moz-letter-spacing:var(--plasma-textfield-letter-spacing);-ms-letter-spacing:var(--plasma-textfield-letter-spacing);letter-spacing:var(--plasma-textfield-letter-spacing);line-height:var(--plasma-textfield-line-height);color:var(--plasma-textfield-color);position:relative;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7::before{content:'';position:absolute;top:0.0625rem;left:0.0625rem;right:0.0625rem;bottom:0.0625rem;z-index:1;display:block;box-sizing:content-box;border:0.0625rem solid transparent;border-radius:calc(var(--plasma-textfield__chip-border-radius) - 0.1rem);-webkit-transition:box-shadow 0.2s ease-in-out;transition:box-shadow 0.2s ease-in-out;pointer-events:none;}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7.TextFieldChipNew_styles_y9tozi_focusVisible__d1734be7:focus::before,.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7[data-focus-visible-added]::before{outline:none;box-shadow:0 0 0 0.0625rem var(--plasma-textfield-focus-color);}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:after{content:',';}.TextFieldChipNew_styles_y9tozi_t10z5awc__d1734be7:last-child:after{content:'';}
174
+
172
175
  .TextField_1lzb2r1_bpunezx__7d079491{display:block;}
173
176
 
174
177
  .Textfield_styles_1mikp58_s1yhwv5r__b997b904{--plasma-textfield-color:var(--plasma-select-textfield-color);--plasma-textfield-bg-color:var(--plasma-select-textfield-background-color);--plasma-textfield-border-color:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield__label-color:var(--plasma-select-textfield-label-color);--plasma-textfield__left-helper-color:var(--plasma-select-textfield-left-helper-color);--plasma-textfield-color-readonly:var(--plasma-select-textfield-color);--plasma-textfield-bg-color-readonly:var(--s1yhwv5r-0);--plasma-textfield__placeholder-color-readonly:var(--s1yhwv5r-1);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield-left-helper-color);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield-label-color);--plasma-textfield-border-color-readonly:var(--s1yhwv5r-2);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield-border-color-hover:var(--plasma-select-textfield-border-color-hover);--plasma-textfield-border-color-focus:var(--plasma-select-textfield-border-color-focus);--plasma-textfield__optional-color:var(--plasma-select-new-textfield-optional-color);--plasma-textfield-height:var(--plasma-select-textfield-height);--plasma-textfield-border-width:var(--plasma-select-textfield-border-width);--plasma-textfield-border-radius:var(--plasma-select-textfield-border-radius);--plasma-textfield-padding:var(--plasma-select-textfield-padding);--plasma-textfield-padding-with-chips:var(--plasma-select-textfield-padding-with-chips);--plasma-textfield__left-content-margin:var(--plasma-select-textfield-left-content-margin);--plasma-textfield__right-content-margin:var(--plasma-select-textfield-right-content-margin);--plasma-textfield__right-content-with-hint-margin:var(--plasma-select-textfield-right-content-with-hint-margin);--plasma-textfield-content-right-wrapper-gap:var(--plasma-select-textfield-content-right-wrapper-gap);--plasma-textfield-content-right-wrapper-margin:var(--plasma-select-textfield-content-right-wrapper-margin);--plasma-textfield-font-family:var(--plasma-select-textfield-font-family);--plasma-textfield-font-style:var(--plasma-select-textfield-font-style);--plasma-textfield-font-size:var(--plasma-select-textfield-font-size);--plasma-textfield-font-weight:var(--plasma-select-textfield-font-weight);--plasma-textfield-letter-spacing:var(--plasma-select-textfield-letter-spacing);--plasma-textfield-line-height:var(--plasma-select-textfield-line-height);--plasma-textfield-content-slot-color:var(--plasma-select-textfield-content-slot-color);--plasma-textfield-content-slot-color-hover:var(--plasma-select-textfield-content-slot-color-hover);--plasma-textfield-content-slot-color-active:var(--plasma-select-textfield-content-slot-color-active);--plasma-textfield-content-right-slot-color:var(--plasma-select-textfield-content-right-slot-color);--plasma-textfield-content-right-slot-color-hover:var(--plasma-select-textfield-content-right-slot-color-hover);--plasma-textfield-content-right-slot-color-active:var(--plasma-select-textfield-content-right-slot-color-active);--plasma-textfield__label-offset:var(--plasma-select-textfield-label-offset);--plasma-textfield__label-font-family:var(--plasma-select-textfield-label-font-family);--plasma-textfield__label-font-style:var(--plasma-select-textfield-label-font-style);--plasma-textfield__label-font-size:var(--plasma-select-textfield-label-font-size);--plasma-textfield__label-font-weight:var(--plasma-select-textfield-label-font-weight);--plasma-textfield__label-letter-spacing:var(--plasma-select-textfield-label-letter-spacing);--plasma-textfield__label-line-height:var(--plasma-select-textfield-label-line-height);--plasma-textfield-placement_inner__label-font-family:var(--plasma-select-textfield-placement-inner-label-font-family);--plasma-textfield-placement_inner__label-font-style:var(--plasma-select-textfield-placement-inner-label-font-style);--plasma-textfield-placement_inner__label-font-size:var(--plasma-select-textfield-placement-inner-label-font-size);--plasma-textfield-placement_inner__label-font-weight:var(--plasma-select-textfield-placement-inner-label-font-weight);--plasma-textfield-placement_inner__label-letter-spacing:var(--plasma-select-textfield-placement-inner-label-letter-spacing);--plasma-textfield-placement_inner__label-line-height:var(--plasma-select-textfield-placement-inner-label-line-height);--plasma-textfield-placement_inner__label-padding:var(--plasma-select-textfield-placement-inner-label-padding);--plasma-textfield-placement_inner__content-padding:var(--plasma-select-textfield-placement-inner-content-padding);--plasma-textfield__title-caption-color:var(--plasma-select-textfield-title-caption-color);--plasma-textfield__title-caption-label-inner-offset:var(--plasma-select-textfield-title-caption-label-inner-offset);--plasma-textfield__title-caption-font-family:var(--plasma-select-textfield-title-caption-font-family);--plasma-textfield__title-caption-font-style:var(--plasma-select-textfield-title-caption-font-style);--plasma-textfield__title-caption-font-size:var(--plasma-select-textfield-title-caption-font-size);--plasma-textfield__title-caption-font-weight:var(--plasma-select-textfield-title-caption-font-weight);--plasma-textfield__title-caption-letter-spacing:var(--plasma-select-textfield-title-caption-letter-spacing);--plasma-textfield__title-caption-line-height:var(--plasma-select-textfield-title-caption-line-height);--plasma-textfield__left-helper-offset:var(--plasma-select-textfield-left-helper-offset);--plasma-textfield__left-helper-font-family:var(--plasma-select-textfield-left-helper-font-family);--plasma-textfield__left-helper-font-style:var(--plasma-select-textfield-left-helper-font-style);--plasma-textfield__left-helper-font-size:var(--plasma-select-textfield-left-helper-font-size);--plasma-textfield__left-helper-font-weight:var(--plasma-select-textfield-left-helper-font-weight);--plasma-textfield__left-helper-letter-spacing:var(--plasma-select-textfield-left-helper-letter-spacing);--plasma-textfield__left-helper-line-height:var(--plasma-select-textfield-left-helper-line-height);--plasma-textfield__before-text-color:var(--plasma-select-textfield-before-text-color);--plasma-textfield__after-text-color:var(--plasma-select-textfield-after-text-color);--plasma-textfield__before-text-margin:var(--plasma-select-textfield-before-text-margin);--plasma-textfield__after-text-margin:var(--plasma-select-textfield-after-text-margin);--plasma-textfield-disabled-opacity:var(--plasma-select-textfield-disabled-opacity);--plasma-textfield__hint-custom-icon-target-size:var(--plasma-select-textfield__hint-custom-icon-target-size);--plasma-textfield__hint-margin:var(--plasma-select-textfield__hint-margin);--plasma-textfield__hint-target-size:var(--plasma-select-textfield__hint-target-size);--plasma-textfield__hint-icon-color:var(--plasma-select-textfield__hint-icon-color);--plasma-textfield__hint-inner-label-placement-offset:var(--plasma-select-textfield__hint-inner-label-placement-offset);--plasma-textfield__clear-hint-inner-label-placement-offset:var(--plasma-select-textfield__clear-hint-inner-label-placement-offset);--plasma-textfield__tooltip-background-color:var(--plasma-select-textfield__tooltip-background-color);--plasma-textfield__tooltip-box-shadow:var(--plasma-select-textfield__tooltip-box-shadow);--plasma-textfield__tooltip-color:var(--plasma-select-textfield__tooltip-color);--plasma-textfield__tooltip-padding-top:var(--plasma-select-textfield__tooltip-padding-top);--plasma-textfield__tooltip-padding-right:var(--plasma-select-textfield__tooltip-padding-right);--plasma-textfield__tooltip-padding-bottom:var(--plasma-select-textfield__tooltip-padding-bottom);--plasma-textfield__tooltip-padding-left:var(--plasma-select-textfield__tooltip-padding-left);--plasma-textfield__tooltip-min-height:var(--plasma-select-textfield__tooltip-min-height);--plasma-textfield__tooltip-border-radius:var(--plasma-select-textfield__tooltip-border-radius);--plasma-textfield__tooltip-text-font-family:var(--plasma-select-textfield__tooltip-text-font-family);--plasma-textfield__tooltip-text-font-size:var(--plasma-select-textfield__tooltip-text-font-size);--plasma-textfield__tooltip-text-font-style:var(--plasma-select-textfield__tooltip-text-font-style);--plasma-textfield__tooltip-text-font-weight:var(--plasma-select-textfield__tooltip-text-font-weight);--plasma-textfield__tooltip-text-font-letter-spacing:var(--plasma-select-textfield__tooltip-text-font-letter-spacing);--plasma-textfield__tooltip-text-font-line-height:var(--plasma-select-textfield__tooltip-text-font-line-height);--plasma-textfield__tooltip-content-left-margin:var(--plasma-select-textfield__tooltip-content-left-margin);--plasma-textfield__tooltip-arrow-mask-width:var(--plasma-select-textfield__tooltip-arrow-mask-width);--plasma-textfield__tooltip-arrow-mask-height:var(--plasma-select-textfield__tooltip-arrow-mask-height);--plasma-textfield__tooltip-arrow-mask-image:var(--plasma-select-textfield__tooltip-arrow-mask-image);--plasma-textfield__tooltip-arrow-height:var(--plasma-select-textfield__tooltip-arrow-height);--plasma-textfield__tooltip-arrow-edge-margin:var(--plasma-select-textfield__tooltip-arrow-edge-margin);--plasma-textfield__tooltip-arrow-background:var(--plasma-select-textfield__tooltip-arrow-background);--plasma-textfield__chip-height:var(--plasma-select-textfield-chip-height);--plasma-textfield__chip-border-radius:var(--plasma-select-textfield-chip-border-radius);--plasma-textfield__chip-gap:var(--plasma-select-textfield-chip-gap);--plasma-textfield__chip-color:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-hover:var(--plasma-select-textfield-chip-color-hover);--plasma-textfield__chip-background:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-active:var(--plasma-select-textfield-chip-background-active);--plasma-textfield__chip-color-active:var(--plasma-select-textfield-chip-color-active);--plasma-textfield__chip-close-icon-color:var(--plasma-select-textfield-chip-close-icons-color);--plasma-textfield__chip-outline-size:var(--plasma-select-textfield-chip-outline-size);--plasma-textfield__chip-width:var(--plasma-select-textfield-chip-width);--plasma-textfield__chip-padding:var(--plasma-select-textfield-chip-padding);--plasma-textfield__chip-close-icon-size:var(--plasma-select-textfield-chip-close-icon-size);--plasma-textfield__chip-font-family:var(--plasma-select-textfield-chip-font-family);--plasma-textfield__chip-font-size:var(--plasma-select-textfield-chip-font-size);--plasma-textfield__chip-font-style:var(--plasma-select-textfield-chip-font-style);--plasma-textfield__chip-font-weight:var(--plasma-select-textfield-chip-font-weight);--plasma-textfield__chip-letter-spacing:var(--plasma-select-textfield-chip-letter-spacing);--plasma-textfield__chip-line-height:var(--plasma-select-textfield-chip-line-height);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield-chip-background-hover);--plasma-textfield__chip-clear-content-margin-left:var(--plasma-select-textfield-chip-clear-content-margin-left);--plasma-textfield__chip-clear-content-margin-right:var(--plasma-select-textfield-chip-clear-content-margin-right);--plasma-textfield__indicator-color:var(--plasma-select-new-textfield-indicator-color);--plasma-textfield__indicator-size-inner:var(--plasma-select-new-textfield-indicator-size-inner);--plasma-textfield__indicator-size-outer:var(--plasma-select-new-textfield-indicator-size-outer);--plasma-textfield__indicator-placement-inner:var(--plasma-select-new-textfield-indicator-placement-inner);--plasma-textfield__indicator-placement-outer:var(--plasma-select-new-textfield-indicator-placement-outer);--plasma-textfield__indicator-placement-inner-right:var(--plasma-select-new-textfield-indicator-placement-inner-right);--plasma-textfield__indicator-placement-outer-right:var(--plasma-select-new-textfield-indicator-placement-outer-right);--plasma-textfield__clear-indicator-placement-inner:var(--plasma-select-new-textfield-clear-indicator-placement-inner);--plasma-textfield__clear-indicator-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-placement-inner-right );--plasma-textfield__clear-indicator-hint-placement-inner-right:var(--plasma-select-new-textfield-clear-indicator-hint-placement-inner-right);--plasma-textfield-focus-color:var(--plasma-select-textfield-focus-color);--plasma-textfield-box-shadow:var(--s1yhwv5r-3);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904 div.Textfield_styles_1mikp58_inputWrapper__b997b904:focus-within{background-color:var(--plasma-select-textfield-background-color-focus);}.Textfield_styles_1mikp58_s1yhwv5r__b997b904.Textfield_styles_1mikp58_readonly__b997b904{--plasma-textfield-color-readonly:var(--plasma-select-textfield-color-readonly);--plasma-textfield-bg-color-readonly:var(--plasma-select-textfield-bg-color-readonly);--plasma-textfield__placeholder-color-readonly:var(--plasma-select-textfield__placeholder-color-readonly);--plasma-textfield-divider-color-readonly:var(--plasma-select-textfield-divider-color-readonly);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield__left-helper-color-readonly);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield__label-color-readonly);--plasma-textfield__title-caption-color-readonly:var(--plasma-select-textfield__title-caption-color-readonly);--plasma-textfield-border-color-readonly:var(--plasma-select-textfield-border-color-readonly);--plasma-textfield-readonly-opacity:var(--plasma-select-textfield-readonly-opacity);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield__chip-color-readonly);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield__chip-color-readonly-hover);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield__chip-background-readonly);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield__chip-background-readonly-hover);--plasma-textfield__chip-opacity-readonly:var(--plasma-select-textfield__chip-opacity-readonly);--plasma-textfield-box-shadow:none;}
@@ -23,13 +23,14 @@ var getInputWidth = require('./getInputWidth.js');
23
23
  var react = require('../../utils/react.js');
24
24
  var useOutsideClick = require('../../hooks/useOutsideClick.js');
25
25
  var useKeyNavigation = require('./hooks/useKeyNavigation.js');
26
+ var TextFieldChipNew = require('./ui/TextFieldChipNew/TextFieldChipNew.js');
26
27
  var TextFieldChip = require('./ui/TextFieldChip/TextFieldChip.js');
27
28
 
28
29
  function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
29
30
 
30
31
  var React__default = /*#__PURE__*/_interopDefault(React);
31
32
 
32
- var _excluded = ["id", "className", "style", "contentLeft", "contentRight", "label", "labelPlacement", "keepPlaceholder", "textBefore", "textAfter", "placeholder", "leftHelper", "enumerationType", "requiredPlacement", "hasRequiredIndicator", "titleCaption", "chipView", "chipValidator", "hintTrigger", "hintText", "hintView", "hintSize", "hintTargetIcon", "hintTargetPlacement", "hintPlacement", "hintHasArrow", "hintOffset", "hintWidth", "hintContentLeft", "view", "size", "readOnly", "disabled", "required", "clear", "optional", "hasDivider", "value", "chips", "chipType", "onChange", "onChangeChips", "onSearch", "onKeyDown", "onFocus", "onBlur", "onPaste", "_onEnterDisabled", "_forceChipManipulationWithReadonly"];
33
+ var _excluded = ["id", "className", "style", "contentLeft", "contentRight", "label", "labelPlacement", "keepPlaceholder", "textBefore", "textAfter", "placeholder", "leftHelper", "enumerationType", "requiredPlacement", "hasRequiredIndicator", "titleCaption", "chipView", "chipValidator", "hintTrigger", "hintText", "hintView", "hintSize", "hintTargetIcon", "hintTargetPlacement", "hintPlacement", "hintHasArrow", "hintOffset", "hintWidth", "hintContentLeft", "view", "size", "readOnly", "disabled", "required", "clear", "optional", "hasDivider", "value", "chips", "chipType", "_chips", "_onChipClick", "onChange", "onChangeChips", "onSearch", "onKeyDown", "onFocus", "onBlur", "onPaste", "_onEnterDisabled", "_forceChipManipulationWithReadonly"];
33
34
  var optionalText = 'optional';
34
35
  var base = "bpunezx";
35
36
  var HINT_DEFAULT_OFFSET = [0, 0];
@@ -91,6 +92,8 @@ var textFieldRoot = function textFieldRoot(Root) {
91
92
  values = _ref.chips,
92
93
  _ref$chipType = _ref.chipType,
93
94
  chipType = _ref$chipType === void 0 ? 'default' : _ref$chipType,
95
+ _chips = _ref._chips,
96
+ _onChipClick = _ref._onChipClick,
94
97
  onChange = _ref.onChange,
95
98
  onChangeChips = _ref.onChangeChips,
96
99
  onSearch = _ref.onSearch,
@@ -133,7 +136,7 @@ var textFieldRoot = function textFieldRoot(Root) {
133
136
  var helperTextId = react.safeUseId();
134
137
  var isDefaultView = view === 'default' || readOnly || disabled;
135
138
  var isChipEnumeration = enumerationType === 'chip';
136
- var isChipsVisible = isChipEnumeration && Boolean(chips === null || chips === void 0 ? void 0 : chips.length);
139
+ var isChipsVisible = isChipEnumeration && Boolean((chips === null || chips === void 0 ? void 0 : chips.length) || (_chips === null || _chips === void 0 ? void 0 : _chips.length));
137
140
  var withHasChips = isChipsVisible ? TextField_tokens.classes.hasChips : undefined;
138
141
  var hasLabelValue = Boolean(label);
139
142
  var hasInnerLabel = size !== 'xs' && labelPlacement === 'inner' && !isChipsVisible && hasLabelValue;
@@ -387,7 +390,20 @@ var textFieldRoot = function textFieldRoot(Root) {
387
390
  ref: contentRef,
388
391
  onKeyDown: handleContentKeyDown,
389
392
  className: withHasChips
390
- }, Boolean(textBefore && isChipEnumeration) && /*#__PURE__*/React__default.default.createElement(TextField_styles.StyledTextBefore, null, textBefore), isChipEnumeration && Boolean(chips === null || chips === void 0 ? void 0 : chips.length) && /*#__PURE__*/React__default.default.createElement(TextField_styles.StyledChips, {
393
+ }, Boolean(textBefore && isChipEnumeration) && /*#__PURE__*/React__default.default.createElement(TextField_styles.StyledTextBefore, null, textBefore), Boolean(_chips === null || _chips === void 0 ? void 0 : _chips.length) && /*#__PURE__*/React__default.default.createElement(TextFieldChipNew.TextFieldChipNew, {
394
+ chips: _chips,
395
+ onChipClick: _onChipClick,
396
+ getRef: getRef,
397
+ handleChipKeyDown: handleChipKeyDown,
398
+ onChipClear: onChipClear,
399
+ view: chipView || view,
400
+ readOnly: readOnly,
401
+ chipType: chipType
402
+ // TODO: #1547
403
+ // @ts-ignore
404
+ ,
405
+ _forceChipManipulationWithReadonly: _forceChipManipulationWithReadonly
406
+ }), isChipEnumeration && Boolean(chips === null || chips === void 0 ? void 0 : chips.length) && /*#__PURE__*/React__default.default.createElement(TextField_styles.StyledChips, {
391
407
  className: TextField_tokens.classes.chipsWrapper
392
408
  }, chips === null || chips === void 0 ? void 0 : chips.map(function (_ref3, index) {
393
409
  var chipId = _ref3.id,
@@ -1 +1 @@
1
- {"version":3,"file":"TextField.js","sources":["../../../src/components/TextField/TextField.tsx"],"sourcesContent":["import React, { forwardRef, useEffect, useRef, useState } from 'react';\nimport type {\n FormEventHandler,\n ChangeEventHandler,\n KeyboardEvent,\n ChangeEvent,\n MouseEventHandler,\n ClipboardEventHandler,\n} from 'react';\nimport { useForkRef } from '@salutejs/plasma-core';\nimport { css } from '@linaria/core';\nimport { cx, safeUseId } from 'src/utils';\nimport type { RootProps } from 'src/engines';\nimport { useOutsideClick } from 'src/hooks';\n\nimport type { ChipValues, TextFieldPrimitiveValue, TextFieldProps, TextFieldRootProps } from './TextField.types';\nimport { base as sizeCSS } from './variations/_size/base';\nimport { base as viewCSS } from './variations/_view/base';\nimport { base as clearCSS } from './variations/_clear/base';\nimport { base as disabledCSS } from './variations/_disabled/base';\nimport { base as readOnlyCSS } from './variations/_read-only/base';\nimport { base as labelPlacementCSS } from './variations/_label-placement/base';\nimport { base as hintViewCSS } from './variations/_hint-view/base';\nimport { base as hintSizeCSS } from './variations/_hint-size/base';\nimport { base as chipViewCSS } from './variations/_chip-view/base';\nimport {\n Input,\n InputContainer,\n LeftHelper,\n Label,\n InputWrapper,\n InputLabelWrapper,\n StyledContentLeft,\n StyledContentRight,\n StyledChips,\n StyledTextBefore,\n StyledTextAfter,\n StyledIndicator,\n StyledOptionalText,\n InputPlaceholder,\n OuterLabelWrapper,\n TitleCaption,\n StyledHintWrapper,\n StyledIndicatorWrapper,\n StyledContentRightWrapper,\n} from './TextField.styles';\nimport { classes } from './TextField.tokens';\nimport { TextFieldChip } from './ui';\nimport { useKeyNavigation } from './hooks';\nimport { HintComponent } from './ui/Hint/Hint';\nimport { getInputWidth } from './getInputWidth';\n\nconst optionalText = 'optional';\n\nexport const base = css`\n /* NOTE: Webkit не применяет opacity к inline тегам */\n display: block;\n`;\n\nconst HINT_DEFAULT_OFFSET: [number, number] = [0, 0];\n\nexport const textFieldRoot = (Root: RootProps<HTMLDivElement, TextFieldRootProps>) =>\n forwardRef<HTMLInputElement, TextFieldProps>(\n (\n {\n id,\n className,\n style,\n\n // layout\n contentLeft,\n contentRight,\n label,\n labelPlacement,\n keepPlaceholder,\n textBefore,\n textAfter,\n placeholder,\n leftHelper,\n enumerationType = 'plain',\n requiredPlacement = 'right',\n hasRequiredIndicator = true,\n titleCaption,\n chipView = 'default',\n chipValidator,\n\n // hint\n hintTrigger = 'hover',\n hintText,\n hintView = 'default',\n hintSize = 'm',\n hintTargetIcon,\n hintTargetPlacement = 'outer',\n hintPlacement = 'auto',\n hintHasArrow,\n hintOffset = HINT_DEFAULT_OFFSET,\n hintWidth,\n hintContentLeft,\n\n // variations\n view,\n size,\n readOnly = false,\n disabled = false,\n required = false,\n clear = false,\n optional,\n hasDivider,\n\n // controlled\n value: outerValue,\n chips: values,\n chipType = 'default',\n\n // events\n onChange,\n onChangeChips,\n onSearch,\n onKeyDown,\n onFocus,\n onBlur,\n onPaste,\n\n // Пропсы для внутреннего использования, не отдается наружу.\n // @ts-ignore\n _onEnterDisabled,\n // @ts-ignore\n _forceChipManipulationWithReadonly,\n\n ...rest\n },\n ref,\n ) => {\n const contentRef = useRef<HTMLDivElement>(null);\n const inputContainerRef = useRef<HTMLDivElement>(null);\n const inputRef = useRef<HTMLInputElement>(null);\n const inputForkRef = useForkRef(inputRef, ref);\n const chipsRefs = useRef<Array<HTMLButtonElement>>([]);\n\n const controlledRefs = { contentRef, inputRef, chipsRefs };\n\n const [hasValue, setHasValue] = useState(\n Boolean(outerValue) || Boolean(inputRef?.current?.value) || Boolean(rest?.defaultValue),\n );\n const [hasFocus, setHasFocus] = useState(false);\n\n const [chips, setChips] = useState<Array<ChipValues>>([]);\n const [isHintVisible, setIsHintVisible] = useState(false);\n\n const uniqId = safeUseId();\n const innerId = id || uniqId;\n const labelId = safeUseId();\n const helperTextId = safeUseId();\n\n const isDefaultView = view === 'default' || readOnly || disabled;\n\n const isChipEnumeration = enumerationType === 'chip';\n const isChipsVisible = isChipEnumeration && Boolean(chips?.length);\n const withHasChips = isChipsVisible ? classes.hasChips : undefined;\n\n const hasLabelValue = Boolean(label);\n const hasInnerLabel = size !== 'xs' && labelPlacement === 'inner' && !isChipsVisible && hasLabelValue;\n const hasOuterLabel = labelPlacement === 'outer' && hasLabelValue;\n const innerKeepPlaceholder = keepPlaceholder && labelPlacement === 'inner';\n const hasPlaceholder = Boolean(placeholder) && (innerKeepPlaceholder || !hasInnerLabel);\n let hasTextAfter = Boolean(textAfter);\n let hasTextBefore = textBefore && !isChipEnumeration;\n if (labelPlacement === 'inner') {\n if (!hasValue && !hasPlaceholder && !hasFocus) {\n hasTextAfter = false;\n hasTextBefore = false;\n }\n }\n\n const hasPlaceholderPadding = hasInnerLabel && keepPlaceholder && size !== 'xs';\n\n const innerLabelValue = hasInnerLabel || hasOuterLabel ? label : undefined;\n const innerLabelPlacementValue = labelPlacement === 'inner' && !hasInnerLabel ? undefined : labelPlacement;\n\n const innerPlaceholderValue = hasPlaceholder ? placeholder : undefined;\n const placeholderShown = Boolean(innerPlaceholderValue) && !hasValue;\n\n const clearClass = clear ? classes.clear : undefined;\n const hasDividerClass = hasDivider ? classes.hasDivider : undefined;\n const hasInnerHintClass = hintText && hintTargetPlacement === 'outer' ? classes.hasHint : undefined;\n const hasHintClass = hintText ? classes.hasHint : undefined;\n const requiredPlacementClass = requiredPlacement === 'right' ? classes.requiredAlignRight : undefined;\n const labelPlacementClass = innerLabelPlacementValue\n ? classes[`${innerLabelPlacementValue}LabelPlacement` as keyof typeof classes]\n : undefined;\n const hasValueClass = hasValue ? classes.hasValue : undefined;\n const keepPlaceholderClass = hasPlaceholder && placeholderShown && classes.keepPlaceholder;\n\n const wrapperWithoutLeftContent =\n !contentLeft && isChipsVisible && chipType === 'default' ? classes.hasEmptyContentLeft : undefined;\n const wrapperWithoutRightContent =\n !contentRight && isChipsVisible && chipType === 'default' ? classes.hasEmptyContentRight : undefined;\n\n const contentRightCompensationMargin =\n !hasOuterLabel && hintText && hintTargetPlacement === 'inner'\n ? classes.contentRightCompensationMargin\n : undefined;\n\n const hintRef = useOutsideClick<HTMLDivElement>(() => {\n setIsHintVisible(false);\n });\n const hintInnerRef = useRef<HTMLDivElement>(null);\n const hintForkRef = useForkRef(hintRef, hintInnerRef);\n\n const handleInput: FormEventHandler<HTMLInputElement> = (event) => {\n const { value } = event.target as HTMLInputElement;\n\n setHasValue(Boolean(value));\n };\n\n const handleFocus = (event: React.FocusEvent<HTMLInputElement>) => {\n setHasFocus(true);\n onFocus?.(event);\n };\n\n const handleBlur = (event: React.FocusEvent<HTMLInputElement>) => {\n setHasFocus(false);\n onBlur?.(event);\n };\n\n const handleHintShow = () => setIsHintVisible(true);\n const handleHintHide = () => setIsHintVisible(false);\n const handleHintClick: MouseEventHandler = (event) => {\n if (!hintText || hintTrigger !== 'click') {\n return;\n }\n\n event.stopPropagation();\n const targetIsPopover = event.target === hintInnerRef.current;\n const rootHasTarget = hintInnerRef.current?.contains(event.target as Element);\n\n if (!targetIsPopover && !rootHasTarget) {\n setIsHintVisible(true);\n }\n };\n\n const handleChange: ChangeEventHandler<HTMLInputElement> = (event) => {\n if (disabled || readOnly) {\n return;\n }\n\n const { maxLength, value } = event.target;\n\n if (maxLength !== -1 && value.length > maxLength) {\n return;\n }\n\n if (onChange) {\n onChange(event);\n }\n\n if (hasTextAfter) {\n const textWidth = getInputWidth(event.currentTarget, inputContainerRef.current);\n event.currentTarget.style.width = `${textWidth}px`;\n }\n };\n\n const handlePaste: ClipboardEventHandler<HTMLInputElement> = (event) => {\n if (disabled || readOnly) {\n return;\n }\n\n if (onPaste) {\n onPaste(event);\n }\n\n if (hasTextAfter) {\n setTimeout(() => {\n if (!inputRef.current) {\n return;\n }\n\n const textWidth = getInputWidth(inputRef.current, inputContainerRef.current);\n inputRef.current.style.width = `${textWidth}px`;\n });\n }\n };\n\n const updateChips = (newChips: Array<ChipValues>, newValues: Array<TextFieldPrimitiveValue>) => {\n setChips(newChips);\n onChangeChips?.(newValues);\n };\n\n const { handleInputKeydown, handleChipKeyDown, onChipClear, handleContentKeyDown } = useKeyNavigation({\n controlledRefs,\n disabled,\n readOnly,\n chips,\n enumerationType,\n updateChips,\n onSearch,\n onChange,\n onEnterDisabled: _onEnterDisabled,\n });\n\n const onChipClick = (event: React.MouseEvent<HTMLButtonElement>) => event.stopPropagation();\n\n const handleInputFocus = () => {\n if (readOnly || disabled || !inputRef?.current) {\n return;\n }\n\n inputRef.current.scrollTo({\n top: 0,\n left: inputRef.current.offsetLeft,\n behavior: 'smooth',\n });\n\n inputRef.current.focus();\n };\n\n const getRef = (element: HTMLButtonElement | null, index: number) => {\n if (element && chipsRefs?.current) {\n chipsRefs.current[index] = element;\n }\n };\n\n const handleOnKeyDown = (event: ChangeEvent<HTMLInputElement> & KeyboardEvent<HTMLInputElement>) => {\n handleInputKeydown(event);\n\n if (onKeyDown) {\n onKeyDown(event);\n }\n };\n\n useEffect(() => {\n if (hasTextAfter && inputRef.current) {\n const textWidth = getInputWidth(inputRef.current, inputContainerRef.current);\n inputRef.current.style.width = `${textWidth}px`;\n } else {\n inputRef.current?.style.removeProperty('width');\n }\n }, [hasTextAfter, outerValue]);\n\n useEffect(() => {\n if (!isChipEnumeration && !values?.length) {\n return;\n }\n\n const newChips =\n values?.map((value, index) => ({\n id: `${index}_${value}`,\n text: value,\n })) || [];\n\n setChips(newChips);\n }, [isChipEnumeration, values]);\n\n useEffect(() => {\n setHasValue(Boolean(rest?.defaultValue));\n }, [rest.defaultValue]);\n\n useEffect(() => {\n setHasValue(Boolean(outerValue) || Boolean(inputRef?.current?.value));\n }, [outerValue, inputRef?.current?.value]);\n\n const innerOptional = Boolean(required ? false : optional);\n const hasPlaceholderOptional = innerOptional && !innerLabelValue && !hasOuterLabel;\n const optionalTextNode = innerOptional ? (\n <StyledOptionalText>\n {Boolean(hasPlaceholderOptional ? innerPlaceholderValue : innerLabelValue) && '\\xa0'}\n {optionalText}\n </StyledOptionalText>\n ) : null;\n\n const classTextEllipsis =\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // eslint-disable-next-line no-underscore-dangle\n !(rest as any)._textEllipsisDisable && !textAfter ? classes.inputTextEllipsis : undefined;\n\n return (\n <Root\n view={view}\n size={size}\n disabled={disabled}\n readOnly={!disabled && readOnly}\n labelPlacement={innerLabelPlacementValue}\n onClick={handleInputFocus}\n data-root\n className={cx(\n labelPlacementClass,\n clearClass,\n hasDividerClass,\n hasInnerHintClass,\n classes.textFieldGroupItem,\n className,\n )}\n style={style}\n {...(hintText && { hintView, hintSize })}\n >\n {(hasOuterLabel || titleCaption) && (\n <OuterLabelWrapper isInnerLabel={labelPlacement === 'inner'}>\n {hasOuterLabel && (\n <StyledIndicatorWrapper>\n <Label id={labelId} htmlFor={id}>\n {innerLabelValue}\n </Label>\n\n {hintText && (\n <StyledHintWrapper>\n <HintComponent\n ref={hintForkRef}\n hintText={hintText}\n hintTrigger={hintTrigger}\n isHintVisible={isHintVisible}\n hintTargetIcon={hintTargetIcon}\n hintPlacement={hintPlacement}\n hintHasArrow={hintHasArrow}\n hintOffset={hintOffset}\n hintWidth={hintWidth}\n hintContentLeft={hintContentLeft}\n handleHintShow={handleHintShow}\n handleHintHide={handleHintHide}\n handleHintClick={handleHintClick}\n />\n </StyledHintWrapper>\n )}\n {required && hasRequiredIndicator && (\n <StyledIndicator\n className={cx(\n classes.outerLabelPlacement,\n requiredPlacementClass,\n hasHintClass,\n )}\n />\n )}\n {optionalTextNode}\n </StyledIndicatorWrapper>\n )}\n {titleCaption && <TitleCaption data-root>{titleCaption}</TitleCaption>}\n </OuterLabelWrapper>\n )}\n\n <InputWrapper\n // Ref для внутреннего использования. Не отдается наружу.\n ref={(rest as any).inputWrapperRef}\n // TODO: #1544, и после убрать classes.inputWrapper\n className={cx(\n withHasChips,\n wrapperWithoutLeftContent,\n wrapperWithoutRightContent,\n classes.inputWrapper,\n )}\n >\n {!hasOuterLabel && (\n <>\n {required && hasRequiredIndicator && (\n <StyledIndicator\n className={cx(classes.innerLabelPlacement, requiredPlacementClass)}\n />\n )}\n {hintText && hintTargetPlacement === 'outer' && (\n <StyledHintWrapper className={classes.innerLabelPlacement}>\n <HintComponent\n ref={hintForkRef}\n hintText={hintText}\n hintTrigger={hintTrigger}\n isHintVisible={isHintVisible}\n hintTargetIcon={hintTargetIcon}\n hintPlacement={hintPlacement}\n hintHasArrow={hintHasArrow}\n hintOffset={hintOffset}\n hintWidth={hintWidth}\n hintContentLeft={hintContentLeft}\n size={size}\n handleHintShow={handleHintShow}\n handleHintHide={handleHintHide}\n handleHintClick={handleHintClick}\n isInnerLabel\n />\n </StyledHintWrapper>\n )}\n </>\n )}\n {contentLeft && (\n <StyledContentLeft data-root isClear={clear} isDefaultView={isDefaultView}>\n {contentLeft}\n </StyledContentLeft>\n )}\n <InputLabelWrapper\n tabIndex={-1}\n ref={contentRef}\n onKeyDown={handleContentKeyDown}\n className={withHasChips}\n >\n {Boolean(textBefore && isChipEnumeration) && (\n <StyledTextBefore>{textBefore}</StyledTextBefore>\n )}\n {isChipEnumeration && Boolean(chips?.length) && (\n <StyledChips className={classes.chipsWrapper}>\n {chips?.map(({ id: chipId, text }, index) => {\n const validationView = chipValidator?.(String(text));\n const resView = validationView?.view || chipView;\n\n return (\n <TextFieldChip\n id={chipId}\n ref={(element) => getRef(element, index)}\n key={`${chipId}_${index}`}\n disabled={disabled}\n readOnly={readOnly}\n value={text}\n text={text}\n onKeyDown={(event) => handleChipKeyDown(event, chipId, index)}\n onClear={() => onChipClear(chipId, index)}\n onClick={onChipClick}\n chipType={chipType}\n view={resView}\n rootWrapper={Root}\n // TODO: #1547\n // @ts-ignore\n _forceChipManipulationWithReadonly={_forceChipManipulationWithReadonly}\n />\n );\n })}\n </StyledChips>\n )}\n <InputContainer ref={inputContainerRef} hasDynamicWidth={hasTextAfter}>\n {hasTextBefore && <StyledTextBefore>{textBefore}</StyledTextBefore>}\n <Input\n ref={inputForkRef}\n id={innerId}\n value={outerValue}\n required={enumerationType === 'chip' ? chips.length === 0 && required : required}\n aria-labelledby={labelId}\n aria-describedby={helperTextId}\n placeholder={innerPlaceholderValue}\n className={cx(\n hasValueClass,\n keepPlaceholderClass,\n classTextEllipsis,\n readOnly && classes.readOnlyInput,\n )}\n disabled={disabled}\n readOnly={!disabled && readOnly}\n onInput={handleInput}\n onChange={handleChange}\n onKeyDown={handleOnKeyDown}\n onFocus={handleFocus}\n onBlur={handleBlur}\n onPaste={handlePaste}\n data-tour\n {...rest}\n />\n {hasInnerLabel && (\n <Label data-root id={labelId} htmlFor={innerId}>\n {innerLabelValue}\n {optionalTextNode}\n </Label>\n )}\n {placeholderShown && !hasValue && (\n <InputPlaceholder hasPadding={hasPlaceholderPadding}>\n {hasTextBefore && <StyledTextBefore isHidden>{textBefore}</StyledTextBefore>}\n {innerPlaceholderValue}\n {hasPlaceholderOptional && optionalTextNode}\n </InputPlaceholder>\n )}\n {hasTextAfter && <StyledTextAfter>{textAfter}</StyledTextAfter>}\n </InputContainer>\n </InputLabelWrapper>\n <StyledContentRightWrapper className={cx(contentRightCompensationMargin)}>\n {contentRight && <StyledContentRight data-root>{contentRight}</StyledContentRight>}\n\n {!hasOuterLabel && hintText && hintTargetPlacement === 'inner' && (\n <HintComponent\n ref={hintForkRef}\n hintText={hintText}\n hintTrigger={hintTrigger}\n isHintVisible={isHintVisible}\n hintTargetIcon={hintTargetIcon}\n hintPlacement={hintPlacement}\n hintHasArrow={hintHasArrow}\n hintOffset={hintOffset}\n hintWidth={hintWidth}\n hintContentLeft={hintContentLeft}\n size={size}\n handleHintShow={handleHintShow}\n handleHintHide={handleHintHide}\n handleHintClick={handleHintClick}\n isInnerLabel\n />\n )}\n </StyledContentRightWrapper>\n </InputWrapper>\n {leftHelper && (\n <LeftHelper data-root id={helperTextId}>\n {leftHelper}\n </LeftHelper>\n )}\n </Root>\n );\n },\n );\n\nexport const textFieldConfig = {\n name: 'TextField',\n tag: 'div',\n layout: textFieldRoot,\n base,\n variations: {\n view: {\n css: viewCSS,\n },\n size: {\n css: sizeCSS,\n },\n clear: {\n css: clearCSS,\n attrs: true,\n },\n disabled: {\n css: disabledCSS,\n attrs: true,\n },\n readOnly: {\n css: readOnlyCSS,\n attrs: true,\n },\n labelPlacement: {\n css: labelPlacementCSS,\n },\n hintView: {\n css: hintViewCSS,\n },\n hintSize: {\n css: hintSizeCSS,\n },\n chipView: {\n css: chipViewCSS,\n },\n },\n defaults: {\n size: 'm',\n view: 'default',\n },\n};\n"],"names":["optionalText","base","HINT_DEFAULT_OFFSET","textFieldRoot","Root","forwardRef","_ref","ref","_inputRef$current","_inputRef$current4","id","className","style","contentLeft","contentRight","label","labelPlacement","keepPlaceholder","textBefore","textAfter","placeholder","leftHelper","_ref$enumerationType","enumerationType","_ref$requiredPlacemen","requiredPlacement","_ref$hasRequiredIndic","hasRequiredIndicator","titleCaption","_ref$chipView","chipView","chipValidator","_ref$hintTrigger","hintTrigger","hintText","_ref$hintView","hintView","_ref$hintSize","hintSize","hintTargetIcon","_ref$hintTargetPlacem","hintTargetPlacement","_ref$hintPlacement","hintPlacement","hintHasArrow","_ref$hintOffset","hintOffset","hintWidth","hintContentLeft","view","size","_ref$readOnly","readOnly","_ref$disabled","disabled","_ref$required","required","_ref$clear","clear","optional","hasDivider","outerValue","value","values","chips","_ref$chipType","chipType","onChange","onChangeChips","onSearch","onKeyDown","onFocus","onBlur","onPaste","_onEnterDisabled","_forceChipManipulationWithReadonly","rest","contentRef","useRef","inputContainerRef","inputRef","inputForkRef","useForkRef","chipsRefs","controlledRefs","_useState","useState","Boolean","current","defaultValue","_useState2","_slicedToArray","hasValue","setHasValue","_useState3","_useState4","hasFocus","setHasFocus","_useState5","_useState6","setChips","_useState7","_useState8","isHintVisible","setIsHintVisible","uniqId","safeUseId","innerId","labelId","helperTextId","isDefaultView","isChipEnumeration","isChipsVisible","length","withHasChips","classes","hasChips","undefined","hasLabelValue","hasInnerLabel","hasOuterLabel","innerKeepPlaceholder","hasPlaceholder","hasTextAfter","hasTextBefore","hasPlaceholderPadding","innerLabelValue","innerLabelPlacementValue","innerPlaceholderValue","placeholderShown","clearClass","hasDividerClass","hasInnerHintClass","hasHint","hasHintClass","requiredPlacementClass","requiredAlignRight","labelPlacementClass","concat","hasValueClass","keepPlaceholderClass","wrapperWithoutLeftContent","hasEmptyContentLeft","wrapperWithoutRightContent","hasEmptyContentRight","contentRightCompensationMargin","hintRef","useOutsideClick","hintInnerRef","hintForkRef","handleInput","event","_ref2","target","handleFocus","handleBlur","handleHintShow","handleHintHide","handleHintClick","_hintInnerRef$current","stopPropagation","targetIsPopover","rootHasTarget","contains","handleChange","_event$target","maxLength","textWidth","getInputWidth","currentTarget","width","handlePaste","setTimeout","updateChips","newChips","newValues","_useKeyNavigation","useKeyNavigation","onEnterDisabled","handleInputKeydown","handleChipKeyDown","onChipClear","handleContentKeyDown","onChipClick","handleInputFocus","scrollTo","top","left","offsetLeft","behavior","focus","getRef","element","index","handleOnKeyDown","useEffect","_inputRef$current2","removeProperty","map","text","_inputRef$current3","innerOptional","hasPlaceholderOptional","optionalTextNode","React","createElement","StyledOptionalText","classTextEllipsis","_textEllipsisDisable","inputTextEllipsis","_extends","onClick","cx","textFieldGroupItem","OuterLabelWrapper","isInnerLabel","StyledIndicatorWrapper","Label","htmlFor","StyledHintWrapper","HintComponent","StyledIndicator","outerLabelPlacement","TitleCaption","InputWrapper","inputWrapperRef","inputWrapper","Fragment","innerLabelPlacement","StyledContentLeft","isClear","InputLabelWrapper","tabIndex","StyledTextBefore","StyledChips","chipsWrapper","_ref3","chipId","validationView","String","resView","TextFieldChip","key","onClear","rootWrapper","InputContainer","hasDynamicWidth","Input","readOnlyInput","onInput","InputPlaceholder","hasPadding","isHidden","StyledTextAfter","StyledContentRightWrapper","StyledContentRight","LeftHelper","textFieldConfig","name","tag","layout","variations","css","viewCSS","sizeCSS","clearCSS","attrs","disabledCSS","readOnlyCSS","labelPlacementCSS","hintViewCSS","hintSizeCSS","chipViewCSS","defaults"],"mappings":"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"}
1
+ {"version":3,"file":"TextField.js","sources":["../../../src/components/TextField/TextField.tsx"],"sourcesContent":["import React, { forwardRef, useEffect, useRef, useState } from 'react';\nimport type {\n FormEventHandler,\n ChangeEventHandler,\n KeyboardEvent,\n ChangeEvent,\n MouseEventHandler,\n ClipboardEventHandler,\n} from 'react';\nimport { useForkRef } from '@salutejs/plasma-core';\nimport { css } from '@linaria/core';\nimport { cx, safeUseId } from 'src/utils';\nimport type { RootProps } from 'src/engines';\nimport { useOutsideClick } from 'src/hooks';\n\nimport type { ChipValues, TextFieldPrimitiveValue, TextFieldProps, TextFieldRootProps } from './TextField.types';\nimport { base as sizeCSS } from './variations/_size/base';\nimport { base as viewCSS } from './variations/_view/base';\nimport { base as clearCSS } from './variations/_clear/base';\nimport { base as disabledCSS } from './variations/_disabled/base';\nimport { base as readOnlyCSS } from './variations/_read-only/base';\nimport { base as labelPlacementCSS } from './variations/_label-placement/base';\nimport { base as hintViewCSS } from './variations/_hint-view/base';\nimport { base as hintSizeCSS } from './variations/_hint-size/base';\nimport { base as chipViewCSS } from './variations/_chip-view/base';\nimport {\n Input,\n InputContainer,\n LeftHelper,\n Label,\n InputWrapper,\n InputLabelWrapper,\n StyledContentLeft,\n StyledContentRight,\n StyledChips,\n StyledTextBefore,\n StyledTextAfter,\n StyledIndicator,\n StyledOptionalText,\n InputPlaceholder,\n OuterLabelWrapper,\n TitleCaption,\n StyledHintWrapper,\n StyledIndicatorWrapper,\n StyledContentRightWrapper,\n} from './TextField.styles';\nimport { classes } from './TextField.tokens';\nimport { TextFieldChip, TextFieldChipNew } from './ui';\nimport { useKeyNavigation } from './hooks';\nimport { HintComponent } from './ui/Hint/Hint';\nimport { getInputWidth } from './getInputWidth';\n\nconst optionalText = 'optional';\n\nexport const base = css`\n /* NOTE: Webkit не применяет opacity к inline тегам */\n display: block;\n`;\n\nconst HINT_DEFAULT_OFFSET: [number, number] = [0, 0];\n\nexport const textFieldRoot = (Root: RootProps<HTMLDivElement, TextFieldRootProps>) =>\n forwardRef<HTMLInputElement, TextFieldProps>(\n (\n {\n id,\n className,\n style,\n\n // layout\n contentLeft,\n contentRight,\n label,\n labelPlacement,\n keepPlaceholder,\n textBefore,\n textAfter,\n placeholder,\n leftHelper,\n enumerationType = 'plain',\n requiredPlacement = 'right',\n hasRequiredIndicator = true,\n titleCaption,\n chipView = 'default',\n chipValidator,\n\n // hint\n hintTrigger = 'hover',\n hintText,\n hintView = 'default',\n hintSize = 'm',\n hintTargetIcon,\n hintTargetPlacement = 'outer',\n hintPlacement = 'auto',\n hintHasArrow,\n hintOffset = HINT_DEFAULT_OFFSET,\n hintWidth,\n hintContentLeft,\n\n // variations\n view,\n size,\n readOnly = false,\n disabled = false,\n required = false,\n clear = false,\n optional,\n hasDivider,\n\n // controlled\n value: outerValue,\n chips: values,\n chipType = 'default',\n\n // @ts-ignore\n _chips,\n // @ts-ignore\n _onChipClick,\n\n // events\n onChange,\n onChangeChips,\n onSearch,\n onKeyDown,\n onFocus,\n onBlur,\n onPaste,\n\n // Пропсы для внутреннего использования, не отдается наружу.\n // @ts-ignore\n _onEnterDisabled,\n // @ts-ignore\n _forceChipManipulationWithReadonly,\n\n ...rest\n },\n ref,\n ) => {\n const contentRef = useRef<HTMLDivElement>(null);\n const inputContainerRef = useRef<HTMLDivElement>(null);\n const inputRef = useRef<HTMLInputElement>(null);\n const inputForkRef = useForkRef(inputRef, ref);\n const chipsRefs = useRef<Array<HTMLButtonElement>>([]);\n\n const controlledRefs = { contentRef, inputRef, chipsRefs };\n\n const [hasValue, setHasValue] = useState(\n Boolean(outerValue) || Boolean(inputRef?.current?.value) || Boolean(rest?.defaultValue),\n );\n const [hasFocus, setHasFocus] = useState(false);\n\n const [chips, setChips] = useState<Array<ChipValues>>([]);\n const [isHintVisible, setIsHintVisible] = useState(false);\n\n const uniqId = safeUseId();\n const innerId = id || uniqId;\n const labelId = safeUseId();\n const helperTextId = safeUseId();\n\n const isDefaultView = view === 'default' || readOnly || disabled;\n\n const isChipEnumeration = enumerationType === 'chip';\n const isChipsVisible = isChipEnumeration && Boolean(chips?.length || _chips?.length);\n const withHasChips = isChipsVisible ? classes.hasChips : undefined;\n\n const hasLabelValue = Boolean(label);\n const hasInnerLabel = size !== 'xs' && labelPlacement === 'inner' && !isChipsVisible && hasLabelValue;\n const hasOuterLabel = labelPlacement === 'outer' && hasLabelValue;\n const innerKeepPlaceholder = keepPlaceholder && labelPlacement === 'inner';\n const hasPlaceholder = Boolean(placeholder) && (innerKeepPlaceholder || !hasInnerLabel);\n let hasTextAfter = Boolean(textAfter);\n let hasTextBefore = textBefore && !isChipEnumeration;\n if (labelPlacement === 'inner') {\n if (!hasValue && !hasPlaceholder && !hasFocus) {\n hasTextAfter = false;\n hasTextBefore = false;\n }\n }\n\n const hasPlaceholderPadding = hasInnerLabel && keepPlaceholder && size !== 'xs';\n\n const innerLabelValue = hasInnerLabel || hasOuterLabel ? label : undefined;\n const innerLabelPlacementValue = labelPlacement === 'inner' && !hasInnerLabel ? undefined : labelPlacement;\n\n const innerPlaceholderValue = hasPlaceholder ? placeholder : undefined;\n const placeholderShown = Boolean(innerPlaceholderValue) && !hasValue;\n\n const clearClass = clear ? classes.clear : undefined;\n const hasDividerClass = hasDivider ? classes.hasDivider : undefined;\n const hasInnerHintClass = hintText && hintTargetPlacement === 'outer' ? classes.hasHint : undefined;\n const hasHintClass = hintText ? classes.hasHint : undefined;\n const requiredPlacementClass = requiredPlacement === 'right' ? classes.requiredAlignRight : undefined;\n const labelPlacementClass = innerLabelPlacementValue\n ? classes[`${innerLabelPlacementValue}LabelPlacement` as keyof typeof classes]\n : undefined;\n const hasValueClass = hasValue ? classes.hasValue : undefined;\n const keepPlaceholderClass = hasPlaceholder && placeholderShown && classes.keepPlaceholder;\n\n const wrapperWithoutLeftContent =\n !contentLeft && isChipsVisible && chipType === 'default' ? classes.hasEmptyContentLeft : undefined;\n const wrapperWithoutRightContent =\n !contentRight && isChipsVisible && chipType === 'default' ? classes.hasEmptyContentRight : undefined;\n\n const contentRightCompensationMargin =\n !hasOuterLabel && hintText && hintTargetPlacement === 'inner'\n ? classes.contentRightCompensationMargin\n : undefined;\n\n const hintRef = useOutsideClick<HTMLDivElement>(() => {\n setIsHintVisible(false);\n });\n const hintInnerRef = useRef<HTMLDivElement>(null);\n const hintForkRef = useForkRef(hintRef, hintInnerRef);\n\n const handleInput: FormEventHandler<HTMLInputElement> = (event) => {\n const { value } = event.target as HTMLInputElement;\n\n setHasValue(Boolean(value));\n };\n\n const handleFocus = (event: React.FocusEvent<HTMLInputElement>) => {\n setHasFocus(true);\n onFocus?.(event);\n };\n\n const handleBlur = (event: React.FocusEvent<HTMLInputElement>) => {\n setHasFocus(false);\n onBlur?.(event);\n };\n\n const handleHintShow = () => setIsHintVisible(true);\n const handleHintHide = () => setIsHintVisible(false);\n const handleHintClick: MouseEventHandler = (event) => {\n if (!hintText || hintTrigger !== 'click') {\n return;\n }\n\n event.stopPropagation();\n const targetIsPopover = event.target === hintInnerRef.current;\n const rootHasTarget = hintInnerRef.current?.contains(event.target as Element);\n\n if (!targetIsPopover && !rootHasTarget) {\n setIsHintVisible(true);\n }\n };\n\n const handleChange: ChangeEventHandler<HTMLInputElement> = (event) => {\n if (disabled || readOnly) {\n return;\n }\n\n const { maxLength, value } = event.target;\n\n if (maxLength !== -1 && value.length > maxLength) {\n return;\n }\n\n if (onChange) {\n onChange(event);\n }\n\n if (hasTextAfter) {\n const textWidth = getInputWidth(event.currentTarget, inputContainerRef.current);\n event.currentTarget.style.width = `${textWidth}px`;\n }\n };\n\n const handlePaste: ClipboardEventHandler<HTMLInputElement> = (event) => {\n if (disabled || readOnly) {\n return;\n }\n\n if (onPaste) {\n onPaste(event);\n }\n\n if (hasTextAfter) {\n setTimeout(() => {\n if (!inputRef.current) {\n return;\n }\n\n const textWidth = getInputWidth(inputRef.current, inputContainerRef.current);\n inputRef.current.style.width = `${textWidth}px`;\n });\n }\n };\n\n const updateChips = (newChips: Array<ChipValues>, newValues: Array<TextFieldPrimitiveValue>) => {\n setChips(newChips);\n onChangeChips?.(newValues);\n };\n\n const { handleInputKeydown, handleChipKeyDown, onChipClear, handleContentKeyDown } = useKeyNavigation({\n controlledRefs,\n disabled,\n readOnly,\n chips,\n enumerationType,\n updateChips,\n onSearch,\n onChange,\n onEnterDisabled: _onEnterDisabled,\n });\n\n const onChipClick = (event: React.MouseEvent<HTMLButtonElement>) => event.stopPropagation();\n\n const handleInputFocus = () => {\n if (readOnly || disabled || !inputRef?.current) {\n return;\n }\n\n inputRef.current.scrollTo({\n top: 0,\n left: inputRef.current.offsetLeft,\n behavior: 'smooth',\n });\n\n inputRef.current.focus();\n };\n\n const getRef = (element: HTMLButtonElement | null, index: number) => {\n if (element && chipsRefs?.current) {\n chipsRefs.current[index] = element;\n }\n };\n\n const handleOnKeyDown = (event: ChangeEvent<HTMLInputElement> & KeyboardEvent<HTMLInputElement>) => {\n handleInputKeydown(event);\n\n if (onKeyDown) {\n onKeyDown(event);\n }\n };\n\n useEffect(() => {\n if (hasTextAfter && inputRef.current) {\n const textWidth = getInputWidth(inputRef.current, inputContainerRef.current);\n inputRef.current.style.width = `${textWidth}px`;\n } else {\n inputRef.current?.style.removeProperty('width');\n }\n }, [hasTextAfter, outerValue]);\n\n useEffect(() => {\n if (!isChipEnumeration && !values?.length) {\n return;\n }\n\n const newChips =\n values?.map((value, index) => ({\n id: `${index}_${value}`,\n text: value,\n })) || [];\n\n setChips(newChips);\n }, [isChipEnumeration, values]);\n\n useEffect(() => {\n setHasValue(Boolean(rest?.defaultValue));\n }, [rest.defaultValue]);\n\n useEffect(() => {\n setHasValue(Boolean(outerValue) || Boolean(inputRef?.current?.value));\n }, [outerValue, inputRef?.current?.value]);\n\n const innerOptional = Boolean(required ? false : optional);\n const hasPlaceholderOptional = innerOptional && !innerLabelValue && !hasOuterLabel;\n const optionalTextNode = innerOptional ? (\n <StyledOptionalText>\n {Boolean(hasPlaceholderOptional ? innerPlaceholderValue : innerLabelValue) && '\\xa0'}\n {optionalText}\n </StyledOptionalText>\n ) : null;\n\n const classTextEllipsis =\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // eslint-disable-next-line no-underscore-dangle\n !(rest as any)._textEllipsisDisable && !textAfter ? classes.inputTextEllipsis : undefined;\n\n return (\n <Root\n view={view}\n size={size}\n disabled={disabled}\n readOnly={!disabled && readOnly}\n labelPlacement={innerLabelPlacementValue}\n onClick={handleInputFocus}\n data-root\n className={cx(\n labelPlacementClass,\n clearClass,\n hasDividerClass,\n hasInnerHintClass,\n classes.textFieldGroupItem,\n className,\n )}\n style={style}\n {...(hintText && { hintView, hintSize })}\n >\n {(hasOuterLabel || titleCaption) && (\n <OuterLabelWrapper isInnerLabel={labelPlacement === 'inner'}>\n {hasOuterLabel && (\n <StyledIndicatorWrapper>\n <Label id={labelId} htmlFor={id}>\n {innerLabelValue}\n </Label>\n\n {hintText && (\n <StyledHintWrapper>\n <HintComponent\n ref={hintForkRef}\n hintText={hintText}\n hintTrigger={hintTrigger}\n isHintVisible={isHintVisible}\n hintTargetIcon={hintTargetIcon}\n hintPlacement={hintPlacement}\n hintHasArrow={hintHasArrow}\n hintOffset={hintOffset}\n hintWidth={hintWidth}\n hintContentLeft={hintContentLeft}\n handleHintShow={handleHintShow}\n handleHintHide={handleHintHide}\n handleHintClick={handleHintClick}\n />\n </StyledHintWrapper>\n )}\n {required && hasRequiredIndicator && (\n <StyledIndicator\n className={cx(\n classes.outerLabelPlacement,\n requiredPlacementClass,\n hasHintClass,\n )}\n />\n )}\n {optionalTextNode}\n </StyledIndicatorWrapper>\n )}\n {titleCaption && <TitleCaption data-root>{titleCaption}</TitleCaption>}\n </OuterLabelWrapper>\n )}\n\n <InputWrapper\n // Ref для внутреннего использования. Не отдается наружу.\n ref={(rest as any).inputWrapperRef}\n // TODO: #1544, и после убрать classes.inputWrapper\n className={cx(\n withHasChips,\n wrapperWithoutLeftContent,\n wrapperWithoutRightContent,\n classes.inputWrapper,\n )}\n >\n {!hasOuterLabel && (\n <>\n {required && hasRequiredIndicator && (\n <StyledIndicator\n className={cx(classes.innerLabelPlacement, requiredPlacementClass)}\n />\n )}\n {hintText && hintTargetPlacement === 'outer' && (\n <StyledHintWrapper className={classes.innerLabelPlacement}>\n <HintComponent\n ref={hintForkRef}\n hintText={hintText}\n hintTrigger={hintTrigger}\n isHintVisible={isHintVisible}\n hintTargetIcon={hintTargetIcon}\n hintPlacement={hintPlacement}\n hintHasArrow={hintHasArrow}\n hintOffset={hintOffset}\n hintWidth={hintWidth}\n hintContentLeft={hintContentLeft}\n size={size}\n handleHintShow={handleHintShow}\n handleHintHide={handleHintHide}\n handleHintClick={handleHintClick}\n isInnerLabel\n />\n </StyledHintWrapper>\n )}\n </>\n )}\n {contentLeft && (\n <StyledContentLeft data-root isClear={clear} isDefaultView={isDefaultView}>\n {contentLeft}\n </StyledContentLeft>\n )}\n <InputLabelWrapper\n tabIndex={-1}\n ref={contentRef}\n onKeyDown={handleContentKeyDown}\n className={withHasChips}\n >\n {Boolean(textBefore && isChipEnumeration) && (\n <StyledTextBefore>{textBefore}</StyledTextBefore>\n )}\n\n {Boolean(_chips?.length) && (\n <TextFieldChipNew\n chips={_chips}\n onChipClick={_onChipClick}\n getRef={getRef}\n handleChipKeyDown={handleChipKeyDown}\n onChipClear={onChipClear}\n view={chipView || view}\n readOnly={readOnly}\n chipType={chipType}\n // TODO: #1547\n // @ts-ignore\n _forceChipManipulationWithReadonly={_forceChipManipulationWithReadonly}\n />\n )}\n\n {isChipEnumeration && Boolean(chips?.length) && (\n <StyledChips className={classes.chipsWrapper}>\n {chips?.map(({ id: chipId, text }, index) => {\n const validationView = chipValidator?.(String(text));\n const resView = validationView?.view || chipView;\n\n return (\n <TextFieldChip\n id={chipId}\n ref={(element) => getRef(element, index)}\n key={`${chipId}_${index}`}\n disabled={disabled}\n readOnly={readOnly}\n value={text}\n text={text}\n onKeyDown={(event) => handleChipKeyDown(event, chipId, index)}\n onClear={() => onChipClear(chipId, index)}\n onClick={onChipClick}\n chipType={chipType}\n view={resView}\n rootWrapper={Root}\n // TODO: #1547\n // @ts-ignore\n _forceChipManipulationWithReadonly={_forceChipManipulationWithReadonly}\n />\n );\n })}\n </StyledChips>\n )}\n <InputContainer ref={inputContainerRef} hasDynamicWidth={hasTextAfter}>\n {hasTextBefore && <StyledTextBefore>{textBefore}</StyledTextBefore>}\n <Input\n ref={inputForkRef}\n id={innerId}\n value={outerValue}\n required={enumerationType === 'chip' ? chips.length === 0 && required : required}\n aria-labelledby={labelId}\n aria-describedby={helperTextId}\n placeholder={innerPlaceholderValue}\n className={cx(\n hasValueClass,\n keepPlaceholderClass,\n classTextEllipsis,\n readOnly && classes.readOnlyInput,\n )}\n disabled={disabled}\n readOnly={!disabled && readOnly}\n onInput={handleInput}\n onChange={handleChange}\n onKeyDown={handleOnKeyDown}\n onFocus={handleFocus}\n onBlur={handleBlur}\n onPaste={handlePaste}\n data-tour\n {...rest}\n />\n {hasInnerLabel && (\n <Label data-root id={labelId} htmlFor={innerId}>\n {innerLabelValue}\n {optionalTextNode}\n </Label>\n )}\n {placeholderShown && !hasValue && (\n <InputPlaceholder hasPadding={hasPlaceholderPadding}>\n {hasTextBefore && <StyledTextBefore isHidden>{textBefore}</StyledTextBefore>}\n {innerPlaceholderValue}\n {hasPlaceholderOptional && optionalTextNode}\n </InputPlaceholder>\n )}\n {hasTextAfter && <StyledTextAfter>{textAfter}</StyledTextAfter>}\n </InputContainer>\n </InputLabelWrapper>\n <StyledContentRightWrapper className={cx(contentRightCompensationMargin)}>\n {contentRight && <StyledContentRight data-root>{contentRight}</StyledContentRight>}\n\n {!hasOuterLabel && hintText && hintTargetPlacement === 'inner' && (\n <HintComponent\n ref={hintForkRef}\n hintText={hintText}\n hintTrigger={hintTrigger}\n isHintVisible={isHintVisible}\n hintTargetIcon={hintTargetIcon}\n hintPlacement={hintPlacement}\n hintHasArrow={hintHasArrow}\n hintOffset={hintOffset}\n hintWidth={hintWidth}\n hintContentLeft={hintContentLeft}\n size={size}\n handleHintShow={handleHintShow}\n handleHintHide={handleHintHide}\n handleHintClick={handleHintClick}\n isInnerLabel\n />\n )}\n </StyledContentRightWrapper>\n </InputWrapper>\n {leftHelper && (\n <LeftHelper data-root id={helperTextId}>\n {leftHelper}\n </LeftHelper>\n )}\n </Root>\n );\n },\n );\n\nexport const textFieldConfig = {\n name: 'TextField',\n tag: 'div',\n layout: textFieldRoot,\n base,\n variations: {\n view: {\n css: viewCSS,\n },\n size: {\n css: sizeCSS,\n },\n clear: {\n css: clearCSS,\n attrs: true,\n },\n disabled: {\n css: disabledCSS,\n attrs: true,\n },\n readOnly: {\n css: readOnlyCSS,\n attrs: true,\n },\n labelPlacement: {\n css: labelPlacementCSS,\n },\n hintView: {\n css: hintViewCSS,\n },\n hintSize: {\n css: hintSizeCSS,\n },\n chipView: {\n css: chipViewCSS,\n },\n },\n defaults: {\n size: 'm',\n view: 'default',\n },\n};\n"],"names":["optionalText","base","HINT_DEFAULT_OFFSET","textFieldRoot","Root","forwardRef","_ref","ref","_inputRef$current","_inputRef$current4","id","className","style","contentLeft","contentRight","label","labelPlacement","keepPlaceholder","textBefore","textAfter","placeholder","leftHelper","_ref$enumerationType","enumerationType","_ref$requiredPlacemen","requiredPlacement","_ref$hasRequiredIndic","hasRequiredIndicator","titleCaption","_ref$chipView","chipView","chipValidator","_ref$hintTrigger","hintTrigger","hintText","_ref$hintView","hintView","_ref$hintSize","hintSize","hintTargetIcon","_ref$hintTargetPlacem","hintTargetPlacement","_ref$hintPlacement","hintPlacement","hintHasArrow","_ref$hintOffset","hintOffset","hintWidth","hintContentLeft","view","size","_ref$readOnly","readOnly","_ref$disabled","disabled","_ref$required","required","_ref$clear","clear","optional","hasDivider","outerValue","value","values","chips","_ref$chipType","chipType","_chips","_onChipClick","onChange","onChangeChips","onSearch","onKeyDown","onFocus","onBlur","onPaste","_onEnterDisabled","_forceChipManipulationWithReadonly","rest","contentRef","useRef","inputContainerRef","inputRef","inputForkRef","useForkRef","chipsRefs","controlledRefs","_useState","useState","Boolean","current","defaultValue","_useState2","_slicedToArray","hasValue","setHasValue","_useState3","_useState4","hasFocus","setHasFocus","_useState5","_useState6","setChips","_useState7","_useState8","isHintVisible","setIsHintVisible","uniqId","safeUseId","innerId","labelId","helperTextId","isDefaultView","isChipEnumeration","isChipsVisible","length","withHasChips","classes","hasChips","undefined","hasLabelValue","hasInnerLabel","hasOuterLabel","innerKeepPlaceholder","hasPlaceholder","hasTextAfter","hasTextBefore","hasPlaceholderPadding","innerLabelValue","innerLabelPlacementValue","innerPlaceholderValue","placeholderShown","clearClass","hasDividerClass","hasInnerHintClass","hasHint","hasHintClass","requiredPlacementClass","requiredAlignRight","labelPlacementClass","concat","hasValueClass","keepPlaceholderClass","wrapperWithoutLeftContent","hasEmptyContentLeft","wrapperWithoutRightContent","hasEmptyContentRight","contentRightCompensationMargin","hintRef","useOutsideClick","hintInnerRef","hintForkRef","handleInput","event","_ref2","target","handleFocus","handleBlur","handleHintShow","handleHintHide","handleHintClick","_hintInnerRef$current","stopPropagation","targetIsPopover","rootHasTarget","contains","handleChange","_event$target","maxLength","textWidth","getInputWidth","currentTarget","width","handlePaste","setTimeout","updateChips","newChips","newValues","_useKeyNavigation","useKeyNavigation","onEnterDisabled","handleInputKeydown","handleChipKeyDown","onChipClear","handleContentKeyDown","onChipClick","handleInputFocus","scrollTo","top","left","offsetLeft","behavior","focus","getRef","element","index","handleOnKeyDown","useEffect","_inputRef$current2","removeProperty","map","text","_inputRef$current3","innerOptional","hasPlaceholderOptional","optionalTextNode","React","createElement","StyledOptionalText","classTextEllipsis","_textEllipsisDisable","inputTextEllipsis","_extends","onClick","cx","textFieldGroupItem","OuterLabelWrapper","isInnerLabel","StyledIndicatorWrapper","Label","htmlFor","StyledHintWrapper","HintComponent","StyledIndicator","outerLabelPlacement","TitleCaption","InputWrapper","inputWrapperRef","inputWrapper","Fragment","innerLabelPlacement","StyledContentLeft","isClear","InputLabelWrapper","tabIndex","StyledTextBefore","TextFieldChipNew","StyledChips","chipsWrapper","_ref3","chipId","validationView","String","resView","TextFieldChip","key","onClear","rootWrapper","InputContainer","hasDynamicWidth","Input","readOnlyInput","onInput","InputPlaceholder","hasPadding","isHidden","StyledTextAfter","StyledContentRightWrapper","StyledContentRight","LeftHelper","textFieldConfig","name","tag","layout","variations","css","viewCSS","sizeCSS","clearCSS","attrs","disabledCSS","readOnlyCSS","labelPlacementCSS","hintViewCSS","hintSizeCSS","chipViewCSS","defaults"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoDA,IAAMA,YAAY,GAAG,UAAU,CAAA;AAExB,IAAMC,IAAI,GAGhB,UAAA;AAED,IAAMC,mBAAqC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IAEvCC,aAAa,GAAGA,SAAhBA,aAAaA,CAAIC,IAAmD,EAAA;AAAA,EAAA,oBAC7EC,gBAAU,CACN,UAAAC,IAAA,EAyEIC,GAAG,EACF;IAAA,IAAAC,iBAAA,EAAAC,kBAAA,CAAA;AAAA,IAAA,IAxEGC,EAAE,GAAAJ,IAAA,CAAFI,EAAE;MACFC,SAAS,GAAAL,IAAA,CAATK,SAAS;MACTC,KAAK,GAAAN,IAAA,CAALM,KAAK;MAGLC,WAAW,GAAAP,IAAA,CAAXO,WAAW;MACXC,YAAY,GAAAR,IAAA,CAAZQ,YAAY;MACZC,KAAK,GAAAT,IAAA,CAALS,KAAK;MACLC,cAAc,GAAAV,IAAA,CAAdU,cAAc;MACdC,eAAe,GAAAX,IAAA,CAAfW,eAAe;MACfC,UAAU,GAAAZ,IAAA,CAAVY,UAAU;MACVC,SAAS,GAAAb,IAAA,CAATa,SAAS;MACTC,WAAW,GAAAd,IAAA,CAAXc,WAAW;MACXC,UAAU,GAAAf,IAAA,CAAVe,UAAU;MAAAC,oBAAA,GAAAhB,IAAA,CACViB,eAAe;AAAfA,MAAAA,eAAe,GAAAD,oBAAA,KAAG,KAAA,CAAA,GAAA,OAAO,GAAAA,oBAAA;MAAAE,qBAAA,GAAAlB,IAAA,CACzBmB,iBAAiB;AAAjBA,MAAAA,iBAAiB,GAAAD,qBAAA,KAAG,KAAA,CAAA,GAAA,OAAO,GAAAA,qBAAA;MAAAE,qBAAA,GAAApB,IAAA,CAC3BqB,oBAAoB;AAApBA,MAAAA,oBAAoB,GAAAD,qBAAA,KAAG,KAAA,CAAA,GAAA,IAAI,GAAAA,qBAAA;MAC3BE,YAAY,GAAAtB,IAAA,CAAZsB,YAAY;MAAAC,aAAA,GAAAvB,IAAA,CACZwB,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,SAAS,GAAAA,aAAA;MACpBE,aAAa,GAAAzB,IAAA,CAAbyB,aAAa;MAAAC,gBAAA,GAAA1B,IAAA,CAGb2B,WAAW;AAAXA,MAAAA,WAAW,GAAAD,gBAAA,KAAG,KAAA,CAAA,GAAA,OAAO,GAAAA,gBAAA;MACrBE,QAAQ,GAAA5B,IAAA,CAAR4B,QAAQ;MAAAC,aAAA,GAAA7B,IAAA,CACR8B,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,SAAS,GAAAA,aAAA;MAAAE,aAAA,GAAA/B,IAAA,CACpBgC,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,GAAG,GAAAA,aAAA;MACdE,cAAc,GAAAjC,IAAA,CAAdiC,cAAc;MAAAC,qBAAA,GAAAlC,IAAA,CACdmC,mBAAmB;AAAnBA,MAAAA,mBAAmB,GAAAD,qBAAA,KAAG,KAAA,CAAA,GAAA,OAAO,GAAAA,qBAAA;MAAAE,kBAAA,GAAApC,IAAA,CAC7BqC,aAAa;AAAbA,MAAAA,aAAa,GAAAD,kBAAA,KAAG,KAAA,CAAA,GAAA,MAAM,GAAAA,kBAAA;MACtBE,YAAY,GAAAtC,IAAA,CAAZsC,YAAY;MAAAC,eAAA,GAAAvC,IAAA,CACZwC,UAAU;AAAVA,MAAAA,UAAU,GAAAD,eAAA,KAAG3C,KAAAA,CAAAA,GAAAA,mBAAmB,GAAA2C,eAAA;MAChCE,SAAS,GAAAzC,IAAA,CAATyC,SAAS;MACTC,eAAe,GAAA1C,IAAA,CAAf0C,eAAe;MAGfC,IAAI,GAAA3C,IAAA,CAAJ2C,IAAI;MACJC,IAAI,GAAA5C,IAAA,CAAJ4C,IAAI;MAAAC,aAAA,GAAA7C,IAAA,CACJ8C,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,KAAK,GAAAA,aAAA;MAAAE,aAAA,GAAA/C,IAAA,CAChBgD,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,KAAK,GAAAA,aAAA;MAAAE,aAAA,GAAAjD,IAAA,CAChBkD,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,KAAK,GAAAA,aAAA;MAAAE,UAAA,GAAAnD,IAAA,CAChBoD,KAAK;AAALA,MAAAA,KAAK,GAAAD,UAAA,KAAG,KAAA,CAAA,GAAA,KAAK,GAAAA,UAAA;MACbE,QAAQ,GAAArD,IAAA,CAARqD,QAAQ;MACRC,UAAU,GAAAtD,IAAA,CAAVsD,UAAU;MAGHC,UAAU,GAAAvD,IAAA,CAAjBwD,KAAK;MACEC,MAAM,GAAAzD,IAAA,CAAb0D,KAAK;MAAAC,aAAA,GAAA3D,IAAA,CACL4D,QAAQ;AAARA,MAAAA,QAAQ,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,SAAS,GAAAA,aAAA;MAGpBE,MAAM,GAAA7D,IAAA,CAAN6D,MAAM;MAENC,YAAY,GAAA9D,IAAA,CAAZ8D,YAAY;MAGZC,QAAQ,GAAA/D,IAAA,CAAR+D,QAAQ;MACRC,aAAa,GAAAhE,IAAA,CAAbgE,aAAa;MACbC,QAAQ,GAAAjE,IAAA,CAARiE,QAAQ;MACRC,SAAS,GAAAlE,IAAA,CAATkE,SAAS;MACTC,OAAO,GAAAnE,IAAA,CAAPmE,OAAO;MACPC,MAAM,GAAApE,IAAA,CAANoE,MAAM;MACNC,OAAO,GAAArE,IAAA,CAAPqE,OAAO;MAIPC,gBAAgB,GAAAtE,IAAA,CAAhBsE,gBAAgB;MAEhBC,kCAAkC,GAAAvE,IAAA,CAAlCuE,kCAAkC;AAE/BC,MAAAA,IAAAA,GAAAA,iDAAAA,CAAAA,IAAAA,EAAAA,SAAAA,CAAAA,CAAAA;AAIP,IAAA,IAAMC,UAAU,GAAGC,YAAM,CAAiB,IAAI,CAAC,CAAA;AAC/C,IAAA,IAAMC,iBAAiB,GAAGD,YAAM,CAAiB,IAAI,CAAC,CAAA;AACtD,IAAA,IAAME,QAAQ,GAAGF,YAAM,CAAmB,IAAI,CAAC,CAAA;AAC/C,IAAA,IAAMG,YAAY,GAAGC,qBAAU,CAACF,QAAQ,EAAE3E,GAAG,CAAC,CAAA;AAC9C,IAAA,IAAM8E,SAAS,GAAGL,YAAM,CAA2B,EAAE,CAAC,CAAA;AAEtD,IAAA,IAAMM,cAAc,GAAG;AAAEP,MAAAA,UAAU,EAAVA,UAAU;AAAEG,MAAAA,QAAQ,EAARA,QAAQ;AAAEG,MAAAA,SAAAA,EAAAA,SAAAA;KAAW,CAAA;AAE1D,IAAA,IAAAE,SAAA,GAAgCC,cAAQ,CACpCC,OAAO,CAAC5B,UAAU,CAAC,IAAI4B,OAAO,CAACP,QAAQ,KAAA,IAAA,IAARA,QAAQ,KAAA1E,KAAAA,CAAAA,IAAAA,CAAAA,iBAAA,GAAR0E,QAAQ,CAAEQ,OAAO,MAAA,IAAA,IAAAlF,iBAAA,KAAjB0E,KAAAA,CAAAA,GAAAA,KAAAA,CAAAA,GAAAA,iBAAAA,CAAmBpB,KAAK,CAAC,IAAI2B,OAAO,CAACX,IAAI,aAAJA,IAAI,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAJA,IAAI,CAAEa,YAAY,CAC1F,CAAC;MAAAC,UAAA,GAAAC,uCAAA,CAAAN,SAAA,EAAA,CAAA,CAAA;AAFMO,MAAAA,QAAQ,GAAAF,UAAA,CAAA,CAAA,CAAA;AAAEG,MAAAA,WAAW,GAAAH,UAAA,CAAA,CAAA,CAAA,CAAA;AAG5B,IAAA,IAAAI,UAAA,GAAgCR,cAAQ,CAAC,KAAK,CAAC;MAAAS,UAAA,GAAAJ,uCAAA,CAAAG,UAAA,EAAA,CAAA,CAAA;AAAxCE,MAAAA,QAAQ,GAAAD,UAAA,CAAA,CAAA,CAAA;AAAEE,MAAAA,WAAW,GAAAF,UAAA,CAAA,CAAA,CAAA,CAAA;AAE5B,IAAA,IAAAG,UAAA,GAA0BZ,cAAQ,CAAoB,EAAE,CAAC;MAAAa,UAAA,GAAAR,uCAAA,CAAAO,UAAA,EAAA,CAAA,CAAA;AAAlDpC,MAAAA,KAAK,GAAAqC,UAAA,CAAA,CAAA,CAAA;AAAEC,MAAAA,QAAQ,GAAAD,UAAA,CAAA,CAAA,CAAA,CAAA;AACtB,IAAA,IAAAE,UAAA,GAA0Cf,cAAQ,CAAC,KAAK,CAAC;MAAAgB,UAAA,GAAAX,uCAAA,CAAAU,UAAA,EAAA,CAAA,CAAA;AAAlDE,MAAAA,aAAa,GAAAD,UAAA,CAAA,CAAA,CAAA;AAAEE,MAAAA,gBAAgB,GAAAF,UAAA,CAAA,CAAA,CAAA,CAAA;AAEtC,IAAA,IAAMG,MAAM,GAAGC,eAAS,EAAE,CAAA;AAC1B,IAAA,IAAMC,OAAO,GAAGnG,EAAE,IAAIiG,MAAM,CAAA;AAC5B,IAAA,IAAMG,OAAO,GAAGF,eAAS,EAAE,CAAA;AAC3B,IAAA,IAAMG,YAAY,GAAGH,eAAS,EAAE,CAAA;IAEhC,IAAMI,aAAa,GAAG/D,IAAI,KAAK,SAAS,IAAIG,QAAQ,IAAIE,QAAQ,CAAA;AAEhE,IAAA,IAAM2D,iBAAiB,GAAG1F,eAAe,KAAK,MAAM,CAAA;IACpD,IAAM2F,cAAc,GAAGD,iBAAiB,IAAIxB,OAAO,CAACzB,CAAAA,KAAK,KAAA,IAAA,IAALA,KAAK,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAALA,KAAK,CAAEmD,MAAM,MAAIhD,MAAM,KAAA,IAAA,IAANA,MAAM,KAANA,KAAAA,CAAAA,GAAAA,KAAAA,CAAAA,GAAAA,MAAM,CAAEgD,MAAM,CAAC,CAAA,CAAA;IACpF,IAAMC,YAAY,GAAGF,cAAc,GAAGG,wBAAO,CAACC,QAAQ,GAAGC,SAAS,CAAA;AAElE,IAAA,IAAMC,aAAa,GAAG/B,OAAO,CAAC1E,KAAK,CAAC,CAAA;AACpC,IAAA,IAAM0G,aAAa,GAAGvE,IAAI,KAAK,IAAI,IAAIlC,cAAc,KAAK,OAAO,IAAI,CAACkG,cAAc,IAAIM,aAAa,CAAA;AACrG,IAAA,IAAME,aAAa,GAAG1G,cAAc,KAAK,OAAO,IAAIwG,aAAa,CAAA;AACjE,IAAA,IAAMG,oBAAoB,GAAG1G,eAAe,IAAID,cAAc,KAAK,OAAO,CAAA;IAC1E,IAAM4G,cAAc,GAAGnC,OAAO,CAACrE,WAAW,CAAC,KAAKuG,oBAAoB,IAAI,CAACF,aAAa,CAAC,CAAA;AACvF,IAAA,IAAII,YAAY,GAAGpC,OAAO,CAACtE,SAAS,CAAC,CAAA;AACrC,IAAA,IAAI2G,aAAa,GAAG5G,UAAU,IAAI,CAAC+F,iBAAiB,CAAA;IACpD,IAAIjG,cAAc,KAAK,OAAO,EAAE;MAC5B,IAAI,CAAC8E,QAAQ,IAAI,CAAC8B,cAAc,IAAI,CAAC1B,QAAQ,EAAE;AAC3C2B,QAAAA,YAAY,GAAG,KAAK,CAAA;AACpBC,QAAAA,aAAa,GAAG,KAAK,CAAA;AACzB,OAAA;AACJ,KAAA;IAEA,IAAMC,qBAAqB,GAAGN,aAAa,IAAIxG,eAAe,IAAIiC,IAAI,KAAK,IAAI,CAAA;IAE/E,IAAM8E,eAAe,GAAGP,aAAa,IAAIC,aAAa,GAAG3G,KAAK,GAAGwG,SAAS,CAAA;IAC1E,IAAMU,wBAAwB,GAAGjH,cAAc,KAAK,OAAO,IAAI,CAACyG,aAAa,GAAGF,SAAS,GAAGvG,cAAc,CAAA;AAE1G,IAAA,IAAMkH,qBAAqB,GAAGN,cAAc,GAAGxG,WAAW,GAAGmG,SAAS,CAAA;IACtE,IAAMY,gBAAgB,GAAG1C,OAAO,CAACyC,qBAAqB,CAAC,IAAI,CAACpC,QAAQ,CAAA;IAEpE,IAAMsC,UAAU,GAAG1E,KAAK,GAAG2D,wBAAO,CAAC3D,KAAK,GAAG6D,SAAS,CAAA;IACpD,IAAMc,eAAe,GAAGzE,UAAU,GAAGyD,wBAAO,CAACzD,UAAU,GAAG2D,SAAS,CAAA;AACnE,IAAA,IAAMe,iBAAiB,GAAGpG,QAAQ,IAAIO,mBAAmB,KAAK,OAAO,GAAG4E,wBAAO,CAACkB,OAAO,GAAGhB,SAAS,CAAA;IACnG,IAAMiB,YAAY,GAAGtG,QAAQ,GAAGmF,wBAAO,CAACkB,OAAO,GAAGhB,SAAS,CAAA;IAC3D,IAAMkB,sBAAsB,GAAGhH,iBAAiB,KAAK,OAAO,GAAG4F,wBAAO,CAACqB,kBAAkB,GAAGnB,SAAS,CAAA;IACrG,IAAMoB,mBAAmB,GAAGV,wBAAwB,GAC9CZ,wBAAO,CAAAuB,EAAAA,CAAAA,MAAA,CAAIX,wBAAwB,EAAyC,gBAAA,CAAA,CAAA,GAC5EV,SAAS,CAAA;IACf,IAAMsB,aAAa,GAAG/C,QAAQ,GAAGuB,wBAAO,CAACvB,QAAQ,GAAGyB,SAAS,CAAA;IAC7D,IAAMuB,oBAAoB,GAAGlB,cAAc,IAAIO,gBAAgB,IAAId,wBAAO,CAACpG,eAAe,CAAA;AAE1F,IAAA,IAAM8H,yBAAyB,GAC3B,CAAClI,WAAW,IAAIqG,cAAc,IAAIhD,QAAQ,KAAK,SAAS,GAAGmD,wBAAO,CAAC2B,mBAAmB,GAAGzB,SAAS,CAAA;AACtG,IAAA,IAAM0B,0BAA0B,GAC5B,CAACnI,YAAY,IAAIoG,cAAc,IAAIhD,QAAQ,KAAK,SAAS,GAAGmD,wBAAO,CAAC6B,oBAAoB,GAAG3B,SAAS,CAAA;AAExG,IAAA,IAAM4B,8BAA8B,GAChC,CAACzB,aAAa,IAAIxF,QAAQ,IAAIO,mBAAmB,KAAK,OAAO,GACvD4E,wBAAO,CAAC8B,8BAA8B,GACtC5B,SAAS,CAAA;AAEnB,IAAA,IAAM6B,OAAO,GAAGC,+BAAe,CAAiB,YAAM;MAClD3C,gBAAgB,CAAC,KAAK,CAAC,CAAA;AAC3B,KAAC,CAAC,CAAA;AACF,IAAA,IAAM4C,YAAY,GAAGtE,YAAM,CAAiB,IAAI,CAAC,CAAA;AACjD,IAAA,IAAMuE,WAAW,GAAGnE,qBAAU,CAACgE,OAAO,EAAEE,YAAY,CAAC,CAAA;AAErD,IAAA,IAAME,WAA+C,GAAIC,SAAnDD,WAA+CA,CAAIC,KAAK,EAAK;AAC/D,MAAA,IAAAC,KAAA,GAAkBD,KAAK,CAACE,MAAM;QAAtB7F,KAAAA,GAAAA,KAAAA,CAAAA,KAAAA,CAAAA;AAERiC,MAAAA,WAAW,CAACN,OAAO,CAAC3B,KAAK,CAAC,CAAC,CAAA;KAC9B,CAAA;AAED,IAAA,IAAM8F,WAAW,GAAGA,SAAdA,WAAWA,CAAIH,KAAyC,EAAK;MAC/DtD,WAAW,CAAC,IAAI,CAAC,CAAA;AACjB1B,MAAAA,OAAO,aAAPA,OAAO,KAAA,KAAA,CAAA,IAAPA,OAAO,CAAGgF,KAAK,CAAC,CAAA;KACnB,CAAA;AAED,IAAA,IAAMI,UAAU,GAAGA,SAAbA,UAAUA,CAAIJ,KAAyC,EAAK;MAC9DtD,WAAW,CAAC,KAAK,CAAC,CAAA;AAClBzB,MAAAA,MAAM,aAANA,MAAM,KAAA,KAAA,CAAA,IAANA,MAAM,CAAG+E,KAAK,CAAC,CAAA;KAClB,CAAA;AAED,IAAA,IAAMK,cAAc,GAAGA,SAAjBA,cAAcA,GAAA;MAAA,OAASpD,gBAAgB,CAAC,IAAI,CAAC,CAAA;AAAA,KAAA,CAAA;AACnD,IAAA,IAAMqD,cAAc,GAAGA,SAAjBA,cAAcA,GAAA;MAAA,OAASrD,gBAAgB,CAAC,KAAK,CAAC,CAAA;AAAA,KAAA,CAAA;AACpD,IAAA,IAAMsD,eAAkC,GAAIP,SAAtCO,eAAkCA,CAAIP,KAAK,EAAK;AAAA,MAAA,IAAAQ,qBAAA,CAAA;AAClD,MAAA,IAAI,CAAC/H,QAAQ,IAAID,WAAW,KAAK,OAAO,EAAE;AACtC,QAAA,OAAA;AACJ,OAAA;MAEAwH,KAAK,CAACS,eAAe,EAAE,CAAA;MACvB,IAAMC,eAAe,GAAGV,KAAK,CAACE,MAAM,KAAKL,YAAY,CAAC5D,OAAO,CAAA;AAC7D,MAAA,IAAM0E,aAAa,GAAAH,CAAAA,qBAAA,GAAGX,YAAY,CAAC5D,OAAO,MAAA,IAAA,IAAAuE,qBAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAApBX,qBAAAA,CAAsBe,QAAQ,CAACZ,KAAK,CAACE,MAAiB,CAAC,CAAA;AAE7E,MAAA,IAAI,CAACQ,eAAe,IAAI,CAACC,aAAa,EAAE;QACpC1D,gBAAgB,CAAC,IAAI,CAAC,CAAA;AAC1B,OAAA;KACH,CAAA;AAED,IAAA,IAAM4D,YAAkD,GAAIb,SAAtDa,YAAkDA,CAAIb,KAAK,EAAK;MAClE,IAAInG,QAAQ,IAAIF,QAAQ,EAAE;AACtB,QAAA,OAAA;AACJ,OAAA;AAEA,MAAA,IAAAmH,aAAA,GAA6Bd,KAAK,CAACE,MAAM;QAAjCa,SAAS,GAAAD,aAAA,CAATC,SAAS;QAAE1G,KAAAA,GAAAA,aAAAA,CAAAA,KAAAA,CAAAA;MAEnB,IAAI0G,SAAS,KAAK,CAAC,CAAC,IAAI1G,KAAK,CAACqD,MAAM,GAAGqD,SAAS,EAAE;AAC9C,QAAA,OAAA;AACJ,OAAA;AAEA,MAAA,IAAInG,QAAQ,EAAE;QACVA,QAAQ,CAACoF,KAAK,CAAC,CAAA;AACnB,OAAA;AAEA,MAAA,IAAI5B,YAAY,EAAE;QACd,IAAM4C,SAAS,GAAGC,2BAAa,CAACjB,KAAK,CAACkB,aAAa,EAAE1F,iBAAiB,CAACS,OAAO,CAAC,CAAA;QAC/E+D,KAAK,CAACkB,aAAa,CAAC/J,KAAK,CAACgK,KAAK,GAAAhC,EAAAA,CAAAA,MAAA,CAAM6B,SAAS,EAAI,IAAA,CAAA,CAAA;AACtD,OAAA;KACH,CAAA;AAED,IAAA,IAAMI,WAAoD,GAAIpB,SAAxDoB,WAAoDA,CAAIpB,KAAK,EAAK;MACpE,IAAInG,QAAQ,IAAIF,QAAQ,EAAE;AACtB,QAAA,OAAA;AACJ,OAAA;AAEA,MAAA,IAAIuB,OAAO,EAAE;QACTA,OAAO,CAAC8E,KAAK,CAAC,CAAA;AAClB,OAAA;AAEA,MAAA,IAAI5B,YAAY,EAAE;AACdiD,QAAAA,UAAU,CAAC,YAAM;AACb,UAAA,IAAI,CAAC5F,QAAQ,CAACQ,OAAO,EAAE;AACnB,YAAA,OAAA;AACJ,WAAA;UAEA,IAAM+E,SAAS,GAAGC,2BAAa,CAACxF,QAAQ,CAACQ,OAAO,EAAET,iBAAiB,CAACS,OAAO,CAAC,CAAA;UAC5ER,QAAQ,CAACQ,OAAO,CAAC9E,KAAK,CAACgK,KAAK,GAAAhC,EAAAA,CAAAA,MAAA,CAAM6B,SAAS,EAAI,IAAA,CAAA,CAAA;AACnD,SAAC,CAAC,CAAA;AACN,OAAA;KACH,CAAA;IAED,IAAMM,WAAW,GAAGA,SAAdA,WAAWA,CAAIC,QAA2B,EAAEC,SAAyC,EAAK;MAC5F3E,QAAQ,CAAC0E,QAAQ,CAAC,CAAA;AAClB1G,MAAAA,aAAa,aAAbA,aAAa,KAAA,KAAA,CAAA,IAAbA,aAAa,CAAG2G,SAAS,CAAC,CAAA;KAC7B,CAAA;IAED,IAAAC,iBAAA,GAAqFC,iCAAgB,CAAC;AAClG7F,QAAAA,cAAc,EAAdA,cAAc;AACdhC,QAAAA,QAAQ,EAARA,QAAQ;AACRF,QAAAA,QAAQ,EAARA,QAAQ;AACRY,QAAAA,KAAK,EAALA,KAAK;AACLzC,QAAAA,eAAe,EAAfA,eAAe;AACfwJ,QAAAA,WAAW,EAAXA,WAAW;AACXxG,QAAAA,QAAQ,EAARA,QAAQ;AACRF,QAAAA,QAAQ,EAARA,QAAQ;AACR+G,QAAAA,eAAe,EAAExG,gBAAAA;AACrB,OAAC,CAAC;MAVMyG,kBAAkB,GAAAH,iBAAA,CAAlBG,kBAAkB;MAAEC,iBAAiB,GAAAJ,iBAAA,CAAjBI,iBAAiB;MAAEC,WAAW,GAAAL,iBAAA,CAAXK,WAAW;MAAEC,oBAAAA,GAAAA,iBAAAA,CAAAA,oBAAAA,CAAAA;AAY5D,IAAA,IAAMC,WAAW,GAAGA,SAAdA,WAAWA,CAAIhC,KAA0C,EAAA;AAAA,MAAA,OAAKA,KAAK,CAACS,eAAe,EAAE,CAAA;AAAA,KAAA,CAAA;AAE3F,IAAA,IAAMwB,gBAAgB,GAAGA,SAAnBA,gBAAgBA,GAAS;AAC3B,MAAA,IAAItI,QAAQ,IAAIE,QAAQ,IAAI,EAAC4B,QAAQ,KAARA,IAAAA,IAAAA,QAAQ,KAARA,KAAAA,CAAAA,IAAAA,QAAQ,CAAEQ,OAAO,CAAE,EAAA;AAC5C,QAAA,OAAA;AACJ,OAAA;AAEAR,MAAAA,QAAQ,CAACQ,OAAO,CAACiG,QAAQ,CAAC;AACtBC,QAAAA,GAAG,EAAE,CAAC;AACNC,QAAAA,IAAI,EAAE3G,QAAQ,CAACQ,OAAO,CAACoG,UAAU;AACjCC,QAAAA,QAAQ,EAAE,QAAA;AACd,OAAC,CAAC,CAAA;AAEF7G,MAAAA,QAAQ,CAACQ,OAAO,CAACsG,KAAK,EAAE,CAAA;KAC3B,CAAA;IAED,IAAMC,MAAM,GAAGA,SAATA,MAAMA,CAAIC,OAAiC,EAAEC,KAAa,EAAK;MACjE,IAAID,OAAO,IAAI7G,SAAS,KAAA,IAAA,IAATA,SAAS,KAATA,KAAAA,CAAAA,IAAAA,SAAS,CAAEK,OAAO,EAAE;AAC/BL,QAAAA,SAAS,CAACK,OAAO,CAACyG,KAAK,CAAC,GAAGD,OAAO,CAAA;AACtC,OAAA;KACH,CAAA;AAED,IAAA,IAAME,eAAe,GAAGA,SAAlBA,eAAeA,CAAI3C,KAAsE,EAAK;MAChG4B,kBAAkB,CAAC5B,KAAK,CAAC,CAAA;AAEzB,MAAA,IAAIjF,SAAS,EAAE;QACXA,SAAS,CAACiF,KAAK,CAAC,CAAA;AACpB,OAAA;KACH,CAAA;AAED4C,IAAAA,eAAS,CAAC,YAAM;AACZ,MAAA,IAAIxE,YAAY,IAAI3C,QAAQ,CAACQ,OAAO,EAAE;QAClC,IAAM+E,SAAS,GAAGC,2BAAa,CAACxF,QAAQ,CAACQ,OAAO,EAAET,iBAAiB,CAACS,OAAO,CAAC,CAAA;QAC5ER,QAAQ,CAACQ,OAAO,CAAC9E,KAAK,CAACgK,KAAK,GAAAhC,EAAAA,CAAAA,MAAA,CAAM6B,SAAS,EAAI,IAAA,CAAA,CAAA;AACnD,OAAC,MAAM;AAAA,QAAA,IAAA6B,kBAAA,CAAA;AACHpH,QAAAA,CAAAA,kBAAAA,GAAAA,QAAQ,CAACQ,OAAO,MAAA4G,IAAAA,IAAAA,kBAAA,KAAhBpH,KAAAA,CAAAA,IAAAA,kBAAAA,CAAkBtE,KAAK,CAAC2L,cAAc,CAAC,OAAO,CAAC,CAAA;AACnD,OAAA;AACJ,KAAC,EAAE,CAAC1E,YAAY,EAAEhE,UAAU,CAAC,CAAC,CAAA;AAE9BwI,IAAAA,eAAS,CAAC,YAAM;MACZ,IAAI,CAACpF,iBAAiB,IAAI,EAAClD,MAAM,KAANA,IAAAA,IAAAA,MAAM,KAANA,KAAAA,CAAAA,IAAAA,MAAM,CAAEoD,MAAM,CAAE,EAAA;AACvC,QAAA,OAAA;AACJ,OAAA;AAEA,MAAA,IAAM6D,QAAQ,GACVjH,CAAAA,MAAM,aAANA,MAAM,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAANA,MAAM,CAAEyI,GAAG,CAAC,UAAC1I,KAAK,EAAEqI,KAAK,EAAA;QAAA,OAAM;UAC3BzL,EAAE,EAAA,EAAA,CAAAkI,MAAA,CAAKuD,KAAK,OAAAvD,MAAA,CAAI9E,KAAK,CAAE;AACvB2I,UAAAA,IAAI,EAAE3I,KAAAA;SACT,CAAA;OAAC,CAAC,KAAI,EAAE,CAAA;MAEbwC,QAAQ,CAAC0E,QAAQ,CAAC,CAAA;AACtB,KAAC,EAAE,CAAC/D,iBAAiB,EAAElD,MAAM,CAAC,CAAC,CAAA;AAE/BsI,IAAAA,eAAS,CAAC,YAAM;MACZtG,WAAW,CAACN,OAAO,CAACX,IAAI,KAAA,IAAA,IAAJA,IAAI,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAJA,IAAI,CAAEa,YAAY,CAAC,CAAC,CAAA;AAC5C,KAAC,EAAE,CAACb,IAAI,CAACa,YAAY,CAAC,CAAC,CAAA;AAEvB0G,IAAAA,eAAS,CAAC,YAAM;AAAA,MAAA,IAAAK,kBAAA,CAAA;MACZ3G,WAAW,CAACN,OAAO,CAAC5B,UAAU,CAAC,IAAI4B,OAAO,CAACP,QAAQ,KAAA,IAAA,IAARA,QAAQ,KAAA,KAAA,CAAA,IAAA,CAAAwH,kBAAA,GAARxH,QAAQ,CAAEQ,OAAO,MAAAgH,IAAAA,IAAAA,kBAAA,uBAAjBxH,kBAAAA,CAAmBpB,KAAK,CAAC,CAAC,CAAA;KACxE,EAAE,CAACD,UAAU,EAAEqB,QAAQ,KAARA,IAAAA,IAAAA,QAAQ,gBAAAzE,kBAAA,GAARyE,QAAQ,CAAEQ,OAAO,cAAAjF,kBAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAjByE,kBAAAA,CAAmBpB,KAAK,CAAC,CAAC,CAAA;IAE1C,IAAM6I,aAAa,GAAGlH,OAAO,CAACjC,QAAQ,GAAG,KAAK,GAAGG,QAAQ,CAAC,CAAA;IAC1D,IAAMiJ,sBAAsB,GAAGD,aAAa,IAAI,CAAC3E,eAAe,IAAI,CAACN,aAAa,CAAA;IAClF,IAAMmF,gBAAgB,GAAGF,aAAa,gBAClCG,sBAAA,CAAAC,aAAA,CAACC,mCAAkB,EAAA,IAAA,EACdvH,OAAO,CAACmH,sBAAsB,GAAG1E,qBAAqB,GAAGF,eAAe,CAAC,IAAI,MAAM,EACnFhI,YACe,CAAC,GACrB,IAAI,CAAA;AAER,IAAA,IAAMiN,iBAAiB;AACnB;AACA;AACA;IACA,CAAEnI,IAAI,CAASoI,oBAAoB,IAAI,CAAC/L,SAAS,GAAGkG,wBAAO,CAAC8F,iBAAiB,GAAG5F,SAAS,CAAA;AAE7F,IAAA,oBACIuF,sBAAA,CAAAC,aAAA,CAAC3M,IAAI,EAAAgN,iCAAA,CAAA;AACDnK,MAAAA,IAAI,EAAEA,IAAK;AACXC,MAAAA,IAAI,EAAEA,IAAK;AACXI,MAAAA,QAAQ,EAAEA,QAAS;AACnBF,MAAAA,QAAQ,EAAE,CAACE,QAAQ,IAAIF,QAAS;AAChCpC,MAAAA,cAAc,EAAEiH,wBAAyB;AACzCoF,MAAAA,OAAO,EAAE3B,gBAAiB;MAC1B,WAAS,EAAA,IAAA;AACT/K,MAAAA,SAAS,EAAE2M,QAAE,CACT3E,mBAAmB,EACnBP,UAAU,EACVC,eAAe,EACfC,iBAAiB,EACjBjB,wBAAO,CAACkG,kBAAkB,EAC1B5M,SACJ,CAAE;AACFC,MAAAA,KAAK,EAAEA,KAAAA;AAAM,KAAA,EACRsB,QAAQ,IAAI;AAAEE,MAAAA,QAAQ,EAARA,QAAQ;AAAEE,MAAAA,QAAAA,EAAAA,QAAAA;KAAW,CAAA,EAEvC,CAACoF,aAAa,IAAI9F,YAAY,kBAC3BkL,sBAAA,CAAAC,aAAA,CAACS,kCAAiB,EAAA;MAACC,YAAY,EAAEzM,cAAc,KAAK,OAAA;AAAQ,KAAA,EACvD0G,aAAa,iBACVoF,sBAAA,CAAAC,aAAA,CAACW,uCAAsB,EAAA,IAAA,eACnBZ,sBAAA,CAAAC,aAAA,CAACY,sBAAK,EAAA;AAACjN,MAAAA,EAAE,EAAEoG,OAAQ;AAAC8G,MAAAA,OAAO,EAAElN,EAAAA;AAAG,KAAA,EAC3BsH,eACE,CAAA,EAEN9F,QAAQ,iBACL4K,sBAAA,CAAAC,aAAA,CAACc,kCAAiB,EACdf,IAAAA,eAAAA,sBAAA,CAAAC,aAAA,CAACe,kBAAa,EAAA;AACVvN,MAAAA,GAAG,EAAEgJ,WAAY;AACjBrH,MAAAA,QAAQ,EAAEA,QAAS;AACnBD,MAAAA,WAAW,EAAEA,WAAY;AACzBwE,MAAAA,aAAa,EAAEA,aAAc;AAC7BlE,MAAAA,cAAc,EAAEA,cAAe;AAC/BI,MAAAA,aAAa,EAAEA,aAAc;AAC7BC,MAAAA,YAAY,EAAEA,YAAa;AAC3BE,MAAAA,UAAU,EAAEA,UAAW;AACvBC,MAAAA,SAAS,EAAEA,SAAU;AACrBC,MAAAA,eAAe,EAAEA,eAAgB;AACjC8G,MAAAA,cAAc,EAAEA,cAAe;AAC/BC,MAAAA,cAAc,EAAEA,cAAe;AAC/BC,MAAAA,eAAe,EAAEA,eAAAA;KAAgB,CAEtB,CACtB,EACAxG,QAAQ,IAAI7B,oBAAoB,iBAC7BmL,sBAAA,CAAAC,aAAA,CAACgB,gCAAe,EAAA;MACZpN,SAAS,EAAE2M,QAAE,CACTjG,wBAAO,CAAC2G,mBAAmB,EAC3BvF,sBAAsB,EACtBD,YACJ,CAAA;KAEP,CAAA,EACAqE,gBACmB,CAC3B,EACAjL,YAAY,iBAAIkL,sBAAA,CAAAC,aAAA,CAACkB,6BAAY,EAAA;AAAC,MAAA,WAAA,EAAA,IAAA;AAAS,KAAA,EAAErM,YAA2B,CACtD,CACtB,eAEDkL,sBAAA,CAAAC,aAAA,CAACmB,6BAAAA;AACG;AAAA,MAAA;MACA3N,GAAG,EAAGuE,IAAI,CAASqJ,eAAAA;AACnB;AAAA;MACAxN,SAAS,EAAE2M,QAAE,CACTlG,YAAY,EACZ2B,yBAAyB,EACzBE,0BAA0B,EAC1B5B,wBAAO,CAAC+G,YACZ,CAAA;AAAE,KAAA,EAED,CAAC1G,aAAa,iBACXoF,sBAAA,CAAAC,aAAA,CAAAD,sBAAA,CAAAuB,QAAA,EACK7K,IAAAA,EAAAA,QAAQ,IAAI7B,oBAAoB,iBAC7BmL,sBAAA,CAAAC,aAAA,CAACgB,gCAAe,EAAA;AACZpN,MAAAA,SAAS,EAAE2M,QAAE,CAACjG,wBAAO,CAACiH,mBAAmB,EAAE7F,sBAAsB,CAAA;AAAE,KAE1E,CAAA,EACAvG,QAAQ,IAAIO,mBAAmB,KAAK,OAAO,iBACxCqK,sBAAA,CAAAC,aAAA,CAACc,kCAAiB,EAAA;MAAClN,SAAS,EAAE0G,wBAAO,CAACiH,mBAAAA;AAAoB,KAAA,eACtDxB,sBAAA,CAAAC,aAAA,CAACe,kBAAa,EAAA;AACVvN,MAAAA,GAAG,EAAEgJ,WAAY;AACjBrH,MAAAA,QAAQ,EAAEA,QAAS;AACnBD,MAAAA,WAAW,EAAEA,WAAY;AACzBwE,MAAAA,aAAa,EAAEA,aAAc;AAC7BlE,MAAAA,cAAc,EAAEA,cAAe;AAC/BI,MAAAA,aAAa,EAAEA,aAAc;AAC7BC,MAAAA,YAAY,EAAEA,YAAa;AAC3BE,MAAAA,UAAU,EAAEA,UAAW;AACvBC,MAAAA,SAAS,EAAEA,SAAU;AACrBC,MAAAA,eAAe,EAAEA,eAAgB;AACjCE,MAAAA,IAAI,EAAEA,IAAK;AACX4G,MAAAA,cAAc,EAAEA,cAAe;AAC/BC,MAAAA,cAAc,EAAEA,cAAe;AAC/BC,MAAAA,eAAe,EAAEA,eAAgB;MACjCyD,YAAY,EAAA,IAAA;KAAA,CAED,CAG9B,CAAA,EACA5M,WAAW,iBACRiM,sBAAA,CAAAC,aAAA,CAACwB,kCAAiB,EAAA;MAAC,WAAS,EAAA,IAAA;AAACC,MAAAA,OAAO,EAAE9K,KAAM;AAACsD,MAAAA,aAAa,EAAEA,aAAAA;AAAc,KAAA,EACrEnG,WACc,CACtB,eACDiM,sBAAA,CAAAC,aAAA,CAAC0B,kCAAiB,EAAA;MACdC,QAAQ,EAAE,CAAC,CAAE;AACbnO,MAAAA,GAAG,EAAEwE,UAAW;AAChBP,MAAAA,SAAS,EAAEgH,oBAAqB;AAChC7K,MAAAA,SAAS,EAAEyG,YAAAA;AAAa,KAAA,EAEvB3B,OAAO,CAACvE,UAAU,IAAI+F,iBAAiB,CAAC,iBACrC6F,sBAAA,CAAAC,aAAA,CAAC4B,iCAAgB,QAAEzN,UAA6B,CACnD,EAEAuE,OAAO,CAACtB,MAAM,KAANA,IAAAA,IAAAA,MAAM,uBAANA,MAAM,CAAEgD,MAAM,CAAC,iBACpB2F,sBAAA,CAAAC,aAAA,CAAC6B,iCAAgB,EAAA;AACb5K,MAAAA,KAAK,EAAEG,MAAO;AACdsH,MAAAA,WAAW,EAAErH,YAAa;AAC1B6H,MAAAA,MAAM,EAAEA,MAAO;AACfX,MAAAA,iBAAiB,EAAEA,iBAAkB;AACrCC,MAAAA,WAAW,EAAEA,WAAY;MACzBtI,IAAI,EAAEnB,QAAQ,IAAImB,IAAK;AACvBG,MAAAA,QAAQ,EAAEA,QAAS;AACnBc,MAAAA,QAAQ,EAAEA,QAAAA;AACV;AACA;AAAA;AACAW,MAAAA,kCAAkC,EAAEA,kCAAAA;AAAmC,KAE9E,CAAA,EAEAoC,iBAAiB,IAAIxB,OAAO,CAACzB,KAAK,KAALA,IAAAA,IAAAA,KAAK,uBAALA,KAAK,CAAEmD,MAAM,CAAC,iBACxC2F,sBAAA,CAAAC,aAAA,CAAC8B,4BAAW,EAAA;MAAClO,SAAS,EAAE0G,wBAAO,CAACyH,YAAAA;AAAa,KAAA,EACxC9K,KAAK,KAAA,IAAA,IAALA,KAAK,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAALA,KAAK,CAAEwI,GAAG,CAAC,UAAAuC,KAAA,EAAuB5C,KAAK,EAAK;AAAA,MAAA,IAA1B6C,MAAM,GAAAD,KAAA,CAAVrO,EAAE;QAAU+L,IAAAA,GAAAA,KAAAA,CAAAA,IAAAA,CAAAA;AACvB,MAAA,IAAMwC,cAAc,GAAGlN,aAAa,KAAA,IAAA,IAAbA,aAAa,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAbA,aAAa,CAAGmN,MAAM,CAACzC,IAAI,CAAC,CAAC,CAAA;MACpD,IAAM0C,OAAO,GAAGF,CAAAA,cAAc,KAAA,IAAA,IAAdA,cAAc,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAdA,cAAc,CAAEhM,IAAI,KAAInB,QAAQ,CAAA;AAEhD,MAAA,oBACIgL,sBAAA,CAAAC,aAAA,CAACqC,2BAAa,EAAA;AACV1O,QAAAA,EAAE,EAAEsO,MAAO;QACXzO,GAAG,EAAG2L,SAAAA,GAAAA,CAAAA,OAAO,EAAA;AAAA,UAAA,OAAKD,MAAM,CAACC,OAAO,EAAEC,KAAK,CAAC,CAAA;SAAC;QACzCkD,GAAG,EAAA,EAAA,CAAAzG,MAAA,CAAKoG,MAAM,OAAApG,MAAA,CAAIuD,KAAK,CAAG;AAC1B7I,QAAAA,QAAQ,EAAEA,QAAS;AACnBF,QAAAA,QAAQ,EAAEA,QAAS;AACnBU,QAAAA,KAAK,EAAE2I,IAAK;AACZA,QAAAA,IAAI,EAAEA,IAAK;QACXjI,SAAS,EAAGiF,SAAAA,SAAAA,CAAAA,KAAK,EAAA;AAAA,UAAA,OAAK6B,iBAAiB,CAAC7B,KAAK,EAAEuF,MAAM,EAAE7C,KAAK,CAAC,CAAA;SAAC;QAC9DmD,OAAO,EAAE,SAAAA,OAAA,GAAA;AAAA,UAAA,OAAM/D,WAAW,CAACyD,MAAM,EAAE7C,KAAK,CAAC,CAAA;SAAC;AAC1CkB,QAAAA,OAAO,EAAE5B,WAAY;AACrBvH,QAAAA,QAAQ,EAAEA,QAAS;AACnBjB,QAAAA,IAAI,EAAEkM,OAAQ;AACdI,QAAAA,WAAW,EAAEnP,IAAAA;AACb;AACA;AAAA;AACAyE,QAAAA,kCAAkC,EAAEA,kCAAAA;AAAmC,OACzE,CAAA,CAAA;AAEV,KAAC,CACQ,CAChB,eACDiI,sBAAA,CAAAC,aAAA,CAACyC,+BAAc,EAAA;AAACjP,MAAAA,GAAG,EAAE0E,iBAAkB;AAACwK,MAAAA,eAAe,EAAE5H,YAAAA;AAAa,KAAA,EACjEC,aAAa,iBAAIgF,sBAAA,CAAAC,aAAA,CAAC4B,iCAAgB,EAAA,IAAA,EAAEzN,UAA6B,CAAC,eACnE4L,sBAAA,CAAAC,aAAA,CAAC2C,sBAAK,EAAAtC,iCAAA,CAAA;AACF7M,MAAAA,GAAG,EAAE4E,YAAa;AAClBzE,MAAAA,EAAE,EAAEmG,OAAQ;AACZ/C,MAAAA,KAAK,EAAED,UAAW;AAClBL,MAAAA,QAAQ,EAAEjC,eAAe,KAAK,MAAM,GAAGyC,KAAK,CAACmD,MAAM,KAAK,CAAC,IAAI3D,QAAQ,GAAGA,QAAS;AACjF,MAAA,iBAAA,EAAiBsD,OAAQ;AACzB,MAAA,kBAAA,EAAkBC,YAAa;AAC/B3F,MAAAA,WAAW,EAAE8G,qBAAsB;AACnCvH,MAAAA,SAAS,EAAE2M,QAAE,CACTzE,aAAa,EACbC,oBAAoB,EACpBmE,iBAAiB,EACjB7J,QAAQ,IAAIiE,wBAAO,CAACsI,aACxB,CAAE;AACFrM,MAAAA,QAAQ,EAAEA,QAAS;AACnBF,MAAAA,QAAQ,EAAE,CAACE,QAAQ,IAAIF,QAAS;AAChCwM,MAAAA,OAAO,EAAEpG,WAAY;AACrBnF,MAAAA,QAAQ,EAAEiG,YAAa;AACvB9F,MAAAA,SAAS,EAAE4H,eAAgB;AAC3B3H,MAAAA,OAAO,EAAEmF,WAAY;AACrBlF,MAAAA,MAAM,EAAEmF,UAAW;AACnBlF,MAAAA,OAAO,EAAEkG,WAAY;AACrB,MAAA,WAAA,EAAA,IAAA;KACI/F,EAAAA,IAAI,CAAC,CAAA,EAEZ2C,aAAa,iBACVqF,sBAAA,CAAAC,aAAA,CAACY,sBAAK,EAAA;MAAC,WAAS,EAAA,IAAA;AAACjN,MAAAA,EAAE,EAAEoG,OAAQ;AAAC8G,MAAAA,OAAO,EAAE/G,OAAAA;AAAQ,KAAA,EAC1CmB,eAAe,EACf6E,gBACE,CACV,EACA1E,gBAAgB,IAAI,CAACrC,QAAQ,iBAC1BgH,sBAAA,CAAAC,aAAA,CAAC8C,iCAAgB,EAAA;AAACC,MAAAA,UAAU,EAAE/H,qBAAAA;AAAsB,KAAA,EAC/CD,aAAa,iBAAIgF,sBAAA,CAAAC,aAAA,CAAC4B,iCAAgB,EAAA;MAACoB,QAAQ,EAAA,IAAA;KAAE7O,EAAAA,UAA6B,CAAC,EAC3EgH,qBAAqB,EACrB0E,sBAAsB,IAAIC,gBACb,CACrB,EACAhF,YAAY,iBAAIiF,sBAAA,CAAAC,aAAA,CAACiD,gCAAe,EAAE7O,IAAAA,EAAAA,SAA2B,CAClD,CACD,CAAA,eACnB2L,sBAAA,CAAAC,aAAA,CAACkD,0CAAyB,EAAA;MAACtP,SAAS,EAAE2M,QAAE,CAACnE,8BAA8B,CAAA;AAAE,KAAA,EACpErI,YAAY,iBAAIgM,sBAAA,CAAAC,aAAA,CAACmD,mCAAkB,EAAA;AAAC,MAAA,WAAA,EAAA,IAAA;AAAS,KAAA,EAAEpP,YAAiC,CAAC,EAEjF,CAAC4G,aAAa,IAAIxF,QAAQ,IAAIO,mBAAmB,KAAK,OAAO,iBAC1DqK,sBAAA,CAAAC,aAAA,CAACe,kBAAa,EAAA;AACVvN,MAAAA,GAAG,EAAEgJ,WAAY;AACjBrH,MAAAA,QAAQ,EAAEA,QAAS;AACnBD,MAAAA,WAAW,EAAEA,WAAY;AACzBwE,MAAAA,aAAa,EAAEA,aAAc;AAC7BlE,MAAAA,cAAc,EAAEA,cAAe;AAC/BI,MAAAA,aAAa,EAAEA,aAAc;AAC7BC,MAAAA,YAAY,EAAEA,YAAa;AAC3BE,MAAAA,UAAU,EAAEA,UAAW;AACvBC,MAAAA,SAAS,EAAEA,SAAU;AACrBC,MAAAA,eAAe,EAAEA,eAAgB;AACjCE,MAAAA,IAAI,EAAEA,IAAK;AACX4G,MAAAA,cAAc,EAAEA,cAAe;AAC/BC,MAAAA,cAAc,EAAEA,cAAe;AAC/BC,MAAAA,eAAe,EAAEA,eAAgB;MACjCyD,YAAY,EAAA,IAAA;KAEnB,CACsB,CACjB,CAAA,EACbpM,UAAU,iBACPyL,sBAAA,CAAAC,aAAA,CAACoD,2BAAU,EAAA;MAAC,WAAS,EAAA,IAAA;AAACzP,MAAAA,EAAE,EAAEqG,YAAAA;KACrB1F,EAAAA,UACO,CAEd,CAAC,CAAA;AAEf,GACJ,CAAC,CAAA;AAAA,EAAA;AAEE,IAAM+O,eAAe,GAAG;AAC3BC,EAAAA,IAAI,EAAE,WAAW;AACjBC,EAAAA,GAAG,EAAE,KAAK;AACVC,EAAAA,MAAM,EAAEpQ,aAAa;AACrBF,EAAAA,IAAI,EAAJA,IAAI;AACJuQ,EAAAA,UAAU,EAAE;AACRvN,IAAAA,IAAI,EAAE;AACFwN,MAAAA,GAAG,EAAEC,WAAAA;KACR;AACDxN,IAAAA,IAAI,EAAE;AACFuN,MAAAA,GAAG,EAAEE,WAAAA;KACR;AACDjN,IAAAA,KAAK,EAAE;AACH+M,MAAAA,GAAG,EAAEG,WAAQ;AACbC,MAAAA,KAAK,EAAE,IAAA;KACV;AACDvN,IAAAA,QAAQ,EAAE;AACNmN,MAAAA,GAAG,EAAEK,WAAW;AAChBD,MAAAA,KAAK,EAAE,IAAA;KACV;AACDzN,IAAAA,QAAQ,EAAE;AACNqN,MAAAA,GAAG,EAAEM,WAAW;AAChBF,MAAAA,KAAK,EAAE,IAAA;KACV;AACD7P,IAAAA,cAAc,EAAE;AACZyP,MAAAA,GAAG,EAAEO,WAAAA;KACR;AACD5O,IAAAA,QAAQ,EAAE;AACNqO,MAAAA,GAAG,EAAEQ,WAAAA;KACR;AACD3O,IAAAA,QAAQ,EAAE;AACNmO,MAAAA,GAAG,EAAES,WAAAA;KACR;AACDpP,IAAAA,QAAQ,EAAE;AACN2O,MAAAA,GAAG,EAAEU,WAAAA;AACT,KAAA;GACH;AACDC,EAAAA,QAAQ,EAAE;AACNlO,IAAAA,IAAI,EAAE,GAAG;AACTD,IAAAA,IAAI,EAAE,SAAA;AACV,GAAA;AACJ;;;;;;"}