@cube-dev/ui-kit 0.113.1 → 0.115.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 (2736) hide show
  1. package/LICENSE +21 -0
  2. package/dist/CHANGELOG.md +3315 -0
  3. package/dist/README.md +32 -0
  4. package/dist/_internal/hooks/use-chained-callback.js +15 -0
  5. package/dist/_internal/hooks/use-chained-callback.js.map +1 -0
  6. package/dist/_internal/hooks/use-debounced-value.js +46 -0
  7. package/dist/_internal/hooks/use-debounced-value.js.map +1 -0
  8. package/dist/_internal/hooks/use-deprecation-warning.js +17 -0
  9. package/dist/_internal/hooks/use-deprecation-warning.js.map +1 -0
  10. package/dist/_internal/hooks/use-event.js +19 -0
  11. package/dist/_internal/hooks/use-event.js.map +1 -0
  12. package/dist/_internal/hooks/use-is-first-render.js +16 -0
  13. package/dist/_internal/hooks/use-is-first-render.js.map +1 -0
  14. package/dist/_internal/hooks/use-sync-ref.js +16 -0
  15. package/dist/_internal/hooks/use-sync-ref.js.map +1 -0
  16. package/dist/_internal/hooks/use-timer/timer.js +52 -0
  17. package/dist/_internal/hooks/use-timer/timer.js.map +1 -0
  18. package/dist/_internal/hooks/use-timer/use-timer.js +32 -0
  19. package/dist/_internal/hooks/use-timer/use-timer.js.map +1 -0
  20. package/dist/_internal/hooks/use-warn.js +35 -0
  21. package/dist/_internal/hooks/use-warn.js.map +1 -0
  22. package/dist/_virtual/_rolldown/runtime.js +8 -0
  23. package/dist/chunks/cacheKey.js +71 -0
  24. package/dist/chunks/cacheKey.js.map +1 -0
  25. package/dist/chunks/definitions.js +261 -0
  26. package/dist/chunks/definitions.js.map +1 -0
  27. package/dist/chunks/renderChunk.js +68 -0
  28. package/dist/chunks/renderChunk.js.map +1 -0
  29. package/dist/components/Block.d.ts +11 -0
  30. package/dist/components/Block.js +22 -0
  31. package/dist/components/Block.js.map +1 -0
  32. package/dist/components/CollectionItem.d.ts +24 -0
  33. package/dist/components/CollectionItem.js +50 -0
  34. package/dist/components/CollectionItem.js.map +1 -0
  35. package/dist/components/GlobalStyles.js +310 -0
  36. package/dist/components/GlobalStyles.js.map +1 -0
  37. package/dist/components/GridProvider.d.ts +18 -0
  38. package/dist/components/GridProvider.js +56 -0
  39. package/dist/components/GridProvider.js.map +1 -0
  40. package/dist/components/HiddenInput.js +32 -0
  41. package/dist/components/HiddenInput.js.map +1 -0
  42. package/dist/components/Root.d.ts +30 -0
  43. package/dist/components/Root.js +131 -0
  44. package/dist/components/Root.js.map +1 -0
  45. package/dist/components/actions/Action/Action.d.ts +20 -0
  46. package/dist/components/actions/Action/Action.js +41 -0
  47. package/dist/components/actions/Action/Action.js.map +1 -0
  48. package/dist/components/actions/Banner/Banner.d.ts +49 -0
  49. package/dist/components/actions/Banner/Banner.js +83 -0
  50. package/dist/components/actions/Banner/Banner.js.map +1 -0
  51. package/dist/components/actions/Banner/index.d.ts +2 -0
  52. package/dist/components/actions/Button/Button.d.ts +1815 -0
  53. package/dist/components/actions/Button/Button.js +337 -0
  54. package/dist/components/actions/Button/Button.js.map +1 -0
  55. package/dist/components/actions/Button/index.d.ts +2 -0
  56. package/dist/components/actions/ButtonGroup/ButtonGroup.d.ts +9 -0
  57. package/dist/components/actions/ButtonGroup/ButtonGroup.js +22 -0
  58. package/dist/components/actions/ButtonGroup/ButtonGroup.js.map +1 -0
  59. package/dist/components/actions/CommandMenu/CommandMenu.d.ts +45 -0
  60. package/dist/components/actions/CommandMenu/CommandMenu.js +364 -0
  61. package/dist/components/actions/CommandMenu/CommandMenu.js.map +1 -0
  62. package/dist/components/actions/CommandMenu/index.d.ts +2 -0
  63. package/dist/components/actions/CommandMenu/styled.js +103 -0
  64. package/dist/components/actions/CommandMenu/styled.js.map +1 -0
  65. package/dist/components/actions/ItemAction/ItemAction.d.ts +28 -0
  66. package/dist/components/actions/ItemAction/ItemAction.js +158 -0
  67. package/dist/components/actions/ItemAction/ItemAction.js.map +1 -0
  68. package/dist/components/actions/ItemAction/index.d.ts +2 -0
  69. package/dist/components/actions/ItemActionContext.d.ts +30 -0
  70. package/dist/components/actions/ItemActionContext.js +24 -0
  71. package/dist/components/actions/ItemActionContext.js.map +1 -0
  72. package/dist/components/actions/ItemButton/ItemButton.d.ts +27 -0
  73. package/dist/components/actions/ItemButton/ItemButton.js +178 -0
  74. package/dist/components/actions/ItemButton/ItemButton.js.map +1 -0
  75. package/dist/components/actions/ItemButton/index.d.ts +3 -0
  76. package/dist/components/actions/Link/Link.d.ts +10 -0
  77. package/dist/components/actions/Link/Link.js +18 -0
  78. package/dist/components/actions/Link/Link.js.map +1 -0
  79. package/dist/components/actions/Menu/Menu.d.ts +68 -0
  80. package/dist/components/actions/Menu/Menu.js +136 -0
  81. package/dist/components/actions/Menu/Menu.js.map +1 -0
  82. package/dist/components/actions/Menu/MenuItem.d.ts +23 -0
  83. package/dist/components/actions/Menu/MenuItem.js +79 -0
  84. package/dist/components/actions/Menu/MenuItem.js.map +1 -0
  85. package/dist/components/actions/Menu/MenuSection.d.ts +17 -0
  86. package/dist/components/actions/Menu/MenuSection.js +51 -0
  87. package/dist/components/actions/Menu/MenuSection.js.map +1 -0
  88. package/dist/components/actions/Menu/MenuTrigger.d.ts +21 -0
  89. package/dist/components/actions/Menu/MenuTrigger.js +141 -0
  90. package/dist/components/actions/Menu/MenuTrigger.js.map +1 -0
  91. package/dist/components/actions/Menu/SubMenuTrigger.d.ts +50 -0
  92. package/dist/components/actions/Menu/SubMenuTrigger.js +243 -0
  93. package/dist/components/actions/Menu/SubMenuTrigger.js.map +1 -0
  94. package/dist/components/actions/Menu/SubmenuTriggerContext.js +9 -0
  95. package/dist/components/actions/Menu/SubmenuTriggerContext.js.map +1 -0
  96. package/dist/components/actions/Menu/context.d.ts +22 -0
  97. package/dist/components/actions/Menu/context.js +12 -0
  98. package/dist/components/actions/Menu/context.js.map +1 -0
  99. package/dist/components/actions/Menu/index.d.ts +7 -0
  100. package/dist/components/actions/Menu/styled.js +212 -0
  101. package/dist/components/actions/Menu/styled.js.map +1 -0
  102. package/dist/components/actions/index.d.ts +39 -0
  103. package/dist/components/actions/index.js +25 -0
  104. package/dist/components/actions/index.js.map +1 -0
  105. package/dist/components/actions/use-action.d.ts +75 -0
  106. package/dist/components/actions/use-action.js +230 -0
  107. package/dist/components/actions/use-action.js.map +1 -0
  108. package/dist/components/actions/use-anchored-menu.d.ts +42 -0
  109. package/dist/components/actions/use-anchored-menu.js +109 -0
  110. package/dist/components/actions/use-anchored-menu.js.map +1 -0
  111. package/dist/components/actions/use-context-menu.d.ts +48 -0
  112. package/dist/components/actions/use-context-menu.js +184 -0
  113. package/dist/components/actions/use-context-menu.js.map +1 -0
  114. package/dist/components/content/ActiveZone/ActiveZone.d.ts +16 -0
  115. package/dist/components/content/ActiveZone/ActiveZone.js +48 -0
  116. package/dist/components/content/ActiveZone/ActiveZone.js.map +1 -0
  117. package/dist/components/content/Alert/Alert.d.ts +9 -0
  118. package/dist/components/content/Alert/Alert.js +55 -0
  119. package/dist/components/content/Alert/Alert.js.map +1 -0
  120. package/dist/components/content/Alert/index.d.ts +3 -0
  121. package/dist/components/content/Alert/types.d.ts +31 -0
  122. package/dist/components/content/Alert/use-alert.js +30 -0
  123. package/dist/components/content/Alert/use-alert.js.map +1 -0
  124. package/dist/components/content/Avatar/Avatar.d.ts +16 -0
  125. package/dist/components/content/Avatar/Avatar.js +40 -0
  126. package/dist/components/content/Avatar/Avatar.js.map +1 -0
  127. package/dist/components/content/Badge/Badge.d.ts +15 -0
  128. package/dist/components/content/Badge/Badge.js +57 -0
  129. package/dist/components/content/Badge/Badge.js.map +1 -0
  130. package/dist/components/content/Card/Card.d.ts +11 -0
  131. package/dist/components/content/Card/Card.js +34 -0
  132. package/dist/components/content/Card/Card.js.map +1 -0
  133. package/dist/components/content/Content.d.ts +11 -0
  134. package/dist/components/content/Content.js +38 -0
  135. package/dist/components/content/Content.js.map +1 -0
  136. package/dist/components/content/CopyPasteBlock/CopyPasteBlock.d.ts +24 -0
  137. package/dist/components/content/CopyPasteBlock/CopyPasteBlock.js +167 -0
  138. package/dist/components/content/CopyPasteBlock/CopyPasteBlock.js.map +1 -0
  139. package/dist/components/content/CopyPasteBlock/index.d.ts +2 -0
  140. package/dist/components/content/CopySnippet/CopySnippet.d.ts +44 -0
  141. package/dist/components/content/CopySnippet/CopySnippet.js +198 -0
  142. package/dist/components/content/CopySnippet/CopySnippet.js.map +1 -0
  143. package/dist/components/content/CopySnippet/index.d.ts +2 -0
  144. package/dist/components/content/Disclosure/Disclosure.d.ts +82 -0
  145. package/dist/components/content/Disclosure/Disclosure.js +332 -0
  146. package/dist/components/content/Disclosure/Disclosure.js.map +1 -0
  147. package/dist/components/content/Disclosure/index.d.ts +2 -0
  148. package/dist/components/content/Divider.d.ts +11 -0
  149. package/dist/components/content/Divider.js +69 -0
  150. package/dist/components/content/Divider.js.map +1 -0
  151. package/dist/components/content/Footer.d.ts +11 -0
  152. package/dist/components/content/Footer.js +33 -0
  153. package/dist/components/content/Footer.js.map +1 -0
  154. package/dist/components/content/Header.d.ts +11 -0
  155. package/dist/components/content/Header.js +34 -0
  156. package/dist/components/content/Header.js.map +1 -0
  157. package/dist/components/content/HotKeys/HotKeys.d.ts +14 -0
  158. package/dist/components/content/HotKeys/HotKeys.js +92 -0
  159. package/dist/components/content/HotKeys/HotKeys.js.map +1 -0
  160. package/dist/components/content/HotKeys/index.d.ts +2 -0
  161. package/dist/components/content/Item/Item.d.ts +171 -0
  162. package/dist/components/content/Item/Item.js +575 -0
  163. package/dist/components/content/Item/Item.js.map +1 -0
  164. package/dist/components/content/Item/index.d.ts +4 -0
  165. package/dist/components/content/ItemBadge/ItemBadge.d.ts +23 -0
  166. package/dist/components/content/ItemBadge/ItemBadge.js +108 -0
  167. package/dist/components/content/ItemBadge/ItemBadge.js.map +1 -0
  168. package/dist/components/content/ItemBadge/index.d.ts +2 -0
  169. package/dist/components/content/Layout/GridLayout.d.ts +42 -0
  170. package/dist/components/content/Layout/GridLayout.js +50 -0
  171. package/dist/components/content/Layout/GridLayout.js.map +1 -0
  172. package/dist/components/content/Layout/Layout.d.ts +40 -0
  173. package/dist/components/content/Layout/Layout.js +218 -0
  174. package/dist/components/content/Layout/Layout.js.map +1 -0
  175. package/dist/components/content/Layout/LayoutBlock.d.ts +10 -0
  176. package/dist/components/content/Layout/LayoutBlock.js +31 -0
  177. package/dist/components/content/Layout/LayoutBlock.js.map +1 -0
  178. package/dist/components/content/Layout/LayoutCenter.d.ts +10 -0
  179. package/dist/components/content/Layout/LayoutCenter.js +33 -0
  180. package/dist/components/content/Layout/LayoutCenter.js.map +1 -0
  181. package/dist/components/content/Layout/LayoutContainer.d.ts +23 -0
  182. package/dist/components/content/Layout/LayoutContainer.js +72 -0
  183. package/dist/components/content/Layout/LayoutContainer.js.map +1 -0
  184. package/dist/components/content/Layout/LayoutContent.d.ts +23 -0
  185. package/dist/components/content/Layout/LayoutContent.js +149 -0
  186. package/dist/components/content/Layout/LayoutContent.js.map +1 -0
  187. package/dist/components/content/Layout/LayoutContext.d.ts +9 -0
  188. package/dist/components/content/Layout/LayoutContext.js +134 -0
  189. package/dist/components/content/Layout/LayoutContext.js.map +1 -0
  190. package/dist/components/content/Layout/LayoutFlex.d.ts +10 -0
  191. package/dist/components/content/Layout/LayoutFlex.js +35 -0
  192. package/dist/components/content/Layout/LayoutFlex.js.map +1 -0
  193. package/dist/components/content/Layout/LayoutFooter.d.ts +13 -0
  194. package/dist/components/content/Layout/LayoutFooter.js +53 -0
  195. package/dist/components/content/Layout/LayoutFooter.js.map +1 -0
  196. package/dist/components/content/Layout/LayoutGrid.d.ts +19 -0
  197. package/dist/components/content/Layout/LayoutGrid.js +38 -0
  198. package/dist/components/content/Layout/LayoutGrid.js.map +1 -0
  199. package/dist/components/content/Layout/LayoutHeader.d.ts +27 -0
  200. package/dist/components/content/Layout/LayoutHeader.js +145 -0
  201. package/dist/components/content/Layout/LayoutHeader.js.map +1 -0
  202. package/dist/components/content/Layout/LayoutPane.d.ts +39 -0
  203. package/dist/components/content/Layout/LayoutPane.js +359 -0
  204. package/dist/components/content/Layout/LayoutPane.js.map +1 -0
  205. package/dist/components/content/Layout/LayoutPanel.d.ts +74 -0
  206. package/dist/components/content/Layout/LayoutPanel.js +484 -0
  207. package/dist/components/content/Layout/LayoutPanel.js.map +1 -0
  208. package/dist/components/content/Layout/LayoutPanelHeader.d.ts +22 -0
  209. package/dist/components/content/Layout/LayoutPanelHeader.js +57 -0
  210. package/dist/components/content/Layout/LayoutPanelHeader.js.map +1 -0
  211. package/dist/components/content/Layout/LayoutToolbar.d.ts +10 -0
  212. package/dist/components/content/Layout/LayoutToolbar.js +40 -0
  213. package/dist/components/content/Layout/LayoutToolbar.js.map +1 -0
  214. package/dist/components/content/Layout/hooks/useTinyScrollbar.js +143 -0
  215. package/dist/components/content/Layout/hooks/useTinyScrollbar.js.map +1 -0
  216. package/dist/components/content/Layout/index.d.ts +37 -0
  217. package/dist/components/content/Layout/index.js +36 -0
  218. package/dist/components/content/Layout/index.js.map +1 -0
  219. package/dist/components/content/Layout/utils.js +16 -0
  220. package/dist/components/content/Layout/utils.js.map +1 -0
  221. package/dist/components/content/Paragraph.d.ts +12 -0
  222. package/dist/components/content/Paragraph.js +28 -0
  223. package/dist/components/content/Paragraph.js.map +1 -0
  224. package/dist/components/content/Placeholder/Placeholder.d.ts +16 -0
  225. package/dist/components/content/Placeholder/Placeholder.js +76 -0
  226. package/dist/components/content/Placeholder/Placeholder.js.map +1 -0
  227. package/dist/components/content/PrismCode/PrismCode.d.ts +27 -0
  228. package/dist/components/content/PrismCode/PrismCode.js +99 -0
  229. package/dist/components/content/PrismCode/PrismCode.js.map +1 -0
  230. package/dist/components/content/PrismCode/prismSetup.js +148 -0
  231. package/dist/components/content/PrismCode/prismSetup.js.map +1 -0
  232. package/dist/components/content/PrismDiffCode/PrismDiffCode.d.ts +25 -0
  233. package/dist/components/content/PrismDiffCode/PrismDiffCode.js +27 -0
  234. package/dist/components/content/PrismDiffCode/PrismDiffCode.js.map +1 -0
  235. package/dist/components/content/Result/Result.d.ts +36 -0
  236. package/dist/components/content/Result/Result.js +146 -0
  237. package/dist/components/content/Result/Result.js.map +1 -0
  238. package/dist/components/content/Skeleton/Skeleton.d.ts +89 -0
  239. package/dist/components/content/Skeleton/Skeleton.js +169 -0
  240. package/dist/components/content/Skeleton/Skeleton.js.map +1 -0
  241. package/dist/components/content/Tag/Tag.d.ts +18 -0
  242. package/dist/components/content/Tag/Tag.js +58 -0
  243. package/dist/components/content/Tag/Tag.js.map +1 -0
  244. package/dist/components/content/Text.d.ts +2935 -0
  245. package/dist/components/content/Text.js +101 -0
  246. package/dist/components/content/Text.js.map +1 -0
  247. package/dist/components/content/TextItem/TextItem.d.ts +42 -0
  248. package/dist/components/content/TextItem/TextItem.js +66 -0
  249. package/dist/components/content/TextItem/TextItem.js.map +1 -0
  250. package/dist/components/content/TextItem/index.d.ts +2 -0
  251. package/dist/components/content/Title.d.ts +18 -0
  252. package/dist/components/content/Title.js +86 -0
  253. package/dist/components/content/Title.js.map +1 -0
  254. package/dist/components/content/highlightText.js +26 -0
  255. package/dist/components/content/highlightText.js.map +1 -0
  256. package/dist/components/content/use-auto-tooltip.d.ts +14 -0
  257. package/dist/components/content/use-auto-tooltip.js +116 -0
  258. package/dist/components/content/use-auto-tooltip.js.map +1 -0
  259. package/dist/components/fields/Checkbox/Checkbox.d.ts +29 -0
  260. package/dist/components/fields/Checkbox/Checkbox.js +190 -0
  261. package/dist/components/fields/Checkbox/Checkbox.js.map +1 -0
  262. package/dist/components/fields/Checkbox/CheckboxGroup.d.ts +23 -0
  263. package/dist/components/fields/Checkbox/CheckboxGroup.js +82 -0
  264. package/dist/components/fields/Checkbox/CheckboxGroup.js.map +1 -0
  265. package/dist/components/fields/Checkbox/context.js +9 -0
  266. package/dist/components/fields/Checkbox/context.js.map +1 -0
  267. package/dist/components/fields/Checkbox/index.d.ts +3 -0
  268. package/dist/components/fields/ComboBox/ComboBox.d.ts +133 -0
  269. package/dist/components/fields/ComboBox/ComboBox.js +897 -0
  270. package/dist/components/fields/ComboBox/ComboBox.js.map +1 -0
  271. package/dist/components/fields/ComboBox/index.d.ts +2 -0
  272. package/dist/components/fields/DatePicker/DateInput.d.ts +28 -0
  273. package/dist/components/fields/DatePicker/DateInput.js +76 -0
  274. package/dist/components/fields/DatePicker/DateInput.js.map +1 -0
  275. package/dist/components/fields/DatePicker/DateInputBase.js +85 -0
  276. package/dist/components/fields/DatePicker/DateInputBase.js.map +1 -0
  277. package/dist/components/fields/DatePicker/DatePicker.d.ts +27 -0
  278. package/dist/components/fields/DatePicker/DatePicker.js +111 -0
  279. package/dist/components/fields/DatePicker/DatePicker.js.map +1 -0
  280. package/dist/components/fields/DatePicker/DatePickerButton.js +12 -0
  281. package/dist/components/fields/DatePicker/DatePickerButton.js.map +1 -0
  282. package/dist/components/fields/DatePicker/DatePickerElement.js +17 -0
  283. package/dist/components/fields/DatePicker/DatePickerElement.js.map +1 -0
  284. package/dist/components/fields/DatePicker/DatePickerInput.js +51 -0
  285. package/dist/components/fields/DatePicker/DatePickerInput.js.map +1 -0
  286. package/dist/components/fields/DatePicker/DatePickerSegment.js +76 -0
  287. package/dist/components/fields/DatePicker/DatePickerSegment.js.map +1 -0
  288. package/dist/components/fields/DatePicker/DateRangePicker.d.ts +27 -0
  289. package/dist/components/fields/DatePicker/DateRangePicker.js +137 -0
  290. package/dist/components/fields/DatePicker/DateRangePicker.js.map +1 -0
  291. package/dist/components/fields/DatePicker/DateRangeSeparatedPicker.d.ts +28 -0
  292. package/dist/components/fields/DatePicker/DateRangeSeparatedPicker.js +220 -0
  293. package/dist/components/fields/DatePicker/DateRangeSeparatedPicker.js.map +1 -0
  294. package/dist/components/fields/DatePicker/TimeInput.d.ts +46 -0
  295. package/dist/components/fields/DatePicker/TimeInput.js +65 -0
  296. package/dist/components/fields/DatePicker/TimeInput.js.map +1 -0
  297. package/dist/components/fields/DatePicker/index.d.ts +8 -0
  298. package/dist/components/fields/DatePicker/intl.js +11 -0
  299. package/dist/components/fields/DatePicker/intl.js.map +1 -0
  300. package/dist/components/fields/DatePicker/parseDate.d.ts +8 -0
  301. package/dist/components/fields/DatePicker/parseDate.js +21 -0
  302. package/dist/components/fields/DatePicker/parseDate.js.map +1 -0
  303. package/dist/components/fields/DatePicker/props.js +17 -0
  304. package/dist/components/fields/DatePicker/props.js.map +1 -0
  305. package/dist/components/fields/DatePicker/types.d.ts +35 -0
  306. package/dist/components/fields/DatePicker/utils.js +45 -0
  307. package/dist/components/fields/DatePicker/utils.js.map +1 -0
  308. package/dist/components/fields/FileInput/FileInput.d.ts +42 -0
  309. package/dist/components/fields/FileInput/FileInput.js +182 -0
  310. package/dist/components/fields/FileInput/FileInput.js.map +1 -0
  311. package/dist/components/fields/FilterListBox/FilterListBox.d.ts +87 -0
  312. package/dist/components/fields/FilterListBox/FilterListBox.js +487 -0
  313. package/dist/components/fields/FilterListBox/FilterListBox.js.map +1 -0
  314. package/dist/components/fields/FilterListBox/index.d.ts +2 -0
  315. package/dist/components/fields/FilterPicker/FilterPicker.d.ts +86 -0
  316. package/dist/components/fields/FilterPicker/FilterPicker.js +451 -0
  317. package/dist/components/fields/FilterPicker/FilterPicker.js.map +1 -0
  318. package/dist/components/fields/FilterPicker/index.d.ts +2 -0
  319. package/dist/components/fields/Input/Input.d.ts +20 -0
  320. package/dist/components/fields/Input/Input.js +19 -0
  321. package/dist/components/fields/Input/Input.js.map +1 -0
  322. package/dist/components/fields/Input/index.d.ts +2 -0
  323. package/dist/components/fields/ListBox/ListBox.d.ts +133 -0
  324. package/dist/components/fields/ListBox/ListBox.js +709 -0
  325. package/dist/components/fields/ListBox/ListBox.js.map +1 -0
  326. package/dist/components/fields/ListBox/index.d.ts +2 -0
  327. package/dist/components/fields/NumberInput/NumberInput.d.ts +19 -0
  328. package/dist/components/fields/NumberInput/NumberInput.js +73 -0
  329. package/dist/components/fields/NumberInput/NumberInput.js.map +1 -0
  330. package/dist/components/fields/NumberInput/StepButton.js +45 -0
  331. package/dist/components/fields/NumberInput/StepButton.js.map +1 -0
  332. package/dist/components/fields/PasswordInput/PasswordInput.d.ts +17 -0
  333. package/dist/components/fields/PasswordInput/PasswordInput.js +70 -0
  334. package/dist/components/fields/PasswordInput/PasswordInput.js.map +1 -0
  335. package/dist/components/fields/Picker/Picker.d.ts +84 -0
  336. package/dist/components/fields/Picker/Picker.js +372 -0
  337. package/dist/components/fields/Picker/Picker.js.map +1 -0
  338. package/dist/components/fields/Picker/index.d.ts +2 -0
  339. package/dist/components/fields/RadioGroup/Radio.d.ts +63 -0
  340. package/dist/components/fields/RadioGroup/Radio.js +242 -0
  341. package/dist/components/fields/RadioGroup/Radio.js.map +1 -0
  342. package/dist/components/fields/RadioGroup/RadioGroup.d.ts +31 -0
  343. package/dist/components/fields/RadioGroup/RadioGroup.js +109 -0
  344. package/dist/components/fields/RadioGroup/RadioGroup.js.map +1 -0
  345. package/dist/components/fields/RadioGroup/context.js +12 -0
  346. package/dist/components/fields/RadioGroup/context.js.map +1 -0
  347. package/dist/components/fields/RadioGroup/index.d.ts +3 -0
  348. package/dist/components/fields/SearchInput/SearchInput.d.ts +19 -0
  349. package/dist/components/fields/SearchInput/SearchInput.js +53 -0
  350. package/dist/components/fields/SearchInput/SearchInput.js.map +1 -0
  351. package/dist/components/fields/SearchInput/index.d.ts +2 -0
  352. package/dist/components/fields/Select/Select.d.ts +967 -0
  353. package/dist/components/fields/Select/Select.js +440 -0
  354. package/dist/components/fields/Select/Select.js.map +1 -0
  355. package/dist/components/fields/Select/index.d.ts +2 -0
  356. package/dist/components/fields/Slider/Gradation.js +21 -0
  357. package/dist/components/fields/Slider/Gradation.js.map +1 -0
  358. package/dist/components/fields/Slider/HueSlider.d.ts +19 -0
  359. package/dist/components/fields/Slider/HueSlider.js +72 -0
  360. package/dist/components/fields/Slider/HueSlider.js.map +1 -0
  361. package/dist/components/fields/Slider/RangeSlider.d.ts +17 -0
  362. package/dist/components/fields/Slider/RangeSlider.js +61 -0
  363. package/dist/components/fields/Slider/RangeSlider.js.map +1 -0
  364. package/dist/components/fields/Slider/Slider.d.ts +25 -0
  365. package/dist/components/fields/Slider/Slider.js +67 -0
  366. package/dist/components/fields/Slider/Slider.js.map +1 -0
  367. package/dist/components/fields/Slider/SliderBase.js +119 -0
  368. package/dist/components/fields/Slider/SliderBase.js.map +1 -0
  369. package/dist/components/fields/Slider/SliderThumb.js +51 -0
  370. package/dist/components/fields/Slider/SliderThumb.js.map +1 -0
  371. package/dist/components/fields/Slider/SliderTrack.js +27 -0
  372. package/dist/components/fields/Slider/SliderTrack.js.map +1 -0
  373. package/dist/components/fields/Slider/elements.js +152 -0
  374. package/dist/components/fields/Slider/elements.js.map +1 -0
  375. package/dist/components/fields/Slider/index.d.ts +7 -0
  376. package/dist/components/fields/Slider/index.js +7 -0
  377. package/dist/components/fields/Slider/types.d.ts +25 -0
  378. package/dist/components/fields/Switch/Switch.d.ts +26 -0
  379. package/dist/components/fields/Switch/Switch.js +195 -0
  380. package/dist/components/fields/Switch/Switch.js.map +1 -0
  381. package/dist/components/fields/TextArea/TextArea.d.ts +25 -0
  382. package/dist/components/fields/TextArea/TextArea.js +92 -0
  383. package/dist/components/fields/TextArea/TextArea.js.map +1 -0
  384. package/dist/components/fields/TextArea/index.d.ts +2 -0
  385. package/dist/components/fields/TextInput/TextInput.d.ts +12 -0
  386. package/dist/components/fields/TextInput/TextInput.js +44 -0
  387. package/dist/components/fields/TextInput/TextInput.js.map +1 -0
  388. package/dist/components/fields/TextInput/TextInputBase.d.ts +53 -0
  389. package/dist/components/fields/TextInput/TextInputBase.js +274 -0
  390. package/dist/components/fields/TextInput/TextInputBase.js.map +1 -0
  391. package/dist/components/fields/TextInput/index.d.ts +3 -0
  392. package/dist/components/fields/TextInputMapper/TextInputMapper.d.ts +38 -0
  393. package/dist/components/fields/TextInputMapper/TextInputMapper.js +237 -0
  394. package/dist/components/fields/TextInputMapper/TextInputMapper.js.map +1 -0
  395. package/dist/components/fields/TextInputMapper/index.d.ts +2 -0
  396. package/dist/components/fields/index.d.ts +47 -0
  397. package/dist/components/form/FieldWrapper/FieldWrapper.d.ts +13 -0
  398. package/dist/components/form/FieldWrapper/FieldWrapper.js +170 -0
  399. package/dist/components/form/FieldWrapper/FieldWrapper.js.map +1 -0
  400. package/dist/components/form/FieldWrapper/extract-field-wrapper-props.d.ts +12 -0
  401. package/dist/components/form/FieldWrapper/extract-field-wrapper-props.js +41 -0
  402. package/dist/components/form/FieldWrapper/extract-field-wrapper-props.js.map +1 -0
  403. package/dist/components/form/FieldWrapper/index.d.ts +4 -0
  404. package/dist/components/form/FieldWrapper/types.d.ts +42 -0
  405. package/dist/components/form/Form/Field.d.ts +23 -0
  406. package/dist/components/form/Form/Field.js +139 -0
  407. package/dist/components/form/Form/Field.js.map +1 -0
  408. package/dist/components/form/Form/Form.d.ts +35 -0
  409. package/dist/components/form/Form/Form.js +151 -0
  410. package/dist/components/form/Form/Form.js.map +1 -0
  411. package/dist/components/form/Form/ResetButton/ResetButton.d.ts +16 -0
  412. package/dist/components/form/Form/ResetButton/ResetButton.js +38 -0
  413. package/dist/components/form/Form/ResetButton/ResetButton.js.map +1 -0
  414. package/dist/components/form/Form/ResetButton/index.d.ts +2 -0
  415. package/dist/components/form/Form/SubmitButton/SubmitButton.d.ts +16 -0
  416. package/dist/components/form/Form/SubmitButton/SubmitButton.js +30 -0
  417. package/dist/components/form/Form/SubmitButton/SubmitButton.js.map +1 -0
  418. package/dist/components/form/Form/SubmitButton/index.d.ts +2 -0
  419. package/dist/components/form/Form/SubmitError.d.ts +13 -0
  420. package/dist/components/form/Form/SubmitError.js +27 -0
  421. package/dist/components/form/Form/SubmitError.js.map +1 -0
  422. package/dist/components/form/Form/index.d.ts +38 -0
  423. package/dist/components/form/Form/index.js +22 -0
  424. package/dist/components/form/Form/index.js.map +1 -0
  425. package/dist/components/form/Form/types.d.ts +23 -0
  426. package/dist/components/form/Form/use-field/index.d.ts +4 -0
  427. package/dist/components/form/Form/use-field/types.d.ts +43 -0
  428. package/dist/components/form/Form/use-field/use-field-props.d.ts +29 -0
  429. package/dist/components/form/Form/use-field/use-field-props.js +71 -0
  430. package/dist/components/form/Form/use-field/use-field-props.js.map +1 -0
  431. package/dist/components/form/Form/use-field/use-field.d.ts +14 -0
  432. package/dist/components/form/Form/use-field/use-field.js +134 -0
  433. package/dist/components/form/Form/use-field/use-field.js.map +1 -0
  434. package/dist/components/form/Form/use-form.d.ts +77 -0
  435. package/dist/components/form/Form/use-form.js +322 -0
  436. package/dist/components/form/Form/use-form.js.map +1 -0
  437. package/dist/components/form/Form/validation.js +133 -0
  438. package/dist/components/form/Form/validation.js.map +1 -0
  439. package/dist/components/form/Label.d.ts +25 -0
  440. package/dist/components/form/Label.js +100 -0
  441. package/dist/components/form/Label.js.map +1 -0
  442. package/dist/components/form/index.d.ts +19 -0
  443. package/dist/components/form/wrapper.d.ts +15 -0
  444. package/dist/components/form/wrapper.js +38 -0
  445. package/dist/components/form/wrapper.js.map +1 -0
  446. package/dist/components/helpers/DisplayTransition/DisplayTransition.d.ts +36 -0
  447. package/dist/components/helpers/DisplayTransition/DisplayTransition.js +218 -0
  448. package/dist/components/helpers/DisplayTransition/DisplayTransition.js.map +1 -0
  449. package/dist/components/helpers/IconSwitch/IconSwitch.js +124 -0
  450. package/dist/components/helpers/IconSwitch/IconSwitch.js.map +1 -0
  451. package/dist/components/layout/Flex.d.ts +11 -0
  452. package/dist/components/layout/Flex.js +25 -0
  453. package/dist/components/layout/Flex.js.map +1 -0
  454. package/dist/components/layout/Flow.d.ts +11 -0
  455. package/dist/components/layout/Flow.js +26 -0
  456. package/dist/components/layout/Flow.js.map +1 -0
  457. package/dist/components/layout/Grid.d.ts +11 -0
  458. package/dist/components/layout/Grid.js +31 -0
  459. package/dist/components/layout/Grid.js.map +1 -0
  460. package/dist/components/layout/Panel.d.ts +28 -0
  461. package/dist/components/layout/Panel.js +133 -0
  462. package/dist/components/layout/Panel.js.map +1 -0
  463. package/dist/components/layout/Prefix.d.ts +15 -0
  464. package/dist/components/layout/Prefix.js +50 -0
  465. package/dist/components/layout/Prefix.js.map +1 -0
  466. package/dist/components/layout/ResizablePanel.d.ts +21 -0
  467. package/dist/components/layout/ResizablePanel.js +278 -0
  468. package/dist/components/layout/ResizablePanel.js.map +1 -0
  469. package/dist/components/layout/Space.d.ts +13 -0
  470. package/dist/components/layout/Space.js +38 -0
  471. package/dist/components/layout/Space.js.map +1 -0
  472. package/dist/components/layout/Suffix.d.ts +15 -0
  473. package/dist/components/layout/Suffix.js +49 -0
  474. package/dist/components/layout/Suffix.js.map +1 -0
  475. package/dist/components/navigation/Tabs/DraggableTabList.js +73 -0
  476. package/dist/components/navigation/Tabs/DraggableTabList.js.map +1 -0
  477. package/dist/components/navigation/Tabs/EditableTitle.js +100 -0
  478. package/dist/components/navigation/Tabs/EditableTitle.js.map +1 -0
  479. package/dist/components/navigation/Tabs/TabButton.js +321 -0
  480. package/dist/components/navigation/Tabs/TabButton.js.map +1 -0
  481. package/dist/components/navigation/Tabs/TabDropIndicator.js +54 -0
  482. package/dist/components/navigation/Tabs/TabDropIndicator.js.map +1 -0
  483. package/dist/components/navigation/Tabs/TabPanel.js +109 -0
  484. package/dist/components/navigation/Tabs/TabPanel.js.map +1 -0
  485. package/dist/components/navigation/Tabs/TabPicker.js +53 -0
  486. package/dist/components/navigation/Tabs/TabPicker.js.map +1 -0
  487. package/dist/components/navigation/Tabs/Tabs.d.ts +60 -0
  488. package/dist/components/navigation/Tabs/Tabs.js +419 -0
  489. package/dist/components/navigation/Tabs/Tabs.js.map +1 -0
  490. package/dist/components/navigation/Tabs/TabsAction.d.ts +46 -0
  491. package/dist/components/navigation/Tabs/TabsAction.js +63 -0
  492. package/dist/components/navigation/Tabs/TabsAction.js.map +1 -0
  493. package/dist/components/navigation/Tabs/TabsContext.js +29 -0
  494. package/dist/components/navigation/Tabs/TabsContext.js.map +1 -0
  495. package/dist/components/navigation/Tabs/index.d.ts +4 -0
  496. package/dist/components/navigation/Tabs/styled.js +318 -0
  497. package/dist/components/navigation/Tabs/styled.js.map +1 -0
  498. package/dist/components/navigation/Tabs/types.d.ts +257 -0
  499. package/dist/components/navigation/Tabs/types.js +14 -0
  500. package/dist/components/navigation/Tabs/types.js.map +1 -0
  501. package/dist/components/navigation/Tabs/use-tab-editing.js +46 -0
  502. package/dist/components/navigation/Tabs/use-tab-editing.js.map +1 -0
  503. package/dist/components/navigation/Tabs/use-tab-indicator.js +64 -0
  504. package/dist/components/navigation/Tabs/use-tab-indicator.js.map +1 -0
  505. package/dist/components/navigation/index.d.ts +5 -0
  506. package/dist/components/organisms/FileTabs/FileTabs.d.ts +55 -0
  507. package/dist/components/organisms/FileTabs/FileTabs.js +282 -0
  508. package/dist/components/organisms/FileTabs/FileTabs.js.map +1 -0
  509. package/dist/components/organisms/StatsCard/StatsCard.d.ts +20 -0
  510. package/dist/components/organisms/StatsCard/StatsCard.js +36 -0
  511. package/dist/components/organisms/StatsCard/StatsCard.js.map +1 -0
  512. package/dist/components/other/Calendar/Calendar.js +72 -0
  513. package/dist/components/other/Calendar/Calendar.js.map +1 -0
  514. package/dist/components/other/Calendar/CalendarCell.js +68 -0
  515. package/dist/components/other/Calendar/CalendarCell.js.map +1 -0
  516. package/dist/components/other/Calendar/CalendarGrid.js +45 -0
  517. package/dist/components/other/Calendar/CalendarGrid.js.map +1 -0
  518. package/dist/components/other/Calendar/RangeCalendar.js +70 -0
  519. package/dist/components/other/Calendar/RangeCalendar.js.map +1 -0
  520. package/dist/components/other/CloudLogo/CloudLogo.d.ts +11 -0
  521. package/dist/components/other/CloudLogo/CloudLogo.js +110 -0
  522. package/dist/components/other/CloudLogo/CloudLogo.js.map +1 -0
  523. package/dist/components/overlays/AlertDialog/AlertDialog.d.ts +28 -0
  524. package/dist/components/overlays/AlertDialog/AlertDialog.js +71 -0
  525. package/dist/components/overlays/AlertDialog/AlertDialog.js.map +1 -0
  526. package/dist/components/overlays/AlertDialog/AlertDialogApiProvider.d.ts +72 -0
  527. package/dist/components/overlays/AlertDialog/AlertDialogApiProvider.js +135 -0
  528. package/dist/components/overlays/AlertDialog/AlertDialogApiProvider.js.map +1 -0
  529. package/dist/components/overlays/AlertDialog/AlertDialogZone.d.ts +3 -0
  530. package/dist/components/overlays/AlertDialog/AlertDialogZone.js +63 -0
  531. package/dist/components/overlays/AlertDialog/AlertDialogZone.js.map +1 -0
  532. package/dist/components/overlays/AlertDialog/index.d.ts +4 -0
  533. package/dist/components/overlays/AlertDialog/types.d.ts +22 -0
  534. package/dist/components/overlays/Dialog/Dialog.d.ts +30 -0
  535. package/dist/components/overlays/Dialog/Dialog.js +228 -0
  536. package/dist/components/overlays/Dialog/Dialog.js.map +1 -0
  537. package/dist/components/overlays/Dialog/DialogContainer.d.ts +36 -0
  538. package/dist/components/overlays/Dialog/DialogContainer.js +44 -0
  539. package/dist/components/overlays/Dialog/DialogContainer.js.map +1 -0
  540. package/dist/components/overlays/Dialog/DialogForm.d.ts +37 -0
  541. package/dist/components/overlays/Dialog/DialogForm.js +76 -0
  542. package/dist/components/overlays/Dialog/DialogForm.js.map +1 -0
  543. package/dist/components/overlays/Dialog/DialogTrigger.d.ts +56 -0
  544. package/dist/components/overlays/Dialog/DialogTrigger.js +176 -0
  545. package/dist/components/overlays/Dialog/DialogTrigger.js.map +1 -0
  546. package/dist/components/overlays/Dialog/context.js +15 -0
  547. package/dist/components/overlays/Dialog/context.js.map +1 -0
  548. package/dist/components/overlays/Dialog/index.d.ts +6 -0
  549. package/dist/components/overlays/Dialog/use-dialog-container.d.ts +22 -0
  550. package/dist/components/overlays/Dialog/use-dialog-container.js +65 -0
  551. package/dist/components/overlays/Dialog/use-dialog-container.js.map +1 -0
  552. package/dist/components/overlays/Modal/Modal.d.ts +3 -0
  553. package/dist/components/overlays/Modal/Modal.js +113 -0
  554. package/dist/components/overlays/Modal/Modal.js.map +1 -0
  555. package/dist/components/overlays/Modal/OpenTransition.js +39 -0
  556. package/dist/components/overlays/Modal/OpenTransition.js.map +1 -0
  557. package/dist/components/overlays/Modal/Overlay.d.ts +3 -0
  558. package/dist/components/overlays/Modal/Overlay.js +44 -0
  559. package/dist/components/overlays/Modal/Overlay.js.map +1 -0
  560. package/dist/components/overlays/Modal/Popover.d.ts +6 -0
  561. package/dist/components/overlays/Modal/Popover.js +90 -0
  562. package/dist/components/overlays/Modal/Popover.js.map +1 -0
  563. package/dist/components/overlays/Modal/Tray.d.ts +5 -0
  564. package/dist/components/overlays/Modal/Tray.js +89 -0
  565. package/dist/components/overlays/Modal/Tray.js.map +1 -0
  566. package/dist/components/overlays/Modal/Underlay.d.ts +3 -0
  567. package/dist/components/overlays/Modal/Underlay.js +43 -0
  568. package/dist/components/overlays/Modal/Underlay.js.map +1 -0
  569. package/dist/components/overlays/Modal/index.d.ts +7 -0
  570. package/dist/components/overlays/Modal/types.d.ts +12 -0
  571. package/dist/components/overlays/Notifications/Notification.d.ts +38 -0
  572. package/dist/components/overlays/Notifications/Notification.js +78 -0
  573. package/dist/components/overlays/Notifications/Notification.js.map +1 -0
  574. package/dist/components/overlays/Notifications/NotificationAction.d.ts +26 -0
  575. package/dist/components/overlays/Notifications/NotificationAction.js +55 -0
  576. package/dist/components/overlays/Notifications/NotificationAction.js.map +1 -0
  577. package/dist/components/overlays/Notifications/NotificationCard.d.ts +56 -0
  578. package/dist/components/overlays/Notifications/NotificationCard.js +116 -0
  579. package/dist/components/overlays/Notifications/NotificationCard.js.map +1 -0
  580. package/dist/components/overlays/Notifications/NotificationContext.d.ts +8 -0
  581. package/dist/components/overlays/Notifications/NotificationContext.js +34 -0
  582. package/dist/components/overlays/Notifications/NotificationContext.js.map +1 -0
  583. package/dist/components/overlays/Notifications/NotificationItem.d.ts +17 -0
  584. package/dist/components/overlays/Notifications/NotificationItem.js +66 -0
  585. package/dist/components/overlays/Notifications/NotificationItem.js.map +1 -0
  586. package/dist/components/overlays/Notifications/OverlayContainer.js +305 -0
  587. package/dist/components/overlays/Notifications/OverlayContainer.js.map +1 -0
  588. package/dist/components/overlays/Notifications/OverlayProvider.d.ts +13 -0
  589. package/dist/components/overlays/Notifications/OverlayProvider.js +68 -0
  590. package/dist/components/overlays/Notifications/OverlayProvider.js.map +1 -0
  591. package/dist/components/overlays/Notifications/PersistentNotificationsList.d.ts +30 -0
  592. package/dist/components/overlays/Notifications/PersistentNotificationsList.js +120 -0
  593. package/dist/components/overlays/Notifications/PersistentNotificationsList.js.map +1 -0
  594. package/dist/components/overlays/Notifications/format-relative-time.d.ts +19 -0
  595. package/dist/components/overlays/Notifications/format-relative-time.js +36 -0
  596. package/dist/components/overlays/Notifications/format-relative-time.js.map +1 -0
  597. package/dist/components/overlays/Notifications/index.d.ts +43 -0
  598. package/dist/components/overlays/Notifications/index.js +40 -0
  599. package/dist/components/overlays/Notifications/index.js.map +1 -0
  600. package/dist/components/overlays/Notifications/types.d.ts +135 -0
  601. package/dist/components/overlays/Notifications/use-notification-state.js +176 -0
  602. package/dist/components/overlays/Notifications/use-notification-state.js.map +1 -0
  603. package/dist/components/overlays/Notifications/use-notifications.d.ts +42 -0
  604. package/dist/components/overlays/Notifications/use-notifications.js +146 -0
  605. package/dist/components/overlays/Notifications/use-notifications.js.map +1 -0
  606. package/dist/components/overlays/Notifications/use-overlay-timers.js +128 -0
  607. package/dist/components/overlays/Notifications/use-overlay-timers.js.map +1 -0
  608. package/dist/components/overlays/Notifications/use-persistent-notifications.d.ts +54 -0
  609. package/dist/components/overlays/Notifications/use-persistent-notifications.js +61 -0
  610. package/dist/components/overlays/Notifications/use-persistent-notifications.js.map +1 -0
  611. package/dist/components/overlays/Notifications/use-persistent-state.js +64 -0
  612. package/dist/components/overlays/Notifications/use-persistent-state.js.map +1 -0
  613. package/dist/components/overlays/Notifications/use-toast-state.js +108 -0
  614. package/dist/components/overlays/Notifications/use-toast-state.js.map +1 -0
  615. package/dist/components/overlays/Toast/ToastItem.d.ts +23 -0
  616. package/dist/components/overlays/Toast/ToastItem.js +34 -0
  617. package/dist/components/overlays/Toast/ToastItem.js.map +1 -0
  618. package/dist/components/overlays/Toast/ToastProvider.d.ts +2 -0
  619. package/dist/components/overlays/Toast/index.d.ts +54 -0
  620. package/dist/components/overlays/Toast/index.js +80 -0
  621. package/dist/components/overlays/Toast/index.js.map +1 -0
  622. package/dist/components/overlays/Toast/types.d.ts +74 -0
  623. package/dist/components/overlays/Toast/useProgressToast.d.ts +32 -0
  624. package/dist/components/overlays/Toast/useProgressToast.js +156 -0
  625. package/dist/components/overlays/Toast/useProgressToast.js.map +1 -0
  626. package/dist/components/overlays/Toast/useToast.d.ts +36 -0
  627. package/dist/components/overlays/Toast/useToast.js +89 -0
  628. package/dist/components/overlays/Toast/useToast.js.map +1 -0
  629. package/dist/components/overlays/Tooltip/Tooltip.d.ts +28 -0
  630. package/dist/components/overlays/Tooltip/Tooltip.js +160 -0
  631. package/dist/components/overlays/Tooltip/Tooltip.js.map +1 -0
  632. package/dist/components/overlays/Tooltip/TooltipProvider.d.ts +18 -0
  633. package/dist/components/overlays/Tooltip/TooltipProvider.js +30 -0
  634. package/dist/components/overlays/Tooltip/TooltipProvider.js.map +1 -0
  635. package/dist/components/overlays/Tooltip/TooltipTrigger.d.ts +60 -0
  636. package/dist/components/overlays/Tooltip/TooltipTrigger.js +117 -0
  637. package/dist/components/overlays/Tooltip/TooltipTrigger.js.map +1 -0
  638. package/dist/components/overlays/Tooltip/context.js +9 -0
  639. package/dist/components/overlays/Tooltip/context.js.map +1 -0
  640. package/dist/components/portal/Portal.d.ts +32 -0
  641. package/dist/components/portal/Portal.js +39 -0
  642. package/dist/components/portal/Portal.js.map +1 -0
  643. package/dist/components/portal/PortalProvider.js +21 -0
  644. package/dist/components/portal/PortalProvider.js.map +1 -0
  645. package/dist/components/portal/index.d.ts +3 -0
  646. package/dist/components/portal/types.d.ts +27 -0
  647. package/dist/components/portal/usePortal.js +41 -0
  648. package/dist/components/portal/usePortal.js.map +1 -0
  649. package/dist/components/shared/InvalidIcon.js +13 -0
  650. package/dist/components/shared/InvalidIcon.js.map +1 -0
  651. package/dist/components/shared/ValidIcon.js +13 -0
  652. package/dist/components/shared/ValidIcon.js.map +1 -0
  653. package/dist/components/status/LoadingAnimation/LoadingAnimation.d.ts +15 -0
  654. package/dist/components/status/LoadingAnimation/LoadingAnimation.js +119 -0
  655. package/dist/components/status/LoadingAnimation/LoadingAnimation.js.map +1 -0
  656. package/dist/components/status/LoadingAnimation/index.d.ts +2 -0
  657. package/dist/components/status/Spin/Cube.js +104 -0
  658. package/dist/components/status/Spin/Cube.js.map +1 -0
  659. package/dist/components/status/Spin/InternalSpinner.js +32 -0
  660. package/dist/components/status/Spin/InternalSpinner.js.map +1 -0
  661. package/dist/components/status/Spin/Spin.d.ts +9 -0
  662. package/dist/components/status/Spin/Spin.js +20 -0
  663. package/dist/components/status/Spin/Spin.js.map +1 -0
  664. package/dist/components/status/Spin/SpinsContainer.js +32 -0
  665. package/dist/components/status/Spin/SpinsContainer.js.map +1 -0
  666. package/dist/components/status/Spin/index.d.ts +3 -0
  667. package/dist/components/status/Spin/types.d.ts +24 -0
  668. package/dist/components/status/index.d.ts +6 -0
  669. package/dist/config.js +232 -0
  670. package/dist/config.js.map +1 -0
  671. package/dist/css-writer.d.ts +46 -0
  672. package/dist/css-writer.js +75 -0
  673. package/dist/css-writer.js.map +1 -0
  674. package/dist/data/item-themes.d.ts +8 -0
  675. package/dist/data/item-themes.js +816 -0
  676. package/dist/data/item-themes.js.map +1 -0
  677. package/dist/data/themes.d.ts +37 -0
  678. package/dist/data/themes.js +38 -0
  679. package/dist/data/themes.js.map +1 -0
  680. package/dist/extractor.d.ts +25 -0
  681. package/dist/extractor.js +151 -0
  682. package/dist/extractor.js.map +1 -0
  683. package/dist/icons/AdjustmentsHorizontalIcon.d.ts +12 -0
  684. package/dist/icons/AdjustmentsHorizontalIcon.js +23 -0
  685. package/dist/icons/AdjustmentsHorizontalIcon.js.map +1 -0
  686. package/dist/icons/AdjustmentsIcon.d.ts +12 -0
  687. package/dist/icons/AdjustmentsIcon.js +23 -0
  688. package/dist/icons/AdjustmentsIcon.js.map +1 -0
  689. package/dist/icons/AiIcon.d.ts +12 -0
  690. package/dist/icons/AiIcon.js +11 -0
  691. package/dist/icons/AiIcon.js.map +1 -0
  692. package/dist/icons/AreaChartIcon.d.ts +12 -0
  693. package/dist/icons/AreaChartIcon.js +11 -0
  694. package/dist/icons/AreaChartIcon.js.map +1 -0
  695. package/dist/icons/BackwardIcon.d.ts +12 -0
  696. package/dist/icons/BackwardIcon.js +11 -0
  697. package/dist/icons/BackwardIcon.js.map +1 -0
  698. package/dist/icons/BarChartIcon.d.ts +12 -0
  699. package/dist/icons/BarChartIcon.js +11 -0
  700. package/dist/icons/BarChartIcon.js.map +1 -0
  701. package/dist/icons/BellFilledIcon.d.ts +12 -0
  702. package/dist/icons/BellFilledIcon.js +11 -0
  703. package/dist/icons/BellFilledIcon.js.map +1 -0
  704. package/dist/icons/BellIcon.d.ts +12 -0
  705. package/dist/icons/BellIcon.js +11 -0
  706. package/dist/icons/BellIcon.js.map +1 -0
  707. package/dist/icons/BooleanIcon.d.ts +12 -0
  708. package/dist/icons/BooleanIcon.js +23 -0
  709. package/dist/icons/BooleanIcon.js.map +1 -0
  710. package/dist/icons/CalendarEditIcon.d.ts +12 -0
  711. package/dist/icons/CalendarEditIcon.js +23 -0
  712. package/dist/icons/CalendarEditIcon.js.map +1 -0
  713. package/dist/icons/CalendarIcon.d.ts +12 -0
  714. package/dist/icons/CalendarIcon.js +23 -0
  715. package/dist/icons/CalendarIcon.js.map +1 -0
  716. package/dist/icons/CaretDownIcon.d.ts +12 -0
  717. package/dist/icons/CaretDownIcon.js +11 -0
  718. package/dist/icons/CaretDownIcon.js.map +1 -0
  719. package/dist/icons/CaretUpIcon.d.ts +12 -0
  720. package/dist/icons/CaretUpIcon.js +11 -0
  721. package/dist/icons/CaretUpIcon.js.map +1 -0
  722. package/dist/icons/ChartAreaStackedIcon.d.ts +12 -0
  723. package/dist/icons/ChartAreaStackedIcon.js +23 -0
  724. package/dist/icons/ChartAreaStackedIcon.js.map +1 -0
  725. package/dist/icons/ChartAreaStackedPercentageIcon.d.ts +12 -0
  726. package/dist/icons/ChartAreaStackedPercentageIcon.js +23 -0
  727. package/dist/icons/ChartAreaStackedPercentageIcon.js.map +1 -0
  728. package/dist/icons/ChartBarGroupedHorizontalIcon.d.ts +12 -0
  729. package/dist/icons/ChartBarGroupedHorizontalIcon.js +23 -0
  730. package/dist/icons/ChartBarGroupedHorizontalIcon.js.map +1 -0
  731. package/dist/icons/ChartBarGroupedIcon.d.ts +12 -0
  732. package/dist/icons/ChartBarGroupedIcon.js +23 -0
  733. package/dist/icons/ChartBarGroupedIcon.js.map +1 -0
  734. package/dist/icons/ChartBarHorizontalIcon.d.ts +12 -0
  735. package/dist/icons/ChartBarHorizontalIcon.js +23 -0
  736. package/dist/icons/ChartBarHorizontalIcon.js.map +1 -0
  737. package/dist/icons/ChartBarLineIcon.d.ts +12 -0
  738. package/dist/icons/ChartBarLineIcon.js +23 -0
  739. package/dist/icons/ChartBarLineIcon.js.map +1 -0
  740. package/dist/icons/ChartBarStackedHorizontalIcon.d.ts +12 -0
  741. package/dist/icons/ChartBarStackedHorizontalIcon.js +23 -0
  742. package/dist/icons/ChartBarStackedHorizontalIcon.js.map +1 -0
  743. package/dist/icons/ChartBarStackedIcon.d.ts +12 -0
  744. package/dist/icons/ChartBarStackedIcon.js +23 -0
  745. package/dist/icons/ChartBarStackedIcon.js.map +1 -0
  746. package/dist/icons/ChartBarStackedPercentageHorizontalIcon.d.ts +12 -0
  747. package/dist/icons/ChartBarStackedPercentageHorizontalIcon.js +23 -0
  748. package/dist/icons/ChartBarStackedPercentageHorizontalIcon.js.map +1 -0
  749. package/dist/icons/ChartBarStackedPercentageIcon.d.ts +12 -0
  750. package/dist/icons/ChartBarStackedPercentageIcon.js +23 -0
  751. package/dist/icons/ChartBarStackedPercentageIcon.js.map +1 -0
  752. package/dist/icons/ChartBoxPlot2Icon.d.ts +12 -0
  753. package/dist/icons/ChartBoxPlot2Icon.js +23 -0
  754. package/dist/icons/ChartBoxPlot2Icon.js.map +1 -0
  755. package/dist/icons/ChartBoxPlotIcon.d.ts +12 -0
  756. package/dist/icons/ChartBoxPlotIcon.js +23 -0
  757. package/dist/icons/ChartBoxPlotIcon.js.map +1 -0
  758. package/dist/icons/ChartBubbleIcon.d.ts +12 -0
  759. package/dist/icons/ChartBubbleIcon.js +23 -0
  760. package/dist/icons/ChartBubbleIcon.js.map +1 -0
  761. package/dist/icons/ChartDonut2Icon.d.ts +12 -0
  762. package/dist/icons/ChartDonut2Icon.js +23 -0
  763. package/dist/icons/ChartDonut2Icon.js.map +1 -0
  764. package/dist/icons/ChartFunnelIcon.d.ts +12 -0
  765. package/dist/icons/ChartFunnelIcon.js +23 -0
  766. package/dist/icons/ChartFunnelIcon.js.map +1 -0
  767. package/dist/icons/ChartHeatmapIcon.d.ts +12 -0
  768. package/dist/icons/ChartHeatmapIcon.js +69 -0
  769. package/dist/icons/ChartHeatmapIcon.js.map +1 -0
  770. package/dist/icons/ChartKPIIcon.d.ts +12 -0
  771. package/dist/icons/ChartKPIIcon.js +23 -0
  772. package/dist/icons/ChartKPIIcon.js.map +1 -0
  773. package/dist/icons/ChartPie2Icon.d.ts +12 -0
  774. package/dist/icons/ChartPie2Icon.js +23 -0
  775. package/dist/icons/ChartPie2Icon.js.map +1 -0
  776. package/dist/icons/ChartScatterIcon.d.ts +12 -0
  777. package/dist/icons/ChartScatterIcon.js +23 -0
  778. package/dist/icons/ChartScatterIcon.js.map +1 -0
  779. package/dist/icons/CheckCircleFilledIcon.d.ts +12 -0
  780. package/dist/icons/CheckCircleFilledIcon.js +11 -0
  781. package/dist/icons/CheckCircleFilledIcon.js.map +1 -0
  782. package/dist/icons/CheckCircleIcon.d.ts +12 -0
  783. package/dist/icons/CheckCircleIcon.js +11 -0
  784. package/dist/icons/CheckCircleIcon.js.map +1 -0
  785. package/dist/icons/CheckIcon.d.ts +12 -0
  786. package/dist/icons/CheckIcon.js +11 -0
  787. package/dist/icons/CheckIcon.js.map +1 -0
  788. package/dist/icons/CircleFilledIcon.d.ts +12 -0
  789. package/dist/icons/CircleFilledIcon.js +11 -0
  790. package/dist/icons/CircleFilledIcon.js.map +1 -0
  791. package/dist/icons/ClearIcon.d.ts +12 -0
  792. package/dist/icons/ClearIcon.js +23 -0
  793. package/dist/icons/ClearIcon.js.map +1 -0
  794. package/dist/icons/CloseCircleFilledIcon.d.ts +12 -0
  795. package/dist/icons/CloseCircleFilledIcon.js +11 -0
  796. package/dist/icons/CloseCircleFilledIcon.js.map +1 -0
  797. package/dist/icons/CloseCircleIcon.d.ts +12 -0
  798. package/dist/icons/CloseCircleIcon.js +11 -0
  799. package/dist/icons/CloseCircleIcon.js.map +1 -0
  800. package/dist/icons/CloseIcon.d.ts +12 -0
  801. package/dist/icons/CloseIcon.js +11 -0
  802. package/dist/icons/CloseIcon.js.map +1 -0
  803. package/dist/icons/CodeIcon.d.ts +12 -0
  804. package/dist/icons/CodeIcon.js +11 -0
  805. package/dist/icons/CodeIcon.js.map +1 -0
  806. package/dist/icons/ColumnTotalIcon.d.ts +12 -0
  807. package/dist/icons/ColumnTotalIcon.js +27 -0
  808. package/dist/icons/ColumnTotalIcon.js.map +1 -0
  809. package/dist/icons/CopyIcon.d.ts +12 -0
  810. package/dist/icons/CopyIcon.js +11 -0
  811. package/dist/icons/CopyIcon.js.map +1 -0
  812. package/dist/icons/CountIcon.d.ts +12 -0
  813. package/dist/icons/CountIcon.js +23 -0
  814. package/dist/icons/CountIcon.js.map +1 -0
  815. package/dist/icons/CubeIcon.d.ts +12 -0
  816. package/dist/icons/CubeIcon.js +23 -0
  817. package/dist/icons/CubeIcon.js.map +1 -0
  818. package/dist/icons/CubePauseIcon.d.ts +12 -0
  819. package/dist/icons/CubePauseIcon.js +23 -0
  820. package/dist/icons/CubePauseIcon.js.map +1 -0
  821. package/dist/icons/CubePlayIcon.d.ts +12 -0
  822. package/dist/icons/CubePlayIcon.js +23 -0
  823. package/dist/icons/CubePlayIcon.js.map +1 -0
  824. package/dist/icons/CurrencyDollarIcon.d.ts +12 -0
  825. package/dist/icons/CurrencyDollarIcon.js +23 -0
  826. package/dist/icons/CurrencyDollarIcon.js.map +1 -0
  827. package/dist/icons/DangerIcon.d.ts +12 -0
  828. package/dist/icons/DangerIcon.js +11 -0
  829. package/dist/icons/DangerIcon.js.map +1 -0
  830. package/dist/icons/DashboardIcon.d.ts +12 -0
  831. package/dist/icons/DashboardIcon.js +11 -0
  832. package/dist/icons/DashboardIcon.js.map +1 -0
  833. package/dist/icons/DatabaseIcon.d.ts +12 -0
  834. package/dist/icons/DatabaseIcon.js +11 -0
  835. package/dist/icons/DatabaseIcon.js.map +1 -0
  836. package/dist/icons/DecimalDecreaseIcon.d.ts +12 -0
  837. package/dist/icons/DecimalDecreaseIcon.js +23 -0
  838. package/dist/icons/DecimalDecreaseIcon.js.map +1 -0
  839. package/dist/icons/DecimalIncreaseIcon.d.ts +12 -0
  840. package/dist/icons/DecimalIncreaseIcon.js +23 -0
  841. package/dist/icons/DecimalIncreaseIcon.js.map +1 -0
  842. package/dist/icons/DirectionIcon.d.ts +17 -0
  843. package/dist/icons/DirectionIcon.js +58 -0
  844. package/dist/icons/DirectionIcon.js.map +1 -0
  845. package/dist/icons/DonutIcon.d.ts +12 -0
  846. package/dist/icons/DonutIcon.js +11 -0
  847. package/dist/icons/DonutIcon.js.map +1 -0
  848. package/dist/icons/DownIcon.d.ts +12 -0
  849. package/dist/icons/DownIcon.js +11 -0
  850. package/dist/icons/DownIcon.js.map +1 -0
  851. package/dist/icons/EditIcon.d.ts +12 -0
  852. package/dist/icons/EditIcon.js +11 -0
  853. package/dist/icons/EditIcon.js.map +1 -0
  854. package/dist/icons/ExclamationCircleFilledIcon.d.ts +12 -0
  855. package/dist/icons/ExclamationCircleFilledIcon.js +11 -0
  856. package/dist/icons/ExclamationCircleFilledIcon.js.map +1 -0
  857. package/dist/icons/ExclamationCircleIcon.d.ts +12 -0
  858. package/dist/icons/ExclamationCircleIcon.js +11 -0
  859. package/dist/icons/ExclamationCircleIcon.js.map +1 -0
  860. package/dist/icons/ExclamationIcon.d.ts +12 -0
  861. package/dist/icons/ExclamationIcon.js +11 -0
  862. package/dist/icons/ExclamationIcon.js.map +1 -0
  863. package/dist/icons/EyeIcon.d.ts +12 -0
  864. package/dist/icons/EyeIcon.js +11 -0
  865. package/dist/icons/EyeIcon.js.map +1 -0
  866. package/dist/icons/EyeInvisibleIcon.d.ts +12 -0
  867. package/dist/icons/EyeInvisibleIcon.js +11 -0
  868. package/dist/icons/EyeInvisibleIcon.js.map +1 -0
  869. package/dist/icons/FilterIcon.d.ts +12 -0
  870. package/dist/icons/FilterIcon.js +11 -0
  871. package/dist/icons/FilterIcon.js.map +1 -0
  872. package/dist/icons/FolderFilledIcon.d.ts +12 -0
  873. package/dist/icons/FolderFilledIcon.js +20 -0
  874. package/dist/icons/FolderFilledIcon.js.map +1 -0
  875. package/dist/icons/FolderIcon.d.ts +12 -0
  876. package/dist/icons/FolderIcon.js +32 -0
  877. package/dist/icons/FolderIcon.js.map +1 -0
  878. package/dist/icons/FolderOpenFilledIcon.d.ts +12 -0
  879. package/dist/icons/FolderOpenFilledIcon.js +20 -0
  880. package/dist/icons/FolderOpenFilledIcon.js.map +1 -0
  881. package/dist/icons/FolderOpenIcon.d.ts +12 -0
  882. package/dist/icons/FolderOpenIcon.js +23 -0
  883. package/dist/icons/FolderOpenIcon.js.map +1 -0
  884. package/dist/icons/ForwardIcon.d.ts +12 -0
  885. package/dist/icons/ForwardIcon.js +11 -0
  886. package/dist/icons/ForwardIcon.js.map +1 -0
  887. package/dist/icons/HierarchyIcon.d.ts +12 -0
  888. package/dist/icons/HierarchyIcon.js +23 -0
  889. package/dist/icons/HierarchyIcon.js.map +1 -0
  890. package/dist/icons/HierarchyOpenIcon.d.ts +12 -0
  891. package/dist/icons/HierarchyOpenIcon.js +20 -0
  892. package/dist/icons/HierarchyOpenIcon.js.map +1 -0
  893. package/dist/icons/Icon.d.ts +18 -0
  894. package/dist/icons/Icon.js +56 -0
  895. package/dist/icons/Icon.js.map +1 -0
  896. package/dist/icons/InfoCircleIcon.d.ts +12 -0
  897. package/dist/icons/InfoCircleIcon.js +11 -0
  898. package/dist/icons/InfoCircleIcon.js.map +1 -0
  899. package/dist/icons/InfoIcon.d.ts +12 -0
  900. package/dist/icons/InfoIcon.js +11 -0
  901. package/dist/icons/InfoIcon.js.map +1 -0
  902. package/dist/icons/KeyIcon.d.ts +12 -0
  903. package/dist/icons/KeyIcon.js +11 -0
  904. package/dist/icons/KeyIcon.js.map +1 -0
  905. package/dist/icons/LeftIcon.d.ts +12 -0
  906. package/dist/icons/LeftIcon.js +11 -0
  907. package/dist/icons/LeftIcon.js.map +1 -0
  908. package/dist/icons/LineChartIcon.d.ts +12 -0
  909. package/dist/icons/LineChartIcon.js +11 -0
  910. package/dist/icons/LineChartIcon.js.map +1 -0
  911. package/dist/icons/LoadingIcon.d.ts +12 -0
  912. package/dist/icons/LoadingIcon.js +33 -0
  913. package/dist/icons/LoadingIcon.js.map +1 -0
  914. package/dist/icons/LockFilledIcon.d.ts +12 -0
  915. package/dist/icons/LockFilledIcon.js +11 -0
  916. package/dist/icons/LockFilledIcon.js.map +1 -0
  917. package/dist/icons/LockIcon.d.ts +12 -0
  918. package/dist/icons/LockIcon.js +11 -0
  919. package/dist/icons/LockIcon.js.map +1 -0
  920. package/dist/icons/MoreIcon.d.ts +12 -0
  921. package/dist/icons/MoreIcon.js +11 -0
  922. package/dist/icons/MoreIcon.js.map +1 -0
  923. package/dist/icons/NotAllowedIcon.d.ts +12 -0
  924. package/dist/icons/NotAllowedIcon.js +11 -0
  925. package/dist/icons/NotAllowedIcon.js.map +1 -0
  926. package/dist/icons/Number123Icon.d.ts +12 -0
  927. package/dist/icons/Number123Icon.js +23 -0
  928. package/dist/icons/Number123Icon.js.map +1 -0
  929. package/dist/icons/NumberIcon.d.ts +12 -0
  930. package/dist/icons/NumberIcon.js +11 -0
  931. package/dist/icons/NumberIcon.js.map +1 -0
  932. package/dist/icons/PauseCircleFilledIcon.d.ts +12 -0
  933. package/dist/icons/PauseCircleFilledIcon.js +20 -0
  934. package/dist/icons/PauseCircleFilledIcon.js.map +1 -0
  935. package/dist/icons/PauseCircleIcon.d.ts +12 -0
  936. package/dist/icons/PauseCircleIcon.js +23 -0
  937. package/dist/icons/PauseCircleIcon.js.map +1 -0
  938. package/dist/icons/PauseIcon.d.ts +12 -0
  939. package/dist/icons/PauseIcon.js +11 -0
  940. package/dist/icons/PauseIcon.js.map +1 -0
  941. package/dist/icons/PercentageIcon.d.ts +12 -0
  942. package/dist/icons/PercentageIcon.js +23 -0
  943. package/dist/icons/PercentageIcon.js.map +1 -0
  944. package/dist/icons/PieChartIcon.d.ts +12 -0
  945. package/dist/icons/PieChartIcon.js +11 -0
  946. package/dist/icons/PieChartIcon.js.map +1 -0
  947. package/dist/icons/PlayCircleIcon.d.ts +12 -0
  948. package/dist/icons/PlayCircleIcon.js +11 -0
  949. package/dist/icons/PlayCircleIcon.js.map +1 -0
  950. package/dist/icons/PlayIcon.d.ts +12 -0
  951. package/dist/icons/PlayIcon.js +11 -0
  952. package/dist/icons/PlayIcon.js.map +1 -0
  953. package/dist/icons/PlusIcon.d.ts +12 -0
  954. package/dist/icons/PlusIcon.js +11 -0
  955. package/dist/icons/PlusIcon.js.map +1 -0
  956. package/dist/icons/ProgressBarIcon.d.ts +12 -0
  957. package/dist/icons/ProgressBarIcon.js +23 -0
  958. package/dist/icons/ProgressBarIcon.js.map +1 -0
  959. package/dist/icons/ReloadIcon.d.ts +12 -0
  960. package/dist/icons/ReloadIcon.js +11 -0
  961. package/dist/icons/ReloadIcon.js.map +1 -0
  962. package/dist/icons/ReportIcon.d.ts +12 -0
  963. package/dist/icons/ReportIcon.js +11 -0
  964. package/dist/icons/ReportIcon.js.map +1 -0
  965. package/dist/icons/ReturnIcon.d.ts +12 -0
  966. package/dist/icons/ReturnIcon.js +11 -0
  967. package/dist/icons/ReturnIcon.js.map +1 -0
  968. package/dist/icons/RightIcon.d.ts +12 -0
  969. package/dist/icons/RightIcon.js +11 -0
  970. package/dist/icons/RightIcon.js.map +1 -0
  971. package/dist/icons/RowTotalsIcon.d.ts +12 -0
  972. package/dist/icons/RowTotalsIcon.js +27 -0
  973. package/dist/icons/RowTotalsIcon.js.map +1 -0
  974. package/dist/icons/SchemeIcon.d.ts +12 -0
  975. package/dist/icons/SchemeIcon.js +11 -0
  976. package/dist/icons/SchemeIcon.js.map +1 -0
  977. package/dist/icons/SearchIcon.d.ts +12 -0
  978. package/dist/icons/SearchIcon.js +11 -0
  979. package/dist/icons/SearchIcon.js.map +1 -0
  980. package/dist/icons/SemanticQueryIcon.d.ts +12 -0
  981. package/dist/icons/SemanticQueryIcon.js +32 -0
  982. package/dist/icons/SemanticQueryIcon.js.map +1 -0
  983. package/dist/icons/SettingsIcon.d.ts +12 -0
  984. package/dist/icons/SettingsIcon.js +11 -0
  985. package/dist/icons/SettingsIcon.js.map +1 -0
  986. package/dist/icons/ShieldFilledIcon.d.ts +12 -0
  987. package/dist/icons/ShieldFilledIcon.js +11 -0
  988. package/dist/icons/ShieldFilledIcon.js.map +1 -0
  989. package/dist/icons/ShieldIcon.d.ts +12 -0
  990. package/dist/icons/ShieldIcon.js +11 -0
  991. package/dist/icons/ShieldIcon.js.map +1 -0
  992. package/dist/icons/SlashIcon.d.ts +12 -0
  993. package/dist/icons/SlashIcon.js +11 -0
  994. package/dist/icons/SlashIcon.js.map +1 -0
  995. package/dist/icons/SparklesIcon.d.ts +12 -0
  996. package/dist/icons/SparklesIcon.js +11 -0
  997. package/dist/icons/SparklesIcon.js.map +1 -0
  998. package/dist/icons/SqlIcon.d.ts +12 -0
  999. package/dist/icons/SqlIcon.js +11 -0
  1000. package/dist/icons/SqlIcon.js.map +1 -0
  1001. package/dist/icons/StatsIcon.d.ts +12 -0
  1002. package/dist/icons/StatsIcon.js +23 -0
  1003. package/dist/icons/StatsIcon.js.map +1 -0
  1004. package/dist/icons/StopIcon.d.ts +12 -0
  1005. package/dist/icons/StopIcon.js +11 -0
  1006. package/dist/icons/StopIcon.js.map +1 -0
  1007. package/dist/icons/StringIcon.d.ts +12 -0
  1008. package/dist/icons/StringIcon.js +30 -0
  1009. package/dist/icons/StringIcon.js.map +1 -0
  1010. package/dist/icons/SubtotalsIcon.d.ts +12 -0
  1011. package/dist/icons/SubtotalsIcon.js +27 -0
  1012. package/dist/icons/SubtotalsIcon.js.map +1 -0
  1013. package/dist/icons/SwitchIcon.d.ts +12 -0
  1014. package/dist/icons/SwitchIcon.js +11 -0
  1015. package/dist/icons/SwitchIcon.js.map +1 -0
  1016. package/dist/icons/TableIcon.d.ts +12 -0
  1017. package/dist/icons/TableIcon.js +11 -0
  1018. package/dist/icons/TableIcon.js.map +1 -0
  1019. package/dist/icons/ThumbsDownIcon.d.ts +12 -0
  1020. package/dist/icons/ThumbsDownIcon.js +11 -0
  1021. package/dist/icons/ThumbsDownIcon.js.map +1 -0
  1022. package/dist/icons/ThumbsUpIcon.d.ts +12 -0
  1023. package/dist/icons/ThumbsUpIcon.js +11 -0
  1024. package/dist/icons/ThumbsUpIcon.js.map +1 -0
  1025. package/dist/icons/ThunderboltCrossedIcon.d.ts +12 -0
  1026. package/dist/icons/ThunderboltCrossedIcon.js +11 -0
  1027. package/dist/icons/ThunderboltCrossedIcon.js.map +1 -0
  1028. package/dist/icons/ThunderboltFilledIcon.d.ts +12 -0
  1029. package/dist/icons/ThunderboltFilledIcon.js +11 -0
  1030. package/dist/icons/ThunderboltFilledIcon.js.map +1 -0
  1031. package/dist/icons/ThunderboltIcon.d.ts +12 -0
  1032. package/dist/icons/ThunderboltIcon.js +11 -0
  1033. package/dist/icons/ThunderboltIcon.js.map +1 -0
  1034. package/dist/icons/TimeIcon.d.ts +12 -0
  1035. package/dist/icons/TimeIcon.js +11 -0
  1036. package/dist/icons/TimeIcon.js.map +1 -0
  1037. package/dist/icons/TrashIcon.d.ts +12 -0
  1038. package/dist/icons/TrashIcon.js +11 -0
  1039. package/dist/icons/TrashIcon.js.map +1 -0
  1040. package/dist/icons/UnlockIcon.d.ts +12 -0
  1041. package/dist/icons/UnlockIcon.js +11 -0
  1042. package/dist/icons/UnlockIcon.js.map +1 -0
  1043. package/dist/icons/UpIcon.d.ts +12 -0
  1044. package/dist/icons/UpIcon.js +11 -0
  1045. package/dist/icons/UpIcon.js.map +1 -0
  1046. package/dist/icons/UserGroupIcon.d.ts +12 -0
  1047. package/dist/icons/UserGroupIcon.js +30 -0
  1048. package/dist/icons/UserGroupIcon.js.map +1 -0
  1049. package/dist/icons/UserIcon.d.ts +12 -0
  1050. package/dist/icons/UserIcon.js +30 -0
  1051. package/dist/icons/UserIcon.js.map +1 -0
  1052. package/dist/icons/UserLockIcon.d.ts +12 -0
  1053. package/dist/icons/UserLockIcon.js +23 -0
  1054. package/dist/icons/UserLockIcon.js.map +1 -0
  1055. package/dist/icons/ViewIcon.d.ts +12 -0
  1056. package/dist/icons/ViewIcon.js +23 -0
  1057. package/dist/icons/ViewIcon.js.map +1 -0
  1058. package/dist/icons/WarningFilledIcon.d.ts +12 -0
  1059. package/dist/icons/WarningFilledIcon.js +11 -0
  1060. package/dist/icons/WarningFilledIcon.js.map +1 -0
  1061. package/dist/icons/WarningIcon.d.ts +12 -0
  1062. package/dist/icons/WarningIcon.js +11 -0
  1063. package/dist/icons/WarningIcon.js.map +1 -0
  1064. package/dist/icons/index.d.ts +129 -0
  1065. package/dist/icons/wrap-icon.d.ts +13 -0
  1066. package/dist/icons/wrap-icon.js +21 -0
  1067. package/dist/icons/wrap-icon.js.map +1 -0
  1068. package/dist/index.d.ts +388 -0
  1069. package/dist/index.js +342 -0
  1070. package/dist/index.js.map +1 -0
  1071. package/dist/injector/injector.js +401 -0
  1072. package/dist/injector/injector.js.map +1 -0
  1073. package/dist/injector/sheet-manager.js +715 -0
  1074. package/dist/injector/sheet-manager.js.map +1 -0
  1075. package/dist/injector/types.d.ts +19 -0
  1076. package/dist/keyframes/index.js +157 -0
  1077. package/dist/keyframes/index.js.map +1 -0
  1078. package/dist/node_modules/.pnpm/csstype@3.1.2/node_modules/csstype/index.d.ts +629 -0
  1079. package/dist/parser/classify.js +325 -0
  1080. package/dist/parser/classify.js.map +1 -0
  1081. package/dist/parser/const.js +34 -0
  1082. package/dist/parser/const.js.map +1 -0
  1083. package/dist/parser/lru.js +110 -0
  1084. package/dist/parser/lru.js.map +1 -0
  1085. package/dist/parser/parser.js +117 -0
  1086. package/dist/parser/parser.js.map +1 -0
  1087. package/dist/parser/tokenizer.js +70 -0
  1088. package/dist/parser/tokenizer.js.map +1 -0
  1089. package/dist/parser/types.d.ts +38 -0
  1090. package/dist/parser/types.js +47 -0
  1091. package/dist/parser/types.js.map +1 -0
  1092. package/dist/pipeline/conditions.js +378 -0
  1093. package/dist/pipeline/conditions.js.map +1 -0
  1094. package/dist/pipeline/exclusive.js +232 -0
  1095. package/dist/pipeline/exclusive.js.map +1 -0
  1096. package/dist/pipeline/index.js +633 -0
  1097. package/dist/pipeline/index.js.map +1 -0
  1098. package/dist/pipeline/materialize.js +822 -0
  1099. package/dist/pipeline/materialize.js.map +1 -0
  1100. package/dist/pipeline/parseStateKey.js +422 -0
  1101. package/dist/pipeline/parseStateKey.js.map +1 -0
  1102. package/dist/pipeline/simplify.js +558 -0
  1103. package/dist/pipeline/simplify.js.map +1 -0
  1104. package/dist/plugins/okhsl-plugin.js +344 -0
  1105. package/dist/plugins/okhsl-plugin.js.map +1 -0
  1106. package/dist/plugins/types.d.ts +52 -0
  1107. package/dist/properties/index.js +142 -0
  1108. package/dist/properties/index.js.map +1 -0
  1109. package/dist/provider.d.ts +23 -0
  1110. package/dist/provider.js +53 -0
  1111. package/dist/provider.js.map +1 -0
  1112. package/dist/providers/TrackingProvider.d.ts +11 -0
  1113. package/dist/providers/TrackingProvider.js +21 -0
  1114. package/dist/providers/TrackingProvider.js.map +1 -0
  1115. package/dist/providers/navigation.types.d.ts +29 -0
  1116. package/dist/providers/navigationAdapter.default.d.ts +12 -0
  1117. package/dist/providers/navigationAdapter.default.js +38 -0
  1118. package/dist/providers/navigationAdapter.default.js.map +1 -0
  1119. package/dist/shared/form.d.ts +114 -0
  1120. package/dist/shared/index.d.ts +10 -0
  1121. package/dist/states/index.js +162 -0
  1122. package/dist/states/index.js.map +1 -0
  1123. package/dist/styles/align.js +15 -0
  1124. package/dist/styles/align.js.map +1 -0
  1125. package/dist/styles/border.js +115 -0
  1126. package/dist/styles/border.js.map +1 -0
  1127. package/dist/styles/color.js +24 -0
  1128. package/dist/styles/color.js.map +1 -0
  1129. package/dist/styles/createStyle.js +78 -0
  1130. package/dist/styles/createStyle.js.map +1 -0
  1131. package/dist/styles/dimension.js +100 -0
  1132. package/dist/styles/dimension.js.map +1 -0
  1133. package/dist/styles/display.js +68 -0
  1134. package/dist/styles/display.js.map +1 -0
  1135. package/dist/styles/fade.js +58 -0
  1136. package/dist/styles/fade.js.map +1 -0
  1137. package/dist/styles/fill.js +52 -0
  1138. package/dist/styles/fill.js.map +1 -0
  1139. package/dist/styles/flow.js +13 -0
  1140. package/dist/styles/flow.js.map +1 -0
  1141. package/dist/styles/gap.js +37 -0
  1142. package/dist/styles/gap.js.map +1 -0
  1143. package/dist/styles/height.js +21 -0
  1144. package/dist/styles/height.js.map +1 -0
  1145. package/dist/styles/index.js +10 -0
  1146. package/dist/styles/index.js.map +1 -0
  1147. package/dist/styles/inset.js +143 -0
  1148. package/dist/styles/inset.js.map +1 -0
  1149. package/dist/styles/justify.js +15 -0
  1150. package/dist/styles/justify.js.map +1 -0
  1151. package/dist/styles/margin.js +97 -0
  1152. package/dist/styles/margin.js.map +1 -0
  1153. package/dist/styles/outline.js +66 -0
  1154. package/dist/styles/outline.js.map +1 -0
  1155. package/dist/styles/padding.js +97 -0
  1156. package/dist/styles/padding.js.map +1 -0
  1157. package/dist/styles/predefined.js +233 -0
  1158. package/dist/styles/predefined.js.map +1 -0
  1159. package/dist/styles/preset.js +126 -0
  1160. package/dist/styles/preset.js.map +1 -0
  1161. package/dist/styles/radius.js +52 -0
  1162. package/dist/styles/radius.js.map +1 -0
  1163. package/dist/styles/scrollbar.js +109 -0
  1164. package/dist/styles/scrollbar.js.map +1 -0
  1165. package/dist/styles/shadow.js +28 -0
  1166. package/dist/styles/shadow.js.map +1 -0
  1167. package/dist/styles/styledScrollbar.js +39 -0
  1168. package/dist/styles/styledScrollbar.js.map +1 -0
  1169. package/dist/styles/transition.js +139 -0
  1170. package/dist/styles/transition.js.map +1 -0
  1171. package/dist/styles/types.d.ts +495 -0
  1172. package/dist/styles/width.js +21 -0
  1173. package/dist/styles/width.js.map +1 -0
  1174. package/dist/tasty/chunks/cacheKey.js +71 -0
  1175. package/dist/tasty/chunks/cacheKey.js.map +1 -0
  1176. package/dist/tasty/chunks/definitions.d.ts +38 -0
  1177. package/dist/tasty/chunks/definitions.js +261 -0
  1178. package/dist/tasty/chunks/definitions.js.map +1 -0
  1179. package/dist/tasty/chunks/renderChunk.js +68 -0
  1180. package/dist/tasty/chunks/renderChunk.js.map +1 -0
  1181. package/dist/tasty/config.d.ts +283 -0
  1182. package/dist/tasty/config.js +401 -0
  1183. package/dist/tasty/config.js.map +1 -0
  1184. package/dist/tasty/debug.d.ts +200 -0
  1185. package/dist/tasty/debug.js +734 -0
  1186. package/dist/tasty/debug.js.map +1 -0
  1187. package/dist/tasty/hooks/useGlobalStyles.d.ts +28 -0
  1188. package/dist/tasty/hooks/useGlobalStyles.js +57 -0
  1189. package/dist/tasty/hooks/useGlobalStyles.js.map +1 -0
  1190. package/dist/tasty/hooks/useKeyframes.d.ts +57 -0
  1191. package/dist/tasty/hooks/useKeyframes.js +55 -0
  1192. package/dist/tasty/hooks/useKeyframes.js.map +1 -0
  1193. package/dist/tasty/hooks/useProperty.d.ts +80 -0
  1194. package/dist/tasty/hooks/useProperty.js +92 -0
  1195. package/dist/tasty/hooks/useProperty.js.map +1 -0
  1196. package/dist/tasty/hooks/useRawCSS.d.ts +54 -0
  1197. package/dist/tasty/hooks/useRawCSS.js +29 -0
  1198. package/dist/tasty/hooks/useRawCSS.js.map +1 -0
  1199. package/dist/tasty/hooks/useStyles.d.ts +41 -0
  1200. package/dist/tasty/hooks/useStyles.js +170 -0
  1201. package/dist/tasty/hooks/useStyles.js.map +1 -0
  1202. package/dist/tasty/index.d.ts +35 -0
  1203. package/dist/tasty/injector/index.d.ts +158 -0
  1204. package/dist/tasty/injector/index.js +155 -0
  1205. package/dist/tasty/injector/index.js.map +1 -0
  1206. package/dist/tasty/injector/injector.d.ts +137 -0
  1207. package/dist/tasty/injector/injector.js +401 -0
  1208. package/dist/tasty/injector/injector.js.map +1 -0
  1209. package/dist/tasty/injector/sheet-manager.d.ts +128 -0
  1210. package/dist/tasty/injector/sheet-manager.js +715 -0
  1211. package/dist/tasty/injector/sheet-manager.js.map +1 -0
  1212. package/dist/tasty/injector/types.d.ts +136 -0
  1213. package/dist/tasty/keyframes/index.js +207 -0
  1214. package/dist/tasty/keyframes/index.js.map +1 -0
  1215. package/dist/tasty/parser/classify.js +325 -0
  1216. package/dist/tasty/parser/classify.js.map +1 -0
  1217. package/dist/tasty/parser/const.js +34 -0
  1218. package/dist/tasty/parser/const.js.map +1 -0
  1219. package/dist/tasty/parser/lru.js +110 -0
  1220. package/dist/tasty/parser/lru.js.map +1 -0
  1221. package/dist/tasty/parser/parser.d.ts +26 -0
  1222. package/dist/tasty/parser/parser.js +117 -0
  1223. package/dist/tasty/parser/parser.js.map +1 -0
  1224. package/dist/tasty/parser/tokenizer.js +70 -0
  1225. package/dist/tasty/parser/tokenizer.js.map +1 -0
  1226. package/dist/tasty/parser/types.d.ts +47 -0
  1227. package/dist/tasty/parser/types.js +47 -0
  1228. package/dist/tasty/parser/types.js.map +1 -0
  1229. package/dist/tasty/pipeline/conditions.js +378 -0
  1230. package/dist/tasty/pipeline/conditions.js.map +1 -0
  1231. package/dist/tasty/pipeline/exclusive.js +232 -0
  1232. package/dist/tasty/pipeline/exclusive.js.map +1 -0
  1233. package/dist/tasty/pipeline/index.d.ts +52 -0
  1234. package/dist/tasty/pipeline/index.js +639 -0
  1235. package/dist/tasty/pipeline/index.js.map +1 -0
  1236. package/dist/tasty/pipeline/materialize.js +822 -0
  1237. package/dist/tasty/pipeline/materialize.js.map +1 -0
  1238. package/dist/tasty/pipeline/parseStateKey.js +422 -0
  1239. package/dist/tasty/pipeline/parseStateKey.js.map +1 -0
  1240. package/dist/tasty/pipeline/simplify.js +558 -0
  1241. package/dist/tasty/pipeline/simplify.js.map +1 -0
  1242. package/dist/tasty/plugins/okhsl-plugin.d.ts +36 -0
  1243. package/dist/tasty/plugins/okhsl-plugin.js +370 -0
  1244. package/dist/tasty/plugins/okhsl-plugin.js.map +1 -0
  1245. package/dist/tasty/plugins/types.d.ts +72 -0
  1246. package/dist/tasty/properties/index.js +159 -0
  1247. package/dist/tasty/properties/index.js.map +1 -0
  1248. package/dist/tasty/states/index.d.ts +44 -0
  1249. package/dist/tasty/states/index.js +390 -0
  1250. package/dist/tasty/states/index.js.map +1 -0
  1251. package/dist/tasty/static/index.d.ts +6 -0
  1252. package/dist/tasty/static/index.js +6 -0
  1253. package/dist/tasty/static/tastyStatic.d.ts +47 -0
  1254. package/dist/tasty/static/tastyStatic.js +32 -0
  1255. package/dist/tasty/static/tastyStatic.js.map +1 -0
  1256. package/dist/tasty/static/types.d.ts +50 -0
  1257. package/dist/tasty/static/types.js +25 -0
  1258. package/dist/tasty/static/types.js.map +1 -0
  1259. package/dist/tasty/styles/align.d.ts +16 -0
  1260. package/dist/tasty/styles/align.js +15 -0
  1261. package/dist/tasty/styles/align.js.map +1 -0
  1262. package/dist/tasty/styles/border.d.ts +26 -0
  1263. package/dist/tasty/styles/border.js +115 -0
  1264. package/dist/tasty/styles/border.js.map +1 -0
  1265. package/dist/tasty/styles/color.d.ts +15 -0
  1266. package/dist/tasty/styles/color.js +24 -0
  1267. package/dist/tasty/styles/color.js.map +1 -0
  1268. package/dist/tasty/styles/createStyle.js +78 -0
  1269. package/dist/tasty/styles/createStyle.js.map +1 -0
  1270. package/dist/tasty/styles/dimension.js +100 -0
  1271. package/dist/tasty/styles/dimension.js.map +1 -0
  1272. package/dist/tasty/styles/display.d.ts +38 -0
  1273. package/dist/tasty/styles/display.js +68 -0
  1274. package/dist/tasty/styles/display.js.map +1 -0
  1275. package/dist/tasty/styles/fade.d.ts +16 -0
  1276. package/dist/tasty/styles/fade.js +58 -0
  1277. package/dist/tasty/styles/fade.js.map +1 -0
  1278. package/dist/tasty/styles/fill.d.ts +45 -0
  1279. package/dist/tasty/styles/fill.js +52 -0
  1280. package/dist/tasty/styles/fill.js.map +1 -0
  1281. package/dist/tasty/styles/flow.d.ts +17 -0
  1282. package/dist/tasty/styles/flow.js +13 -0
  1283. package/dist/tasty/styles/flow.js.map +1 -0
  1284. package/dist/tasty/styles/gap.d.ts +32 -0
  1285. package/dist/tasty/styles/gap.js +37 -0
  1286. package/dist/tasty/styles/gap.js.map +1 -0
  1287. package/dist/tasty/styles/height.d.ts +18 -0
  1288. package/dist/tasty/styles/height.js +21 -0
  1289. package/dist/tasty/styles/height.js.map +1 -0
  1290. package/dist/tasty/styles/index.d.ts +3 -0
  1291. package/dist/tasty/styles/index.js +10 -0
  1292. package/dist/tasty/styles/index.js.map +1 -0
  1293. package/dist/tasty/styles/inset.d.ts +51 -0
  1294. package/dist/tasty/styles/inset.js +143 -0
  1295. package/dist/tasty/styles/inset.js.map +1 -0
  1296. package/dist/tasty/styles/justify.d.ts +16 -0
  1297. package/dist/tasty/styles/justify.js +15 -0
  1298. package/dist/tasty/styles/justify.js.map +1 -0
  1299. package/dist/tasty/styles/list.d.ts +17 -0
  1300. package/dist/tasty/styles/list.js +99 -0
  1301. package/dist/tasty/styles/list.js.map +1 -0
  1302. package/dist/tasty/styles/margin.d.ts +29 -0
  1303. package/dist/tasty/styles/margin.js +97 -0
  1304. package/dist/tasty/styles/margin.js.map +1 -0
  1305. package/dist/tasty/styles/outline.d.ts +30 -0
  1306. package/dist/tasty/styles/outline.js +66 -0
  1307. package/dist/tasty/styles/outline.js.map +1 -0
  1308. package/dist/tasty/styles/padding.d.ts +29 -0
  1309. package/dist/tasty/styles/padding.js +97 -0
  1310. package/dist/tasty/styles/padding.js.map +1 -0
  1311. package/dist/tasty/styles/predefined.d.ts +74 -0
  1312. package/dist/tasty/styles/predefined.js +242 -0
  1313. package/dist/tasty/styles/predefined.js.map +1 -0
  1314. package/dist/tasty/styles/preset.d.ts +48 -0
  1315. package/dist/tasty/styles/preset.js +126 -0
  1316. package/dist/tasty/styles/preset.js.map +1 -0
  1317. package/dist/tasty/styles/radius.d.ts +15 -0
  1318. package/dist/tasty/styles/radius.js +52 -0
  1319. package/dist/tasty/styles/radius.js.map +1 -0
  1320. package/dist/tasty/styles/scrollbar.d.ts +22 -0
  1321. package/dist/tasty/styles/scrollbar.js +109 -0
  1322. package/dist/tasty/styles/scrollbar.js.map +1 -0
  1323. package/dist/tasty/styles/shadow.d.ts +15 -0
  1324. package/dist/tasty/styles/shadow.js +28 -0
  1325. package/dist/tasty/styles/shadow.js.map +1 -0
  1326. package/dist/tasty/styles/styledScrollbar.d.ts +48 -0
  1327. package/dist/tasty/styles/styledScrollbar.js +39 -0
  1328. package/dist/tasty/styles/styledScrollbar.js.map +1 -0
  1329. package/dist/tasty/styles/transition.d.ts +15 -0
  1330. package/dist/tasty/styles/transition.js +139 -0
  1331. package/dist/tasty/styles/transition.js.map +1 -0
  1332. package/dist/tasty/styles/types.d.ts +499 -0
  1333. package/dist/tasty/styles/width.d.ts +18 -0
  1334. package/dist/tasty/styles/width.js +21 -0
  1335. package/dist/tasty/styles/width.js.map +1 -0
  1336. package/dist/tasty/tasty.d.ts +936 -0
  1337. package/dist/tasty/tasty.js +191 -0
  1338. package/dist/tasty/tasty.js.map +1 -0
  1339. package/dist/tasty/types.d.ts +192 -0
  1340. package/dist/tasty/utils/cache-wrapper.js +25 -0
  1341. package/dist/tasty/utils/cache-wrapper.js.map +1 -0
  1342. package/dist/tasty/utils/case-converter.js +9 -0
  1343. package/dist/tasty/utils/case-converter.js.map +1 -0
  1344. package/dist/tasty/utils/colors.d.ts +6 -0
  1345. package/dist/tasty/utils/colors.js +10 -0
  1346. package/dist/tasty/utils/colors.js.map +1 -0
  1347. package/dist/tasty/utils/dotize.d.ts +27 -0
  1348. package/dist/tasty/utils/dotize.js +123 -0
  1349. package/dist/tasty/utils/dotize.js.map +1 -0
  1350. package/dist/tasty/utils/filter-base-props.d.ts +16 -0
  1351. package/dist/tasty/utils/filter-base-props.js +46 -0
  1352. package/dist/tasty/utils/filter-base-props.js.map +1 -0
  1353. package/dist/tasty/utils/get-display-name.d.ts +8 -0
  1354. package/dist/tasty/utils/get-display-name.js +11 -0
  1355. package/dist/tasty/utils/get-display-name.js.map +1 -0
  1356. package/dist/tasty/utils/hsl-to-rgb.js +39 -0
  1357. package/dist/tasty/utils/hsl-to-rgb.js.map +1 -0
  1358. package/dist/tasty/utils/is-dev-env.js +20 -0
  1359. package/dist/tasty/utils/is-dev-env.js.map +1 -0
  1360. package/dist/tasty/utils/merge-styles.d.ts +8 -0
  1361. package/dist/tasty/utils/merge-styles.js +147 -0
  1362. package/dist/tasty/utils/merge-styles.js.map +1 -0
  1363. package/dist/tasty/utils/mod-attrs.d.ts +9 -0
  1364. package/dist/tasty/utils/mod-attrs.js +22 -0
  1365. package/dist/tasty/utils/mod-attrs.js.map +1 -0
  1366. package/dist/tasty/utils/okhsl-to-rgb.js +297 -0
  1367. package/dist/tasty/utils/okhsl-to-rgb.js.map +1 -0
  1368. package/dist/tasty/utils/process-tokens.d.ts +32 -0
  1369. package/dist/tasty/utils/process-tokens.js +172 -0
  1370. package/dist/tasty/utils/process-tokens.js.map +1 -0
  1371. package/dist/tasty/utils/resolve-recipes.d.ts +18 -0
  1372. package/dist/tasty/utils/resolve-recipes.js +144 -0
  1373. package/dist/tasty/utils/resolve-recipes.js.map +1 -0
  1374. package/dist/tasty/utils/string.js +9 -0
  1375. package/dist/tasty/utils/string.js.map +1 -0
  1376. package/dist/tasty/utils/styles.d.ts +204 -0
  1377. package/dist/tasty/utils/styles.js +577 -0
  1378. package/dist/tasty/utils/styles.js.map +1 -0
  1379. package/dist/tasty/utils/typography.d.ts +37 -0
  1380. package/dist/tasty/utils/typography.js +54 -0
  1381. package/dist/tasty/utils/typography.js.map +1 -0
  1382. package/dist/tasty/utils/warnings.d.ts +17 -0
  1383. package/dist/tasty/utils/warnings.js +17 -0
  1384. package/dist/tasty/utils/warnings.js.map +1 -0
  1385. package/dist/tasty/zero/babel.d.ts +111 -0
  1386. package/dist/tasty/zero/babel.js +283 -0
  1387. package/dist/tasty/zero/babel.js.map +1 -0
  1388. package/dist/tasty/zero/index.d.ts +4 -0
  1389. package/dist/tasty/zero/index.js +5 -0
  1390. package/dist/tasty/zero/next.d.ts +61 -0
  1391. package/dist/tasty/zero/next.js +79 -0
  1392. package/dist/tasty/zero/next.js.map +1 -0
  1393. package/dist/tokens/base.d.ts +14 -0
  1394. package/dist/tokens/base.js +40 -0
  1395. package/dist/tokens/base.js.map +1 -0
  1396. package/dist/tokens/colors.d.ts +13 -0
  1397. package/dist/tokens/colors.js +90 -0
  1398. package/dist/tokens/colors.js.map +1 -0
  1399. package/dist/tokens/index.d.ts +30 -0
  1400. package/dist/tokens/index.js +54 -0
  1401. package/dist/tokens/index.js.map +1 -0
  1402. package/dist/tokens/layout.d.ts +13 -0
  1403. package/dist/tokens/layout.js +18 -0
  1404. package/dist/tokens/layout.js.map +1 -0
  1405. package/dist/tokens/shadows.d.ts +18 -0
  1406. package/dist/tokens/shadows.js +22 -0
  1407. package/dist/tokens/shadows.js.map +1 -0
  1408. package/dist/tokens/sizes.d.ts +31 -0
  1409. package/dist/tokens/sizes.js +39 -0
  1410. package/dist/tokens/sizes.js.map +1 -0
  1411. package/dist/tokens/spacing.d.ts +14 -0
  1412. package/dist/tokens/spacing.js +19 -0
  1413. package/dist/tokens/spacing.js.map +1 -0
  1414. package/dist/tokens/typography.d.ts +35 -0
  1415. package/dist/tokens/typography.js +238 -0
  1416. package/dist/tokens/typography.js.map +1 -0
  1417. package/dist/utils/ResizeSensor.d.ts +14 -0
  1418. package/dist/utils/ResizeSensor.js +241 -0
  1419. package/dist/utils/ResizeSensor.js.map +1 -0
  1420. package/dist/utils/cache-wrapper.js +25 -0
  1421. package/dist/utils/cache-wrapper.js.map +1 -0
  1422. package/dist/utils/case-converter.js +9 -0
  1423. package/dist/utils/case-converter.js.map +1 -0
  1424. package/dist/utils/hsl-to-rgb.js +39 -0
  1425. package/dist/utils/hsl-to-rgb.js.map +1 -0
  1426. package/dist/utils/index.d.ts +27 -0
  1427. package/dist/utils/is-dev-env.js +20 -0
  1428. package/dist/utils/is-dev-env.js.map +1 -0
  1429. package/dist/utils/merge-styles.js +147 -0
  1430. package/dist/utils/merge-styles.js.map +1 -0
  1431. package/dist/utils/modules.d.ts +6 -0
  1432. package/dist/utils/modules.js +9 -0
  1433. package/dist/utils/modules.js.map +1 -0
  1434. package/dist/utils/okhsl-to-rgb.js +297 -0
  1435. package/dist/utils/okhsl-to-rgb.js.map +1 -0
  1436. package/dist/utils/process-tokens.js +29 -0
  1437. package/dist/utils/process-tokens.js.map +1 -0
  1438. package/dist/utils/promise.d.ts +6 -0
  1439. package/dist/utils/promise.js +11 -0
  1440. package/dist/utils/promise.js.map +1 -0
  1441. package/dist/utils/raf.d.ts +22 -0
  1442. package/dist/utils/raf.js +41 -0
  1443. package/dist/utils/raf.js.map +1 -0
  1444. package/dist/utils/random.d.ts +10 -0
  1445. package/dist/utils/random.js +17 -0
  1446. package/dist/utils/random.js.map +1 -0
  1447. package/dist/utils/range.d.ts +6 -0
  1448. package/dist/utils/range.js +9 -0
  1449. package/dist/utils/range.js.map +1 -0
  1450. package/dist/utils/react/RenderCache.d.ts +23 -0
  1451. package/dist/utils/react/RenderCache.js +30 -0
  1452. package/dist/utils/react/RenderCache.js.map +1 -0
  1453. package/dist/utils/react/Slots.d.ts +10 -0
  1454. package/dist/utils/react/Slots.js +40 -0
  1455. package/dist/utils/react/Slots.js.map +1 -0
  1456. package/dist/utils/react/chain.d.ts +9 -0
  1457. package/dist/utils/react/chain.js +14 -0
  1458. package/dist/utils/react/chain.js.map +1 -0
  1459. package/dist/utils/react/forwardRefWithGenerics.d.ts +33 -0
  1460. package/dist/utils/react/forwardRefWithGenerics.js +33 -0
  1461. package/dist/utils/react/forwardRefWithGenerics.js.map +1 -0
  1462. package/dist/utils/react/index.d.ts +19 -0
  1463. package/dist/utils/react/interactions.js +24 -0
  1464. package/dist/utils/react/interactions.js.map +1 -0
  1465. package/dist/utils/react/isTextOnly.d.ts +6 -0
  1466. package/dist/utils/react/isTextOnly.js +11 -0
  1467. package/dist/utils/react/isTextOnly.js.map +1 -0
  1468. package/dist/utils/react/mapProps.js +14 -0
  1469. package/dist/utils/react/mapProps.js.map +1 -0
  1470. package/dist/utils/react/mergeProps.d.ts +17 -0
  1471. package/dist/utils/react/mergeProps.js +34 -0
  1472. package/dist/utils/react/mergeProps.js.map +1 -0
  1473. package/dist/utils/react/nullableValue.d.ts +12 -0
  1474. package/dist/utils/react/nullableValue.js +29 -0
  1475. package/dist/utils/react/nullableValue.js.map +1 -0
  1476. package/dist/utils/react/resolveIcon.d.ts +30 -0
  1477. package/dist/utils/react/resolveIcon.js +41 -0
  1478. package/dist/utils/react/resolveIcon.js.map +1 -0
  1479. package/dist/utils/react/sharedStore.js +38 -0
  1480. package/dist/utils/react/sharedStore.js.map +1 -0
  1481. package/dist/utils/react/useCombinedRefs.d.ts +9 -0
  1482. package/dist/utils/react/useCombinedRefs.js +24 -0
  1483. package/dist/utils/react/useCombinedRefs.js.map +1 -0
  1484. package/dist/utils/react/useControlledFocusVisible.d.ts +15 -0
  1485. package/dist/utils/react/useControlledFocusVisible.js +34 -0
  1486. package/dist/utils/react/useControlledFocusVisible.js.map +1 -0
  1487. package/dist/utils/react/useEventBus.d.ts +92 -0
  1488. package/dist/utils/react/useEventBus.js +125 -0
  1489. package/dist/utils/react/useEventBus.js.map +1 -0
  1490. package/dist/utils/react/useId.js +56 -0
  1491. package/dist/utils/react/useId.js.map +1 -0
  1492. package/dist/utils/react/useIsDarwin.js +36 -0
  1493. package/dist/utils/react/useIsDarwin.js.map +1 -0
  1494. package/dist/utils/react/useKeySymbols.js +68 -0
  1495. package/dist/utils/react/useKeySymbols.js.map +1 -0
  1496. package/dist/utils/react/useLayoutEffect.d.ts +8 -0
  1497. package/dist/utils/react/useLayoutEffect.js +9 -0
  1498. package/dist/utils/react/useLayoutEffect.js.map +1 -0
  1499. package/dist/utils/react/useLocalStorage.d.ts +37 -0
  1500. package/dist/utils/react/useLocalStorage.js +100 -0
  1501. package/dist/utils/react/useLocalStorage.js.map +1 -0
  1502. package/dist/utils/react/useMergeStyles.d.ts +32 -0
  1503. package/dist/utils/react/useMergeStyles.js +39 -0
  1504. package/dist/utils/react/useMergeStyles.js.map +1 -0
  1505. package/dist/utils/react/useQaProps.d.ts +23 -0
  1506. package/dist/utils/react/useQaProps.js +31 -0
  1507. package/dist/utils/react/useQaProps.js.map +1 -0
  1508. package/dist/utils/react/useViewportSize.d.ts +13 -0
  1509. package/dist/utils/react/useViewportSize.js +36 -0
  1510. package/dist/utils/react/useViewportSize.js.map +1 -0
  1511. package/dist/utils/react/wrapNodeIfPlain.d.ts +8 -0
  1512. package/dist/utils/react/wrapNodeIfPlain.js +14 -0
  1513. package/dist/utils/react/wrapNodeIfPlain.js.map +1 -0
  1514. package/dist/utils/resolve-recipes.js +144 -0
  1515. package/dist/utils/resolve-recipes.js.map +1 -0
  1516. package/dist/utils/string.js +9 -0
  1517. package/dist/utils/string.js.map +1 -0
  1518. package/dist/utils/styles.d.ts +23 -0
  1519. package/dist/utils/styles.js +338 -0
  1520. package/dist/utils/styles.js.map +1 -0
  1521. package/dist/utils/tree.d.ts +6 -0
  1522. package/dist/utils/tree.js +17 -0
  1523. package/dist/utils/tree.js.map +1 -0
  1524. package/dist/utils/warnings.d.ts +6 -0
  1525. package/dist/utils/warnings.js +30 -0
  1526. package/dist/utils/warnings.js.map +1 -0
  1527. package/dist/version.d.ts +12 -0
  1528. package/dist/version.js +13 -0
  1529. package/dist/version.js.map +1 -0
  1530. package/package.json +146 -38
  1531. package/CHANGELOG.md +0 -3255
  1532. package/es/_internal/hooks/index.js +0 -18
  1533. package/es/_internal/hooks/use-chained-callback.js +0 -19
  1534. package/es/_internal/hooks/use-debounced-value.js +0 -53
  1535. package/es/_internal/hooks/use-deprecation-warning.js +0 -20
  1536. package/es/_internal/hooks/use-effect-once.js +0 -13
  1537. package/es/_internal/hooks/use-event.js +0 -21
  1538. package/es/_internal/hooks/use-is-first-render.js +0 -18
  1539. package/es/_internal/hooks/use-sync-ref.js +0 -18
  1540. package/es/_internal/hooks/use-timer/index.js +0 -11
  1541. package/es/_internal/hooks/use-timer/timer.js +0 -60
  1542. package/es/_internal/hooks/use-timer/use-timer.js +0 -45
  1543. package/es/_internal/hooks/use-update-effect.js +0 -19
  1544. package/es/_internal/hooks/use-warn.js +0 -39
  1545. package/es/_internal/index.js +0 -10
  1546. package/es/components/Block.js +0 -21
  1547. package/es/components/CollectionItem.js +0 -62
  1548. package/es/components/GlobalStyles.js +0 -324
  1549. package/es/components/GridProvider.js +0 -63
  1550. package/es/components/HiddenInput.js +0 -34
  1551. package/es/components/OpenTrasition.js +0 -32
  1552. package/es/components/Root.js +0 -50
  1553. package/es/components/actions/Action/Action.js +0 -37
  1554. package/es/components/actions/Banner/Banner.js +0 -77
  1555. package/es/components/actions/Banner/index.js +0 -10
  1556. package/es/components/actions/Button/Button.js +0 -343
  1557. package/es/components/actions/Button/index.js +0 -10
  1558. package/es/components/actions/ButtonGroup/ButtonGroup.js +0 -23
  1559. package/es/components/actions/CommandMenu/CommandMenu.js +0 -461
  1560. package/es/components/actions/CommandMenu/index.js +0 -11
  1561. package/es/components/actions/CommandMenu/styled.js +0 -104
  1562. package/es/components/actions/ItemAction/ItemAction.js +0 -180
  1563. package/es/components/actions/ItemAction/index.js +0 -10
  1564. package/es/components/actions/ItemActionContext.js +0 -30
  1565. package/es/components/actions/ItemButton/ItemButton.js +0 -158
  1566. package/es/components/actions/ItemButton/index.js +0 -10
  1567. package/es/components/actions/Link/Link.js +0 -15
  1568. package/es/components/actions/Menu/Menu.js +0 -136
  1569. package/es/components/actions/Menu/MenuItem.js +0 -82
  1570. package/es/components/actions/Menu/MenuSection.js +0 -37
  1571. package/es/components/actions/Menu/MenuTrigger.js +0 -137
  1572. package/es/components/actions/Menu/SubMenuTrigger.js +0 -288
  1573. package/es/components/actions/Menu/SubmenuTriggerContext.js +0 -18
  1574. package/es/components/actions/Menu/context.js +0 -14
  1575. package/es/components/actions/Menu/index.js +0 -19
  1576. package/es/components/actions/Menu/styled.js +0 -223
  1577. package/es/components/actions/index.js +0 -24
  1578. package/es/components/actions/use-action.js +0 -258
  1579. package/es/components/actions/use-anchored-menu.js +0 -107
  1580. package/es/components/actions/use-context-menu.js +0 -206
  1581. package/es/components/content/ActiveZone/ActiveZone.js +0 -38
  1582. package/es/components/content/Alert/Alert.js +0 -52
  1583. package/es/components/content/Alert/index.js +0 -10
  1584. package/es/components/content/Alert/types.js +0 -10
  1585. package/es/components/content/Alert/use-alert.js +0 -31
  1586. package/es/components/content/Avatar/Avatar.js +0 -33
  1587. package/es/components/content/Badge/Badge.js +0 -54
  1588. package/es/components/content/Card/Card.js +0 -29
  1589. package/es/components/content/Content.js +0 -33
  1590. package/es/components/content/CopyPasteBlock/CopyPasteBlock.js +0 -160
  1591. package/es/components/content/CopyPasteBlock/index.js +0 -10
  1592. package/es/components/content/CopySnippet/CopySnippet.js +0 -190
  1593. package/es/components/content/CopySnippet/index.js +0 -10
  1594. package/es/components/content/Disclosure/Disclosure.js +0 -301
  1595. package/es/components/content/Disclosure/index.js +0 -10
  1596. package/es/components/content/Divider.js +0 -54
  1597. package/es/components/content/Footer.js +0 -28
  1598. package/es/components/content/Header.js +0 -29
  1599. package/es/components/content/HotKeys/HotKeys.js +0 -66
  1600. package/es/components/content/HotKeys/index.js +0 -10
  1601. package/es/components/content/Item/Item.js +0 -586
  1602. package/es/components/content/Item/index.js +0 -11
  1603. package/es/components/content/ItemBadge/ItemBadge.js +0 -119
  1604. package/es/components/content/ItemBadge/index.js +0 -10
  1605. package/es/components/content/Layout/GridLayout.js +0 -50
  1606. package/es/components/content/Layout/Layout.js +0 -227
  1607. package/es/components/content/Layout/LayoutBlock.js +0 -31
  1608. package/es/components/content/Layout/LayoutCenter.js +0 -32
  1609. package/es/components/content/Layout/LayoutContainer.js +0 -57
  1610. package/es/components/content/Layout/LayoutContent.js +0 -121
  1611. package/es/components/content/Layout/LayoutContext.js +0 -145
  1612. package/es/components/content/Layout/LayoutFlex.js +0 -33
  1613. package/es/components/content/Layout/LayoutFooter.js +0 -52
  1614. package/es/components/content/Layout/LayoutGrid.js +0 -33
  1615. package/es/components/content/Layout/LayoutHeader.js +0 -113
  1616. package/es/components/content/Layout/LayoutPane.js +0 -336
  1617. package/es/components/content/Layout/LayoutPanel.js +0 -486
  1618. package/es/components/content/Layout/LayoutPanelHeader.js +0 -51
  1619. package/es/components/content/Layout/LayoutToolbar.js +0 -38
  1620. package/es/components/content/Layout/hooks/useTinyScrollbar.js +0 -177
  1621. package/es/components/content/Layout/index.js +0 -39
  1622. package/es/components/content/Layout/utils.js +0 -23
  1623. package/es/components/content/List/SectionHeading.js +0 -23
  1624. package/es/components/content/List/index.js +0 -10
  1625. package/es/components/content/Paragraph.js +0 -23
  1626. package/es/components/content/Placeholder/Placeholder.js +0 -73
  1627. package/es/components/content/PrismCode/PrismCode.js +0 -102
  1628. package/es/components/content/PrismCode/prismSetup.js +0 -211
  1629. package/es/components/content/PrismDiffCode/PrismDiffCode.js +0 -44
  1630. package/es/components/content/Result/Result.js +0 -129
  1631. package/es/components/content/Skeleton/Skeleton.js +0 -83
  1632. package/es/components/content/Tag/Tag.js +0 -44
  1633. package/es/components/content/Text.js +0 -104
  1634. package/es/components/content/TextItem/TextItem.js +0 -64
  1635. package/es/components/content/TextItem/index.js +0 -10
  1636. package/es/components/content/Title.js +0 -69
  1637. package/es/components/content/highlightText.js +0 -33
  1638. package/es/components/content/use-auto-tooltip.js +0 -148
  1639. package/es/components/fields/Checkbox/Checkbox.js +0 -167
  1640. package/es/components/fields/Checkbox/CheckboxGroup.js +0 -73
  1641. package/es/components/fields/Checkbox/context.js +0 -11
  1642. package/es/components/fields/Checkbox/index.js +0 -11
  1643. package/es/components/fields/ComboBox/ComboBox.js +0 -1031
  1644. package/es/components/fields/ComboBox/index.js +0 -10
  1645. package/es/components/fields/DatePicker/DateInput.js +0 -61
  1646. package/es/components/fields/DatePicker/DateInputBase.js +0 -62
  1647. package/es/components/fields/DatePicker/DatePicker.js +0 -73
  1648. package/es/components/fields/DatePicker/DatePickerButton.js +0 -16
  1649. package/es/components/fields/DatePicker/DatePickerElement.js +0 -21
  1650. package/es/components/fields/DatePicker/DatePickerInput.js +0 -51
  1651. package/es/components/fields/DatePicker/DatePickerSegment.js +0 -68
  1652. package/es/components/fields/DatePicker/DateRangePicker.js +0 -82
  1653. package/es/components/fields/DatePicker/DateRangeSeparatedPicker.js +0 -133
  1654. package/es/components/fields/DatePicker/TimeInput.js +0 -51
  1655. package/es/components/fields/DatePicker/index.js +0 -16
  1656. package/es/components/fields/DatePicker/intl.js +0 -14
  1657. package/es/components/fields/DatePicker/parseDate.js +0 -30
  1658. package/es/components/fields/DatePicker/props.js +0 -20
  1659. package/es/components/fields/DatePicker/types.js +0 -10
  1660. package/es/components/fields/DatePicker/utils.js +0 -104
  1661. package/es/components/fields/FileInput/FileInput.js +0 -162
  1662. package/es/components/fields/FilterListBox/FilterListBox.js +0 -655
  1663. package/es/components/fields/FilterListBox/index.js +0 -10
  1664. package/es/components/fields/FilterPicker/FilterPicker.js +0 -551
  1665. package/es/components/fields/FilterPicker/index.js +0 -10
  1666. package/es/components/fields/Input/Input.js +0 -21
  1667. package/es/components/fields/Input/index.js +0 -10
  1668. package/es/components/fields/ListBox/ListBox.js +0 -712
  1669. package/es/components/fields/ListBox/index.js +0 -10
  1670. package/es/components/fields/NumberInput/NumberInput.js +0 -58
  1671. package/es/components/fields/NumberInput/StepButton.js +0 -40
  1672. package/es/components/fields/PasswordInput/PasswordInput.js +0 -54
  1673. package/es/components/fields/Picker/Picker.js +0 -420
  1674. package/es/components/fields/Picker/index.js +0 -10
  1675. package/es/components/fields/RadioGroup/Radio.js +0 -226
  1676. package/es/components/fields/RadioGroup/RadioGroup.js +0 -99
  1677. package/es/components/fields/RadioGroup/context.js +0 -14
  1678. package/es/components/fields/RadioGroup/index.js +0 -11
  1679. package/es/components/fields/SearchInput/SearchInput.js +0 -38
  1680. package/es/components/fields/SearchInput/index.js +0 -10
  1681. package/es/components/fields/Select/Select.js +0 -347
  1682. package/es/components/fields/Select/index.js +0 -10
  1683. package/es/components/fields/Slider/Gradation.js +0 -24
  1684. package/es/components/fields/Slider/Header.js +0 -12
  1685. package/es/components/fields/Slider/HueSlider.js +0 -65
  1686. package/es/components/fields/Slider/RangeSlider.js +0 -34
  1687. package/es/components/fields/Slider/Slider.js +0 -43
  1688. package/es/components/fields/Slider/SliderBase.js +0 -126
  1689. package/es/components/fields/Slider/SliderInput.js +0 -34
  1690. package/es/components/fields/Slider/SliderThumb.js +0 -38
  1691. package/es/components/fields/Slider/SliderTrack.js +0 -30
  1692. package/es/components/fields/Slider/elements.js +0 -154
  1693. package/es/components/fields/Slider/index.js +0 -14
  1694. package/es/components/fields/Slider/types.js +0 -10
  1695. package/es/components/fields/Switch/Switch.js +0 -169
  1696. package/es/components/fields/Switch/index.js +0 -10
  1697. package/es/components/fields/TextArea/TextArea.js +0 -99
  1698. package/es/components/fields/TextArea/index.js +0 -10
  1699. package/es/components/fields/TextInput/TextInput.js +0 -42
  1700. package/es/components/fields/TextInput/TextInputBase.js +0 -244
  1701. package/es/components/fields/TextInput/index.js +0 -11
  1702. package/es/components/fields/TextInputMapper/TextInputMapper.js +0 -188
  1703. package/es/components/fields/TextInputMapper/index.js +0 -10
  1704. package/es/components/fields/index.js +0 -28
  1705. package/es/components/form/FieldWrapper/FieldWrapper.js +0 -130
  1706. package/es/components/form/FieldWrapper/extract-field-wrapper-props.js +0 -47
  1707. package/es/components/form/FieldWrapper/index.js +0 -12
  1708. package/es/components/form/FieldWrapper/types.js +0 -10
  1709. package/es/components/form/Form/Field.js +0 -179
  1710. package/es/components/form/Form/Form.js +0 -155
  1711. package/es/components/form/Form/ResetButton/ResetButton.js +0 -38
  1712. package/es/components/form/Form/ResetButton/index.js +0 -10
  1713. package/es/components/form/Form/SubmitButton/SubmitButton.js +0 -26
  1714. package/es/components/form/Form/SubmitButton/index.js +0 -10
  1715. package/es/components/form/Form/SubmitError.js +0 -30
  1716. package/es/components/form/Form/index.js +0 -27
  1717. package/es/components/form/Form/types.js +0 -10
  1718. package/es/components/form/Form/use-field/index.js +0 -12
  1719. package/es/components/form/Form/use-field/types.js +0 -10
  1720. package/es/components/form/Form/use-field/use-field-props.js +0 -106
  1721. package/es/components/form/Form/use-field/use-field.js +0 -184
  1722. package/es/components/form/Form/use-form.js +0 -395
  1723. package/es/components/form/Form/validation.js +0 -164
  1724. package/es/components/form/Label.js +0 -79
  1725. package/es/components/form/index.js +0 -13
  1726. package/es/components/form/wrapper.js +0 -47
  1727. package/es/components/helpers/DisplayTransition/DisplayTransition.js +0 -301
  1728. package/es/components/helpers/DisplayTransition/index.js +0 -10
  1729. package/es/components/helpers/IconSwitch/IconSwitch.js +0 -138
  1730. package/es/components/helpers/index.js +0 -11
  1731. package/es/components/layout/Flex.js +0 -22
  1732. package/es/components/layout/Flow.js +0 -23
  1733. package/es/components/layout/Grid.js +0 -28
  1734. package/es/components/layout/Panel.js +0 -109
  1735. package/es/components/layout/Prefix.js +0 -43
  1736. package/es/components/layout/ResizablePanel.js +0 -291
  1737. package/es/components/layout/Space.js +0 -36
  1738. package/es/components/layout/Suffix.js +0 -42
  1739. package/es/components/navigation/Tabs/DraggableTabList.js +0 -103
  1740. package/es/components/navigation/Tabs/EditableTitle.js +0 -116
  1741. package/es/components/navigation/Tabs/TabButton.js +0 -318
  1742. package/es/components/navigation/Tabs/TabDropIndicator.js +0 -34
  1743. package/es/components/navigation/Tabs/TabPanel.js +0 -126
  1744. package/es/components/navigation/Tabs/TabPicker.js +0 -46
  1745. package/es/components/navigation/Tabs/Tabs.js +0 -436
  1746. package/es/components/navigation/Tabs/TabsAction.js +0 -70
  1747. package/es/components/navigation/Tabs/TabsContext.js +0 -36
  1748. package/es/components/navigation/Tabs/index.js +0 -10
  1749. package/es/components/navigation/Tabs/styled.js +0 -367
  1750. package/es/components/navigation/Tabs/types.js +0 -17
  1751. package/es/components/navigation/Tabs/use-tab-editing.js +0 -61
  1752. package/es/components/navigation/Tabs/use-tab-indicator.js +0 -77
  1753. package/es/components/navigation/index.js +0 -10
  1754. package/es/components/organisms/FileTabs/FileTabs.js +0 -255
  1755. package/es/components/organisms/StatsCard/StatsCard.js +0 -16
  1756. package/es/components/other/Calendar/Calendar.js +0 -57
  1757. package/es/components/other/Calendar/CalendarCell.js +0 -66
  1758. package/es/components/other/Calendar/CalendarGrid.js +0 -32
  1759. package/es/components/other/Calendar/RangeCalendar.js +0 -57
  1760. package/es/components/other/CloudLogo/CloudLogo.js +0 -33
  1761. package/es/components/overlays/AlertDialog/AlertDialog.js +0 -58
  1762. package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +0 -134
  1763. package/es/components/overlays/AlertDialog/AlertDialogZone.js +0 -66
  1764. package/es/components/overlays/AlertDialog/index.js +0 -12
  1765. package/es/components/overlays/AlertDialog/types.js +0 -10
  1766. package/es/components/overlays/Dialog/Dialog.js +0 -240
  1767. package/es/components/overlays/Dialog/DialogContainer.js +0 -39
  1768. package/es/components/overlays/Dialog/DialogForm.js +0 -45
  1769. package/es/components/overlays/Dialog/DialogTrigger.js +0 -132
  1770. package/es/components/overlays/Dialog/context.js +0 -17
  1771. package/es/components/overlays/Dialog/index.js +0 -14
  1772. package/es/components/overlays/Dialog/use-dialog-container.js +0 -62
  1773. package/es/components/overlays/Modal/Modal.js +0 -94
  1774. package/es/components/overlays/Modal/OpenTransition.js +0 -28
  1775. package/es/components/overlays/Modal/Overlay.js +0 -40
  1776. package/es/components/overlays/Modal/Popover.js +0 -69
  1777. package/es/components/overlays/Modal/Tray.js +0 -72
  1778. package/es/components/overlays/Modal/Underlay.js +0 -44
  1779. package/es/components/overlays/Modal/index.js +0 -15
  1780. package/es/components/overlays/Modal/types.js +0 -10
  1781. package/es/components/overlays/NewNotifications/Bar/FloatingNotification.js +0 -54
  1782. package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +0 -95
  1783. package/es/components/overlays/NewNotifications/Bar/TransitionComponent.js +0 -56
  1784. package/es/components/overlays/NewNotifications/Bar/index.js +0 -10
  1785. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogContext.js +0 -19
  1786. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +0 -38
  1787. package/es/components/overlays/NewNotifications/Dialog/index.js +0 -10
  1788. package/es/components/overlays/NewNotifications/Notification.js +0 -41
  1789. package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +0 -41
  1790. package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +0 -25
  1791. package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +0 -36
  1792. package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +0 -60
  1793. package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +0 -31
  1794. package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +0 -69
  1795. package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +0 -25
  1796. package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +0 -86
  1797. package/es/components/overlays/NewNotifications/NotificationView/index.js +0 -11
  1798. package/es/components/overlays/NewNotifications/NotificationView/types.js +0 -10
  1799. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsContext.js +0 -11
  1800. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +0 -21
  1801. package/es/components/overlays/NewNotifications/NotificationsContext/index.js +0 -11
  1802. package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +0 -91
  1803. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +0 -45
  1804. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +0 -29
  1805. package/es/components/overlays/NewNotifications/NotificationsList/index.js +0 -10
  1806. package/es/components/overlays/NewNotifications/NotificationsList/types.js +0 -10
  1807. package/es/components/overlays/NewNotifications/hooks/index.js +0 -14
  1808. package/es/components/overlays/NewNotifications/hooks/types.js +0 -10
  1809. package/es/components/overlays/NewNotifications/hooks/use-notification-list-item.js +0 -15
  1810. package/es/components/overlays/NewNotifications/hooks/use-notifications-api.js +0 -17
  1811. package/es/components/overlays/NewNotifications/hooks/use-notifications-list.js +0 -29
  1812. package/es/components/overlays/NewNotifications/hooks/use-notifications-observer.js +0 -17
  1813. package/es/components/overlays/NewNotifications/index.js +0 -15
  1814. package/es/components/overlays/NewNotifications/types.js +0 -10
  1815. package/es/components/overlays/Notification/Notification.js +0 -80
  1816. package/es/components/overlays/OverlayWrapper.js +0 -19
  1817. package/es/components/overlays/Toast/ToastItem.js +0 -29
  1818. package/es/components/overlays/Toast/ToastProvider.js +0 -360
  1819. package/es/components/overlays/Toast/index.js +0 -98
  1820. package/es/components/overlays/Toast/types.js +0 -10
  1821. package/es/components/overlays/Toast/useProgressToast.js +0 -206
  1822. package/es/components/overlays/Toast/useToast.js +0 -113
  1823. package/es/components/overlays/Tooltip/Tooltip.js +0 -146
  1824. package/es/components/overlays/Tooltip/TooltipProvider.js +0 -32
  1825. package/es/components/overlays/Tooltip/TooltipTrigger.js +0 -119
  1826. package/es/components/overlays/Tooltip/context.js +0 -11
  1827. package/es/components/overlays/Tooltip/index.js +0 -12
  1828. package/es/components/portal/Portal.js +0 -44
  1829. package/es/components/portal/PortalProvider.js +0 -24
  1830. package/es/components/portal/index.js +0 -11
  1831. package/es/components/portal/types.js +0 -10
  1832. package/es/components/portal/usePortal.js +0 -41
  1833. package/es/components/shared/InvalidIcon.js +0 -12
  1834. package/es/components/shared/ValidIcon.js +0 -12
  1835. package/es/components/status/LoadingAnimation/LoadingAnimation.js +0 -76
  1836. package/es/components/status/LoadingAnimation/index.js +0 -10
  1837. package/es/components/status/Spin/Cube.js +0 -106
  1838. package/es/components/status/Spin/InternalSpinner.js +0 -26
  1839. package/es/components/status/Spin/Spin.js +0 -21
  1840. package/es/components/status/Spin/SpinsContainer.js +0 -37
  1841. package/es/components/status/Spin/index.js +0 -10
  1842. package/es/components/status/Spin/types.js +0 -10
  1843. package/es/components/status/index.js +0 -11
  1844. package/es/data/item-themes.js +0 -847
  1845. package/es/data/themes.js +0 -41
  1846. package/es/icons/AdjustmentsHorizontalIcon.js +0 -12
  1847. package/es/icons/AdjustmentsIcon.js +0 -12
  1848. package/es/icons/AiIcon.js +0 -13
  1849. package/es/icons/AreaChartIcon.js +0 -13
  1850. package/es/icons/BackwardIcon.js +0 -13
  1851. package/es/icons/BarChartIcon.js +0 -13
  1852. package/es/icons/BellFilledIcon.js +0 -13
  1853. package/es/icons/BellIcon.js +0 -13
  1854. package/es/icons/BooleanIcon.js +0 -12
  1855. package/es/icons/CalendarEditIcon.js +0 -12
  1856. package/es/icons/CalendarIcon.js +0 -12
  1857. package/es/icons/CaretDownIcon.js +0 -13
  1858. package/es/icons/CaretUpIcon.js +0 -13
  1859. package/es/icons/ChartAreaStackedIcon.js +0 -12
  1860. package/es/icons/ChartAreaStackedPercentageIcon.js +0 -12
  1861. package/es/icons/ChartBarGroupedHorizontalIcon.js +0 -12
  1862. package/es/icons/ChartBarGroupedIcon.js +0 -12
  1863. package/es/icons/ChartBarHorizontalIcon.js +0 -12
  1864. package/es/icons/ChartBarLineIcon.js +0 -12
  1865. package/es/icons/ChartBarStackedHorizontalIcon.js +0 -12
  1866. package/es/icons/ChartBarStackedIcon.js +0 -12
  1867. package/es/icons/ChartBarStackedPercentageHorizontalIcon.js +0 -12
  1868. package/es/icons/ChartBarStackedPercentageIcon.js +0 -12
  1869. package/es/icons/ChartBoxPlot2Icon.js +0 -12
  1870. package/es/icons/ChartBoxPlotIcon.js +0 -12
  1871. package/es/icons/ChartBubbleIcon.js +0 -12
  1872. package/es/icons/ChartDonut2Icon.js +0 -12
  1873. package/es/icons/ChartFunnelIcon.js +0 -12
  1874. package/es/icons/ChartHeatmapIcon.js +0 -12
  1875. package/es/icons/ChartKPIIcon.js +0 -12
  1876. package/es/icons/ChartPie2Icon.js +0 -12
  1877. package/es/icons/ChartScatterIcon.js +0 -12
  1878. package/es/icons/CheckCircleFilledIcon.js +0 -13
  1879. package/es/icons/CheckCircleIcon.js +0 -13
  1880. package/es/icons/CheckIcon.js +0 -13
  1881. package/es/icons/CircleFilledIcon.js +0 -13
  1882. package/es/icons/ClearIcon.js +0 -12
  1883. package/es/icons/CloseCircleFilledIcon.js +0 -13
  1884. package/es/icons/CloseCircleIcon.js +0 -13
  1885. package/es/icons/CloseIcon.js +0 -13
  1886. package/es/icons/CodeIcon.js +0 -13
  1887. package/es/icons/ColumnTotalIcon.js +0 -12
  1888. package/es/icons/CopyIcon.js +0 -13
  1889. package/es/icons/CountIcon.js +0 -12
  1890. package/es/icons/CubeIcon.js +0 -12
  1891. package/es/icons/CubePauseIcon.js +0 -12
  1892. package/es/icons/CubePlayIcon.js +0 -12
  1893. package/es/icons/CurrencyDollarIcon.js +0 -12
  1894. package/es/icons/DangerIcon.js +0 -13
  1895. package/es/icons/DashboardIcon.js +0 -13
  1896. package/es/icons/DatabaseIcon.js +0 -13
  1897. package/es/icons/DecimalDecreaseIcon.js +0 -12
  1898. package/es/icons/DecimalIncreaseIcon.js +0 -12
  1899. package/es/icons/DirectionIcon.js +0 -63
  1900. package/es/icons/DonutIcon.js +0 -13
  1901. package/es/icons/DownIcon.js +0 -13
  1902. package/es/icons/EditIcon.js +0 -13
  1903. package/es/icons/ExclamationCircleFilledIcon.js +0 -13
  1904. package/es/icons/ExclamationCircleIcon.js +0 -13
  1905. package/es/icons/ExclamationIcon.js +0 -13
  1906. package/es/icons/EyeIcon.js +0 -13
  1907. package/es/icons/EyeInvisibleIcon.js +0 -13
  1908. package/es/icons/FilterIcon.js +0 -13
  1909. package/es/icons/FolderFilledIcon.js +0 -12
  1910. package/es/icons/FolderIcon.js +0 -12
  1911. package/es/icons/FolderOpenFilledIcon.js +0 -12
  1912. package/es/icons/FolderOpenIcon.js +0 -12
  1913. package/es/icons/ForwardIcon.js +0 -13
  1914. package/es/icons/HierarchyIcon.js +0 -12
  1915. package/es/icons/HierarchyOpenIcon.js +0 -12
  1916. package/es/icons/Icon.js +0 -52
  1917. package/es/icons/InfoCircleIcon.js +0 -13
  1918. package/es/icons/InfoIcon.js +0 -13
  1919. package/es/icons/KeyIcon.js +0 -13
  1920. package/es/icons/LeftIcon.js +0 -13
  1921. package/es/icons/LineChartIcon.js +0 -13
  1922. package/es/icons/LoadingIcon.js +0 -12
  1923. package/es/icons/LockFilledIcon.js +0 -13
  1924. package/es/icons/LockIcon.js +0 -13
  1925. package/es/icons/MoreIcon.js +0 -13
  1926. package/es/icons/NotAllowedIcon.js +0 -13
  1927. package/es/icons/Number123Icon.js +0 -12
  1928. package/es/icons/NumberIcon.js +0 -13
  1929. package/es/icons/PauseCircleFilledIcon.js +0 -12
  1930. package/es/icons/PauseCircleIcon.js +0 -12
  1931. package/es/icons/PauseIcon.js +0 -13
  1932. package/es/icons/PercentageIcon.js +0 -12
  1933. package/es/icons/PieChartIcon.js +0 -13
  1934. package/es/icons/PlayCircleIcon.js +0 -13
  1935. package/es/icons/PlayIcon.js +0 -13
  1936. package/es/icons/PlusIcon.js +0 -13
  1937. package/es/icons/ProgressBarIcon.js +0 -12
  1938. package/es/icons/ReloadIcon.js +0 -13
  1939. package/es/icons/ReportIcon.js +0 -13
  1940. package/es/icons/ReturnIcon.js +0 -13
  1941. package/es/icons/RightIcon.js +0 -13
  1942. package/es/icons/RowTotalsIcon.js +0 -12
  1943. package/es/icons/SchemeIcon.js +0 -13
  1944. package/es/icons/SearchIcon.js +0 -13
  1945. package/es/icons/SemanticQueryIcon.js +0 -12
  1946. package/es/icons/SettingsIcon.js +0 -13
  1947. package/es/icons/ShieldFilledIcon.js +0 -13
  1948. package/es/icons/ShieldIcon.js +0 -13
  1949. package/es/icons/SlashIcon.js +0 -13
  1950. package/es/icons/SparklesIcon.js +0 -13
  1951. package/es/icons/SqlIcon.js +0 -13
  1952. package/es/icons/StatsIcon.js +0 -12
  1953. package/es/icons/StopIcon.js +0 -13
  1954. package/es/icons/StringIcon.js +0 -12
  1955. package/es/icons/SubtotalsIcon.js +0 -12
  1956. package/es/icons/SwitchIcon.js +0 -13
  1957. package/es/icons/TableIcon.js +0 -13
  1958. package/es/icons/ThumbsDownIcon.js +0 -13
  1959. package/es/icons/ThumbsUpIcon.js +0 -13
  1960. package/es/icons/ThunderboltCrossedIcon.js +0 -13
  1961. package/es/icons/ThunderboltFilledIcon.js +0 -13
  1962. package/es/icons/ThunderboltIcon.js +0 -13
  1963. package/es/icons/TimeIcon.js +0 -13
  1964. package/es/icons/TrashIcon.js +0 -13
  1965. package/es/icons/UnlockIcon.js +0 -13
  1966. package/es/icons/UpIcon.js +0 -13
  1967. package/es/icons/UserGroupIcon.js +0 -12
  1968. package/es/icons/UserIcon.js +0 -12
  1969. package/es/icons/UserLockIcon.js +0 -12
  1970. package/es/icons/ViewIcon.js +0 -12
  1971. package/es/icons/WarningFilledIcon.js +0 -13
  1972. package/es/icons/WarningIcon.js +0 -13
  1973. package/es/icons/index.js +0 -137
  1974. package/es/icons/wrap-icon.js +0 -20
  1975. package/es/index.js +0 -110
  1976. package/es/provider.js +0 -55
  1977. package/es/providers/TrackingProvider.js +0 -26
  1978. package/es/providers/navigation.types.js +0 -10
  1979. package/es/providers/navigationAdapter.default.js +0 -58
  1980. package/es/services/notification.js +0 -71
  1981. package/es/shared/form.js +0 -10
  1982. package/es/shared/index.js +0 -10
  1983. package/es/stories/Form.legacy-stories.js +0 -89
  1984. package/es/stories/FormFieldArgs.js +0 -357
  1985. package/es/stories/SimpleLayout.stories.js +0 -26
  1986. package/es/stories/Tasty.stories.js +0 -20
  1987. package/es/stories/components/ConfirmDeletionDialogForm.js +0 -32
  1988. package/es/stories/components/DialogFormApp.js +0 -15
  1989. package/es/stories/components/StyledButton.js +0 -37
  1990. package/es/stories/lists/baseProps.js +0 -38
  1991. package/es/stories/playground/PlaygroundEditor.js +0 -89
  1992. package/es/stories/playground/PlaygroundLayout.js +0 -16
  1993. package/es/stories/playground/PlaygroundOutput.js +0 -92
  1994. package/es/stories/playground/PlaygroundPreview.js +0 -91
  1995. package/es/stories/playground/components/Button.js +0 -45
  1996. package/es/stories/playground/components/Card.js +0 -20
  1997. package/es/stories/playground/components/ScrollProgress.js +0 -17
  1998. package/es/stories/playground/examples.js +0 -158
  1999. package/es/tasty/chunks/cacheKey.js +0 -98
  2000. package/es/tasty/chunks/definitions.js +0 -337
  2001. package/es/tasty/chunks/index.js +0 -12
  2002. package/es/tasty/chunks/renderChunk.js +0 -97
  2003. package/es/tasty/config.js +0 -469
  2004. package/es/tasty/debug.js +0 -961
  2005. package/es/tasty/hooks/index.js +0 -14
  2006. package/es/tasty/hooks/useGlobalStyles.js +0 -74
  2007. package/es/tasty/hooks/useKeyframes.js +0 -82
  2008. package/es/tasty/hooks/useProperty.js +0 -100
  2009. package/es/tasty/hooks/useRawCSS.js +0 -40
  2010. package/es/tasty/hooks/useStyles.js +0 -241
  2011. package/es/tasty/index.js +0 -35
  2012. package/es/tasty/injector/index.js +0 -175
  2013. package/es/tasty/injector/injector.js +0 -549
  2014. package/es/tasty/injector/sheet-manager.js +0 -1046
  2015. package/es/tasty/injector/types.js +0 -10
  2016. package/es/tasty/keyframes/index.js +0 -301
  2017. package/es/tasty/parser/classify.js +0 -419
  2018. package/es/tasty/parser/const.js +0 -38
  2019. package/es/tasty/parser/lru.js +0 -140
  2020. package/es/tasty/parser/parser.js +0 -146
  2021. package/es/tasty/parser/tokenizer.js +0 -92
  2022. package/es/tasty/parser/types.js +0 -53
  2023. package/es/tasty/pipeline/conditions.js +0 -445
  2024. package/es/tasty/pipeline/exclusive.js +0 -311
  2025. package/es/tasty/pipeline/index.js +0 -951
  2026. package/es/tasty/pipeline/materialize.js +0 -1264
  2027. package/es/tasty/pipeline/parseStateKey.js +0 -599
  2028. package/es/tasty/pipeline/simplify.js +0 -898
  2029. package/es/tasty/plugins/index.js +0 -26
  2030. package/es/tasty/plugins/okhsl-plugin.js +0 -400
  2031. package/es/tasty/plugins/types.js +0 -10
  2032. package/es/tasty/properties/index.js +0 -239
  2033. package/es/tasty/states/index.js +0 -548
  2034. package/es/tasty/static/index.js +0 -47
  2035. package/es/tasty/static/tastyStatic.js +0 -55
  2036. package/es/tasty/static/types.js +0 -34
  2037. package/es/tasty/styles/align.js +0 -20
  2038. package/es/tasty/styles/border.js +0 -150
  2039. package/es/tasty/styles/boxShadow.combinator.js +0 -23
  2040. package/es/tasty/styles/color.js +0 -40
  2041. package/es/tasty/styles/createStyle.js +0 -125
  2042. package/es/tasty/styles/dimension.js +0 -132
  2043. package/es/tasty/styles/display.js +0 -95
  2044. package/es/tasty/styles/fade.js +0 -72
  2045. package/es/tasty/styles/fill.js +0 -84
  2046. package/es/tasty/styles/flow.js +0 -20
  2047. package/es/tasty/styles/gap.js +0 -53
  2048. package/es/tasty/styles/height.js +0 -15
  2049. package/es/tasty/styles/index.js +0 -14
  2050. package/es/tasty/styles/inset.js +0 -184
  2051. package/es/tasty/styles/justify.js +0 -20
  2052. package/es/tasty/styles/list.js +0 -101
  2053. package/es/tasty/styles/margin.js +0 -130
  2054. package/es/tasty/styles/outline.js +0 -75
  2055. package/es/tasty/styles/padding.js +0 -130
  2056. package/es/tasty/styles/place.js +0 -20
  2057. package/es/tasty/styles/predefined.js +0 -368
  2058. package/es/tasty/styles/preset.js +0 -192
  2059. package/es/tasty/styles/radius.js +0 -66
  2060. package/es/tasty/styles/reset.js +0 -77
  2061. package/es/tasty/styles/scrollbar.js +0 -151
  2062. package/es/tasty/styles/shadow.js +0 -27
  2063. package/es/tasty/styles/styledScrollbar.js +0 -56
  2064. package/es/tasty/styles/transition.js +0 -135
  2065. package/es/tasty/styles/types.js +0 -10
  2066. package/es/tasty/styles/width.js +0 -15
  2067. package/es/tasty/tasty.js +0 -256
  2068. package/es/tasty/types.js +0 -10
  2069. package/es/tasty/utils/cache-wrapper.js +0 -31
  2070. package/es/tasty/utils/case-converter.js +0 -12
  2071. package/es/tasty/utils/colors.js +0 -15
  2072. package/es/tasty/utils/dotize.js +0 -196
  2073. package/es/tasty/utils/filter-base-props.js +0 -62
  2074. package/es/tasty/utils/get-display-name.js +0 -16
  2075. package/es/tasty/utils/hsl-to-rgb.js +0 -53
  2076. package/es/tasty/utils/is-dev-env.js +0 -36
  2077. package/es/tasty/utils/merge-styles.js +0 -40
  2078. package/es/tasty/utils/mod-attrs.js +0 -44
  2079. package/es/tasty/utils/okhsl-to-rgb.js +0 -298
  2080. package/es/tasty/utils/process-tokens.js +0 -240
  2081. package/es/tasty/utils/resolve-recipes.js +0 -123
  2082. package/es/tasty/utils/rgb-to-okhsl.js +0 -448
  2083. package/es/tasty/utils/string.js +0 -12
  2084. package/es/tasty/utils/styles.js +0 -833
  2085. package/es/tasty/utils/typography.js +0 -67
  2086. package/es/tasty/utils/warnings.js +0 -30
  2087. package/es/tasty/zero/babel.js +0 -441
  2088. package/es/tasty/zero/css-writer.js +0 -92
  2089. package/es/tasty/zero/extractor.js +0 -222
  2090. package/es/tasty/zero/index.js +0 -28
  2091. package/es/tasty/zero/next.js +0 -102
  2092. package/es/tokens/base.js +0 -68
  2093. package/es/tokens/colors.js +0 -123
  2094. package/es/tokens/index.js +0 -63
  2095. package/es/tokens/layout.js +0 -26
  2096. package/es/tokens/shadows.js +0 -27
  2097. package/es/tokens/sizes.js +0 -42
  2098. package/es/tokens/spacing.js +0 -22
  2099. package/es/tokens/typography.js +0 -250
  2100. package/es/utils/ResizeSensor.js +0 -318
  2101. package/es/utils/index.js +0 -27
  2102. package/es/utils/modules.js +0 -12
  2103. package/es/utils/promise.js +0 -14
  2104. package/es/utils/raf.js +0 -47
  2105. package/es/utils/random.js +0 -20
  2106. package/es/utils/range.js +0 -12
  2107. package/es/utils/react/RenderCache.js +0 -38
  2108. package/es/utils/react/Slots.js +0 -43
  2109. package/es/utils/react/chain.js +0 -21
  2110. package/es/utils/react/forwardRefWithGenerics.js +0 -36
  2111. package/es/utils/react/index.js +0 -26
  2112. package/es/utils/react/interactions.js +0 -27
  2113. package/es/utils/react/isTextOnly.js +0 -13
  2114. package/es/utils/react/mapProps.js +0 -25
  2115. package/es/utils/react/mergeProps.js +0 -65
  2116. package/es/utils/react/nullableValue.js +0 -37
  2117. package/es/utils/react/resolveIcon.js +0 -34
  2118. package/es/utils/react/sharedStore.js +0 -51
  2119. package/es/utils/react/useCombinedRefs.js +0 -31
  2120. package/es/utils/react/useControlledFocusVisible.js +0 -42
  2121. package/es/utils/react/useEventBus.js +0 -137
  2122. package/es/utils/react/useId.js +0 -81
  2123. package/es/utils/react/useIsDarwin.js +0 -42
  2124. package/es/utils/react/useKeySymbols.js +0 -81
  2125. package/es/utils/react/useLayoutEffect.js +0 -14
  2126. package/es/utils/react/useLocalStorage.js +0 -130
  2127. package/es/utils/react/useMergeStyles.js +0 -49
  2128. package/es/utils/react/useQaProps.js +0 -44
  2129. package/es/utils/react/useViewportSize.js +0 -53
  2130. package/es/utils/react/wrapNodeIfPlain.js +0 -18
  2131. package/es/utils/tree.js +0 -24
  2132. package/es/utils/warnings.js +0 -44
  2133. package/es/version.js +0 -25
  2134. package/types/_internal/hooks/index.d.ts +0 -9
  2135. package/types/_internal/hooks/use-chained-callback.d.ts +0 -1
  2136. package/types/_internal/hooks/use-debounced-value.d.ts +0 -1
  2137. package/types/_internal/hooks/use-deprecation-warning.d.ts +0 -2
  2138. package/types/_internal/hooks/use-effect-once.d.ts +0 -2
  2139. package/types/_internal/hooks/use-event.d.ts +0 -7
  2140. package/types/_internal/hooks/use-is-first-render.d.ts +0 -1
  2141. package/types/_internal/hooks/use-sync-ref.d.ts +0 -2
  2142. package/types/_internal/hooks/use-timer/index.d.ts +0 -2
  2143. package/types/_internal/hooks/use-timer/timer.d.ts +0 -15
  2144. package/types/_internal/hooks/use-timer/use-timer.d.ts +0 -10
  2145. package/types/_internal/hooks/use-update-effect.d.ts +0 -2
  2146. package/types/_internal/hooks/use-warn.d.ts +0 -15
  2147. package/types/_internal/index.d.ts +0 -1
  2148. package/types/components/Block.d.ts +0 -4
  2149. package/types/components/CollectionItem.d.ts +0 -30
  2150. package/types/components/GlobalStyles.d.ts +0 -14
  2151. package/types/components/GridProvider.d.ts +0 -10
  2152. package/types/components/HiddenInput.d.ts +0 -831
  2153. package/types/components/OpenTrasition.d.ts +0 -13
  2154. package/types/components/Root.d.ts +0 -22
  2155. package/types/components/actions/Action/Action.d.ts +0 -10
  2156. package/types/components/actions/Banner/Banner.d.ts +0 -42
  2157. package/types/components/actions/Banner/index.d.ts +0 -2
  2158. package/types/components/actions/Button/Button.d.ts +0 -1818
  2159. package/types/components/actions/Button/index.d.ts +0 -1
  2160. package/types/components/actions/ButtonGroup/ButtonGroup.d.ts +0 -2
  2161. package/types/components/actions/CommandMenu/CommandMenu.d.ts +0 -38
  2162. package/types/components/actions/CommandMenu/index.d.ts +0 -2
  2163. package/types/components/actions/CommandMenu/styled.d.ts +0 -4155
  2164. package/types/components/actions/ItemAction/ItemAction.d.ts +0 -19
  2165. package/types/components/actions/ItemAction/index.d.ts +0 -2
  2166. package/types/components/actions/ItemActionContext.d.ts +0 -18
  2167. package/types/components/actions/ItemButton/ItemButton.d.ts +0 -16
  2168. package/types/components/actions/ItemButton/index.d.ts +0 -1
  2169. package/types/components/actions/Link/Link.d.ts +0 -2
  2170. package/types/components/actions/Menu/Menu.d.ts +0 -56
  2171. package/types/components/actions/Menu/MenuItem.d.ts +0 -15
  2172. package/types/components/actions/Menu/MenuSection.d.ts +0 -9
  2173. package/types/components/actions/Menu/MenuTrigger.d.ts +0 -19
  2174. package/types/components/actions/Menu/SubMenuTrigger.d.ts +0 -44
  2175. package/types/components/actions/Menu/SubmenuTriggerContext.d.ts +0 -13
  2176. package/types/components/actions/Menu/context.d.ts +0 -16
  2177. package/types/components/actions/Menu/index.d.ts +0 -9
  2178. package/types/components/actions/Menu/styled.d.ts +0 -5502
  2179. package/types/components/actions/index.d.ts +0 -18
  2180. package/types/components/actions/use-action.d.ts +0 -51
  2181. package/types/components/actions/use-anchored-menu.d.ts +0 -35
  2182. package/types/components/actions/use-context-menu.d.ts +0 -42
  2183. package/types/components/content/ActiveZone/ActiveZone.d.ts +0 -9
  2184. package/types/components/content/Alert/Alert.d.ts +0 -2
  2185. package/types/components/content/Alert/index.d.ts +0 -2
  2186. package/types/components/content/Alert/types.d.ts +0 -24
  2187. package/types/components/content/Alert/use-alert.d.ts +0 -9
  2188. package/types/components/content/Avatar/Avatar.d.ts +0 -7
  2189. package/types/components/content/Badge/Badge.d.ts +0 -8
  2190. package/types/components/content/Card/Card.d.ts +0 -4
  2191. package/types/components/content/Content.d.ts +0 -4
  2192. package/types/components/content/CopyPasteBlock/CopyPasteBlock.d.ts +0 -16
  2193. package/types/components/content/CopyPasteBlock/index.d.ts +0 -1
  2194. package/types/components/content/CopySnippet/CopySnippet.d.ts +0 -37
  2195. package/types/components/content/CopySnippet/index.d.ts +0 -1
  2196. package/types/components/content/Disclosure/Disclosure.d.ts +0 -74
  2197. package/types/components/content/Disclosure/index.d.ts +0 -1
  2198. package/types/components/content/Divider.d.ts +0 -4
  2199. package/types/components/content/Footer.d.ts +0 -4
  2200. package/types/components/content/Header.d.ts +0 -4
  2201. package/types/components/content/HotKeys/HotKeys.d.ts +0 -7
  2202. package/types/components/content/HotKeys/index.d.ts +0 -2
  2203. package/types/components/content/Item/Item.d.ts +0 -162
  2204. package/types/components/content/Item/index.d.ts +0 -2
  2205. package/types/components/content/ItemBadge/ItemBadge.d.ts +0 -16
  2206. package/types/components/content/ItemBadge/index.d.ts +0 -2
  2207. package/types/components/content/Layout/GridLayout.d.ts +0 -36
  2208. package/types/components/content/Layout/Layout.d.ts +0 -34
  2209. package/types/components/content/Layout/LayoutBlock.d.ts +0 -5
  2210. package/types/components/content/Layout/LayoutCenter.d.ts +0 -5
  2211. package/types/components/content/Layout/LayoutContainer.d.ts +0 -15
  2212. package/types/components/content/Layout/LayoutContent.d.ts +0 -16
  2213. package/types/components/content/Layout/LayoutContext.d.ts +0 -81
  2214. package/types/components/content/Layout/LayoutFlex.d.ts +0 -5
  2215. package/types/components/content/Layout/LayoutFooter.d.ts +0 -7
  2216. package/types/components/content/Layout/LayoutGrid.d.ts +0 -12
  2217. package/types/components/content/Layout/LayoutHeader.d.ts +0 -21
  2218. package/types/components/content/Layout/LayoutPane.d.ts +0 -31
  2219. package/types/components/content/Layout/LayoutPanel.d.ts +0 -66
  2220. package/types/components/content/Layout/LayoutPanelHeader.d.ts +0 -15
  2221. package/types/components/content/Layout/LayoutToolbar.d.ts +0 -5
  2222. package/types/components/content/Layout/hooks/useTinyScrollbar.d.ts +0 -25
  2223. package/types/components/content/Layout/index.d.ts +0 -47
  2224. package/types/components/content/Layout/utils.d.ts +0 -5
  2225. package/types/components/content/List/SectionHeading.d.ts +0 -449
  2226. package/types/components/content/List/index.d.ts +0 -1
  2227. package/types/components/content/Paragraph.d.ts +0 -5
  2228. package/types/components/content/Placeholder/Placeholder.d.ts +0 -7
  2229. package/types/components/content/PrismCode/PrismCode.d.ts +0 -19
  2230. package/types/components/content/PrismCode/prismSetup.d.ts +0 -4
  2231. package/types/components/content/PrismDiffCode/PrismDiffCode.d.ts +0 -12
  2232. package/types/components/content/Result/Result.d.ts +0 -29
  2233. package/types/components/content/Skeleton/Skeleton.d.ts +0 -38
  2234. package/types/components/content/Tag/Tag.d.ts +0 -10
  2235. package/types/components/content/Text.d.ts +0 -2929
  2236. package/types/components/content/TextItem/TextItem.d.ts +0 -34
  2237. package/types/components/content/TextItem/index.d.ts +0 -2
  2238. package/types/components/content/Title.d.ts +0 -11
  2239. package/types/components/content/highlightText.d.ts +0 -7
  2240. package/types/components/content/use-auto-tooltip.d.ts +0 -23
  2241. package/types/components/fields/Checkbox/Checkbox.d.ts +0 -20
  2242. package/types/components/fields/Checkbox/CheckboxGroup.d.ts +0 -14
  2243. package/types/components/fields/Checkbox/context.d.ts +0 -1
  2244. package/types/components/fields/Checkbox/index.d.ts +0 -2
  2245. package/types/components/fields/ComboBox/ComboBox.d.ts +0 -125
  2246. package/types/components/fields/ComboBox/index.d.ts +0 -2
  2247. package/types/components/fields/DatePicker/DateInput.d.ts +0 -19
  2248. package/types/components/fields/DatePicker/DateInputBase.d.ts +0 -21
  2249. package/types/components/fields/DatePicker/DatePicker.d.ts +0 -17
  2250. package/types/components/fields/DatePicker/DatePickerButton.d.ts +0 -5
  2251. package/types/components/fields/DatePicker/DatePickerElement.d.ts +0 -449
  2252. package/types/components/fields/DatePicker/DatePickerInput.d.ts +0 -11
  2253. package/types/components/fields/DatePicker/DatePickerSegment.d.ts +0 -9
  2254. package/types/components/fields/DatePicker/DateRangePicker.d.ts +0 -18
  2255. package/types/components/fields/DatePicker/DateRangeSeparatedPicker.d.ts +0 -20
  2256. package/types/components/fields/DatePicker/TimeInput.d.ts +0 -36
  2257. package/types/components/fields/DatePicker/index.d.ts +0 -7
  2258. package/types/components/fields/DatePicker/intl.d.ts +0 -5
  2259. package/types/components/fields/DatePicker/parseDate.d.ts +0 -1
  2260. package/types/components/fields/DatePicker/props.d.ts +0 -3
  2261. package/types/components/fields/DatePicker/types.d.ts +0 -29
  2262. package/types/components/fields/DatePicker/utils.d.ts +0 -4
  2263. package/types/components/fields/FileInput/FileInput.d.ts +0 -33
  2264. package/types/components/fields/FilterListBox/FilterListBox.d.ts +0 -81
  2265. package/types/components/fields/FilterListBox/index.d.ts +0 -1
  2266. package/types/components/fields/FilterPicker/FilterPicker.d.ts +0 -74
  2267. package/types/components/fields/FilterPicker/index.d.ts +0 -1
  2268. package/types/components/fields/Input/Input.d.ts +0 -14
  2269. package/types/components/fields/Input/index.d.ts +0 -1
  2270. package/types/components/fields/ListBox/ListBox.d.ts +0 -124
  2271. package/types/components/fields/ListBox/index.d.ts +0 -2
  2272. package/types/components/fields/NumberInput/NumberInput.d.ts +0 -13
  2273. package/types/components/fields/NumberInput/StepButton.d.ts +0 -4
  2274. package/types/components/fields/PasswordInput/PasswordInput.d.ts +0 -11
  2275. package/types/components/fields/Picker/Picker.d.ts +0 -73
  2276. package/types/components/fields/Picker/index.d.ts +0 -2
  2277. package/types/components/fields/RadioGroup/Radio.d.ts +0 -57
  2278. package/types/components/fields/RadioGroup/RadioGroup.d.ts +0 -22
  2279. package/types/components/fields/RadioGroup/context.d.ts +0 -13
  2280. package/types/components/fields/RadioGroup/index.d.ts +0 -2
  2281. package/types/components/fields/SearchInput/SearchInput.d.ts +0 -13
  2282. package/types/components/fields/SearchInput/index.d.ts +0 -1
  2283. package/types/components/fields/Select/Select.d.ts +0 -936
  2284. package/types/components/fields/Select/index.d.ts +0 -1
  2285. package/types/components/fields/Slider/Gradation.d.ts +0 -7
  2286. package/types/components/fields/Slider/Header.d.ts +0 -1
  2287. package/types/components/fields/Slider/HueSlider.d.ts +0 -12
  2288. package/types/components/fields/Slider/RangeSlider.d.ts +0 -10
  2289. package/types/components/fields/Slider/Slider.d.ts +0 -16
  2290. package/types/components/fields/Slider/SliderBase.d.ts +0 -18
  2291. package/types/components/fields/Slider/SliderInput.d.ts +0 -10
  2292. package/types/components/fields/Slider/SliderThumb.d.ts +0 -14
  2293. package/types/components/fields/Slider/SliderTrack.d.ts +0 -9
  2294. package/types/components/fields/Slider/elements.d.ts +0 -4986
  2295. package/types/components/fields/Slider/index.d.ts +0 -6
  2296. package/types/components/fields/Slider/types.d.ts +0 -17
  2297. package/types/components/fields/Switch/Switch.d.ts +0 -19
  2298. package/types/components/fields/Switch/index.d.ts +0 -1
  2299. package/types/components/fields/TextArea/TextArea.d.ts +0 -18
  2300. package/types/components/fields/TextArea/index.d.ts +0 -1
  2301. package/types/components/fields/TextInput/TextInput.d.ts +0 -6
  2302. package/types/components/fields/TextInput/TextInputBase.d.ts +0 -45
  2303. package/types/components/fields/TextInput/index.d.ts +0 -2
  2304. package/types/components/fields/TextInputMapper/TextInputMapper.d.ts +0 -31
  2305. package/types/components/fields/TextInputMapper/index.d.ts +0 -1
  2306. package/types/components/fields/index.d.ts +0 -19
  2307. package/types/components/form/FieldWrapper/FieldWrapper.d.ts +0 -6
  2308. package/types/components/form/FieldWrapper/extract-field-wrapper-props.d.ts +0 -9
  2309. package/types/components/form/FieldWrapper/index.d.ts +0 -3
  2310. package/types/components/form/FieldWrapper/types.d.ts +0 -39
  2311. package/types/components/form/Form/Field.d.ts +0 -15
  2312. package/types/components/form/Form/Form.d.ts +0 -32
  2313. package/types/components/form/Form/ResetButton/ResetButton.d.ts +0 -8
  2314. package/types/components/form/Form/ResetButton/index.d.ts +0 -1
  2315. package/types/components/form/Form/SubmitButton/SubmitButton.d.ts +0 -8
  2316. package/types/components/form/Form/SubmitButton/index.d.ts +0 -1
  2317. package/types/components/form/Form/SubmitError.d.ts +0 -6
  2318. package/types/components/form/Form/index.d.ts +0 -31
  2319. package/types/components/form/Form/types.d.ts +0 -17
  2320. package/types/components/form/Form/use-field/index.d.ts +0 -3
  2321. package/types/components/form/Form/use-field/types.d.ts +0 -38
  2322. package/types/components/form/Form/use-field/use-field-props.d.ts +0 -19
  2323. package/types/components/form/Form/use-field/use-field.d.ts +0 -7
  2324. package/types/components/form/Form/use-form.d.ts +0 -76
  2325. package/types/components/form/Form/validation.d.ts +0 -5
  2326. package/types/components/form/Label.d.ts +0 -16
  2327. package/types/components/form/index.d.ts +0 -4
  2328. package/types/components/form/wrapper.d.ts +0 -8
  2329. package/types/components/helpers/DisplayTransition/DisplayTransition.d.ts +0 -30
  2330. package/types/components/helpers/DisplayTransition/index.d.ts +0 -2
  2331. package/types/components/helpers/IconSwitch/IconSwitch.d.ts +0 -20
  2332. package/types/components/helpers/index.d.ts +0 -2
  2333. package/types/components/layout/Flex.d.ts +0 -4
  2334. package/types/components/layout/Flow.d.ts +0 -4
  2335. package/types/components/layout/Grid.d.ts +0 -4
  2336. package/types/components/layout/Panel.d.ts +0 -20
  2337. package/types/components/layout/Prefix.d.ts +0 -7
  2338. package/types/components/layout/ResizablePanel.d.ts +0 -14
  2339. package/types/components/layout/Space.d.ts +0 -5
  2340. package/types/components/layout/Suffix.d.ts +0 -7
  2341. package/types/components/navigation/Tabs/DraggableTabList.d.ts +0 -22
  2342. package/types/components/navigation/Tabs/EditableTitle.d.ts +0 -24
  2343. package/types/components/navigation/Tabs/TabButton.d.ts +0 -22
  2344. package/types/components/navigation/Tabs/TabDropIndicator.d.ts +0 -17
  2345. package/types/components/navigation/Tabs/TabPanel.d.ts +0 -48
  2346. package/types/components/navigation/Tabs/TabPicker.d.ts +0 -22
  2347. package/types/components/navigation/Tabs/Tabs.d.ts +0 -53
  2348. package/types/components/navigation/Tabs/TabsAction.d.ts +0 -38
  2349. package/types/components/navigation/Tabs/TabsContext.d.ts +0 -56
  2350. package/types/components/navigation/Tabs/index.d.ts +0 -3
  2351. package/types/components/navigation/Tabs/styled.d.ts +0 -5936
  2352. package/types/components/navigation/Tabs/types.d.ts +0 -271
  2353. package/types/components/navigation/Tabs/use-tab-editing.d.ts +0 -29
  2354. package/types/components/navigation/Tabs/use-tab-indicator.d.ts +0 -20
  2355. package/types/components/navigation/index.d.ts +0 -2
  2356. package/types/components/organisms/FileTabs/FileTabs.d.ts +0 -37
  2357. package/types/components/organisms/StatsCard/StatsCard.d.ts +0 -8
  2358. package/types/components/other/Calendar/Calendar.d.ts +0 -9
  2359. package/types/components/other/Calendar/CalendarCell.d.ts +0 -5
  2360. package/types/components/other/Calendar/CalendarGrid.d.ts +0 -4
  2361. package/types/components/other/Calendar/RangeCalendar.d.ts +0 -4
  2362. package/types/components/other/CloudLogo/CloudLogo.d.ts +0 -3
  2363. package/types/components/overlays/AlertDialog/AlertDialog.d.ts +0 -21
  2364. package/types/components/overlays/AlertDialog/AlertDialogApiProvider.d.ts +0 -67
  2365. package/types/components/overlays/AlertDialog/AlertDialogZone.d.ts +0 -8
  2366. package/types/components/overlays/AlertDialog/index.d.ts +0 -3
  2367. package/types/components/overlays/AlertDialog/types.d.ts +0 -39
  2368. package/types/components/overlays/Dialog/Dialog.d.ts +0 -20
  2369. package/types/components/overlays/Dialog/DialogContainer.d.ts +0 -28
  2370. package/types/components/overlays/Dialog/DialogForm.d.ts +0 -27
  2371. package/types/components/overlays/Dialog/DialogTrigger.d.ts +0 -50
  2372. package/types/components/overlays/Dialog/context.d.ts +0 -9
  2373. package/types/components/overlays/Dialog/index.d.ts +0 -5
  2374. package/types/components/overlays/Dialog/use-dialog-container.d.ts +0 -15
  2375. package/types/components/overlays/Modal/Modal.d.ts +0 -13
  2376. package/types/components/overlays/Modal/OpenTransition.d.ts +0 -7
  2377. package/types/components/overlays/Modal/Overlay.d.ts +0 -7
  2378. package/types/components/overlays/Modal/Popover.d.ts +0 -20
  2379. package/types/components/overlays/Modal/Tray.d.ts +0 -19
  2380. package/types/components/overlays/Modal/Underlay.d.ts +0 -8
  2381. package/types/components/overlays/Modal/index.d.ts +0 -6
  2382. package/types/components/overlays/Modal/types.d.ts +0 -18
  2383. package/types/components/overlays/NewNotifications/Bar/FloatingNotification.d.ts +0 -15
  2384. package/types/components/overlays/NewNotifications/Bar/NotificationsBar.d.ts +0 -21
  2385. package/types/components/overlays/NewNotifications/Bar/TransitionComponent.d.ts +0 -4
  2386. package/types/components/overlays/NewNotifications/Bar/index.d.ts +0 -1
  2387. package/types/components/overlays/NewNotifications/Dialog/NotificationsDialogContext.d.ts +0 -9
  2388. package/types/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.d.ts +0 -11
  2389. package/types/components/overlays/NewNotifications/Dialog/index.d.ts +0 -1
  2390. package/types/components/overlays/NewNotifications/Notification.d.ts +0 -18
  2391. package/types/components/overlays/NewNotifications/NotificationView/NotificationAction.d.ts +0 -13
  2392. package/types/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.d.ts +0 -4
  2393. package/types/components/overlays/NewNotifications/NotificationView/NotificationDescription.d.ts +0 -9
  2394. package/types/components/overlays/NewNotifications/NotificationView/NotificationFooter.d.ts +0 -13
  2395. package/types/components/overlays/NewNotifications/NotificationView/NotificationHeader.d.ts +0 -9
  2396. package/types/components/overlays/NewNotifications/NotificationView/NotificationIcon.d.ts +0 -9
  2397. package/types/components/overlays/NewNotifications/NotificationView/NotificationProvider.d.ts +0 -10
  2398. package/types/components/overlays/NewNotifications/NotificationView/NotificationView.d.ts +0 -10
  2399. package/types/components/overlays/NewNotifications/NotificationView/index.d.ts +0 -2
  2400. package/types/components/overlays/NewNotifications/NotificationView/types.d.ts +0 -16
  2401. package/types/components/overlays/NewNotifications/NotificationsContext/NotificationsContext.d.ts +0 -5
  2402. package/types/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.d.ts +0 -4
  2403. package/types/components/overlays/NewNotifications/NotificationsContext/index.d.ts +0 -2
  2404. package/types/components/overlays/NewNotifications/NotificationsContext/use-notifications.d.ts +0 -8
  2405. package/types/components/overlays/NewNotifications/NotificationsList/NotificationsList.d.ts +0 -21
  2406. package/types/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.d.ts +0 -5
  2407. package/types/components/overlays/NewNotifications/NotificationsList/index.d.ts +0 -2
  2408. package/types/components/overlays/NewNotifications/NotificationsList/types.d.ts +0 -22
  2409. package/types/components/overlays/NewNotifications/hooks/index.d.ts +0 -5
  2410. package/types/components/overlays/NewNotifications/hooks/types.d.ts +0 -10
  2411. package/types/components/overlays/NewNotifications/hooks/use-notification-list-item.d.ts +0 -9
  2412. package/types/components/overlays/NewNotifications/hooks/use-notifications-api.d.ts +0 -1
  2413. package/types/components/overlays/NewNotifications/hooks/use-notifications-list.d.ts +0 -12
  2414. package/types/components/overlays/NewNotifications/hooks/use-notifications-observer.d.ts +0 -2
  2415. package/types/components/overlays/NewNotifications/index.d.ts +0 -8
  2416. package/types/components/overlays/NewNotifications/types.d.ts +0 -76
  2417. package/types/components/overlays/Notification/Notification.d.ts +0 -6
  2418. package/types/components/overlays/OverlayWrapper.d.ts +0 -11
  2419. package/types/components/overlays/Toast/ToastItem.d.ts +0 -14
  2420. package/types/components/overlays/Toast/ToastProvider.d.ts +0 -8
  2421. package/types/components/overlays/Toast/index.d.ts +0 -49
  2422. package/types/components/overlays/Toast/types.d.ts +0 -66
  2423. package/types/components/overlays/Toast/useProgressToast.d.ts +0 -26
  2424. package/types/components/overlays/Toast/useToast.d.ts +0 -30
  2425. package/types/components/overlays/Tooltip/Tooltip.d.ts +0 -21
  2426. package/types/components/overlays/Tooltip/TooltipProvider.d.ts +0 -11
  2427. package/types/components/overlays/Tooltip/TooltipTrigger.d.ts +0 -53
  2428. package/types/components/overlays/Tooltip/context.d.ts +0 -22
  2429. package/types/components/overlays/Tooltip/index.d.ts +0 -3
  2430. package/types/components/portal/Portal.d.ts +0 -25
  2431. package/types/components/portal/PortalProvider.d.ts +0 -13
  2432. package/types/components/portal/index.d.ts +0 -3
  2433. package/types/components/portal/types.d.ts +0 -21
  2434. package/types/components/portal/usePortal.d.ts +0 -9
  2435. package/types/components/shared/InvalidIcon.d.ts +0 -1
  2436. package/types/components/shared/ValidIcon.d.ts +0 -1
  2437. package/types/components/status/LoadingAnimation/LoadingAnimation.d.ts +0 -5
  2438. package/types/components/status/LoadingAnimation/index.d.ts +0 -2
  2439. package/types/components/status/Spin/Cube.d.ts +0 -2
  2440. package/types/components/status/Spin/InternalSpinner.d.ts +0 -2
  2441. package/types/components/status/Spin/Spin.d.ts +0 -2
  2442. package/types/components/status/Spin/SpinsContainer.d.ts +0 -6
  2443. package/types/components/status/Spin/index.d.ts +0 -2
  2444. package/types/components/status/Spin/types.d.ts +0 -23
  2445. package/types/components/status/index.d.ts +0 -2
  2446. package/types/data/item-themes.d.ts +0 -51
  2447. package/types/data/themes.d.ts +0 -33
  2448. package/types/icons/AdjustmentsHorizontalIcon.d.ts +0 -4
  2449. package/types/icons/AdjustmentsIcon.d.ts +0 -4
  2450. package/types/icons/AiIcon.d.ts +0 -4
  2451. package/types/icons/AreaChartIcon.d.ts +0 -4
  2452. package/types/icons/BackwardIcon.d.ts +0 -4
  2453. package/types/icons/BarChartIcon.d.ts +0 -4
  2454. package/types/icons/BellFilledIcon.d.ts +0 -4
  2455. package/types/icons/BellIcon.d.ts +0 -4
  2456. package/types/icons/BooleanIcon.d.ts +0 -4
  2457. package/types/icons/CalendarEditIcon.d.ts +0 -4
  2458. package/types/icons/CalendarIcon.d.ts +0 -4
  2459. package/types/icons/CaretDownIcon.d.ts +0 -4
  2460. package/types/icons/CaretUpIcon.d.ts +0 -4
  2461. package/types/icons/ChartAreaStackedIcon.d.ts +0 -4
  2462. package/types/icons/ChartAreaStackedPercentageIcon.d.ts +0 -4
  2463. package/types/icons/ChartBarGroupedHorizontalIcon.d.ts +0 -4
  2464. package/types/icons/ChartBarGroupedIcon.d.ts +0 -4
  2465. package/types/icons/ChartBarHorizontalIcon.d.ts +0 -4
  2466. package/types/icons/ChartBarLineIcon.d.ts +0 -4
  2467. package/types/icons/ChartBarStackedHorizontalIcon.d.ts +0 -4
  2468. package/types/icons/ChartBarStackedIcon.d.ts +0 -4
  2469. package/types/icons/ChartBarStackedPercentageHorizontalIcon.d.ts +0 -4
  2470. package/types/icons/ChartBarStackedPercentageIcon.d.ts +0 -4
  2471. package/types/icons/ChartBoxPlot2Icon.d.ts +0 -4
  2472. package/types/icons/ChartBoxPlotIcon.d.ts +0 -4
  2473. package/types/icons/ChartBubbleIcon.d.ts +0 -4
  2474. package/types/icons/ChartDonut2Icon.d.ts +0 -4
  2475. package/types/icons/ChartFunnelIcon.d.ts +0 -4
  2476. package/types/icons/ChartHeatmapIcon.d.ts +0 -4
  2477. package/types/icons/ChartKPIIcon.d.ts +0 -4
  2478. package/types/icons/ChartPie2Icon.d.ts +0 -4
  2479. package/types/icons/ChartScatterIcon.d.ts +0 -4
  2480. package/types/icons/CheckCircleFilledIcon.d.ts +0 -4
  2481. package/types/icons/CheckCircleIcon.d.ts +0 -4
  2482. package/types/icons/CheckIcon.d.ts +0 -4
  2483. package/types/icons/CircleFilledIcon.d.ts +0 -4
  2484. package/types/icons/ClearIcon.d.ts +0 -4
  2485. package/types/icons/CloseCircleFilledIcon.d.ts +0 -4
  2486. package/types/icons/CloseCircleIcon.d.ts +0 -4
  2487. package/types/icons/CloseIcon.d.ts +0 -4
  2488. package/types/icons/CodeIcon.d.ts +0 -4
  2489. package/types/icons/ColumnTotalIcon.d.ts +0 -4
  2490. package/types/icons/CopyIcon.d.ts +0 -4
  2491. package/types/icons/CountIcon.d.ts +0 -4
  2492. package/types/icons/CubeIcon.d.ts +0 -4
  2493. package/types/icons/CubePauseIcon.d.ts +0 -4
  2494. package/types/icons/CubePlayIcon.d.ts +0 -4
  2495. package/types/icons/CurrencyDollarIcon.d.ts +0 -4
  2496. package/types/icons/DangerIcon.d.ts +0 -4
  2497. package/types/icons/DashboardIcon.d.ts +0 -4
  2498. package/types/icons/DatabaseIcon.d.ts +0 -4
  2499. package/types/icons/DecimalDecreaseIcon.d.ts +0 -4
  2500. package/types/icons/DecimalIncreaseIcon.d.ts +0 -4
  2501. package/types/icons/DirectionIcon.d.ts +0 -11
  2502. package/types/icons/DonutIcon.d.ts +0 -4
  2503. package/types/icons/DownIcon.d.ts +0 -4
  2504. package/types/icons/EditIcon.d.ts +0 -4
  2505. package/types/icons/ExclamationCircleFilledIcon.d.ts +0 -4
  2506. package/types/icons/ExclamationCircleIcon.d.ts +0 -4
  2507. package/types/icons/ExclamationIcon.d.ts +0 -4
  2508. package/types/icons/EyeIcon.d.ts +0 -4
  2509. package/types/icons/EyeInvisibleIcon.d.ts +0 -4
  2510. package/types/icons/FilterIcon.d.ts +0 -4
  2511. package/types/icons/FolderFilledIcon.d.ts +0 -4
  2512. package/types/icons/FolderIcon.d.ts +0 -4
  2513. package/types/icons/FolderOpenFilledIcon.d.ts +0 -4
  2514. package/types/icons/FolderOpenIcon.d.ts +0 -4
  2515. package/types/icons/ForwardIcon.d.ts +0 -4
  2516. package/types/icons/HierarchyIcon.d.ts +0 -4
  2517. package/types/icons/HierarchyOpenIcon.d.ts +0 -4
  2518. package/types/icons/Icon.d.ts +0 -9
  2519. package/types/icons/InfoCircleIcon.d.ts +0 -4
  2520. package/types/icons/InfoIcon.d.ts +0 -4
  2521. package/types/icons/KeyIcon.d.ts +0 -4
  2522. package/types/icons/LeftIcon.d.ts +0 -4
  2523. package/types/icons/LineChartIcon.d.ts +0 -4
  2524. package/types/icons/LoadingIcon.d.ts +0 -4
  2525. package/types/icons/LockFilledIcon.d.ts +0 -4
  2526. package/types/icons/LockIcon.d.ts +0 -4
  2527. package/types/icons/MoreIcon.d.ts +0 -4
  2528. package/types/icons/NotAllowedIcon.d.ts +0 -4
  2529. package/types/icons/Number123Icon.d.ts +0 -4
  2530. package/types/icons/NumberIcon.d.ts +0 -4
  2531. package/types/icons/PauseCircleFilledIcon.d.ts +0 -4
  2532. package/types/icons/PauseCircleIcon.d.ts +0 -4
  2533. package/types/icons/PauseIcon.d.ts +0 -4
  2534. package/types/icons/PercentageIcon.d.ts +0 -4
  2535. package/types/icons/PieChartIcon.d.ts +0 -4
  2536. package/types/icons/PlayCircleIcon.d.ts +0 -4
  2537. package/types/icons/PlayIcon.d.ts +0 -4
  2538. package/types/icons/PlusIcon.d.ts +0 -4
  2539. package/types/icons/ProgressBarIcon.d.ts +0 -4
  2540. package/types/icons/ReloadIcon.d.ts +0 -4
  2541. package/types/icons/ReportIcon.d.ts +0 -4
  2542. package/types/icons/ReturnIcon.d.ts +0 -4
  2543. package/types/icons/RightIcon.d.ts +0 -4
  2544. package/types/icons/RowTotalsIcon.d.ts +0 -4
  2545. package/types/icons/SchemeIcon.d.ts +0 -4
  2546. package/types/icons/SearchIcon.d.ts +0 -4
  2547. package/types/icons/SemanticQueryIcon.d.ts +0 -4
  2548. package/types/icons/SettingsIcon.d.ts +0 -4
  2549. package/types/icons/ShieldFilledIcon.d.ts +0 -4
  2550. package/types/icons/ShieldIcon.d.ts +0 -4
  2551. package/types/icons/SlashIcon.d.ts +0 -4
  2552. package/types/icons/SparklesIcon.d.ts +0 -4
  2553. package/types/icons/SqlIcon.d.ts +0 -4
  2554. package/types/icons/StatsIcon.d.ts +0 -4
  2555. package/types/icons/StopIcon.d.ts +0 -4
  2556. package/types/icons/StringIcon.d.ts +0 -4
  2557. package/types/icons/SubtotalsIcon.d.ts +0 -4
  2558. package/types/icons/SwitchIcon.d.ts +0 -4
  2559. package/types/icons/TableIcon.d.ts +0 -4
  2560. package/types/icons/ThumbsDownIcon.d.ts +0 -4
  2561. package/types/icons/ThumbsUpIcon.d.ts +0 -4
  2562. package/types/icons/ThunderboltCrossedIcon.d.ts +0 -4
  2563. package/types/icons/ThunderboltFilledIcon.d.ts +0 -4
  2564. package/types/icons/ThunderboltIcon.d.ts +0 -4
  2565. package/types/icons/TimeIcon.d.ts +0 -4
  2566. package/types/icons/TrashIcon.d.ts +0 -4
  2567. package/types/icons/UnlockIcon.d.ts +0 -4
  2568. package/types/icons/UpIcon.d.ts +0 -4
  2569. package/types/icons/UserGroupIcon.d.ts +0 -4
  2570. package/types/icons/UserIcon.d.ts +0 -4
  2571. package/types/icons/UserLockIcon.d.ts +0 -4
  2572. package/types/icons/ViewIcon.d.ts +0 -4
  2573. package/types/icons/WarningFilledIcon.d.ts +0 -4
  2574. package/types/icons/WarningIcon.d.ts +0 -4
  2575. package/types/icons/index.d.ts +0 -130
  2576. package/types/icons/wrap-icon.d.ts +0 -6
  2577. package/types/index.d.ts +0 -136
  2578. package/types/provider.d.ts +0 -17
  2579. package/types/providers/TrackingProvider.d.ts +0 -10
  2580. package/types/providers/navigation.types.d.ts +0 -24
  2581. package/types/providers/navigationAdapter.default.d.ts +0 -6
  2582. package/types/services/notification.d.ts +0 -28
  2583. package/types/shared/form.d.ts +0 -106
  2584. package/types/shared/index.d.ts +0 -4
  2585. package/types/stories/Form.legacy-stories.d.ts +0 -27
  2586. package/types/stories/FormFieldArgs.d.ts +0 -413
  2587. package/types/stories/SimpleLayout.stories.d.ts +0 -19
  2588. package/types/stories/Tasty.stories.d.ts +0 -11
  2589. package/types/stories/components/ConfirmDeletionDialogForm.d.ts +0 -6
  2590. package/types/stories/components/DialogFormApp.d.ts +0 -1
  2591. package/types/stories/components/StyledButton.d.ts +0 -7
  2592. package/types/stories/lists/baseProps.d.ts +0 -1
  2593. package/types/stories/playground/PlaygroundEditor.d.ts +0 -6
  2594. package/types/stories/playground/PlaygroundLayout.d.ts +0 -8
  2595. package/types/stories/playground/PlaygroundOutput.d.ts +0 -5
  2596. package/types/stories/playground/PlaygroundPreview.d.ts +0 -6
  2597. package/types/stories/playground/components/Button.d.ts +0 -11
  2598. package/types/stories/playground/components/Card.d.ts +0 -7
  2599. package/types/stories/playground/components/ScrollProgress.d.ts +0 -5
  2600. package/types/stories/playground/examples.d.ts +0 -7
  2601. package/types/tasty/chunks/cacheKey.d.ts +0 -26
  2602. package/types/tasty/chunks/definitions.d.ts +0 -120
  2603. package/types/tasty/chunks/index.d.ts +0 -4
  2604. package/types/tasty/chunks/renderChunk.d.ts +0 -25
  2605. package/types/tasty/config.d.ts +0 -320
  2606. package/types/tasty/debug.d.ts +0 -196
  2607. package/types/tasty/hooks/index.d.ts +0 -7
  2608. package/types/tasty/hooks/useGlobalStyles.d.ts +0 -22
  2609. package/types/tasty/hooks/useKeyframes.d.ts +0 -52
  2610. package/types/tasty/hooks/useProperty.d.ts +0 -75
  2611. package/types/tasty/hooks/useRawCSS.d.ts +0 -50
  2612. package/types/tasty/hooks/useStyles.d.ts +0 -35
  2613. package/types/tasty/index.d.ts +0 -31
  2614. package/types/tasty/injector/index.d.ts +0 -154
  2615. package/types/tasty/injector/injector.d.ts +0 -135
  2616. package/types/tasty/injector/sheet-manager.d.ts +0 -122
  2617. package/types/tasty/injector/types.d.ts +0 -139
  2618. package/types/tasty/keyframes/index.d.ts +0 -49
  2619. package/types/tasty/parser/classify.d.ts +0 -5
  2620. package/types/tasty/parser/const.d.ts +0 -6
  2621. package/types/tasty/parser/lru.d.ts +0 -16
  2622. package/types/tasty/parser/parser.d.ts +0 -21
  2623. package/types/tasty/parser/tokenizer.d.ts +0 -2
  2624. package/types/tasty/parser/types.d.ts +0 -55
  2625. package/types/tasty/pipeline/conditions.d.ts +0 -250
  2626. package/types/tasty/pipeline/exclusive.d.ts +0 -103
  2627. package/types/tasty/pipeline/index.d.ts +0 -83
  2628. package/types/tasty/pipeline/materialize.d.ts +0 -162
  2629. package/types/tasty/pipeline/parseStateKey.d.ts +0 -20
  2630. package/types/tasty/pipeline/simplify.d.ts +0 -28
  2631. package/types/tasty/plugins/index.d.ts +0 -17
  2632. package/types/tasty/plugins/okhsl-plugin.d.ts +0 -45
  2633. package/types/tasty/plugins/types.d.ts +0 -66
  2634. package/types/tasty/properties/index.d.ts +0 -100
  2635. package/types/tasty/states/index.d.ts +0 -107
  2636. package/types/tasty/static/index.d.ts +0 -39
  2637. package/types/tasty/static/tastyStatic.d.ts +0 -41
  2638. package/types/tasty/static/types.d.ts +0 -44
  2639. package/types/tasty/styles/align.d.ts +0 -9
  2640. package/types/tasty/styles/border.d.ts +0 -19
  2641. package/types/tasty/styles/boxShadow.combinator.d.ts +0 -6
  2642. package/types/tasty/styles/color.d.ts +0 -8
  2643. package/types/tasty/styles/createStyle.d.ts +0 -6
  2644. package/types/tasty/styles/dimension.d.ts +0 -16
  2645. package/types/tasty/styles/display.d.ts +0 -28
  2646. package/types/tasty/styles/fade.d.ts +0 -9
  2647. package/types/tasty/styles/fill.d.ts +0 -26
  2648. package/types/tasty/styles/flow.d.ts +0 -9
  2649. package/types/tasty/styles/gap.d.ts +0 -23
  2650. package/types/tasty/styles/height.d.ts +0 -10
  2651. package/types/tasty/styles/index.d.ts +0 -7
  2652. package/types/tasty/styles/inset.d.ts +0 -38
  2653. package/types/tasty/styles/justify.d.ts +0 -9
  2654. package/types/tasty/styles/list.d.ts +0 -12
  2655. package/types/tasty/styles/margin.d.ts +0 -16
  2656. package/types/tasty/styles/outline.d.ts +0 -23
  2657. package/types/tasty/styles/padding.d.ts +0 -16
  2658. package/types/tasty/styles/place.d.ts +0 -9
  2659. package/types/tasty/styles/predefined.d.ts +0 -109
  2660. package/types/tasty/styles/preset.d.ts +0 -33
  2661. package/types/tasty/styles/radius.d.ts +0 -8
  2662. package/types/tasty/styles/reset.d.ts +0 -6
  2663. package/types/tasty/styles/scrollbar.d.ts +0 -15
  2664. package/types/tasty/styles/shadow.d.ts +0 -8
  2665. package/types/tasty/styles/styledScrollbar.d.ts +0 -41
  2666. package/types/tasty/styles/transition.d.ts +0 -9
  2667. package/types/tasty/styles/types.d.ts +0 -462
  2668. package/types/tasty/styles/width.d.ts +0 -10
  2669. package/types/tasty/tasty.d.ts +0 -946
  2670. package/types/tasty/types.d.ts +0 -173
  2671. package/types/tasty/utils/cache-wrapper.d.ts +0 -4
  2672. package/types/tasty/utils/case-converter.d.ts +0 -1
  2673. package/types/tasty/utils/colors.d.ts +0 -1
  2674. package/types/tasty/utils/dotize.d.ts +0 -22
  2675. package/types/tasty/utils/filter-base-props.d.ts +0 -12
  2676. package/types/tasty/utils/get-display-name.d.ts +0 -2
  2677. package/types/tasty/utils/hsl-to-rgb.d.ts +0 -7
  2678. package/types/tasty/utils/is-dev-env.d.ts +0 -6
  2679. package/types/tasty/utils/merge-styles.d.ts +0 -2
  2680. package/types/tasty/utils/mod-attrs.d.ts +0 -7
  2681. package/types/tasty/utils/okhsl-to-rgb.d.ts +0 -5
  2682. package/types/tasty/utils/process-tokens.d.ts +0 -26
  2683. package/types/tasty/utils/resolve-recipes.d.ts +0 -23
  2684. package/types/tasty/utils/rgb-to-okhsl.d.ts +0 -38
  2685. package/types/tasty/utils/string.d.ts +0 -1
  2686. package/types/tasty/utils/styles.d.ts +0 -199
  2687. package/types/tasty/utils/typography.d.ts +0 -32
  2688. package/types/tasty/utils/warnings.d.ts +0 -7
  2689. package/types/tasty/zero/babel.d.ts +0 -123
  2690. package/types/tasty/zero/css-writer.d.ts +0 -41
  2691. package/types/tasty/zero/extractor.d.ts +0 -40
  2692. package/types/tasty/zero/index.d.ts +0 -18
  2693. package/types/tasty/zero/next.d.ts +0 -57
  2694. package/types/tokens/base.d.ts +0 -8
  2695. package/types/tokens/colors.d.ts +0 -22
  2696. package/types/tokens/index.d.ts +0 -41
  2697. package/types/tokens/layout.d.ts +0 -7
  2698. package/types/tokens/shadows.d.ts +0 -12
  2699. package/types/tokens/sizes.d.ts +0 -25
  2700. package/types/tokens/spacing.d.ts +0 -8
  2701. package/types/tokens/typography.d.ts +0 -30
  2702. package/types/utils/ResizeSensor.d.ts +0 -9
  2703. package/types/utils/index.d.ts +0 -9
  2704. package/types/utils/modules.d.ts +0 -1
  2705. package/types/utils/promise.d.ts +0 -1
  2706. package/types/utils/raf.d.ts +0 -17
  2707. package/types/utils/random.d.ts +0 -5
  2708. package/types/utils/range.d.ts +0 -1
  2709. package/types/utils/react/RenderCache.d.ts +0 -12
  2710. package/types/utils/react/Slots.d.ts +0 -3
  2711. package/types/utils/react/chain.d.ts +0 -4
  2712. package/types/utils/react/forwardRefWithGenerics.d.ts +0 -26
  2713. package/types/utils/react/index.d.ts +0 -21
  2714. package/types/utils/react/interactions.d.ts +0 -6
  2715. package/types/utils/react/isTextOnly.d.ts +0 -1
  2716. package/types/utils/react/mapProps.d.ts +0 -6
  2717. package/types/utils/react/mergeProps.d.ts +0 -11
  2718. package/types/utils/react/nullableValue.d.ts +0 -19
  2719. package/types/utils/react/resolveIcon.d.ts +0 -23
  2720. package/types/utils/react/sharedStore.d.ts +0 -11
  2721. package/types/utils/react/useCombinedRefs.d.ts +0 -3
  2722. package/types/utils/react/useControlledFocusVisible.d.ts +0 -10
  2723. package/types/utils/react/useEventBus.d.ts +0 -84
  2724. package/types/utils/react/useId.d.ts +0 -15
  2725. package/types/utils/react/useIsDarwin.d.ts +0 -12
  2726. package/types/utils/react/useKeySymbols.d.ts +0 -9
  2727. package/types/utils/react/useLayoutEffect.d.ts +0 -2
  2728. package/types/utils/react/useLocalStorage.d.ts +0 -33
  2729. package/types/utils/react/useMergeStyles.d.ts +0 -25
  2730. package/types/utils/react/useQaProps.d.ts +0 -19
  2731. package/types/utils/react/useViewportSize.d.ts +0 -9
  2732. package/types/utils/react/wrapNodeIfPlain.d.ts +0 -2
  2733. package/types/utils/tree.d.ts +0 -1
  2734. package/types/utils/warnings.d.ts +0 -8
  2735. package/types/version.d.ts +0 -8
  2736. /package/{tasty.config.ts → dist/tasty.config.ts} +0 -0
package/CHANGELOG.md DELETED
@@ -1,3255 +0,0 @@
1
- # @cube-dev/ui-kit
2
-
3
- ## 0.113.1
4
-
5
- ### Patch Changes
6
-
7
- - [#1032](https://github.com/cube-js/cube-ui-kit/pull/1032) [`4b57a4e8`](https://github.com/cube-js/cube-ui-kit/commit/4b57a4e868eabd411f5d16b8940c48db68c181ce) Thanks [@tenphi](https://github.com/tenphi)! - Fix Layout.Center component centering behavior by adjusting placeItems and placeContent styles.
8
-
9
- - [#1031](https://github.com/cube-js/cube-ui-kit/pull/1031) [`c2c36157`](https://github.com/cube-js/cube-ui-kit/commit/c2c36157c18ea556743bb7c0820ec18721ed5cbf) Thanks [@tenphi](https://github.com/tenphi)! - Fix okhsl color conversion in production builds by registering okhsl as a built-in parser function instead of relying on a side-effect configure() call that can be tree-shaken away.
10
-
11
- ## 0.113.0
12
-
13
- ### Minor Changes
14
-
15
- - [#1028](https://github.com/cube-js/cube-ui-kit/pull/1028) [`d3fed9e8`](https://github.com/cube-js/cube-ui-kit/commit/d3fed9e8e69c33ac091fbb97e5b0374b537084a1) Thanks [@tenphi](https://github.com/tenphi)! - Add support for arbitrary CSS function syntax in container queries. Functions like `scroll-state()` and `style()` can now be used directly in `@(...)` container queries and are passed through to CSS verbatim. The existing `# @cube-dev/ui-kit shorthand for custom property style queries remains unchanged and is still the recommended approach for querying CSS custom properties.
16
-
17
- ### Patch Changes
18
-
19
- - [#1030](https://github.com/cube-js/cube-ui-kit/pull/1030) [`6079d7b0`](https://github.com/cube-js/cube-ui-kit/commit/6079d7b0e16cb542bf8eea51d91589c693bd1504) Thanks [@tenphi](https://github.com/tenphi)! - Fix Layout.Header breadcrumbs to no longer duplicate the title. Breadcrumbs now end with a trailing slash separator, and the title appears only once as the heading below.
20
-
21
- ## 0.112.0
22
-
23
- ### Minor Changes
24
-
25
- - [#1024](https://github.com/cube-js/cube-ui-kit/pull/1024) [`b12a07ac`](https://github.com/cube-js/cube-ui-kit/commit/b12a07ac7fd355bc3dc4b9b1692033967687f6db) Thanks [@tenphi](https://github.com/tenphi)! - Add recipes feature to the tasty style system. Recipes are predefined, named style bundles registered via `configure({ recipes })` and applied to components via the `recipe` style property. Multiple recipes can be composed with commas (`recipe: 'card, elevated'`), and component styles always override recipe values. Recipes work with both runtime `tasty` and zero-runtime `tastyStatic`.
26
-
27
- ### Patch Changes
28
-
29
- - [#1027](https://github.com/cube-js/cube-ui-kit/pull/1027) [`1e2ca928`](https://github.com/cube-js/cube-ui-kit/commit/1e2ca9284e9e71471068ae146fd1798e2209e94a) Thanks [@tenphi](https://github.com/tenphi)! - Fix Item description width to properly handle responsive sizing and prevent overflow issues.
30
-
31
- ## 0.111.2
32
-
33
- ### Patch Changes
34
-
35
- - [#1021](https://github.com/cube-js/cube-ui-kit/pull/1021) [`6e677a27`](https://github.com/cube-js/cube-ui-kit/commit/6e677a27d438f91b944d387e1e6e74fb993e99ce) Thanks [@tenphi](https://github.com/tenphi)! - Fix ItemButton actions positioning for card type variant and disable pointer events when actions are not shown
36
-
37
- ## 0.111.1
38
-
39
- ### Patch Changes
40
-
41
- - [#1022](https://github.com/cube-js/cube-ui-kit/pull/1022) [`5885ac14`](https://github.com/cube-js/cube-ui-kit/commit/5885ac1422f330a8a1a79a5b1cea1fdd47db61e3) Thanks [@tenphi](https://github.com/tenphi)! - Fixed Banner component description text styling by correcting the style selector from `Label` to `Description`. Improved display style system to respect user-provided `whiteSpace` prop, allowing it to override default white-space values set by `textOverflow`.
42
-
43
- ## 0.111.0
44
-
45
- ### Minor Changes
46
-
47
- - [#1017](https://github.com/cube-js/cube-ui-kit/pull/1017) [`82100de3`](https://github.com/cube-js/cube-ui-kit/commit/82100de3dbd9957b4a2846be8e2744226f866c54) Thanks [@tenphi](https://github.com/tenphi)! - Added Banner component with Banner.Action and Banner.Link sub-components for displaying contextual notifications and alerts with support for danger, warning, note, and success themes.
48
-
49
- ### Patch Changes
50
-
51
- - [#1018](https://github.com/cube-js/cube-ui-kit/pull/1018) [`8552358e`](https://github.com/cube-js/cube-ui-kit/commit/8552358e0e03f895d63d28105a50e8d3e518edc7) Thanks [@tenphi](https://github.com/tenphi)! - Fix button colors to ensure proper contrast and consistent styling across all button variants
52
-
53
- - [#1018](https://github.com/cube-js/cube-ui-kit/pull/1018) [`8552358e`](https://github.com/cube-js/cube-ui-kit/commit/8552358e0e03f895d63d28105a50e8d3e518edc7) Thanks [@tenphi](https://github.com/tenphi)! - Fix color RGB custom property generation and @property syntax
54
-
55
- - Fix `convertColorChainToRgbChain` to correctly extract RGB values from `rgb(var(--name-color-rgb) / alpha)` patterns. Previously, `--current-color-rgb` was incorrectly set to the full `rgb()` expression instead of just the `var(--name-color-rgb)` reference.
56
- - Fix `INTERNAL_PROPERTIES` syntax: change invalid `<number> <number> <number>` syntax to valid `<number>+` for RGB triplet properties.
57
- - Automatically create companion `-rgb` custom properties when registering color `@property` definitions. Color properties (e.g., `#white`) now automatically get their `--white-color-rgb` companion with proper syntax and initial value derived from the color's initial value.
58
-
59
- - [#1020](https://github.com/cube-js/cube-ui-kit/pull/1020) [`c60c03a3`](https://github.com/cube-js/cube-ui-kit/commit/c60c03a335c590f7600d2e75bac3a409e2d7c5d9) Thanks [@tenphi](https://github.com/tenphi)! - Fixed SubmitButton to properly disable when form is submitting, preventing double submissions.
60
-
61
- - [#1016](https://github.com/cube-js/cube-ui-kit/pull/1016) [`c468f38b`](https://github.com/cube-js/cube-ui-kit/commit/c468f38b382b23043b1a46fc9c11499499e467a0) Thanks [@tenphi](https://github.com/tenphi)! - Set the default menu size inside popovers to max-content.
62
-
63
- ## 0.110.0
64
-
65
- ### Minor Changes
66
-
67
- - [#1014](https://github.com/cube-js/cube-ui-kit/pull/1014) [`a7047d35`](https://github.com/cube-js/cube-ui-kit/commit/a7047d351138b43f92bd5c464d504d05ff5fd985) Thanks [@tenphi](https://github.com/tenphi)! - Add `#primary`, `#primary-text`, `#primary-bg`, `#primary-icon`, and `#primary-disabled` semantic color tokens. Internal components now use these primary tokens instead of purple variants. The original `#purple*` tokens remain available as aliases for backward compatibility.
68
-
69
- ### Patch Changes
70
-
71
- - [#1012](https://github.com/cube-js/cube-ui-kit/pull/1012) [`cd316981`](https://github.com/cube-js/cube-ui-kit/commit/cd3169814b6fa916caf833b7cf27d8e6fa5fc6a0) Thanks [@tenphi](https://github.com/tenphi)! - Fix scrollbar color when scrollbar is hidden and add scrollbar color tokens (`#scrollbar-thumb-color`, `#scrollbar-track-color`)
72
-
73
- - [#1013](https://github.com/cube-js/cube-ui-kit/pull/1013) [`9da597e0`](https://github.com/cube-js/cube-ui-kit/commit/9da597e042170552526c3a09f7a5a33355214758) Thanks [@tenphi](https://github.com/tenphi)! - Allow partial chunking for styles with `@starting-style`: top-level styles are still combined into a single chunk (required by CSS cascade), but sub-element styles are now kept in a separate chunk for better caching.
74
-
75
- ## 0.109.0
76
-
77
- ### Minor Changes
78
-
79
- - [#1010](https://github.com/cube-js/cube-ui-kit/pull/1010) [`9f35c79e`](https://github.com/cube-js/cube-ui-kit/commit/9f35c79e171255e8a057a732e0247c5afd7a439c) Thanks [@tenphi](https://github.com/tenphi)! - - Fix Layout component z-index stacking by using DOM order instead of explicit z-index values
80
- - Add `doNotOverflow` prop to Layout component to control overflow behavior
81
- - **BREAKING**: Layout root element now defaults to `overflow: visible` instead of `overflow: hidden`. Use `doNotOverflow` prop to restore the previous behavior.
82
-
83
- ## 0.108.5
84
-
85
- ### Patch Changes
86
-
87
- - [#1009](https://github.com/cube-js/cube-ui-kit/pull/1009) [`f6efe1dc`](https://github.com/cube-js/cube-ui-kit/commit/f6efe1dc1c1b5795d7d90bf0c7f5b9df3be5f43c) Thanks [@tenphi](https://github.com/tenphi)! - Fix TextArea controlled state handling to prevent cursor position reset when typing
88
-
89
- - [#1006](https://github.com/cube-js/cube-ui-kit/pull/1006) [`93a65944`](https://github.com/cube-js/cube-ui-kit/commit/93a65944a0697e1b4c6a7a0288b397cebbdad9f6) Thanks [@tenphi](https://github.com/tenphi)! - Fix button reset styles by moving appearance, touchAction, and textDecoration from global reset to individual component styles
90
-
91
- ## 0.108.4
92
-
93
- ### Patch Changes
94
-
95
- - [#1004](https://github.com/cube-js/cube-ui-kit/pull/1004) [`7032020f`](https://github.com/cube-js/cube-ui-kit/commit/7032020f6ce7676a8992f0bf932ed581a4faa533) Thanks [@tenphi](https://github.com/tenphi)! - Fix style leaking in LayoutHeader and TextInput components by adding more specific CSS selectors to prevent styles from affecting unintended child elements.
96
-
97
- ## 0.108.3
98
-
99
- ### Patch Changes
100
-
101
- - [#1002](https://github.com/cube-js/cube-ui-kit/pull/1002) [`0890e022`](https://github.com/cube-js/cube-ui-kit/commit/0890e022fe1d57907dde6069993cf12821b98826) Thanks [@tenphi](https://github.com/tenphi)! - Fixed a bug where styles would intermittently disappear from elements after garbage collection. The issue occurred when multiple CSS rules were deleted at non-contiguous indices, causing index corruption for remaining rules.
102
-
103
- ## 0.108.2
104
-
105
- ### Patch Changes
106
-
107
- - [#997](https://github.com/cube-js/cube-ui-kit/pull/997) [`7b19f4d5`](https://github.com/cube-js/cube-ui-kit/commit/7b19f4d55c04ad38444e3dc7615e25412434d22b) Thanks [@tenphi](https://github.com/tenphi)! - Add missing bold weight tokens in presets.
108
-
109
- ## 0.108.1
110
-
111
- ### Patch Changes
112
-
113
- - [#994](https://github.com/cube-js/cube-ui-kit/pull/994) [`3516a129`](https://github.com/cube-js/cube-ui-kit/commit/3516a129658f8dac4e064c0df7c9ee78fa9b03eb) Thanks [@tenphi](https://github.com/tenphi)! - Export tasty.config.ts
114
-
115
- - [#995](https://github.com/cube-js/cube-ui-kit/pull/995) [`cbc20da3`](https://github.com/cube-js/cube-ui-kit/commit/cbc20da3c86ab6bdf8d2f37af4e199afa6aff057) Thanks [@tenphi](https://github.com/tenphi)! - Fix unnecessary re-renders in Tabs component:
116
-
117
- - Fix actions width measurement effect dependency
118
- - Stabilize `getAllowedDropOperations` callback in drag/drop hooks
119
-
120
- Fix ItemButton missing hover/press/focus states by not overriding actionProps.mods
121
-
122
- - [#994](https://github.com/cube-js/cube-ui-kit/pull/994) [`3516a129`](https://github.com/cube-js/cube-ui-kit/commit/3516a129658f8dac4e064c0df7c9ee78fa9b03eb) Thanks [@tenphi](https://github.com/tenphi)! - Migrate all `@keyframes` definitions to use object format for style values instead of raw CSS strings. This ensures consistent token processing and better type safety.
123
-
124
- ## 0.108.0
125
-
126
- ### Minor Changes
127
-
128
- - [#988](https://github.com/cube-js/cube-ui-kit/pull/988) [`77b87cec`](https://github.com/cube-js/cube-ui-kit/commit/77b87cec90dbb00af09a07c0d7717bc89aa647f2) Thanks [@tenphi](https://github.com/tenphi)! - Add HueSlider component for selecting hue values (0-359) with a rainbow gradient track using okhsl color space. The thumb dynamically reflects the current hue color.
129
-
130
- Add `trackStyles`, `thumbStyles`, and `thumbTokens` props to the Slider component to enable customization of track and thumb elements. The thumb fill color can be customized via `#slider-thumb` and `#slider-thumb-hovered` color tokens.
131
-
132
- - [#993](https://github.com/cube-js/cube-ui-kit/pull/993) [`8b539949`](https://github.com/cube-js/cube-ui-kit/commit/8b5399490a7fbc6d3e4d64726717a419125f8e6f) Thanks [@tenphi](https://github.com/tenphi)! - Add support for boolean `true` values in color tokens. When `true` is provided for a color token (`#name`), it converts to `transparent`. This works in:
133
-
134
- - Component styles: `#overlay: { '': true, ':hover': '#purple' }`
135
- - Tokens prop: `<Element tokens={{ '#overlay': true }} />`
136
- - Global config: `configure({ tokens: { '#surface': true } })`
137
-
138
- Boolean `false` skips the token entirely (no CSS output).
139
-
140
- - [#993](https://github.com/cube-js/cube-ui-kit/pull/993) [`8b539949`](https://github.com/cube-js/cube-ui-kit/commit/8b5399490a7fbc6d3e4d64726717a419125f8e6f) Thanks [@tenphi](https://github.com/tenphi)! - Rename `showActionsOnHover` prop to `autoHideActions` in Item, ItemButton, and Tabs components. The new name better reflects the behavior: actions are hidden by default and revealed on hover, focus, or when an action is pressed.
141
-
142
- - [#988](https://github.com/cube-js/cube-ui-kit/pull/988) [`77b87cec`](https://github.com/cube-js/cube-ui-kit/commit/77b87cec90dbb00af09a07c0d7717bc89aa647f2) Thanks [@tenphi](https://github.com/tenphi)! - Allow passing `false` to sub-element keys in tasty styles to remove all styles for that sub-element when extending/wrapping styled components.
143
-
144
- ```tsx
145
- const CustomTable = tasty(Table, {
146
- Cell: false, // Removes all Cell styles from the base component
147
- });
148
- ```
149
-
150
- Nullish values (`null`, `undefined`) are treated as ignored (no change to styles).
151
-
152
- ### Patch Changes
153
-
154
- - [#989](https://github.com/cube-js/cube-ui-kit/pull/989) [`6fb56a68`](https://github.com/cube-js/cube-ui-kit/commit/6fb56a6865ccf388f6d6cc0afd8404d9d463d800) Thanks [@tenphi](https://github.com/tenphi)! - Fix nested Layout panels affecting parent layouts by splitting context into actions and state, and add LayoutContextReset component to isolate nested panel contexts.
155
-
156
- Layout.Panel now uses React portals for rendering, which allows panels to work correctly even when wrapped in custom components. This removes the need for child detection heuristics and ensures reliable panel positioning regardless of component composition.
157
-
158
- - [#992](https://github.com/cube-js/cube-ui-kit/pull/992) [`945375c4`](https://github.com/cube-js/cube-ui-kit/commit/945375c4bdf22e5c8214fbac8bf3a84e40f181a8) Thanks [@tenphi](https://github.com/tenphi)! - Update Tabs component API to use `string` type instead of `Key` for all key-related props and callbacks. This aligns the public API with the internal implementation which already converts keys to strings for React Aria compatibility.
159
-
160
- - [#993](https://github.com/cube-js/cube-ui-kit/pull/993) [`8b539949`](https://github.com/cube-js/cube-ui-kit/commit/8b5399490a7fbc6d3e4d64726717a419125f8e6f) Thanks [@tenphi](https://github.com/tenphi)! - Improve Tabs component styling with better element selectors and enhanced visual appearance. Updated shadow handling for file type tabs and refined scrollbar positioning in Layout components.
161
-
162
- - [#993](https://github.com/cube-js/cube-ui-kit/pull/993) [`8b539949`](https://github.com/cube-js/cube-ui-kit/commit/8b5399490a7fbc6d3e4d64726717a419125f8e6f) Thanks [@tenphi](https://github.com/tenphi)! - Add styling props to Tabs component for sub-element customization: `tabListPadding`, `tabListStyles`, `prefixStyles`, and `suffixStyles`.
163
-
164
- - [#993](https://github.com/cube-js/cube-ui-kit/pull/993) [`8b539949`](https://github.com/cube-js/cube-ui-kit/commit/8b5399490a7fbc6d3e4d64726717a419125f8e6f) Thanks [@tenphi](https://github.com/tenphi)! - Add `useMergeStyles` hook for merging base styles with sub-element style props. Simplifies accepting props like `tabListStyles`, `prefixStyles` that merge into `styles.TabList`, `styles.Prefix`.
165
-
166
- ## 0.107.0
167
-
168
- ### Minor Changes
169
-
170
- - [#986](https://github.com/cube-js/cube-ui-kit/pull/986) [`43804e80`](https://github.com/cube-js/cube-ui-kit/commit/43804e8053815d2f060572307e4547253e544fe9) Thanks [@tenphi](https://github.com/tenphi)! - Improved sub-element selector affix (`# @cube-dev/ui-kit) with new capabilities:
171
-
172
- - **Compact syntax**: No spaces required around combinators (`'>Body>Row>'` now works)
173
- - **Pseudo-elements on root**: Use `$: '::before'` to style root pseudo-elements
174
- - **Pseudo on sub-elements**: Use `@` placeholder for pseudo on keyed elements (`$: '>@:hover'`)
175
- - **Multiple selectors**: Comma-separated patterns (`$: '::before, ::after'`)
176
- - **Sibling combinators**: Support `+` and `~` after elements (`$: '>Item+'`)
177
- - **Validation**: Standalone `+` or `~` warns and skips (targets outside root scope)
178
-
179
- ## 0.106.1
180
-
181
- ### Patch Changes
182
-
183
- - [#984](https://github.com/cube-js/cube-ui-kit/pull/984) [`ee37ff63`](https://github.com/cube-js/cube-ui-kit/commit/ee37ff63fb3fe9151586ca4148ecff888827573f) Thanks [@tenphi](https://github.com/tenphi)! - Add qa prop to Toast.
184
-
185
- ## 0.106.0
186
-
187
- ### Minor Changes
188
-
189
- - [#983](https://github.com/cube-js/cube-ui-kit/pull/983) [`48bc9c70`](https://github.com/cube-js/cube-ui-kit/commit/48bc9c70cb7777c4b7b728eb1ee3eb78bfe0192c) Thanks [@tenphi](https://github.com/tenphi)! - Add `#current` color token that maps to CSS `currentcolor` keyword. Supports opacity using `color-mix`:
190
-
191
- - `#current` → `currentcolor`
192
- - `#current.5` → `color-mix(in oklab, currentcolor 50%, transparent)`
193
- - `#current.$opacity` → `color-mix(in oklab, currentcolor calc(var(--opacity) * 100%), transparent)`
194
-
195
- Note: `#current` is a reserved token and cannot be overridden via `configure({ tokens: {...} })`. Using `#current` to define other color tokens will log a warning and be ignored.
196
-
197
- - [#983](https://github.com/cube-js/cube-ui-kit/pull/983) [`48bc9c70`](https://github.com/cube-js/cube-ui-kit/commit/48bc9c70cb7777c4b7b728eb1ee3eb78bfe0192c) Thanks [@tenphi](https://github.com/tenphi)! - Add custom property opacity syntax for color tokens. You can now use `$name` syntax to reference a CSS custom property as the opacity value:
198
-
199
- - `#purple.$disabled` → `rgb(var(--purple-color-rgb) / var(--disabled))`
200
- - `#dark-05.$my-opacity` → `rgb(var(--dark-05-color-rgb) / var(--my-opacity))`
201
-
202
- This allows for dynamic opacity values that can be controlled via CSS custom properties.
203
-
204
- ### Patch Changes
205
-
206
- - [#980](https://github.com/cube-js/cube-ui-kit/pull/980) [`9e6cd5da`](https://github.com/cube-js/cube-ui-kit/commit/9e6cd5dab2d290c0882d145c5c2d375c2a71fa24) Thanks [@tenphi](https://github.com/tenphi)! - Allow passing empty values (null, undefined, false, or empty object) to `useProgressToast` hook to immediately remove any existing toast without delay.
207
-
208
- - [#980](https://github.com/cube-js/cube-ui-kit/pull/980) [`9e6cd5da`](https://github.com/cube-js/cube-ui-kit/commit/9e6cd5dab2d290c0882d145c5c2d375c2a71fa24) Thanks [@tenphi](https://github.com/tenphi)! - Add automatic theme-based icons to declarative `<Toast>` component, matching the behavior of `useToast` and `useProgressToast` hooks. Consolidate icon logic into a shared `getThemeIcon` helper.
209
-
210
- ## 0.105.1
211
-
212
- ### Patch Changes
213
-
214
- - [#978](https://github.com/cube-js/cube-ui-kit/pull/978) [`744e9696`](https://github.com/cube-js/cube-ui-kit/commit/744e969674d2e4fd4b867357affdbdeb0128d83e) Thanks [@tenphi](https://github.com/tenphi)! - Add default theme-based icons to `useProgressToast` result states, matching the behavior of `toast.*()` API.
215
-
216
- ## 0.105.0
217
-
218
- ### Minor Changes
219
-
220
- - [#977](https://github.com/cube-js/cube-ui-kit/pull/977) [`18cb18bd`](https://github.com/cube-js/cube-ui-kit/commit/18cb18bd965bf46064335d9340debcae82379fe6) Thanks [@tenphi](https://github.com/tenphi)! - Add support for dual-color `fill` style. When two color tokens are provided (e.g., `fill="#primary #secondary"`), the first color is applied as `background-color` and the second as a `background-image` gradient layer via a registered CSS custom property (`--tasty-second-fill-color`), enabling smooth CSS transitions. Explicit `backgroundImage` or `background` properties override the second color.
221
-
222
- - [#975](https://github.com/cube-js/cube-ui-kit/pull/975) [`38152302`](https://github.com/cube-js/cube-ui-kit/commit/38152302f04338fd67084c18fa15b1865583ca1e) Thanks [@tenphi](https://github.com/tenphi)! - Replaced the toast system with a new implementation:
223
-
224
- - **New API**: `useToast()` hook with `toast()`, `toast.success()`, `toast.danger()`, `toast.warning()`, and `toast.note()` methods
225
- - **Progress toasts**: `useProgressToast()` hook for loading states that persist while `isLoading` is true
226
- - **Declarative usage**: `<Toast>` and `<Toast.Progress>` components for declarative toast rendering
227
- - **Default icons**: Each theme now has a predefined icon (can be overridden)
228
- - **Collapse on hover**: Toasts collapse when hovering the toast area to reveal content behind
229
- - **Deduplication**: Toasts with the same content are deduplicated automatically
230
-
231
- **Breaking changes:**
232
-
233
- - Removed `useToastsApi` hook - migrate to `useToast`
234
- - Removed `attention` theme - use `warning` instead
235
- - Renamed `header` prop to `title`
236
-
237
- - [#974](https://github.com/cube-js/cube-ui-kit/pull/974) [`402d5618`](https://github.com/cube-js/cube-ui-kit/commit/402d56186104ebcdbba3841ef1a03804d33e8d5f) Thanks [@tenphi](https://github.com/tenphi)! - Add support for OKHSL color functions in style parsing and fix CSSWriter.add() method.
238
-
239
- ## 0.104.0
240
-
241
- ### Minor Changes
242
-
243
- - [#972](https://github.com/cube-js/cube-ui-kit/pull/972) [`c703a035`](https://github.com/cube-js/cube-ui-kit/commit/c703a03573a509e79fa995d28e2efde09289f32b) Thanks [@tenphi](https://github.com/tenphi)! - Add `warning` and `note` themes to Button, Item, and ItemAction components. These themes are now available for all standard types (primary, secondary, outline, neutral, clear, link, item) in addition to the existing card type support.
244
-
245
- - [#972](https://github.com/cube-js/cube-ui-kit/pull/972) [`c703a035`](https://github.com/cube-js/cube-ui-kit/commit/c703a03573a509e79fa995d28e2efde09289f32b) Thanks [@tenphi](https://github.com/tenphi)! - Add `Tabs.Action` component for prefix/suffix slot actions with automatic dividers and size inheritance from Tabs context
246
-
247
- - [#972](https://github.com/cube-js/cube-ui-kit/pull/972) [`c703a035`](https://github.com/cube-js/cube-ui-kit/commit/c703a03573a509e79fa995d28e2efde09289f32b) Thanks [@tenphi](https://github.com/tenphi)! - Add `tabPickerPosition` and `scrollArrowsPosition` props to Tabs component for controlling where the tab picker and scroll arrows are rendered. Both accept `'prefix' | 'suffix'` with `'suffix'` as default.
248
-
249
- - [#972](https://github.com/cube-js/cube-ui-kit/pull/972) [`c703a035`](https://github.com/cube-js/cube-ui-kit/commit/c703a03573a509e79fa995d28e2efde09289f32b) Thanks [@tenphi](https://github.com/tenphi)! - Add `showScrollArrows` prop to Tabs component for left/right navigation arrows that scroll overflowed tabs. Supports `true`, `false`, and `'auto'` (show only when overflow exists).
250
-
251
- - [#972](https://github.com/cube-js/cube-ui-kit/pull/972) [`c703a035`](https://github.com/cube-js/cube-ui-kit/commit/c703a03573a509e79fa995d28e2efde09289f32b) Thanks [@tenphi](https://github.com/tenphi)! - Remove `panel` tab type and unify its visual style into the `file` type. The `file` type now uses border bottom highlight on selection instead of fill highlight.
252
-
253
- ## 0.103.0
254
-
255
- ### Minor Changes
256
-
257
- - [#968](https://github.com/cube-js/cube-ui-kit/pull/968) [`b1322fdc`](https://github.com/cube-js/cube-ui-kit/commit/b1322fdcc7ea52ab7552100ef738ff7e2a4e3d04) Thanks [@tenphi](https://github.com/tenphi)! - Added drag-and-drop reordering and inline editing capabilities to Tabs component. Tabs can now be reordered by dragging, and tab titles can be edited inline by double-clicking. Added `showTabPicker` prop to display a dropdown menu for quick tab navigation when tabs overflow. Added `TabType` and `TabSize` type exports. Improved tab indicator positioning and state management. Added disabled state support to Item and ItemButton components.
258
-
259
- ### Patch Changes
260
-
261
- - [#971](https://github.com/cube-js/cube-ui-kit/pull/971) [`08fa1670`](https://github.com/cube-js/cube-ui-kit/commit/08fa167064f5063fd6d379cc2b9d5c643d1696d1) Thanks [@tenphi](https://github.com/tenphi)! - Fixed inset, padding, and margin style handlers to correctly assign values to directions in the order they appear. Previously, `inset: 'right 1x top 0'` would incorrectly map values based on direction position rather than input order. Now values are correctly assigned: first value to first direction, second value to second direction, etc.
262
-
263
- ## 0.102.0
264
-
265
- ### Minor Changes
266
-
267
- - [#966](https://github.com/cube-js/cube-ui-kit/pull/966) [`3244c5d9`](https://github.com/cube-js/cube-ui-kit/commit/3244c5d958e4f1cbcb5637a205ca5cf64d3a9fa9) Thanks [@tenphi](https://github.com/tenphi)! - Refactor color system to use OKHSL format with unified constants
268
-
269
- ### What's changed:
270
-
271
- - Converted all color tokens from RGB to OKHSL format for perceptually uniform color manipulation
272
- - Added color constants (`PURPLE_HUE`, `DANGER_HUE`, `MAIN_SATURATION`, etc.) for consistent color values across themes
273
- - Moved color conversion utilities (`hslToRgb`, `okhslToRgb`) to separate files (`hsl-to-rgb.ts`, `okhsl-to-rgb.ts`)
274
- - Renamed utility files to kebab-case for consistency (`filter-base-props.ts`, `get-display-name.ts`, etc.)
275
- - Removed unused color tokens (`#draft`, `#dark-75`, `#pink-02`, `#pink-8`, `#pink-9`)
276
- - Fixed hardcoded RGB value in `FileTabs` component to use `#border` token
277
-
278
- ### Why:
279
-
280
- OKHSL provides perceptually uniform color space, making it easier to create consistent color variations. Using constants ensures all theme colors maintain consistent saturation and lightness values.
281
-
282
- ### Technical details:
283
-
284
- - All color tokens now use `okhsl()` format
285
- - Color conversion utilities properly handle OKHSL → RGB conversion for CSS variable generation
286
- - Internal file organization improved with consistent naming conventions
287
-
288
- - [#966](https://github.com/cube-js/cube-ui-kit/pull/966) [`3244c5d9`](https://github.com/cube-js/cube-ui-kit/commit/3244c5d958e4f1cbcb5637a205ca5cf64d3a9fa9) Thanks [@tenphi](https://github.com/tenphi)! - Add warning theme and rename note theme across components
289
-
290
- ### What's changed:
291
-
292
- - Added `warning` theme support to `Badge`, `Tag`, and `Item` components
293
- - Renamed previous `note` theme to `warning` (yellow/amber) across the codebase
294
- - Added new `note` theme (violet) for informational content, available for `card` type items
295
- - Updated component documentation and stories to reflect new themes
296
- - Updated notification icons to use `warning` theme instead of `note`
297
-
298
- ### Components affected:
299
-
300
- - `Badge`: Added `warning` theme option
301
- - `Tag`: Added `warning` theme option
302
- - `Item`: Added `warning.card` and `note.card` theme variants
303
- - `NotificationIcon`: Changed default/attention from `note` to `warning` colors
304
-
305
- ### Migration:
306
-
307
- - If you were using `theme="note"` on `Badge` or `Tag` components, change to `theme="warning"` for the same yellow/amber appearance
308
- - For violet informational cards, use `type="card" theme="note"` on `Item` component
309
- - Notification icons now use warning colors by default (previously note colors)
310
-
311
- ## 0.101.0
312
-
313
- ### Minor Changes
314
-
315
- - [#964](https://github.com/cube-js/cube-ui-kit/pull/964) [`1a2388be`](https://github.com/cube-js/cube-ui-kit/commit/1a2388be161ab19f55a7290792bc6f6113c2a327) Thanks [@tenphi](https://github.com/tenphi)! - **Breaking:** `ItemAction` now inherits `isDisabled` state from parent `Item` or `ItemButton` via context. When the parent component is disabled, all nested `ItemAction` components are automatically disabled.
316
-
317
- To keep an action enabled when the parent is disabled, explicitly set `isDisabled={false}` on the `ItemAction`:
318
-
319
- ```jsx
320
- <Item
321
- isDisabled
322
- actions={
323
- <>
324
- <ItemAction icon={<IconEdit />} tooltip="Disabled with parent" />
325
- <ItemAction
326
- icon={<IconTrash />}
327
- tooltip="Still enabled"
328
- isDisabled={false}
329
- />
330
- </>
331
- }
332
- >
333
- Disabled item with one enabled action
334
- </Item>
335
- ```
336
-
337
- ## 0.100.0
338
-
339
- ### Minor Changes
340
-
341
- - [#960](https://github.com/cube-js/cube-ui-kit/pull/960) [`d89a036e`](https://github.com/cube-js/cube-ui-kit/commit/d89a036e578591fe20f22a21a0c37c41f9c9daf5) Thanks [@tenphi](https://github.com/tenphi)! - Add `@properties` support for defining CSS `@property` at-rules in tasty styles.
342
-
343
- **New features:**
344
-
345
- - Define CSS custom properties with `@properties` in styles using token syntax (`$name`, `#name`)
346
- - Color tokens (`#name`) auto-set `syntax: '<color>'` and default `initialValue: 'transparent'`
347
- - Double-prefix syntax (`$name`, `##name`) for referencing property names in transitions and animations
348
- - `useProperty()` hook and `injector.property()` now accept token syntax
349
- - Global properties can be configured via `configure({ properties: {...} })`
350
-
351
- **Example:**
352
-
353
- ```jsx
354
- // Global properties (optional)
355
- configure({
356
- properties: {
357
- $rotation: { syntax: "<angle>", initialValue: "0deg" },
358
- },
359
- });
360
-
361
- // Local properties in styles
362
- const Component = tasty({
363
- styles: {
364
- "@properties": {
365
- $scale: { syntax: "<number>", initialValue: 1 },
366
- "#accent": { initialValue: "purple" }, // syntax: '<color>' auto-set
367
- },
368
- transform: "rotate($rotation) scale($scale)",
369
- transition: "$rotation 0.3s, $scale 0.2s", // outputs: --rotation 0.3s, --scale 0.2s
370
- },
371
- });
372
- ```
373
-
374
- - [#960](https://github.com/cube-js/cube-ui-kit/pull/960) [`d89a036e`](https://github.com/cube-js/cube-ui-kit/commit/d89a036e578591fe20f22a21a0c37c41f9c9daf5) Thanks [@tenphi](https://github.com/tenphi)! - Add color token support to `fade` style property. You can now specify custom transparent and opaque colors for the gradient mask, and use multiple comma-separated groups to apply different colors per direction.
375
-
376
- Add multi-group support to `border` style property. Multiple comma-separated groups allow cascading border definitions where later groups override earlier ones for conflicting directions (e.g., `border="1bw #red, 2bw #blue top"`).
377
-
378
- - [#962](https://github.com/cube-js/cube-ui-kit/pull/962) [`09db7bee`](https://github.com/cube-js/cube-ui-kit/commit/09db7bee295e5df4ebe141a3ed9dc68294708ed5) Thanks [@tenphi](https://github.com/tenphi)! - Improve background style handling in Tasty. Add `image` style for background images. The `fill` handler now supports all background CSS properties (`backgroundPosition`, `backgroundSize`, `backgroundRepeat`, `backgroundAttachment`, `backgroundOrigin`, `backgroundClip`). Add `background` and `image` transition semantic names. Deprecate `backgroundColor`, `backgroundImage`, and `background` styles in favor of `fill`, `image`, and separate background properties.
379
-
380
- - [#960](https://github.com/cube-js/cube-ui-kit/pull/960) [`d89a036e`](https://github.com/cube-js/cube-ui-kit/commit/d89a036e578591fe20f22a21a0c37c41f9c9daf5) Thanks [@tenphi](https://github.com/tenphi)! - Added `useKeyframes` and `useProperty` React hooks for declarative CSS @keyframes and @property definitions. These hooks follow the same patterns as existing hooks like `useStyles` and `useRawCSS`, using `useInsertionEffect` for proper style injection and cleanup.
381
-
382
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - **Breaking:** Changed `outline` style syntax to use slash separator for offset: `outline: '2px solid #red / 4px'` instead of the previous space-separated format. Also added `outlineOffset` as a direct style prop.
383
-
384
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - Added slash separator support in style parser. Style values can now use `/` surrounded by whitespace to define parts (e.g., `'ellipsis / 3'`, `'2px solid #red / 4px'`). Each part is available via `groups[n].parts` array for style handlers.
385
-
386
- - [#960](https://github.com/cube-js/cube-ui-kit/pull/960) [`d89a036e`](https://github.com/cube-js/cube-ui-kit/commit/d89a036e578591fe20f22a21a0c37c41f9c9daf5) Thanks [@tenphi](https://github.com/tenphi)! - Added `Tabs` component for organizing content into multiple panels with full accessibility support via React Aria. The component supports multiple visual styles (default, panel, radio), tab deletion, inline title editing, lazy rendering with content caching, and proper integration with Layout components for stretching panels to fill remaining space.
387
-
388
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - **Breaking:** Enhanced `textOverflow` style handler with automatic setup for text truncation. Previously, `textOverflow: 'ellipsis'` only set `text-overflow: ellipsis` (which doesn't work without `overflow: hidden`). Now it automatically adds `overflow: hidden` and `white-space: nowrap` for single-line ellipsis, making it actually functional.
389
-
390
- New features:
391
-
392
- - `textOverflow: 'ellipsis'` - single-line truncation with ellipsis (now works correctly)
393
- - `textOverflow: 'ellipsis / 3'` - multi-line truncation (3 lines) with `-webkit-line-clamp`
394
- - `textOverflow: 'clip'` - single-line clip with `overflow: hidden`
395
-
396
- The `displayStyle` handler now manages `display`, `hide`, `textOverflow`, `overflow`, and `whiteSpace` together. User-provided `overflow` and `whiteSpace` values take precedence over auto-generated ones from `textOverflow`.
397
-
398
- - [#958](https://github.com/cube-js/cube-ui-kit/pull/958) [`22e0adc7`](https://github.com/cube-js/cube-ui-kit/commit/22e0adc7e3dadc1a22cb30541934431c52ffe761) Thanks [@tenphi](https://github.com/tenphi)! - ### Added
399
-
400
- - Predefined tokens in `configure()`: Define reusable tokens (`$name` for values, `#name` for colors) that are replaced during style parsing. Unlike component-level `tokens` prop, predefined tokens are baked into the generated CSS for better performance and consistency.
401
-
402
- ```ts
403
- configure({
404
- tokens: {
405
- $spacing: "2x",
406
- "$card-padding": "4x",
407
- "#accent": "#purple",
408
- },
409
- });
410
-
411
- // Use in styles - tokens are replaced at parse time
412
- const Card = tasty({
413
- styles: {
414
- padding: "$card-padding", // → calc(4 * var(--gap))
415
- fill: "#accent", // → var(--purple-color)
416
- },
417
- });
418
- ```
419
-
420
- - Plugins can now provide predefined tokens via the `tokens` property in `TastyPlugin`.
421
-
422
- ### Patch Changes
423
-
424
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - Aligned babel plugin configuration interface with runtime `TastyConfig`. The `TastyZeroConfig` now supports `plugins` and `parserCacheSize` options, and uses the shared `configure()` function internally.
425
-
426
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - Reorganized internal style chunk definitions. Display-related styles (`display`, `hide`, `textOverflow`, `overflow`, `whiteSpace`, `scrollbar`) are now in a DISPLAY chunk. Layout styles (`flow`, `gap`, grid/flex properties) are in a separate LAYOUT chunk.
427
-
428
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - Consolidated style handlers to reduce redundant handler registrations:
429
-
430
- - `widthStyle` now handles `minWidth`, `maxWidth` directly
431
- - `heightStyle` now handles `minHeight`, `maxHeight` directly
432
- - `presetStyle` now handles all typography props (`fontSize`, `lineHeight`, `fontWeight`, `letterSpacing`, `textTransform`, `fontStyle`, `fontFamily`, `font`) with or without `preset` defined
433
-
434
- Font props support number values: `fontSize={14}` → `font-size: 14px`, `fontWeight={700}` → `font-weight: 700`.
435
-
436
- The `font` prop has special handling: `font="monospace"` → `var(--monospace-font)`, `font={true}` → `var(--font)`, `font="CustomFont"` → `CustomFont, var(--font)`. The `fontFamily` prop is a direct value without fallback.
437
-
438
- - [#959](https://github.com/cube-js/cube-ui-kit/pull/959) [`ed477654`](https://github.com/cube-js/cube-ui-kit/commit/ed4776543ce0cf2f02fd629f149100d7d0a8f9ec) Thanks [@tenphi](https://github.com/tenphi)! - Add custom style handlers API via `configure()` and plugins. Handlers transform style properties into CSS declarations and replace built-in handlers for the same style name. Export `styleHandlers` object for delegating to built-in behavior when extending.
439
-
440
- - [#961](https://github.com/cube-js/cube-ui-kit/pull/961) [`46e84833`](https://github.com/cube-js/cube-ui-kit/commit/46e8483379a8260888e00f682831093daaac3813) Thanks [@tenphi](https://github.com/tenphi)! - Fix FilterListBox custom value styles not appearing until hover and leaking to other items after filter is cleared. The issue was caused by ListBox virtualization using index-based keys instead of actual item keys, causing React to incorrectly reuse DOM elements. Added `getItemKey` to the virtualizer to use actual item keys for proper DOM reconciliation.
441
-
442
- Additionally, when `allowsCustomValue` is enabled and there are filtered items visible, the custom value option is now visually separated from the filtered results using a section divider. The visibility check for filtered items now also considers previously-added custom values, ensuring the separator is shown when a search term matches an existing custom item.
443
-
444
- - [#963](https://github.com/cube-js/cube-ui-kit/pull/963) [`290cfa6c`](https://github.com/cube-js/cube-ui-kit/commit/290cfa6c9b76544bb658723dc6b7ff0f4d003f75) Thanks [@tenphi](https://github.com/tenphi)! - Refactored `inset` style handler with smart output strategy:
445
-
446
- - When using the `inset` prop or `insetBlock`/`insetInline` props: outputs `inset` CSS shorthand for efficiency
447
- - When using individual `top`, `right`, `bottom`, `left` props: outputs individual CSS properties to allow proper CSS cascade with modifiers
448
-
449
- This fix resolves an issue where conditional modifiers on individual direction props (e.g., `top: { '': 0, 'side=bottom': 'initial' }`) would incorrectly override all four directions instead of just the specified one.
450
-
451
- - [#959](https://github.com/cube-js/cube-ui-kit/pull/959) [`ed477654`](https://github.com/cube-js/cube-ui-kit/commit/ed4776543ce0cf2f02fd629f149100d7d0a8f9ec) Thanks [@tenphi](https://github.com/tenphi)! - Fix ListBox item styles not being applied when passed via `<ListBox.Item styles={...}>`. Item-level styles are now properly merged with parent styles using `mergeStyles`.
452
-
453
- - [#949](https://github.com/cube-js/cube-ui-kit/pull/949) [`69c96a34`](https://github.com/cube-js/cube-ui-kit/commit/69c96a34e834b83fbebda6addf4d4e1a71268c5e) Thanks [@tenphi](https://github.com/tenphi)! - ### Added
454
-
455
- - Raw unit calculation: Custom units with raw CSS values (e.g., `8px`) are now calculated directly instead of using `calc()`, producing cleaner CSS output.
456
- - Recursive unit resolution: Units can reference other custom units with automatic resolution (e.g., `{ x: '8px', y: '2x' }` → `1y` = `16px`).
457
-
458
- ### Removed
459
-
460
- - Units `rp`, `gp`, and `sp` have been removed from default units.
461
-
462
- - [#960](https://github.com/cube-js/cube-ui-kit/pull/960) [`d89a036e`](https://github.com/cube-js/cube-ui-kit/commit/d89a036e578591fe20f22a21a0c37c41f9c9daf5) Thanks [@tenphi](https://github.com/tenphi)! - Fixed variant switching causing DOM element recreation. Components with `variants` now preserve their DOM element and state when the `variant` prop changes.
463
-
464
- - [#960](https://github.com/cube-js/cube-ui-kit/pull/960) [`d89a036e`](https://github.com/cube-js/cube-ui-kit/commit/d89a036e578591fe20f22a21a0c37c41f9c9daf5) Thanks [@tenphi](https://github.com/tenphi)! - Added `preserveActionsSpace` prop to Item component. When used with `showActionsOnHover={true}`, this prop prevents content shift by keeping the actions area at full width and only changing opacity on hover.
465
-
466
- ## 0.99.3
467
-
468
- ### Patch Changes
469
-
470
- - [#955](https://github.com/cube-js/cube-ui-kit/pull/955) [`edd8bfc6`](https://github.com/cube-js/cube-ui-kit/commit/edd8bfc6e04cffc77c5e5812224e032187659381) Thanks [@tenphi](https://github.com/tenphi)! - Fix Dialog component to merge incoming style props instead of overwriting them. Update FilterPicker and Picker to correctly access trigger width using `UNSAFE_getDOMNode()` and pass it to Dialog overlay via `--overlay-min-width` CSS custom property. Update Picker overlay width calculation to use `max()` function for better min-width handling.
471
-
472
- ## 0.99.2
473
-
474
- ### Patch Changes
475
-
476
- - [#952](https://github.com/cube-js/cube-ui-kit/pull/952) [`ff9ad4cc`](https://github.com/cube-js/cube-ui-kit/commit/ff9ad4cc7414a97d04aba0f5997c095460b58798) Thanks [@tenphi](https://github.com/tenphi)! - Fix placeholder color styling by removing filter and updating webkit text fill color
477
-
478
- ## 0.99.1
479
-
480
- ### Patch Changes
481
-
482
- - [#950](https://github.com/cube-js/cube-ui-kit/pull/950) [`e9f9cd31`](https://github.com/cube-js/cube-ui-kit/commit/e9f9cd31912af88b09a59407a23bc56a2637eef0) Thanks [@tenphi](https://github.com/tenphi)! - Fixed CJS/ESM interop issue with `react-keyed-flatten-children` that caused crashes in Vite development mode when showing toast notifications.
483
-
484
- ## 0.99.0
485
-
486
- ### Minor Changes
487
-
488
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add `svgFill` style to tasty for setting the native CSS `fill` property on SVG elements. Supports the same color token syntax as `fill` (e.g., `#purple.10`, `#danger`). The existing `fill` style continues to output `background-color` for HTML elements.
489
-
490
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add advanced states support with `@` prefix in tasty styles. State keys starting with `@` compile into CSS at-rules and contextual conditions, enabling media queries (`@media`), container queries (`@(...)`), root states (`@root`), sub-element own states (`@own`), and entry animations (`@starting`). Advanced states can be combined with logical operators (`&`, `|`, `!`, `^`) and used anywhere regular state keys are supported, including sub-elements. Define reusable state aliases globally via `configure({ states })` or locally per component.
491
-
492
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add tastyStatic for zero runtime integration as well as babel plugin for it.
493
-
494
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Remove `createGlobalStyle` and replace it with a hook `useRawCSS`.
495
-
496
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add okhsl-plugin to tasty to support OKHSL color space in tasty styles.
497
-
498
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add `@keyframes` support in tasty styles. Define CSS animations directly within component styles using the `@keyframes` property, or configure global keyframes via `configure({ keyframes })`. Only animations referenced in styles are injected, with automatic deduplication and cleanup. Local keyframes override global ones with the same name.
499
-
500
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Implement style chunking optimization for improved CSS reuse and performance. Styles are now split into logical chunks (appearance, font, dimension, container, scrollbar, position, misc, and subcomponents), each with its own cache key and CSS class. This enables better CSS reuse across components and reduces CSS output size, especially for components with many variants like Button and Item. The optimization is fully backward compatible - elements still receive className(s) as before, but now with improved caching granularity.
501
-
502
- **New exports:**
503
-
504
- - `useStyles` hook - Generate CSS classes for element-scoped styles with chunking support
505
- - `useGlobalStyles` hook - Inject global styles for a given selector
506
- - Chunk utilities: `CHUNK_NAMES`, `STYLE_TO_CHUNK`, `categorizeStyleKeys` (for advanced use cases)
507
-
508
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add `elements` to `tasty()` element definitions to declare compound sub-elements (e.g. `Component.Icon`) with `data-element` binding. Sub-elements support `qa`/`qaVal`, `mods`, `isDisabled`/`isHidden`/`isChecked`, and `tokens`.
509
-
510
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Remove tastyGlobal syntax. Add `useStyles` and `useGlobalStyles` hooks for handy style generation.
511
-
512
- ### Patch Changes
513
-
514
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Add HSL to RGB conversion support for color token declarations. HSL color tokens (e.g., `'#primary': 'hsl(200 40% 50%)'`) now generate RGB triplets for `--name-color-rgb` variables, enabling opacity syntax support: `#name.3` → `rgb(var(--name-color-rgb) / .3)`.
515
-
516
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Optimize padding and margin style functions to return a single CSS property with optimized values (1, 2, or 4 values) instead of four separate properties, reducing CSS output size.
517
-
518
- - [#891](https://github.com/cube-js/cube-ui-kit/pull/891) [`c12660be`](https://github.com/cube-js/cube-ui-kit/commit/c12660be28c78b80bc462fbee4847da229063e94) Thanks [@tenphi](https://github.com/tenphi)! - Improve types of the tasty helper.
519
-
520
- ## 0.98.9
521
-
522
- ### Patch Changes
523
-
524
- - [#945](https://github.com/cube-js/cube-ui-kit/pull/945) [`07215bcd`](https://github.com/cube-js/cube-ui-kit/commit/07215bcd71aad735b4dda0d2304a627f4f1b17c0) Thanks [@tenphi](https://github.com/tenphi)! - Improve Item component actions container behavior when using `show-actions-on-hover`. Actions now properly collapse width and padding when not hovered, with smooth transitions for better visual feedback.
525
-
526
- - [#947](https://github.com/cube-js/cube-ui-kit/pull/947) [`3361360f`](https://github.com/cube-js/cube-ui-kit/commit/3361360f059996e5e1763913cb16cea7cb47ad89) Thanks [@tenphi](https://github.com/tenphi)! - Add SemanticQueryIcon.
527
-
528
- ## 0.98.8
529
-
530
- ### Patch Changes
531
-
532
- - [#942](https://github.com/cube-js/cube-ui-kit/pull/942) [`f5a5b05c`](https://github.com/cube-js/cube-ui-kit/commit/f5a5b05c669ba3548a68b9b1bcfcd4777f36119d) Thanks [@tenphi](https://github.com/tenphi)! - Fix Dialog focus management to ensure Escape key works reliably when dialog opens and focus properly returns to the trigger when dialog closes. Focus now properly falls back to the first tabbable element or the dialog element itself if no priority focusable element is found. Replaced react-focus-lock with React Aria's FocusScope for better focus restoration behavior.
533
-
534
- ## 0.98.7
535
-
536
- ### Patch Changes
537
-
538
- - [#940](https://github.com/cube-js/cube-ui-kit/pull/940) [`126a66fe`](https://github.com/cube-js/cube-ui-kit/commit/126a66feb43cb1aebfbeaeeaa27c747665e5b2c4) Thanks [@tenphi](https://github.com/tenphi)! - Fix ListBox icon detection and selection change handler dependencies. Custom icons on ListBox items are now properly detected, and the selection change handler correctly responds to `disableSelectionToggle` prop changes.
539
-
540
- ## 0.98.6
541
-
542
- ### Patch Changes
543
-
544
- - [#938](https://github.com/cube-js/cube-ui-kit/pull/938) [`71140ba3`](https://github.com/cube-js/cube-ui-kit/commit/71140ba3cc78450eb70bf39e21b01bfe5f59f03b) Thanks [@tenphi](https://github.com/tenphi)! - Fix FieldWrapper tooltip prop to properly support ReactNode values, not just strings. Previously, ReactNode tooltips (like JSX fragments) were incorrectly cast to strings, causing them to fail.
545
-
546
- ## 0.98.5
547
-
548
- ### Patch Changes
549
-
550
- - [#936](https://github.com/cube-js/cube-ui-kit/pull/936) [`6c6f0a42`](https://github.com/cube-js/cube-ui-kit/commit/6c6f0a422e48d1068930f2e7e436b79cd66268e5) Thanks [@tenphi](https://github.com/tenphi)! - Fix sub-element definition in Result component.
551
-
552
- ## 0.98.4
553
-
554
- ### Patch Changes
555
-
556
- - [#934](https://github.com/cube-js/cube-ui-kit/pull/934) [`488bda2d`](https://github.com/cube-js/cube-ui-kit/commit/488bda2d798760654ea28a9cc9de35e2a6e16f45) Thanks [@tenphi](https://github.com/tenphi)! - Fix infinite loop in IconSwitch component caused by unnecessary state updates when children prop reference changes. The component now renders current children directly for the active icon instead of storing it in state, preventing render loops while maintaining proper transition behavior.
557
-
558
- ## 0.98.3
559
-
560
- ### Patch Changes
561
-
562
- - [#932](https://github.com/cube-js/cube-ui-kit/pull/932) [`ec68eae0`](https://github.com/cube-js/cube-ui-kit/commit/ec68eae0c8ac417572d8d013a20e97c2955127fe) Thanks [@tenphi](https://github.com/tenphi)! - Remove root header tag in LayoutPanelHeader.
563
-
564
- ## 0.98.2
565
-
566
- ### Patch Changes
567
-
568
- - [#930](https://github.com/cube-js/cube-ui-kit/pull/930) [`51ebcf44`](https://github.com/cube-js/cube-ui-kit/commit/51ebcf445f04c1bcc3e4380c3c5dfbba594cf586) Thanks [@tenphi](https://github.com/tenphi)! - Allow description wrapping in items.
569
-
570
- - [#930](https://github.com/cube-js/cube-ui-kit/pull/930) [`51ebcf44`](https://github.com/cube-js/cube-ui-kit/commit/51ebcf445f04c1bcc3e4380c3c5dfbba594cf586) Thanks [@tenphi](https://github.com/tenphi)! - Fix paddings for Layout.PanelHeader
571
-
572
- - [#930](https://github.com/cube-js/cube-ui-kit/pull/930) [`51ebcf44`](https://github.com/cube-js/cube-ui-kit/commit/51ebcf445f04c1bcc3e4380c3c5dfbba594cf586) Thanks [@tenphi](https://github.com/tenphi)! - Apply header tag to Item title in card type.
573
-
574
- ## 0.98.1
575
-
576
- ### Patch Changes
577
-
578
- - [#928](https://github.com/cube-js/cube-ui-kit/pull/928) [`45ff2f40`](https://github.com/cube-js/cube-ui-kit/commit/45ff2f40f7e33e2596d8e8b1de606e0b3800a6c3) Thanks [@tenphi](https://github.com/tenphi)! - Add icons: ColumnTotalIcon, RowTotalsIcon, SubtotalsIcon.
579
-
580
- ## 0.98.0
581
-
582
- ### Minor Changes
583
-
584
- - [#923](https://github.com/cube-js/cube-ui-kit/pull/923) [`cb6340ef`](https://github.com/cube-js/cube-ui-kit/commit/cb6340ef6b8faff274b7ebd52038587e60d72ff1) Thanks [@tenphi](https://github.com/tenphi)! - Rework of Button component to align its implementation and layout with Item and ItemButton components.
585
-
586
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add `tokens` prop to tasty components for defining CSS custom properties as inline styles. Tokens support design system values (`$name` for regular properties, `#name` for colors with RGB variants) and are merged from component defaults to instance usage. Use `tokens` instead of `style` prop for dynamic CSS custom properties.
587
-
588
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add dynamic icon support to Button and Item components. The `icon` and `rightIcon` props now support:
589
-
590
- - `true` - renders an empty slot (reserves space but shows nothing)
591
- - Function `({ loading, selected, ...mods }) => ReactNode | true` - dynamically renders icon based on component modifiers
592
-
593
- Also made `Mods` type generic for better type definitions: `Mods<{ loading?: boolean }>` instead of extending interface.
594
-
595
- ### Patch Changes
596
-
597
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Enlarge the size of the fullscreen dialog.
598
-
599
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add IconSwitch component for icon transitions.
600
-
601
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Remove redundant `isButton` prop from Item component.
602
-
603
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add `tight` modifier to `preset` style for setting line-height to the same value as font-size.
604
-
605
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add `card` type to Item component.
606
-
607
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add `preserveContent` prop to DisplayTransition component. When enabled (default: true), the component preserves children content during exit transitions, ensuring smooth animations even when parent components remove content immediately after hiding.
608
-
609
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Add `title` type support to Item component.
610
-
611
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Remove the selected mod in DisclosureTrigger.'
612
-
613
- - [#924](https://github.com/cube-js/cube-ui-kit/pull/924) [`fd497403`](https://github.com/cube-js/cube-ui-kit/commit/fd4974035a916cc7f6a17b9a3678571c806f04ea) Thanks [@tenphi](https://github.com/tenphi)! - Fix Layout.PanelHeader props type.
614
-
615
- ## 0.97.1
616
-
617
- ### Patch Changes
618
-
619
- - [#921](https://github.com/cube-js/cube-ui-kit/pull/921) [`974b8af4`](https://github.com/cube-js/cube-ui-kit/commit/974b8af4a296111719194bd12fce5556fbe1fe5f) Thanks [@tenphi](https://github.com/tenphi)! - Layout sub-components now automatically add bottom borders between elements when the layout has vertical flow. This eliminates the need to manually set borders on individual components to create visual separation.
620
-
621
- ## 0.97.0
622
-
623
- ### Minor Changes
624
-
625
- - [#917](https://github.com/cube-js/cube-ui-kit/pull/917) [`c64cd31b`](https://github.com/cube-js/cube-ui-kit/commit/c64cd31b30e1aa0fd3ef57c41a0e189a49575473) Thanks [@tenphi](https://github.com/tenphi)! - Added `Layout.Container` and `Layout.Center` sub-components for centered content layouts:
626
-
627
- - `Layout.Container` - Horizontally centered content with constrained width (min 40x, max 120x). Ideal for forms, articles, and focused content.
628
- - `Layout.Center` - Extends Container with vertical centering and text-align center. Ideal for empty states, loading screens, and hero sections.
629
-
630
- Both components support `innerStyles` prop for customizing the inner container.
631
-
632
- - [#917](https://github.com/cube-js/cube-ui-kit/pull/917) [`c64cd31b`](https://github.com/cube-js/cube-ui-kit/commit/c64cd31b30e1aa0fd3ef57c41a0e189a49575473) Thanks [@tenphi](https://github.com/tenphi)! - Add new `mode` prop to `Layout.Panel` with support for `sticky` and `overlay` modes:
633
-
634
- - `sticky` - Panel floats over content without pushing it aside
635
- - `overlay` - Panel with dismissable backdrop (closes on backdrop click, Escape key, or focus change to main content)
636
-
637
- New props: `mode`, `isDismissable`, `overlayStyles`
638
-
639
- ### Patch Changes
640
-
641
- - [#918](https://github.com/cube-js/cube-ui-kit/pull/918) [`ecdc6ff3`](https://github.com/cube-js/cube-ui-kit/commit/ecdc6ff38620e163629dbe8da00f109e05e96ad6) Thanks [@tenphi](https://github.com/tenphi)! - Add text highlighting support to Item component with `highlight`, `highlightCaseSensitive`, and `highlightStyles` props.
642
-
643
- ## 0.96.0
644
-
645
- ### Minor Changes
646
-
647
- - [`fe46a7f2`](https://github.com/cube-js/cube-ui-kit/commit/fe46a7f233b599d94ffd124ec14d2a576c000e93) Thanks [@tenphi](https://github.com/tenphi)! - Add new `Layout` component with compound sub-components for building complex application layouts. Includes `Layout.Header`, `Layout.Footer`, `Layout.Content`, `Layout.Toolbar`, `Layout.Pane`, `Layout.Panel`, `Layout.PanelHeader`, `Layout.Block`, `Layout.Flex`, `Layout.Grid`, and standalone `GridLayout`.
648
-
649
- ## 0.95.0
650
-
651
- ### Minor Changes
652
-
653
- - [#911](https://github.com/cube-js/cube-ui-kit/pull/911) [`33990457`](https://github.com/cube-js/cube-ui-kit/commit/339904570f42e600dc70873793402a8afd914019) Thanks [@tenphi](https://github.com/tenphi)! - Added `TextItem` component for displaying text with automatic overflow handling and tooltips. Features include:
654
-
655
- - Auto-tooltip on text overflow (enabled by default)
656
- - Text highlighting with `highlight` prop for search results
657
- - Customizable highlight styles via `highlightStyles` prop
658
- - Case-sensitive/insensitive highlight matching
659
- - Inherits all `Text` component props
660
-
661
- Added `Text.Highlight` sub-component for semantic text highlighting (uses `<mark>` element).
662
-
663
- **Breaking:** Removed `Text.Selection` in favor of `Text.Highlight`.
664
-
665
- ## 0.94.2
666
-
667
- ### Patch Changes
668
-
669
- - [#905](https://github.com/cube-js/cube-ui-kit/pull/905) [`bb390e25`](https://github.com/cube-js/cube-ui-kit/commit/bb390e25d9f6f0a301d6cac3cd76687d0d4eb408) Thanks [@tenphi](https://github.com/tenphi)! - Fix form fields to prevent internal `form` prop from being spread to DOM elements
670
-
671
- - [#912](https://github.com/cube-js/cube-ui-kit/pull/912) [`6ef9986e`](https://github.com/cube-js/cube-ui-kit/commit/6ef9986efe69fb3d74c0ff179f605574dd5d64bd) Thanks [@tenphi](https://github.com/tenphi)! - Fixed `styles` prop leaking to inner elements in `TextInput` and `Switch` components
672
-
673
- ## 0.94.1
674
-
675
- ### Patch Changes
676
-
677
- - [#909](https://github.com/cube-js/cube-ui-kit/pull/909) [`b72ca0dd`](https://github.com/cube-js/cube-ui-kit/commit/b72ca0ddb761295279db67ce88d194a4c0535c80) Thanks [@tenphi](https://github.com/tenphi)! - Fix the focused state styles of text inputs.
678
-
679
- ## 0.94.0
680
-
681
- ### Minor Changes
682
-
683
- - [#906](https://github.com/cube-js/cube-ui-kit/pull/906) [`9fd69a24`](https://github.com/cube-js/cube-ui-kit/commit/9fd69a2475da8dc16e47d8561033ff687c2ac9dc) Thanks [@tenphi](https://github.com/tenphi)! - Add new `Disclosure` component for expandable/collapsible content sections. Features include:
684
-
685
- - `Disclosure` - Single expandable panel with trigger and content
686
- - `Disclosure.Trigger` - Built on ItemButton with full support for icons, descriptions, and actions
687
- - `Disclosure.Content` - Collapsible content area with smooth height animations
688
- - `Disclosure.Group` - Accordion container for multiple disclosures with single or multiple expanded support
689
- - `Disclosure.Item` - Individual item within a group
690
-
691
- Supports controlled/uncontrolled state, `shape` variants (`default`, `card`, `sharp`), disabled state, custom transition duration, and render prop API for custom triggers.
692
-
693
- ### Patch Changes
694
-
695
- - [#908](https://github.com/cube-js/cube-ui-kit/pull/908) [`21d8a310`](https://github.com/cube-js/cube-ui-kit/commit/21d8a310765f121fb9257a55a71e15c87a7b0ae0) Thanks [@tenphi](https://github.com/tenphi)! - Fix content visibility in Disclosure.
696
-
697
- ## 0.93.1
698
-
699
- ### Patch Changes
700
-
701
- - [#903](https://github.com/cube-js/cube-ui-kit/pull/903) [`e0214842`](https://github.com/cube-js/cube-ui-kit/commit/e0214842a343911fe36c57d0aae73e5f90b36b1c) Thanks [@tenphi](https://github.com/tenphi)! - Add `fixed` modifier to `height` and `width` styles. Use `fixed 10x` to set min, base, and max dimensions to the same value, creating a truly fixed size that cannot flex.
702
-
703
- ## 0.93.0
704
-
705
- ### Minor Changes
706
-
707
- - [#901](https://github.com/cube-js/cube-ui-kit/pull/901) [`1d980997`](https://github.com/cube-js/cube-ui-kit/commit/1d980997b663287f976d6070cbc63b1623b5a76d) Thanks [@tenphi](https://github.com/tenphi)! - Added unified support for `fieldProps`, `fieldStyles`, `labelProps`, and `labelStyles` across all field components. The `fieldStyles` and `labelStyles` props serve as shorthands for `fieldProps.styles` and `labelProps.styles` respectively, with shorthand props taking priority. All merging logic is centralized in the `wrapWithField` helper.
708
-
709
- **Breaking changes:**
710
-
711
- - Removed `wrapperStyles` prop from TextInputBase and Select components (use `styles` prop instead for the root element).
712
-
713
- ### Patch Changes
714
-
715
- - [#901](https://github.com/cube-js/cube-ui-kit/pull/901) [`1d980997`](https://github.com/cube-js/cube-ui-kit/commit/1d980997b663287f976d6070cbc63b1623b5a76d) Thanks [@tenphi](https://github.com/tenphi)! - Added `onOpenChange` callback prop to Picker, FilterPicker, ComboBox, and Select components. This callback is invoked when the popover/overlay open state changes, receiving a boolean parameter indicating the new open state.
716
-
717
- ## 0.92.4
718
-
719
- ### Patch Changes
720
-
721
- - [#899](https://github.com/cube-js/cube-ui-kit/pull/899) [`122bc1b1`](https://github.com/cube-js/cube-ui-kit/commit/122bc1b18a7ca70405734d84f8539a70af65c1ea) Thanks [@tenphi](https://github.com/tenphi)! - Fixed `id` and ARIA attributes duplication where they were incorrectly applied to both the field wrapper and the input element. The `id` prop is now correctly applied only to the element with `qa` and `data-input-type` attributes. The fix was implemented in the `wrapWithField` helper to automatically filter out `id` from `fieldProps` passed to the Field wrapper.
722
-
723
- ## 0.92.3
724
-
725
- ### Patch Changes
726
-
727
- - [#897](https://github.com/cube-js/cube-ui-kit/pull/897) [`01567fce`](https://github.com/cube-js/cube-ui-kit/commit/01567fceeabd38e619b4bbbe221bbc285a133928) Thanks [@tenphi](https://github.com/tenphi)! - Add isDisabled state to FileInput and fix qa props.
728
-
729
- - [#897](https://github.com/cube-js/cube-ui-kit/pull/897) [`01567fce`](https://github.com/cube-js/cube-ui-kit/commit/01567fceeabd38e619b4bbbe221bbc285a133928) Thanks [@tenphi](https://github.com/tenphi)! - Fix qa prop in Select component.
730
-
731
- ## 0.92.2
732
-
733
- ### Patch Changes
734
-
735
- - [#895](https://github.com/cube-js/cube-ui-kit/pull/895) [`d48e94a5`](https://github.com/cube-js/cube-ui-kit/commit/d48e94a534f963af3f49926bae53e1f2c183bd49) Thanks [@tenphi](https://github.com/tenphi)! - Fix `labelProps` being overridden in input and field components. User-provided `labelProps` are now properly merged with aria-generated label properties in TextInput, NumberInput, PasswordInput, TextArea, SearchInput, Slider, RangeSlider, and TimeInput components, allowing customization like `labelProps={{ size: 'small' }}`.
736
-
737
- ## 0.92.1
738
-
739
- ### Patch Changes
740
-
741
- - [#893](https://github.com/cube-js/cube-ui-kit/pull/893) [`1ec20458`](https://github.com/cube-js/cube-ui-kit/commit/1ec20458cf0b1448a3bfae3d9541d7c507f4bba3) Thanks [@tenphi](https://github.com/tenphi)! - Fix `labelProps` being overridden in input and field components. User-provided `labelProps` are now properly merged with aria-generated label properties in TextInput, NumberInput, PasswordInput, TextArea, SearchInput, Slider, RangeSlider, and TimeInput components, allowing customization like `labelProps={{ size: 'small' }}`.
742
-
743
- ## 0.92.0
744
-
745
- ### Minor Changes
746
-
747
- - [#890](https://github.com/cube-js/cube-ui-kit/pull/890) [`b79f55c6`](https://github.com/cube-js/cube-ui-kit/commit/b79f55c67159ecbbd9a04e69fcafe166c649e5d0) Thanks [@tenphi](https://github.com/tenphi)! - Added color token fallback syntax `(#color, #fallback)` for robust color hierarchies. Supports nested fallbacks like `(#primary, (#secondary, #default))`. Automatically generates RGB variants for the entire fallback chain, ensuring proper color variable resolution at runtime.
748
-
749
- - [#890](https://github.com/cube-js/cube-ui-kit/pull/890) [`b79f55c6`](https://github.com/cube-js/cube-ui-kit/commit/b79f55c67159ecbbd9a04e69fcafe166c649e5d0) Thanks [@tenphi](https://github.com/tenphi)! - Add `isButton` prop support to `Picker`, `FilterPicker`, and `Select` components. The prop is now properly passed to their trigger components (`ItemButton` for Picker/FilterPicker, `Item` for Select), allowing control over button styling. Defaults to `false` to maintain existing behavior.
750
-
751
- - [#890](https://github.com/cube-js/cube-ui-kit/pull/890) [`b79f55c6`](https://github.com/cube-js/cube-ui-kit/commit/b79f55c67159ecbbd9a04e69fcafe166c649e5d0) Thanks [@tenphi](https://github.com/tenphi)! - Removed legacy `@` prefix support for custom properties. Use `# @cube-dev/ui-kit prefix instead (e.g., `$custom-color`instead of`@custom-color`).
752
-
753
- - [#890](https://github.com/cube-js/cube-ui-kit/pull/890) [`b79f55c6`](https://github.com/cube-js/cube-ui-kit/commit/b79f55c67159ecbbd9a04e69fcafe166c649e5d0) Thanks [@tenphi](https://github.com/tenphi)! - Specify `data-input-type` attribute for each field component and improve `qa` prop handling in various field components for consistency.
754
-
755
- ### Patch Changes
756
-
757
- - [#890](https://github.com/cube-js/cube-ui-kit/pull/890) [`b79f55c6`](https://github.com/cube-js/cube-ui-kit/commit/b79f55c67159ecbbd9a04e69fcafe166c649e5d0) Thanks [@tenphi](https://github.com/tenphi)! - Improved overlay width behavior for Picker and FilterPicker components to match their trigger button width, ensuring better visual consistency.
758
-
759
- - [#890](https://github.com/cube-js/cube-ui-kit/pull/890) [`b79f55c6`](https://github.com/cube-js/cube-ui-kit/commit/b79f55c67159ecbbd9a04e69fcafe166c649e5d0) Thanks [@tenphi](https://github.com/tenphi)! - Decrease containerPadding of all overlays 12px -> 8px.
760
-
761
- ## 0.91.0
762
-
763
- ### Minor Changes
764
-
765
- - [#888](https://github.com/cube-js/cube-ui-kit/pull/888) [`fba935a3`](https://github.com/cube-js/cube-ui-kit/commit/fba935a383dec79876e1b7d5c7e665a161929839) Thanks [@tenphi](https://github.com/tenphi)! - Remove isRequired prop in Form component.
766
-
767
- ### Patch Changes
768
-
769
- - [#888](https://github.com/cube-js/cube-ui-kit/pull/888) [`fba935a3`](https://github.com/cube-js/cube-ui-kit/commit/fba935a383dec79876e1b7d5c7e665a161929839) Thanks [@tenphi](https://github.com/tenphi)! - Fix required validator to check rule.required flag before validating.
770
-
771
- - [#888](https://github.com/cube-js/cube-ui-kit/pull/888) [`fba935a3`](https://github.com/cube-js/cube-ui-kit/commit/fba935a383dec79876e1b7d5c7e665a161929839) Thanks [@tenphi](https://github.com/tenphi)! - Improve rule management in form fields.
772
-
773
- ## 0.90.3
774
-
775
- ### Patch Changes
776
-
777
- - [#886](https://github.com/cube-js/cube-ui-kit/pull/886) [`15daa007`](https://github.com/cube-js/cube-ui-kit/commit/15daa007241565ba554c3776a115d5e853f6856d) Thanks [@tenphi](https://github.com/tenphi)! - Fix ComboBox auto-focus behavior when using `allowsCustomValue`. The component now correctly maintains focus on the first filtered item while typing, allowing Enter key selection to work properly. The focus is automatically re-established when the currently focused item is filtered out of the list. Additionally, the refocus logic now properly verifies that the selected item exists in the filtered collection before attempting to focus on it, preventing focus on non-existent keys.
778
-
779
- ## 0.90.2
780
-
781
- ### Patch Changes
782
-
783
- - [#884](https://github.com/cube-js/cube-ui-kit/pull/884) [`24a372e9`](https://github.com/cube-js/cube-ui-kit/commit/24a372e9e880624d2ae3f39cdcad8894fd4d7291) Thanks [@tenphi](https://github.com/tenphi)! - Fix ComboBox with `allowsCustomValue` to allow form submission with single Enter press when typing custom values that don't match any items.
784
-
785
- ## 0.90.1
786
-
787
- ### Patch Changes
788
-
789
- - [#882](https://github.com/cube-js/cube-ui-kit/pull/882) [`568f44a2`](https://github.com/cube-js/cube-ui-kit/commit/568f44a23dd2b152702006dae5316ba3950513be) Thanks [@tenphi](https://github.com/tenphi)! - Fix leakage of `description` prop to the trigger in Select. Add `triggerDescription` prop.
790
-
791
- ## 0.90.0
792
-
793
- ### Minor Changes
794
-
795
- - [#880](https://github.com/cube-js/cube-ui-kit/pull/880) [`e5884d46`](https://github.com/cube-js/cube-ui-kit/commit/e5884d4671e2bbb818d55a47e48a1ba671a9abfa) Thanks [@tenphi](https://github.com/tenphi)! - Add `showActionsOnHover` prop to Item component. When enabled, actions are hidden by default and revealed smoothly on hover, focus, or focus-within states using opacity transitions. This provides a cleaner interface while keeping actions easily accessible without content shifting.
796
-
797
- ### Patch Changes
798
-
799
- - [#880](https://github.com/cube-js/cube-ui-kit/pull/880) [`e5884d46`](https://github.com/cube-js/cube-ui-kit/commit/e5884d4671e2bbb818d55a47e48a1ba671a9abfa) Thanks [@tenphi](https://github.com/tenphi)! - Allow text wrapping in labels.
800
-
801
- - [#880](https://github.com/cube-js/cube-ui-kit/pull/880) [`e5884d46`](https://github.com/cube-js/cube-ui-kit/commit/e5884d4671e2bbb818d55a47e48a1ba671a9abfa) Thanks [@tenphi](https://github.com/tenphi)! - Fix FilterPicker `renderSummary` to be evaluated regardless of selection state. The custom summary renderer and `renderSummary={false}` now work correctly even when no items are selected, providing consistent control over trigger content display.
802
-
803
- - [#880](https://github.com/cube-js/cube-ui-kit/pull/880) [`e5884d46`](https://github.com/cube-js/cube-ui-kit/commit/e5884d4671e2bbb818d55a47e48a1ba671a9abfa) Thanks [@tenphi](https://github.com/tenphi)! - Add `Text.Placeholder` variant with disabled opacity styling. This new text variant is useful for displaying placeholder content with reduced visual emphasis.
804
-
805
- ## 0.89.2
806
-
807
- ### Patch Changes
808
-
809
- - [#878](https://github.com/cube-js/cube-ui-kit/pull/878) [`8d17104e`](https://github.com/cube-js/cube-ui-kit/commit/8d17104e18f6c6789bf4f2f7a83b810173a77f3b) Thanks [@tenphi](https://github.com/tenphi)! - Set `neutral` as the default type for ItemButton.
810
-
811
- ## 0.89.1
812
-
813
- ### Patch Changes
814
-
815
- - [#877](https://github.com/cube-js/cube-ui-kit/pull/877) [`cec3339c`](https://github.com/cube-js/cube-ui-kit/commit/cec3339ca78ddf458325b2edae3ed36d4ba0f136) Thanks [@tenphi](https://github.com/tenphi)! - Add `shape` prop to Alert component. The shape prop accepts 'card' (default, 1cr radius with border) or 'sharp' (no border radius or border) values to control border styling.
816
-
817
- - [#875](https://github.com/cube-js/cube-ui-kit/pull/875) [`f1bc522d`](https://github.com/cube-js/cube-ui-kit/commit/f1bc522dc9dacc90dccc83a2a415436f566a78ad) Thanks [@tenphi](https://github.com/tenphi)! - Add `inherit` type to HotKeys component. The inherit type uses `currentColor` for both text and border, allowing the component to adapt to its parent's color context with a transparent background.
818
-
819
- ## 0.89.0
820
-
821
- ### Minor Changes
822
-
823
- - [#872](https://github.com/cube-js/cube-ui-kit/pull/872) [`4b8a6d6e`](https://github.com/cube-js/cube-ui-kit/commit/4b8a6d6e4342303ec6ba6c58a2c17b38eeef2964) Thanks [@tenphi](https://github.com/tenphi)! - **BREAKING:** Boolean mods now generate `data-*` instead of `data-is-*` attributes (`mods={{ hovered: true }}` → `data-hovered=""` instead of `data-is-hovered=""`).
824
-
825
- **NEW:** Value mods support - `mods` now accepts string values (`mods={{ theme: 'danger' }}` → `data-theme="danger"`). Includes shorthand syntax in styles (`theme=danger`, `theme="danger"`). See Tasty documentation for details.
826
-
827
- - [#872](https://github.com/cube-js/cube-ui-kit/pull/872) [`4b8a6d6e`](https://github.com/cube-js/cube-ui-kit/commit/4b8a6d6e4342303ec6ba6c58a2c17b38eeef2964) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `:has(Item)` syntax in style mappings. Capitalized element names inside `:has()` pseudo-class selectors are now automatically transformed to `data-element` attribute selectors (`:has(Item)` → `:has([data-element="Item"])`).
828
-
829
- - [#873](https://github.com/cube-js/cube-ui-kit/pull/873) [`c29bee57`](https://github.com/cube-js/cube-ui-kit/commit/c29bee5708e4aa75e75e80ffb3509de5a6ac9d13) Thanks [@tenphi](https://github.com/tenphi)! - Allow to set cursorStrategy to `web` or `native` in Root component.
830
-
831
- ## 0.88.0
832
-
833
- ### Minor Changes
834
-
835
- - [`b817bcbc`](https://github.com/cube-js/cube-ui-kit/commit/b817bcbce9a962dfeb579a40020620ea11ab96bf) Thanks [@tenphi](https://github.com/tenphi)! - Rename ClearIcon -> TrashIcon. Add a new ClearIcon.
836
-
837
- - [`bc28fc33`](https://github.com/cube-js/cube-ui-kit/commit/bc28fc3387d607733fa98f9d802ff2f31826e2f4) Thanks [@tenphi](https://github.com/tenphi)! - Rename `type` prop in ListBox to `shape`.
838
-
839
- ### Patch Changes
840
-
841
- - [`bc28fc33`](https://github.com/cube-js/cube-ui-kit/commit/bc28fc3387d607733fa98f9d802ff2f31826e2f4) Thanks [@tenphi](https://github.com/tenphi)! - Add `shape` prop to Item component with three values: `card`, `button` (default), and `sharp` to control border radius styling.
842
-
843
- ## 0.87.6
844
-
845
- ### Patch Changes
846
-
847
- - [#868](https://github.com/cube-js/cube-ui-kit/pull/868) [`7327f98d`](https://github.com/cube-js/cube-ui-kit/commit/7327f98d1a14ccf6cd83d4cfc1ff89254d1aeec8) Thanks [@tenphi](https://github.com/tenphi)! - Add `size` prop for Label with `small` and `medium` (default) values.
848
-
849
- ## 0.87.5
850
-
851
- ### Patch Changes
852
-
853
- - [#866](https://github.com/cube-js/cube-ui-kit/pull/866) [`2c077631`](https://github.com/cube-js/cube-ui-kit/commit/2c077631940b2a07438069ff3f15fb08212aca6a) Thanks [@tenphi](https://github.com/tenphi)! - Fix Tag label alignment.
854
-
855
- ## 0.87.4
856
-
857
- ### Patch Changes
858
-
859
- - [#864](https://github.com/cube-js/cube-ui-kit/pull/864) [`7d59ddd8`](https://github.com/cube-js/cube-ui-kit/commit/7d59ddd8f617eae6ef63e473a761906c792bf23e) Thanks [@tenphi](https://github.com/tenphi)! - Replace `noCard` prop with `type` prop in ListBox component. The new `type` prop accepts three values:
860
-
861
- - `card` (default): Standard card styling with border and margin
862
- - `plain`: No border, no margin, no radius - suitable for embedded use
863
- - `popover`: No border, but keeps margin and radius - suitable for overlay use
864
-
865
- - [#864](https://github.com/cube-js/cube-ui-kit/pull/864) [`7d59ddd8`](https://github.com/cube-js/cube-ui-kit/commit/7d59ddd8f617eae6ef63e473a761906c792bf23e) Thanks [@tenphi](https://github.com/tenphi)! - Remove the hardcoded default width for NumberInput.
866
-
867
- - [#864](https://github.com/cube-js/cube-ui-kit/pull/864) [`7d59ddd8`](https://github.com/cube-js/cube-ui-kit/commit/7d59ddd8f617eae6ef63e473a761906c792bf23e) Thanks [@tenphi](https://github.com/tenphi)! - Fix right padding in NumberInput.
868
-
869
- ## 0.87.3
870
-
871
- ### Patch Changes
872
-
873
- - [#862](https://github.com/cube-js/cube-ui-kit/pull/862) [`3f3a12dc`](https://github.com/cube-js/cube-ui-kit/commit/3f3a12dc3a6af52172aba199e085d7fee1035192) Thanks [@tenphi](https://github.com/tenphi)! - Change the default Label preset to `t3m`.
874
-
875
- - [#862](https://github.com/cube-js/cube-ui-kit/pull/862) [`3f3a12dc`](https://github.com/cube-js/cube-ui-kit/commit/3f3a12dc3a6af52172aba199e085d7fee1035192) Thanks [@tenphi](https://github.com/tenphi)! - Fix font weight for Item and Item Button.
876
-
877
- - [#862](https://github.com/cube-js/cube-ui-kit/pull/862) [`3f3a12dc`](https://github.com/cube-js/cube-ui-kit/commit/3f3a12dc3a6af52172aba199e085d7fee1035192) Thanks [@tenphi](https://github.com/tenphi)! - Use right text alignment in NumberInput component.
878
-
879
- ## 0.87.2
880
-
881
- ### Patch Changes
882
-
883
- - [#860](https://github.com/cube-js/cube-ui-kit/pull/860) [`81235aef`](https://github.com/cube-js/cube-ui-kit/commit/81235aefee01497c12e13db3a53a516ca78abaa3) Thanks [@tenphi](https://github.com/tenphi)! - Fix alignment in label position `split`.
884
-
885
- ## 0.87.1
886
-
887
- ### Patch Changes
888
-
889
- - [#858](https://github.com/cube-js/cube-ui-kit/pull/858) [`b27ab4b4`](https://github.com/cube-js/cube-ui-kit/commit/b27ab4b4a16aff15c579874d590cc5275a078fc6) Thanks [@tenphi](https://github.com/tenphi)! - Enhanced selector affix syntax (`# @cube-dev/ui-kit) for sub-element styling in tasty. Capitalized words in the affix are now automatically transformed to sub-element selectors, allowing complex selector chains like `$: '> Body > Row >'`which generates`.table > [data-element="Body"] > [data-element="Row"] > [data-element="Cell"]`.
890
-
891
- - [#857](https://github.com/cube-js/cube-ui-kit/pull/857) [`f6db220c`](https://github.com/cube-js/cube-ui-kit/commit/f6db220c01865273078e17617fa8f31976cf2d8a) Thanks [@tenphi](https://github.com/tenphi)! - Introduces a new render helper component `<RenderCache/>`. Now you can optimize rendering of intensive items like IDE tabs.
892
-
893
- ## 0.87.0
894
-
895
- ### Minor Changes
896
-
897
- - [#854](https://github.com/cube-js/cube-ui-kit/pull/854) [`9e502b78`](https://github.com/cube-js/cube-ui-kit/commit/9e502b788335c2d7acce6685b71166a760258ad2) Thanks [@tenphi](https://github.com/tenphi)! - Add `split` value for `labelPosition` in all field components.
898
-
899
- ### Patch Changes
900
-
901
- - [#855](https://github.com/cube-js/cube-ui-kit/pull/855) [`18fe5cda`](https://github.com/cube-js/cube-ui-kit/commit/18fe5cda0579ca041fbded397a65bf28f8a9a138) Thanks [@tenphi](https://github.com/tenphi)! - Allow flex shrinking for Item.
902
-
903
- - [#850](https://github.com/cube-js/cube-ui-kit/pull/850) [`e0947b58`](https://github.com/cube-js/cube-ui-kit/commit/e0947b58f9bbacd0341b7c54a0dc840a59808017) Thanks [@tenphi](https://github.com/tenphi)! - Reverse the order of buttons in dialogs.
904
-
905
- ## 0.86.0
906
-
907
- ### Minor Changes
908
-
909
- - [#847](https://github.com/cube-js/cube-ui-kit/pull/847) [`c1445d56`](https://github.com/cube-js/cube-ui-kit/commit/c1445d560ed1e04305032669341fb7b051df0d73) Thanks [@tenphi](https://github.com/tenphi)! - New Tag component based on Item component.
910
-
911
- - [#847](https://github.com/cube-js/cube-ui-kit/pull/847) [`c1445d56`](https://github.com/cube-js/cube-ui-kit/commit/c1445d560ed1e04305032669341fb7b051df0d73) Thanks [@tenphi](https://github.com/tenphi)! - Rename ItemBase -> Item. Item -> CollectionItem. Be careful.
912
-
913
- ### Patch Changes
914
-
915
- - [#847](https://github.com/cube-js/cube-ui-kit/pull/847) [`c1445d56`](https://github.com/cube-js/cube-ui-kit/commit/c1445d560ed1e04305032669341fb7b051df0d73) Thanks [@tenphi](https://github.com/tenphi)! - New Badge component based on Item component.
916
-
917
- - [#847](https://github.com/cube-js/cube-ui-kit/pull/847) [`c1445d56`](https://github.com/cube-js/cube-ui-kit/commit/c1445d560ed1e04305032669341fb7b051df0d73) Thanks [@tenphi](https://github.com/tenphi)! - Fix auto-scroll in ListBox with sections.
918
-
919
- - [#847](https://github.com/cube-js/cube-ui-kit/pull/847) [`c1445d56`](https://github.com/cube-js/cube-ui-kit/commit/c1445d560ed1e04305032669341fb7b051df0d73) Thanks [@tenphi](https://github.com/tenphi)! - A new property for sub-element styles `# @cube-dev/ui-kit. Set `$: '>'` for sub-elements styles so they will only apply to the direct child of the root element.
920
-
921
- ## 0.85.2
922
-
923
- ### Patch Changes
924
-
925
- - [#851](https://github.com/cube-js/cube-ui-kit/pull/851) [`a2b237ee`](https://github.com/cube-js/cube-ui-kit/commit/a2b237ee687bfab2462ab6ed7ff5fe56ceb7599f) Thanks [@tenphi](https://github.com/tenphi)! - Fix FilterListBox filtering bug.
926
-
927
- ## 0.85.1
928
-
929
- ### Patch Changes
930
-
931
- - [#844](https://github.com/cube-js/cube-ui-kit/pull/844) [`1c2b44f2`](https://github.com/cube-js/cube-ui-kit/commit/1c2b44f2e4a3c10d8b50c3a5fcd8e602d52501d8) Thanks [@tenphi](https://github.com/tenphi)! - Disable autocomplete in ComboBox be default.
932
-
933
- - [#848](https://github.com/cube-js/cube-ui-kit/pull/848) [`677f06cb`](https://github.com/cube-js/cube-ui-kit/commit/677f06cb00ecb01c575570cf4ad93cca7c5e8aba) Thanks [@tenphi](https://github.com/tenphi)! - Fix position of ComboBox and Select popovers.
934
-
935
- - [#845](https://github.com/cube-js/cube-ui-kit/pull/845) [`a5fa4e6a`](https://github.com/cube-js/cube-ui-kit/commit/a5fa4e6aab277011528bf08e19baffcab611e55b) Thanks [@tenphi](https://github.com/tenphi)! - Optimize FilterListBox filtering logic.
936
-
937
- ## 0.85.0
938
-
939
- ### Minor Changes
940
-
941
- - [#842](https://github.com/cube-js/cube-ui-kit/pull/842) [`2ad48fe7`](https://github.com/cube-js/cube-ui-kit/commit/2ad48fe7a2e2624c067c9f0f1ac8500d3eb5ce0a) Thanks [@tenphi](https://github.com/tenphi)! - Allow to add actions to Item, ItemButton, and ItemBase.
942
-
943
- - [#842](https://github.com/cube-js/cube-ui-kit/pull/842) [`2ad48fe7`](https://github.com/cube-js/cube-ui-kit/commit/2ad48fe7a2e2624c067c9f0f1ac8500d3eb5ce0a) Thanks [@tenphi](https://github.com/tenphi)! - Add ItemBadge component.
944
-
945
- ### Patch Changes
946
-
947
- - [#842](https://github.com/cube-js/cube-ui-kit/pull/842) [`2ad48fe7`](https://github.com/cube-js/cube-ui-kit/commit/2ad48fe7a2e2624c067c9f0f1ac8500d3eb5ce0a) Thanks [@tenphi](https://github.com/tenphi)! - Add isCard flag to ItemBase component.
948
-
949
- - [#842](https://github.com/cube-js/cube-ui-kit/pull/842) [`2ad48fe7`](https://github.com/cube-js/cube-ui-kit/commit/2ad48fe7a2e2624c067c9f0f1ac8500d3eb5ce0a) Thanks [@tenphi](https://github.com/tenphi)! - Fix popover height limit for Select and ComboBox.
950
-
951
- ## 0.84.0
952
-
953
- ### Minor Changes
954
-
955
- - [#817](https://github.com/cube-js/cube-ui-kit/pull/817) [`bb56ca5a`](https://github.com/cube-js/cube-ui-kit/commit/bb56ca5a8a4b08379685a7d32a797ea65019c12d) Thanks [@tenphi](https://github.com/tenphi)! - Add Picker component as a more advanced version of Select.
956
-
957
- ## 0.83.3
958
-
959
- ### Patch Changes
960
-
961
- - [#838](https://github.com/cube-js/cube-ui-kit/pull/838) [`17518277`](https://github.com/cube-js/cube-ui-kit/commit/17518277e6bda8b495c0e74b884f6c97096760e3) Thanks [@tenphi](https://github.com/tenphi)! - Add ProgressBarIcon.
962
-
963
- - [#840](https://github.com/cube-js/cube-ui-kit/pull/840) [`5fb963f0`](https://github.com/cube-js/cube-ui-kit/commit/5fb963f040f1c1ec59bd63c6918cb5f6f6b7a210) Thanks [@tenphi](https://github.com/tenphi)! - Fix RadioGroup base layout.
964
-
965
- ## 0.83.2
966
-
967
- ### Patch Changes
968
-
969
- - [#835](https://github.com/cube-js/cube-ui-kit/pull/835) [`97925cab`](https://github.com/cube-js/cube-ui-kit/commit/97925cabf6babdfc546436cb59d24967a826fb74) Thanks [@tenphi](https://github.com/tenphi)! - Fix qa prop in Radio component.
970
-
971
- - [#837](https://github.com/cube-js/cube-ui-kit/pull/837) [`f80593b8`](https://github.com/cube-js/cube-ui-kit/commit/f80593b89bba6c638d8cfd795e9ad5b02609e75a) Thanks [@tenphi](https://github.com/tenphi)! - Fix qa prop on TextInputBase.
972
-
973
- ## 0.83.1
974
-
975
- ### Patch Changes
976
-
977
- - [#832](https://github.com/cube-js/cube-ui-kit/pull/832) [`50cf8a77`](https://github.com/cube-js/cube-ui-kit/commit/50cf8a77c6ce34d8d8be011a3fd9c897e80ef9c5) Thanks [@tenphi](https://github.com/tenphi)! - Fix qa prop binding in ComboBox.
978
-
979
- - [#831](https://github.com/cube-js/cube-ui-kit/pull/831) [`9995e8a5`](https://github.com/cube-js/cube-ui-kit/commit/9995e8a5ed4a31166d40e46f7e5e1d6f12d940f8) Thanks [@tenphi](https://github.com/tenphi)! - Fix popover transitions in ComboBox and Select. Fix transitions in Tooltip.
980
-
981
- ## 0.83.0
982
-
983
- ### Minor Changes
984
-
985
- - [#827](https://github.com/cube-js/cube-ui-kit/pull/827) [`7153c8f2`](https://github.com/cube-js/cube-ui-kit/commit/7153c8f26fc955ed7d78dbe6f53b623f45f6c430) Thanks [@tenphi](https://github.com/tenphi)! - Introduces a brand new Radio.Tabs component as a replacement for RadioGroup with isSolid flag.
986
-
987
- ## 0.82.2
988
-
989
- ### Patch Changes
990
-
991
- - [#828](https://github.com/cube-js/cube-ui-kit/pull/828) [`f3a39bba`](https://github.com/cube-js/cube-ui-kit/commit/f3a39bba8129b355d149493b927972a12609aa1a) Thanks [@tenphi](https://github.com/tenphi)! - Improve prop handling in ComboBox.Item
992
-
993
- ## 0.82.1
994
-
995
- ### Patch Changes
996
-
997
- - [#824](https://github.com/cube-js/cube-ui-kit/pull/824) [`e88acca3`](https://github.com/cube-js/cube-ui-kit/commit/e88acca3b7dc34a2a9f6574429766212c2644147) Thanks [@tenphi](https://github.com/tenphi)! - Generate id even for input components that are not connected to a form.
998
-
999
- - [#824](https://github.com/cube-js/cube-ui-kit/pull/824) [`e88acca3`](https://github.com/cube-js/cube-ui-kit/commit/e88acca3b7dc34a2a9f6574429766212c2644147) Thanks [@tenphi](https://github.com/tenphi)! - Prevent form prop from leaking to the DOM.
1000
-
1001
- ## 0.82.0
1002
-
1003
- ### Minor Changes
1004
-
1005
- - [#823](https://github.com/cube-js/cube-ui-kit/pull/823) [`91e81ac3`](https://github.com/cube-js/cube-ui-kit/commit/91e81ac3e78998f458b3bca140bfbd8c28824f97) Thanks [@tenphi](https://github.com/tenphi)! - Add a brand new ComboBox component with virtualization and user/developer-friendly behavior.
1006
-
1007
- ### Patch Changes
1008
-
1009
- - [#818](https://github.com/cube-js/cube-ui-kit/pull/818) [`465e4ebc`](https://github.com/cube-js/cube-ui-kit/commit/465e4ebc303c230a9bb31542f77fcf75d1acb6a8) Thanks [@tenphi](https://github.com/tenphi)! - Add DisplayTransition helper component.
1010
-
1011
- - [#818](https://github.com/cube-js/cube-ui-kit/pull/818) [`465e4ebc`](https://github.com/cube-js/cube-ui-kit/commit/465e4ebc303c230a9bb31542f77fcf75d1acb6a8) Thanks [@tenphi](https://github.com/tenphi)! - Fix Tooltip position and transition.
1012
-
1013
- ## 0.81.0
1014
-
1015
- ### Minor Changes
1016
-
1017
- - [#820](https://github.com/cube-js/cube-ui-kit/pull/820) [`bcc9783e`](https://github.com/cube-js/cube-ui-kit/commit/bcc9783e284b209c053b15673990ce2c633178ac) Thanks [@tenphi](https://github.com/tenphi)! - New Switch sizes: `small` -> `medium` (and now default). new `small` size.
1018
-
1019
- ## 0.80.2
1020
-
1021
- ### Patch Changes
1022
-
1023
- - [#774](https://github.com/cube-js/cube-ui-kit/pull/774) [`3f8c4b7f`](https://github.com/cube-js/cube-ui-kit/commit/3f8c4b7f40b1869abe694135803e7b784e1c51c2) Thanks [@tenphi](https://github.com/tenphi)! - Improve style state application for padding and margin styles making it predictable.
1024
-
1025
- - [#819](https://github.com/cube-js/cube-ui-kit/pull/819) [`852e73f0`](https://github.com/cube-js/cube-ui-kit/commit/852e73f006ef57c5d52ddbbc420f35e16989aaa5) Thanks [@tenphi](https://github.com/tenphi)! - Add CubePauseIcon and CubePlayIcon.
1026
-
1027
- - [#816](https://github.com/cube-js/cube-ui-kit/pull/816) [`13fb4505`](https://github.com/cube-js/cube-ui-kit/commit/13fb4505adcae3f905b6b6a1c21de9fd291886fc) Thanks [@tenphi](https://github.com/tenphi)! - Support controllable filtering in FilterListBox and FilterPicker.
1028
-
1029
- ## 0.80.1
1030
-
1031
- ### Patch Changes
1032
-
1033
- - [#812](https://github.com/cube-js/cube-ui-kit/pull/812) [`4c673561`](https://github.com/cube-js/cube-ui-kit/commit/4c6735617a7ac754c0b3e4b0c7871c759ceeea48) Thanks [@tenphi](https://github.com/tenphi)! - Fix tooltip dynamic calculation in ItemBase.
1034
-
1035
- - [#813](https://github.com/cube-js/cube-ui-kit/pull/813) [`96218a6e`](https://github.com/cube-js/cube-ui-kit/commit/96218a6ef18ce24307269f36657fc8209aea68cc) Thanks [@tenphi](https://github.com/tenphi)! - Add ChartHeatmapIcon component.
1036
-
1037
- ## 0.80.0
1038
-
1039
- ### Minor Changes
1040
-
1041
- - [#810](https://github.com/cube-js/cube-ui-kit/pull/810) [`eb5a2efa`](https://github.com/cube-js/cube-ui-kit/commit/eb5a2efad5681c7f38e5beb6852249e222fd9efa) Thanks [@tenphi](https://github.com/tenphi)! - Add new icons: PercentageIcon, CurrencyDollarIcon, Number123Icon.
1042
-
1043
- ### Patch Changes
1044
-
1045
- - [#809](https://github.com/cube-js/cube-ui-kit/pull/809) [`041e7da7`](https://github.com/cube-js/cube-ui-kit/commit/041e7da7be5a293c7919a49f23c758215fe67999) Thanks [@tenphi](https://github.com/tenphi)! - Fix tooltip logic in ItemBase component.
1046
-
1047
- - [#809](https://github.com/cube-js/cube-ui-kit/pull/809) [`041e7da7`](https://github.com/cube-js/cube-ui-kit/commit/041e7da7be5a293c7919a49f23c758215fe67999) Thanks [@tenphi](https://github.com/tenphi)! - Fix accessibility by setting keyboard props to hotkeys in ItemBase component.
1048
-
1049
- ## 0.79.0
1050
-
1051
- ### Minor Changes
1052
-
1053
- - [#807](https://github.com/cube-js/cube-ui-kit/pull/807) [`ce19c264`](https://github.com/cube-js/cube-ui-kit/commit/ce19c26496fbb87799fc7fb055d1647a4f87c392) Thanks [@tenphi](https://github.com/tenphi)! - **Breaking Change:** AlertDialog API cancel button behavior changed
1054
-
1055
- The `cancel` button in AlertDialog now rejects the promise instead of resolving with `'cancel'` status, aligning it with the dismiss (Escape key) behavior.
1056
-
1057
- **Migration Guide:**
1058
-
1059
- **Before:**
1060
-
1061
- ```typescript
1062
- alertDialogAPI.open({...})
1063
- .then((status) => {
1064
- if (status === 'cancel') {
1065
- // Handle cancel
1066
- } else if (status === 'confirm') {
1067
- // Handle confirm
1068
- }
1069
- })
1070
- ```
1071
-
1072
- **After:**
1073
-
1074
- ```typescript
1075
- alertDialogAPI.open({...})
1076
- .then((status) => {
1077
- if (status === 'confirm') {
1078
- // Handle confirm
1079
- } else if (status === 'secondary') {
1080
- // Handle secondary action
1081
- }
1082
- })
1083
- .catch(() => {
1084
- // Handle cancel or dismiss
1085
- })
1086
- ```
1087
-
1088
- **Note:** `AlertDialogResolveStatus` type no longer includes `'cancel'` - it now only contains `'confirm' | 'secondary'`.
1089
-
1090
- ## 0.78.5
1091
-
1092
- ### Patch Changes
1093
-
1094
- - [#805](https://github.com/cube-js/cube-ui-kit/pull/805) [`5fa85184`](https://github.com/cube-js/cube-ui-kit/commit/5fa851840db023def82f1a3838576ba8fe0d65f8) Thanks [@tenphi](https://github.com/tenphi)! - Fix the return type of the TooltipProvider the second time :)
1095
-
1096
- - [#805](https://github.com/cube-js/cube-ui-kit/pull/805) [`5fa85184`](https://github.com/cube-js/cube-ui-kit/commit/5fa851840db023def82f1a3838576ba8fe0d65f8) Thanks [@tenphi](https://github.com/tenphi)! - Fix DecimalDecreaseIcon and DecimalIncreaseIcon.
1097
-
1098
- ## 0.78.4
1099
-
1100
- ### Patch Changes
1101
-
1102
- - [#803](https://github.com/cube-js/cube-ui-kit/pull/803) [`a4f59bb7`](https://github.com/cube-js/cube-ui-kit/commit/a4f59bb74066d1e900fb69ab3215584182a38cb1) Thanks [@tenphi](https://github.com/tenphi)! - Fix the return type of the TooltipProvider the second time :)
1103
-
1104
- ## 0.78.3
1105
-
1106
- ### Patch Changes
1107
-
1108
- - [#801](https://github.com/cube-js/cube-ui-kit/pull/801) [`fae98647`](https://github.com/cube-js/cube-ui-kit/commit/fae98647f070ac69f6fa7abc80b5bb568896c81a) Thanks [@tenphi](https://github.com/tenphi)! - Fix the return type of TooltipProvider.
1109
-
1110
- ## 0.78.2
1111
-
1112
- ### Patch Changes
1113
-
1114
- - [#799](https://github.com/cube-js/cube-ui-kit/pull/799) [`29163467`](https://github.com/cube-js/cube-ui-kit/commit/29163467292aa161131735448ad5e1b659d55abc) Thanks [@tenphi](https://github.com/tenphi)! - Fix tooltip implementation so it doesn't break item navigation.
1115
-
1116
- - [#799](https://github.com/cube-js/cube-ui-kit/pull/799) [`29163467`](https://github.com/cube-js/cube-ui-kit/commit/29163467292aa161131735448ad5e1b659d55abc) Thanks [@tenphi](https://github.com/tenphi)! - Use auto tooltip in ItemBase component by default. See documentation to learn more.
1117
-
1118
- - [#798](https://github.com/cube-js/cube-ui-kit/pull/798) [`17e4f7f7`](https://github.com/cube-js/cube-ui-kit/commit/17e4f7f77103d9c2678cbe6e7c01ab2ca7aa7aa7) Thanks [@tenphi](https://github.com/tenphi)! - Don't pass onPress prop to the element in ItemButton.
1119
-
1120
- ## 0.78.1
1121
-
1122
- ### Patch Changes
1123
-
1124
- - [#795](https://github.com/cube-js/cube-ui-kit/pull/795) [`2e1a331d`](https://github.com/cube-js/cube-ui-kit/commit/2e1a331d6a02c377e8b8017efe3109574bdde03d) Thanks [@tenphi](https://github.com/tenphi)! - Condense the UI of Dialog component.
1125
-
1126
- - [#796](https://github.com/cube-js/cube-ui-kit/pull/796) [`728f983d`](https://github.com/cube-js/cube-ui-kit/commit/728f983d66a68e78c8c17f6edfde5b0e3b0050cb) Thanks [@tenphi](https://github.com/tenphi)! - Set `disabled`, `checked`, `hidden` mods automatically.
1127
-
1128
- ## 0.78.0
1129
-
1130
- ### Minor Changes
1131
-
1132
- - [#793](https://github.com/cube-js/cube-ui-kit/pull/793) [`a64ee513`](https://github.com/cube-js/cube-ui-kit/commit/a64ee513381c56b470ebca720a6ad3f21bc5fd3f) Thanks [@tenphi](https://github.com/tenphi)! - The new navigation API that relies on external `useHref` and `useNavigation` hooks.
1133
-
1134
- ### Patch Changes
1135
-
1136
- - [#793](https://github.com/cube-js/cube-ui-kit/pull/793) [`a64ee513`](https://github.com/cube-js/cube-ui-kit/commit/a64ee513381c56b470ebca720a6ad3f21bc5fd3f) Thanks [@tenphi](https://github.com/tenphi)! - Add support for full navigation argument type in `to` prop in actions including object `{ pathname, search, hash }` and numbers for history navigation. Use `<Link to={-1}>...` to move back in history.
1137
-
1138
- ## 0.77.4
1139
-
1140
- ### Patch Changes
1141
-
1142
- - [#791](https://github.com/cube-js/cube-ui-kit/pull/791) [`1ca1deb4`](https://github.com/cube-js/cube-ui-kit/commit/1ca1deb4211ec6a67a5d81fbd7606a76c69faa31) Thanks [@tenphi](https://github.com/tenphi)! - Actualize the interface of Item component.
1143
-
1144
- - [#791](https://github.com/cube-js/cube-ui-kit/pull/791) [`1ca1deb4`](https://github.com/cube-js/cube-ui-kit/commit/1ca1deb4211ec6a67a5d81fbd7606a76c69faa31) Thanks [@tenphi](https://github.com/tenphi)! - Make Panel placeSelf stretch by default.
1145
-
1146
- - [#791](https://github.com/cube-js/cube-ui-kit/pull/791) [`1ca1deb4`](https://github.com/cube-js/cube-ui-kit/commit/1ca1deb4211ec6a67a5d81fbd7606a76c69faa31) Thanks [@tenphi](https://github.com/tenphi)! - Fix Item interface for FilterPicker.
1147
-
1148
- - [#791](https://github.com/cube-js/cube-ui-kit/pull/791) [`1ca1deb4`](https://github.com/cube-js/cube-ui-kit/commit/1ca1deb4211ec6a67a5d81fbd7606a76c69faa31) Thanks [@tenphi](https://github.com/tenphi)! - Add onClear callback for FilterPicker, Select, ComboBox and SearchInput.
1149
-
1150
- - [#791](https://github.com/cube-js/cube-ui-kit/pull/791) [`1ca1deb4`](https://github.com/cube-js/cube-ui-kit/commit/1ca1deb4211ec6a67a5d81fbd7606a76c69faa31) Thanks [@tenphi](https://github.com/tenphi)! - Fix popover of FilterPicker to corretly flip on opening.
1151
-
1152
- ## 0.77.3
1153
-
1154
- ### Patch Changes
1155
-
1156
- - [#787](https://github.com/cube-js/cube-ui-kit/pull/787) [`78dc7da2`](https://github.com/cube-js/cube-ui-kit/commit/78dc7da2983d1acb1ed32ad48e482a62758c093c) Thanks [@tenphi](https://github.com/tenphi)! - Add ItemAction component with a temporary implementation.
1157
-
1158
- - [#787](https://github.com/cube-js/cube-ui-kit/pull/787) [`78dc7da2`](https://github.com/cube-js/cube-ui-kit/commit/78dc7da2983d1acb1ed32ad48e482a62758c093c) Thanks [@tenphi](https://github.com/tenphi)! - Add a clear button to FilterPicker, Select and ComboBox components. Redesign the clear button in SearchInput component.
1159
-
1160
- - [#789](https://github.com/cube-js/cube-ui-kit/pull/789) [`1251a11b`](https://github.com/cube-js/cube-ui-kit/commit/1251a11b7a406cf960ed1a89115c2f9dd4bd3717) Thanks [@tenphi](https://github.com/tenphi)! - Add DecimalDecreaseIcon.tsx and DecimalIncreaseIcon.tsx.
1161
-
1162
- - [#790](https://github.com/cube-js/cube-ui-kit/pull/790) [`f4e502d1`](https://github.com/cube-js/cube-ui-kit/commit/f4e502d19eae89334c8f2487f7c0a4acb9c3fde6) Thanks [@tenphi](https://github.com/tenphi)! - Make toasts and notifications more visible with a colorful border.
1163
-
1164
- ## 0.77.2
1165
-
1166
- ### Patch Changes
1167
-
1168
- - [#784](https://github.com/cube-js/cube-ui-kit/pull/784) [`39be6b6b`](https://github.com/cube-js/cube-ui-kit/commit/39be6b6b7053001a36939d047d91dd1ef3d67db5) Thanks [@tenphi](https://github.com/tenphi)! - Fix tooltip condition in ItemBase.
1169
-
1170
- - [#784](https://github.com/cube-js/cube-ui-kit/pull/784) [`39be6b6b`](https://github.com/cube-js/cube-ui-kit/commit/39be6b6b7053001a36939d047d91dd1ef3d67db5) Thanks [@tenphi](https://github.com/tenphi)! - Allow to rewrite the tooltip title in ItemBase.
1171
-
1172
- ## 0.77.1
1173
-
1174
- ### Patch Changes
1175
-
1176
- - [#782](https://github.com/cube-js/cube-ui-kit/pull/782) [`01192708`](https://github.com/cube-js/cube-ui-kit/commit/01192708383c0e03921020bdeb1d5b5e3f0bc9e7) Thanks [@tenphi](https://github.com/tenphi)! - Fix FilterPicker's tooltip typings.
1177
-
1178
- ## 0.77.0
1179
-
1180
- ### Minor Changes
1181
-
1182
- - [#780](https://github.com/cube-js/cube-ui-kit/pull/780) [`88accef2`](https://github.com/cube-js/cube-ui-kit/commit/88accef2beaadbdf2c2758de0c3aa961f619a0ca) Thanks [@tenphi](https://github.com/tenphi)! - Remove legacy Modal component.
1183
-
1184
- ### Patch Changes
1185
-
1186
- - [#780](https://github.com/cube-js/cube-ui-kit/pull/780) [`88accef2`](https://github.com/cube-js/cube-ui-kit/commit/88accef2beaadbdf2c2758de0c3aa961f619a0ca) Thanks [@tenphi](https://github.com/tenphi)! - Add side border radius to the header and the footer of the menus.
1187
-
1188
- ## 0.76.2
1189
-
1190
- ### Patch Changes
1191
-
1192
- - [#778](https://github.com/cube-js/cube-ui-kit/pull/778) [`0be20c83`](https://github.com/cube-js/cube-ui-kit/commit/0be20c83f07ff92dd65ba984cb309cdc16166bec) Thanks [@tenphi](https://github.com/tenphi)! - Fix form submission by Enter key.
1193
-
1194
- ## 0.76.1
1195
-
1196
- ### Patch Changes
1197
-
1198
- - [#776](https://github.com/cube-js/cube-ui-kit/pull/776) [`3f8be8e5`](https://github.com/cube-js/cube-ui-kit/commit/3f8be8e5435e1f6fdcaf0976e27e8a6a3de4890d) Thanks [@tenphi](https://github.com/tenphi)! - Fix CSS total size calculation in debug tools.
1199
-
1200
- ## 0.76.0
1201
-
1202
- ### Minor Changes
1203
-
1204
- - [#773](https://github.com/cube-js/cube-ui-kit/pull/773) [`d79517e8`](https://github.com/cube-js/cube-ui-kit/commit/d79517e82614fe3fe7c4e0d388ec4ef96ad00c88) Thanks [@tenphi](https://github.com/tenphi)! - Improved debug tools with better DX and simpler API.
1205
-
1206
- ### Patch Changes
1207
-
1208
- - [#773](https://github.com/cube-js/cube-ui-kit/pull/773) [`d79517e8`](https://github.com/cube-js/cube-ui-kit/commit/d79517e82614fe3fe7c4e0d388ec4ef96ad00c88) Thanks [@tenphi](https://github.com/tenphi)! - Fix cleanup of style in the new style injector.
1209
-
1210
- - [#773](https://github.com/cube-js/cube-ui-kit/pull/773) [`d79517e8`](https://github.com/cube-js/cube-ui-kit/commit/d79517e82614fe3fe7c4e0d388ec4ef96ad00c88) Thanks [@tenphi](https://github.com/tenphi)! - Optimize rule generation by sorting in cache keys.
1211
-
1212
- - [#773](https://github.com/cube-js/cube-ui-kit/pull/773) [`d79517e8`](https://github.com/cube-js/cube-ui-kit/commit/d79517e82614fe3fe7c4e0d388ec4ef96ad00c88) Thanks [@tenphi](https://github.com/tenphi)! - Improve cache cleanup logic and cache checks.
1213
-
1214
- ## 0.75.0
1215
-
1216
- ### Minor Changes
1217
-
1218
- - [#767](https://github.com/cube-js/cube-ui-kit/pull/767) [`a43815d8`](https://github.com/cube-js/cube-ui-kit/commit/a43815d8f2f660fd89b5fa7950574204e77158e4) Thanks [@tenphi](https://github.com/tenphi)! - A brand new style injector. Drop `styled-components` dependency.
1219
-
1220
- ### Patch Changes
1221
-
1222
- - [#767](https://github.com/cube-js/cube-ui-kit/pull/767) [`a43815d8`](https://github.com/cube-js/cube-ui-kit/commit/a43815d8f2f660fd89b5fa7950574204e77158e4) Thanks [@tenphi](https://github.com/tenphi)! - Add @property definition support via `property` method.
1223
-
1224
- - [#767](https://github.com/cube-js/cube-ui-kit/pull/767) [`a43815d8`](https://github.com/cube-js/cube-ui-kit/commit/a43815d8f2f660fd89b5fa7950574204e77158e4) Thanks [@tenphi](https://github.com/tenphi)! - Fix MenuItem prop passing.
1225
-
1226
- - [#767](https://github.com/cube-js/cube-ui-kit/pull/767) [`a43815d8`](https://github.com/cube-js/cube-ui-kit/commit/a43815d8f2f660fd89b5fa7950574204e77158e4) Thanks [@tenphi](https://github.com/tenphi)! - Add `tastyDebug` tool for debugging.
1227
-
1228
- ## 0.74.3
1229
-
1230
- ### Patch Changes
1231
-
1232
- - [#770](https://github.com/cube-js/cube-ui-kit/pull/770) [`21336718`](https://github.com/cube-js/cube-ui-kit/commit/21336718865a2e2c8e9a3753ae6961c0cfa83ba1) Thanks [@tenphi](https://github.com/tenphi)! - Add size observer for ItemBase.
1233
-
1234
- ## 0.74.2
1235
-
1236
- ### Patch Changes
1237
-
1238
- - [#768](https://github.com/cube-js/cube-ui-kit/pull/768) [`fc039f5e`](https://github.com/cube-js/cube-ui-kit/commit/fc039f5e9ae8913908486d7115d86ce4285caa25) Thanks [@tenphi](https://github.com/tenphi)! - Fix checkbox opacity on hover in ListBox.
1239
-
1240
- ## 0.74.1
1241
-
1242
- ### Patch Changes
1243
-
1244
- - [#765](https://github.com/cube-js/cube-ui-kit/pull/765) [`8310dc90`](https://github.com/cube-js/cube-ui-kit/commit/8310dc90209f14f301a8e60b71f5c2f9bfa27c73) Thanks [@tenphi](https://github.com/tenphi)! - Improve popover state sync.
1245
-
1246
- ## 0.74.0
1247
-
1248
- ### Minor Changes
1249
-
1250
- - [#764](https://github.com/cube-js/cube-ui-kit/pull/764) [`5e1b4ecb`](https://github.com/cube-js/cube-ui-kit/commit/5e1b4ecb55537f41f9217ca3b20c7bfe81d03dcb) Thanks [@tenphi](https://github.com/tenphi)! - Add support for React 19.
1251
-
1252
- ### Patch Changes
1253
-
1254
- - [#762](https://github.com/cube-js/cube-ui-kit/pull/762) [`ecfa2d3b`](https://github.com/cube-js/cube-ui-kit/commit/ecfa2d3b0c56880547093d4acb262adf050dabdc) Thanks [@tenphi](https://github.com/tenphi)! - Update React Aria deps.
1255
-
1256
- - [#764](https://github.com/cube-js/cube-ui-kit/pull/764) [`5e1b4ecb`](https://github.com/cube-js/cube-ui-kit/commit/5e1b4ecb55537f41f9217ca3b20c7bfe81d03dcb) Thanks [@tenphi](https://github.com/tenphi)! - Fix ItemButton default type attribute (button).
1257
-
1258
- ## 0.73.2
1259
-
1260
- ### Patch Changes
1261
-
1262
- - [#760](https://github.com/cube-js/cube-ui-kit/pull/760) [`2400dd2f`](https://github.com/cube-js/cube-ui-kit/commit/2400dd2f5a625f58da26e964c3833a684b953c61) Thanks [@tenphi](https://github.com/tenphi)! - Add support for loading state in ItemBase via `isLoading` and `loadingSlot` props.
1263
-
1264
- - [#760](https://github.com/cube-js/cube-ui-kit/pull/760) [`2400dd2f`](https://github.com/cube-js/cube-ui-kit/commit/2400dd2f5a625f58da26e964c3833a684b953c61) Thanks [@tenphi](https://github.com/tenphi)! - Add loading state support to ItemButton.
1265
-
1266
- ## 0.73.1
1267
-
1268
- ### Patch Changes
1269
-
1270
- - [#758](https://github.com/cube-js/cube-ui-kit/pull/758) [`b88c07a5`](https://github.com/cube-js/cube-ui-kit/commit/b88c07a500bc9984ce8b66c55b14166b28b86811) Thanks [@tenphi](https://github.com/tenphi)! - Avoid repetitive warnings in Buttons.
1271
-
1272
- ## 0.73.0
1273
-
1274
- ### Minor Changes
1275
-
1276
- - [#752](https://github.com/cube-js/cube-ui-kit/pull/752) [`6f3b2616`](https://github.com/cube-js/cube-ui-kit/commit/6f3b2616a50bc1188e7166982e8e4bbff245f663) Thanks [@tenphi](https://github.com/tenphi)! - Add itemBase and ItemButton components packed with lots of features. ItemBase is now used as a base for all Item components in Menu, CommandMenu, ListBox, FilterListBox, FilterPicker, Select, ComboBox.
1277
-
1278
- ### Patch Changes
1279
-
1280
- - [#752](https://github.com/cube-js/cube-ui-kit/pull/752) [`6f3b2616`](https://github.com/cube-js/cube-ui-kit/commit/6f3b2616a50bc1188e7166982e8e4bbff245f663) Thanks [@tenphi](https://github.com/tenphi)! - Make menu props optional for open method in `useAnchoredMenu`.
1281
-
1282
- - [#752](https://github.com/cube-js/cube-ui-kit/pull/752) [`6f3b2616`](https://github.com/cube-js/cube-ui-kit/commit/6f3b2616a50bc1188e7166982e8e4bbff245f663) Thanks [@tenphi](https://github.com/tenphi)! - Increase search input size for FilterListBox and CommandMenu.
1283
-
1284
- - [#752](https://github.com/cube-js/cube-ui-kit/pull/752) [`6f3b2616`](https://github.com/cube-js/cube-ui-kit/commit/6f3b2616a50bc1188e7166982e8e4bbff245f663) Thanks [@tenphi](https://github.com/tenphi)! - Add default menu props to `useAnchoredMenu`.
1285
-
1286
- - [#752](https://github.com/cube-js/cube-ui-kit/pull/752) [`6f3b2616`](https://github.com/cube-js/cube-ui-kit/commit/6f3b2616a50bc1188e7166982e8e4bbff245f663) Thanks [@tenphi](https://github.com/tenphi)! - Add `allValueProps`, `customValueProps` and `newCustomValueProps` to customize the additional options in ListBox, FilterListBox and FilterPicker.
1287
-
1288
- - [#752](https://github.com/cube-js/cube-ui-kit/pull/752) [`6f3b2616`](https://github.com/cube-js/cube-ui-kit/commit/6f3b2616a50bc1188e7166982e8e4bbff245f663) Thanks [@tenphi](https://github.com/tenphi)! - Sync opening state between FilterPicker instances and other triggers.
1289
-
1290
- ## 0.72.3
1291
-
1292
- ### Patch Changes
1293
-
1294
- - [#755](https://github.com/cube-js/cube-ui-kit/pull/755) [`62ff1eed`](https://github.com/cube-js/cube-ui-kit/commit/62ff1eed53448c710348751a0c5716becf8e7c4d) Thanks [@tenphi](https://github.com/tenphi)! - Fix navigation for CommandMenu with sections.
1295
-
1296
- ## 0.72.2
1297
-
1298
- ### Patch Changes
1299
-
1300
- - [#753](https://github.com/cube-js/cube-ui-kit/pull/753) [`2a7a61ea`](https://github.com/cube-js/cube-ui-kit/commit/2a7a61ea86551b83467a678c06bc9c8cd77f9d79) Thanks [@tenphi](https://github.com/tenphi)! - Fix \$label-width definition in Label component.
1301
-
1302
- - [#753](https://github.com/cube-js/cube-ui-kit/pull/753) [`2a7a61ea`](https://github.com/cube-js/cube-ui-kit/commit/2a7a61ea86551b83467a678c06bc9c8cd77f9d79) Thanks [@tenphi](https://github.com/tenphi)! - Set isDismissable for DialogContainer to true by default.
1303
-
1304
- - [#753](https://github.com/cube-js/cube-ui-kit/pull/753) [`2a7a61ea`](https://github.com/cube-js/cube-ui-kit/commit/2a7a61ea86551b83467a678c06bc9c8cd77f9d79) Thanks [@tenphi](https://github.com/tenphi)! - Fix LRU cache error in the style parser.
1305
-
1306
- ## 0.72.1
1307
-
1308
- ### Patch Changes
1309
-
1310
- - [#750](https://github.com/cube-js/cube-ui-kit/pull/750) [`0ee6ac95`](https://github.com/cube-js/cube-ui-kit/commit/0ee6ac958946c5621a847d7982f16267b4d29526) Thanks [@tenphi](https://github.com/tenphi)! - Fix \$label-width definition in Label component.
1311
-
1312
- ## 0.72.0
1313
-
1314
- ### Minor Changes
1315
-
1316
- - [#747](https://github.com/cube-js/cube-ui-kit/pull/747) [`27dc51b2`](https://github.com/cube-js/cube-ui-kit/commit/27dc51b2c3ab08693b02892f38787a3e90e238b9) Thanks [@tenphi](https://github.com/tenphi)! - New syntax for custom properties with fallback: `($prop-name, <fallback_value>)`.
1317
-
1318
- ### Patch Changes
1319
-
1320
- - [#749](https://github.com/cube-js/cube-ui-kit/pull/749) [`6f40ed82`](https://github.com/cube-js/cube-ui-kit/commit/6f40ed82775976efecf7b2f99f7356c59b770284) Thanks [@tenphi](https://github.com/tenphi)! - Add SubMenuTrigger component for submenu support in Menu. CommandMenu is not supported.
1321
-
1322
- ## 0.71.2
1323
-
1324
- ### Patch Changes
1325
-
1326
- - [#745](https://github.com/cube-js/cube-ui-kit/pull/745) [`1646e97f`](https://github.com/cube-js/cube-ui-kit/commit/1646e97f25b6fb8a3488460093ecbd75213ba191) Thanks [@tenphi](https://github.com/tenphi)! - Unescape keys in FilterPicker to support `:` and `=` symbols.
1327
-
1328
- ## 0.71.1
1329
-
1330
- ### Patch Changes
1331
-
1332
- - [#742](https://github.com/cube-js/cube-ui-kit/pull/742) [`c383d295`](https://github.com/cube-js/cube-ui-kit/commit/c383d295c9a5d30c2931ccbb628d27d4b22715e3) Thanks [@tenphi](https://github.com/tenphi)! - Fix the FilterPicker sorting behavior in controlled mode.
1333
-
1334
- ## 0.71.0
1335
-
1336
- ### Minor Changes
1337
-
1338
- - [#681](https://github.com/cube-js/cube-ui-kit/pull/681) [`c5f04fec`](https://github.com/cube-js/cube-ui-kit/commit/c5f04fec2c13cf511b6c45059884af94480a17ce) Thanks [@tenphi](https://github.com/tenphi)! - A brand new style parser that supports all kinds of css syntax and nested custom tasty syntax.
1339
-
1340
- ## 0.70.0
1341
-
1342
- ### Minor Changes
1343
-
1344
- - [#739](https://github.com/cube-js/cube-ui-kit/pull/739) [`796e9bee`](https://github.com/cube-js/cube-ui-kit/commit/796e9bee035ad7246aa018868f0abae930309493) Thanks [@tenphi](https://github.com/tenphi)! - New syntax for custom properties: `$` instead of `@`. The old syntax is now deprecated.
1345
-
1346
- ### Patch Changes
1347
-
1348
- - [#739](https://github.com/cube-js/cube-ui-kit/pull/739) [`796e9bee`](https://github.com/cube-js/cube-ui-kit/commit/796e9bee035ad7246aa018868f0abae930309493) Thanks [@tenphi](https://github.com/tenphi)! - Fix color for chart type icons.
1349
-
1350
- ## 0.69.3
1351
-
1352
- ### Patch Changes
1353
-
1354
- - [#737](https://github.com/cube-js/cube-ui-kit/pull/737) [`45daa5de`](https://github.com/cube-js/cube-ui-kit/commit/45daa5de8c9fbaaa4eac86ef006862e71b2b53a6) Thanks [@tenphi](https://github.com/tenphi)! - Full items prop support in FilterPicker.
1355
-
1356
- ## 0.69.2
1357
-
1358
- ### Patch Changes
1359
-
1360
- - [#735](https://github.com/cube-js/cube-ui-kit/pull/735) [`7fdc44b0`](https://github.com/cube-js/cube-ui-kit/commit/7fdc44b09e843b5400e86ed0c512616910ee05f5) Thanks [@tenphi](https://github.com/tenphi)! - Fix flipping of popover in FilterPicker if it's already open.
1361
-
1362
- - [#735](https://github.com/cube-js/cube-ui-kit/pull/735) [`7fdc44b0`](https://github.com/cube-js/cube-ui-kit/commit/7fdc44b09e843b5400e86ed0c512616910ee05f5) Thanks [@tenphi](https://github.com/tenphi)! - Improved Button layout.
1363
-
1364
- - [#735](https://github.com/cube-js/cube-ui-kit/pull/735) [`7fdc44b0`](https://github.com/cube-js/cube-ui-kit/commit/7fdc44b09e843b5400e86ed0c512616910ee05f5) Thanks [@tenphi](https://github.com/tenphi)! - Improved FilterPicker layout with additional wrapper for consistency.
1365
-
1366
- - [#735](https://github.com/cube-js/cube-ui-kit/pull/735) [`7fdc44b0`](https://github.com/cube-js/cube-ui-kit/commit/7fdc44b09e843b5400e86ed0c512616910ee05f5) Thanks [@tenphi](https://github.com/tenphi)! - Fix initial state inconsistency in FilterPicker.
1367
-
1368
- - [#735](https://github.com/cube-js/cube-ui-kit/pull/735) [`7fdc44b0`](https://github.com/cube-js/cube-ui-kit/commit/7fdc44b09e843b5400e86ed0c512616910ee05f5) Thanks [@tenphi](https://github.com/tenphi)! - Overflow text ellipsis in Buttons with icons by default.
1369
-
1370
- - [#735](https://github.com/cube-js/cube-ui-kit/pull/735) [`7fdc44b0`](https://github.com/cube-js/cube-ui-kit/commit/7fdc44b09e843b5400e86ed0c512616910ee05f5) Thanks [@tenphi](https://github.com/tenphi)! - Add `showSelectAll` and `selectAllLabel` options for ListBox, FilterListBox, and FilterPicker to add "Select All" option. The label can be customized.
1371
-
1372
- ## 0.69.1
1373
-
1374
- ### Patch Changes
1375
-
1376
- - [#733](https://github.com/cube-js/cube-ui-kit/pull/733) [`65849abc`](https://github.com/cube-js/cube-ui-kit/commit/65849abc4ef917437cccc1c796cf75680f0a0a7c) Thanks [@tenphi](https://github.com/tenphi)! - Fix minor issues with input styling.
1377
-
1378
- - [#733](https://github.com/cube-js/cube-ui-kit/pull/733) [`65849abc`](https://github.com/cube-js/cube-ui-kit/commit/65849abc4ef917437cccc1c796cf75680f0a0a7c) Thanks [@tenphi](https://github.com/tenphi)! - Expose shouldFocusWrap for ListBox, FilterListBox, and FilterPicker to control whether keyboard navigation should wrap around.
1379
-
1380
- ## 0.69.0
1381
-
1382
- ### Minor Changes
1383
-
1384
- - [#731](https://github.com/cube-js/cube-ui-kit/pull/731) [`1b57ef6c`](https://github.com/cube-js/cube-ui-kit/commit/1b57ef6c00e8e0fc8437aa92f02c57418cf7b048) Thanks [@tenphi](https://github.com/tenphi)! - More condensed UI. New sizes: medium (40) -> large (40), small (32) -> medium (32), large (48) -> xlarge (48), small (28), xsmall (24).
1385
-
1386
- - [#731](https://github.com/cube-js/cube-ui-kit/pull/731) [`1b57ef6c`](https://github.com/cube-js/cube-ui-kit/commit/1b57ef6c00e8e0fc8437aa92f02c57418cf7b048) Thanks [@tenphi](https://github.com/tenphi)! - Add size prop for TextInputMapper.
1387
-
1388
- ## 0.68.0
1389
-
1390
- ### Minor Changes
1391
-
1392
- - [#730](https://github.com/cube-js/cube-ui-kit/pull/730) [`5d627efa`](https://github.com/cube-js/cube-ui-kit/commit/5d627efafb1793f45ff8b8ba496b07e17227ac67) Thanks [@tenphi](https://github.com/tenphi)! - Add FilterPicker component for single and multiple picker experience with a filter.
1393
-
1394
- - [#730](https://github.com/cube-js/cube-ui-kit/pull/730) [`5d627efa`](https://github.com/cube-js/cube-ui-kit/commit/5d627efafb1793f45ff8b8ba496b07e17227ac67) Thanks [@tenphi](https://github.com/tenphi)! - Split ListBox into two components: simple ListBox and FilterListBox with search input.
1395
-
1396
- ### Patch Changes
1397
-
1398
- - [#730](https://github.com/cube-js/cube-ui-kit/pull/730) [`5d627efa`](https://github.com/cube-js/cube-ui-kit/commit/5d627efafb1793f45ff8b8ba496b07e17227ac67) Thanks [@tenphi](https://github.com/tenphi)! - Improve the layout of Menu component.
1399
-
1400
- - [#727](https://github.com/cube-js/cube-ui-kit/pull/727) [`fa1397f2`](https://github.com/cube-js/cube-ui-kit/commit/fa1397f26e2f6ece95aec915f43e0815355d74f6) Thanks [@tenphi](https://github.com/tenphi)! - Add `fs` custom unit for stable fractions in grid layouts. `1sf` -> `minmax(0, 1fr)`.
1401
-
1402
- - [#730](https://github.com/cube-js/cube-ui-kit/pull/730) [`5d627efa`](https://github.com/cube-js/cube-ui-kit/commit/5d627efafb1793f45ff8b8ba496b07e17227ac67) Thanks [@tenphi](https://github.com/tenphi)! - `wrapWithField` no longer wrap the input component with a field if no label is provided and `forceField` prop is not set.
1403
-
1404
- - [#730](https://github.com/cube-js/cube-ui-kit/pull/730) [`5d627efa`](https://github.com/cube-js/cube-ui-kit/commit/5d627efafb1793f45ff8b8ba496b07e17227ac67) Thanks [@tenphi](https://github.com/tenphi)! - Add a new icon ChartKPI.
1405
-
1406
- - [#727](https://github.com/cube-js/cube-ui-kit/pull/727) [`fa1397f2`](https://github.com/cube-js/cube-ui-kit/commit/fa1397f26e2f6ece95aec915f43e0815355d74f6) Thanks [@tenphi](https://github.com/tenphi)! - Improved tasty documentation.
1407
-
1408
- ## 0.67.0
1409
-
1410
- ### Minor Changes
1411
-
1412
- - [#725](https://github.com/cube-js/cube-ui-kit/pull/725) [`4b789d2b`](https://github.com/cube-js/cube-ui-kit/commit/4b789d2bddc3bee1c91194c2d76b1c5946cc9cbc) Thanks [@tenphi](https://github.com/tenphi)! - Add useEventBus hook to emit global events and subscribe to them.
1413
-
1414
- - [#725](https://github.com/cube-js/cube-ui-kit/pull/725) [`4b789d2b`](https://github.com/cube-js/cube-ui-kit/commit/4b789d2bddc3bee1c91194c2d76b1c5946cc9cbc) Thanks [@tenphi](https://github.com/tenphi)! - Add useContextMenu hook to invoke a context menu in the exact place of the click.
1415
-
1416
- - [#725](https://github.com/cube-js/cube-ui-kit/pull/725) [`4b789d2b`](https://github.com/cube-js/cube-ui-kit/commit/4b789d2bddc3bee1c91194c2d76b1c5946cc9cbc) Thanks [@tenphi](https://github.com/tenphi)! - Add useAnchoredMenu hook to programmatically invoke a menu anchored to the specific element.
1417
-
1418
- ## 0.66.1
1419
-
1420
- ### Patch Changes
1421
-
1422
- - [#722](https://github.com/cube-js/cube-ui-kit/pull/722) [`7eaf393`](https://github.com/cube-js/cube-ui-kit/commit/7eaf393cedb574237afee6579ab21b7abf57f83e) Thanks [@tenphi](https://github.com/tenphi)! - Fix a bug when CommandMenu is unable to be navigated via keys when the search input is filled with any value.
1423
-
1424
- ## 0.66.0
1425
-
1426
- ### Minor Changes
1427
-
1428
- - [#720](https://github.com/cube-js/cube-ui-kit/pull/720) [`2275c30`](https://github.com/cube-js/cube-ui-kit/commit/2275c30a9e918c06d861a4c348057fb191566229) Thanks [@tenphi](https://github.com/tenphi)! - Add CommandMenu component.
1429
-
1430
- - [#720](https://github.com/cube-js/cube-ui-kit/pull/720) [`2275c30`](https://github.com/cube-js/cube-ui-kit/commit/2275c30a9e918c06d861a4c348057fb191566229) Thanks [@tenphi](https://github.com/tenphi)! - Changed HotKeys API. Use `children` to pass hotkeys instead of `keys` prop.
1431
-
1432
- ## 0.65.1
1433
-
1434
- ### Patch Changes
1435
-
1436
- - [#718](https://github.com/cube-js/cube-ui-kit/pull/718) [`eec1cde`](https://github.com/cube-js/cube-ui-kit/commit/eec1cde994d8087362c46c65636abe97030ad98e) Thanks [@tenphi](https://github.com/tenphi)! - Add `tooltip` prop to menu items. You can pass a `string` or a `TooltipProps` object with `title` prop there for advanced customization.
1437
-
1438
- ## 0.65.0
1439
-
1440
- ### Minor Changes
1441
-
1442
- - [#716](https://github.com/cube-js/cube-ui-kit/pull/716) [`a42a468`](https://github.com/cube-js/cube-ui-kit/commit/a42a4686c4b9ad731dabe0bc513a335d5975a31c) Thanks [@tenphi](https://github.com/tenphi)! - Add HotKeys component to visualize hot keys combinations.
1443
-
1444
- - [#716](https://github.com/cube-js/cube-ui-kit/pull/716) [`a42a468`](https://github.com/cube-js/cube-ui-kit/commit/a42a4686c4b9ad731dabe0bc513a335d5975a31c) Thanks [@tenphi](https://github.com/tenphi)! - Add `hotkeys` property for menu items to specify hot keys to trigger the action.
1445
-
1446
- ### Patch Changes
1447
-
1448
- - [#716](https://github.com/cube-js/cube-ui-kit/pull/716) [`a42a468`](https://github.com/cube-js/cube-ui-kit/commit/a42a4686c4b9ad731dabe0bc513a335d5975a31c) Thanks [@tenphi](https://github.com/tenphi)! - Improve ListBox implementation and add support for the empty state with customization via `emptyLabel` property.
1449
-
1450
- - [#716](https://github.com/cube-js/cube-ui-kit/pull/716) [`a42a468`](https://github.com/cube-js/cube-ui-kit/commit/a42a4686c4b9ad731dabe0bc513a335d5975a31c) Thanks [@tenphi](https://github.com/tenphi)! - Add new chart icons and update the old ones.
1451
-
1452
- ## 0.64.1
1453
-
1454
- ### Patch Changes
1455
-
1456
- - [#712](https://github.com/cube-js/cube-ui-kit/pull/712) [`6612034`](https://github.com/cube-js/cube-ui-kit/commit/66120342e3c495e10227d3f77c6f43204034256c) Thanks [@tenphi](https://github.com/tenphi)! - Unify the focused state in Menu component.
1457
-
1458
- - [#712](https://github.com/cube-js/cube-ui-kit/pull/712) [`6612034`](https://github.com/cube-js/cube-ui-kit/commit/66120342e3c495e10227d3f77c6f43204034256c) Thanks [@tenphi](https://github.com/tenphi)! - Fix errorMessage type.
1459
-
1460
- ## 0.64.0
1461
-
1462
- ### Minor Changes
1463
-
1464
- - [#711](https://github.com/cube-js/cube-ui-kit/pull/711) [`ad733be`](https://github.com/cube-js/cube-ui-kit/commit/ad733be793cbadd7de6d21488d127676cd8ef766) Thanks [@tenphi](https://github.com/tenphi)! - The `message` field prop is now deprecated. Use `errorMessage` or `description` instead.
1465
-
1466
- ### Patch Changes
1467
-
1468
- - [#713](https://github.com/cube-js/cube-ui-kit/pull/713) [`77275fb`](https://github.com/cube-js/cube-ui-kit/commit/77275fb656b6db7e94cda2e8f6598a149687f6a2) Thanks [@tenphi](https://github.com/tenphi)! - Add new horizontal chart icons.
1469
-
1470
- ## 0.63.3
1471
-
1472
- ### Patch Changes
1473
-
1474
- - [#706](https://github.com/cube-js/cube-ui-kit/pull/706) [`d440c1e`](https://github.com/cube-js/cube-ui-kit/commit/d440c1e4408cd12ac02291d76d2dcf8c099c550e) Thanks [@tenphi](https://github.com/tenphi)! - Add more documentations for various components and concepts.
1475
-
1476
- ## 0.63.2
1477
-
1478
- ### Patch Changes
1479
-
1480
- - [#708](https://github.com/cube-js/cube-ui-kit/pull/708) [`e7dad8d`](https://github.com/cube-js/cube-ui-kit/commit/e7dad8d639495934844f5361c715eab694dcd5ba) Thanks [@tenphi](https://github.com/tenphi)! - Update ChartBoxPlot and add Adjustment icons.
1481
-
1482
- ## 0.63.1
1483
-
1484
- ### Patch Changes
1485
-
1486
- - [#705](https://github.com/cube-js/cube-ui-kit/pull/705) [`0f0b2b3`](https://github.com/cube-js/cube-ui-kit/commit/0f0b2b32badc19947bfed7ce0c69ad4af6cfb6cb) Thanks [@tenphi](https://github.com/tenphi)! - Add new chart icons.
1487
-
1488
- ## 0.63.0
1489
-
1490
- ### Minor Changes
1491
-
1492
- - [#703](https://github.com/cube-js/cube-ui-kit/pull/703) [`79ab3db`](https://github.com/cube-js/cube-ui-kit/commit/79ab3db8ab185da4615312e3c0daf03cd288a588) Thanks [@tenphi](https://github.com/tenphi)! - Add sections support for Select.
1493
-
1494
- - [#703](https://github.com/cube-js/cube-ui-kit/pull/703) [`79ab3db`](https://github.com/cube-js/cube-ui-kit/commit/79ab3db8ab185da4615312e3c0daf03cd288a588) Thanks [@tenphi](https://github.com/tenphi)! - Remove divider support in Menu but add dividers between sections.
1495
-
1496
- ## 0.62.3
1497
-
1498
- ### Patch Changes
1499
-
1500
- - [#701](https://github.com/cube-js/cube-ui-kit/pull/701) [`9fc76b5`](https://github.com/cube-js/cube-ui-kit/commit/9fc76b5101bc98c102535a492b59f79334c494f4) Thanks [@tenphi](https://github.com/tenphi)! - Fix Menu type.
1501
-
1502
- ## 0.62.2
1503
-
1504
- ### Patch Changes
1505
-
1506
- - [#699](https://github.com/cube-js/cube-ui-kit/pull/699) [`71d5328`](https://github.com/cube-js/cube-ui-kit/commit/71d5328bec048c4c6a054bd544d67ffc9b674ebe) Thanks [@tenphi](https://github.com/tenphi)! - Fix Menu with spread function inside.
1507
-
1508
- ## 0.62.1
1509
-
1510
- ### Patch Changes
1511
-
1512
- - [#697](https://github.com/cube-js/cube-ui-kit/pull/697) [`408ea7b`](https://github.com/cube-js/cube-ui-kit/commit/408ea7bb027c5214d161ec8ef4d5ea72d391d07b) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `description` item prop inside `<Menu/>`.
1513
-
1514
- - [#697](https://github.com/cube-js/cube-ui-kit/pull/697) [`408ea7b`](https://github.com/cube-js/cube-ui-kit/commit/408ea7bb027c5214d161ec8ef4d5ea72d391d07b) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `description` item prop in `<ComboBox/>`.
1515
-
1516
- - [#697](https://github.com/cube-js/cube-ui-kit/pull/697) [`408ea7b`](https://github.com/cube-js/cube-ui-kit/commit/408ea7bb027c5214d161ec8ef4d5ea72d391d07b) Thanks [@tenphi](https://github.com/tenphi)! - Change disabled state of clear and neutral buttons.
1517
-
1518
- - [#697](https://github.com/cube-js/cube-ui-kit/pull/697) [`408ea7b`](https://github.com/cube-js/cube-ui-kit/commit/408ea7bb027c5214d161ec8ef4d5ea72d391d07b) Thanks [@tenphi](https://github.com/tenphi)! - Add border to dialogs with popover type.
1519
-
1520
- - [#697](https://github.com/cube-js/cube-ui-kit/pull/697) [`408ea7b`](https://github.com/cube-js/cube-ui-kit/commit/408ea7bb027c5214d161ec8ef4d5ea72d391d07b) Thanks [@tenphi](https://github.com/tenphi)! - Add border to popover of `<Select/>` and `<Combobox/>`.
1521
-
1522
- - [#697](https://github.com/cube-js/cube-ui-kit/pull/697) [`408ea7b`](https://github.com/cube-js/cube-ui-kit/commit/408ea7bb027c5214d161ec8ef4d5ea72d391d07b) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `<Divider/>` inside `<Menu/>`.
1523
-
1524
- ## 0.62.0
1525
-
1526
- ### Minor Changes
1527
-
1528
- - [#695](https://github.com/cube-js/cube-ui-kit/pull/695) [`81281f1`](https://github.com/cube-js/cube-ui-kit/commit/81281f1b8f06d34f063f4e9ed899114b6f046078) Thanks [@tenphi](https://github.com/tenphi)! - Remove `ellipsis` flag from `<Select/>`. Text overflow ellipsis is now always used.
1529
-
1530
- ### Patch Changes
1531
-
1532
- - [#695](https://github.com/cube-js/cube-ui-kit/pull/695) [`81281f1`](https://github.com/cube-js/cube-ui-kit/commit/81281f1b8f06d34f063f4e9ed899114b6f046078) Thanks [@tenphi](https://github.com/tenphi)! - Add support for description in `Select.Item`.
1533
-
1534
- ## 0.61.10
1535
-
1536
- ### Patch Changes
1537
-
1538
- - [#693](https://github.com/cube-js/cube-ui-kit/pull/693) [`9b52be6`](https://github.com/cube-js/cube-ui-kit/commit/9b52be68eed3d9335a2b61889e98e8845dd4341e) Thanks [@tenphi](https://github.com/tenphi)! - Allow PrismCode to accept nullish values if they are passed.
1539
-
1540
- ## 0.61.9
1541
-
1542
- ### Patch Changes
1543
-
1544
- - [#691](https://github.com/cube-js/cube-ui-kit/pull/691) [`31425c9`](https://github.com/cube-js/cube-ui-kit/commit/31425c9259eb968d844acfda15203b96ce0a1457) Thanks [@tenphi](https://github.com/tenphi)! - Fix `defaultContainerProps` in `useDialogContainer` hook.
1545
-
1546
- ## 0.61.8
1547
-
1548
- ### Patch Changes
1549
-
1550
- - [#689](https://github.com/cube-js/cube-ui-kit/pull/689) [`dc2d451`](https://github.com/cube-js/cube-ui-kit/commit/dc2d451b8cd6df98f867659b55740ab29a90bd6c) Thanks [@tenphi](https://github.com/tenphi)! - Do not render the footer in AlertDialog if all button props are falsy
1551
-
1552
- ## 0.61.7
1553
-
1554
- ### Patch Changes
1555
-
1556
- - [#687](https://github.com/cube-js/cube-ui-kit/pull/687) [`d6820d0`](https://github.com/cube-js/cube-ui-kit/commit/d6820d09d10aca57527a3578efddcf77f03c283e) Thanks [@tenphi](https://github.com/tenphi)! - Use react renderer for PrismCode.
1557
-
1558
- ## 0.61.6
1559
-
1560
- ### Patch Changes
1561
-
1562
- - [#685](https://github.com/cube-js/cube-ui-kit/pull/685) [`eeaf472`](https://github.com/cube-js/cube-ui-kit/commit/eeaf472f5c561feec8557939e7152458ad2b3011) Thanks [@tenphi](https://github.com/tenphi)! - Add light version for Tooltip component. Use `isLight` prop to activate it.
1563
-
1564
- ## 0.61.5
1565
-
1566
- ### Patch Changes
1567
-
1568
- - [#683](https://github.com/cube-js/cube-ui-kit/pull/683) [`e73acd5`](https://github.com/cube-js/cube-ui-kit/commit/e73acd5e27cec6ed5075cada06967c166465ef5d) Thanks [@tenphi](https://github.com/tenphi)! - Fix focused state styles on Menu items.
1569
-
1570
- ## 0.61.4
1571
-
1572
- ### Patch Changes
1573
-
1574
- - [`56f9304`](https://github.com/cube-js/cube-ui-kit/commit/56f9304f8af3a9d88456ded269e7983e0dfed861) Thanks [@tenphi](https://github.com/tenphi)! - Fix missing aria-label on Close button in FileTabs.
1575
-
1576
- ## 0.61.3
1577
-
1578
- ### Patch Changes
1579
-
1580
- - [#679](https://github.com/cube-js/cube-ui-kit/pull/679) [`ad55f41`](https://github.com/cube-js/cube-ui-kit/commit/ad55f4118ecaebf87ad05a482b1f0780b2090d6b) Thanks [@tenphi](https://github.com/tenphi)! - Migrate to `scrollbar` style.
1581
-
1582
- ## 0.61.2
1583
-
1584
- ### Patch Changes
1585
-
1586
- - [#677](https://github.com/cube-js/cube-ui-kit/pull/677) [`f397cf2`](https://github.com/cube-js/cube-ui-kit/commit/f397cf2e602d1360e6ecd6af771392bf76dc2e83) Thanks [@tenphi](https://github.com/tenphi)! - Use native scrolls in Panel by default.
1587
-
1588
- - [#677](https://github.com/cube-js/cube-ui-kit/pull/677) [`f397cf2`](https://github.com/cube-js/cube-ui-kit/commit/f397cf2e602d1360e6ecd6af771392bf76dc2e83) Thanks [@tenphi](https://github.com/tenphi)! - Apply various fixes to the new scrollbar style.
1589
-
1590
- ## 0.61.1
1591
-
1592
- ### Patch Changes
1593
-
1594
- - [#675](https://github.com/cube-js/cube-ui-kit/pull/675) [`c3cb385`](https://github.com/cube-js/cube-ui-kit/commit/c3cb3859f8e9324ae8fa3ea8424138e73b313d85) Thanks [@tenphi](https://github.com/tenphi)! - Apply various fixes to the new scrollbar style.
1595
-
1596
- ## 0.61.0
1597
-
1598
- ### Minor Changes
1599
-
1600
- - [#673](https://github.com/cube-js/cube-ui-kit/pull/673) [`2f12b93`](https://github.com/cube-js/cube-ui-kit/commit/2f12b93ae673403b640854f41cc906711fa3249d) Thanks [@tenphi](https://github.com/tenphi)! - Add `scrollbar` style deprecating `styledScrollbar` style.
1601
-
1602
- ### Patch Changes
1603
-
1604
- - [#673](https://github.com/cube-js/cube-ui-kit/pull/673) [`2f12b93`](https://github.com/cube-js/cube-ui-kit/commit/2f12b93ae673403b640854f41cc906711fa3249d) Thanks [@tenphi](https://github.com/tenphi)! - Add support for the `offset` value in the `outline` style.
1605
-
1606
- - [#673](https://github.com/cube-js/cube-ui-kit/pull/673) [`2f12b93`](https://github.com/cube-js/cube-ui-kit/commit/2f12b93ae673403b640854f41cc906711fa3249d) Thanks [@tenphi](https://github.com/tenphi)! - Add support for default container props in `useDialogContainer`.
1607
-
1608
- ## 0.60.5
1609
-
1610
- ### Patch Changes
1611
-
1612
- - [#670](https://github.com/cube-js/cube-ui-kit/pull/670) [`927897d`](https://github.com/cube-js/cube-ui-kit/commit/927897d9bd12cc0075eee3aa33d51fe264efa65b) Thanks [@tenphi](https://github.com/tenphi)! - Thinner resizable panel handler.
1613
-
1614
- - [#670](https://github.com/cube-js/cube-ui-kit/pull/670) [`927897d`](https://github.com/cube-js/cube-ui-kit/commit/927897d9bd12cc0075eee3aa33d51fe264efa65b) Thanks [@tenphi](https://github.com/tenphi)! - Fix issue in Panel component when style property could be applied to both outer and inner containers.
1615
-
1616
- ## 0.60.4
1617
-
1618
- ### Patch Changes
1619
-
1620
- - [#668](https://github.com/cube-js/cube-ui-kit/pull/668) [`177339c`](https://github.com/cube-js/cube-ui-kit/commit/177339cff21176f640e53df5def47afcc5ddd183) Thanks [@tenphi](https://github.com/tenphi)! - Fix issue that throws an error if ResizablePanel is used in Safari.
1621
-
1622
- ## 0.60.3
1623
-
1624
- ### Patch Changes
1625
-
1626
- - [#666](https://github.com/cube-js/cube-ui-kit/pull/666) [`bb8ad4e`](https://github.com/cube-js/cube-ui-kit/commit/bb8ad4e881299b213fa31f06f0acdce15ea86ab5) Thanks [@tenphi](https://github.com/tenphi)! - Fix focus state for multiple input components.
1627
-
1628
- ## 0.60.2
1629
-
1630
- ### Patch Changes
1631
-
1632
- - [#664](https://github.com/cube-js/cube-ui-kit/pull/664) [`c7fdfb4`](https://github.com/cube-js/cube-ui-kit/commit/c7fdfb422c8d819f4078d08df25e9c27f14c0018) Thanks [@tenphi](https://github.com/tenphi)! - Fix Menu children typing.
1633
-
1634
- ## 0.60.1
1635
-
1636
- ### Patch Changes
1637
-
1638
- - [#662](https://github.com/cube-js/cube-ui-kit/pull/662) [`a72f42f`](https://github.com/cube-js/cube-ui-kit/commit/a72f42f41c6a622aaea9b5454c0f9de6eed634d0) Thanks [@tenphi](https://github.com/tenphi)! - Optimize Button style generation via more variants.
1639
-
1640
- - [#661](https://github.com/cube-js/cube-ui-kit/pull/661) [`6c18b43`](https://github.com/cube-js/cube-ui-kit/commit/6c18b43e680dfb927a79912bd6ad16f8996afead) Thanks [@tenphi](https://github.com/tenphi)! - Fixes Menu Item disabled styles.
1641
-
1642
- ## 0.60.0
1643
-
1644
- ### Minor Changes
1645
-
1646
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Add success theme for Button component.
1647
-
1648
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Decrease the line height of the h2 headers to 32px.
1649
-
1650
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Improved design of Switch component.
1651
-
1652
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Replace most of the icons with Tabler icons.
1653
-
1654
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Remove default custom fonts.
1655
-
1656
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Replace most of the colors by more contrast and consistent versions.
1657
-
1658
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Change neutral and outline types visually for Button component and set outline as the default type.
1659
-
1660
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Rework of all color palette.
1661
-
1662
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Improve Select and ComboBox styles and the size of their chevron icons.
1663
-
1664
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Add wrapperStyles to Select and ComboBox components and fix style props extraction.
1665
-
1666
- ### Patch Changes
1667
-
1668
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Allow numbers in more styles.
1669
-
1670
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Improve Dialog outline except for popovers.
1671
-
1672
- - [#659](https://github.com/cube-js/cube-ui-kit/pull/659) [`2dfa908`](https://github.com/cube-js/cube-ui-kit/commit/2dfa908d16befd4eef0cf0acb957a4e35803959b) Thanks [@tenphi](https://github.com/tenphi)! - Add basic transitions for icons.
1673
-
1674
- ## 0.59.14
1675
-
1676
- ### Patch Changes
1677
-
1678
- - [#657](https://github.com/cube-js/cube-ui-kit/pull/657) [`d7939cf`](https://github.com/cube-js/cube-ui-kit/commit/d7939cf3d6b6edf4ffece545e8c4604c0272f8d9) Thanks [@tenphi](https://github.com/tenphi)! - Fix drift in Resizable Panel in controllable state.
1679
-
1680
- ## 0.59.13
1681
-
1682
- ### Patch Changes
1683
-
1684
- - [#655](https://github.com/cube-js/cube-ui-kit/pull/655) [`14986ac`](https://github.com/cube-js/cube-ui-kit/commit/14986acdd81006cc689d417ff09cac03a0f144fc) Thanks [@tenphi](https://github.com/tenphi)! - Fix minimum dialog size.
1685
-
1686
- ## 0.59.12
1687
-
1688
- ### Patch Changes
1689
-
1690
- - [#653](https://github.com/cube-js/cube-ui-kit/pull/653) [`6cefdcc`](https://github.com/cube-js/cube-ui-kit/commit/6cefdcc8c92b215d118986dec22a1b1e640f6ea7) Thanks [@tenphi](https://github.com/tenphi)! - Fix the cursor type for resizing ResizablePanel in vertical direction.
1691
-
1692
- ## 0.59.11
1693
-
1694
- ### Patch Changes
1695
-
1696
- - [#651](https://github.com/cube-js/cube-ui-kit/pull/651) [`ae277a7`](https://github.com/cube-js/cube-ui-kit/commit/ae277a785afeba0e5e580f2ef7882b8962ef6094) Thanks [@vasilev-alex](https://github.com/vasilev-alex)! - Pass props to the skeleton layout root.
1697
-
1698
- ## 0.59.10
1699
-
1700
- ### Patch Changes
1701
-
1702
- - [#647](https://github.com/cube-js/cube-ui-kit/pull/647) [`762b604`](https://github.com/cube-js/cube-ui-kit/commit/762b604b916abe20932dbd0e9b59a39c61db971b) Thanks [@tenphi](https://github.com/tenphi)! - Faster overlay transition with 120ms duration instead of 180ms.
1703
-
1704
- - [#647](https://github.com/cube-js/cube-ui-kit/pull/647) [`762b604`](https://github.com/cube-js/cube-ui-kit/commit/762b604b916abe20932dbd0e9b59a39c61db971b) Thanks [@tenphi](https://github.com/tenphi)! - Minor fixes for typings.
1705
-
1706
- ## 0.59.9
1707
-
1708
- ### Patch Changes
1709
-
1710
- - [#648](https://github.com/cube-js/cube-ui-kit/pull/648) [`83c7a17`](https://github.com/cube-js/cube-ui-kit/commit/83c7a172987fc82f605e293bd66f63638e97070d) Thanks [@tenphi](https://github.com/tenphi)! - Fix inputRef for text inputs.
1711
-
1712
- ## 0.59.8
1713
-
1714
- ### Patch Changes
1715
-
1716
- - [#645](https://github.com/cube-js/cube-ui-kit/pull/645) [`d3cf4a1`](https://github.com/cube-js/cube-ui-kit/commit/d3cf4a13a93a32da9021c79801fa8c387bfba5ca) Thanks [@vasilev-alex](https://github.com/vasilev-alex)! - Add maxRows prop to TextArea in control maximum visible rows in auto-size mode.
1717
-
1718
- - [#645](https://github.com/cube-js/cube-ui-kit/pull/645) [`d3cf4a1`](https://github.com/cube-js/cube-ui-kit/commit/d3cf4a13a93a32da9021c79801fa8c387bfba5ca) Thanks [@vasilev-alex](https://github.com/vasilev-alex)! - Improved calculation of height in auto-sized TextArea.
1719
-
1720
- ## 0.59.7
1721
-
1722
- ### Patch Changes
1723
-
1724
- - [#642](https://github.com/cube-js/cube-ui-kit/pull/642) [`fe2bc40`](https://github.com/cube-js/cube-ui-kit/commit/fe2bc406e82f183f4dfdfdb5c3bfd31fbefc81fc) Thanks [@tenphi](https://github.com/tenphi)! - Move qa attribute to the root wrapper in Switch component.
1725
-
1726
- ## 0.59.6
1727
-
1728
- ### Patch Changes
1729
-
1730
- - [#640](https://github.com/cube-js/cube-ui-kit/pull/640) [`e3bc889`](https://github.com/cube-js/cube-ui-kit/commit/e3bc8895fd578c41282d715ab3999eaa325faf15) Thanks [@tenphi](https://github.com/tenphi)! - Switch the default Switch wrapper tag to label for better accessibility and e2e testing.
1731
-
1732
- ## 0.59.5
1733
-
1734
- ### Patch Changes
1735
-
1736
- - [#637](https://github.com/cube-js/cube-ui-kit/pull/637) [`2822be0`](https://github.com/cube-js/cube-ui-kit/commit/2822be08e731d95b8a55b7ac5a699d2f8ef7a9c6) Thanks [@tenphi](https://github.com/tenphi)! - Change `note-text` to improve contrast.
1737
-
1738
- - [#637](https://github.com/cube-js/cube-ui-kit/pull/637) [`2822be0`](https://github.com/cube-js/cube-ui-kit/commit/2822be08e731d95b8a55b7ac5a699d2f8ef7a9c6) Thanks [@tenphi](https://github.com/tenphi)! - Add `special` theme for components that use them.
1739
-
1740
- - [#638](https://github.com/cube-js/cube-ui-kit/pull/638) [`267b203`](https://github.com/cube-js/cube-ui-kit/commit/267b203900dfad383556f212713de6e9b5c95c53) Thanks [@tenphi](https://github.com/tenphi)! - Throw an error if code prop in PrismCode is not a string and not falsy.
1741
-
1742
- - [#637](https://github.com/cube-js/cube-ui-kit/pull/637) [`2822be0`](https://github.com/cube-js/cube-ui-kit/commit/2822be08e731d95b8a55b7ac5a699d2f8ef7a9c6) Thanks [@tenphi](https://github.com/tenphi)! - Allow to set mods for Tag component.
1743
-
1744
- ## 0.59.4
1745
-
1746
- ### Patch Changes
1747
-
1748
- - [#635](https://github.com/cube-js/cube-ui-kit/pull/635) [`ac9100a`](https://github.com/cube-js/cube-ui-kit/commit/ac9100ae1e7ca0d38b9d077ccb2d63f6022e87f3) Thanks [@tenphi](https://github.com/tenphi)! - Fix outline styles after migration in various components.
1749
-
1750
- - [#635](https://github.com/cube-js/cube-ui-kit/pull/635) [`ac9100a`](https://github.com/cube-js/cube-ui-kit/commit/ac9100ae1e7ca0d38b9d077ccb2d63f6022e87f3) Thanks [@tenphi](https://github.com/tenphi)! - Fix border radius in Action buttons in CopySnippet.
1751
-
1752
- ## 0.59.3
1753
-
1754
- ### Patch Changes
1755
-
1756
- - [#633](https://github.com/cube-js/cube-ui-kit/pull/633) [`7250112`](https://github.com/cube-js/cube-ui-kit/commit/7250112d571c2391fc79ebe4da0e5a636e543a3a) Thanks [@tenphi](https://github.com/tenphi)! - Fix ComboBox behavior on choosing option via Enter press.
1757
-
1758
- ## 0.59.2
1759
-
1760
- ### Patch Changes
1761
-
1762
- - [#631](https://github.com/cube-js/cube-ui-kit/pull/631) [`29d3499`](https://github.com/cube-js/cube-ui-kit/commit/29d3499177b817090d1994dd2aecee3c905d64c1) Thanks [@tenphi](https://github.com/tenphi)! - Fix ComboBox behavior outside the form.
1763
-
1764
- ## 0.59.1
1765
-
1766
- ### Patch Changes
1767
-
1768
- - [#629](https://github.com/cube-js/cube-ui-kit/pull/629) [`d06c017`](https://github.com/cube-js/cube-ui-kit/commit/d06c017bb1dae18c60fe2d1b192c31373dcf5562) Thanks [@tenphi](https://github.com/tenphi)! - Reset the value of the ComboBox on Enter press if it's not an option and custom input is not allowed.
1769
-
1770
- ## 0.59.0
1771
-
1772
- ### Minor Changes
1773
-
1774
- - [#627](https://github.com/cube-js/cube-ui-kit/pull/627) [`68e0bed`](https://github.com/cube-js/cube-ui-kit/commit/68e0bedd267fb24663ebf88e4f4f5d8432620761) Thanks [@tenphi](https://github.com/tenphi)! - Migration to modern rgb definition.
1775
-
1776
- ### Patch Changes
1777
-
1778
- - [#627](https://github.com/cube-js/cube-ui-kit/pull/627) [`68e0bed`](https://github.com/cube-js/cube-ui-kit/commit/68e0bedd267fb24663ebf88e4f4f5d8432620761) Thanks [@tenphi](https://github.com/tenphi)! - Use native css outline for outline style.
1779
-
1780
- ## 0.58.0
1781
-
1782
- ### Minor Changes
1783
-
1784
- - [#624](https://github.com/cube-js/cube-ui-kit/pull/624) [`954b26c`](https://github.com/cube-js/cube-ui-kit/commit/954b26c39d1a05840016200ea712b47c85c81f8b) Thanks [@tenphi](https://github.com/tenphi)! - Remove CJS support.
1785
-
1786
- - [#624](https://github.com/cube-js/cube-ui-kit/pull/624) [`954b26c`](https://github.com/cube-js/cube-ui-kit/commit/954b26c39d1a05840016200ea712b47c85c81f8b) Thanks [@tenphi](https://github.com/tenphi)! - When a dialog is opened focus on the first input with autofocus or primary button.
1787
-
1788
- - [#624](https://github.com/cube-js/cube-ui-kit/pull/624) [`954b26c`](https://github.com/cube-js/cube-ui-kit/commit/954b26c39d1a05840016200ea712b47c85c81f8b) Thanks [@tenphi](https://github.com/tenphi)! - Fixes various issues with ComboBox input typing and selection.
1789
-
1790
- - [#624](https://github.com/cube-js/cube-ui-kit/pull/624) [`954b26c`](https://github.com/cube-js/cube-ui-kit/commit/954b26c39d1a05840016200ea712b47c85c81f8b) Thanks [@tenphi](https://github.com/tenphi)! - Remove inputValue abstraction from form fields.
1791
-
1792
- ### Patch Changes
1793
-
1794
- - [#624](https://github.com/cube-js/cube-ui-kit/pull/624) [`954b26c`](https://github.com/cube-js/cube-ui-kit/commit/954b26c39d1a05840016200ea712b47c85c81f8b) Thanks [@tenphi](https://github.com/tenphi)! - Fix RadioGroup style typings.
1795
-
1796
- - [#624](https://github.com/cube-js/cube-ui-kit/pull/624) [`954b26c`](https://github.com/cube-js/cube-ui-kit/commit/954b26c39d1a05840016200ea712b47c85c81f8b) Thanks [@tenphi](https://github.com/tenphi)! - Fixes the bug when ComboBox is cleared when bluring the input without making any change.
1797
-
1798
- ## 0.57.0
1799
-
1800
- ### Minor Changes
1801
-
1802
- - [#622](https://github.com/cube-js/cube-ui-kit/pull/622) [`dbb6f35`](https://github.com/cube-js/cube-ui-kit/commit/dbb6f351c61b374087b3aeb977cd7ce578f84254) Thanks [@tenphi](https://github.com/tenphi)! - Add support for Combobox, TextArea and Password fields in TextInputMapper.
1803
-
1804
- ### Patch Changes
1805
-
1806
- - [#622](https://github.com/cube-js/cube-ui-kit/pull/622) [`dbb6f35`](https://github.com/cube-js/cube-ui-kit/commit/dbb6f351c61b374087b3aeb977cd7ce578f84254) Thanks [@tenphi](https://github.com/tenphi)! - Show placeholder in TextInput or TextArea with type password.
1807
-
1808
- - [#622](https://github.com/cube-js/cube-ui-kit/pull/622) [`dbb6f35`](https://github.com/cube-js/cube-ui-kit/commit/dbb6f351c61b374087b3aeb977cd7ce578f84254) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `autocomplete` attribute in TextInput.
1809
-
1810
- ## 0.56.3
1811
-
1812
- ### Patch Changes
1813
-
1814
- - [#620](https://github.com/cube-js/cube-ui-kit/pull/620) [`0080420`](https://github.com/cube-js/cube-ui-kit/commit/00804200a3cbb7fa64177578df4393f1fe1d1d04) Thanks [@tenphi](https://github.com/tenphi)! - Check the env before setting uikit version globally.
1815
-
1816
- ## 0.56.2
1817
-
1818
- ### Patch Changes
1819
-
1820
- - [#617](https://github.com/cube-js/cube-ui-kit/pull/617) [`eb37f58`](https://github.com/cube-js/cube-ui-kit/commit/eb37f58319689f5b1042ebedcf54fc369a7c98ec) Thanks [@tenphi](https://github.com/tenphi)! - Fixes false error in useDialogContainer.
1821
-
1822
- ## 0.56.1
1823
-
1824
- ### Patch Changes
1825
-
1826
- - [#615](https://github.com/cube-js/cube-ui-kit/pull/615) [`06090dc`](https://github.com/cube-js/cube-ui-kit/commit/06090dc05a465a598f9fe3b81154b35b8bfb26fa) Thanks [@tenphi](https://github.com/tenphi)! - Allow to pass props for DialogContainer in useDialogContainer hook.
1827
-
1828
- ## 0.56.0
1829
-
1830
- ### Minor Changes
1831
-
1832
- - [#611](https://github.com/cube-js/cube-ui-kit/pull/611) [`4051fe9`](https://github.com/cube-js/cube-ui-kit/commit/4051fe90041d66c1419fdf3d2041fbd73b483160) Thanks [@tenphi](https://github.com/tenphi)! - Add useDialogContainer hook to manage dialogs.
1833
-
1834
- ### Patch Changes
1835
-
1836
- - [#613](https://github.com/cube-js/cube-ui-kit/pull/613) [`7e1cffd`](https://github.com/cube-js/cube-ui-kit/commit/7e1cffd57cb67fd3259dfd7f7f3a5fae40b68519) Thanks [@tenphi](https://github.com/tenphi)! - Add DatabaseIcon.
1837
-
1838
- - [#609](https://github.com/cube-js/cube-ui-kit/pull/609) [`d7a7759`](https://github.com/cube-js/cube-ui-kit/commit/d7a7759cdf52e2aea01c781e606103426ccd4b47) Thanks [@tenphi](https://github.com/tenphi)! - Add `isDirty` flag to Form instances.
1839
-
1840
- - [#612](https://github.com/cube-js/cube-ui-kit/pull/612) [`a598267`](https://github.com/cube-js/cube-ui-kit/commit/a598267fdafd358b15e5e6515414e76da33ab4a3) Thanks [@tenphi](https://github.com/tenphi)! - Postpone form reset in DialogForm until closing transition is over.
1841
-
1842
- - [#609](https://github.com/cube-js/cube-ui-kit/pull/609) [`d7a7759`](https://github.com/cube-js/cube-ui-kit/commit/d7a7759cdf52e2aea01c781e606103426ccd4b47) Thanks [@tenphi](https://github.com/tenphi)! - Do not extract inputStyles from props in Checkbox.
1843
-
1844
- ## 0.55.1
1845
-
1846
- ### Patch Changes
1847
-
1848
- - [#607](https://github.com/cube-js/cube-ui-kit/pull/607) [`5615358`](https://github.com/cube-js/cube-ui-kit/commit/56153582e5699cbc54eec18e2032d8f5b5734440) Thanks [@tenphi](https://github.com/tenphi)! - Add PlayCircle and Report icons.
1849
-
1850
- ## 0.55.0
1851
-
1852
- ### Minor Changes
1853
-
1854
- - [#603](https://github.com/cube-js/cube-ui-kit/pull/603) [`c5c6339`](https://github.com/cube-js/cube-ui-kit/commit/c5c63391d9cd894f5f950a797dfeb98aee655e02) Thanks [@tenphi](https://github.com/tenphi)! - Always wrap Switch in a Field.
1855
-
1856
- - [#603](https://github.com/cube-js/cube-ui-kit/pull/603) [`c5c6339`](https://github.com/cube-js/cube-ui-kit/commit/c5c63391d9cd894f5f950a797dfeb98aee655e02) Thanks [@tenphi](https://github.com/tenphi)! - Always wrap Checkbox in a Field except checkbox group case.
1857
-
1858
- ## 0.54.4
1859
-
1860
- ### Patch Changes
1861
-
1862
- - [#601](https://github.com/cube-js/cube-ui-kit/pull/601) [`26277fe`](https://github.com/cube-js/cube-ui-kit/commit/26277fe57ca004beb39c49e77b76c5a408d72e34) Thanks [@tenphi](https://github.com/tenphi)! - Unify label suffix gap in Field component.
1863
-
1864
- ## 0.54.3
1865
-
1866
- ### Patch Changes
1867
-
1868
- - [#599](https://github.com/cube-js/cube-ui-kit/pull/599) [`2e04dba`](https://github.com/cube-js/cube-ui-kit/commit/2e04dba3a5a76fddea230b999acaba923a7a6d11) Thanks [@tenphi](https://github.com/tenphi)! - Reset field status on `setFieldValue()`.
1869
-
1870
- ## 0.54.2
1871
-
1872
- ### Patch Changes
1873
-
1874
- - [#596](https://github.com/cube-js/cube-ui-kit/pull/596) [`4286858`](https://github.com/cube-js/cube-ui-kit/commit/4286858738b960706591c0de6887a0874031a388) Thanks [@tenphi](https://github.com/tenphi)! - Fix RangeSlider to avoid getting stuck at max or min values.
1875
-
1876
- - [#596](https://github.com/cube-js/cube-ui-kit/pull/596) [`4286858`](https://github.com/cube-js/cube-ui-kit/commit/4286858738b960706591c0de6887a0874031a388) Thanks [@tenphi](https://github.com/tenphi)! - Fix Underlay's zIndex so modal dialogs can be stackable.
1877
-
1878
- ## 0.54.1
1879
-
1880
- ### Patch Changes
1881
-
1882
- - [#594](https://github.com/cube-js/cube-ui-kit/pull/594) [`49396dc`](https://github.com/cube-js/cube-ui-kit/commit/49396dca69fe07513b2318970e16befbcc0a2737) Thanks [@tenphi](https://github.com/tenphi)! - Allow to get a state in menu trigger.
1883
-
1884
- ## 0.54.0
1885
-
1886
- ### Minor Changes
1887
-
1888
- - [#592](https://github.com/cube-js/cube-ui-kit/pull/592) [`dae9246`](https://github.com/cube-js/cube-ui-kit/commit/dae92466a220dba57472fb3c926e72958354e024) Thanks [@tenphi](https://github.com/tenphi)! - Add DirectionIcon component.
1889
-
1890
- ### Patch Changes
1891
-
1892
- - [#592](https://github.com/cube-js/cube-ui-kit/pull/592) [`dae9246`](https://github.com/cube-js/cube-ui-kit/commit/dae92466a220dba57472fb3c926e72958354e024) Thanks [@tenphi](https://github.com/tenphi)! - Add a visual gap between the field input and the message below.
1893
-
1894
- ## 0.53.6
1895
-
1896
- ### Patch Changes
1897
-
1898
- - [#590](https://github.com/cube-js/cube-ui-kit/pull/590) [`07dd389`](https://github.com/cube-js/cube-ui-kit/commit/07dd389e516da7929c0c7de3af5284fb3f421cf8) Thanks [@tenphi](https://github.com/tenphi)! - Fix size prop for icons.
1899
-
1900
- ## 0.53.5
1901
-
1902
- ### Patch Changes
1903
-
1904
- - [#588](https://github.com/cube-js/cube-ui-kit/pull/588) [`21c6b6a`](https://github.com/cube-js/cube-ui-kit/commit/21c6b6a10b12d56e00186f7b33d3a72056347108) Thanks [@tenphi](https://github.com/tenphi)! - Change vertical alignment of icons to sub.
1905
-
1906
- - [#588](https://github.com/cube-js/cube-ui-kit/pull/588) [`21c6b6a`](https://github.com/cube-js/cube-ui-kit/commit/21c6b6a10b12d56e00186f7b33d3a72056347108) Thanks [@tenphi](https://github.com/tenphi)! - Add missing icon size tokens for header presets.
1907
-
1908
- ## 0.53.4
1909
-
1910
- ### Patch Changes
1911
-
1912
- - [#586](https://github.com/cube-js/cube-ui-kit/pull/586) [`7bd4103`](https://github.com/cube-js/cube-ui-kit/commit/7bd4103bb2ce2c09ac15773bb39dc49c7e7e4e1a) Thanks [@tenphi](https://github.com/tenphi)! - Fix CopySnippet height in older safari version.
1913
-
1914
- ## 0.53.3
1915
-
1916
- ### Patch Changes
1917
-
1918
- - [#584](https://github.com/cube-js/cube-ui-kit/pull/584) [`c6bd47e`](https://github.com/cube-js/cube-ui-kit/commit/c6bd47e7c13188bba749c421ed109f5db766a30f) Thanks [@tenphi](https://github.com/tenphi)! - Fix dependency issue with @internationalized/date.
1919
-
1920
- ## 0.53.2
1921
-
1922
- ### Patch Changes
1923
-
1924
- - [#582](https://github.com/cube-js/cube-ui-kit/pull/582) [`8871512`](https://github.com/cube-js/cube-ui-kit/commit/887151206646607e8fdbe1659eae5690faa435fc) Thanks [@tenphi](https://github.com/tenphi)! - Add SchemeIcon and CodeIcon.
1925
-
1926
- - [#582](https://github.com/cube-js/cube-ui-kit/pull/582) [`8871512`](https://github.com/cube-js/cube-ui-kit/commit/887151206646607e8fdbe1659eae5690faa435fc) Thanks [@tenphi](https://github.com/tenphi)! - Fix the bug that prevented blur and text selection inside a dialog.
1927
-
1928
- ## 0.53.1
1929
-
1930
- ### Patch Changes
1931
-
1932
- - [#580](https://github.com/cube-js/cube-ui-kit/pull/580) [`ffb2dd1`](https://github.com/cube-js/cube-ui-kit/commit/ffb2dd1fd606f0c9d09d4a4e040dc47788753ccf) Thanks [@tenphi](https://github.com/tenphi)! - Set ThumbsUpIcon and ThumbsDownIcon color to currentColor.
1933
-
1934
- ## 0.53.0
1935
-
1936
- ### Minor Changes
1937
-
1938
- - [#577](https://github.com/cube-js/cube-ui-kit/pull/577) [`5dbb99d`](https://github.com/cube-js/cube-ui-kit/commit/5dbb99d3a10ef931a6abd72a3801ffb78ce0edd4) Thanks [@tenphi](https://github.com/tenphi)! - Allow to pass numbers to {min/max}{Width/Height} styles.
1939
-
1940
- - [#577](https://github.com/cube-js/cube-ui-kit/pull/577) [`5dbb99d`](https://github.com/cube-js/cube-ui-kit/commit/5dbb99d3a10ef931a6abd72a3801ffb78ce0edd4) Thanks [@tenphi](https://github.com/tenphi)! - Change default font color to dark-02.
1941
-
1942
- ### Patch Changes
1943
-
1944
- - [#577](https://github.com/cube-js/cube-ui-kit/pull/577) [`5dbb99d`](https://github.com/cube-js/cube-ui-kit/commit/5dbb99d3a10ef931a6abd72a3801ffb78ce0edd4) Thanks [@tenphi](https://github.com/tenphi)! - Fix style property leakage in Panel component.
1945
-
1946
- - [#577](https://github.com/cube-js/cube-ui-kit/pull/577) [`5dbb99d`](https://github.com/cube-js/cube-ui-kit/commit/5dbb99d3a10ef931a6abd72a3801ffb78ce0edd4) Thanks [@tenphi](https://github.com/tenphi)! - Fix transition aliases.
1947
-
1948
- ## 0.52.3
1949
-
1950
- ### Patch Changes
1951
-
1952
- - [#575](https://github.com/cube-js/cube-ui-kit/pull/575) [`60eb4bf`](https://github.com/cube-js/cube-ui-kit/commit/60eb4bfca7541f8cf95a7ce77da5a53c55434b0e) Thanks [@tenphi](https://github.com/tenphi)! - Add PlayIcon, PauseIcon and StopIcon.
1953
-
1954
- ## 0.52.2
1955
-
1956
- ### Patch Changes
1957
-
1958
- - [#573](https://github.com/cube-js/cube-ui-kit/pull/573) [`4375c19`](https://github.com/cube-js/cube-ui-kit/commit/4375c19d4ea096c24407e103470a5d02358f4e19) Thanks [@tenphi](https://github.com/tenphi)! - Fix diff calculation in PrismDiffCode.
1959
-
1960
- - [#573](https://github.com/cube-js/cube-ui-kit/pull/573) [`4375c19`](https://github.com/cube-js/cube-ui-kit/commit/4375c19d4ea096c24407e103470a5d02358f4e19) Thanks [@tenphi](https://github.com/tenphi)! - Fix the bug when an empty line might appear in PrismDiffCode.
1961
-
1962
- ## 0.52.1
1963
-
1964
- ### Patch Changes
1965
-
1966
- - [#571](https://github.com/cube-js/cube-ui-kit/pull/571) [`c2904de`](https://github.com/cube-js/cube-ui-kit/commit/c2904debe3310c43632515c9ec0d1913d48d16ba) Thanks [@tenphi](https://github.com/tenphi)! - Fix PrismDiffCode export.
1967
-
1968
- ## 0.52.0
1969
-
1970
- ### Minor Changes
1971
-
1972
- - [#569](https://github.com/cube-js/cube-ui-kit/pull/569) [`ac2f4af`](https://github.com/cube-js/cube-ui-kit/commit/ac2f4af7457bf8d02410f8d079d90fe50aed18ac) Thanks [@tenphi](https://github.com/tenphi)! - Add support for diff in PrismCode and add a separate PrismDiffCode component that shows a diff between two strings.
1973
-
1974
- ## 0.51.0
1975
-
1976
- ### Minor Changes
1977
-
1978
- - [#567](https://github.com/cube-js/cube-ui-kit/pull/567) [`c9f76f5`](https://github.com/cube-js/cube-ui-kit/commit/c9f76f5c1400dc96774ed18769ee951be4b1a687) Thanks [@tenphi](https://github.com/tenphi)! - Remove underlay from dialogs with type `panel`.
1979
-
1980
- - [#567](https://github.com/cube-js/cube-ui-kit/pull/567) [`c9f76f5`](https://github.com/cube-js/cube-ui-kit/commit/c9f76f5c1400dc96774ed18769ee951be4b1a687) Thanks [@tenphi](https://github.com/tenphi)! - Add ReturnIcon component.
1981
-
1982
- ## 0.50.0
1983
-
1984
- ### Minor Changes
1985
-
1986
- - [#564](https://github.com/cube-js/cube-ui-kit/pull/564) [`106f4b2`](https://github.com/cube-js/cube-ui-kit/commit/106f4b28f47783b8e258bd4bc2fb8cdd9b6a0c88) Thanks [@tenphi](https://github.com/tenphi)! - Apply form `defaultValues` change synchronously to avoid inconsistency.
1987
-
1988
- ## 0.49.1
1989
-
1990
- ### Patch Changes
1991
-
1992
- - [#562](https://github.com/cube-js/cube-ui-kit/pull/562) [`381c3bd`](https://github.com/cube-js/cube-ui-kit/commit/381c3bdf5498b681a78728cca49457dd55153293) Thanks [@tenphi](https://github.com/tenphi)! - Change PrismCode default font and add selection styles.
1993
-
1994
- - [#562](https://github.com/cube-js/cube-ui-kit/pull/562) [`381c3bd`](https://github.com/cube-js/cube-ui-kit/commit/381c3bdf5498b681a78728cca49457dd55153293) Thanks [@tenphi](https://github.com/tenphi)! - Improve CopySnippet formatting to clear CR symbols and remove spaces at the end of each line.
1995
-
1996
- ## 0.49.0
1997
-
1998
- ### Minor Changes
1999
-
2000
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Rename Submit to SubmitButton.
2001
-
2002
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Form's resetFields() method now resets errors and touched status as well.
2003
-
2004
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Add `resetFieldsValidation()` and `setFieldError()` methods to form to replace deprecated `setFields()`.
2005
-
2006
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Add ResetButton component.
2007
-
2008
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Simplify API of CopySnippet and improve its design.
2009
-
2010
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Allow to pass base styles to Alert as props.
2011
-
2012
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Add `isInvalid` and `isValid` props to form instance. First one checks if the form has at least one field that is verified and invalid. The second one checks if ALL fields are verified and valid. Be careful: `isValid` and `!isInvalid` are not the same.
2013
-
2014
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - More flexible and easier control over disable state of Reset and Submit buttons.
2015
-
2016
- ### Patch Changes
2017
-
2018
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Recalculate the sidebar position on container resize.
2019
-
2020
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Fix pressed state in primary type Button.
2021
-
2022
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Fix bug that prevents `onSizeChange()` callback from being fired when ResizablePanel resized beyond its constraints.
2023
-
2024
- - [#560](https://github.com/cube-js/cube-ui-kit/pull/560) [`268867e`](https://github.com/cube-js/cube-ui-kit/commit/268867efd99c14161732b0bbb42b88951ac06bf7) Thanks [@tenphi](https://github.com/tenphi)! - Fix Radio.Button styles.
2025
-
2026
- ## 0.48.1
2027
-
2028
- ### Patch Changes
2029
-
2030
- - [#558](https://github.com/cube-js/cube-ui-kit/pull/558) [`9dc27fe`](https://github.com/cube-js/cube-ui-kit/commit/9dc27fe943ce3891d1eac40a728562492c3c5e0b) Thanks [@tenphi](https://github.com/tenphi)! - Update border radius size for Card and CopySnippet components.
2031
-
2032
- ## 0.48.0
2033
-
2034
- ### Minor Changes
2035
-
2036
- - [#556](https://github.com/cube-js/cube-ui-kit/pull/556) [`7c70da6`](https://github.com/cube-js/cube-ui-kit/commit/7c70da6469a6db3a4446ef01ce99e3f886cc4085) Thanks [@tenphi](https://github.com/tenphi)! - Change default border radius to 6px.
2037
-
2038
- ## 0.47.0
2039
-
2040
- ### Minor Changes
2041
-
2042
- - [#554](https://github.com/cube-js/cube-ui-kit/pull/554) [`4c47412`](https://github.com/cube-js/cube-ui-kit/commit/4c47412d68364fc2f6f19a7df4503c6823102745) Thanks [@tenphi](https://github.com/tenphi)! - Rename IconContainer -> Icon.
2043
-
2044
- ## 0.46.7
2045
-
2046
- ### Patch Changes
2047
-
2048
- - [#552](https://github.com/cube-js/cube-ui-kit/pull/552) [`2ddc0fa`](https://github.com/cube-js/cube-ui-kit/commit/2ddc0fa9205deed428bb19b56f1301a80de0e751) Thanks [@tenphi](https://github.com/tenphi)! - Optimize icon exports.
2049
-
2050
- ## 0.46.6
2051
-
2052
- ### Patch Changes
2053
-
2054
- - [#550](https://github.com/cube-js/cube-ui-kit/pull/550) [`ad94f27`](https://github.com/cube-js/cube-ui-kit/commit/ad94f2740336a9b34d11337d15ced5efa28ef2d1) Thanks [@tenphi](https://github.com/tenphi)! - Add new icons: Folder, FolderFilled, FolderOpen, FolderOpenFilled, Hierarchy.
2055
-
2056
- ## 0.46.5
2057
-
2058
- ### Patch Changes
2059
-
2060
- - [#548](https://github.com/cube-js/cube-ui-kit/pull/548) [`bc16ca4`](https://github.com/cube-js/cube-ui-kit/commit/bc16ca4c9284227d47fe0a418399ac9b0c50a2ed) Thanks [@tenphi](https://github.com/tenphi)! - Add ShieldIcon, ShieldFilledIcon and UserLockIcon components.
2061
-
2062
- - [#547](https://github.com/cube-js/cube-ui-kit/pull/547) [`273f757`](https://github.com/cube-js/cube-ui-kit/commit/273f757b04962805bc9e4fdb903b29de6838d1ef) Thanks [@tenphi](https://github.com/tenphi)! - Fix props propagation in ResizablePanel.
2063
-
2064
- ## 0.46.4
2065
-
2066
- ### Patch Changes
2067
-
2068
- - [#545](https://github.com/cube-js/cube-ui-kit/pull/545) [`8a460c3`](https://github.com/cube-js/cube-ui-kit/commit/8a460c326e1271c9fbba3b163b84142b968a440f) Thanks [@tenphi](https://github.com/tenphi)! - New drag appearance for ResizablePanel to avoid confusion with a scrollbar.
2069
-
2070
- ## 0.46.3
2071
-
2072
- ### Patch Changes
2073
-
2074
- - [#543](https://github.com/cube-js/cube-ui-kit/pull/543) [`b813f22`](https://github.com/cube-js/cube-ui-kit/commit/b813f2207f3e332160a76f483dd38305d5643c47) Thanks [@tenphi](https://github.com/tenphi)! - Prevent ResizablePanel from infinite switching state loop in controllable mode.
2075
-
2076
- ## 0.46.2
2077
-
2078
- ### Patch Changes
2079
-
2080
- - [#541](https://github.com/cube-js/cube-ui-kit/pull/541) [`40c6072`](https://github.com/cube-js/cube-ui-kit/commit/40c607213543557359c3fe9ee976cd42d85331ea) Thanks [@tenphi](https://github.com/tenphi)! - Smoother transition for ResizablePanel.'
2081
-
2082
- - [#541](https://github.com/cube-js/cube-ui-kit/pull/541) [`40c6072`](https://github.com/cube-js/cube-ui-kit/commit/40c607213543557359c3fe9ee976cd42d85331ea) Thanks [@tenphi](https://github.com/tenphi)! - Round the output size style in ResizablePanel.
2083
-
2084
- ## 0.46.1
2085
-
2086
- ### Patch Changes
2087
-
2088
- - [#538](https://github.com/cube-js/cube-ui-kit/pull/538) [`7ba6e5e`](https://github.com/cube-js/cube-ui-kit/commit/7ba6e5e5066ceaae6f119eb6dab0264ae3e74ad2) Thanks [@tenphi](https://github.com/tenphi)! - Stabilize ResizablePanel & remove requirement for the flex layout.
2089
-
2090
- ## 0.46.0
2091
-
2092
- ### Minor Changes
2093
-
2094
- - [#536](https://github.com/cube-js/cube-ui-kit/pull/536) [`b10e55e`](https://github.com/cube-js/cube-ui-kit/commit/b10e55ee6adca81763280f5a72dde7c2e4ad1534) Thanks [@tenphi](https://github.com/tenphi)! - Add Panel component.
2095
-
2096
- - [#536](https://github.com/cube-js/cube-ui-kit/pull/536) [`b10e55e`](https://github.com/cube-js/cube-ui-kit/commit/b10e55ee6adca81763280f5a72dde7c2e4ad1534) Thanks [@tenphi](https://github.com/tenphi)! - Add ResizablePanel component.
2097
-
2098
- ## 0.45.0
2099
-
2100
- ### Minor Changes
2101
-
2102
- - [#533](https://github.com/cube-js/cube-ui-kit/pull/533) [`e6246bd`](https://github.com/cube-js/cube-ui-kit/commit/e6246bd8fdefa98bf37ec5f23c88435c60d33fe8) Thanks [@tenphi](https://github.com/tenphi)! - Fix for Combobox input inside Form.
2103
-
2104
- ## 0.44.0
2105
-
2106
- ### Minor Changes
2107
-
2108
- - [#529](https://github.com/cube-js/cube-ui-kit/pull/529) [`dfc6298`](https://github.com/cube-js/cube-ui-kit/commit/dfc62981a1940d5053222228347617e4e60588ba) Thanks [@tenphi](https://github.com/tenphi)! - Add support for more complex selectors in mods.
2109
-
2110
- - [#529](https://github.com/cube-js/cube-ui-kit/pull/529) [`dfc6298`](https://github.com/cube-js/cube-ui-kit/commit/dfc62981a1940d5053222228347617e4e60588ba) Thanks [@tenphi](https://github.com/tenphi)! - Improve typings and add support for the most html attributes and event handlers.
2111
-
2112
- ### Patch Changes
2113
-
2114
- - [#529](https://github.com/cube-js/cube-ui-kit/pull/529) [`dfc6298`](https://github.com/cube-js/cube-ui-kit/commit/dfc62981a1940d5053222228347617e4e60588ba) Thanks [@tenphi](https://github.com/tenphi)! - Futher improvement of typings.
2115
-
2116
- ## 0.43.0
2117
-
2118
- ### Minor Changes
2119
-
2120
- - [#527](https://github.com/cube-js/cube-ui-kit/pull/527) [`3aad044`](https://github.com/cube-js/cube-ui-kit/commit/3aad044eef077b19a82f2422f2e929ee2358aee3) Thanks [@tenphi](https://github.com/tenphi)! - Do not create field instance for non-exist fields in Form. Use default values from Form when creating new fields.
2121
-
2122
- ### Patch Changes
2123
-
2124
- - [#527](https://github.com/cube-js/cube-ui-kit/pull/527) [`3aad044`](https://github.com/cube-js/cube-ui-kit/commit/3aad044eef077b19a82f2422f2e929ee2358aee3) Thanks [@tenphi](https://github.com/tenphi)! - Add input trimming and keyboard interaction for TextInputMapper.
2125
-
2126
- - [#527](https://github.com/cube-js/cube-ui-kit/pull/527) [`3aad044`](https://github.com/cube-js/cube-ui-kit/commit/3aad044eef077b19a82f2422f2e929ee2358aee3) Thanks [@tenphi](https://github.com/tenphi)! - Add support for all html attributes in basic components.
2127
-
2128
- ## 0.42.1
2129
-
2130
- ### Patch Changes
2131
-
2132
- - [#525](https://github.com/cube-js/cube-ui-kit/pull/525) [`4846f53`](https://github.com/cube-js/cube-ui-kit/commit/4846f53906f3054b9699efa6a2e45c5479fdbb45) Thanks [@tenphi](https://github.com/tenphi)! - Improve TextInputMapper styles inside Form.'
2133
-
2134
- ## 0.42.0
2135
-
2136
- ### Minor Changes
2137
-
2138
- - [#523](https://github.com/cube-js/cube-ui-kit/pull/523) [`e684da6`](https://github.com/cube-js/cube-ui-kit/commit/e684da698ab6ac28ba97daab0d69ce4c47fab8b3) Thanks [@tenphi](https://github.com/tenphi)! - Add support for object values in Form.
2139
-
2140
- - [#523](https://github.com/cube-js/cube-ui-kit/pull/523) [`e684da6`](https://github.com/cube-js/cube-ui-kit/commit/e684da698ab6ac28ba97daab0d69ce4c47fab8b3) Thanks [@tenphi](https://github.com/tenphi)! - Add TextInputMapper component.
2141
-
2142
- ## 0.41.3
2143
-
2144
- ### Patch Changes
2145
-
2146
- - [#521](https://github.com/cube-js/cube-ui-kit/pull/521) [`6f6737f`](https://github.com/cube-js/cube-ui-kit/commit/6f6737fde7ce84ba1c0d4641ffe1623070cf66fd) Thanks [@tenphi](https://github.com/tenphi)! - Remove trailing space in CopySnippet.
2147
-
2148
- ## 0.41.2
2149
-
2150
- ### Patch Changes
2151
-
2152
- - [#519](https://github.com/cube-js/cube-ui-kit/pull/519) [`b7505ee`](https://github.com/cube-js/cube-ui-kit/commit/b7505ee615ed36c73eb5f5d04890f90590ae2578) Thanks [@tenphi](https://github.com/tenphi)! - Add UserIcon and UserGroupIcon.
2153
-
2154
- ## 0.41.1
2155
-
2156
- ### Patch Changes
2157
-
2158
- - [#517](https://github.com/cube-js/cube-ui-kit/pull/517) [`6e17c77`](https://github.com/cube-js/cube-ui-kit/commit/6e17c77b94ab81c3b1aef9da071d6623f9d83057) Thanks [@tenphi](https://github.com/tenphi)! - Fix version declaration.
2159
-
2160
- - [#517](https://github.com/cube-js/cube-ui-kit/pull/517) [`6e17c77`](https://github.com/cube-js/cube-ui-kit/commit/6e17c77b94ab81c3b1aef9da071d6623f9d83057) Thanks [@tenphi](https://github.com/tenphi)! - Fix warning about incorrectly rendered component in SliderBase.
2161
-
2162
- - [#517](https://github.com/cube-js/cube-ui-kit/pull/517) [`6e17c77`](https://github.com/cube-js/cube-ui-kit/commit/6e17c77b94ab81c3b1aef9da071d6623f9d83057) Thanks [@tenphi](https://github.com/tenphi)! - Correctly pass focusWithinProps in Slider.
2163
-
2164
- - [#517](https://github.com/cube-js/cube-ui-kit/pull/517) [`6e17c77`](https://github.com/cube-js/cube-ui-kit/commit/6e17c77b94ab81c3b1aef9da071d6623f9d83057) Thanks [@tenphi](https://github.com/tenphi)! - Do not pass invalid isDisabled prop in Action.
2165
-
2166
- ## 0.41.0
2167
-
2168
- ### Minor Changes
2169
-
2170
- - [#515](https://github.com/cube-js/cube-ui-kit/pull/515) [`79ae983`](https://github.com/cube-js/cube-ui-kit/commit/79ae9839878232e4654441fe8ffb986a79189ccc) Thanks [@tenphi](https://github.com/tenphi)! - Declare uikit version globally.
2171
-
2172
- ## 0.40.0
2173
-
2174
- ### Minor Changes
2175
-
2176
- - [#511](https://github.com/cube-js/cube-ui-kit/pull/511) [`384b41a`](https://github.com/cube-js/cube-ui-kit/commit/384b41a087d2965bbd4dc815c73435ed357ca576) Thanks [@tenphi](https://github.com/tenphi)! - Add field support for FileInput.
2177
-
2178
- - [#511](https://github.com/cube-js/cube-ui-kit/pull/511) [`384b41a`](https://github.com/cube-js/cube-ui-kit/commit/384b41a087d2965bbd4dc815c73435ed357ca576) Thanks [@tenphi](https://github.com/tenphi)! - Remove @react-types typings and rely solely on react-aria package.
2179
-
2180
- ### Patch Changes
2181
-
2182
- - [#511](https://github.com/cube-js/cube-ui-kit/pull/511) [`384b41a`](https://github.com/cube-js/cube-ui-kit/commit/384b41a087d2965bbd4dc815c73435ed357ca576) Thanks [@tenphi](https://github.com/tenphi)! - Add isTouched flag to Form.
2183
-
2184
- - [#511](https://github.com/cube-js/cube-ui-kit/pull/511) [`384b41a`](https://github.com/cube-js/cube-ui-kit/commit/384b41a087d2965bbd4dc815c73435ed357ca576) Thanks [@tenphi](https://github.com/tenphi)! - Support "accept" attribute in FileInput component.
2185
-
2186
- - [#511](https://github.com/cube-js/cube-ui-kit/pull/511) [`384b41a`](https://github.com/cube-js/cube-ui-kit/commit/384b41a087d2965bbd4dc815c73435ed357ca576) Thanks [@tenphi](https://github.com/tenphi)! - Reinitialize Field on name change.
2187
-
2188
- ## 0.39.1
2189
-
2190
- ### Patch Changes
2191
-
2192
- - [#512](https://github.com/cube-js/cube-ui-kit/pull/512) [`0a1d52e`](https://github.com/cube-js/cube-ui-kit/commit/0a1d52ef8249e892a6b242bbcc2a586e20718315) Thanks [@tenphi](https://github.com/tenphi)! - Add UnlockIcon.
2193
-
2194
- ## 0.39.0
2195
-
2196
- ### Minor Changes
2197
-
2198
- - [#425](https://github.com/cube-js/cube-ui-kit/pull/425) [`d31976e`](https://github.com/cube-js/cube-ui-kit/commit/d31976eccdfba4517057c699bbc921a00b02d9c5) Thanks [@tenphi](https://github.com/tenphi)! - Add casting property to Field component to cast Field value to different type that input allows
2199
-
2200
- ## 0.38.0
2201
-
2202
- ### Minor Changes
2203
-
2204
- - [#507](https://github.com/cube-js/cube-ui-kit/pull/507) [`c2b126e`](https://github.com/cube-js/cube-ui-kit/commit/c2b126e3b6d9e46a75025c334066f777acd8106c) Thanks [@tenphi](https://github.com/tenphi)! - Change MenuItem API to support isDisabled and onAction props.
2205
-
2206
- ### Patch Changes
2207
-
2208
- - [#507](https://github.com/cube-js/cube-ui-kit/pull/507) [`c2b126e`](https://github.com/cube-js/cube-ui-kit/commit/c2b126e3b6d9e46a75025c334066f777acd8106c) Thanks [@tenphi](https://github.com/tenphi)! - Fix unresponsive Menu Item on tap to click.
2209
-
2210
- ## 0.37.5
2211
-
2212
- ### Patch Changes
2213
-
2214
- - [#504](https://github.com/cube-js/cube-ui-kit/pull/504) [`b83122e`](https://github.com/cube-js/cube-ui-kit/commit/b83122e01f9cc1ff1febf4eaa451044106b8c202) Thanks [@tenphi](https://github.com/tenphi)! - Add support for dark schema for Underlay.
2215
-
2216
- - [#504](https://github.com/cube-js/cube-ui-kit/pull/504) [`b83122e`](https://github.com/cube-js/cube-ui-kit/commit/b83122e01f9cc1ff1febf4eaa451044106b8c202) Thanks [@tenphi](https://github.com/tenphi)! - Fix FileTabs Pane max size.
2217
-
2218
- - [#504](https://github.com/cube-js/cube-ui-kit/pull/504) [`b83122e`](https://github.com/cube-js/cube-ui-kit/commit/b83122e01f9cc1ff1febf4eaa451044106b8c202) Thanks [@tenphi](https://github.com/tenphi)! - Fix typings for SearchInput to support onSubmit and onClear callbacks.
2219
-
2220
- ## 0.37.4
2221
-
2222
- ### Patch Changes
2223
-
2224
- - [#501](https://github.com/cube-js/cube-ui-kit/pull/501) [`90cfd16`](https://github.com/cube-js/cube-ui-kit/commit/90cfd1601924f49f5393d8a712ad10e5dba5f6fc) Thanks [@tenphi](https://github.com/tenphi)! - Add CalendarEditIcon
2225
-
2226
- ## 0.37.3
2227
-
2228
- ### Patch Changes
2229
-
2230
- - [#498](https://github.com/cube-js/cube-ui-kit/pull/498) [`77e7ab7`](https://github.com/cube-js/cube-ui-kit/commit/77e7ab77c2797e1f5f986e0e6b40c760689eb25c) Thanks [@tenphi](https://github.com/tenphi)! - Pass `qa` prop for fields.
2231
-
2232
- ## 0.37.2
2233
-
2234
- ### Patch Changes
2235
-
2236
- - [#495](https://github.com/cube-js/cube-ui-kit/pull/495) [`743d5fa`](https://github.com/cube-js/cube-ui-kit/commit/743d5fa8b242bd60acd55d94d3d01450bd7bcbfb) Thanks [@tenphi](https://github.com/tenphi)! - Add StatsIcon.
2237
-
2238
- ## 0.37.1
2239
-
2240
- ### Patch Changes
2241
-
2242
- - [#492](https://github.com/cube-js/cube-ui-kit/pull/492) [`84002df`](https://github.com/cube-js/cube-ui-kit/commit/84002df9f8bbbacd48e4cac51ae568749f8781e9) Thanks [@tenphi](https://github.com/tenphi)! - Support multiple directions in fade style.
2243
-
2244
- ## 0.37.0
2245
-
2246
- ### Minor Changes
2247
-
2248
- - [#487](https://github.com/cube-js/cube-ui-kit/pull/487) [`07350da`](https://github.com/cube-js/cube-ui-kit/commit/07350da1032b59659b6d207548ad23eb2c4d0bbe) Thanks [@tenphi](https://github.com/tenphi)! - Add lots of new icons.
2249
-
2250
- ## 0.36.0
2251
-
2252
- ### Minor Changes
2253
-
2254
- - [#485](https://github.com/cube-js/cube-ui-kit/pull/485) [`8104857`](https://github.com/cube-js/cube-ui-kit/commit/8104857cc27223977fc35ca324341ed342e1aa0b) Thanks [@tenphi](https://github.com/tenphi)! - Add `fade` and `inset` styles.
2255
-
2256
- ### Patch Changes
2257
-
2258
- - [#485](https://github.com/cube-js/cube-ui-kit/pull/485) [`8104857`](https://github.com/cube-js/cube-ui-kit/commit/8104857cc27223977fc35ca324341ed342e1aa0b) Thanks [@tenphi](https://github.com/tenphi)! - Add `position` style to `position` style list.
2259
-
2260
- ## 0.35.10
2261
-
2262
- ### Patch Changes
2263
-
2264
- - [#483](https://github.com/cube-js/cube-ui-kit/pull/483) [`e8e9a7e`](https://github.com/cube-js/cube-ui-kit/commit/e8e9a7e4ba43261f5a562932a404f719d9e2a41b) Thanks [@tenphi](https://github.com/tenphi)! - Export ProviderProps type.
2265
-
2266
- ## 0.35.9
2267
-
2268
- ### Patch Changes
2269
-
2270
- - [#481](https://github.com/cube-js/cube-ui-kit/pull/481) [`c02d7ea`](https://github.com/cube-js/cube-ui-kit/commit/c02d7eaf05714e9afd64705ead4cb8f775c1aecc) Thanks [@tenphi](https://github.com/tenphi)! - Fix RadioButton layout flow.
2271
-
2272
- ## 0.35.8
2273
-
2274
- ### Patch Changes
2275
-
2276
- - [#479](https://github.com/cube-js/cube-ui-kit/pull/479) [`f31f3cc`](https://github.com/cube-js/cube-ui-kit/commit/f31f3cce82304389efc22c8c6f99d81c8acc9e91) Thanks [@tenphi](https://github.com/tenphi)! - Export useProviderProps and UIKitContext.
2277
-
2278
- - [#479](https://github.com/cube-js/cube-ui-kit/pull/479) [`f31f3cc`](https://github.com/cube-js/cube-ui-kit/commit/f31f3cce82304389efc22c8c6f99d81c8acc9e91) Thanks [@tenphi](https://github.com/tenphi)! - Improve styles for Radio.Button
2279
-
2280
- - [#479](https://github.com/cube-js/cube-ui-kit/pull/479) [`f31f3cc`](https://github.com/cube-js/cube-ui-kit/commit/f31f3cce82304389efc22c8c6f99d81c8acc9e91) Thanks [@tenphi](https://github.com/tenphi)! - Export useProviderProps hook.
2281
-
2282
- ## 0.35.7
2283
-
2284
- ### Patch Changes
2285
-
2286
- - [#476](https://github.com/cube-js/cube-ui-kit/pull/476) [`5bf114c`](https://github.com/cube-js/cube-ui-kit/commit/5bf114c636f380e4ac17b1472197e0409b09d2ed) Thanks [@tenphi](https://github.com/tenphi)! - Export useProviderProps hook.
2287
-
2288
- ## 0.35.6
2289
-
2290
- ### Patch Changes
2291
-
2292
- - [#474](https://github.com/cube-js/cube-ui-kit/pull/474) [`827ca5b`](https://github.com/cube-js/cube-ui-kit/commit/827ca5b111e0def5546252a211b106ca7f3f6d95) Thanks [@tenphi](https://github.com/tenphi)! - Add StringIcon component.
2293
-
2294
- ## 0.35.5
2295
-
2296
- ### Patch Changes
2297
-
2298
- - [#472](https://github.com/cube-js/cube-ui-kit/pull/472) [`70782a2`](https://github.com/cube-js/cube-ui-kit/commit/70782a2310e51cee946232c3c39dd06add9ffeac) Thanks [@tenphi](https://github.com/tenphi)! - Add Sparkles icon.
2299
-
2300
- ## 0.35.4
2301
-
2302
- ### Patch Changes
2303
-
2304
- - [#470](https://github.com/cube-js/cube-ui-kit/pull/470) [`66a69c7`](https://github.com/cube-js/cube-ui-kit/commit/66a69c7ced6cada44cc76344749c66ceb37ba691) Thanks [@tenphi](https://github.com/tenphi)! - Add ThumbsUp and ThumbsDown icons.
2305
-
2306
- ## 0.35.3
2307
-
2308
- ### Patch Changes
2309
-
2310
- - [#468](https://github.com/cube-js/cube-ui-kit/pull/468) [`2bd3b1d`](https://github.com/cube-js/cube-ui-kit/commit/2bd3b1d383c83f65be411dcf445cbce712fe11c9) Thanks [@tenphi](https://github.com/tenphi)! - Fix Root component so it can accept style object.'
2311
-
2312
- ## 0.35.2
2313
-
2314
- ### Patch Changes
2315
-
2316
- - [#465](https://github.com/cube-js/cube-ui-kit/pull/465) [`3597635`](https://github.com/cube-js/cube-ui-kit/commit/3597635b770a57be18f8388fab07251cec5c227a) Thanks [@tenphi](https://github.com/tenphi)! - Fix passing breakpoints property to the Root component.
2317
-
2318
- - [#463](https://github.com/cube-js/cube-ui-kit/pull/463) [`bc3acb1`](https://github.com/cube-js/cube-ui-kit/commit/bc3acb147966e8bbaf2b8b3f3325cd423a11cd9d) Thanks [@tenphi](https://github.com/tenphi)! - Change icon container inner placement to center. Suitable for icons that are smaller than default size.
2319
-
2320
- - [#463](https://github.com/cube-js/cube-ui-kit/pull/463) [`bc3acb1`](https://github.com/cube-js/cube-ui-kit/commit/bc3acb147966e8bbaf2b8b3f3325cd423a11cd9d) Thanks [@tenphi](https://github.com/tenphi)! - Fix passing styles from DialogTrigger to Popver component.
2321
-
2322
- ## 0.35.1
2323
-
2324
- ### Patch Changes
2325
-
2326
- - [#461](https://github.com/cube-js/cube-ui-kit/pull/461) [`820de13`](https://github.com/cube-js/cube-ui-kit/commit/820de130bbd27077b3067496e2d21602dcdfd847) Thanks [@tenphi](https://github.com/tenphi)! - Add SlashIcon.
2327
-
2328
- ## 0.35.0
2329
-
2330
- ### Minor Changes
2331
-
2332
- - [#460](https://github.com/cube-js/cube-ui-kit/pull/460) [`de511ca`](https://github.com/cube-js/cube-ui-kit/commit/de511ca4e83fdd659888e8c7e058b293774ef45e) Thanks [@tenphi](https://github.com/tenphi)! - Add even more icons.
2333
-
2334
- ### Patch Changes
2335
-
2336
- - [#460](https://github.com/cube-js/cube-ui-kit/pull/460) [`de511ca`](https://github.com/cube-js/cube-ui-kit/commit/de511ca4e83fdd659888e8c7e058b293774ef45e) Thanks [@tenphi](https://github.com/tenphi)! - Allow icons to fill all available vertical space in complex layouts.
2337
-
2338
- - [#458](https://github.com/cube-js/cube-ui-kit/pull/458) [`4740e98`](https://github.com/cube-js/cube-ui-kit/commit/4740e987ab71ce20ee7d2a4a6affd15c0f117e0b) Thanks [@tenphi](https://github.com/tenphi)! - Export wrapIcon helper.
2339
-
2340
- ## 0.34.0
2341
-
2342
- ### Minor Changes
2343
-
2344
- - [#456](https://github.com/cube-js/cube-ui-kit/pull/456) [`6371914`](https://github.com/cube-js/cube-ui-kit/commit/6371914e3a03f55b1ff57f1db715480cec5c6970) Thanks [@tenphi](https://github.com/tenphi)! - Add a new set icons.
2345
-
2346
- ## 0.33.4
2347
-
2348
- ### Patch Changes
2349
-
2350
- - [#453](https://github.com/cube-js/cube-ui-kit/pull/453) [`cc85ee4`](https://github.com/cube-js/cube-ui-kit/commit/cc85ee4c5c1dc032526cfa178ca9b0b9b8c979b7) Thanks [@tenphi](https://github.com/tenphi)! - Use smaller horizontal paddings buttons.
2351
-
2352
- - [#455](https://github.com/cube-js/cube-ui-kit/pull/455) [`d72f96c`](https://github.com/cube-js/cube-ui-kit/commit/d72f96c7086dca45499fe8b8e96f40740effb017) Thanks [@tenphi](https://github.com/tenphi)! - Set default gap inside Button layout to 6px instead of 8px.
2353
-
2354
- - [#453](https://github.com/cube-js/cube-ui-kit/pull/453) [`cc85ee4`](https://github.com/cube-js/cube-ui-kit/commit/cc85ee4c5c1dc032526cfa178ca9b0b9b8c979b7) Thanks [@tenphi](https://github.com/tenphi)! - Use --icon-size property as the default size for the icon set.
2355
-
2356
- ## 0.33.3
2357
-
2358
- ### Patch Changes
2359
-
2360
- - [#450](https://github.com/cube-js/cube-ui-kit/pull/450) [`70ada53`](https://github.com/cube-js/cube-ui-kit/commit/70ada5326791bf73c16f3fa137fac720eef7cde3) Thanks [@tenphi](https://github.com/tenphi)! - Support `download` attribute in Button and Link components.
2361
-
2362
- - [#451](https://github.com/cube-js/cube-ui-kit/pull/451) [`889660f`](https://github.com/cube-js/cube-ui-kit/commit/889660f2cb4f084ea93d6157456a7046af46ebc0) Thanks [@tenphi](https://github.com/tenphi)! - Fix styled scrollbar styles to return background.
2363
-
2364
- - [#451](https://github.com/cube-js/cube-ui-kit/pull/451) [`889660f`](https://github.com/cube-js/cube-ui-kit/commit/889660f2cb4f084ea93d6157456a7046af46ebc0) Thanks [@tenphi](https://github.com/tenphi)! - Add typings for outer style props in the Radio component.
2365
-
2366
- ## 0.33.2
2367
-
2368
- ### Patch Changes
2369
-
2370
- - [#448](https://github.com/cube-js/cube-ui-kit/pull/448) [`9d60269`](https://github.com/cube-js/cube-ui-kit/commit/9d60269d6bfc33c6953eef5ad5d2e591ba7aae89) Thanks [@tenphi](https://github.com/tenphi)! - Add aria-hidden to all icons.
2371
-
2372
- - [#448](https://github.com/cube-js/cube-ui-kit/pull/448) [`9d60269`](https://github.com/cube-js/cube-ui-kit/commit/9d60269d6bfc33c6953eef5ad5d2e591ba7aae89) Thanks [@tenphi](https://github.com/tenphi)! - Make all icons spans and change layout to inline-grid.
2373
-
2374
- ## 0.33.1
2375
-
2376
- ### Patch Changes
2377
-
2378
- - [#445](https://github.com/cube-js/cube-ui-kit/pull/445) [`0b7f5fe`](https://github.com/cube-js/cube-ui-kit/commit/0b7f5fe6e8f6f7b5eed152223205cf54a75c948f) Thanks [@tenphi](https://github.com/tenphi)! - Fix LockIcon component.
2379
-
2380
- ## 0.33.0
2381
-
2382
- ### Minor Changes
2383
-
2384
- - [#442](https://github.com/cube-js/cube-ui-kit/pull/442) [`d887177`](https://github.com/cube-js/cube-ui-kit/commit/d887177d0684fd994e92b1638ed5b7f1f3e95bae) Thanks [@tenphi](https://github.com/tenphi)! - Add icon set. Import icons like components: `CloseIcon`, `PlusIcon`, etc.
2385
-
2386
- - [#443](https://github.com/cube-js/cube-ui-kit/pull/443) [`c2701c2`](https://github.com/cube-js/cube-ui-kit/commit/c2701c2e8dfc9ee073501bb99ffe100149b9f32e) Thanks [@tenphi](https://github.com/tenphi)! - Fix tip position for Tooltip component in right/left placement.
2387
-
2388
- ## 0.32.0
2389
-
2390
- ### Minor Changes
2391
-
2392
- - [#440](https://github.com/cube-js/cube-ui-kit/pull/440) [`853e3e2`](https://github.com/cube-js/cube-ui-kit/commit/853e3e2692b1bd5adb158f825e4f816df1758548) Thanks [@tenphi](https://github.com/tenphi)! - Add full React 18 support. UI Kit now requires React 18 to run.
2393
-
2394
- ## 0.31.2
2395
-
2396
- ### Patch Changes
2397
-
2398
- - [#437](https://github.com/cube-js/cube-ui-kit/pull/437) [`5411b86`](https://github.com/cube-js/cube-ui-kit/commit/5411b86a40139bbb68cee322ef3642a3e96486c5) Thanks [@ovr](https://github.com/ovr)! - fix(deps): Make storybook as dev dependencies
2399
-
2400
- ## 0.31.1
2401
-
2402
- ### Patch Changes
2403
-
2404
- - [#435](https://github.com/cube-js/cube-ui-kit/pull/435) [`902c1f9`](https://github.com/cube-js/cube-ui-kit/commit/902c1f9fdf393fbacc851247c122ea714f674f59) Thanks [@tenphi](https://github.com/tenphi)! - Add correct type exports to the published package.
2405
-
2406
- ## 0.31.0
2407
-
2408
- ### Minor Changes
2409
-
2410
- - [#432](https://github.com/cube-js/cube-ui-kit/pull/432) [`46b8354`](https://github.com/cube-js/cube-ui-kit/commit/46b8354457c24807e0920993be4ff1e445aeb86c) Thanks [@tenphi](https://github.com/tenphi)! - Add license field to the published package.json
2411
-
2412
- ## 0.30.1
2413
-
2414
- ### Patch Changes
2415
-
2416
- - [#428](https://github.com/cube-js/cube-ui-kit/pull/428) [`95c56f7`](https://github.com/cube-js/cube-ui-kit/commit/95c56f7877140eef58014c12d2824d9fa0c69355) Thanks [@tenphi](https://github.com/tenphi)! - Add `isStatic` property to active static mode without animation in Placeholder and Skeleton components.
2417
-
2418
- ## 0.30.0
2419
-
2420
- ### Minor Changes
2421
-
2422
- - [#426](https://github.com/cube-js/cube-ui-kit/pull/426) [`b20cb7f`](https://github.com/cube-js/cube-ui-kit/commit/b20cb7f91c07a933e524477b274a96ac144985cf) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `styled-components` v6.
2423
-
2424
- ## 0.29.1
2425
-
2426
- ### Patch Changes
2427
-
2428
- - [#423](https://github.com/cube-js/cube-ui-kit/pull/423) [`d40fc1f`](https://github.com/cube-js/cube-ui-kit/commit/d40fc1f290d54935382b55017d4de5cc5977cbf7) Thanks [@tenphi](https://github.com/tenphi)! - Add a compact view for the Result component
2429
-
2430
- ## 0.29.0
2431
-
2432
- ### Minor Changes
2433
-
2434
- - [#421](https://github.com/cube-js/cube-ui-kit/pull/421) [`c6ce743`](https://github.com/cube-js/cube-ui-kit/commit/c6ce743fab1db7d0daeb9bd017e1338b8cdd565a) Thanks [@tenphi](https://github.com/tenphi)! - Added new DateRangeSeparatedPicker component for better UX while selecting date ranges
2435
-
2436
- ## 0.28.0
2437
-
2438
- ### Minor Changes
2439
-
2440
- - [#419](https://github.com/cube-js/cube-ui-kit/pull/419) [`910a8d4`](https://github.com/cube-js/cube-ui-kit/commit/910a8d424330c38941b0a86585c13baffc1016f4) Thanks [@tenphi](https://github.com/tenphi)! - Migration to the combined `react-aria` and `react-stately` packages.
2441
-
2442
- ### Patch Changes
2443
-
2444
- - [#413](https://github.com/cube-js/cube-ui-kit/pull/413) [`76d9fd7`](https://github.com/cube-js/cube-ui-kit/commit/76d9fd70b51efa7108456df2611d981e5a2a22b4) Thanks [@tenphi](https://github.com/tenphi)! - Fix Field label sizing.
2445
-
2446
- ## 0.27.2
2447
-
2448
- ### Patch Changes
2449
-
2450
- - [#414](https://github.com/cube-js/cube-ui-kit/pull/414) [`ec4f294`](https://github.com/cube-js/cube-ui-kit/commit/ec4f294c6fa8e264f69188e2a9fdaf012db99c62) Thanks [@tenphi](https://github.com/tenphi)! - Disable text wrapping inside Menu elements.
2451
-
2452
- ## 0.27.1
2453
-
2454
- ### Patch Changes
2455
-
2456
- - [#410](https://github.com/cube-js/cube-ui-kit/pull/410) [`f4c958a`](https://github.com/cube-js/cube-ui-kit/commit/f4c958a0fd625ba651d4d6bcfea933afbd95571b) Thanks [@tenphi](https://github.com/tenphi)! - Fixes border colors in the hover state for solid Radio Buttons.
2457
-
2458
- ## 0.27.0
2459
-
2460
- ### Minor Changes
2461
-
2462
- - [#409](https://github.com/cube-js/cube-ui-kit/pull/409) [`9289732`](https://github.com/cube-js/cube-ui-kit/commit/928973274ee6f748b3475ab3adb29dc1d43552cf) Thanks [@tenphi](https://github.com/tenphi)! - Add support for initial value properties for fields that are linked to a form.
2463
-
2464
- ### Patch Changes
2465
-
2466
- - [#407](https://github.com/cube-js/cube-ui-kit/pull/407) [`886e521`](https://github.com/cube-js/cube-ui-kit/commit/886e52195d8db6f8fa3fea514e6921d333770dc5) Thanks [@tenphi](https://github.com/tenphi)! - Fix "for" attribute in field labels.
2467
-
2468
- - [#407](https://github.com/cube-js/cube-ui-kit/pull/407) [`886e521`](https://github.com/cube-js/cube-ui-kit/commit/886e52195d8db6f8fa3fea514e6921d333770dc5) Thanks [@tenphi](https://github.com/tenphi)! - Show warning if a field is linked to a form but default value is provided. And in case when a field is unlinked but validation rules are provided.'
2469
-
2470
- ## 0.26.4
2471
-
2472
- ### Patch Changes
2473
-
2474
- - [#405](https://github.com/cube-js/cube-ui-kit/pull/405) [`9201d17`](https://github.com/cube-js/cube-ui-kit/commit/9201d17faffdfdba10783d8a6717a96fed6db68e) Thanks [@tenphi](https://github.com/tenphi)! - Return name attribute of input element in Radio component.
2475
-
2476
- ## 0.26.3
2477
-
2478
- ### Patch Changes
2479
-
2480
- - [#402](https://github.com/cube-js/cube-ui-kit/pull/402) [`a9674c2`](https://github.com/cube-js/cube-ui-kit/commit/a9674c26de7f36aab137cc086d590d5bf06836a6) Thanks [@tenphi](https://github.com/tenphi)! - Add ability to customize mods for the Badge component.
2481
-
2482
- ## 0.26.2
2483
-
2484
- ### Patch Changes
2485
-
2486
- - [#400](https://github.com/cube-js/cube-ui-kit/pull/400) [`fcb2b6d`](https://github.com/cube-js/cube-ui-kit/commit/fcb2b6db7fcc307b9dfac4f451f4909c21f2d5f6) Thanks [@tenphi](https://github.com/tenphi)! - Change field tooltip color to `#purple-text`.
2487
-
2488
- ## 0.26.1
2489
-
2490
- ### Patch Changes
2491
-
2492
- - [#397](https://github.com/cube-js/cube-ui-kit/pull/397) [`4fb9227`](https://github.com/cube-js/cube-ui-kit/commit/4fb9227634f74a03898d5ddc62e8a11eb00cb9e6) Thanks [@tenphi](https://github.com/tenphi)! - Improve focus ring behaviour on DatePicker and DateRangePicker.
2493
-
2494
- - [#399](https://github.com/cube-js/cube-ui-kit/pull/399) [`67b8af3`](https://github.com/cube-js/cube-ui-kit/commit/67b8af384a8a4b0c4272fff9dcdc8977b4b868c8) Thanks [@tenphi](https://github.com/tenphi)! - Increase `zIndex` style for Modals.
2495
-
2496
- ## 0.26.0
2497
-
2498
- ### Minor Changes
2499
-
2500
- - [#395](https://github.com/cube-js/cube-ui-kit/pull/395) [`e6c5f09`](https://github.com/cube-js/cube-ui-kit/commit/e6c5f0944aee83b471aa8106c714da04a22b0afb) Thanks [@tenphi](https://github.com/tenphi)! - Use standard date format for all date inputs.
2501
-
2502
- ## 0.25.0
2503
-
2504
- ### Minor Changes
2505
-
2506
- - [#393](https://github.com/cube-js/cube-ui-kit/pull/393) [`bff7e10`](https://github.com/cube-js/cube-ui-kit/commit/bff7e10ad2d2076c9d4dd15019a8b27387271365) Thanks [@tenphi](https://github.com/tenphi)! - Add solid type of radio button group.
2507
-
2508
- ### Patch Changes
2509
-
2510
- - [#393](https://github.com/cube-js/cube-ui-kit/pull/393) [`bff7e10`](https://github.com/cube-js/cube-ui-kit/commit/bff7e10ad2d2076c9d4dd15019a8b27387271365) Thanks [@tenphi](https://github.com/tenphi)! - Share mods between Radio wrapper and the input elements. So now you can change styles of wrapper depending on checked state
2511
-
2512
- ## 0.24.4
2513
-
2514
- ### Patch Changes
2515
-
2516
- - [#389](https://github.com/cube-js/cube-ui-kit/pull/389) [`b60f790`](https://github.com/cube-js/cube-ui-kit/commit/b60f790a0e4590ddc22a6afda4c6382fea426b7e) Thanks [@tenphi](https://github.com/tenphi)! - Move Vite and some storybook addons to dev dependencies.
2517
-
2518
- - [#390](https://github.com/cube-js/cube-ui-kit/pull/390) [`e0c0fc1`](https://github.com/cube-js/cube-ui-kit/commit/e0c0fc190b3509b21c4002e4d92ca4f0aee677e0) Thanks [@tenphi](https://github.com/tenphi)! - Do not wrap text inside Radio.Group
2519
-
2520
- ## 0.24.3
2521
-
2522
- ### Patch Changes
2523
-
2524
- - [#387](https://github.com/cube-js/cube-ui-kit/pull/387) [`446801f`](https://github.com/cube-js/cube-ui-kit/commit/446801f9be024b61f0c31709d5d4874b855a59b4) Thanks [@tenphi](https://github.com/tenphi)! - Fix `kbd` tag text color style.
2525
-
2526
- ## 0.24.2
2527
-
2528
- ### Patch Changes
2529
-
2530
- - [#385](https://github.com/cube-js/cube-ui-kit/pull/385) [`b85b0b2`](https://github.com/cube-js/cube-ui-kit/commit/b85b0b260c035dddca39cade68e8875e65095336) Thanks [@tenphi](https://github.com/tenphi)! - Fix styles for the CopyPasteBlock component.
2531
-
2532
- ## 0.24.1
2533
-
2534
- ### Patch Changes
2535
-
2536
- - [#382](https://github.com/cube-js/cube-ui-kit/pull/382) [`eec5e0e`](https://github.com/cube-js/cube-ui-kit/commit/eec5e0e534f195ec8a3fb47775d1af0bcd8f2aeb) Thanks [@tenphi](https://github.com/tenphi)! - Add `size` property and position style properties for the CopyPasteBlock component.
2537
-
2538
- ## 0.24.0
2539
-
2540
- ### Minor Changes
2541
-
2542
- - [#380](https://github.com/cube-js/cube-ui-kit/pull/380) [`ca81a3a`](https://github.com/cube-js/cube-ui-kit/commit/ca81a3af4f91e53abd07dfcb133169d5c095c083) Thanks [@tenphi](https://github.com/tenphi)! - Add CopyPasteBlock component
2543
-
2544
- ## 0.23.2
2545
-
2546
- ### Patch Changes
2547
-
2548
- - [#377](https://github.com/cube-js/cube-ui-kit/pull/377) [`ad00f76`](https://github.com/cube-js/cube-ui-kit/commit/ad00f762d8f3d8a5270afbfd815a3d0518c80b68) Thanks [@tenphi](https://github.com/tenphi)! - Remove label duplicates passed via the `children` property from Checkbox and Switch components.
2549
-
2550
- ## 0.23.1
2551
-
2552
- ### Patch Changes
2553
-
2554
- - [#375](https://github.com/cube-js/cube-ui-kit/pull/375) [`28ca840`](https://github.com/cube-js/cube-ui-kit/commit/28ca8401c31396f8a08e3ae4cdb95ccf6ac91dba) Thanks [@tenphi](https://github.com/tenphi)! - Fix popover position of DatePicker and DateRangePicker
2555
-
2556
- ## 0.23.0
2557
-
2558
- ### Minor Changes
2559
-
2560
- - [#373](https://github.com/cube-js/cube-ui-kit/pull/373) [`a204af6`](https://github.com/cube-js/cube-ui-kit/commit/a204af648b411b79a151e69f255045918b968ffc) Thanks [@tenphi](https://github.com/tenphi)! - Add date & time inputs: DateInput, TimeInput, DatePicker, DateRangePicker.
2561
- Change default transition time from 120ms to 80ms.
2562
-
2563
- ## 0.22.8
2564
-
2565
- ### Patch Changes
2566
-
2567
- - [#371](https://github.com/cube-js/cube-ui-kit/pull/371) [`2b2e45d`](https://github.com/cube-js/cube-ui-kit/commit/2b2e45d1d1e6b1b1e777b67050fa61dd644591af) Thanks [@tenphi](https://github.com/tenphi)! - Bundle styles that disable overflow behavior.
2568
-
2569
- ## 0.22.7
2570
-
2571
- ### Patch Changes
2572
-
2573
- - [#369](https://github.com/cube-js/cube-ui-kit/pull/369) [`3d702c9`](https://github.com/cube-js/cube-ui-kit/commit/3d702c9d58b66e9871d129270e49bb278b46c64c) Thanks [@tenphi](https://github.com/tenphi)! - Fix DialogTrigger's `type` prop typing.
2574
-
2575
- ## 0.22.6
2576
-
2577
- ### Patch Changes
2578
-
2579
- - [#367](https://github.com/cube-js/cube-ui-kit/pull/367) [`611336d`](https://github.com/cube-js/cube-ui-kit/commit/611336d07acb5ad1dd436b9384135f119e40b30c) Thanks [@tenphi](https://github.com/tenphi)! - Allow scrolling inside the Menu component.
2580
-
2581
- ## 0.22.5
2582
-
2583
- ### Patch Changes
2584
-
2585
- - [#359](https://github.com/cube-js/cube-ui-kit/pull/359) [`2a07328`](https://github.com/cube-js/cube-ui-kit/commit/2a0732876c2352831acdd52f8f5f7097ff6f1244) Thanks [@tenphi](https://github.com/tenphi)! - Fix the `inputRef` prop in the NumberInput component.
2586
-
2587
- - [#361](https://github.com/cube-js/cube-ui-kit/pull/361) [`3759837`](https://github.com/cube-js/cube-ui-kit/commit/3759837dd49283a285aa87ee58d31e3dc477fb21) Thanks [@tenphi](https://github.com/tenphi)! - Remove transform in the base state for all modal components. That fixes `fixed` positioning inside.
2588
-
2589
- ## 0.22.4
2590
-
2591
- ### Patch Changes
2592
-
2593
- - [#357](https://github.com/cube-js/cube-ui-kit/pull/357) [`4f5f4d6`](https://github.com/cube-js/cube-ui-kit/commit/4f5f4d660fa2955b19f1333932caeff5e13dd3c4) Thanks [@tenphi](https://github.com/tenphi)! - Fix suffix support in NumberInput.
2594
-
2595
- ## 0.22.3
2596
-
2597
- ### Patch Changes
2598
-
2599
- - [#355](https://github.com/cube-js/cube-ui-kit/pull/355) [`20387c7`](https://github.com/cube-js/cube-ui-kit/commit/20387c752f36c1923b6dac806160ffd055ecc696) Thanks [@tenphi](https://github.com/tenphi)! - Avoid creating form fields with empty names.
2600
-
2601
- ## 0.22.2
2602
-
2603
- ### Patch Changes
2604
-
2605
- - [#352](https://github.com/cube-js/cube-ui-kit/pull/352) [`f302128`](https://github.com/cube-js/cube-ui-kit/commit/f3021284abc7b2c7e3d5a0523737adf4c19a96bf) Thanks [@tenphi](https://github.com/tenphi)! - Add element attribute for loading icon in the Button component to fix styling.
2606
-
2607
- ## 0.22.1
2608
-
2609
- ### Patch Changes
2610
-
2611
- - [#350](https://github.com/cube-js/cube-ui-kit/pull/350) [`53ea3fe`](https://github.com/cube-js/cube-ui-kit/commit/53ea3feddd0afc5ead0b14c5847dcf2daa594a8d) Thanks [@tenphi](https://github.com/tenphi)! - Add `showValid` prop to Form and Field component. If `true` the field shows its valid status.
2612
-
2613
- - [#350](https://github.com/cube-js/cube-ui-kit/pull/350) [`53ea3fe`](https://github.com/cube-js/cube-ui-kit/commit/53ea3feddd0afc5ead0b14c5847dcf2daa594a8d) Thanks [@tenphi](https://github.com/tenphi)! - Optimize forms to avoid unnecessary field validations.
2614
-
2615
- ## 0.22.0
2616
-
2617
- ### Minor Changes
2618
-
2619
- - [#347](https://github.com/cube-js/cube-ui-kit/pull/347) [`34410df`](https://github.com/cube-js/cube-ui-kit/commit/34410dfe1771d1285a8a0a4dd1f9b3ef170ded1a) Thanks [@tenphi](https://github.com/tenphi)! - Fix support of field props on input elements.
2620
-
2621
- - [#348](https://github.com/cube-js/cube-ui-kit/pull/348) [`7da9b7b`](https://github.com/cube-js/cube-ui-kit/commit/7da9b7ba7931240e046e38af40c9a1c2bb1cd9d6) Thanks [@tenphi](https://github.com/tenphi)! - Add support for debounce in async validation via `validationDelay` property.
2622
-
2623
- ## 0.21.0
2624
-
2625
- ### Minor Changes
2626
-
2627
- - [#344](https://github.com/cube-js/cube-ui-kit/pull/344) [`2ea241e`](https://github.com/cube-js/cube-ui-kit/commit/2ea241e2a902c858b3bbcab00c609458123d3622) Thanks [@tenphi](https://github.com/tenphi)! - Update Storybook to version 7
2628
-
2629
- ## 0.20.8
2630
-
2631
- ### Patch Changes
2632
-
2633
- - [#340](https://github.com/cube-js/cube-ui-kit/pull/340) [`2cf93ce`](https://github.com/cube-js/cube-ui-kit/commit/2cf93ce0db9b3c6d95e33ef6a1cd383f62f9747d) Thanks [@tenphi](https://github.com/tenphi)! - Improve styles in PrismCode component.
2634
-
2635
- - [#341](https://github.com/cube-js/cube-ui-kit/pull/341) [`24a6ce9`](https://github.com/cube-js/cube-ui-kit/commit/24a6ce9e2ecbd28bd5f6dfabefba287174174f89) Thanks [@tenphi](https://github.com/tenphi)! - Add styling properties for the Menu component: `itemStyles`, `sectionStyles` and `sectionHeadingStyles`.
2636
-
2637
- ## 0.20.7
2638
-
2639
- ### Patch Changes
2640
-
2641
- - [#338](https://github.com/cube-js/cube-ui-kit/pull/338) [`ba4a73f`](https://github.com/cube-js/cube-ui-kit/commit/ba4a73fbde7d7556e211793289851a6b1b9eeba1) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed missing data-\* attribiutes on `<Combobox />` component
2642
-
2643
- ## 0.20.6
2644
-
2645
- ### Patch Changes
2646
-
2647
- - [#337](https://github.com/cube-js/cube-ui-kit/pull/337) [`62280c4`](https://github.com/cube-js/cube-ui-kit/commit/62280c4c84bfb6c9819662ba01056b162aaf8e22) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed false positive a11y warnings in Button component
2648
-
2649
- - [#333](https://github.com/cube-js/cube-ui-kit/pull/333) [`79b72a1`](https://github.com/cube-js/cube-ui-kit/commit/79b72a199983b73d626ef15a2c189bd6551fe5be) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fix regression when Field's childen might be nullish
2650
-
2651
- - [#335](https://github.com/cube-js/cube-ui-kit/pull/335) [`8e2c86a`](https://github.com/cube-js/cube-ui-kit/commit/8e2c86ab7d9ae231e229a8806c533c14011da0f4) Thanks [@tenphi](https://github.com/tenphi)! - Fix paddings for the Badge component.
2652
-
2653
- - [#336](https://github.com/cube-js/cube-ui-kit/pull/336) [`a6ce43d`](https://github.com/cube-js/cube-ui-kit/commit/a6ce43de18707a13b4339483b0627348eed3b6dc) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fix types of Combobox
2654
-
2655
- - [#336](https://github.com/cube-js/cube-ui-kit/pull/336) [`a6ce43d`](https://github.com/cube-js/cube-ui-kit/commit/a6ce43de18707a13b4339483b0627348eed3b6dc) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fix filtering in Combobox
2656
-
2657
- ## 0.20.5
2658
-
2659
- ### Patch Changes
2660
-
2661
- - [#331](https://github.com/cube-js/cube-ui-kit/pull/331) [`9b06ba7`](https://github.com/cube-js/cube-ui-kit/commit/9b06ba7400f8cbfbc145357d647c723380c42109) Thanks [@tenphi](https://github.com/tenphi)! - Update CloudLogo to support dark schema in Safari
2662
-
2663
- ## 0.20.4
2664
-
2665
- ### Patch Changes
2666
-
2667
- - [#327](https://github.com/cube-js/cube-ui-kit/pull/327) [`ab9564d`](https://github.com/cube-js/cube-ui-kit/commit/ab9564d8e378df1d355746a4478aed797b7c3bc9) Thanks [@tenphi](https://github.com/tenphi)! - Add dark schema support for CloudLogo.
2668
-
2669
- ## 0.20.3
2670
-
2671
- ### Patch Changes
2672
-
2673
- - [#325](https://github.com/cube-js/cube-ui-kit/pull/325) [`01ca4c4`](https://github.com/cube-js/cube-ui-kit/commit/01ca4c48506cd5d17d18839c151db40753768d1a) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fix rerenders of window resize
2674
-
2675
- ## 0.20.2
2676
-
2677
- ### Patch Changes
2678
-
2679
- - [#323](https://github.com/cube-js/cube-ui-kit/pull/323) [`40b4401`](https://github.com/cube-js/cube-ui-kit/commit/40b4401472fbb074306c1cfd168eeaf40afa9370) Thanks [@tenphi](https://github.com/tenphi)! - Fix aria-label passing in CopySnippet component
2680
-
2681
- ## 0.20.1
2682
-
2683
- ### Patch Changes
2684
-
2685
- - [#321](https://github.com/cube-js/cube-ui-kit/pull/321) [`c8784ab`](https://github.com/cube-js/cube-ui-kit/commit/c8784ab98e5b1816d6bdc3f861d22044af9f7f5e) Thanks [@tenphi](https://github.com/tenphi)! - Show the Clear Button in the SearchInput component even if the `suffix` prop provided.
2686
-
2687
- - [#321](https://github.com/cube-js/cube-ui-kit/pull/321) [`c8784ab`](https://github.com/cube-js/cube-ui-kit/commit/c8784ab98e5b1816d6bdc3f861d22044af9f7f5e) Thanks [@tenphi](https://github.com/tenphi)! - Add the `hideText` property to hide parts of `CodeSnippet` text.
2688
- Add the `actions` property and `CodeSnippet.Button` component to allow adding new actions to the `CodeSnippet` compoonent.
2689
-
2690
- ## 0.20.0
2691
-
2692
- ### Minor Changes
2693
-
2694
- - [#317](https://github.com/cube-js/cube-ui-kit/pull/317) [`5487b12`](https://github.com/cube-js/cube-ui-kit/commit/5487b12ddcca823a5efc5954244720e1687bc1bf) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CUK-5](https://cubedevinc.atlassian.net/browse/CC-1485) Migrate all form components on new `useFieldProps` hook
2695
-
2696
- ### Patch Changes
2697
-
2698
- - [#319](https://github.com/cube-js/cube-ui-kit/pull/319) [`a53cedf`](https://github.com/cube-js/cube-ui-kit/commit/a53cedf8ffdc283bc0d280a82689835f210c6c4d) Thanks [@tenphi](https://github.com/tenphi)! - Show the Clear Button in the SearchInput component even if the `suffix` prop provided.
2699
-
2700
- - [#318](https://github.com/cube-js/cube-ui-kit/pull/318) [`e3afdbe`](https://github.com/cube-js/cube-ui-kit/commit/e3afdbe2e872db4f03160ff4d25d28bdeaaf8900) Thanks [@tenphi](https://github.com/tenphi)! - Draw range connection link for RangeSlider component.
2701
-
2702
- ## 0.19.0
2703
-
2704
- ### Minor Changes
2705
-
2706
- - [#267](https://github.com/cube-js/cube-ui-kit/pull/267) [`86a2f11`](https://github.com/cube-js/cube-ui-kit/commit/86a2f118e09e0a37cdfe3ea2dd7a27ac780138f3) Thanks [@tenphi](https://github.com/tenphi)! - Change letter spacing in typography presets. Remove `h5s`, `h5m`, `t3s` and `t4m` presets for good.
2707
-
2708
- ### Patch Changes
2709
-
2710
- - [#314](https://github.com/cube-js/cube-ui-kit/pull/314) [`c59fa27`](https://github.com/cube-js/cube-ui-kit/commit/c59fa27911dfbbb058842dc2f3ba2a2af8e0f97b) Thanks [@tenphi](https://github.com/tenphi)! - Fix danger primary text color for Button.
2711
-
2712
- - [#316](https://github.com/cube-js/cube-ui-kit/pull/316) [`c09a431`](https://github.com/cube-js/cube-ui-kit/commit/c09a4317a0330558c74b59fedec0dd8a06b1af5c) Thanks [@tenphi](https://github.com/tenphi)! - Add the small size to the Switch component.
2713
-
2714
- ## 0.18.2
2715
-
2716
- ### Patch Changes
2717
-
2718
- - [#311](https://github.com/cube-js/cube-ui-kit/pull/311) [`3cf56c8`](https://github.com/cube-js/cube-ui-kit/commit/3cf56c86584cf4435f5d98304791055d4edda9c1) Thanks [@tenphi](https://github.com/tenphi)! - Limit the size of the Field items to avoid overflow in the real layouts.
2719
-
2720
- ## 0.18.1
2721
-
2722
- ### Patch Changes
2723
-
2724
- - [#308](https://github.com/cube-js/cube-ui-kit/pull/308) [`d044698`](https://github.com/cube-js/cube-ui-kit/commit/d044698a9b8d303b409fad9df4c0493458c38e7d) Thanks [@tenphi](https://github.com/tenphi)! - Fix TrackingProvider api to pass element instead of ref.
2725
-
2726
- ## 0.18.0
2727
-
2728
- ### Minor Changes
2729
-
2730
- - [#305](https://github.com/cube-js/cube-ui-kit/pull/305) [`89c18da`](https://github.com/cube-js/cube-ui-kit/commit/89c18da9c457e5ed4d19a94d73e40f71ceb4bf20) Thanks [@tenphi](https://github.com/tenphi)! - Remove legacy `styled` and `StyleProvider`. Add `TrackingProvider` for analytics purposes.
2731
-
2732
- ### Patch Changes
2733
-
2734
- - [#304](https://github.com/cube-js/cube-ui-kit/pull/304) [`c663fd1`](https://github.com/cube-js/cube-ui-kit/commit/c663fd1c0e0d8cd1e53f94f9ee2a4a2c02b0cf36) Thanks [@dangreen](https://github.com/dangreen)! - upgrade production dependencies
2735
-
2736
- ## 0.17.0
2737
-
2738
- ### Minor Changes
2739
-
2740
- - [#300](https://github.com/cube-js/cube-ui-kit/pull/300) [`c631c5b`](https://github.com/cube-js/cube-ui-kit/commit/c631c5b5070739fa592c22a84dd90758d2cb175c) Thanks [@tenphi](https://github.com/tenphi)! - Variants API, camelCase support for mods, nested mods support.
2741
-
2742
- ### Patch Changes
2743
-
2744
- - [#296](https://github.com/cube-js/cube-ui-kit/pull/296) [`3e23428`](https://github.com/cube-js/cube-ui-kit/commit/3e234289aa707ea8dcaac28e08a938cd71e26005) Thanks [@dangreen](https://github.com/dangreen)! - @react-stately/selection added as a direct dependency
2745
-
2746
- ## 0.16.4
2747
-
2748
- ### Patch Changes
2749
-
2750
- - [#297](https://github.com/cube-js/cube-ui-kit/pull/297) [`67eafd9`](https://github.com/cube-js/cube-ui-kit/commit/67eafd918d50d847d9c789dec9453b7face78b19) Thanks [@tenphi](https://github.com/tenphi)! - Merge passed `mods` with the default one for all components instead of replacing it.
2751
-
2752
- - [#294](https://github.com/cube-js/cube-ui-kit/pull/294) [`e22815b`](https://github.com/cube-js/cube-ui-kit/commit/e22815b3623f115309ce526cfa67a60bc3e7e3bd) Thanks [@tenphi](https://github.com/tenphi)! - Fix bug when null `value` prop is passing to SearchInput component but the value remains the same.
2753
-
2754
- ## 0.16.3
2755
-
2756
- ### Patch Changes
2757
-
2758
- - [#292](https://github.com/cube-js/cube-ui-kit/pull/292) [`842836f`](https://github.com/cube-js/cube-ui-kit/commit/842836faf77af9e966235bed6e731527f02d5436) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Added new prop in `<DialogTrigger />` - `shouldCloseOnInteractOutside`, which gives you a chance to filter out interaction with elements that should not dismiss the overlay.
2759
-
2760
- ## 0.16.2
2761
-
2762
- ### Patch Changes
2763
-
2764
- - [#290](https://github.com/cube-js/cube-ui-kit/pull/290) [`79adb32`](https://github.com/cube-js/cube-ui-kit/commit/79adb32ae90b6e65bdd1815c2eb5b679cb9abcc2) Thanks [@tenphi](https://github.com/tenphi)! - Add an `inputStyles` prop to the `CheckboxGroup` component to customize styles of a checkbox group itself.
2765
- Improve Tasty caching.
2766
-
2767
- ## 0.16.1
2768
-
2769
- ### Patch Changes
2770
-
2771
- - [#274](https://github.com/cube-js/cube-ui-kit/pull/274) [`43b7913`](https://github.com/cube-js/cube-ui-kit/commit/43b791387f1797d3a9ec7622a63d60e8248bb3d0) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - added ability to specify the way how we'd like to hide a dialog: by unmounting or by hiding in css
2772
-
2773
- ## 0.16.0
2774
-
2775
- ### Minor Changes
2776
-
2777
- - [#287](https://github.com/cube-js/cube-ui-kit/pull/287) [`15d83f0`](https://github.com/cube-js/cube-ui-kit/commit/15d83f0394deddaa1e2226582bde627d5943726e) Thanks [@tenphi](https://github.com/tenphi)! - Change RangeSlider API to accept only array with two numbers as a value.
2778
-
2779
- ## 0.15.0
2780
-
2781
- ### Minor Changes
2782
-
2783
- - [#285](https://github.com/cube-js/cube-ui-kit/pull/285) [`01a08ac`](https://github.com/cube-js/cube-ui-kit/commit/01a08acdd83678a2072200847ccafb7da028c0db) Thanks [@tenphi](https://github.com/tenphi)! - Full rework of Slider component. Split it into two separate components: Slider and RangeSlider. Add `gradation` property. Fix styling and accessibility issues.
2784
-
2785
- ## 0.14.16
2786
-
2787
- ### Patch Changes
2788
-
2789
- - [#283](https://github.com/cube-js/cube-ui-kit/pull/283) [`f07722e`](https://github.com/cube-js/cube-ui-kit/commit/f07722e11a3b61edf16a7ec67d23ba39abccee4f) Thanks [@tenphi](https://github.com/tenphi)! - Fix label positioning for side layout in Form.
2790
- Fix RangeSlider's usage inside forms with `labelPosition="side"`.
2791
-
2792
- ## 0.14.15
2793
-
2794
- ### Patch Changes
2795
-
2796
- - [#281](https://github.com/cube-js/cube-ui-kit/pull/281) [`a30cf7d`](https://github.com/cube-js/cube-ui-kit/commit/a30cf7d8966a52a5a5c90af4875de6bd9eae1a00) Thanks [@tenphi](https://github.com/tenphi)! - Checkbox now has an abilility to have both a label and a text value inside forms.
2797
-
2798
- ## 0.14.14
2799
-
2800
- ### Patch Changes
2801
-
2802
- - [#279](https://github.com/cube-js/cube-ui-kit/pull/279) [`14120c8`](https://github.com/cube-js/cube-ui-kit/commit/14120c8d6e651db1d79c22214952d7aa9befdc41) Thanks [@tenphi](https://github.com/tenphi)! - The `border` style now explicitly sets zero-width border for all border that are not mentioned by modifiers. So that it always overrides default values.
2803
-
2804
- ## 0.14.13
2805
-
2806
- ### Patch Changes
2807
-
2808
- - [#277](https://github.com/cube-js/cube-ui-kit/pull/277) [`86061ce`](https://github.com/cube-js/cube-ui-kit/commit/86061cea6aa42c852d46013ad168b1eda9f72345) Thanks [@tenphi](https://github.com/tenphi)! - Fix NumberInput default width
2809
-
2810
- - [#277](https://github.com/cube-js/cube-ui-kit/pull/277) [`86061ce`](https://github.com/cube-js/cube-ui-kit/commit/86061cea6aa42c852d46013ad168b1eda9f72345) Thanks [@tenphi](https://github.com/tenphi)! - The `border` style now explicitly sets zero-width border for all border that are not mentioned by modifiers. So that it always overrides default values.
2811
-
2812
- ## 0.14.12
2813
-
2814
- ### Patch Changes
2815
-
2816
- - [#271](https://github.com/cube-js/cube-ui-kit/pull/271) [`90cc2f8`](https://github.com/cube-js/cube-ui-kit/commit/90cc2f876233c3341206536b7f27f78b831e4e92) Thanks [@tenphi](https://github.com/tenphi)! - Add new `special` theme for `Button` and `Select` components.
2817
- Allow single input layout for `RangeSlider` component.
2818
- Add `ellipsis` property to `Select` component to allow text overflow of selected value.
2819
-
2820
- ## 0.14.11
2821
-
2822
- ### Patch Changes
2823
-
2824
- - [#269](https://github.com/cube-js/cube-ui-kit/pull/269) [`a339fa6`](https://github.com/cube-js/cube-ui-kit/commit/a339fa634c7e68b7e59fa6d5483c5b787d722293) Thanks [@tenphi](https://github.com/tenphi)! - Add support for `icon-size` property in preset style.
2825
-
2826
- - [#273](https://github.com/cube-js/cube-ui-kit/pull/273) [`32d062a`](https://github.com/cube-js/cube-ui-kit/commit/32d062a84d2410259911323b90bda998bdbe1bb8) Thanks [@tenphi](https://github.com/tenphi)! - Add optional ellipsis support for the `Title` component. Make it consistent with the `Text` component.
2827
-
2828
- ## 0.14.10
2829
-
2830
- ### Patch Changes
2831
-
2832
- - [#265](https://github.com/cube-js/cube-ui-kit/pull/265) [`e96fc55`](https://github.com/cube-js/cube-ui-kit/commit/e96fc55c16d2061039b403905cc7bc26b9419988) Thanks [@tenphi](https://github.com/tenphi)! - Increase the specificity of generated styles.
2833
-
2834
- - [#266](https://github.com/cube-js/cube-ui-kit/pull/266) [`abb4db7`](https://github.com/cube-js/cube-ui-kit/commit/abb4db7fd26dca35609a489548d1d0c9bfb04c97) Thanks [@tenphi](https://github.com/tenphi)! - Change preset style of the Select component and its options to `t3` to match TextInput.
2835
-
2836
- ## 0.14.9
2837
-
2838
- ### Patch Changes
2839
-
2840
- - [#263](https://github.com/cube-js/cube-ui-kit/pull/263) [`1a57278`](https://github.com/cube-js/cube-ui-kit/commit/1a5727834ade61ba2b837f409d5bce789b117ea3) Thanks [@tenphi](https://github.com/tenphi)! - Apply the correct preset style to all action components.
2841
-
2842
- ## 0.14.8
2843
-
2844
- ### Patch Changes
2845
-
2846
- - [#260](https://github.com/cube-js/cube-ui-kit/pull/260) [`deee752`](https://github.com/cube-js/cube-ui-kit/commit/deee7526cba3a3f6925a5f3a2a15cbf8be148c8f) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Added new color token: "Warning"
2847
-
2848
- ## 0.14.7
2849
-
2850
- ### Patch Changes
2851
-
2852
- - [#257](https://github.com/cube-js/cube-ui-kit/pull/257) [`cd3d251`](https://github.com/cube-js/cube-ui-kit/commit/cd3d2512c21b9a3e064edcd09825b1ca37e8645e) Thanks [@tenphi](https://github.com/tenphi)! - Fix font presets on action elements.
2853
-
2854
- ## 0.14.6
2855
-
2856
- ### Patch Changes
2857
-
2858
- - [#255](https://github.com/cube-js/cube-ui-kit/pull/255) [`30d52f9`](https://github.com/cube-js/cube-ui-kit/commit/30d52f97fde22374df285b00f1febec93b842ed6) Thanks [@tenphi](https://github.com/tenphi)! - Reduce the distance between radio buttons inside Radio.Group
2859
-
2860
- ## 0.14.5
2861
-
2862
- ### Patch Changes
2863
-
2864
- - [#253](https://github.com/cube-js/cube-ui-kit/pull/253) [`4aba492`](https://github.com/cube-js/cube-ui-kit/commit/4aba49270a26808e4fa2173ed192571253606cf1) Thanks [@tenphi](https://github.com/tenphi)! - Fix styles for disabled option in Select & ComboBox components.
2865
-
2866
- - [#252](https://github.com/cube-js/cube-ui-kit/pull/252) [`fe6526d`](https://github.com/cube-js/cube-ui-kit/commit/fe6526d3cec03a1ab40cc240339e6e6eadf75f3d) Thanks [@tenphi](https://github.com/tenphi)! - SubmitError is removed when any value in the form is changed.
2867
-
2868
- ## 0.14.4
2869
-
2870
- ### Patch Changes
2871
-
2872
- - [#249](https://github.com/cube-js/cube-ui-kit/pull/249) [`da3bfe8`](https://github.com/cube-js/cube-ui-kit/commit/da3bfe8a07761efadef5ff9c2cfe8185c302eccb) Thanks [@tenphi](https://github.com/tenphi)! - Fixes wrapper prop support on Menu Item.
2873
- Fixes styles of Tooltip's Tip to better match the geometry of a tooltip.
2874
-
2875
- - [#247](https://github.com/cube-js/cube-ui-kit/pull/247) [`c001216`](https://github.com/cube-js/cube-ui-kit/commit/c001216dd674b3a3e3cc66961a26c34667b1e903) Thanks [@tenphi](https://github.com/tenphi)! - Improve performance of style caching for raw tasty components.
2876
-
2877
- ## 0.14.3
2878
-
2879
- ### Patch Changes
2880
-
2881
- - [#245](https://github.com/cube-js/cube-ui-kit/pull/245) [`bd9d88f`](https://github.com/cube-js/cube-ui-kit/commit/bd9d88f0b52ba3e1ed09aa0208a3cb5ea14fb303) Thanks [@tenphi](https://github.com/tenphi)! - Fix incorrect custom property binding in Menu component.
2882
-
2883
- - [#243](https://github.com/cube-js/cube-ui-kit/pull/243) [`27b8198`](https://github.com/cube-js/cube-ui-kit/commit/27b8198db2c9a549b537a857964dca9fd590e82a) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CC-1616](https://cubedevinc.atlassian.net/browse/CC-1635) Recalculate position of a drodown on filter change
2884
-
2885
- ## 0.14.2
2886
-
2887
- ### Patch Changes
2888
-
2889
- - [#240](https://github.com/cube-js/cube-ui-kit/pull/240) [`d2369ba`](https://github.com/cube-js/cube-ui-kit/commit/d2369baae76de2abecfc865a91e2cac8d06d4d05) Thanks [@tenphi](https://github.com/tenphi)! - Add text security support in the TextArea component for Firefox
2890
-
2891
- ## 0.14.1
2892
-
2893
- ### Patch Changes
2894
-
2895
- - [#239](https://github.com/cube-js/cube-ui-kit/pull/239) [`8a31e19`](https://github.com/cube-js/cube-ui-kit/commit/8a31e1970eaed1a4afd77360b8d9e2ed85934be6) Thanks [@tenphi](https://github.com/tenphi)! - Fix `inherit` token values, so they mean what is meant.
2896
-
2897
- - [#237](https://github.com/cube-js/cube-ui-kit/pull/237) [`c079e38`](https://github.com/cube-js/cube-ui-kit/commit/c079e38fa9cac4e89554ae7d440f175106d4286c) Thanks [@tenphi](https://github.com/tenphi)! - Add ellipsis for long filenames in FileInput and prevent wrapping.
2898
-
2899
- - [#233](https://github.com/cube-js/cube-ui-kit/pull/233) [`4578e97`](https://github.com/cube-js/cube-ui-kit/commit/4578e97b3ec5790b88850b5310b67a8fa983411e) Thanks [@tenphi](https://github.com/tenphi)! - [BUMP] Upgrade tiny-invariant from 1.2.0 to 1.3.1
2900
-
2901
- ## 0.14.0
2902
-
2903
- ### Minor Changes
2904
-
2905
- - [#212](https://github.com/cube-js/cube-ui-kit/pull/212) [`66cece1`](https://github.com/cube-js/cube-ui-kit/commit/66cece1f6156a87f8fe16bc35a04dec54c2c2761) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Bump react-aria and react-stately to their latest versions
2906
-
2907
- ### Patch Changes
2908
-
2909
- - [#230](https://github.com/cube-js/cube-ui-kit/pull/230) [`9578486`](https://github.com/cube-js/cube-ui-kit/commit/9578486f497e207bce25da4cffc84307bfb91a13) Thanks [@tenphi](https://github.com/tenphi)! - The Form component set `submitError` no more on failed validation.
2910
- `SubmitError` component now handles non-valid errors as `Internal error`.
2911
-
2912
- ## 0.13.6
2913
-
2914
- ### Patch Changes
2915
-
2916
- - [#227](https://github.com/cube-js/cube-ui-kit/pull/227) [`19c1adf`](https://github.com/cube-js/cube-ui-kit/commit/19c1adf7b5142dca8bb81def3be1e90e378b3199) Thanks [@tenphi](https://github.com/tenphi)! - Add `SubmitError` component to display error that throws onSubmit callback.
2917
- Allow to manually visualize a submit error.
2918
-
2919
- ## 0.13.5
2920
-
2921
- ### Patch Changes
2922
-
2923
- - [#224](https://github.com/cube-js/cube-ui-kit/pull/224) [`6f58989`](https://github.com/cube-js/cube-ui-kit/commit/6f58989b15fb24c0d105d3c24f909f356b925e55) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CC-1327](https://cubedevinc.atlassian.net/browse/CC-1327): Fixed bug when `onDismiss` doesn't trigger on `ESC` press within `AlertDialog`
2924
-
2925
- - [#221](https://github.com/cube-js/cube-ui-kit/pull/221) [`2721552`](https://github.com/cube-js/cube-ui-kit/commit/2721552429f06e89d05c865c391f629f81da8763) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Add `RangeSlider` component
2926
-
2927
- ```jsx
2928
- <RangeSlider defaultValue={[10, 40]} minValue={0} maxValue={100} step={2} />
2929
- ```
2930
-
2931
- - [#226](https://github.com/cube-js/cube-ui-kit/pull/226) [`7d9b2d0`](https://github.com/cube-js/cube-ui-kit/commit/7d9b2d0c814371c8e0805fdde3b63f7c7c8a128f) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CC-1364](https://cubedevinc.atlassian.net/browse/CC-1364) - fixed bug when useNotificationObserver calls callback with already removed notification
2932
-
2933
- ## 0.13.4
2934
-
2935
- ### Patch Changes
2936
-
2937
- - [#222](https://github.com/cube-js/cube-ui-kit/pull/222) [`b3057c9`](https://github.com/cube-js/cube-ui-kit/commit/b3057c953c5947ed21c327acaca0dca67163f9e8) Thanks [@tenphi](https://github.com/tenphi)! - Fix for the small size of the NumberInput.
2938
-
2939
- ## 0.13.3
2940
-
2941
- ### Patch Changes
2942
-
2943
- - [#219](https://github.com/cube-js/cube-ui-kit/pull/219) [`d178c72`](https://github.com/cube-js/cube-ui-kit/commit/d178c72abf4d890c9bfbc644961a6aa5bfb2a143) Thanks [@tenphi](https://github.com/tenphi)! - Fix overlapping of LegacyTabs' fades with dialogs.
2944
-
2945
- ## 0.13.2
2946
-
2947
- ### Patch Changes
2948
-
2949
- - [#218](https://github.com/cube-js/cube-ui-kit/pull/218) [`121e4a0`](https://github.com/cube-js/cube-ui-kit/commit/121e4a0ebdf4ed64720cbc89ce61be8eb2fd3f8d) Thanks [@tenphi](https://github.com/tenphi)! - Set default bold font weight to 700.
2950
-
2951
- - [#217](https://github.com/cube-js/cube-ui-kit/pull/217) [`91092dd`](https://github.com/cube-js/cube-ui-kit/commit/91092dd81c80ab25242cd558214033dcdb7629d3) Thanks [@tenphi](https://github.com/tenphi)! - Fix the bug that didn't allow to type into a ComboBox to the initial value inside a Form.
2952
-
2953
- - [#215](https://github.com/cube-js/cube-ui-kit/pull/215) [`f5b707e`](https://github.com/cube-js/cube-ui-kit/commit/f5b707ebf3b26b9b8f37b5032b0417afb2c0f801) Thanks [@tenphi](https://github.com/tenphi)! - Fix SSR support
2954
-
2955
- ## 0.13.1
2956
-
2957
- ### Patch Changes
2958
-
2959
- - [#213](https://github.com/cube-js/cube-ui-kit/pull/213) [`04852be`](https://github.com/cube-js/cube-ui-kit/commit/04852be0b17cb2d7ecab80c530128ec957e5cf3e) Thanks [@tenphi](https://github.com/tenphi)! - Fix that allows notifications to be dismissed correctly when they are off the display limit.
2960
-
2961
- ## 0.13.0
2962
-
2963
- ### Minor Changes
2964
-
2965
- - [#207](https://github.com/cube-js/cube-ui-kit/pull/207) [`fa16cd6`](https://github.com/cube-js/cube-ui-kit/commit/fa16cd6f74190b238583312aec6343a9258bb9b4) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Redesigned close button in `<Notification />` component.
2966
-
2967
- Added ability to dismiss a notification in `<NotificationList />` component.
2968
-
2969
- ```typescript jsx
2970
- import { NotificationsList } from '@cube-dev/ui-kit';
2971
-
2972
- <NotificationList onDismiss={() => console.log('dismissed')}>
2973
- <NotificationsList.Item
2974
- header="Notification title"
2975
- description="Notification description"
2976
- />
2977
- </NotificationList>;
2978
- ```
2979
-
2980
- Now notifications generates more uniq ids by default.
2981
-
2982
- ### Patch Changes
2983
-
2984
- - [#206](https://github.com/cube-js/cube-ui-kit/pull/206) [`11f14c3`](https://github.com/cube-js/cube-ui-kit/commit/11f14c3b8c65c39a91dd6dac6d094a7bd9bfe549) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Added support of keyboard navigation inside Menu component
2985
-
2986
- - [#211](https://github.com/cube-js/cube-ui-kit/pull/211) [`e74374d`](https://github.com/cube-js/cube-ui-kit/commit/e74374d2e9b9bd8b52a0e80ef561815f08d185c3) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Do not render more than 5 notificaitons at the same time
2987
-
2988
- ## 0.12.7
2989
-
2990
- ### Patch Changes
2991
-
2992
- - [#203](https://github.com/cube-js/cube-ui-kit/pull/203) [`f50b93a`](https://github.com/cube-js/cube-ui-kit/commit/f50b93aa6651f2feca7762345a3c4d54fe3d8ae4) Thanks [@tenphi](https://github.com/tenphi)! - On form submission the `isSubmitting` flag now set to true before the start of the validation.
2993
-
2994
- - [#202](https://github.com/cube-js/cube-ui-kit/pull/202) [`8e6767a`](https://github.com/cube-js/cube-ui-kit/commit/8e6767acc57670e0b7c3e47bcb4f0090cbb1e322) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Improve typings of `onSubmit` and `onValuesChange` callbacks in `<Form />` component. Now they properly match with `FormInstance` and `useForm`.
2995
-
2996
- ## 0.12.6
2997
-
2998
- ### Patch Changes
2999
-
3000
- - [#200](https://github.com/cube-js/cube-ui-kit/pull/200) [`6b7448a`](https://github.com/cube-js/cube-ui-kit/commit/6b7448a65e8112df2c0b079dbfaae9802922d065) Thanks [@tenphi](https://github.com/tenphi)! - Form is no longer validated on field removal (bugfix)
3001
-
3002
- - [#200](https://github.com/cube-js/cube-ui-kit/pull/200) [`6b7448a`](https://github.com/cube-js/cube-ui-kit/commit/6b7448a65e8112df2c0b079dbfaae9802922d065) Thanks [@tenphi](https://github.com/tenphi)! - Validation rules in Form now allows to return complex markup in error messages.
3003
-
3004
- ## 0.12.5
3005
-
3006
- ### Patch Changes
3007
-
3008
- - [#198](https://github.com/cube-js/cube-ui-kit/pull/198) [`dec5c65`](https://github.com/cube-js/cube-ui-kit/commit/dec5c65a121a06391d0757b7aee1a43cd17342c6) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed input width in `<Combobox />` and `<Select />` components
3009
-
3010
- ## 0.12.4
3011
-
3012
- ### Patch Changes
3013
-
3014
- - [#181](https://github.com/cube-js/cube-ui-kit/pull/181) [`1f6220e`](https://github.com/cube-js/cube-ui-kit/commit/1f6220eeb7fc9c28f83f02eb113e92b8542fec89) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Improve display names across all components
3015
-
3016
- - [#195](https://github.com/cube-js/cube-ui-kit/pull/195) [`ee8ab23`](https://github.com/cube-js/cube-ui-kit/commit/ee8ab238ac9d0ca6ed2b35c816cbf155c6eefcf8) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Reduced gap between `label` and `labelSuffix` in `<Field />`
3017
-
3018
- ## 0.12.3
3019
-
3020
- ### Patch Changes
3021
-
3022
- - [#182](https://github.com/cube-js/cube-ui-kit/pull/182) [`6db0491`](https://github.com/cube-js/cube-ui-kit/commit/6db04916412cbf0150b0cc730451fd7c595571a5) Thanks [@tenphi](https://github.com/tenphi)! - Add `icon` property to Input components. You should use it instead `prefix` property to ensure your icon will have correct paddings.
3023
- Styles of Input components have been rewritten to improve consistency and maintenance.
3024
-
3025
- - [#193](https://github.com/cube-js/cube-ui-kit/pull/193) [`5c3ed68`](https://github.com/cube-js/cube-ui-kit/commit/5c3ed682a967d6bcaa26765b2c839b1d04a0f182) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed alignment between label and suffix in Field component
3026
-
3027
- - [#177](https://github.com/cube-js/cube-ui-kit/pull/177) [`16a213a`](https://github.com/cube-js/cube-ui-kit/commit/16a213a616c4e5d328e344797323abdf910e7a53) Thanks [@tenphi](https://github.com/tenphi)! - ComboBox now respects `onSelectionChange` event while working inside a form.
3028
-
3029
- - [#185](https://github.com/cube-js/cube-ui-kit/pull/185) [`7a7b861`](https://github.com/cube-js/cube-ui-kit/commit/7a7b861ff2f0f50c751b0b73e4da3b4a682379c3) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed types in `onSubmit` and `onValuesChange` types in `Form`
3030
-
3031
- ## 0.12.2
3032
-
3033
- ### Patch Changes
3034
-
3035
- - [`dcc4edc`](https://github.com/cube-js/cube-ui-kit/commit/dcc4edc3ef560d25062277b5e4f2fcee7afe4168) - Pass `labelSuffix` to all form components
3036
-
3037
- ## 0.12.1
3038
-
3039
- ### Patch Changes
3040
-
3041
- - [#178](https://github.com/cube-js/cube-ui-kit/pull/178) [`932d401`](https://github.com/cube-js/cube-ui-kit/commit/932d401f5100b92b7635f51054049e6176d672ff) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed bug in button when `isLoading` prop didn't affect on mods
3042
-
3043
- ## 0.12.0
3044
-
3045
- ### Minor Changes
3046
-
3047
- - [#174](https://github.com/cube-js/cube-ui-kit/pull/174) [`76a9f37`](https://github.com/cube-js/cube-ui-kit/commit/76a9f373253dea98e2099ee2a39199064da7a3d6) Thanks [@tenphi](https://github.com/tenphi)! - Rename `default` size to `medium` and `default` type to `secondary` in the Button component.
3048
- Add `rightIcon` property to the Button component.
3049
-
3050
- - [#175](https://github.com/cube-js/cube-ui-kit/pull/175) [`34b680e`](https://github.com/cube-js/cube-ui-kit/commit/34b680eae60a4fbf9d310a048a8bb53d41cbf1ce) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Added new prop `labelSuffix` in Field component. Using this prop you can add any adornment after the label.
3051
-
3052
- - [#176](https://github.com/cube-js/cube-ui-kit/pull/176) [`4239ef6`](https://github.com/cube-js/cube-ui-kit/commit/4239ef6889956523409c9ff67696331e5ba2229c) Thanks [@tenphi](https://github.com/tenphi)! - Add a loading modifier and `placeholder` property to Select and ComboBox components.
3053
-
3054
- ### Patch Changes
3055
-
3056
- - [#163](https://github.com/cube-js/cube-ui-kit/pull/163) [`644812c`](https://github.com/cube-js/cube-ui-kit/commit/644812cef1c6ca8f9e16d614641603a45e23a42b) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Now all icon only buttons have proper sizes
3057
-
3058
- - [#175](https://github.com/cube-js/cube-ui-kit/pull/175) [`34b680e`](https://github.com/cube-js/cube-ui-kit/commit/34b680eae60a4fbf9d310a048a8bb53d41cbf1ce) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Reduced default delay in tooltip to 250ms
3059
-
3060
- - [#169](https://github.com/cube-js/cube-ui-kit/pull/169) [`fe67fcc`](https://github.com/cube-js/cube-ui-kit/commit/fe67fcc96499505dfa31a581eaff9385d06aab6d) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Add `disableRemoveOnUnmount` prop in `<Notificaiton />` and `<Toast />` components
3061
-
3062
- - [#171](https://github.com/cube-js/cube-ui-kit/pull/171) [`3f99948`](https://github.com/cube-js/cube-ui-kit/commit/3f999483bc1cf54f73cd9099f3226e00041eafde) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Adds customization form Menu.Item.
3063
- Now you can pass props like `icon` even if any react element inside `Menu.Item`
3064
-
3065
- - [#166](https://github.com/cube-js/cube-ui-kit/pull/166) [`c9226c6`](https://github.com/cube-js/cube-ui-kit/commit/c9226c68e73f7343c69c27972253ae1e9ac7a532) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Bugfixes in `<Notification />` and `<Toast />` components:
3066
-
3067
- - Fixed width of notifications in bar
3068
- - Nofifications and toasts now respects duration property
3069
- - Fixed bug when user were unable to select a text inside a description
3070
-
3071
- - [#162](https://github.com/cube-js/cube-ui-kit/pull/162) [`328b664`](https://github.com/cube-js/cube-ui-kit/commit/328b664faff7894f91d34cbaac6e9abaad564a44) Thanks [@tenphi](https://github.com/tenphi)! - Fix font family fallback for `preset` style.
3072
-
3073
- - [#173](https://github.com/cube-js/cube-ui-kit/pull/173) [`34fdefb`](https://github.com/cube-js/cube-ui-kit/commit/34fdefba170c32f091df52ac895bc08f439655a2) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Fixes `childrenchildrenchildren` bug when use `TooltipProvider` component
3074
-
3075
- - [#165](https://github.com/cube-js/cube-ui-kit/pull/165) [`6c53550`](https://github.com/cube-js/cube-ui-kit/commit/6c535506e649c42033d3c0508c5844e8987188b5) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Fixed bug when menu doesn't open within a modal
3076
-
3077
- - [#167](https://github.com/cube-js/cube-ui-kit/pull/167) [`89899c2`](https://github.com/cube-js/cube-ui-kit/commit/89899c220e1cf1b00395f610a17b5bbc0fbaa307) Thanks [@tenphi](https://github.com/tenphi)! - fix(Switch): thumb disabled styles
3078
-
3079
- ## 0.11.2
3080
-
3081
- ### Patch Changes
3082
-
3083
- - [#161](https://github.com/cube-js/cube-ui-kit/pull/161) [`f5976df`](https://github.com/cube-js/cube-ui-kit/commit/f5976df3e318006ce62b325393f2f86aa9dce9e1) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed description preset in notificaiton
3084
-
3085
- - [#156](https://github.com/cube-js/cube-ui-kit/pull/156) [`f0ac89a`](https://github.com/cube-js/cube-ui-kit/commit/f0ac89aff31626f9aea61cf99dfd397e5ccb7d1a) Thanks [@nikolaykost](https://github.com/nikolaykost)! - pass `isLoading` and `isDisabled` from `Form.Item` to childs
3086
-
3087
- ```jsx
3088
- <Form.Item isLoading isDisabled>
3089
- <Input />
3090
- </Form.Item>
3091
- ```
3092
-
3093
- ## 0.11.1
3094
-
3095
- ### Patch Changes
3096
-
3097
- - [#158](https://github.com/cube-js/cube-ui-kit/pull/158) [`e03992b`](https://github.com/cube-js/cube-ui-kit/commit/e03992bcbd79e2ebcfd187b1d9478ac1a4e3c18e) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed bug when notifications displays below the legacy `<Modal />` component
3098
-
3099
- ## 0.11.0
3100
-
3101
- ### Minor Changes
3102
-
3103
- - [#154](https://github.com/cube-js/cube-ui-kit/pull/154) [`1555c0d`](https://github.com/cube-js/cube-ui-kit/commit/1555c0d454939cebb7dc547d8290165450a7ce5d) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CUK-65](https://cubedevinc.atlassian.net/browse/CUK-65) - Notification component
3104
-
3105
- ### Patch Changes
3106
-
3107
- - [#154](https://github.com/cube-js/cube-ui-kit/pull/154) [`1555c0d`](https://github.com/cube-js/cube-ui-kit/commit/1555c0d454939cebb7dc547d8290165450a7ce5d) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Toast Component
3108
-
3109
- ## 0.10.13
3110
-
3111
- ### Patch Changes
3112
-
3113
- - [#151](https://github.com/cube-js/cube-ui-kit/pull/151) [`e3eaeba`](https://github.com/cube-js/cube-ui-kit/commit/e3eaebac88a3826ad7b1bb542e72e25af563d367) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Adds prop `selectionType` for `Menu` component. That stands for values `checkbox` or `radio`.
3114
-
3115
- ```jsx
3116
- <Menu selectionType="checkbox" selectionMode="single">
3117
- <Item key="1">Item 1</Item>
3118
- <Item key="2">Item 2</Item>
3119
- </Menu>
3120
- ```
3121
-
3122
- - [#111](https://github.com/cube-js/cube-ui-kit/pull/111) [`f45b927`](https://github.com/cube-js/cube-ui-kit/commit/f45b927bb34dbc9bd0374a5d55c039bd37fa899e) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CC-677](https://cubedevinc.atlassian.net/browse/CC-677) significantly improved performance of the `Spin` component in all browsers.
3123
-
3124
- ## 0.10.12
3125
-
3126
- ### Patch Changes
3127
-
3128
- - [#149](https://github.com/cube-js/cube-ui-kit/pull/149) [`3ea195c`](https://github.com/cube-js/cube-ui-kit/commit/3ea195c713f880e7d4e45e19b72cc6f4a1b4d5b4) Thanks [@tenphi](https://github.com/tenphi)! - fix(Combobox): error on trigger
3129
-
3130
- ## 0.10.11
3131
-
3132
- ### Patch Changes
3133
-
3134
- - [#133](https://github.com/cube-js/cube-ui-kit/pull/133) [`943dbc6`](https://github.com/cube-js/cube-ui-kit/commit/943dbc69e7225c9f80c85cc887a1928a9b29b09f) Thanks [@tenphi](https://github.com/tenphi)! - fix(FileTabs): styles
3135
-
3136
- - [#146](https://github.com/cube-js/cube-ui-kit/pull/146) [`77a9c29`](https://github.com/cube-js/cube-ui-kit/commit/77a9c29b2fcefe1d49904b170c133dea530f33e7) Thanks [@tenphi](https://github.com/tenphi)! - fix(tasty): style merging while wrapping
3137
- feat(preset.style): add bold-font-weight token
3138
-
3139
- ## 0.10.10
3140
-
3141
- ### Patch Changes
3142
-
3143
- - [#140](https://github.com/cube-js/cube-ui-kit/pull/140) [`2b12419`](https://github.com/cube-js/cube-ui-kit/commit/2b12419446e001eb69d923ba0ec4523a87999452) Thanks [@tenphi](https://github.com/tenphi)! - fix(Space): items alignment
3144
-
3145
- ## 0.10.9
3146
-
3147
- ### Patch Changes
3148
-
3149
- - [#138](https://github.com/cube-js/cube-ui-kit/pull/138) [`e7861d3`](https://github.com/cube-js/cube-ui-kit/commit/e7861d33fd480439a9bbbab3a1a0659ec3af8422) Thanks [@tenphi](https://github.com/tenphi)! - Fix extractStyles() logic.
3150
- Fix label position inside a field.
3151
-
3152
- ## 0.10.8
3153
-
3154
- ### Patch Changes
3155
-
3156
- - [#131](https://github.com/cube-js/cube-ui-kit/pull/131) [`0f4e39a`](https://github.com/cube-js/cube-ui-kit/commit/0f4e39a98e469ee0ed0757d6fc76a2a0eb9591e1) Thanks [@tenphi](https://github.com/tenphi)! - fix(Field): pass labelStyles prop
3157
-
3158
- ## 0.10.7
3159
-
3160
- ### Patch Changes
3161
-
3162
- - [#129](https://github.com/cube-js/cube-ui-kit/pull/129) [`facd201`](https://github.com/cube-js/cube-ui-kit/commit/facd2013b2130aa44dcdc3e55540742df464c923) Thanks [@tenphi](https://github.com/tenphi)! - fix(Field): pass labelStyles prop
3163
-
3164
- ## 0.10.6
3165
-
3166
- ### Patch Changes
3167
-
3168
- - [#127](https://github.com/cube-js/cube-ui-kit/pull/127) [`3c875d6`](https://github.com/cube-js/cube-ui-kit/commit/3c875d60e4bc41be17e12926648c9dcfd2ca858c) Thanks [@tenphi](https://github.com/tenphi)! - fix(Field): pass labelPosition prop
3169
-
3170
- ## 0.10.5
3171
-
3172
- ### Patch Changes
3173
-
3174
- - [#125](https://github.com/cube-js/cube-ui-kit/pull/125) [`7c457f5`](https://github.com/cube-js/cube-ui-kit/commit/7c457f5cb85983f0ed3870d9b2f78b1bdfd81f9f) Thanks [@tenphi](https://github.com/tenphi)! - fix(Card): pass style props
3175
-
3176
- - [#124](https://github.com/cube-js/cube-ui-kit/pull/124) [`f4ed612`](https://github.com/cube-js/cube-ui-kit/commit/f4ed612289bff0526b61696e3d5c054a2cb578fc) Thanks [@tenphi](https://github.com/tenphi)! - fix(Space): condition for the vertical modifier
3177
-
3178
- ## 0.10.4
3179
-
3180
- ### Patch Changes
3181
-
3182
- - [#119](https://github.com/cube-js/cube-ui-kit/pull/119) [`bdccbf8`](https://github.com/cube-js/cube-ui-kit/commit/bdccbf8d0bd4762659185b9571efbdc1c1e97f09) Thanks [@tenphi](https://github.com/tenphi)! - Allow `tasty` to extend components with required properties.
3183
-
3184
- ## 0.10.3
3185
-
3186
- ### Patch Changes
3187
-
3188
- - [#120](https://github.com/cube-js/cube-ui-kit/pull/120) [`6aa6e26`](https://github.com/cube-js/cube-ui-kit/commit/6aa6e2645fc92bd8d7d6ed86f4e2ddff5fc7df62) Thanks [@tenphi](https://github.com/tenphi)! - Fix the display style default value in gap style generator.
3189
-
3190
- ## 0.10.2
3191
-
3192
- ### Patch Changes
3193
-
3194
- - [#116](https://github.com/cube-js/cube-ui-kit/pull/116) [`3967bd0`](https://github.com/cube-js/cube-ui-kit/commit/3967bd05c7a810ab4d83b71236b33f9382f00329) Thanks [@tenphi](https://github.com/tenphi)! - Pass `styles` prop to Field component.
3195
- Add stories for Field component.
3196
- Export `CubeRadioGroupProps` type.
3197
-
3198
- ## 0.10.1
3199
-
3200
- ### Patch Changes
3201
-
3202
- - [#113](https://github.com/cube-js/cube-ui-kit/pull/113) [`d6e2f46`](https://github.com/cube-js/cube-ui-kit/commit/d6e2f46c15aad30a102e070412e570fbc39ac725) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - Fixed transparent background of `<Select />` component
3203
-
3204
- - [#112](https://github.com/cube-js/cube-ui-kit/pull/112) [`7432820`](https://github.com/cube-js/cube-ui-kit/commit/743282055b923d841d9caab34361a4f4df2e987f) Thanks [@tenphi](https://github.com/tenphi)! - Stabilize Form behavior.
3205
- Fix Switch component styles.
3206
-
3207
- ## 0.10.0
3208
-
3209
- ### Minor Changes
3210
-
3211
- - [#84](https://github.com/cube-js/cube-ui-kit/pull/84) [`9af598c`](https://github.com/cube-js/cube-ui-kit/commit/9af598c08a0f1e2ea2a5e4a00118367428262e27) Thanks [@tenphi](https://github.com/tenphi)! - [CUK-72](https://cubedevinc.atlassian.net/jira/software/projects/CUK/boards/3?selectedIssue=CUK-72) Move all style engine logic into a single folder `tasty` and export new `tasty()` helper as `styled` replacement but with simplified and optimized API.
3212
-
3213
- - [#99](https://github.com/cube-js/cube-ui-kit/pull/99) [`8be45cd`](https://github.com/cube-js/cube-ui-kit/commit/8be45cddb565cc093b4d3b421de6984d5646a91b) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CC-484](https://cubedevinc.atlassian.net/browse/CC-484) This PR removes several organisms from ui-kit: TopBar, StatsCard, SearchResults, DirectoryTree.
3214
-
3215
- ### Patch Changes
3216
-
3217
- - [#110](https://github.com/cube-js/cube-ui-kit/pull/110) [`52fbee3`](https://github.com/cube-js/cube-ui-kit/commit/52fbee3bef49c96182ca735770db5dca1e7338f4) Thanks [@tenphi](https://github.com/tenphi)! - Update `Select` & `Combobox` selected option styles.
3218
-
3219
- - [#105](https://github.com/cube-js/cube-ui-kit/pull/105) [`8ce1f2d`](https://github.com/cube-js/cube-ui-kit/commit/8ce1f2dd84a0f4f1e11b7e0e65212ac73bdf3cd0) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CUK-33](https://cubedevinc.atlassian.net/browse/CUK-33) Now you can use the `<DialogForm />` component together with `<DialogTrigger />` 🎉
3220
-
3221
- ```tsx
3222
- <DialogTrigger>
3223
- <Button>Open dialog</Button>
3224
- <DialogForm>...</DialogForm>
3225
- </DialogTrigger>
3226
- ```
3227
-
3228
- - [#105](https://github.com/cube-js/cube-ui-kit/pull/105) [`8ce1f2d`](https://github.com/cube-js/cube-ui-kit/commit/8ce1f2dd84a0f4f1e11b7e0e65212ac73bdf3cd0) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CUK-33](https://cubedevinc.atlassian.net/browse/CUK-33) Removed unused `type` property in the `<DialogForm />`component
3229
-
3230
- - [#104](https://github.com/cube-js/cube-ui-kit/pull/104) [`cead470`](https://github.com/cube-js/cube-ui-kit/commit/cead4704c8fb03bfba70c8652fde7cd8c814bf9a) Thanks [@tenphi](https://github.com/tenphi)! - Deprecation of StyleProvider
3231
-
3232
- - [#104](https://github.com/cube-js/cube-ui-kit/pull/104) [`cead470`](https://github.com/cube-js/cube-ui-kit/commit/cead4704c8fb03bfba70c8652fde7cd8c814bf9a) Thanks [@tenphi](https://github.com/tenphi)! - Fix paddings and `size` prop typings in Dialog Component.
3233
-
3234
- - [#105](https://github.com/cube-js/cube-ui-kit/pull/105) [`8ce1f2d`](https://github.com/cube-js/cube-ui-kit/commit/8ce1f2dd84a0f4f1e11b7e0e65212ac73bdf3cd0) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - [CUK-33](https://cubedevinc.atlassian.net/browse/CUK-33) Added documentation for the `<DialogForm />` component
3235
-
3236
- - [#104](https://github.com/cube-js/cube-ui-kit/pull/104) [`cead470`](https://github.com/cube-js/cube-ui-kit/commit/cead4704c8fb03bfba70c8652fde7cd8c814bf9a) Thanks [@tenphi](https://github.com/tenphi)! - Fix neutral pressed fill style for Button component
3237
-
3238
- - [#109](https://github.com/cube-js/cube-ui-kit/pull/109) [`57a4cd3`](https://github.com/cube-js/cube-ui-kit/commit/57a4cd319eb8f7a9259772c289c218fce8a6e649) Thanks [@nikolaykost](https://github.com/nikolaykost)! - Rework design of `Menu` component with _sections_.
3239
- Now _sections_ more readable and has convenient design.
3240
-
3241
- - [#104](https://github.com/cube-js/cube-ui-kit/pull/104) [`cead470`](https://github.com/cube-js/cube-ui-kit/commit/cead4704c8fb03bfba70c8652fde7cd8c814bf9a) Thanks [@tenphi](https://github.com/tenphi)! - Support for `element` prop in `tasty` helper.
3242
-
3243
- - [#104](https://github.com/cube-js/cube-ui-kit/pull/104) [`cead470`](https://github.com/cube-js/cube-ui-kit/commit/cead4704c8fb03bfba70c8652fde7cd8c814bf9a) Thanks [@tenphi](https://github.com/tenphi)! - Fix Legacy Modal component to correctly pass theme prop
3244
-
3245
- ## 0.9.12
3246
-
3247
- ### Patch Changes
3248
-
3249
- - [#90](https://github.com/cube-js/cube-ui-kit/pull/90) [`ed07084`](https://github.com/cube-js/cube-ui-kit/commit/ed070842d46e5b448d1f88a9eeaee01b27d46467) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - this is a test release. will be removed
3250
-
3251
- ## 0.9.11
3252
-
3253
- ### Patch Changes
3254
-
3255
- - [#89](https://github.com/cube-js/cube-ui-kit/pull/89) [`da511c5`](https://github.com/cube-js/cube-ui-kit/commit/da511c5749c6cb85272852fc323caf02a9177eba) Thanks [@MrFlashAccount](https://github.com/MrFlashAccount)! - this is a test release