@flikk/ui 1.0.0-beta.3 → 1.0.0-beta.30

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 (1296) hide show
  1. package/CHANGELOG.md +1184 -0
  2. package/README.md +52 -0
  3. package/dist/bg/1.webp +0 -0
  4. package/dist/bg/10.webp +0 -0
  5. package/dist/bg/11.webp +0 -0
  6. package/dist/bg/12.webp +0 -0
  7. package/dist/bg/13.webp +0 -0
  8. package/dist/bg/14.webp +0 -0
  9. package/dist/bg/15.webp +0 -0
  10. package/dist/bg/16.webp +0 -0
  11. package/dist/bg/17.webp +0 -0
  12. package/dist/bg/18.webp +0 -0
  13. package/dist/bg/19.webp +0 -0
  14. package/dist/bg/2.webp +0 -0
  15. package/dist/bg/20.webp +0 -0
  16. package/dist/bg/21.webp +0 -0
  17. package/dist/bg/22.webp +0 -0
  18. package/dist/bg/3.webp +0 -0
  19. package/dist/bg/4.webp +0 -0
  20. package/dist/bg/5.webp +0 -0
  21. package/dist/bg/6.webp +0 -0
  22. package/dist/bg/7.webp +0 -0
  23. package/dist/bg/8.webp +0 -0
  24. package/dist/bg/9.webp +0 -0
  25. package/dist/components/ai/CodeBlock/CodeBlock.js +21 -4
  26. package/dist/components/ai/CodeBlock/CodeBlock.theme.js +3 -4
  27. package/dist/components/ai/CodeBlock/CodeBlock.types.d.ts +0 -2
  28. package/dist/components/ai/CodeBlock/LanguageIcon.js +1 -0
  29. package/dist/components/ai/PromptInput/PromptInput.animations.d.ts +25 -0
  30. package/dist/components/ai/PromptInput/PromptInput.animations.js +61 -0
  31. package/dist/components/ai/PromptInput/PromptInput.js +110 -149
  32. package/dist/components/ai/PromptInput/PromptInput.theme.js +24 -3
  33. package/dist/components/ai/PromptInput/PromptInput.types.d.ts +49 -1
  34. package/dist/components/ai/PromptInput/VoiceRecorder.d.ts +11 -0
  35. package/dist/components/ai/PromptInput/VoiceRecorder.js +328 -0
  36. package/dist/components/ai/PromptInput/VoiceRecorder.types.d.ts +17 -0
  37. package/dist/components/ai/PromptInput/index.d.ts +1 -0
  38. package/dist/components/ai/{PromptSuggestions → PromptSuggestion}/PromptSuggestion.js +1 -0
  39. package/dist/components/ai/{PromptSuggestions → PromptSuggestion}/PromptSuggestion.theme.js +4 -4
  40. package/dist/components/ai/StreamingResponse/AnimatedText.js +4 -3
  41. package/dist/components/ai/StreamingResponse/ErrorDisplay.js +1 -0
  42. package/dist/components/ai/StreamingResponse/MarkdownRenderer.d.ts +5 -2
  43. package/dist/components/ai/StreamingResponse/MarkdownRenderer.js +60 -35
  44. package/dist/components/ai/StreamingResponse/StreamingCursor.d.ts +4 -5
  45. package/dist/components/ai/StreamingResponse/StreamingCursor.js +14 -10
  46. package/dist/components/ai/StreamingResponse/StreamingResponse.animations.d.ts +9 -2
  47. package/dist/components/ai/StreamingResponse/StreamingResponse.animations.js +37 -12
  48. package/dist/components/ai/StreamingResponse/StreamingResponse.js +11 -4
  49. package/dist/components/ai/StreamingResponse/StreamingResponse.types.d.ts +9 -7
  50. package/dist/components/ai/StreamingResponse/WordAnimationContext.d.ts +27 -0
  51. package/dist/components/ai/StreamingResponse/WordAnimationContext.js +136 -0
  52. package/dist/components/ai/StreamingResponse/index.d.ts +3 -1
  53. package/dist/components/ai/TokenCounter/TokenCounter.js +1 -0
  54. package/dist/components/ai/TokenCounter/TokenCounter.theme.js +1 -1
  55. package/dist/components/ai/index.d.ts +2 -9
  56. package/dist/components/ai/index.js +11 -8
  57. package/dist/components/canvas/Background.d.ts +19 -0
  58. package/dist/components/canvas/Background.js +24 -0
  59. package/dist/components/canvas/BaseNode.d.ts +15 -0
  60. package/dist/components/canvas/BaseNode.js +20 -0
  61. package/dist/components/canvas/CanvasToolbar.d.ts +34 -0
  62. package/dist/components/canvas/CanvasToolbar.js +35 -0
  63. package/dist/components/canvas/Edge.d.ts +32 -0
  64. package/dist/components/canvas/Edge.js +113 -0
  65. package/dist/components/canvas/EdgeLayer.d.ts +19 -0
  66. package/dist/components/canvas/EdgeLayer.js +121 -0
  67. package/dist/components/canvas/Handle.d.ts +11 -0
  68. package/dist/components/canvas/Handle.js +64 -0
  69. package/dist/components/canvas/MiniMap.d.ts +22 -0
  70. package/dist/components/canvas/MiniMap.js +106 -0
  71. package/dist/components/canvas/NodeCanvas.d.ts +10 -0
  72. package/dist/components/canvas/NodeCanvas.js +481 -0
  73. package/dist/components/canvas/NodeCanvas.theme.d.ts +7 -0
  74. package/dist/components/canvas/NodeCanvas.theme.js +9 -0
  75. package/dist/components/canvas/NodeCanvas.types.d.ts +191 -0
  76. package/dist/components/canvas/NodeControls.d.ts +25 -0
  77. package/dist/components/canvas/NodeControls.js +41 -0
  78. package/dist/components/canvas/NodeRenderer.d.ts +22 -0
  79. package/dist/components/canvas/NodeRenderer.js +126 -0
  80. package/dist/components/canvas/changes.d.ts +11 -0
  81. package/dist/components/canvas/changes.js +76 -0
  82. package/dist/components/canvas/changes.test.d.ts +1 -0
  83. package/dist/components/canvas/context/CanvasContext.d.ts +41 -0
  84. package/dist/components/canvas/context/CanvasContext.js +34 -0
  85. package/dist/components/canvas/context/ConnectionContext.d.ts +33 -0
  86. package/dist/components/canvas/context/ConnectionContext.js +14 -0
  87. package/dist/components/canvas/context/HandleRegistry.d.ts +24 -0
  88. package/dist/components/canvas/context/HandleRegistry.js +16 -0
  89. package/dist/components/canvas/context/InteractionContext.d.ts +18 -0
  90. package/dist/components/canvas/context/InteractionContext.js +15 -0
  91. package/dist/components/canvas/context/NodeIdContext.d.ts +3 -0
  92. package/dist/components/canvas/context/NodeIdContext.js +16 -0
  93. package/dist/components/canvas/hooks/useConnection.d.ts +17 -0
  94. package/dist/components/canvas/hooks/useConnection.js +30 -0
  95. package/dist/components/canvas/hooks/useMarquee.d.ts +25 -0
  96. package/dist/components/canvas/hooks/useMarquee.js +92 -0
  97. package/dist/components/canvas/hooks/useNodeDrag.d.ts +23 -0
  98. package/dist/components/canvas/hooks/useNodeDrag.js +111 -0
  99. package/dist/components/canvas/hooks/usePanZoom.d.ts +30 -0
  100. package/dist/components/canvas/hooks/usePanZoom.js +195 -0
  101. package/dist/components/canvas/hooks/useViewport.d.ts +21 -0
  102. package/dist/components/canvas/hooks/useViewport.js +36 -0
  103. package/dist/components/canvas/index.d.ts +14 -0
  104. package/dist/components/canvas/index.js +12 -0
  105. package/dist/components/canvas/layout.d.ts +22 -0
  106. package/dist/components/canvas/layout.js +67 -0
  107. package/dist/components/canvas/layout.test.d.ts +1 -0
  108. package/dist/components/canvas/utils.d.ts +4 -0
  109. package/dist/components/canvas/utils.js +16 -0
  110. package/dist/components/canvas/utils.test.d.ts +1 -0
  111. package/dist/components/charts/ActivityRings/ActivityRings.js +28 -17
  112. package/dist/components/charts/ActivityRings/ActivityRings.types.d.ts +2 -3
  113. package/dist/components/charts/ActivityRings/ActivityRings.types.js +2 -1
  114. package/dist/components/charts/AreaChart/AreaChart.js +222 -174
  115. package/dist/components/charts/AreaChart/AreaChart.types.d.ts +6 -6
  116. package/dist/components/charts/AreaChart/AreaChart.types.js +1 -0
  117. package/dist/components/charts/BarChart/BarChart.js +228 -174
  118. package/dist/components/charts/BarChart/BarChart.types.d.ts +5 -5
  119. package/dist/components/charts/BarChart/BarChart.types.js +1 -0
  120. package/dist/components/charts/ChartContainer.d.ts +7 -0
  121. package/dist/components/charts/ChartContainer.js +11 -8
  122. package/dist/components/charts/{shared/BarRenderer → ComboChart}/BarRenderer.d.ts +3 -1
  123. package/dist/components/charts/{shared/BarRenderer → ComboChart}/BarRenderer.js +137 -102
  124. package/dist/components/charts/{shared/BarRenderer → ComboChart}/BarRenderer.types.d.ts +17 -5
  125. package/dist/components/charts/ComboChart/ComboChart.js +27 -10
  126. package/dist/components/charts/ComboChart/ComboChart.types.d.ts +5 -5
  127. package/dist/components/charts/ComboChart/ComboChart.types.js +4 -0
  128. package/dist/components/charts/ComboChart/ComboChartCanvas.d.ts +98 -0
  129. package/dist/components/charts/{shared/ChartContainer/ChartContainer.js → ComboChart/ComboChartCanvas.js} +41 -44
  130. package/dist/components/charts/{shared/ChartContainer/ChartContainer.types.d.ts → ComboChart/ComboChartCanvas.types.d.ts} +23 -3
  131. package/dist/components/charts/{shared/LineRenderer → ComboChart}/LineRenderer.d.ts +3 -1
  132. package/dist/components/charts/{shared/LineRenderer → ComboChart}/LineRenderer.js +27 -14
  133. package/dist/components/charts/{shared/LineRenderer → ComboChart}/LineRenderer.types.d.ts +11 -5
  134. package/dist/components/charts/DonutChart/DonutChart.js +3 -2
  135. package/dist/components/charts/DonutChart/DonutChart.theme.js +1 -1
  136. package/dist/components/charts/DonutChart/DonutChart.types.d.ts +1 -2
  137. package/dist/components/charts/DonutChart/MultiSegmentDonutChart.js +10 -24
  138. package/dist/components/charts/DonutChart/MultiSegmentDonutChart.types.d.ts +1 -2
  139. package/dist/components/charts/DonutChart/donut-utils.js +1 -0
  140. package/dist/components/charts/FunnelChart/FunnelChart.animations.js +1 -48
  141. package/dist/components/charts/FunnelChart/FunnelChart.d.ts +3 -4
  142. package/dist/components/charts/FunnelChart/FunnelChart.js +306 -358
  143. package/dist/components/charts/Heatmap/Heatmap.js +29 -36
  144. package/dist/components/charts/Heatmap/HeatmapCell.js +2 -1
  145. package/dist/components/charts/Heatmap/HeatmapLegend.js +1 -1
  146. package/dist/components/charts/LineChart/LineChart.js +201 -154
  147. package/dist/components/charts/LineChart/LineChart.types.d.ts +6 -6
  148. package/dist/components/charts/RadarChart/RadarChart.js +10 -2
  149. package/dist/components/charts/RadarChart/RadarChart.theme.js +5 -10
  150. package/dist/components/charts/RadarChart/RadarChart.types.d.ts +0 -8
  151. package/dist/components/charts/ScatterPlot/ScatterPlot.js +71 -72
  152. package/dist/components/charts/ScatterPlot/ScatterPlot.theme.d.ts +0 -4
  153. package/dist/components/charts/ScatterPlot/ScatterPlot.theme.js +10 -6
  154. package/dist/components/charts/ScatterPlot/ScatterPlot.types.d.ts +5 -11
  155. package/dist/components/charts/StackedBarChart/StackedBarChart.js +105 -68
  156. package/dist/components/charts/StackedBarChart/StackedBarChart.types.d.ts +5 -5
  157. package/dist/components/charts/StackedBarChart/StackedBarChart.types.js +3 -0
  158. package/dist/components/charts/hooks/index.d.ts +3 -1
  159. package/dist/components/charts/hooks/useChartAccessibility.js +1 -0
  160. package/dist/components/charts/hooks/useChartDimensions.d.ts +29 -0
  161. package/dist/components/charts/hooks/useChartDimensions.js +43 -0
  162. package/dist/components/charts/hooks/useChartScales.js +1 -1
  163. package/dist/components/charts/hooks/useChartTheme.js +1 -0
  164. package/dist/components/charts/hooks/useChartValidation.d.ts +0 -8
  165. package/dist/components/charts/hooks/useChartValidation.js +1 -0
  166. package/dist/components/charts/hooks/useTooltipPosition.js +1 -0
  167. package/dist/components/charts/index.d.ts +3 -3
  168. package/dist/components/charts/index.js +1 -3
  169. package/dist/components/charts/shared/ChartCrosshair/ChartCrosshair.js +5 -12
  170. package/dist/components/charts/shared/ChartErrorBoundary/ChartErrorBoundary.js +2 -1
  171. package/dist/components/charts/shared/ChartLegend/ChartLegend.d.ts +5 -2
  172. package/dist/components/charts/shared/ChartLegend/ChartLegend.js +15 -22
  173. package/dist/components/charts/shared/ChartLegend/ChartLegend.types.d.ts +7 -12
  174. package/dist/components/charts/shared/ChartLegend/index.d.ts +2 -3
  175. package/dist/components/charts/shared/ChartMarker/ChartMarker.js +1 -0
  176. package/dist/components/charts/shared/ChartText/ChartText.js +2 -1
  177. package/dist/components/charts/shared/ChartTooltip/ChartTooltip.js +4 -13
  178. package/dist/components/charts/shared/ChartTooltip/ChartTooltip.theme.js +1 -1
  179. package/dist/components/charts/shared/ChartTooltip/ChartTooltip.types.d.ts +13 -2
  180. package/dist/components/charts/shared/index.d.ts +0 -7
  181. package/dist/components/charts/theme/chart.theme.js +6 -0
  182. package/dist/components/charts/types/chart.types.d.ts +26 -2
  183. package/dist/components/charts/types/chart.types.js +10 -3
  184. package/dist/components/charts/utils/animation-utils.d.ts +95 -0
  185. package/dist/components/charts/utils/animation-utils.js +150 -2
  186. package/dist/components/charts/utils/bar-emphasis.d.ts +80 -0
  187. package/dist/components/charts/utils/bar-emphasis.js +69 -0
  188. package/dist/components/charts/utils/chart-validation.js +7 -0
  189. package/dist/components/core/Accordion/Accordion.animations.d.ts +6 -1
  190. package/dist/components/core/Accordion/Accordion.animations.js +15 -1
  191. package/dist/components/core/Accordion/Accordion.d.ts +4 -4
  192. package/dist/components/core/Accordion/Accordion.js +23 -19
  193. package/dist/components/core/Accordion/Accordion.theme.d.ts +2 -2
  194. package/dist/components/core/Accordion/Accordion.theme.js +6 -6
  195. package/dist/components/core/Accordion/Accordion.types.d.ts +63 -5
  196. package/dist/components/core/Accordion/AccordionBody.d.ts +3 -0
  197. package/dist/components/core/Accordion/{AccordionContent.js → AccordionBody.js} +6 -5
  198. package/dist/components/core/Accordion/AccordionContext.d.ts +3 -0
  199. package/dist/components/core/Accordion/AccordionContext.js +15 -0
  200. package/dist/components/core/Accordion/AccordionItem.js +14 -10
  201. package/dist/components/core/Accordion/AccordionTrigger.js +51 -9
  202. package/dist/components/core/Accordion/index.d.ts +2 -2
  203. package/dist/components/core/Alert/Alert.animations.d.ts +11 -0
  204. package/dist/components/core/Alert/Alert.animations.js +45 -0
  205. package/dist/components/core/Alert/Alert.js +23 -4
  206. package/dist/components/core/Alert/Alert.theme.js +3 -12
  207. package/dist/components/core/Alert/Alert.types.d.ts +6 -13
  208. package/dist/components/core/Alert/index.d.ts +1 -1
  209. package/dist/components/core/AlertDialog/AlertDialog.js +15 -1
  210. package/dist/components/core/Avatar/Avatar.js +79 -22
  211. package/dist/components/core/Avatar/Avatar.theme.d.ts +4 -6
  212. package/dist/components/core/Avatar/Avatar.theme.js +23 -13
  213. package/dist/components/core/Avatar/Avatar.types.d.ts +43 -8
  214. package/dist/components/core/AvatarGroup/AvatarGroup.animations.js +3 -2
  215. package/dist/components/core/AvatarGroup/AvatarGroup.js +7 -3
  216. package/dist/components/core/AvatarGroup/AvatarGroup.theme.js +4 -2
  217. package/dist/components/core/Badge/Badge.animations.js +2 -1
  218. package/dist/components/core/Badge/Badge.d.ts +1 -1
  219. package/dist/components/core/Badge/Badge.js +30 -73
  220. package/dist/components/core/Badge/Badge.theme.js +65 -62
  221. package/dist/components/core/Badge/Badge.types.d.ts +21 -34
  222. package/dist/components/core/Breadcrumbs/Breadcrumbs.js +24 -25
  223. package/dist/components/core/Breadcrumbs/Breadcrumbs.theme.js +2 -2
  224. package/dist/components/core/Breadcrumbs/Breadcrumbs.types.d.ts +1 -1
  225. package/dist/components/core/Button/Button.d.ts +1 -1
  226. package/dist/components/core/Button/Button.js +43 -39
  227. package/dist/components/core/Button/Button.ripple.d.ts +5 -1
  228. package/dist/components/core/Button/Button.ripple.js +29 -22
  229. package/dist/components/core/Button/Button.theme.d.ts +2 -4
  230. package/dist/components/core/Button/Button.theme.js +44 -86
  231. package/dist/components/core/Button/Button.types.d.ts +6 -7
  232. package/dist/components/core/Button/index.d.ts +2 -0
  233. package/dist/components/core/ButtonGroup/ButtonGroup.theme.js +6 -6
  234. package/dist/components/core/ButtonGroup/ButtonGroupText.js +1 -3
  235. package/dist/components/core/Calendar/Calendar.animations.js +1 -0
  236. package/dist/components/core/Calendar/Calendar.js +118 -9
  237. package/dist/components/core/Calendar/Calendar.theme.js +15 -11
  238. package/dist/components/core/Calendar/Calendar.types.d.ts +4 -1
  239. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.types.d.ts +5 -6
  240. package/dist/components/core/Calendar/CalendarMini/CalendarMini.animations.js +1 -0
  241. package/dist/components/core/Calendar/CalendarMini/CalendarMini.js +8 -4
  242. package/dist/components/core/Calendar/CalendarMini/CalendarMini.theme.js +2 -2
  243. package/dist/components/core/Card/Card.d.ts +2 -2
  244. package/dist/components/core/Card/Card.js +17 -6
  245. package/dist/components/core/Card/Card.theme.js +7 -5
  246. package/dist/components/core/Card/Card.types.d.ts +43 -15
  247. package/dist/components/core/Card/CardBody.d.ts +3 -0
  248. package/dist/components/core/Card/CardBody.js +11 -0
  249. package/dist/components/core/Card/CardSubtitle.d.ts +1 -1
  250. package/dist/components/core/Card/CardTitle.d.ts +1 -1
  251. package/dist/components/core/Card/index.d.ts +2 -2
  252. package/dist/components/core/CardStack/CardStack.js +1 -0
  253. package/dist/components/core/Carousel/Carousel.js +5 -4
  254. package/dist/components/core/Carousel/Carousel.types.d.ts +4 -4
  255. package/dist/components/core/Carousel/CarouselBody.d.ts +4 -0
  256. package/dist/components/core/Carousel/{CarouselContent.js → CarouselBody.js} +12 -5
  257. package/dist/components/core/Carousel/CarouselContext.js +1 -0
  258. package/dist/components/core/Carousel/CarouselNext.js +1 -0
  259. package/dist/components/core/Carousel/CarouselPrevious.js +1 -0
  260. package/dist/components/core/Carousel/index.d.ts +2 -1
  261. package/dist/components/core/CommandPalette/CommandItem.js +5 -5
  262. package/dist/components/core/CommandPalette/CommandPalette.animations.js +1 -0
  263. package/dist/components/core/CommandPalette/CommandPalette.js +58 -12
  264. package/dist/components/core/CommandPalette/CommandPalette.theme.js +14 -13
  265. package/dist/components/core/CommandPalette/CommandPalette.types.d.ts +14 -2
  266. package/dist/components/core/ContextMenu/ContextMenu.d.ts +2 -2
  267. package/dist/components/core/ContextMenu/ContextMenu.js +38 -15
  268. package/dist/components/core/ContextMenu/ContextMenu.theme.js +15 -15
  269. package/dist/components/core/ContextMenu/ContextMenu.types.d.ts +19 -2
  270. package/dist/components/core/ContextMenu/ContextMenuBody.d.ts +6 -0
  271. package/dist/components/core/ContextMenu/{ContextMenuContent.js → ContextMenuBody.js} +20 -11
  272. package/dist/components/core/ContextMenu/ContextMenuContext.js +1 -0
  273. package/dist/components/core/ContextMenu/ContextMenuItem.js +18 -8
  274. package/dist/components/core/ContextMenu/ContextMenuLabel.js +1 -0
  275. package/dist/components/core/ContextMenu/ContextMenuSeparator.js +1 -0
  276. package/dist/components/core/ContextMenu/ContextMenuSub.js +4 -3
  277. package/dist/components/core/ContextMenu/ContextMenuSubBody.d.ts +6 -0
  278. package/dist/components/core/ContextMenu/{ContextMenuSubContent.js → ContextMenuSubBody.js} +16 -9
  279. package/dist/components/core/ContextMenu/ContextMenuSubTrigger.js +3 -2
  280. package/dist/components/core/ContextMenu/ContextMenuTrigger.js +13 -6
  281. package/dist/components/core/ContextMenu/index.d.ts +1 -1
  282. package/dist/components/core/DotSeparator/DotSeparator.d.ts +3 -0
  283. package/dist/components/core/DotSeparator/DotSeparator.js +20 -0
  284. package/dist/components/core/DotSeparator/DotSeparator.theme.d.ts +2 -0
  285. package/dist/components/core/DotSeparator/DotSeparator.theme.js +10 -0
  286. package/dist/components/core/DotSeparator/DotSeparator.types.d.ts +25 -0
  287. package/dist/components/core/DotSeparator/index.d.ts +3 -0
  288. package/dist/components/core/DragDrop/DragDrop.js +189 -17
  289. package/dist/components/core/DragDrop/DragDrop.types.d.ts +6 -0
  290. package/dist/components/core/Drawer/Drawer.animations.js +14 -12
  291. package/dist/components/core/Drawer/Drawer.d.ts +6 -6
  292. package/dist/components/core/Drawer/Drawer.js +63 -20
  293. package/dist/components/core/Drawer/Drawer.theme.d.ts +2 -0
  294. package/dist/components/core/Drawer/Drawer.theme.js +17 -13
  295. package/dist/components/core/Drawer/Drawer.types.d.ts +24 -6
  296. package/dist/components/core/Drawer/DrawerBody.d.ts +5 -0
  297. package/dist/components/core/Drawer/{DrawerContent.js → DrawerBody.js} +5 -4
  298. package/dist/components/core/Drawer/DrawerContext.d.ts +3 -0
  299. package/dist/components/core/Drawer/DrawerContext.js +15 -0
  300. package/dist/components/core/Drawer/DrawerFooter.js +2 -1
  301. package/dist/components/core/Drawer/DrawerHeader.js +4 -2
  302. package/dist/components/core/Drawer/DrawerSubtitle.js +2 -1
  303. package/dist/components/core/Drawer/DrawerTitle.d.ts +1 -1
  304. package/dist/components/core/Drawer/DrawerTitle.js +4 -3
  305. package/dist/components/core/Drawer/index.d.ts +2 -1
  306. package/dist/components/core/Dropdown/Dropdown.d.ts +1 -1
  307. package/dist/components/core/Dropdown/Dropdown.js +28 -10
  308. package/dist/components/core/Dropdown/Dropdown.theme.js +7 -7
  309. package/dist/components/core/Dropdown/Dropdown.types.d.ts +12 -3
  310. package/dist/components/core/Dropdown/DropdownContext.js +1 -0
  311. package/dist/components/core/Dropdown/DropdownItem.js +3 -2
  312. package/dist/components/core/Dropdown/DropdownMenu.js +75 -74
  313. package/dist/components/core/Dropdown/DropdownSection.js +5 -2
  314. package/dist/components/core/Dropdown/DropdownSeparator.js +2 -1
  315. package/dist/components/core/Dropdown/DropdownTrigger.d.ts +6 -1
  316. package/dist/components/core/Dropdown/DropdownTrigger.js +30 -8
  317. package/dist/components/core/Empty/Empty.js +1 -1
  318. package/dist/components/core/Empty/Empty.theme.js +1 -1
  319. package/dist/components/core/HeroCard/HeroCard.d.ts +5 -0
  320. package/dist/components/core/HeroCard/HeroCard.js +100 -0
  321. package/dist/components/core/HeroCard/HeroCard.theme.d.ts +3 -0
  322. package/dist/components/core/HeroCard/HeroCard.theme.js +8 -0
  323. package/dist/components/core/HeroCard/HeroCard.types.d.ts +70 -0
  324. package/dist/components/core/HeroCard/index.d.ts +4 -0
  325. package/dist/components/core/Icon/Icon.d.ts +3 -0
  326. package/dist/components/core/Icon/Icon.js +70 -0
  327. package/dist/components/core/Icon/Icon.theme.d.ts +2 -0
  328. package/dist/components/core/Icon/Icon.theme.js +19 -0
  329. package/dist/components/core/Icon/Icon.types.d.ts +32 -0
  330. package/dist/components/core/Icon/data/fileTypes.d.ts +7 -0
  331. package/dist/components/core/Icon/data/fileTypes.js +30 -0
  332. package/dist/components/core/Icon/data/paymentMethods.d.ts +27 -0
  333. package/dist/components/core/Icon/data/paymentMethods.js +169 -0
  334. package/dist/components/core/Icon/index.d.ts +4 -0
  335. package/dist/components/core/ImagePlaceholder/ImagePlaceholder.d.ts +14 -0
  336. package/dist/components/core/ImagePlaceholder/ImagePlaceholder.js +37 -0
  337. package/dist/components/core/ImagePlaceholder/ImagePlaceholder.theme.d.ts +6 -0
  338. package/dist/components/core/ImagePlaceholder/ImagePlaceholder.theme.js +8 -0
  339. package/dist/components/core/ImagePlaceholder/ImagePlaceholder.types.d.ts +32 -0
  340. package/dist/components/core/ImagePlaceholder/index.d.ts +2 -0
  341. package/dist/components/core/Kbd/Kbd.theme.js +3 -3
  342. package/dist/components/core/Link/Link.d.ts +1 -1
  343. package/dist/components/core/Link/Link.js +60 -29
  344. package/dist/components/core/Link/Link.types.d.ts +26 -9
  345. package/dist/components/core/Masonry/Masonry.js +88 -71
  346. package/dist/components/core/Masonry/Masonry.theme.js +10 -4
  347. package/dist/components/core/MenuItem/MenuItem.js +23 -2
  348. package/dist/components/core/MenuItem/MenuItem.theme.d.ts +6 -0
  349. package/dist/components/core/MenuItem/MenuItem.theme.js +25 -18
  350. package/dist/components/core/MenuItem/MenuItem.types.d.ts +3 -1
  351. package/dist/components/core/Message/Message.d.ts +10 -1
  352. package/dist/components/core/Message/Message.js +49 -7
  353. package/dist/components/core/Message/Message.theme.js +23 -1
  354. package/dist/components/core/Message/Message.types.d.ts +122 -7
  355. package/dist/components/core/Message/MessageActions.js +1 -0
  356. package/dist/components/core/Message/MessageAudio.d.ts +8 -0
  357. package/dist/components/core/Message/MessageAudio.js +12 -0
  358. package/dist/components/core/Message/MessageAvatar.d.ts +2 -2
  359. package/dist/components/core/Message/MessageAvatar.js +4 -3
  360. package/dist/components/core/Message/MessageBody.d.ts +8 -0
  361. package/dist/components/core/Message/{MessageContent.js → MessageBody.js} +4 -3
  362. package/dist/components/core/Message/MessageContext.d.ts +3 -1
  363. package/dist/components/core/Message/MessageContext.js +1 -0
  364. package/dist/components/core/Message/MessageDateDivider.d.ts +6 -0
  365. package/dist/components/core/Message/MessageDateDivider.js +10 -0
  366. package/dist/components/core/Message/MessageFile.d.ts +9 -0
  367. package/dist/components/core/Message/MessageFile.js +16 -0
  368. package/dist/components/core/Message/MessageImage.d.ts +11 -0
  369. package/dist/components/core/Message/MessageImage.js +14 -0
  370. package/dist/components/core/Message/MessageLink.d.ts +10 -0
  371. package/dist/components/core/Message/MessageLink.js +15 -0
  372. package/dist/components/core/Message/MessageList.js +1 -0
  373. package/dist/components/core/Message/MessageReactions.d.ts +8 -0
  374. package/dist/components/core/Message/MessageReactions.js +13 -0
  375. package/dist/components/core/Message/MessageReply.d.ts +8 -0
  376. package/dist/components/core/Message/MessageReply.js +10 -0
  377. package/dist/components/core/Message/MessageSenderName.d.ts +6 -0
  378. package/dist/components/core/Message/MessageSenderName.js +10 -0
  379. package/dist/components/core/Message/MessageStatusIndicator.d.ts +9 -0
  380. package/dist/components/core/Message/MessageStatusIndicator.js +46 -0
  381. package/dist/components/core/Message/MessageTimestamp.js +1 -0
  382. package/dist/components/core/Message/TypeWriter.d.ts +1 -1
  383. package/dist/components/core/Message/TypeWriter.js +74 -9
  384. package/dist/components/core/Message/index.d.ts +21 -1
  385. package/dist/components/core/Modal/Modal.animations.d.ts +1 -0
  386. package/dist/components/core/Modal/Modal.animations.js +20 -30
  387. package/dist/components/core/Modal/Modal.d.ts +4 -6
  388. package/dist/components/core/Modal/Modal.js +21 -22
  389. package/dist/components/core/Modal/Modal.theme.js +9 -11
  390. package/dist/components/core/Modal/Modal.types.d.ts +15 -12
  391. package/dist/components/core/Modal/ModalBody.js +9 -9
  392. package/dist/components/core/Modal/ModalContext.d.ts +3 -0
  393. package/dist/components/core/Modal/ModalContext.js +16 -0
  394. package/dist/components/core/Modal/ModalFooter.js +3 -2
  395. package/dist/components/core/Modal/ModalHeader.js +4 -2
  396. package/dist/components/core/Modal/ModalSubtitle.js +2 -1
  397. package/dist/components/core/Modal/ModalTitle.d.ts +1 -1
  398. package/dist/components/core/Modal/ModalTitle.js +4 -3
  399. package/dist/components/core/Modal/index.d.ts +1 -1
  400. package/dist/components/core/ModalStack/ModalStack.animations.js +1 -0
  401. package/dist/components/core/ModalStack/ModalStack.d.ts +1 -1
  402. package/dist/components/core/ModalStack/ModalStack.js +2 -1
  403. package/dist/components/core/ModalStack/ModalStack.types.d.ts +1 -2
  404. package/dist/components/core/ModalStack/ModalStackModal.d.ts +1 -1
  405. package/dist/components/core/ModalStack/ModalStackModal.js +19 -15
  406. package/dist/components/core/NavItem/NavItem.d.ts +1 -1
  407. package/dist/components/core/NavItem/NavItem.js +272 -78
  408. package/dist/components/core/NavItem/NavItem.theme.js +31 -9
  409. package/dist/components/core/NavItem/NavItem.types.d.ts +51 -59
  410. package/dist/components/core/NavItem/index.d.ts +1 -1
  411. package/dist/components/core/OfflineIndicator/OfflineIndicator.js +1 -0
  412. package/dist/components/core/OfflineIndicator/OfflineIndicator.theme.js +2 -2
  413. package/dist/components/core/PageHeading/PageHeading.js +8 -3
  414. package/dist/components/core/PageHeading/PageHeading.theme.js +3 -3
  415. package/dist/components/core/PageHeading/PageHeading.types.d.ts +13 -2
  416. package/dist/components/core/PageHeading/PageHeadingBackButton.js +5 -2
  417. package/dist/components/core/Pagination/Pagination.js +9 -3
  418. package/dist/components/core/Pagination/Pagination.theme.d.ts +2 -10
  419. package/dist/components/core/Pagination/Pagination.theme.js +4 -4
  420. package/dist/components/core/Pagination/Pagination.types.d.ts +11 -1
  421. package/dist/components/core/Pill/Pill.animations.js +2 -11
  422. package/dist/components/core/Pill/Pill.js +14 -5
  423. package/dist/components/core/Pill/Pill.theme.js +10 -10
  424. package/dist/components/core/Popover/Popover.d.ts +2 -2
  425. package/dist/components/core/Popover/Popover.js +11 -10
  426. package/dist/components/core/Popover/Popover.theme.d.ts +1 -1
  427. package/dist/components/core/Popover/Popover.theme.js +4 -2
  428. package/dist/components/core/Popover/Popover.types.d.ts +21 -3
  429. package/dist/components/core/Popover/PopoverBody.d.ts +7 -0
  430. package/dist/components/core/Popover/PopoverBody.js +134 -0
  431. package/dist/components/core/Popover/PopoverContext.js +1 -0
  432. package/dist/components/core/Popover/PopoverTrigger.d.ts +1 -1
  433. package/dist/components/core/Popover/PopoverTrigger.js +13 -12
  434. package/dist/components/core/Popover/index.d.ts +4 -3
  435. package/dist/components/core/Progress/Progress.d.ts +9 -8
  436. package/dist/components/core/Progress/Progress.js +18 -17
  437. package/dist/components/core/Progress/Progress.theme.js +6 -14
  438. package/dist/components/core/Progress/Progress.types.d.ts +2 -19
  439. package/dist/components/core/Progress/index.d.ts +1 -1
  440. package/dist/components/core/Rating/Rating.js +13 -5
  441. package/dist/components/core/ScrollArea/ScrollArea.js +294 -12
  442. package/dist/components/core/ScrollArea/ScrollArea.theme.js +1 -1
  443. package/dist/components/core/ScrollArea/ScrollArea.types.d.ts +24 -4
  444. package/dist/components/core/ScrollArea/index.d.ts +1 -1
  445. package/dist/components/core/ScrollArea/smooth/SmoothScrollEngine.d.ts +5 -0
  446. package/dist/components/core/ScrollArea/smooth/SmoothScrollEngine.js +37 -3
  447. package/dist/components/core/ScrollArea/smooth/SnapPointDetector.js +1 -0
  448. package/dist/components/core/ScrollArea/smooth/useSmoothScroll.js +5 -0
  449. package/dist/components/core/ScrollArea/smooth/useSmoothScroll.types.d.ts +5 -0
  450. package/dist/components/core/Segmented/Segmented.js +21 -19
  451. package/dist/components/core/Segmented/Segmented.theme.js +6 -6
  452. package/dist/components/core/Segmented/SegmentedItem.js +30 -3
  453. package/dist/components/core/Separator/Separator.js +1 -0
  454. package/dist/components/core/Sidebar/Sidebar.d.ts +14 -1
  455. package/dist/components/core/Sidebar/Sidebar.js +95 -21
  456. package/dist/components/core/Sidebar/Sidebar.theme.js +7 -7
  457. package/dist/components/core/Sidebar/Sidebar.types.d.ts +186 -6
  458. package/dist/components/core/Sidebar/SidebarCard.d.ts +25 -0
  459. package/dist/components/core/Sidebar/SidebarCard.js +69 -0
  460. package/dist/components/core/Sidebar/SidebarCard.theme.d.ts +8 -0
  461. package/dist/components/core/Sidebar/SidebarCard.theme.js +18 -0
  462. package/dist/components/core/Sidebar/SidebarContent.js +11 -4
  463. package/dist/components/core/Sidebar/SidebarContext.d.ts +26 -11
  464. package/dist/components/core/Sidebar/SidebarContext.js +87 -11
  465. package/dist/components/core/Sidebar/SidebarFooter.js +5 -4
  466. package/dist/components/core/Sidebar/SidebarHeader.js +15 -4
  467. package/dist/components/core/Sidebar/SidebarLogo.d.ts +3 -0
  468. package/dist/components/core/Sidebar/SidebarLogo.js +49 -0
  469. package/dist/components/core/Sidebar/SidebarMobileTrigger.d.ts +3 -0
  470. package/dist/components/core/Sidebar/SidebarMobileTrigger.js +30 -0
  471. package/dist/components/core/Sidebar/SidebarNav.js +6 -2
  472. package/dist/components/core/Sidebar/SidebarNavGroup.js +6 -5
  473. package/dist/components/core/Sidebar/SidebarSearch.d.ts +22 -0
  474. package/dist/components/core/Sidebar/SidebarSearch.js +136 -0
  475. package/dist/components/core/Sidebar/SidebarToggle.js +9 -4
  476. package/dist/components/core/Sidebar/SidebarUserProfile.d.ts +3 -0
  477. package/dist/components/core/Sidebar/SidebarUserProfile.js +49 -0
  478. package/dist/components/core/Sidebar/index.d.ts +7 -3
  479. package/dist/components/core/Skeleton/Skeleton.js +2 -2
  480. package/dist/components/core/Skeleton/Skeleton.theme.js +1 -1
  481. package/dist/components/core/SlidingNumber/SlidingNumber.js +3 -1
  482. package/dist/components/core/Sortable/Sortable.animations.js +1 -0
  483. package/dist/components/core/Sortable/Sortable.d.ts +1 -1
  484. package/dist/components/core/Sortable/Sortable.js +23 -6
  485. package/dist/components/core/Sortable/Sortable.theme.js +1 -1
  486. package/dist/components/core/Sortable/Sortable.types.d.ts +9 -5
  487. package/dist/components/core/Spinner/Spinner.js +1 -0
  488. package/dist/components/core/Spinner/Spinner.theme.js +4 -6
  489. package/dist/components/core/Spinner/Spinner.types.d.ts +2 -1
  490. package/dist/components/core/Tabs/Tabs.animations.d.ts +2 -2
  491. package/dist/components/core/Tabs/Tabs.animations.js +4 -3
  492. package/dist/components/core/Tabs/Tabs.d.ts +1 -1
  493. package/dist/components/core/Tabs/Tabs.js +15 -7
  494. package/dist/components/core/Tabs/Tabs.theme.d.ts +2 -2
  495. package/dist/components/core/Tabs/Tabs.theme.js +6 -6
  496. package/dist/components/core/Tabs/Tabs.types.d.ts +13 -9
  497. package/dist/components/core/Tabs/TabsBody.d.ts +6 -0
  498. package/dist/components/core/Tabs/{TabsContent.js → TabsBody.js} +15 -12
  499. package/dist/components/core/Tabs/TabsContext.js +1 -0
  500. package/dist/components/core/Tabs/TabsList.js +20 -21
  501. package/dist/components/core/Tabs/TabsTrigger.js +81 -38
  502. package/dist/components/core/Tabs/index.d.ts +2 -2
  503. package/dist/components/core/Tag/Tag.animations.js +0 -13
  504. package/dist/components/core/Tag/Tag.d.ts +2 -2
  505. package/dist/components/core/Tag/Tag.js +47 -5
  506. package/dist/components/core/Tag/Tag.theme.js +19 -6
  507. package/dist/components/core/Tag/Tag.types.d.ts +31 -1
  508. package/dist/components/core/Toast/Toast.animations.d.ts +3 -2
  509. package/dist/components/core/Toast/Toast.animations.js +20 -17
  510. package/dist/components/core/Toast/Toast.d.ts +2 -2
  511. package/dist/components/core/Toast/Toast.js +66 -31
  512. package/dist/components/core/Toast/Toast.theme.js +8 -16
  513. package/dist/components/core/Toast/Toast.types.d.ts +41 -48
  514. package/dist/components/core/Toast/ToastProvider.js +7 -2
  515. package/dist/components/core/Toast/index.d.ts +1 -1
  516. package/dist/components/core/Toast/useToast.js +5 -6
  517. package/dist/components/core/Tooltip/Tooltip.animations.js +19 -53
  518. package/dist/components/core/Tooltip/Tooltip.d.ts +1 -1
  519. package/dist/components/core/Tooltip/Tooltip.js +50 -38
  520. package/dist/components/core/Tooltip/Tooltip.theme.js +4 -3
  521. package/dist/components/core/Tooltip/Tooltip.types.d.ts +13 -1
  522. package/dist/components/core/Tree/Tree.animations.d.ts +1 -2
  523. package/dist/components/core/Tree/Tree.animations.js +20 -58
  524. package/dist/components/core/Tree/Tree.js +183 -11
  525. package/dist/components/core/index.d.ts +4 -2
  526. package/dist/components/core/index.js +29 -6
  527. package/dist/components/data-display/DescriptionList/DescriptionList.js +24 -7
  528. package/dist/components/data-display/DescriptionList/DescriptionList.theme.js +10 -3
  529. package/dist/components/data-display/DescriptionList/DescriptionList.types.d.ts +49 -10
  530. package/dist/components/data-display/DescriptionList/index.d.ts +1 -1
  531. package/dist/components/data-display/Feed/Feed.animations.d.ts +40 -0
  532. package/dist/components/data-display/Feed/Feed.animations.js +26 -0
  533. package/dist/components/data-display/Feed/Feed.d.ts +5 -1
  534. package/dist/components/data-display/Feed/Feed.js +114 -55
  535. package/dist/components/data-display/Feed/Feed.theme.js +11 -13
  536. package/dist/components/data-display/Feed/Feed.types.d.ts +66 -34
  537. package/dist/components/data-display/Feed/index.d.ts +1 -1
  538. package/dist/components/data-display/GanttChart/GanttChart.d.ts +3 -4
  539. package/dist/components/data-display/GanttChart/GanttChart.js +36 -25
  540. package/dist/components/data-display/GanttChart/GanttChart.theme.js +19 -17
  541. package/dist/components/data-display/GanttChart/GanttChart.types.d.ts +21 -2
  542. package/dist/components/data-display/GanttChart/GanttChart.utils.js +1 -1
  543. package/dist/components/data-display/GanttChart/GanttChartContext.d.ts +5 -0
  544. package/dist/components/data-display/GanttChart/GanttChartContext.js +26 -0
  545. package/dist/components/data-display/GanttChart/GanttChartPanel.d.ts +1 -1
  546. package/dist/components/data-display/GanttChart/GanttChartPanel.js +5 -4
  547. package/dist/components/data-display/GanttChart/GanttDependencyArrows.js +9 -5
  548. package/dist/components/data-display/GanttChart/GanttGroupBar.js +2 -1
  549. package/dist/components/data-display/GanttChart/GanttMilestone.js +8 -7
  550. package/dist/components/data-display/GanttChart/GanttSplitter.js +17 -2
  551. package/dist/components/data-display/GanttChart/GanttTableGroupRow.js +3 -2
  552. package/dist/components/data-display/GanttChart/GanttTableHeader.js +2 -1
  553. package/dist/components/data-display/GanttChart/GanttTablePanel.js +3 -2
  554. package/dist/components/data-display/GanttChart/GanttTableTaskRow.js +4 -3
  555. package/dist/components/data-display/GanttChart/GanttTaskBar.js +43 -19
  556. package/dist/components/data-display/GanttChart/GanttTaskContextMenu.js +3 -2
  557. package/dist/components/data-display/GanttChart/GanttTimelineGrid.js +4 -2
  558. package/dist/components/data-display/GanttChart/GanttTimelineHeader.js +37 -12
  559. package/dist/components/data-display/GanttChart/GanttToolbar.js +5 -3
  560. package/dist/components/data-display/GanttChart/hooks/useGanttDates.js +1 -0
  561. package/dist/components/data-display/GanttChart/hooks/useGanttDrag.js +4 -2
  562. package/dist/components/data-display/GanttChart/hooks/useGanttLayout.js +1 -0
  563. package/dist/components/data-display/GanttChart/hooks/useGanttScrollSync.js +1 -0
  564. package/dist/components/data-display/GanttChart/index.d.ts +1 -1
  565. package/dist/components/data-display/KPI/KPI.js +14 -3
  566. package/dist/components/data-display/KPI/KPI.theme.js +8 -9
  567. package/dist/components/data-display/KPI/KPI.types.d.ts +5 -4
  568. package/dist/components/data-display/Metric/Metric.js +8 -8
  569. package/dist/components/data-display/Metric/Metric.theme.d.ts +3 -2
  570. package/dist/components/data-display/Metric/Metric.theme.js +39 -65
  571. package/dist/components/data-display/Metric/Metric.types.d.ts +22 -25
  572. package/dist/components/data-display/Table/Table.animations.js +17 -10
  573. package/dist/components/data-display/Table/Table.d.ts +2 -7
  574. package/dist/components/data-display/Table/Table.filterUtils.js +8 -1
  575. package/dist/components/data-display/Table/Table.js +28 -31
  576. package/dist/components/data-display/Table/Table.theme.js +38 -10
  577. package/dist/components/data-display/Table/Table.types.d.ts +37 -8
  578. package/dist/components/data-display/Table/TableActions.js +6 -5
  579. package/dist/components/data-display/Table/TableActionsMenu.js +3 -3
  580. package/dist/components/data-display/Table/TableBody.js +3 -2
  581. package/dist/components/data-display/Table/TableCell.d.ts +1 -1
  582. package/dist/components/data-display/Table/TableCell.js +13 -5
  583. package/dist/components/data-display/Table/TableColumnManager.js +4 -1
  584. package/dist/components/data-display/Table/TableContext.d.ts +11 -0
  585. package/dist/components/data-display/Table/TableContext.js +21 -0
  586. package/dist/components/data-display/Table/TableDeclarative.js +8 -9
  587. package/dist/components/data-display/Table/TableFilter.js +33 -25
  588. package/dist/components/data-display/Table/TableHeader.js +6 -2
  589. package/dist/components/data-display/Table/TablePagination.js +4 -7
  590. package/dist/components/data-display/Table/TableRow.d.ts +1 -1
  591. package/dist/components/data-display/Table/TableRow.js +12 -8
  592. package/dist/components/data-display/Table/TableSelectionHeader.js +5 -3
  593. package/dist/components/data-display/Table/hooks/useTableColumns.js +1 -0
  594. package/dist/components/data-display/Table/hooks/useTableExpansion.js +1 -0
  595. package/dist/components/data-display/Table/hooks/useTableFilter.js +1 -0
  596. package/dist/components/data-display/Table/hooks/useTablePagination.js +1 -0
  597. package/dist/components/data-display/Table/hooks/useTableSelection.js +1 -0
  598. package/dist/components/data-display/Table/index.d.ts +2 -2
  599. package/dist/components/data-display/Table/index.js +2 -2
  600. package/dist/components/data-display/Timeline/Timeline.animations.d.ts +0 -7
  601. package/dist/components/data-display/Timeline/Timeline.animations.js +2 -27
  602. package/dist/components/data-display/Timeline/Timeline.d.ts +2 -2
  603. package/dist/components/data-display/Timeline/Timeline.js +33 -17
  604. package/dist/components/data-display/Timeline/Timeline.theme.d.ts +2 -16
  605. package/dist/components/data-display/Timeline/Timeline.theme.js +14 -8
  606. package/dist/components/data-display/Timeline/Timeline.types.d.ts +70 -27
  607. package/dist/components/data-display/Timeline/Timeline.utils.d.ts +6 -0
  608. package/dist/components/data-display/Timeline/Timeline.utils.js +11 -0
  609. package/dist/components/data-display/Timeline/TimelineContent.js +5 -8
  610. package/dist/components/data-display/Timeline/TimelineContext.d.ts +3 -0
  611. package/dist/components/data-display/Timeline/TimelineContext.js +16 -0
  612. package/dist/components/data-display/Timeline/TimelineItem.js +21 -40
  613. package/dist/components/data-display/Timeline/TimelineMarker.js +12 -9
  614. package/dist/components/data-display/Timeline/index.d.ts +2 -2
  615. package/dist/components/effects/3d/index.d.ts +4 -0
  616. package/dist/components/effects/3d/index.js +2 -0
  617. package/dist/components/effects/AIOrb/AIOrb.d.ts +1 -0
  618. package/dist/components/effects/AIOrb/AIOrb.js +3 -2
  619. package/dist/components/effects/AIOrb/AIOrb.types.d.ts +1 -0
  620. package/dist/components/effects/AIOrb/hooks/index.d.ts +2 -0
  621. package/dist/components/effects/AIOrb/hooks/useOrbState.d.ts +20 -0
  622. package/dist/components/effects/AIOrb/hooks/useOrbState.js +28 -0
  623. package/dist/components/effects/AIOrb/index.d.ts +2 -2
  624. package/dist/components/effects/AIOrb/variants/Aura/Aura.d.ts +3 -0
  625. package/dist/components/effects/AIOrb/variants/Aura/Aura.js +84 -0
  626. package/dist/components/effects/AIOrb/variants/Aura/Aura.shaders.d.ts +28 -0
  627. package/dist/components/effects/AIOrb/variants/Aura/Aura.shaders.js +191 -0
  628. package/dist/components/effects/AIOrb/variants/Aura/Aura.types.d.ts +53 -0
  629. package/dist/components/effects/AIOrb/variants/Aura/index.d.ts +2 -0
  630. package/dist/components/effects/AIOrb/variants/DotSphere/DotSphere.d.ts +7 -0
  631. package/dist/components/effects/AIOrb/variants/DotSphere/DotSphere.impl.d.ts +3 -0
  632. package/dist/components/effects/AIOrb/variants/DotSphere/DotSphere.impl.js +176 -0
  633. package/dist/components/effects/AIOrb/variants/DotSphere/DotSphere.js +29 -130
  634. package/dist/components/effects/AIOrb/variants/DotSphere/DotSphere.types.d.ts +6 -0
  635. package/dist/components/effects/AIOrb/variants/Liquid/Liquid.d.ts +8 -0
  636. package/dist/components/effects/AIOrb/variants/Liquid/Liquid.impl.d.ts +3 -0
  637. package/dist/components/effects/AIOrb/variants/Liquid/Liquid.impl.js +140 -0
  638. package/dist/components/effects/AIOrb/variants/Liquid/Liquid.js +29 -101
  639. package/dist/components/effects/AIOrb/variants/Liquid/Liquid.types.d.ts +6 -0
  640. package/dist/components/effects/AIOrb/variants/index.d.ts +2 -0
  641. package/dist/components/effects/Animated/Animated.animations.js +29 -10
  642. package/dist/components/effects/Animated/Animated.d.ts +4 -4
  643. package/dist/components/effects/Animated/Animated.js +9 -9
  644. package/dist/components/effects/Animated/AnimatedContext.d.ts +3 -0
  645. package/dist/components/effects/Animated/AnimatedContext.js +12 -0
  646. package/dist/components/effects/Animated/AnimatedItem.d.ts +1 -1
  647. package/dist/components/effects/Animated/AnimatedItem.js +7 -5
  648. package/dist/components/effects/Aurora/Aurora.d.ts +6 -17
  649. package/dist/components/effects/Aurora/Aurora.js +332 -105
  650. package/dist/components/effects/Aurora/Aurora.types.d.ts +6 -0
  651. package/dist/components/effects/ColorPanels/ColorPanels.d.ts +8 -0
  652. package/dist/components/effects/ColorPanels/ColorPanels.js +66 -0
  653. package/dist/components/effects/ColorPanels/ColorPanels.shaders.d.ts +12 -0
  654. package/dist/components/effects/ColorPanels/ColorPanels.shaders.js +218 -0
  655. package/dist/components/effects/ColorPanels/ColorPanels.types.d.ts +29 -0
  656. package/dist/components/effects/ColorPanels/ColorPanels.types.js +3 -0
  657. package/dist/components/effects/ColorPanels/index.d.ts +2 -0
  658. package/dist/components/effects/CustomCursor/CustomCursor.d.ts +4 -4
  659. package/dist/components/effects/CustomCursor/CustomCursor.js +54 -54
  660. package/dist/components/effects/CustomCursor/CustomCursor.types.d.ts +5 -4
  661. package/dist/components/effects/Dithering/Dithering.d.ts +10 -0
  662. package/dist/components/effects/Dithering/Dithering.js +62 -0
  663. package/dist/components/effects/Dithering/Dithering.shaders.d.ts +11 -0
  664. package/dist/components/effects/Dithering/Dithering.shaders.js +166 -0
  665. package/dist/components/effects/Dithering/Dithering.types.d.ts +31 -0
  666. package/dist/components/effects/Dithering/Dithering.types.js +17 -0
  667. package/dist/components/effects/Dithering/index.d.ts +3 -0
  668. package/dist/components/effects/DotPattern/DotPattern.js +2 -1
  669. package/dist/components/effects/FlutedGlass/FlutedGlass.d.ts +9 -0
  670. package/dist/components/effects/FlutedGlass/FlutedGlass.js +80 -0
  671. package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.d.ts +12 -0
  672. package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.js +335 -0
  673. package/dist/components/effects/FlutedGlass/FlutedGlass.types.d.ts +61 -0
  674. package/dist/components/effects/FlutedGlass/FlutedGlass.types.js +16 -0
  675. package/dist/components/effects/FlutedGlass/index.d.ts +3 -0
  676. package/dist/components/effects/GemSmoke/GemSmoke.d.ts +8 -0
  677. package/dist/components/effects/GemSmoke/GemSmoke.js +70 -0
  678. package/dist/components/effects/GemSmoke/GemSmoke.shaders.d.ts +18 -0
  679. package/dist/components/effects/GemSmoke/GemSmoke.shaders.js +181 -0
  680. package/dist/components/effects/GemSmoke/GemSmoke.types.d.ts +37 -0
  681. package/dist/components/effects/GemSmoke/GemSmoke.types.js +10 -0
  682. package/dist/components/effects/GemSmoke/index.d.ts +3 -0
  683. package/dist/components/effects/GlassEffect/GlassEffect.js +1 -1
  684. package/dist/components/effects/GlassSurface/GlassSurface.d.ts +1 -1
  685. package/dist/components/effects/GlassSurface/GlassSurface.js +40 -34
  686. package/dist/components/effects/GlassSurface/GlassSurface.types.d.ts +14 -0
  687. package/dist/components/effects/GodRays/GodRays.d.ts +8 -0
  688. package/dist/components/effects/GodRays/GodRays.js +68 -0
  689. package/dist/components/effects/GodRays/GodRays.shaders.d.ts +10 -0
  690. package/dist/components/effects/GodRays/GodRays.shaders.js +128 -0
  691. package/dist/components/effects/GodRays/GodRays.types.d.ts +25 -0
  692. package/dist/components/effects/GodRays/GodRays.types.js +3 -0
  693. package/dist/components/effects/GodRays/index.d.ts +2 -0
  694. package/dist/components/effects/GradientMesh/GradientMesh.d.ts +9 -0
  695. package/dist/components/effects/GradientMesh/GradientMesh.js +56 -0
  696. package/dist/components/effects/GradientMesh/GradientMesh.shaders.d.ts +15 -0
  697. package/dist/components/effects/GradientMesh/GradientMesh.shaders.js +127 -0
  698. package/dist/components/effects/GradientMesh/GradientMesh.types.d.ts +17 -0
  699. package/dist/components/effects/GradientMesh/GradientMesh.types.js +3 -0
  700. package/dist/components/effects/GradientMesh/index.d.ts +2 -0
  701. package/dist/components/effects/GrainGradient/GrainGradient.d.ts +9 -0
  702. package/dist/components/effects/GrainGradient/GrainGradient.js +62 -0
  703. package/dist/components/effects/GrainGradient/GrainGradient.shaders.d.ts +17 -0
  704. package/dist/components/effects/GrainGradient/GrainGradient.shaders.js +168 -0
  705. package/dist/components/effects/GrainGradient/GrainGradient.types.d.ts +26 -0
  706. package/dist/components/effects/GrainGradient/GrainGradient.types.js +9 -0
  707. package/dist/components/effects/GrainGradient/index.d.ts +3 -0
  708. package/dist/components/effects/GridPattern/GridPattern.js +1 -0
  709. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.d.ts +10 -0
  710. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.js +78 -0
  711. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.d.ts +22 -0
  712. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.js +239 -0
  713. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.types.d.ts +52 -0
  714. package/dist/components/effects/HalftoneCmyk/index.d.ts +2 -0
  715. package/dist/components/effects/HalftoneDots/HalftoneDots.d.ts +9 -0
  716. package/dist/components/effects/HalftoneDots/HalftoneDots.js +68 -0
  717. package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.d.ts +13 -0
  718. package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.js +296 -0
  719. package/dist/components/effects/HalftoneDots/HalftoneDots.types.d.ts +43 -0
  720. package/dist/components/effects/HalftoneDots/HalftoneDots.types.js +12 -0
  721. package/dist/components/effects/HalftoneDots/index.d.ts +3 -0
  722. package/dist/components/effects/ImageDithering/ImageDithering.d.ts +9 -0
  723. package/dist/components/effects/ImageDithering/ImageDithering.js +68 -0
  724. package/dist/components/effects/ImageDithering/ImageDithering.shaders.d.ts +12 -0
  725. package/dist/components/effects/ImageDithering/ImageDithering.shaders.js +117 -0
  726. package/dist/components/effects/ImageDithering/ImageDithering.types.d.ts +30 -0
  727. package/dist/components/effects/ImageDithering/ImageDithering.types.js +8 -0
  728. package/dist/components/effects/ImageDithering/index.d.ts +3 -0
  729. package/dist/components/effects/InteractiveCharacters/InteractiveCharacters.animations.d.ts +39 -0
  730. package/dist/components/effects/InteractiveCharacters/InteractiveCharacters.animations.js +98 -0
  731. package/dist/components/effects/InteractiveCharacters/InteractiveCharacters.d.ts +3 -0
  732. package/dist/components/effects/InteractiveCharacters/InteractiveCharacters.js +105 -0
  733. package/dist/components/effects/InteractiveCharacters/InteractiveCharacters.types.d.ts +30 -0
  734. package/dist/components/effects/InteractiveCharacters/characters/BlobCharacter.d.ts +3 -0
  735. package/dist/components/effects/InteractiveCharacters/characters/BlobCharacter.js +46 -0
  736. package/dist/components/effects/InteractiveCharacters/characters/SmallCharacter.d.ts +3 -0
  737. package/dist/components/effects/InteractiveCharacters/characters/SmallCharacter.js +46 -0
  738. package/dist/components/effects/InteractiveCharacters/characters/TallCharacter.d.ts +3 -0
  739. package/dist/components/effects/InteractiveCharacters/characters/TallCharacter.js +48 -0
  740. package/dist/components/effects/InteractiveCharacters/hooks/useBlink.d.ts +14 -0
  741. package/dist/components/effects/InteractiveCharacters/hooks/useBlink.js +42 -0
  742. package/dist/components/effects/InteractiveCharacters/hooks/useIdleAnimation.d.ts +25 -0
  743. package/dist/components/effects/InteractiveCharacters/hooks/useIdleAnimation.js +85 -0
  744. package/dist/components/effects/InteractiveCharacters/hooks/useMouseTracking.d.ts +18 -0
  745. package/dist/components/effects/InteractiveCharacters/hooks/useMouseTracking.js +36 -0
  746. package/dist/components/effects/InteractiveCharacters/index.d.ts +2 -0
  747. package/dist/components/effects/LiquidMetal/LiquidMetal.d.ts +9 -0
  748. package/dist/components/effects/LiquidMetal/LiquidMetal.js +61 -0
  749. package/dist/components/effects/LiquidMetal/LiquidMetal.shaders.d.ts +19 -0
  750. package/dist/components/effects/LiquidMetal/LiquidMetal.shaders.js +202 -0
  751. package/dist/components/effects/LiquidMetal/LiquidMetal.types.d.ts +34 -0
  752. package/dist/components/effects/LiquidMetal/LiquidMetal.types.js +9 -0
  753. package/dist/components/effects/LiquidMetal/index.d.ts +3 -0
  754. package/dist/components/effects/MagneticElement/MagneticElement.js +1 -0
  755. package/dist/components/effects/MeshGradient/MeshGradient.d.ts +25 -0
  756. package/dist/components/effects/MeshGradient/MeshGradient.js +47 -0
  757. package/dist/components/effects/MeshGradient/MeshGradient.types.d.ts +40 -0
  758. package/dist/components/effects/MeshGradient/MeshGradient.utils.d.ts +83 -0
  759. package/dist/components/effects/MeshGradient/MeshGradient.utils.js +112 -0
  760. package/dist/components/effects/MeshGradient/index.d.ts +4 -0
  761. package/dist/components/effects/Metaballs/Metaballs.d.ts +8 -0
  762. package/dist/components/effects/Metaballs/Metaballs.js +59 -0
  763. package/dist/components/effects/Metaballs/Metaballs.shaders.d.ts +10 -0
  764. package/dist/components/effects/Metaballs/Metaballs.shaders.js +102 -0
  765. package/dist/components/effects/Metaballs/Metaballs.types.d.ts +16 -0
  766. package/dist/components/effects/Metaballs/Metaballs.types.js +3 -0
  767. package/dist/components/effects/Metaballs/index.d.ts +2 -0
  768. package/dist/components/effects/Neumorphic/InsetCircleButton.d.ts +10 -0
  769. package/dist/components/effects/Neumorphic/InsetCircleButton.js +11 -0
  770. package/dist/components/effects/Neumorphic/InsetPill.d.ts +8 -0
  771. package/dist/components/effects/Neumorphic/InsetPill.js +8 -0
  772. package/dist/components/effects/Neumorphic/index.d.ts +4 -0
  773. package/dist/components/effects/NoiseOverlay/NoiseOverlay.d.ts +1 -1
  774. package/dist/components/effects/NoiseOverlay/NoiseOverlay.js +5 -4
  775. package/dist/components/effects/Overlay/Overlay.js +52 -25
  776. package/dist/components/effects/Overlay/Overlay.theme.js +1 -2
  777. package/dist/components/effects/PaperTexture/PaperTexture.d.ts +9 -0
  778. package/dist/components/effects/PaperTexture/PaperTexture.js +61 -0
  779. package/dist/components/effects/PaperTexture/PaperTexture.shaders.d.ts +22 -0
  780. package/dist/components/effects/PaperTexture/PaperTexture.shaders.js +145 -0
  781. package/dist/components/effects/PaperTexture/PaperTexture.types.d.ts +19 -0
  782. package/dist/components/effects/PaperTexture/index.d.ts +2 -0
  783. package/dist/components/effects/Particles/Particles.js +1 -0
  784. package/dist/components/effects/Particles/Particles.scene.js +1 -0
  785. package/dist/components/effects/Preloader/Preloader.animations.d.ts +23 -0
  786. package/dist/components/effects/Preloader/Preloader.animations.js +150 -0
  787. package/dist/components/effects/Preloader/Preloader.d.ts +3 -0
  788. package/dist/components/effects/Preloader/Preloader.js +120 -0
  789. package/dist/components/effects/Preloader/Preloader.types.d.ts +63 -0
  790. package/dist/components/effects/Preloader/index.d.ts +2 -0
  791. package/dist/components/effects/ProgressiveBlur/ProgressiveBlur.js +26 -14
  792. package/dist/components/effects/ProgressiveBlur/ProgressiveBlur.types.d.ts +2 -0
  793. package/dist/components/effects/PulsingBorder/PulsingBorder.d.ts +27 -0
  794. package/dist/components/effects/PulsingBorder/PulsingBorder.js +174 -0
  795. package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.d.ts +14 -0
  796. package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.js +258 -0
  797. package/dist/components/effects/PulsingBorder/PulsingBorder.types.d.ts +75 -0
  798. package/dist/components/effects/PulsingBorder/PulsingBorder.types.js +3 -0
  799. package/dist/components/effects/PulsingBorder/index.d.ts +2 -0
  800. package/dist/components/effects/ScrollReveal/ScrollReveal.js +1 -0
  801. package/dist/components/effects/Shimmer/Shimmer.d.ts +21 -0
  802. package/dist/components/effects/Shimmer/Shimmer.js +44 -0
  803. package/dist/components/effects/Shimmer/Shimmer.types.d.ts +49 -0
  804. package/dist/components/effects/Shimmer/index.d.ts +2 -0
  805. package/dist/components/effects/SmokeRing/SmokeRing.d.ts +8 -0
  806. package/dist/components/effects/SmokeRing/SmokeRing.js +62 -0
  807. package/dist/components/effects/SmokeRing/SmokeRing.shaders.d.ts +14 -0
  808. package/dist/components/effects/SmokeRing/SmokeRing.shaders.js +130 -0
  809. package/dist/components/effects/SmokeRing/SmokeRing.types.d.ts +22 -0
  810. package/dist/components/effects/SmokeRing/SmokeRing.types.js +3 -0
  811. package/dist/components/effects/SmokeRing/index.d.ts +2 -0
  812. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.d.ts +9 -0
  813. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.js +59 -0
  814. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.d.ts +14 -0
  815. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.js +129 -0
  816. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.d.ts +23 -0
  817. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.js +3 -0
  818. package/dist/components/effects/StaticGradientMesh/index.d.ts +2 -0
  819. package/dist/components/effects/StaticRadialGradient/StaticRadialGradient.d.ts +9 -0
  820. package/dist/components/effects/StaticRadialGradient/StaticRadialGradient.js +66 -0
  821. package/dist/components/effects/StaticRadialGradient/StaticRadialGradient.shaders.d.ts +13 -0
  822. package/dist/components/effects/StaticRadialGradient/StaticRadialGradient.shaders.js +169 -0
  823. package/dist/components/effects/StaticRadialGradient/StaticRadialGradient.types.d.ts +29 -0
  824. package/dist/components/effects/StaticRadialGradient/StaticRadialGradient.types.js +3 -0
  825. package/dist/components/effects/StaticRadialGradient/index.d.ts +2 -0
  826. package/dist/components/effects/StripePattern/StripePattern.d.ts +18 -0
  827. package/dist/components/effects/StripePattern/StripePattern.js +55 -0
  828. package/dist/components/effects/StripePattern/StripePattern.types.d.ts +53 -0
  829. package/dist/components/effects/StripePattern/index.d.ts +2 -0
  830. package/dist/components/effects/TiltCard/TiltCard.d.ts +12 -0
  831. package/dist/components/effects/TiltCard/TiltCard.glow.d.ts +28 -0
  832. package/dist/components/effects/TiltCard/TiltCard.glow.js +115 -0
  833. package/dist/components/effects/TiltCard/TiltCard.js +178 -0
  834. package/dist/components/effects/{SpotlightBorder/SpotlightBorder.shaders.d.ts → TiltCard/TiltCard.shaders.d.ts} +1 -1
  835. package/dist/components/effects/{SpotlightBorder/SpotlightBorder.shaders.js → TiltCard/TiltCard.shaders.js} +1 -1
  836. package/dist/components/effects/TiltCard/TiltCard.types.d.ts +88 -0
  837. package/dist/components/effects/TiltCard/index.d.ts +2 -0
  838. package/dist/components/effects/Water/Water.d.ts +9 -0
  839. package/dist/components/effects/Water/Water.js +65 -0
  840. package/dist/components/effects/Water/Water.shaders.d.ts +11 -0
  841. package/dist/components/effects/Water/Water.shaders.js +123 -0
  842. package/dist/components/effects/Water/Water.types.d.ts +25 -0
  843. package/dist/components/effects/Water/index.d.ts +2 -0
  844. package/dist/components/effects/index.d.ts +57 -16
  845. package/dist/components/effects/index.js +30 -8
  846. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.d.ts +13 -0
  847. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.js +255 -0
  848. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.types.d.ts +18 -0
  849. package/dist/components/effects/shared/ShaderCanvas/index.d.ts +2 -0
  850. package/dist/components/effects/shared/bayerMatrices.glsl.d.ts +10 -0
  851. package/dist/components/effects/shared/bayerMatrices.glsl.js +44 -0
  852. package/dist/components/effects/shared/imageUV.glsl.d.ts +12 -0
  853. package/dist/components/effects/shared/imageUV.glsl.js +26 -0
  854. package/dist/components/effects/shared/index.d.ts +7 -0
  855. package/dist/components/effects/shared/resolveShaderColor.d.ts +13 -0
  856. package/dist/components/effects/shared/resolveShaderColor.js +62 -0
  857. package/dist/components/effects/shared/resolveShaderColor.test.d.ts +1 -0
  858. package/dist/components/effects/shared/shaderNoise.glsl.d.ts +34 -0
  859. package/dist/components/effects/shared/shaderNoise.glsl.js +84 -0
  860. package/dist/components/forms/Checkbox/Checkbox.animations.d.ts +14 -0
  861. package/dist/components/forms/Checkbox/Checkbox.animations.js +54 -0
  862. package/dist/components/forms/Checkbox/Checkbox.d.ts +3 -4
  863. package/dist/components/forms/Checkbox/Checkbox.js +54 -12
  864. package/dist/components/forms/Checkbox/Checkbox.theme.js +13 -7
  865. package/dist/components/forms/Checkbox/Checkbox.types.d.ts +36 -8
  866. package/dist/components/forms/Checkbox/CheckboxContext.d.ts +14 -0
  867. package/dist/components/forms/Checkbox/CheckboxContext.js +13 -0
  868. package/dist/components/forms/Checkbox/CheckboxGroup.d.ts +3 -0
  869. package/dist/components/forms/Checkbox/CheckboxGroup.js +48 -0
  870. package/dist/components/forms/Checkbox/index.d.ts +1 -1
  871. package/dist/components/forms/ColorPicker/ColorPicker.d.ts +6 -10
  872. package/dist/components/forms/ColorPicker/ColorPicker.js +150 -27
  873. package/dist/components/forms/ColorPicker/ColorPicker.theme.js +8 -5
  874. package/dist/components/forms/ColorPicker/ColorPicker.types.d.ts +112 -5
  875. package/dist/components/forms/ColorPicker/ColorPicker2DCanvas.js +44 -6
  876. package/dist/components/forms/ColorPicker/ColorPickerBody.d.ts +7 -0
  877. package/dist/components/forms/ColorPicker/{ColorPickerContent.js → ColorPickerBody.js} +17 -14
  878. package/dist/components/forms/ColorPicker/ColorPickerContext.d.ts +4 -0
  879. package/dist/components/forms/ColorPicker/ColorPickerContext.js +13 -0
  880. package/dist/components/forms/ColorPicker/ColorPickerEyeDropper.js +5 -4
  881. package/dist/components/forms/ColorPicker/ColorPickerFormatSelector.js +2 -1
  882. package/dist/components/forms/ColorPicker/ColorPickerGradient.d.ts +7 -0
  883. package/dist/components/forms/ColorPicker/ColorPickerGradient.js +187 -0
  884. package/dist/components/forms/ColorPicker/ColorPickerHeader.d.ts +14 -0
  885. package/dist/components/forms/ColorPicker/ColorPickerHeader.js +32 -0
  886. package/dist/components/forms/ColorPicker/ColorPickerImage.d.ts +6 -0
  887. package/dist/components/forms/ColorPicker/ColorPickerImage.js +155 -0
  888. package/dist/components/forms/ColorPicker/ColorPickerInput.d.ts +0 -4
  889. package/dist/components/forms/ColorPicker/ColorPickerInput.js +54 -61
  890. package/dist/components/forms/ColorPicker/ColorPickerPresets.js +14 -12
  891. package/dist/components/forms/ColorPicker/ColorPickerSavedColors.d.ts +3 -0
  892. package/dist/components/forms/ColorPicker/ColorPickerSavedColors.js +70 -0
  893. package/dist/components/forms/ColorPicker/ColorPickerSliders.d.ts +1 -2
  894. package/dist/components/forms/ColorPicker/ColorPickerSliders.js +85 -23
  895. package/dist/components/forms/ColorPicker/ColorPickerSwatch.d.ts +1 -1
  896. package/dist/components/forms/ColorPicker/ColorPickerSwatch.js +11 -9
  897. package/dist/components/forms/ColorPicker/ColorPickerTrigger.js +22 -3
  898. package/dist/components/forms/ColorPicker/index.d.ts +9 -3
  899. package/dist/components/forms/Combobox/Combobox.js +92 -71
  900. package/dist/components/forms/Combobox/Combobox.theme.js +2 -4
  901. package/dist/components/forms/Combobox/Combobox.types.d.ts +12 -2
  902. package/dist/components/forms/DatePicker/DatePicker.animations.js +1 -0
  903. package/dist/components/forms/DatePicker/DatePicker.d.ts +6 -26
  904. package/dist/components/forms/DatePicker/DatePicker.js +10 -8
  905. package/dist/components/forms/DatePicker/DatePicker.theme.js +11 -18
  906. package/dist/components/forms/DatePicker/DatePicker.types.d.ts +28 -6
  907. package/dist/components/forms/DatePicker/DatePickerBody.d.ts +7 -0
  908. package/dist/components/forms/DatePicker/{DatePickerContent.js → DatePickerBody.js} +32 -54
  909. package/dist/components/forms/DatePicker/DatePickerContext.d.ts +29 -0
  910. package/dist/components/forms/DatePicker/DatePickerContext.js +6 -0
  911. package/dist/components/forms/DatePicker/DatePickerPresets.js +2 -1
  912. package/dist/components/forms/DatePicker/DatePickerTrigger.js +5 -4
  913. package/dist/components/forms/DatePicker/index.d.ts +2 -2
  914. package/dist/components/forms/DateRangePicker/DateRangePicker.animations.d.ts +1 -0
  915. package/dist/components/forms/DateRangePicker/DateRangePicker.d.ts +17 -0
  916. package/dist/components/forms/DateRangePicker/DateRangePicker.js +121 -0
  917. package/dist/components/forms/DateRangePicker/DateRangePicker.theme.d.ts +5 -0
  918. package/dist/components/forms/DateRangePicker/DateRangePicker.theme.js +45 -0
  919. package/dist/components/forms/DateRangePicker/DateRangePicker.types.d.ts +177 -0
  920. package/dist/components/forms/DateRangePicker/DateRangePickerBody.d.ts +6 -0
  921. package/dist/components/forms/DateRangePicker/DateRangePickerBody.js +186 -0
  922. package/dist/components/forms/DateRangePicker/DateRangePickerContext.d.ts +24 -0
  923. package/dist/components/forms/DateRangePicker/DateRangePickerContext.js +5 -0
  924. package/dist/components/forms/DateRangePicker/DateRangePickerPresets.d.ts +6 -0
  925. package/dist/components/forms/DateRangePicker/DateRangePickerPresets.js +42 -0
  926. package/dist/components/forms/DateRangePicker/DateRangePickerTrigger.d.ts +6 -0
  927. package/dist/components/forms/DateRangePicker/DateRangePickerTrigger.js +33 -0
  928. package/dist/components/forms/DateRangePicker/dateRangePresets.d.ts +5 -0
  929. package/dist/components/forms/DateRangePicker/dateRangePresets.js +59 -0
  930. package/dist/components/forms/DateRangePicker/index.d.ts +4 -0
  931. package/dist/components/forms/FileUpload/FileUpload.animations.d.ts +29 -0
  932. package/dist/components/forms/FileUpload/FileUpload.animations.js +19 -0
  933. package/dist/components/forms/FileUpload/FileUpload.js +95 -132
  934. package/dist/components/forms/FileUpload/FileUpload.theme.d.ts +2 -10
  935. package/dist/components/forms/FileUpload/FileUpload.theme.js +16 -30
  936. package/dist/components/forms/FileUpload/FileUpload.types.d.ts +41 -10
  937. package/dist/components/forms/FileUpload/FileUploadProgress.animations.d.ts +36 -0
  938. package/dist/components/forms/FileUpload/FileUploadProgress.animations.js +22 -0
  939. package/dist/components/forms/FileUpload/FileUploadProgress.d.ts +3 -0
  940. package/dist/components/forms/FileUpload/FileUploadProgress.js +119 -0
  941. package/dist/components/forms/FileUpload/FileUploadProgress.theme.d.ts +19 -0
  942. package/dist/components/forms/FileUpload/FileUploadProgress.theme.js +27 -0
  943. package/dist/components/forms/FileUpload/FileUploadProgress.types.d.ts +33 -0
  944. package/dist/components/forms/FileUpload/index.d.ts +3 -0
  945. package/dist/components/forms/FormLabel/FormLabel.js +2 -2
  946. package/dist/components/forms/FormLabel/FormLabel.theme.js +1 -1
  947. package/dist/components/forms/Input/Input.js +16 -15
  948. package/dist/components/forms/Input/Input.theme.js +24 -17
  949. package/dist/components/forms/Input/Input.types.d.ts +20 -4
  950. package/dist/components/forms/Input/index.d.ts +1 -0
  951. package/dist/components/forms/Input/inputMasks.d.ts +24 -0
  952. package/dist/components/forms/Input/inputMasks.js +61 -5
  953. package/dist/components/forms/InputAddress/InputAddress.d.ts +6 -1
  954. package/dist/components/forms/InputAddress/InputAddress.js +101 -20
  955. package/dist/components/forms/InputAddress/InputAddress.theme.js +5 -5
  956. package/dist/components/forms/InputAddress/InputAddress.types.d.ts +8 -2
  957. package/dist/components/forms/InputAddress/index.d.ts +1 -1
  958. package/dist/components/forms/InputCounter/InputCounter.d.ts +1 -1
  959. package/dist/components/forms/InputCounter/InputCounter.js +80 -54
  960. package/dist/components/forms/InputCounter/InputCounter.theme.js +1 -1
  961. package/dist/components/forms/InputCounter/InputCounter.types.d.ts +17 -3
  962. package/dist/components/forms/InputCreditCard/InputCreditCard.d.ts +1 -1
  963. package/dist/components/forms/InputCreditCard/InputCreditCard.js +33 -9
  964. package/dist/components/forms/InputCreditCard/InputCreditCard.theme.js +5 -5
  965. package/dist/components/forms/InputCreditCard/InputCreditCard.types.d.ts +9 -0
  966. package/dist/components/forms/InputCreditCard/index.d.ts +1 -0
  967. package/dist/components/forms/InputDate/InputDate.js +1 -0
  968. package/dist/components/forms/InputOTP/InputOTP.js +41 -20
  969. package/dist/components/forms/InputOTP/InputOTP.theme.js +1 -1
  970. package/dist/components/forms/InputOTP/InputOTP.types.d.ts +27 -4
  971. package/dist/components/forms/InputTag/InputTag.js +67 -50
  972. package/dist/components/forms/InputTag/InputTag.theme.js +2 -1
  973. package/dist/components/forms/InputTag/InputTag.types.d.ts +10 -2
  974. package/dist/components/forms/Mention/Mention.d.ts +1 -1
  975. package/dist/components/forms/Mention/Mention.js +505 -199
  976. package/dist/components/forms/Mention/Mention.theme.js +20 -27
  977. package/dist/components/forms/Mention/Mention.types.d.ts +75 -18
  978. package/dist/components/forms/Mention/Mention.utils.d.ts +42 -0
  979. package/dist/components/forms/Mention/Mention.utils.js +314 -0
  980. package/dist/components/forms/Mention/index.d.ts +1 -1
  981. package/dist/components/forms/Radio/Radio.animations.d.ts +10 -0
  982. package/dist/components/forms/Radio/Radio.animations.js +38 -0
  983. package/dist/components/forms/Radio/Radio.d.ts +3 -4
  984. package/dist/components/forms/Radio/Radio.js +45 -5
  985. package/dist/components/forms/Radio/Radio.theme.js +23 -11
  986. package/dist/components/forms/Radio/Radio.types.d.ts +39 -10
  987. package/dist/components/forms/Radio/RadioContext.d.ts +14 -0
  988. package/dist/components/forms/Radio/RadioContext.js +13 -0
  989. package/dist/components/forms/Radio/RadioGroup.d.ts +3 -0
  990. package/dist/components/forms/Radio/RadioGroup.js +44 -0
  991. package/dist/components/forms/Radio/index.d.ts +1 -1
  992. package/dist/components/forms/RichTextEditor/RichTextEditor.animations.js +1 -0
  993. package/dist/components/forms/RichTextEditor/RichTextEditor.d.ts +18 -0
  994. package/dist/components/forms/RichTextEditor/RichTextEditor.js +1268 -254
  995. package/dist/components/forms/RichTextEditor/RichTextEditor.theme.d.ts +53 -1
  996. package/dist/components/forms/RichTextEditor/RichTextEditor.theme.js +100 -25
  997. package/dist/components/forms/RichTextEditor/RichTextEditor.types.d.ts +69 -5
  998. package/dist/components/forms/RichTextEditor/index.d.ts +2 -2
  999. package/dist/components/forms/Select/Select.animations.js +17 -25
  1000. package/dist/components/forms/Select/Select.d.ts +6 -2
  1001. package/dist/components/forms/Select/Select.js +80 -76
  1002. package/dist/components/forms/Select/Select.theme.js +3 -3
  1003. package/dist/components/forms/Select/Select.types.d.ts +49 -8
  1004. package/dist/components/forms/Select/useSelectState.js +7 -0
  1005. package/dist/components/forms/SelectableCard/SelectableCard.d.ts +1 -1
  1006. package/dist/components/forms/SelectableCard/SelectableCard.js +43 -27
  1007. package/dist/components/forms/SelectableCard/SelectableCard.theme.js +15 -25
  1008. package/dist/components/forms/SelectableCard/SelectableCard.types.d.ts +16 -4
  1009. package/dist/components/forms/SelectableCard/SelectableCardContext.d.ts +1 -0
  1010. package/dist/components/forms/SelectableCard/SelectableCardContext.js +5 -7
  1011. package/dist/components/forms/SelectableCard/SelectableCardGroup.js +32 -10
  1012. package/dist/components/forms/SelectableCard/index.d.ts +1 -1
  1013. package/dist/components/forms/Signature/Signature.js +13 -3
  1014. package/dist/components/forms/Signature/Signature.types.d.ts +9 -3
  1015. package/dist/components/forms/Slider/Slider.js +28 -6
  1016. package/dist/components/forms/Slider/Slider.theme.js +3 -3
  1017. package/dist/components/forms/Slider/Slider.types.d.ts +2 -2
  1018. package/dist/components/forms/Switch/Switch.js +41 -21
  1019. package/dist/components/forms/Switch/Switch.theme.d.ts +36 -6
  1020. package/dist/components/forms/Switch/Switch.theme.js +45 -4
  1021. package/dist/components/forms/Switch/Switch.types.d.ts +36 -8
  1022. package/dist/components/forms/Textarea/Textarea.js +12 -3
  1023. package/dist/components/forms/Textarea/Textarea.types.d.ts +12 -4
  1024. package/dist/components/forms/TimePicker/TimePicker.d.ts +2 -12
  1025. package/dist/components/forms/TimePicker/TimePicker.js +8 -5
  1026. package/dist/components/forms/TimePicker/TimePicker.theme.js +6 -8
  1027. package/dist/components/forms/TimePicker/TimePicker.types.d.ts +21 -2
  1028. package/dist/components/forms/TimePicker/TimePickerContent.js +13 -112
  1029. package/dist/components/forms/TimePicker/TimePickerContext.d.ts +15 -0
  1030. package/dist/components/forms/TimePicker/TimePickerContext.js +6 -0
  1031. package/dist/components/forms/TimePicker/TimePickerTrigger.js +20 -6
  1032. package/dist/components/forms/TimePicker/WheelColumn.js +1 -0
  1033. package/dist/components/forms/TimePicker/useWheelPicker.js +1 -0
  1034. package/dist/components/forms/forms.theme.d.ts +1 -0
  1035. package/dist/components/forms/forms.theme.js +75 -33
  1036. package/dist/components/forms/index.d.ts +11 -11
  1037. package/dist/components/forms/index.js +21 -87
  1038. package/dist/components/generative/GenerativeView.d.ts +21 -0
  1039. package/dist/components/generative/GenerativeView.js +117 -0
  1040. package/dist/components/generative/actions.d.ts +26 -0
  1041. package/dist/components/generative/actions.js +51 -0
  1042. package/dist/components/generative/actions.test.d.ts +1 -0
  1043. package/dist/components/generative/index.d.ts +11 -0
  1044. package/dist/components/generative/index.js +9 -0
  1045. package/dist/components/generative/registry.d.ts +43 -0
  1046. package/dist/components/generative/registry.js +132 -0
  1047. package/dist/components/generative/resolvers.d.ts +35 -0
  1048. package/dist/components/generative/resolvers.js +93 -0
  1049. package/dist/components/generative/schema.generated.d.ts +2 -0
  1050. package/dist/components/generative/schema.generated.js +2054 -0
  1051. package/dist/components/generative/schemaTypes.d.ts +30 -0
  1052. package/dist/components/generative/streaming.d.ts +39 -0
  1053. package/dist/components/generative/streaming.js +283 -0
  1054. package/dist/components/generative/streaming.test.d.ts +1 -0
  1055. package/dist/components/generative/tools.d.ts +21 -0
  1056. package/dist/components/generative/tools.js +54 -0
  1057. package/dist/components/generative/tools.test.d.ts +1 -0
  1058. package/dist/components/generative/types.d.ts +41 -0
  1059. package/dist/components/generative/useGenerativeStream.d.ts +37 -0
  1060. package/dist/components/generative/useGenerativeStream.js +37 -0
  1061. package/dist/components/generative/validate.d.ts +24 -0
  1062. package/dist/components/generative/validate.js +351 -0
  1063. package/dist/components/generative/validate.test.d.ts +1 -0
  1064. package/dist/components/layout/AppShell/AppShell.d.ts +10 -0
  1065. package/dist/components/layout/AppShell/AppShell.js +85 -0
  1066. package/dist/components/layout/AppShell/AppShell.theme.d.ts +3 -0
  1067. package/dist/components/layout/AppShell/AppShell.theme.js +42 -0
  1068. package/dist/components/layout/AppShell/AppShell.types.d.ts +127 -0
  1069. package/dist/components/layout/AppShell/AppShellContext.d.ts +14 -0
  1070. package/dist/components/layout/AppShell/AppShellContext.js +20 -0
  1071. package/dist/components/layout/AppShell/AppShellFooter.d.ts +3 -0
  1072. package/dist/components/layout/AppShell/AppShellFooter.js +12 -0
  1073. package/dist/components/layout/AppShell/AppShellHeader.d.ts +3 -0
  1074. package/dist/components/layout/AppShell/AppShellHeader.js +12 -0
  1075. package/dist/components/layout/AppShell/AppShellMain.d.ts +3 -0
  1076. package/dist/components/layout/AppShell/AppShellMain.js +20 -0
  1077. package/dist/components/layout/AppShell/AppShellRightPanel.d.ts +3 -0
  1078. package/dist/components/layout/AppShell/AppShellRightPanel.js +17 -0
  1079. package/dist/components/layout/AppShell/AppShellSidebar.d.ts +3 -0
  1080. package/dist/components/layout/AppShell/AppShellSidebar.js +17 -0
  1081. package/dist/components/layout/AppShell/AppShellTopbar.d.ts +3 -0
  1082. package/dist/components/layout/AppShell/AppShellTopbar.js +12 -0
  1083. package/dist/components/layout/AppShell/index.d.ts +3 -0
  1084. package/dist/components/layout/FormLayout/FormLayout.d.ts +0 -2
  1085. package/dist/components/layout/FormLayout/FormLayout.js +14 -6
  1086. package/dist/components/layout/FormLayout/FormLayout.theme.js +2 -5
  1087. package/dist/components/layout/FormLayout/FormLayout.types.d.ts +9 -27
  1088. package/dist/components/layout/FormLayout/FormLayoutSection.js +9 -2
  1089. package/dist/components/layout/FormLayout/index.d.ts +1 -1
  1090. package/dist/components/layout/Grid/Grid.d.ts +3 -0
  1091. package/dist/components/layout/Grid/Grid.js +58 -0
  1092. package/dist/components/layout/Grid/Grid.theme.d.ts +2 -0
  1093. package/dist/components/layout/Grid/Grid.theme.js +35 -0
  1094. package/dist/components/layout/Grid/Grid.types.d.ts +71 -0
  1095. package/dist/components/layout/Grid/index.d.ts +3 -0
  1096. package/dist/components/layout/Section/Section.d.ts +3 -0
  1097. package/dist/components/layout/Section/Section.js +19 -0
  1098. package/dist/components/layout/Section/Section.theme.d.ts +2 -0
  1099. package/dist/components/layout/Section/Section.theme.js +10 -0
  1100. package/dist/components/layout/Section/Section.types.d.ts +34 -0
  1101. package/dist/components/layout/Section/index.d.ts +3 -0
  1102. package/dist/components/layout/Stack/Stack.d.ts +3 -0
  1103. package/dist/components/layout/Stack/Stack.js +27 -0
  1104. package/dist/components/layout/Stack/Stack.theme.d.ts +2 -0
  1105. package/dist/components/layout/Stack/Stack.theme.js +10 -0
  1106. package/dist/components/layout/Stack/Stack.types.d.ts +46 -0
  1107. package/dist/components/layout/Stack/index.d.ts +3 -0
  1108. package/dist/components/layout/index.d.ts +4 -1
  1109. package/dist/components/layout/index.js +10 -0
  1110. package/dist/generative.schema.json +2052 -0
  1111. package/dist/hooks/index.d.ts +2 -0
  1112. package/dist/hooks/useClickOutside.d.ts +10 -4
  1113. package/dist/hooks/useClickOutside.js +45 -24
  1114. package/dist/hooks/useDarkMode.d.ts +1 -0
  1115. package/dist/hooks/useDarkMode.js +43 -0
  1116. package/dist/hooks/useFocusTrap.js +1 -0
  1117. package/dist/hooks/useFormStateMachine.d.ts +1 -1
  1118. package/dist/hooks/useIsClient.js +1 -0
  1119. package/dist/hooks/useMediaQuery.d.ts +5 -0
  1120. package/dist/hooks/useMediaQuery.js +22 -0
  1121. package/dist/hooks/useNetworkStatus.d.ts +0 -4
  1122. package/dist/hooks/useNetworkStatus.js +2 -5
  1123. package/dist/hooks/useOverlay.d.ts +2 -0
  1124. package/dist/hooks/useOverlay.js +39 -4
  1125. package/dist/hooks/useScaleBackground.js +6 -2
  1126. package/dist/hooks/useSelectPortal.d.ts +12 -2
  1127. package/dist/hooks/useSelectPortal.js +175 -56
  1128. package/dist/hooks/useSlidingNumber.js +1 -0
  1129. package/dist/hooks/useStreamingSSE.d.ts +0 -5
  1130. package/dist/hooks/useStreamingSSE.js +1 -5
  1131. package/dist/hooks/useTypewriter.js +1 -0
  1132. package/dist/index.d.ts +1 -2
  1133. package/dist/index.js +59 -71
  1134. package/dist/registry.json +11469 -0
  1135. package/dist/shadcn-compat.css +80 -0
  1136. package/dist/styles.css +1 -1
  1137. package/dist/test/render.d.ts +11 -0
  1138. package/dist/test/setup.d.ts +1 -0
  1139. package/dist/theme/SurfaceContext.d.ts +98 -0
  1140. package/dist/theme/SurfaceContext.js +114 -0
  1141. package/dist/theme/ThemeContext.js +19 -0
  1142. package/dist/theme/animations.d.ts +75 -0
  1143. package/dist/theme/animations.js +132 -0
  1144. package/dist/theme/index.d.ts +5 -0
  1145. package/dist/theme.css +24 -0
  1146. package/dist/tools.json +2154 -0
  1147. package/dist/utils/actionQueue.d.ts +0 -4
  1148. package/dist/utils/actionQueue.js +1 -4
  1149. package/dist/utils/cn.js +21 -1
  1150. package/dist/utils/colorUtils.d.ts +53 -0
  1151. package/dist/utils/colorUtils.js +90 -0
  1152. package/dist/utils/dateUtils.js +81 -15
  1153. package/dist/utils/formatUtils.d.ts +10 -0
  1154. package/dist/utils/formatUtils.js +24 -0
  1155. package/dist/utils/index.d.ts +3 -1
  1156. package/dist/utils/paletteGenerator.d.ts +46 -0
  1157. package/dist/utils/performanceMonitor.js +1 -0
  1158. package/dist/utils/smoothScrollUtils.js +1 -0
  1159. package/dist/utils/stateMachine.d.ts +4 -4
  1160. package/package.json +83 -32
  1161. package/src/global.scss +1014 -0
  1162. package/src/styles/theme.css +838 -0
  1163. package/tailwind.preset.cjs +32 -3
  1164. package/dist/components/ai/ApprovalCard/ApprovalCard.d.ts +0 -3
  1165. package/dist/components/ai/ApprovalCard/ApprovalCard.js +0 -15
  1166. package/dist/components/ai/ApprovalCard/ApprovalCard.theme.d.ts +0 -13
  1167. package/dist/components/ai/ApprovalCard/ApprovalCard.theme.js +0 -15
  1168. package/dist/components/ai/ApprovalCard/ApprovalCard.types.d.ts +0 -43
  1169. package/dist/components/ai/ApprovalCard/index.d.ts +0 -2
  1170. package/dist/components/ai/MessageHistory/MessageHistory.d.ts +0 -18
  1171. package/dist/components/ai/MessageHistory/MessageHistory.js +0 -97
  1172. package/dist/components/ai/MessageHistory/MessageHistory.theme.d.ts +0 -2
  1173. package/dist/components/ai/MessageHistory/MessageHistory.theme.js +0 -8
  1174. package/dist/components/ai/MessageHistory/MessageHistory.types.d.ts +0 -94
  1175. package/dist/components/ai/MessageHistory/index.d.ts +0 -3
  1176. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.animations.d.ts +0 -10
  1177. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.animations.js +0 -47
  1178. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.d.ts +0 -20
  1179. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.js +0 -55
  1180. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.theme.d.ts +0 -2
  1181. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.theme.js +0 -20
  1182. package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.types.d.ts +0 -67
  1183. package/dist/components/ai/ThinkingIndicator/index.d.ts +0 -3
  1184. package/dist/components/charts/shared/BarRenderer/index.d.ts +0 -3
  1185. package/dist/components/charts/shared/ChartContainer/ChartContainer.d.ts +0 -85
  1186. package/dist/components/charts/shared/ChartContainer/index.d.ts +0 -3
  1187. package/dist/components/charts/shared/ChartLegend/ChartLegendContent.d.ts +0 -7
  1188. package/dist/components/charts/shared/ChartLegend/ChartLegendContent.js +0 -18
  1189. package/dist/components/charts/shared/LineRenderer/index.d.ts +0 -2
  1190. package/dist/components/core/Accordion/AccordionContent.d.ts +0 -3
  1191. package/dist/components/core/Button/Button.animations.d.ts +0 -5
  1192. package/dist/components/core/Card/CardContent.d.ts +0 -3
  1193. package/dist/components/core/Card/CardContent.js +0 -11
  1194. package/dist/components/core/Carousel/CarouselContent.d.ts +0 -4
  1195. package/dist/components/core/ContextMenu/ContextMenuContent.d.ts +0 -6
  1196. package/dist/components/core/ContextMenu/ContextMenuSubContent.d.ts +0 -6
  1197. package/dist/components/core/Drawer/DrawerContent.d.ts +0 -5
  1198. package/dist/components/core/Loader/Loader.d.ts +0 -24
  1199. package/dist/components/core/Loader/Loader.js +0 -57
  1200. package/dist/components/core/Loader/Loader.theme.d.ts +0 -27
  1201. package/dist/components/core/Loader/Loader.theme.js +0 -60
  1202. package/dist/components/core/Loader/Loader.types.d.ts +0 -71
  1203. package/dist/components/core/Loader/index.d.ts +0 -2
  1204. package/dist/components/core/Message/MessageContent.d.ts +0 -8
  1205. package/dist/components/core/Popover/Popover.animations.js +0 -13
  1206. package/dist/components/core/Popover/PopoverContent.d.ts +0 -7
  1207. package/dist/components/core/Popover/PopoverContent.js +0 -136
  1208. package/dist/components/core/Sidebar/SidebarSubmenu.d.ts +0 -7
  1209. package/dist/components/core/Sidebar/SidebarSubmenu.js +0 -12
  1210. package/dist/components/core/SocialIcon/SocialIcon.d.ts +0 -3
  1211. package/dist/components/core/SocialIcon/SocialIcon.js +0 -30
  1212. package/dist/components/core/SocialIcon/SocialIcon.theme.d.ts +0 -2
  1213. package/dist/components/core/SocialIcon/SocialIcon.theme.js +0 -12
  1214. package/dist/components/core/SocialIcon/SocialIcon.types.d.ts +0 -18
  1215. package/dist/components/core/SocialIcon/index.d.ts +0 -2
  1216. package/dist/components/core/Tabs/TabsContent.d.ts +0 -6
  1217. package/dist/components/effects/MorphingText/MorphingText.d.ts +0 -17
  1218. package/dist/components/effects/MorphingText/MorphingText.js +0 -91
  1219. package/dist/components/effects/MorphingText/MorphingText.types.d.ts +0 -18
  1220. package/dist/components/effects/MorphingText/index.d.ts +0 -2
  1221. package/dist/components/effects/ParallaxSection/ParallaxSection.d.ts +0 -26
  1222. package/dist/components/effects/ParallaxSection/ParallaxSection.js +0 -71
  1223. package/dist/components/effects/ParallaxSection/ParallaxSection.types.d.ts +0 -11
  1224. package/dist/components/effects/ParallaxSection/index.d.ts +0 -2
  1225. package/dist/components/effects/Spotlight/Spotlight.d.ts +0 -36
  1226. package/dist/components/effects/Spotlight/Spotlight.js +0 -112
  1227. package/dist/components/effects/Spotlight/Spotlight.types.d.ts +0 -29
  1228. package/dist/components/effects/Spotlight/index.d.ts +0 -2
  1229. package/dist/components/effects/SpotlightBorder/SpotlightBorder.d.ts +0 -18
  1230. package/dist/components/effects/SpotlightBorder/SpotlightBorder.js +0 -214
  1231. package/dist/components/effects/SpotlightBorder/SpotlightBorder.types.d.ts +0 -61
  1232. package/dist/components/effects/SpotlightBorder/index.d.ts +0 -2
  1233. package/dist/components/effects/StickyScroll/StickyScroll.d.ts +0 -30
  1234. package/dist/components/effects/StickyScroll/StickyScroll.js +0 -128
  1235. package/dist/components/effects/StickyScroll/StickyScroll.types.d.ts +0 -19
  1236. package/dist/components/effects/StickyScroll/index.d.ts +0 -2
  1237. package/dist/components/forms/ColorPicker/ColorPickerContent.d.ts +0 -7
  1238. package/dist/components/forms/CronInput/CronInput.d.ts +0 -3
  1239. package/dist/components/forms/CronInput/CronInput.js +0 -107
  1240. package/dist/components/forms/CronInput/CronInput.theme.d.ts +0 -6
  1241. package/dist/components/forms/CronInput/CronInput.theme.js +0 -84
  1242. package/dist/components/forms/CronInput/CronInput.types.d.ts +0 -98
  1243. package/dist/components/forms/CronInput/CronInput.utils.d.ts +0 -67
  1244. package/dist/components/forms/CronInput/CronInput.utils.js +0 -505
  1245. package/dist/components/forms/CronInput/index.d.ts +0 -4
  1246. package/dist/components/forms/DatePicker/DatePickerContent.d.ts +0 -7
  1247. package/dist/components/forms/TransferList/TransferList.animations.d.ts +0 -10
  1248. package/dist/components/forms/TransferList/TransferList.animations.js +0 -32
  1249. package/dist/components/forms/TransferList/TransferList.d.ts +0 -28
  1250. package/dist/components/forms/TransferList/TransferList.js +0 -199
  1251. package/dist/components/forms/TransferList/TransferList.theme.d.ts +0 -6
  1252. package/dist/components/forms/TransferList/TransferList.theme.js +0 -60
  1253. package/dist/components/forms/TransferList/TransferList.types.d.ts +0 -101
  1254. package/dist/components/forms/TransferList/index.d.ts +0 -3
  1255. package/dist/components/layout/FormLayout/FormLayoutBody.d.ts +0 -3
  1256. package/dist/components/layout/FormLayout/FormLayoutBody.js +0 -91
  1257. package/dist/components/layout/FormLayout/FormLayoutHeader.d.ts +0 -3
  1258. package/dist/components/layout/FormLayout/FormLayoutHeader.js +0 -12
  1259. package/dist/components/layout/PageLayout/PageLayout.d.ts +0 -7
  1260. package/dist/components/layout/PageLayout/PageLayout.js +0 -33
  1261. package/dist/components/layout/PageLayout/PageLayout.theme.d.ts +0 -2
  1262. package/dist/components/layout/PageLayout/PageLayout.theme.js +0 -10
  1263. package/dist/components/layout/PageLayout/PageLayout.types.d.ts +0 -39
  1264. package/dist/components/layout/PageLayout/PageLayoutContent.d.ts +0 -3
  1265. package/dist/components/layout/PageLayout/PageLayoutContent.js +0 -12
  1266. package/dist/components/layout/PageLayout/PageLayoutHeader.d.ts +0 -3
  1267. package/dist/components/layout/PageLayout/PageLayoutHeader.js +0 -12
  1268. package/dist/components/layout/PageLayout/PageLayoutSidebar.d.ts +0 -3
  1269. package/dist/components/layout/PageLayout/PageLayoutSidebar.js +0 -12
  1270. package/dist/components/layout/PageLayout/index.d.ts +0 -3
  1271. package/dist/icons/Icon.d.ts +0 -24
  1272. package/dist/icons/Icon.js +0 -30
  1273. package/dist/icons/Index.d.ts +0 -16
  1274. package/dist/icons/core/ChevronUpDown.d.ts +0 -1
  1275. package/dist/icons/core/ChevronUpDown.js +0 -7
  1276. package/dist/icons/core/DollarIcon.d.ts +0 -1
  1277. package/dist/icons/core/DollarIcon.js +0 -5
  1278. package/dist/icons/core/LockIcon.d.ts +0 -1
  1279. package/dist/icons/core/LockIcon.js +0 -5
  1280. package/dist/icons/core/MinusIcon.d.ts +0 -1
  1281. package/dist/icons/core/MinusIcon.js +0 -7
  1282. package/dist/icons/core/PlusIcon.d.ts +0 -1
  1283. package/dist/icons/core/PlusIcon.js +0 -7
  1284. package/dist/icons/core/SearchIcon.d.ts +0 -1
  1285. package/dist/icons/core/SearchIcon.js +0 -7
  1286. package/dist/icons/core/TickIcon.d.ts +0 -1
  1287. package/dist/icons/core/TickIcon.js +0 -5
  1288. package/dist/icons/core/User.d.ts +0 -1
  1289. package/dist/utils/useClickOutside.d.ts +0 -1
  1290. /package/dist/components/ai/{PromptSuggestions → PromptSuggestion}/PromptSuggestion.d.ts +0 -0
  1291. /package/dist/components/ai/{PromptSuggestions → PromptSuggestion}/PromptSuggestion.theme.d.ts +0 -0
  1292. /package/dist/components/ai/{PromptSuggestions → PromptSuggestion}/PromptSuggestion.types.d.ts +0 -0
  1293. /package/dist/components/ai/{PromptSuggestions → PromptSuggestion}/index.d.ts +0 -0
  1294. /package/dist/components/core/{SocialIcon → Icon/data}/platforms.d.ts +0 -0
  1295. /package/dist/components/core/{SocialIcon → Icon/data}/platforms.js +0 -0
  1296. /package/dist/components/effects/{SpotlightBorder/SpotlightBorder.types.js → TiltCard/TiltCard.types.js} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1184 @@
1
+ # Changelog
2
+
3
+ All notable changes to Flikkui will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.0.0-beta.30] - 2026-07-04
9
+
10
+ ### Breaking Changes
11
+
12
+ - **`glass` variant removed** — `Alert`, `Toast`, and `Metric` no longer ship a `glass` variant. The `AlertVariant` / `ToastVariant` types (and the `variant` prop on `Alert`, `Toast`, `useToast` options, and `ToastData`) are removed entirely — `Alert` and `Toast` are now single-look components. `MetricVariant` drops `glass` (now `'filled' | 'ghost'`), and `MetricTheme`/`MetricThemeOverrides` drop `iconGlassShadows`. Migration: remove any `variant="glass"` / `variant="default"` props from these components; for a glass look compose `GlassEffect`/`GlassSurface` manually.
13
+ - **`PageLayout` removed** — The `PageLayout` compound component (`PageLayout.Sidebar` / `.Header` / `.Content`) is removed from the library, barrel exports, docs, and the MCP registry. It was superseded by `AppShell` (beta.27), which covers the same full-viewport layout with region sub-components. Migration: replace `PageLayout` with `AppShell` (`Sidebar` → `AppShell.Sidebar`, `Header` → `AppShell.Header`, `Content` → `AppShell.Main`).
14
+ - **`Button` — `link` variant removed** — `ButtonVariant` is now `'filled' | 'outline' | 'soft' | 'ghost'`. Use the `Link` component for text-action affordances. `Link` is now **polymorphic by behavior**: pass `href` to render an `<a>`, omit it (with `onClick`) to render a real `<button>` styled as a link, and it gains `color` (shared `SemanticColor`), `type`, `target`, and `rel`. `LinkProps` now extends `HTMLAttributes<HTMLElement>` (was `AnchorHTMLAttributes<HTMLAnchorElement>`).
15
+ - **`Button` — `error` state removed** — `ButtonState` is now `'default' | 'disabled' | 'loading'`. Form errors belong on form controls via `state="invalid"` + `errorMessage`, not on the action button. The loading state was also reworked: loading now resolves *before* disabled so a loading button keeps its color instead of desaturating; the spinner uses `border-current` so it inherits the button's text color (the `-contrast` token on filled variants — no hardcoded white, so it stays visible under brand overrides and dark mode); the button emits `aria-busy` while loading and uses `cursor-wait`.
16
+ - **`Button` — `color` narrowed to `'neutral' | 'primary' | 'danger'`** — `success`/`warning` removed from `ButtonColor` (they remain on the shared `SemanticColor` set for Badge/Alert/Toast/KPI/etc., which are status indicators, not actions). Migration: replace `color="success"`/`color="warning"` on `Button` with `color="primary"` (or `"danger"` if the action itself is destructive/negative). The generative schema was regenerated accordingly, so `Button` no longer offers `success`/`warning` there either.
17
+ - **`InputAddress` / `InputCreditCard` — group-led invalid state** — Composite inputs now take a consolidated `state="invalid"` + `errorMessage` on the group (`aria-invalid`/`aria-errormessage` on the `<fieldset>`), painted as one red perimeter overlay around the stitched fields instead of reddening each field; the message renders once with `role="alert"` and self-clears on the next edit. Per-field `helperText` was stripped. `InputAddress` gains top-level `state`/`errorMessage`, and its `countryInputProps` changed type from `Omit<InputProps, 'ref'>` to `Partial<SelectProps<string>>` (the country field is a `Select` — pass `searchable`, `placement`, etc.). `InputCreditCard`'s `error` prop is deprecated in favor of `errorMessage` (kept as an alias for now). Interior 1px seams between fields no longer double up, and a focused field lifts its own ring above its neighbors.
18
+ - **`StackedBarChart` — default `variant` is now `"gradient"`** — matches `BarChart`/`AreaChart` (premium per-segment gradient + lift shadow + hover glow). Pass `variant="default"` for the previous flat fills.
19
+ - **`LineChart` — `secondary` removed from its `SemanticColor`** — the chart `color` prop type is now `'primary' | 'success' | 'warning' | 'danger'` (the `secondary` semantic was already removed library-wide; use `neutral`/an explicit color).
20
+ - **Charts — multi-series legends render by default** — With the new shared legend (see Added), omitting `legend` resolves to `'bottom'` for multi-series `config` (previously these charts rendered no legend at all) and `'none'` for single-series. Pass `legend="none"` to keep legendless multi-series charts.
21
+ - **Charts — legend internals replaced** — The unused Recharts-style `ChartLegendContent` component and `ChartLegendContentProps` type are no longer exported from `@flikk/ui/charts`, and `ChartLegendProps` changed shape (now `{ items: ChartLegendItem[]; className? }` — an already-resolved `{key, label, color}` list). `RadarChartThemeOverrides` drops its bespoke legend styling keys (`legendStyle`, `legendItemStyle`, `legendDotStyle`, `legendLabelStyle`) — legends are now styled once via the shared `chartTheme.legend`. The dead shared `BarRenderer` / `LineRenderer` renderers were removed (the Combo variants now live under `ComboChart` internals).
22
+ - **`ActivityRings` — `variant` prop removed** — `variant` was declared on `ActivityRingsProps` but silently ignored (a ring chart has no variant concept), so it has been removed from the type entirely. Rendering is unchanged; migration is deleting the prop. Type-level break only. (#50)
23
+ - **`Table` — `data`/`columns` now win over `children`** — Passing both the data-driven and compound APIs previously let `children` silently win; per the library-wide collection contract (`items`/`data` wins, with a dev warning), `data`/`columns` now take precedence. Output changes only for consumers who were passing both — pick one API. (#54)
24
+
25
+ ### Added
26
+
27
+ - **Relative-elevation surface engine** — New `SurfaceProvider`, `useSurfaceLevel` / `useSurfaceElevation`, and `surfaceClasses` exported from the theme entry: surfaces read the rung they sit on and paint `substrate + offset` (clamped 1–8), so overlays lift *relative to their host* at runtime — anchored overlays (Dropdown, Popover, Select, Tooltip) lift `+2` over wherever they open; grounded overlays (Modal, Drawer, CommandPalette, Toast) paint a fixed rung. Override is first-class: `elevation` prop (re-bases children too) › `ground`/`lift={false}` › auto lift; `className` always wins for the element's own paint. See `docs/SURFACE_ELEVATION.md`.
28
+ - **Effects — 18 in-house WebGL2 shader effects** — Ported from paper-design/shaders (Apache 2.0) and built in-house so every color prop stays CSS-variable/theme-aware: 10 generative backgrounds (`Dithering`, `GradientMesh`, `StaticGradientMesh`, `StaticRadialGradient`, `Metaballs`, `ColorPanels`, `SmokeRing`, `GodRays`, `GrainGradient`, `PulsingBorder`), 2 dual-mode shape effects (`LiquidMetal`, `GemSmoke`), and 6 image filters (`Water`, `ImageDithering`, `PaperTexture`, `FlutedGlass`, `HalftoneDots`, `HalftoneCmyk`). All exported from `@flikk/ui/effects`. Built on shared shader infrastructure (generalized from `AIOrb.Aura`): tab-visibility RAF pause, image-texture loading, and a `resolveShaderColor` that normalizes any CSS color syntax — including `oklch()` and `var(--…)` theme tokens.
29
+ - **`MeshGradient`** — New effect in `@flikk/ui/effects`: a deterministic seed → marble-gradient tile (faithful SVG port of boring-avatars' marble — base rect + two Gaussian-blurred signature paths, transformed per seed; blur is in viewBox units so it's resolution-independent). Props: `seed`, `colors` (any CSS colors incl. theme vars), `blendMode`, `animated`, `noise` (grain overlay, default on). Also exports `MESH_PALETTES` / `MESH_PALETTE_BY_NAME` / `pickPalette` (curated palettes, `MeshPaletteName`) and `getMeshTextTone(seed)` — the readable text tone for a seed's gradient.
30
+ - **`Shimmer`** — New effect in `@flikk/ui/effects`: CSS-only shimmer with two variants — `text` (the "AI thinking" text-clip highlight sweep) and `surface` (a highlight band sweeping across a loading placeholder box). Polymorphic `as` prop, `active` toggle (freeze without unmounting), `duration`/band-width controls; respects `prefers-reduced-motion`; tokens themeable with a dark-mode override.
31
+ - **`Avatar` / `Badge` — mesh-gradient background** — `Avatar` gains a `gradient` prop (`boolean | string` seed) rendering a deterministic `MeshGradient` as its background layer — the image sits over it, initials overlay on top, with the initials color picked automatically from the gradient's luminance (via `getMeshTextTone`) so it stays legible on light and dark gradients alike. Plus palette controls: `gradientVariant` (curated `MeshPaletteName`) and `gradientColors` (raw CSS color override). `Badge`'s avatar slot gains the same `gradient` / `gradientVariant` / `gradientColors` for imageless person chips.
32
+ - **`PulsingBorder` — px-first geometry, neon glow, sweep animation** — New px-based props that stay constant at any element size: `radius` and `borderWidth` (the size-relative `roundness`/`thickness` remain, with exported `pxToRoundness`/`pxToThickness` converters), `glow` (one-sided neon falloff radiating outward from the line, lit by the moving spots), `offset` (gap between the host edge and the line), and `lineOpacity` (an always-visible hairline tracing the full border, gradient-tinted through `colors`). New `animation="sweep"`: a single soft beam orbits the border at constant speed, its color gliding through the `colors` ramp each lap — the default `"pulse"` keeps the original flickering-spots look.
33
+ - **Charts — `legend` prop + shared `ChartLegend`** — Every Cartesian chart (`AreaChart`, `BarChart`, `LineChart`, `StackedBarChart`, `ComboChart`) plus `ScatterPlot`/`RadarChart` now renders one shared, consistently-styled legend, controlled by `legend?: 'top' | 'bottom' | 'none'` on the standard chart props. Swatch colors come from each chart's own series-color resolver, so the legend always matches the plot. (Default behavior change — see Breaking Changes.)
34
+ - **RSC / Next.js App Router support** — dist now ships a `"use client"` directive on every client module (via `rollup-plugin-preserve-directives` + preserved modules), so App Router consumers can import components directly in server files with no client wrapper re-exports. Server-safe modules (`.types.ts`, `.theme.ts`, pure utils/validators) deliberately stay unmarked so server components can import them with zero client JS; a new build-time audit (`scripts/audit-use-client.mjs`) fails the build if coverage drifts.
35
+ - **`Grid` / `Stack` — polymorphic `as`** — Both accept `as?: LayoutTag` to swap the rendered `<div>` for a semantic tag (`ul`/`ol`/`nav`/`section`/`header`/`footer`/`aside`/`form`/`fieldset`) — e.g. a stack of nav links as `as="nav"`, a grid of cards announced as a list via `as="ul"`. Curated string union (not `React.ElementType`) so it stays JSON-serializable for the generative-UI schema.
36
+ - **`Accordion` — `items` data API + disabled items** — Accepts a serializable `items?: AccordionItemData[]` (`{ value, title, content?, className? }`) alongside the compound API, rendering through the same `Accordion.Item`/`Trigger`/`Body` primitives (one render path); `items` wins over `children` with a dev warning. Joins the sanctioned Dual-API set (Table, Timeline, DescriptionList, Feed). `Accordion.Item` also accepts `disabled`: the trigger renders natively disabled and roving arrow-key navigation skips it.
37
+ - **`PageHeading` — slot-props** — Accepts flat `title` / `subtitle` / `actions` slot-props composing the real `Title`/`Subtitle`/`Actions` sub-parts (managed mode), alongside the unchanged compound API — mirrors `Card`/`Section`.
38
+ - **Generative UI — curated set 22 → 30** — Eight components join the generative registry/schema: collections `Breadcrumbs`, `AvatarGroup`, `Accordion`, plus leaves `Empty`, `Rating`, `Pill`, `Tag`, and `PageHeading` (slot-prop header). Schema, tool def, and runtime `defaultRegistry` regenerated in the same pass.
39
+ - **`ContextMenu` — `startContent` slot** — `ContextMenu.Item` and `SubTrigger` gain a `startContent` leading-icon slot rendered in its own flex slot. The checked tick of checkable items now occupies the same leading gutter (with a spacer when unchecked), so checkable rows align with icon rows and labels never shift on toggle; `aria-checked`/`data-checked` are only emitted for actually-checkable items.
40
+ - **Forms — `errorMessage` on the whole family** — `Input`, `Textarea`, `InputDate`, `InputOTP`, `InputCounter`, `DateRangePicker`, `ColorPicker`, `RichTextEditor`, and `Signature` gain `errorMessage?: ReactNode`, completing the standard form error pattern. It takes precedence over `helperText` in the invalid state and is wired to `aria-describedby`/`aria-invalid` with `role="alert"` on the message; `helperText` behavior is unchanged when absent. (#52)
41
+ - **Forms — mask/validate split for expiry dates** — `formatExpiryDate` now clamps the month as you type (component owns format only); business validity stays the consumer's via new exported pure validators `isValidExpiryDate` / `isValidMonth`. `inputTheme` is also re-exported from the forms barrel.
42
+ - **`Calendar` — full keyboard grid navigation** — Roving tabindex plus arrow-key day navigation per the APG grid pattern. (#53)
43
+ - **`colorUtils` — contrast helpers** — New pure, dependency-free helpers: `hexToRgb`, `relativeLuminance` (WCAG), and `contrastTone(bg, { threshold })` → `"light" | "dark"` — picks the higher-contrast text tone for a background (accepts an array of colors and averages luminance, for gradients; `threshold` defaults to the WCAG 0.179 black/white crossover).
44
+ - **Automated test infrastructure** — Vitest 3 + React Testing Library + jest-axe on jsdom, with `yarn test` / `yarn test:watch`, shared `renderWithProviders` test utils, ResizeObserver/matchMedia polyfills, and the library's first CI workflow (typecheck, lint, test, build on every push/PR); `prepublishOnly` now runs the suite. (#39)
45
+ - **Library-wide test backfill** — ~2,200 tests across ~155 co-located `*.test.tsx` files covering every component category (forms, overlays, core interactive, display + data-display, charts, AI + layout, effects, NodeCanvas, generative engine) at WAI-ARIA APG depth: full keyboard matrices, controlled/uncontrolled parity with exact `onChange` payloads, resolved `aria-describedby`/`aria-errormessage` contracts, and jest-axe across states. The backfill pinned every defect fixed below; the full suite is deterministic under parallel runs (three.js-backed suites isolated into a sequential Vitest project). (#40–#48, #54)
46
+
47
+ ### Changed
48
+
49
+ - **Theme polish pass** — Toast, Pill, Badge, Radio, and related themes migrated to the shared surface/interaction tokens (`--color-surface*`, `--color-surface-hover`, `--color-border-hover`, `shadow-real-*`) and off bespoke per-step neutrals and the deprecated `--color-background-secondary` / `secondary` colors. Badge `soft`/`filled` now keep a transparent 1px border (consistent height); semantic fills drive from the mode-aware base var so auto-derived `-contrast` text stays readable. `FunnelChart` reworked visually (gradient fills, soft `Badge` callouts). Chart animation timings consolidated into `charts/utils/animation-utils.ts`.
50
+ - **Outline borders — full-color, library-wide** — `outline` variant borders are now color-matched per semantic color: `neutral` → `--color-border-secondary` (hueless, full-weight — no longer the faint `--color-border` hairline); `primary`/`success`/`warning`/`danger` → `border-[var(--color-{color}-600)]` (+ `-400` in dark), matching the text. Applies to `Button` (neutral only changed) and `Badge` (all five colors). Visual diff for outline Badges/Buttons.
51
+ - **Forms — invalid-state visual unified** — Invalid now paints a danger border + faint danger ring with **no surface fill** (previously a danger-50 background tint) — one treatment across single fields, OTP slots, and the new composite-group perimeter overlay.
52
+ - **`PulsingBorder` — self-configuring fit (visual behavior change)** — With no sizing props, the corner radius now auto-matches the host element's computed CSS `border-radius` (previously a fixed `roundness` of `0.4`), and the border line now sits fully *outside* the host (inner edge touching) so it never overlaps card content. The wrapper auto-expands past the host by exactly the room the soft band/glow needs, so the halo always fades out instead of cropping at the host edge. Existing usages will render slightly differently by default; pass explicit `roundness` and `margin` to approximate the old inside-the-box look.
53
+ - **Circular dependencies eliminated library-wide** — All 34 module cycles across 10 compound-component families (Accordion, Modal, Drawer, Animated, Table, Timeline, GanttChart, DatePicker, DateRangePicker, TimePicker) are gone: contexts extracted to dedicated `[Name]Context.ts` modules with the root files re-exporting the moved names, so public import paths are unchanged. Consumers' bundlers no longer emit circular-dependency warnings for `@flikk/ui`.
54
+ - **`NodeCanvas` — render-performance contract documented** — The split-context memoization (per-frame state vs. stable API contexts, memoized node/edge renderers: a graph update re-renders only the changed node; pan/zoom re-renders none) is now documented in `docs/NODE_CANVAS.md` — keep your `nodeTypes` map referentially stable or the memoization is defeated. The `NodeCanvasEditorLayout` reference story was reworked to demonstrate it.
55
+ - **`Segmented` — `data-state` attribute** — Items now emit `data-state="active|inactive"` alongside the existing `data-selected`, matching the library-wide `data-[state=*]` styling convention. `data-selected` is kept for one deprecation cycle. (#54)
56
+ - **`Tag` — spacing polish** — Tighter remove-button hit area, balanced avatar/icon left inset, and adjusted `md` padding.
57
+
58
+ ### Fixed
59
+
60
+ - **Charts — rules-of-hooks crashes** — `AreaChart`, `LineChart`, `StackedBarChart`, and `ActivityRings` threw "Rendered more/fewer hooks than during the previous render" when their data transitioned between empty and populated (early returns sat mid-hook-sequence); a follow-up sweep fixed the remaining conditional-hook sites in `Table`'s filter row and `Sidebar` navigation. (#50)
61
+ - **Charts — empty data no longer renders as an error** — `BarChart`, `StackedBarChart`, and `ComboChart` misclassified `data={[]}` as invalid and showed the red "Invalid Chart Data" panel; empty data now reaches the proper empty state. Genuinely invalid (non-numeric) data still errors. (#50)
62
+ - **`Heatmap` — standalone crash + grid semantics** — No longer throws when used with directly-passed `data`/`config` outside a chart container (its documented contract). Also emits a valid `grid > row > gridcell` structure for assistive tech with no visual change. (#50, #54)
63
+ - **`ComboChart` — `variant` now applied** — The declared `variant` prop was silently dropped; it now threads through to the bar renderer (line glow remains always-on, matching `LineChart`). (#50)
64
+ - **`Combobox` — opening no longer filters by the selected label** — With a value selected, opening the listbox previously narrowed it to the single already-selected match (the selected label doubles as the input text). The list now stays full on open and only filters once the user actually types, matching `Select` and the WAI-ARIA editable-combobox pattern.
65
+ - **`Checkbox` / `Radio` — rest props reach the `<input>`** — `aria-label` and other rest props were spread onto the wrapper `<div>`, leaving the actual control unlabeled (this surfaced in `Table`'s row-select checkboxes). Rest props now land on the `<input>`; `className` stays on the wrapper. (#51)
66
+ - **`Toast` — per-toast live regions** — Only the container had `aria-live`; each toast now carries `role="alert"` (danger/warning) or `role="status"` (info/success) so screen readers announce exactly once, with per-toast urgency. (#51)
67
+ - **`Toast` — timer resume** — Hovering or expanding a toast now resumes the *remaining* auto-dismiss time instead of restarting the full countdown on every hover/expand toggle.
68
+ - **A11y — labels on roleless elements** — `Avatar` now actually renders its computed `role` (fallback-initials avatars and consumer `role="img"` are honored); `SlidingNumber` gets `role="img"`; `Message`'s status indicator moves its label to an sr-only text node with the glyph `aria-hidden`. (#51)
69
+ - **`InputTag` — paste and reopen bugs** — Pasting comma-separated values committed only the last tag (stale-closure loop); all values now commit in one update, respecting `maxTags` and dedup. The suggestion dropdown also no longer reopens immediately after a click selection. (#52)
70
+ - **`DateRangePicker` — controlled mode drift** — Internal state no longer updates when a `value` prop is provided; `onChange` always fires. (#52)
71
+ - **`Signature` — `onChange` while disabled** — Pointer-up no longer fires `onChange` on a disabled signature pad. (#52)
72
+ - **Date formatting — March/May mangled** — `formatDateCustom` ran sequential replaces that re-matched the "M" inside already-substituted month names ("Mar" → "3ar"); formatting is now a single tokenized pass. Affects date display across the date/time inputs. (#52)
73
+ - **Forms — combobox roles and names** — `TimePicker`, `ColorPicker`, `InputTag` (with suggestions), and `Mention` triggers get proper `role="combobox"` + `aria-controls`; `InputOTP` slots get indexed labels ("Digit N of M"); `Slider` sets `aria-invalid`; `Pill` no longer dev-warns on every selectable-less pill. (#52)
74
+ - **`Checkbox` — standalone invalid** — A standalone invalid checkbox now emits `aria-invalid`.
75
+ - **Nested overlays — six more overlays join the portal guard** — `TimePicker`, `DatePicker`, `DateRangePicker`, `Mention`, `InputTag`, and `RichTextEditor` portals now carry `data-flikkui-portal`, so picking a value inside one of them no longer dismisses an ancestor overlay (Popover/Modal/Drawer).
76
+ - **`Dropdown` — nested overlay dismissal** — Picking an option in a portaled `Select` inside a `Dropdown` menu no longer dismisses the menu (the `data-flikkui-portal` click-outside bail was missing). (#53)
77
+ - **Overlay a11y** — `ModalStack` drops a redundant unlabelled `role="dialog"` wrapper; `AlertDialog`'s subtitle renders through `Modal.Subtitle` so `aria-describedby` resolves; `Tooltip` puts `aria-describedby` on the trigger element itself (via `useId()`), not a wrapper; `CommandPalette` keeps group labels for grouped input and skips disabled rows in arrow navigation; `ContextMenu` uses `role="menuitemcheckbox"` when checked and returns focus to the trigger on close. (#53)
78
+ - **`Select` — keyboard open + focus return** — Opens on ArrowDown/ArrowUp while closed, restores focus to the trigger after mouse selection, and the listbox gets an accessible name. (#53)
79
+ - **`Button` — consumer `data-state` honored** — A consumer-passed `data-state` is no longer clobbered by the internal one (fixes active/inactive toolbar buttons, e.g. in `RichTextEditor`). (#53)
80
+ - **Navigation a11y sweep** — `Tabs` arrow navigation skips disabled triggers; `Sidebar`/`NavItem` active items get `aria-current="page"` and submenu `aria-expanded` is no longer clobbered; `Breadcrumbs` marks only the current crumb `aria-current`; `Pagination` clamps disabled Prev/Next labels at bounds; `Carousel` passes `inert` as a real boolean (React 19 — it previously never applied); `MenuItem` sets `aria-selected`/`aria-checked` per role; `Tree` adds `role="group"` on child lists and hides chevrons from treeitem names; `Rating` removes nested-interactive star buttons inside its `role="slider"`. (#53)
81
+ - **`DragDrop` — keyboard drops** — Keyboard drop fired `onDrop` twice and arrow-cycling could only reach the first zone; drops now fire once with a full `type`/`data` payload and cycling reaches every zone. (#53)
82
+ - **`NodeCanvas` — pointer-capture crash** — Pane `setPointerCapture` is guarded, so panning no longer throws in environments without pointer-capture support. (#53)
83
+ - **`Message` — typewriter `onComplete` timing** — The typewriter's `onComplete` now fires after the animation actually settles, and also fires on the reduced-motion/disabled path (it previously fired at first paint, or never). Internal render is now pure (no ref mutation during render).
84
+ - **`Input` — nested trigger ring bleed** — A nested `aria-haspopup` trigger inside an Input addon (e.g. an embedded `Select`) no longer renders its own hover/focus edge and ring over the host field.
85
+ - **`CodeBlock` — `highlightLines` / `diffMode` without line numbers** — Both silently no-oped unless `showLineNumbers` was on; they now work independently. (#54)
86
+ - **`ImagePlaceholder`** — The `rounded` prop was a no-op (read the wrong CSS variable) and `ratio={undefined}` (fill-parent escape hatch) was dead code; both work now, and the default 16:9 still applies when `ratio` is omitted. (#54)
87
+ - **`useNetworkStatus` — initial offline state** — Seeds from `navigator.onLine` (SSR-safe), so a page loaded offline reports offline immediately instead of after the first event. (#54)
88
+ - **`Table` — header semantics** — Header cells get `scope="col"` and sortable data-driven headers wire `aria-sort`. (#54)
89
+ - **`PulsingBorder` — glow rendered at true strength** — The shader emitted premultiplied alpha while `ShaderCanvas` composites straight alpha, so every soft pixel rendered at alpha² and the glow was effectively invisible; output is now un-premultiplied. Also: the host is measured via layout px (`offsetWidth`/`offsetHeight`), so the ring no longer drifts off its card under ancestor `scale()` transforms such as `NodeCanvas` zoom.
90
+ - **`ColorPicker` — gradient detection** — `isGradientString` now matches `repeating-*` gradients.
91
+ - **`Masonry` — relayout thrash** — Pre-paint relayout is keyed on child count rather than children identity, avoiding a synchronous measure-and-arrange on every render.
92
+ - **`PromptInput` — paused waveform** — The voice recorder skips waveform redraws while paused (battery).
93
+ - **`TimePicker` — footer sizing** — Restored the footer Cancel/Save `flex-1` sizing.
94
+ - **`PromptSuggestion` — restored to the MCP registry** — Its folder (`ai/PromptSuggestions/`) was renamed to match the component name, so it is discovered by the inventory generator again (it was silently missing from `registry.json`).
95
+ - **Effects hygiene** — `GlassSurface` uses the shared `useDarkMode` singleton; `GlassEffect` and `AIOrb.Aura` are `aria-hidden` decorative (Aura also gains an SSR client gate); `OfflineIndicator` drops a hardcoded `text-white`; `InputCounter`'s decorative gesture wrappers no longer add unlabeled tab stops. (#54)
96
+ - **Generative — `Badge` schema default** — The generated schema declared `"default"` as `Badge`'s color default, which isn't in its own enum; corrected to `"primary"` (the real runtime default) and regenerated. (#49)
97
+
98
+ ### Security
99
+
100
+ - **Generative — `validate()` boundary hardened (7 fixes)** — The generative-spec validator was adversarially tested and hardened; specs from untrusted LLM output are now safe against a class of prototype/injection attacks: (#49)
101
+ 1. Component names colliding with `Object.prototype` keys (`"constructor"`, `"__proto__"`, `"toString"`, …) no longer crash `validate()` — every dynamic map read is gated on `Object.hasOwn`, restoring the "never throws" contract (unknown names take the normal unknown-component path).
102
+ 2. `constructor`/`__proto__` prop keys record an unknown-prop issue instead of silently vanishing.
103
+ 3. Object-shaped structured props (`chartConfig`, `donutColors`, `gridCols`, and every array-of-object shape) are now recursively sanitized — nested `className`/`style`/`dangerouslySetInnerHTML`/`on*` handlers/functions previously bypassed the injection guard entirely; each strip is a recorded issue.
104
+ 4. Handler detection is case-insensitive — `onclick`/`ONLOAD` are blocked, including via custom schemas.
105
+ 5. `actions.*.payload` runs through the same sanitizer (was copied verbatim).
106
+ 6. Recursion is depth-limited (100) at both node and structured-value levels — pathologically deep specs prune with a recorded issue instead of overflowing the stack.
107
+ 7. Prototype-pollution write-key guard: `__proto__`/`constructor`/`prototype` are denied at both dynamic-write sites, closing a silent prototype-chain hijack the read-side guard didn't cover.
108
+
109
+ ### MCP server (`@flikk/mcp`)
110
+
111
+ - New `customize_theme` tool (topic-filterable guide to overriding the Flikkui theme — brand palettes, radius, fonts, dark mode, `generatePalette`/`generateThemeCSS`); new self-describing `manifest` tool introspecting every tool's args/types/defaults/error codes; `get_component`/`get_block` not-found paths now return a stable, parseable `{error: {code, message}}` contract; new `review_usage` rule `overlay-portal-false-in-popover`.
112
+ - New `get_changelog` tool — per-version release notes with `since` (everything newer than a given version), `version`, and `breaking_only` filters, so an agent can read the breaking changes + migration paths after an `@flikk/ui` upgrade and fix code against them. Reads the changelog of the installed `@flikk/ui` when present (falls back to a bundled snapshot); to support that, **`@flikk/ui` now ships `CHANGELOG.md`** in the npm package (exported as `@flikk/ui/CHANGELOG.md`).
113
+
114
+ ## [1.0.0-beta.29] - 2026-06-16
115
+
116
+ ### Breaking Changes
117
+
118
+ - **Effects removed** — `Glass`, `MorphingText`, `ParallaxSection`, `Spotlight`, `StickyScroll`, and `SpotlightBorder` are no longer exported from `@flikk/ui/effects`. `Glass` (the refraction "lens" effect) was added in beta.28 and is removed here — use the mix-blend-mode `GlassEffect` (or `GlassSurface`) instead. (PER-160)
119
+ - **`PageTransition` → `Preloader`** — The `PageTransition` effect was renamed to `Preloader` (component, types, stories, docs, and registry entry). Update imports: `import { Preloader } from "@flikk/ui/effects"`. The animation engine was reworked with creative reveal variants (blinds / shutters / layers / iris).
120
+
121
+ ### Added
122
+
123
+ - **`HeroCard`** — New core component: a media/hero card with a parallax tilt surface (`parallaxIntensity`, default `32`). Exported from `@flikk/ui/core` (and the main barrel). (PER-160)
124
+ - **`TiltCard`** — New effect component: 3D pointer-tilt card. Tilt is CSS-only; the `glow` layer lazy-loads `three`. Exported from `@flikk/ui/effects`. (PER-160)
125
+ - **`ScrollArea` — drag-to-scroll** — Pointer drag-to-scroll backed by the smooth-scroll engine, with momentum. (PER-160)
126
+ - **Charts — `width` / `height` props** — Cartesian charts (`AreaChart`, `BarChart`, `LineChart`, `StackedBarChart`, `ScatterPlot`) accept explicit `width`/`height`, and `config.color` now resolves Tailwind palette names (e.g. `"blue-500"`) in addition to CSS variables/hex. (PER-161)
127
+
128
+ ### Changed
129
+
130
+ - **Theme — elevation polish pass** — Re-tuned the surface/elevation ladder to read *lighter in both modes* (monotonic + symmetric: higher = lighter), with real dark-mode-aware `shadow-real-*` / `shadow-inner-real-*` shadows (`--elevation-*` tokens; `.dark` swaps to a stronger depth-pool + a 1px white top rim). Refined the `AppShell` color model — only `root` paints the floor; chrome inherits; side-by-side panels are opt-in; horizontal sticky bars use a translucent frosted-floor tint. (PER-163)
131
+ - **`ProgressiveBlur` — perf + a11y** — Dropped redundant per-layer `z-index` (the `backdrop-filter` already establishes a stacking context), `aria-hidden` on decorative instances, memoized layer style objects, clamped/guarded the `layers` prop, deduped position arrays, and dev-warns on `ref` + multi-position. Demo wrappers constrained so the blur no longer smears past the container edge. (PER-164)
132
+ - **Assets** — `public/bg` backdrops converted from JPG to WebP for smaller payloads. (PER-162)
133
+
134
+ ### Fixed
135
+
136
+ - **Charts — `ScatterPlot` tooltip** — Fixed the tooltip rendering/positioning on `ScatterPlot`; tidied its theme and types. (PER-161)
137
+
138
+ ### Removed
139
+
140
+ - **Story-only blocks** — `ChangelogLayout` and `WaitlistLayout` reference layouts were removed (story-only, never part of the public API).
141
+
142
+ ## [1.0.0-beta.28] - 2026-06-11
143
+
144
+ ### Breaking Changes
145
+
146
+ - **`Card`** — The `title` prop is now a **header slot** (`ReactNode`), not the native DOM `title` attribute. `CardProps` changed from `extends HTMLAttributes<HTMLDivElement>` to `extends Omit<HTMLAttributes, "title">`. Passing `title="…"` to a `<Card>` for a hover tooltip now renders a card header instead. Migration: move tooltip text to a wrapper element, or compose `Card.Header` explicitly. (PER-148)
147
+ - **`BarChart` / `AreaChart`** — Default `variant` changed from flat `"default"` to `"gradient"` (the premium look). Charts render with gradient fills/glow unless you pass `variant="default"`. Also: `showDots` default `true → false` and `dotRadius` default `4 → 3`. (PER-149)
148
+ - **`Metric`** — The `MetricTheme` / `MetricThemeOverrides` shape was fully restructured to a flat per-element form. Removed `variantColors`, `iconContainerVariantColors`, and the nested `sizes` record; added flat records (`iconContainerVariants`, `iconColors`, `iconGlassShadows`, `contentPaddingSizes`, `iconContainerSizes`, `labelSizes`, `valueSizes`, `subtitleSizes`). Consumers passing a custom `theme` to `<Metric>` must migrate. (PER-155)
149
+ - **Theme — surface recolor** — The surface/elevation ladder values were re-tuned (`src/styles/theme.css`): light mode now uses a pure-white page/overlay with a neutral-100 card fill; dark mode uses a near-black floor with faintly cool ascending surfaces. Visual diff for all consumers. The legacy `--color-background-secondary…quinary` tokens remain deprecated aliases (removal in the next major). (PER-132)
150
+
151
+ ### Added
152
+
153
+ - **Generative UI engine** — New `@flikk/ui/generative` subpath: spec-renderable FlikkUI. An LLM emits a serializable `UINode` JSON tree that the engine validates and renders. Includes `GenerativeView`, `createRegistry`/`defaultRegistry`, `validate` (zero-dep repair), streaming (`parseStreamingSpec` + `useGenerativeStream`), serializable actions (`onAction`), and a runtime tool-def export (`GENERATIVE_TOOL` / `buildToolDefinition`). Curated, schema-checked 22-component safe set; one generation pass emits `schema.generated.ts` + `dist/generative.schema.json` + `dist/tools.json` (cannot drift). Subpath-only (not in the main barrel). See `docs/generative-ui.md` and CLAUDE.md §22. (PER-136, PER-138–142)
154
+ - **Layout primitives** — `Grid`, `Stack`, `Section` exported from `@flikk/ui/layout` (and the main barrel). `Grid` `cols` is a mobile-first auto-ramp number or explicit per-breakpoint map (purge-safe literals); `Stack` is the flex counterpart; `Section` is a titled region wiring `aria-labelledby`. (PER-137)
155
+ - **`items` data API** — Collection components `Table`, `Timeline`, `DescriptionList`, and `Feed` now accept a serializable `items` array alongside their compound API (one render path), so they drop into a generative-UI registry with no bespoke renderer glue. `Feed` also gains `collapseAfter`. (PER-133)
156
+ - **`Card` slot-props** — `Card` accepts flat `title` / `subtitle` / `actions` / `footer` slot-props alongside the compound API (mirrors `Section`). Setting any slot switches the card to managed mode (auto `Header`/`Body`/`Footer`); setting none renders children raw. (PER-148)
157
+ - **`Glass`** — New refraction "lens" effect in `@flikk/ui/effects` (`Glass`, `GlassLens`, `GlassProps`). Bends the live DOM it sits over (or an optional `refractionTarget`) via an SVG displacement filter — lens geometry, x/y travel, strength, erf-falloff depth band, spherical-dome profile. Distinct from the mix-blend-mode `GlassEffect`. (PER-147)
158
+ - **`Metric`** — New `ghost` variant. (PER-155)
159
+ - **`Table`** — `onRowClick(row)` on the data-driven API; rows get pointer cursor + keyboard activation (selection/expand controls still `stopPropagation`). (PER-141)
160
+ - **Charts — `useChartDimensions`** — New shared hook (`charts/hooks`) for layout-effect container measurement with a `measured` gate. (PER-149)
161
+ - **Canvas** — `Handle` accepts `children` for custom port visuals; `edge.color` per-edge stroke override. (PER-143)
162
+ - **Blocks** — New story-only reference layouts: `LMSDashboardLayout` (PER-153), interactive range-chart `GenerativeUI` cards + schema inspector (PER-154), and a Generative UI social-profile block (PER-135).
163
+
164
+ ### Changed
165
+
166
+ - **Charts — shared `X_AXIS_MARGIN`** — The X-axis bottom margin is now a single shared constant across Area/Line/Bar/StackedBar so plot baselines align when charts sit side by side. (PER-134)
167
+ - **`CanvasToolbar`** — The node palette collapsed into a single "+ Add node" dropdown of `nodeOptions`. (PER-144)
168
+ - **Theme polish** — Visual refinement across `Badge`, `Button`, `PageHeading`, `Tooltip`, `Table`, `Card`, and `Metric` (label/icon alignment, value sizing, soft-variant tints, header typography, backdrop blur). (PER-151, PER-152)
169
+ - **Canvas** — Quieter `BaseNode` selection (border-secondary + ring-2 primary whisper); real pane background with a visible dot grid. (PER-143)
170
+
171
+ ### Fixed
172
+
173
+ - **Charts — cold-load dimension race** — Charts measured their container in a 600×400 fallback before the real size landed, so mount animations captured the wrong transform-origins (bars rose from below the x-axis, clip-sweep reveals froze short, dots flew in from wrong spots). `useChartDimensions` now measures via a layout effect and exposes a `measured` flag that gates mount-animated SVG geometry. (PER-149)
174
+ - **`shadow-real-*` utilities** — Re-registered as Tailwind `@utility` rules instead of hand-written `@layer utilities` classes, so variant prefixes (`hover:`, `group-hover:`, `dark:`, …) now generate. Previously the base class worked but its variants were silently dropped. (PER-150)
175
+ - **`Dropdown`** — Placement-aware menu animation, a working keyboard layer, and Escape-to-close. (PER-145)
176
+ - **`Grid` / `Section`** — Grid auto-ramp is monotonic and extends to `xl` for high column counts; `Section` wires the `aria-labelledby` landmark and skips an empty body. (PER-137)
177
+
178
+ ## [1.0.0-beta.27] - 2026-05-29
179
+
180
+ ### Added
181
+
182
+ - **`AppShell`** — New layout component exported from `@flikk/ui/layout`. Provides a full viewport shell with region-named sub-components: `AppShell.Topbar`, `AppShell.Sidebar`, `AppShell.Header`, `AppShell.Main`, `AppShell.RightPanel`, and `AppShell.Footer`. Context-driven scroll mode (`scroll="main"` | `"page"`) with support for full-height rails (Sidebar, RightPanel). Children-discovery layout algorithm auto-places regions without requiring explicit ordering. Includes Storybook stories covering Default (Operating Snapshot dashboard) plus Sidebar, RightPanel, Footer, and PageFlow variants.
183
+ - **`Sidebar.Search`** — New `<Sidebar.Search />` sub-component (PER-67). Full-width search field that collapses gracefully in the rail state with a NavItem-style collapse animation, stable height on collapse, and a neutral icon with muted clear-x.
184
+ - **`Sidebar.Card`** — New `<Sidebar.Card />` sub-component for surfacing a custom card slot in the sidebar; ships with a NavItem-as-row recipe for composing card content.
185
+
186
+ ### Changed
187
+
188
+ - **`Sidebar`** — `children` and `Sidebar.Search` are now optional. Sidebar renders correctly with no child content (bare rail). This relaxes the previous hard requirement for children and enables minimal sidebar configurations.
189
+ - **`Sidebar`** — Collapsed rail redesigned with uniform 36×36 hit-areas on a 60px rail for all interactive row elements (NavItem, Sidebar.Search, Sidebar.UserProfile). Sidebar.Search row width aligned with NavItem rows.
190
+ - **`Popover`** — Viewport clamping, nested-overlay click-outside isolation, and auto-scroll support. A `Select` or `Dropdown` inside a `Popover` no longer inadvertently closes the ancestor when the user clicks an option. The popover now horizontal-clamps to stay on-screen near viewport edges and scrolls with its anchor trigger.
191
+ - **`MediaGalleryLayout`** — Storybook story content refresh.
192
+
193
+ ### Fixed
194
+
195
+ - **`Mention`** — Prevented a React `removeChild` crash that occurred when deleting a chip in a contentEditable host. Chips are now dismissable without causing a React reconciliation mismatch.
196
+ - **`Tag`** — Balanced avatar/icon insets for leading-content tags; padding was asymmetric when a leading avatar or icon was present.
197
+ - **Form controls`** — Hover-edge border added to form controls; `DotSeparator` menu updates.
198
+ - **`NavItem`** — Fixed a type error that broke consumer builds compiling from source against `react@canary` types (e.g. Next 16). `NavItemProps extends HTMLAttributes<HTMLElement>` typed `onSubmit` as `SubmitEventHandler<HTMLElement>`, which is not assignable to `motion.a`'s element-specific `HTMLMotionProps<"a">` once `SubmitEvent` gains a type-parameter-dependent field. `onSubmit`/`onSubmitCapture` are now stripped before the spread (behaviour-neutral — a nav item never submits a form), alongside the existing drag/animation handler strips.
199
+
200
+ ## [1.0.0-beta.26] - 2026-05-22
201
+
202
+ ### Breaking Changes
203
+
204
+ - **`Sidebar`** — Removed the `SidebarSubmenu` component. The Sidebar was rebuilt around context selectors, and nested navigation is now driven by `NavItem`'s `items` prop (with a collapsed-rail flyout) rather than a dedicated submenu component. Consumers using `Sidebar.Submenu` must migrate to `NavItem items={…}`.
205
+ - **`NavItem`** — Removed the `isDanger` prop (and `dangerStyle` from the theme). Danger actions belong in a menu (e.g. `Dropdown.Item isDanger` inside `Sidebar.UserProfile`'s `dropdownContent`). The NavItem variant/theme/type surface was also reworked.
206
+
207
+ ### Added
208
+
209
+ - **Theme — surface elevation ladder** — New semantic surface tokens `--color-surface-sunken`, `--color-surface-raised`, `--color-surface-overlay` (joining `--color-surface` and `--color-background`), plus the translucent `--color-surface-hover` interaction fill that composites over any surface level. Replaces the numbered `--color-background-secondary…quinary` scheme (kept as deprecated aliases for one major). See CLAUDE.md §3.
210
+ - **`StripePattern`**, **`ImagePlaceholder`** — New components for empty image/banner slots.
211
+ - **`Sidebar`** — Collapsed-rail hover **flyout submenus** (via `Dropdown`); `Sidebar.UserProfile` gains a `dropdownContent` menu and a custom `children` slot for the text region; new `UserMenu` story.
212
+ - **`RichTextEditor`** — Expanded editing capabilities and theme.
213
+
214
+ ### Changed
215
+
216
+ - **Theme migration onto the surface ladder** — Track/inset fills → `surface-sunken`; row/item/button hovers → `surface-hover`; overlays (Dropdown, Popover, Tooltip, etc.) → `surface-raised`/`-overlay`; chart null/dimmed fills → `surface-sunken`. No new usage of the legacy `background-*` tokens.
217
+ - **`NavItem`** — Two-line expanded layout (title + accessories, optional description); collapsed notifications render as a dot with an sr-only unread count; smoother padding/gap transitions.
218
+ - **`FileUploadProgress`** — Separated retry vs. remove behavior; the radial now doubles as the cancel/remove target with a shared confirm popover; larger radial center text.
219
+ - **`InteractiveCharacters`** — Redesigned the blob/tall/small character SVGs.
220
+ - **`KPI`** — Bumped label + subtitle typography contrast.
221
+ - **`Table`** — Added `flush` edge padding; trimmed block templates.
222
+ - **`MorphingText`** — Cross-fade now animates between measured text sizes.
223
+ - **Docs** — Condensed CLAUDE.md reference guide; README updates.
224
+
225
+ ### Fixed
226
+
227
+ - **Form-control borders** — Resting + focus borders on every form control (Input, Select, Combobox, Date/Time pickers, Textarea, etc.) are now drawn with an inset `box-shadow` instead of `outline`/`border`. Clip-safe inside `overflow-hidden` parents, no focus reflow, and the same height as `Button`. (Fixes the input-clip and Select-vs-Button size mismatch — Linear PER-58, PER-61.)
228
+ - **`ScrollArea`** — The `type="scroll"` overlay thumb was hardcoded `black/30` (invisible in dark mode); it now uses the mode-aware `--color-border`, and the `always` track moved off the deprecated `--color-background-secondary` onto `--color-surface-sunken`. (Linear PER-59.)
229
+ - **`MorphingText`** — Fixed the inline-box width snapping during transitions by measuring all candidate strings; added an SSR-safe layout-effect shim.
230
+
231
+ ### Tooling
232
+
233
+ - **`@flikk/mcp` 0.2.10** — Refreshed the component registry: 121 components (was 119), surface-ladder + text-taxonomy tokens, and removed stale `background-tertiary`/`background-quaternary` references.
234
+
235
+ ## [1.0.0-beta.25] - 2026-04-20
236
+
237
+ ### Breaking Changes
238
+
239
+ - **`Timeline`** — Removed `align` prop and `TimelineAlign` type (`"left" | "right" | "alternate"`). Timeline now uses a single layout per the component's `layout` prop (`"vertical" | "horizontal"`). Consumers setting `align` must remove it.
240
+ - **`Timeline.animations.ts`** — Internal animations module deleted. Not part of the public API, but anyone importing it directly will need to remove the reference.
241
+
242
+ ### Added
243
+
244
+ - **`@flikk/ui/effects` barrel** — `AIOrb` (+ `AIOrbProps`, `OrbState`, `DotSphereProps`, `LiquidProps`, `AuraProps`), `Particles` (+ `ParticlesProps`), and `SpotlightBorder` (+ `SpotlightBorderProps`, `SpotlightBorderVariation`) are now exported from the effects barrel. Previously only reachable via their component subpaths.
245
+
246
+ ### Changed
247
+
248
+ - **`Accordion`** — Trigger and body now inherit the library-wide `text-sm` baseline (was browser default).
249
+ - **`Breadcrumbs`** — Link and current-page styles moved to `text-sm` for consistency with the library baseline.
250
+ - **`Calendar`** — Dropped the `text-base` override on month/year `Select` dropdowns; they now use `Select`'s `size="sm"` default, matching every other Select in the library.
251
+ - **`CalendarMini`** — Internal refactor pass (~850-line diff); no behavioural change.
252
+ - **`Timeline`** / **`TimelineItem`** / **`TimelineContent`** — Simplified after removing the `align` prop and animation module.
253
+ - **`Empty`**, **`Link`** — Minor theme and formatting cleanup.
254
+ - **`Select`** — Removed an unused tag-class path on `Select.Tag`.
255
+
256
+ ### Fixed
257
+
258
+ - **Stories — `docs.source.code` import paths** — Normalized across `Feed`, `GanttChart`, `DateRangePicker`, `TimePicker`, `AlertDialog`, and others so the Storybook "Show code" panel displays the public barrel entry (`@flikk/ui`) instead of internal paths.
259
+ - **Story coverage** — Added `docs.source.code` to 14 previously missing stories and added new `MenuItem` stories. MCP code-example coverage is now 119/119 components.
260
+ - **Timeline stories** — Added `text-sm` to `h4` headings so the preview matches the library-wide baseline.
261
+
262
+ ## [1.0.0-beta.24] - 2026-04-20
263
+
264
+ ### Breaking Changes
265
+
266
+ - **`Segmented`** — Changed from `tablist`/`tab` ARIA roles to `radiogroup`/`radio` with roving `tabIndex` and arrow-key navigation. Consumers relying on the previous tab semantics must update keyboard interaction expectations.
267
+ - **`DragDrop`** — Added required `aria-label` type prop for accessible list labelling. Existing usages without this prop will need to be updated.
268
+ - **`CheckboxGroup` / `RadioGroup` `error` prop deprecated** — Use `state="invalid"` + `errorMessage` instead. The `error` prop will be removed in a future release.
269
+ - **`label` / `helperText` props changed from `string` to `ReactNode`** across all affected form components (`Checkbox`, `Radio`, `Input`, `Textarea`, `Select`, `Combobox`, `Slider`, `DatePicker`, `DateRangePicker`, `TimePicker`, `FileUpload`, `InputOTP`, `InputCounter`, `CronInput`, `Mention`).
270
+ - **`Checkbox` / `Radio`** now extend `InputHTMLAttributes` instead of `HTMLAttributes`. Prop forwarding behaviour may differ for consumers passing arbitrary HTML attributes.
271
+ - **`InputCreditCard` / `InputAddress`** — Replaced `FormLabel` with `<legend>` inside `<fieldset>` for correct semantics. Visual appearance is unchanged but DOM structure differs.
272
+ - **Main barrel (`@flikk/ui`) no longer exports charts or effects** — Import from `@flikk/ui/charts` and `@flikk/ui/effects` subpaths instead.
273
+ - **`tailwind.preset.cjs` borderRadius keys renamed** — `--form-rounded` → `--form-radius`, `--button-rounded` → `--button-radius`. Update any Tailwind config references.
274
+ - **`ColorPickerContext` removed from public export** — Use the `useColorPicker` hook instead.
275
+ - **`useFormStateMachine` / `stateMachine` generic default changed** — `TData = any` → `TData = unknown`. Code relying on implicit `any` typing will need explicit generic annotations.
276
+
277
+ ### Added
278
+
279
+ - **`Switch` `size` prop** — New `sm`, `md`, `lg` size variants.
280
+ - **`Switch` `defaultChecked`** — Uncontrolled initial checked state.
281
+ - **`Switch` native input passthrough props** — `name`, `value`, `required`, `form`, and optional `id` (auto-generated via `useId()` when omitted).
282
+ - **`state` prop on `InputOTP`, `CronInput`, `FileUpload`, `InputCounter`, `Mention`** — Unified validation state (`idle` / `invalid` / `disabled`) for components that previously had no validation API.
283
+ - **`Combobox` `iconEnd` slot** — New decorator slot that hides behind the clear button when a value is selected.
284
+ - **`Select` `contentStart` / `contentEnd` slots** — Structural decorator slots for the trigger element.
285
+ - **`Checkbox` / `Radio` `lg` size** — New large size variant.
286
+ - **`secondary`, `neutral`, `dark` color namespaces** — Added to the Tailwind preset for consistent utility-class access.
287
+ - **`./layout` subpath export** — `@flikk/ui/layout` is now a valid import path.
288
+ - **`useDarkMode` singleton hook** — Module-level singleton with one shared `MutationObserver` and N subscribers, replacing 9 inline per-component implementations (`Select`, `Combobox`, `InputTag`, `DatePicker`, `DateRangePicker`, `TimePicker`, `Tooltip`, `Popover`, `Dropdown`).
289
+
290
+ ### Changed
291
+
292
+ - **`Tabs`** — Trigger and panel IDs scoped with `useId()` per instance, preventing duplicate DOM IDs when multiple `Tabs` instances are on the same page.
293
+ - **`ModalTitle` / `DrawerTitle`** — Now render as `<h2>` with an overridable `as` prop for correct document outline.
294
+ - **`FormLabel`** — Receives `state` prop in `Select`, `Combobox`, `DatePicker`, `DateRangePicker`, `Slider` so the required indicator renders correctly in invalid state.
295
+ - **`Alert` / `Toast` ARIA roles** — Mapped to severity: `role="alert"` for error/warning, `role="status"` + `aria-live` for info/success.
296
+ - **`Progress`** — Animates `scaleX` instead of `width` for compositor-safe performance.
297
+ - **`NavItem`** — Uses `grid-template-columns` transition instead of `max-width` (compositor-safe).
298
+ - **`CustomCursor`** — `useRef` for stable random colour pick, fixing Strict Mode flicker.
299
+ - **`ThemeContext.Provider`** — Value memoised with `useMemo` to prevent unnecessary re-renders.
300
+ - **`Modal` context value** — Memoised with `useMemo`.
301
+ - **`Select` / `Combobox` / `InputTag` option lists** — Capped at 100 items with a refine-search prompt for performance.
302
+ - **`RichTextEditor` handlers** — Hoisted to `useCallback` for stable references.
303
+ - **`TableFilter` / `ColorPicker` / `ToastProvider`** — Replaced `Date.now()`/`Math.random()` keys with incrementing refs / `crypto.randomUUID()`.
304
+ - **`useClickOutside`** — Extended to accept additional exclusion refs.
305
+ - **`gsap` removed from `peerDependencies`** — Had zero imports in source; was an erroneous entry.
306
+ - **`tsconfig` `moduleResolution`** — Changed from `node` to `bundler` for correct ESM resolution.
307
+ - **Deleted `ThemeBuilder/` directory** — Orphaned directory removed from source.
308
+
309
+ ### Fixed
310
+
311
+ - **`Textarea` / `Combobox`** — Added `aria-describedby` wired to helper/error element IDs.
312
+ - **`Select` / `TimePicker` / `DatePicker` / `DateRangePicker` triggers** — Added `aria-invalid` and `aria-describedby`.
313
+ - **`Checkbox` / `Radio` (solo)** — `aria-invalid` wired when `state="invalid"`.
314
+ - **`Tree`** — Full APG keyboard navigation (`ArrowUp`/`ArrowDown`/`Home`/`End`) with roving `tabIndex`.
315
+ - **`DragDrop`** — Complete keyboard support with `aria-live` announcements.
316
+ - **`Breadcrumbs`** — One `<li>` per item (was a single `li.contents`).
317
+ - **`Select` / `Combobox`** — `aria-controls` wired to real DOM IDs; option IDs added.
318
+ - **`Popover`** — Corrected role and `aria-haspopup` attribute.
319
+ - **`Switch`** — All interaction routed through the native input; removed redundant track `onClick`.
320
+ - **`Sortable`** — `aria-live` reorder announcements; `ul`/`li` semantics.
321
+ - **`Carousel`** — `inert` attribute applied to hidden slides.
322
+ - **`Accordion`** — `ArrowDown`/`ArrowUp` keyboard navigation between triggers.
323
+ - **`FormLabel`** — Screen-reader-only "(required)" text added alongside the visual asterisk.
324
+ - **`Input`** — `role="alert"` on helper text element when `state="invalid"`.
325
+ - **`Table`** — `aria-sort` on sortable `th` columns; `scope="col"`; optional `caption` prop.
326
+ - **`Skeleton`** — `aria-hidden` on placeholder divs.
327
+ - **`Tooltip`** — Removed `aria-live`; fixed double Tab stop via `cloneElement`.
328
+ - **`Rating`** — `aria-hidden` on star buttons.
329
+ - **`Pagination`** — Ellipsis rendered as `<span>` with `role="separator"`, not a `<button>`.
330
+ - **`AlertDialog`** — Always allows `Escape` when no footer is present, preventing a keyboard trap.
331
+ - **`Dropdown`** — Removed hardcoded `"Menu"` `aria-label` fallback.
332
+ - **`Checkbox` / `Radio`** — Dev-mode warning when rendered without an accessible name.
333
+ - **`Progress`** — Consumer `aria-label` override now supported.
334
+ - **`InputCreditCard`** — Top-level `state` + `error` props for consolidated error message; internal dirty-tracking auto-clears error on re-entry; replaced `Math.random()` IDs with `useId()`.
335
+ - **`Tabs`** — Removed duplicate `role="tablist"`; fixed `Home`/`End` navigation.
336
+ - **`useSelectPortal` / `useScaleBackground`** — Added isomorphic `useLayoutEffect` shim (SSR-safe).
337
+ - **`useOverlay` scroll lock/unlock** — Added `typeof window` guard (affects `Modal`, `Drawer`, `Overlay`).
338
+ - **`ToastProvider` / `ColorPickerBody` / `ContextMenuBody`** — `document.body` access deferred until after `isClient` check.
339
+ - **`InputAddress`** — Replaced `Math.random()` IDs with `useId()` for hydration safety.
340
+ - **`DatePicker` / `DateRangePicker`** — Pinned `toLocaleDateString` to `'en-US'` locale for consistent SSR/CSR output.
341
+ - **`PageTransition`** — Added `typeof window`/`document` guards.
342
+ - **`Badge` / `SpotlightBorder`** — Replaced `window.matchMedia` with `useReducedMotion()` for SSR safety.
343
+ - **`TabsTrigger`** — Moved Storybook animation flag read into `useEffect` + `useRef`.
344
+ - **`Overlay`** — Replaced `useMemo` dark-mode read with `useDarkMode()` hook.
345
+ - **`GanttSplitter` / `Slider`** — Added pointer event listener cleanup on unmount.
346
+ - **`Segmented`** — Wrapped `updateActiveStyle` in `useCallback`.
347
+ - **`Masonry`** — Fixed stale closure in `MutationObserver` debounce.
348
+ - **`useNetworkStatus`** — Always initialises to `true` (optimistic SSR default).
349
+ - **CSS export paths** — `shadcn-compat.css` and `theme.css` now correctly copied to `dist/` during build.
350
+
351
+ ### Docs
352
+
353
+ - **`PageHeading` stories** — Added `docs.source.code` to all stories; removed redundant `WithBreadcrumbs` story.
354
+
355
+ ## [1.0.0-beta.23] - 2026-04-12
356
+
357
+ ### Added
358
+
359
+ - **SidebarLogo** — New `SidebarLogo` component for sidebar branding; shows an icon in both states and animates the text label in/out on expand/collapse.
360
+ - **Tooltip `triggerClassName`** — New prop to apply classes directly to the trigger wrapper element, separate from the tooltip bubble's `className`.
361
+
362
+ ### Changed
363
+
364
+ - **NavItem collapse animation** — Replaced conditional render with a CSS `max-width` + `opacity` transition so the label and end-content smoothly slide out when the sidebar collapses, rather than disappearing instantly. Added `aria-hidden` on the hidden content area.
365
+ - **Sidebar sub-component polish** — Various updates to `SidebarHeader`, `SidebarNavGroup`, `SidebarToggle`, `SidebarUserProfile`, and `SidebarContent` for layout and accessibility improvements.
366
+ - **MCP setup docs** — Improved `get_setup` CSS section with clearer guidance on `styles.css` being the only import needed and an explicit warning against importing `theme.css` in Next.js/Vite projects.
367
+
368
+ ### Fixed
369
+
370
+ - **Release build** — Added `prepublishOnly: "clean && build"` to `package.json` so `npm publish` always rebuilds from source; prevents stale `dist/styles.css` from shipping in a release.
371
+
372
+ ## [1.0.0-beta.22] - 2026-04-08
373
+
374
+ ### Added
375
+
376
+ - **Icon component** — Consolidated `PaymentIcon`, `SocialIcon`, and `FileTypeIcon` into a single unified `Icon` component with a consistent API across all icon categories.
377
+ - **SelectableCard standalone support** — `SelectableCard` can now be used outside a `SelectableCard.Group` via a new `standalone` prop and `useOptionalSelectableCardContext` hook.
378
+ - **SelectableCard `indicatorPosition` prop** — Control whether the indicator (checkbox/radio) appears at the top or bottom of the card.
379
+ - **SelectableCard `size` variants** — New `size` prop with `cardSizes` and `indicatorSizes` in the theme for consistent sizing.
380
+ - **SelectableCard Radio/Checkbox indicators** — Radio and Checkbox components can now be used as card indicators, replacing the previous custom indicator implementation.
381
+ - **SelectableCard exported types** — `SelectableCardIndicatorPosition` and `SelectableCardSize` are now exported from the package.
382
+ - **SelectableCard `defaultValue`** — `SelectableCard.Group` now accepts a `defaultValue` prop for uncontrolled initial selection.
383
+ - **ColorPicker gradient mode** — Added gradient, image, and saved colors modes with header navigation in the ColorPicker component.
384
+ - **AuthLayout block** — New `AuthLayout` block with Storybook stories and autodocs for login/signup page scaffolding.
385
+ - **Storybook status badges** — Components can now be tagged as `beta`, `experimental`, `deprecated`, or `new` with visual status badges in Storybook.
386
+
387
+ ### Changed
388
+
389
+ - **Theme font-size** — Removed root `font-size` override; text size scale shifted down one step for better alignment with browser defaults.
390
+ - **SelectableCard stories** — Rewritten with Untitled UI-inspired examples, Icon component integration, realistic copy, and corrected indicator sizing.
391
+ - **KPI stories** — Added beta status tag.
392
+ - **Table performance** — Optimised rendering performance and improved code quality across all table-related files.
393
+
394
+ ### Fixed
395
+
396
+ - **ColorPicker gradient stop colors** — Gradient stop colors are now correctly reflected in the trigger input.
397
+ - **Overlay animation** — Smoother open/close animation; eliminated scroll-lock layout shift.
398
+ - **SelectableCard stale closures** — `handleChange` is now wrapped in `useCallback` to prevent stale closure bugs.
399
+ - **SelectableCard RadioIndicator layout** — Wired `indicatorSizes` from theme and cleaned up RadioIndicator layout.
400
+
401
+ ## [1.0.0-beta.21] - 2026-03-30
402
+
403
+ ### Fixed
404
+
405
+ - **Animated hooks order** — Moved `useMemo` calls above early returns in `Animated.Group` and `Animated.Item` to fix React Rules of Hooks violation. Memoized `motion[as]` and added `will-change` GPU hint.
406
+ - **Animated variant allocation** — Pre-computed animation variants at module level; trimmed `visible` state to only animate properties each preset uses.
407
+ - **Radio dot positioning** — Fixed centering with `top-1/2 left-1/2` and `-50%` transforms in motion variants. Added `dotSizes` to theme.
408
+ - **Checkbox/Radio checked outline** — Removed `checked:outline` ring styling for a cleaner appearance (focus-visible outlines retained).
409
+ - **Tooltip radius & border** — Halved `--tooltip-radius` to `calc(var(--radius-base) / 2)` and removed white `border-t`.
410
+
411
+ ## [1.0.0-beta.20] - 2026-03-29
412
+
413
+ ### Added
414
+
415
+ - **Button `ghost` variant** — Transparent background, no border, full padding with subtle hover tint. Ideal for toolbars and icon-only actions.
416
+
417
+ ### Fixed
418
+
419
+ - **Segmented padding & radius** — Switched from per-item margins to container padding (`p-1`), corrected inner border-radius to `calc(var(--segmented-radius) - 4px)` for perfect nested curves, and computed slider top position from button rect for proper vertical centering.
420
+ - **Tooltip backdrop opacity** — Increased from 60%/80% to 90% for better readability.
421
+ - **Docs CSS import path** — Fixed `global.css` → `styles.css` in CLAUDE.md and Flikkui-components.md.
422
+
423
+ ## [1.0.0-beta.19] - 2026-03-28
424
+
425
+ ### Fixed
426
+
427
+ - **Popover/Dropdown layout interference** — Added `contents` display class to Dropdown and Popover root wrappers to prevent layout interference with parent containers.
428
+ - **Popover positioning flash** — Deferred PopoverBody animation until `isReady` flag from `useSelectPortal` confirms positioning is calculated, preventing initial flash/jump.
429
+
430
+ ### Changed
431
+
432
+ - **Separator stories** — Added `docs.source.code` to Variants story and new `CustomStyling` story with className override examples.
433
+
434
+ ## [1.0.0-beta.18] - 2026-03-18
435
+
436
+ ### Fixed
437
+
438
+ - **DatePickerBody CSS variable** — Fixed broken `text-[var(--color-text-muted)` (missing closing `]`) in range mode footer.
439
+
440
+ ### Changed
441
+
442
+ - **Tag enter animation removed** — Tags no longer scale-in on mount; exit animation preserved.
443
+
444
+ ## [1.0.0-beta.17] - 2026-03-18
445
+
446
+ ### Added
447
+
448
+ - **Background assets export** — New `./bg/*` export path and `build:assets` script to copy background images into the dist folder.
449
+ - **CustomCursor expanded exports** — Exported `CustomCursorProvider`, `CustomCursorFollow`, `useCustomCursor` hook, and all related types from the effects module.
450
+ - **AuthLayout story docs** — Added `autodocs` tag and `docs.source.code` blocks to AuthLayout stories for copy-paste-ready usage examples.
451
+
452
+ ### Fixed
453
+
454
+ - **Card.Body missing top padding** — When `Card.Body` is used without a preceding `Card.Header`, content no longer touches the top border. Added `first:pt-6` to `bodyStyle` and `footerStyle` in the Card theme so `:first-child` restores top padding automatically.
455
+ - **Button type attribute order** — Moved `type="button"` before spread props so it can be overridden by consumers passing `type="submit"`.
456
+ - **Calendar year range** — Default year dropdown now extends 10 years into the future (was capped at current year). Fixed `maxDate` year constraint logic to use `Math.max` so the dropdown always includes the max date's year.
457
+
458
+ ### Changed
459
+
460
+ - **MCP server v0.2.0** — Added `get_setup` tool, hooks extraction, and sub-component detection. Updated README and docs to include dependency information.
461
+ - **Tailwind config** — Removed external Google Fonts `@import` from `tailwind-config.css` to eliminate render-blocking network request.
462
+
463
+ ## [1.0.0-beta.16] - 2026-03-17
464
+
465
+ ### Added
466
+
467
+ - **Flikkui MCP server** — New `packages/mcp/` workspace with a build-time extraction pipeline that parses all component source files into a structured registry. Provides 4 MCP tools (`get_component`, `search_components`, `get_theme_tokens`, `generate_code`) for AI-powered component lookup and code generation. Includes Claude Code integration instructions in README.
468
+
469
+ ### Changed
470
+
471
+ - **Switch component** — Overhauled UI with updated theme and improved visual design (`Switch.tsx`, `Switch.theme.ts`).
472
+ - **Slider component** — Improved layout, styling, and theming; refined theme tokens (`Slider.tsx`, `Slider.theme.ts`).
473
+ - **StreamingResponse component** — Refined animation timings, markdown rendering, cursor behaviour, and word animation context logic.
474
+ - **Neumorphic components** — Updated stories with revised layout; added missing exports on `InsetCircleButton` and `InsetPill`.
475
+ - **GlassSurface component** — Fixed rendering issues and updated stories extensively; added new `GlassSurface.types.ts`.
476
+ - **Progress component** — Minor theme token updates.
477
+ - **Drawer stories** — Removed outdated story entries to keep documentation current.
478
+
479
+ ### Removed
480
+
481
+ - **ThinkingIndicator component** — Removed from the `ai` module along with all associated files (theme, animations, stories, types, index).
482
+
483
+ ## [1.0.0-beta.15] - 2026-03-16
484
+
485
+ ### Added
486
+
487
+ - **NeumorphicPrototype component** — New experimental neumorphic design prototype with associated stories demonstrating the neumorphic visual style.
488
+ - **InteractiveCharacters component** — New animated character component with blob/liquid character visuals and interactive behavior.
489
+ - **DateRangePicker component** — Full compound component with `DateRangePicker.Trigger`, `DateRangePicker.Body`, and preset support for common date ranges.
490
+ - **FileUploadProgress component** — New file upload progress component with radial progress indicator, `completionDelay` prop for configurable tick-to-remove transition, and returns null when items array is empty. Uses `TrashIcon` for completed file removal and `XMarkIcon` for cancel.
491
+ - **AuthLayout block story** — New login/auth layout block with page transition animation.
492
+ - **Calendar `showOtherMonthDays` prop** — New prop to control visibility of dates from adjacent months in the calendar grid.
493
+ - **Calendar range selection styling** — Range selection strip now uses rounded endpoints for a more polished appearance.
494
+ - **Drawer `closeOnBack` prop** — New prop that closes the Drawer when the browser back button is pressed, using the History API.
495
+
496
+ ### Changed
497
+
498
+ - **Progress component API simplified** — `color` prop and `colors` theme key removed. The fill bar color is now controlled via `className` (e.g. `className="bg-[var(--color-success)]"`). `trackClassName` and `fillClassName` props replaced by `wrapperClassName`. Default fill color is now always the primary CSS variable.
499
+ - **Progress indeterminate animation** — Animation updated from `translateX` to position-based (`left`/`width`) keyframes at 1.8s linear timing. Striped pattern applied by default using `repeating-linear-gradient`.
500
+ - **Progress label font weight** — Label changed from `font-medium` to `font-semibold` for improved legibility.
501
+ - **Progress `labelPosition="bottom"` layout** — Changed from `flex-col-reverse` to `flex-col` to maintain consistent visual order.
502
+ - **Modal animation** — Refined to use combined scale and slight slide-in style for a more polished entrance.
503
+ - **Toast component** — Refactored internal structure for cleaner implementation.
504
+ - **Button theme** — Removed `rounded-none overflow-visible` from link variant to fix layout artifacts.
505
+ - **`dateUtils`** — Token replacement now uses placeholder-based approach to prevent collisions with month names containing format tokens (e.g. "March" containing "M").
506
+ - **ButtonGroup single-child rounding** — Fixed border-radius removal on only-child buttons using `:not(:only-child)`.
507
+ - **KanbanLayout, OnboardingLayout, ProfileLayout, SettingsLayout stories** — Minor story updates for consistency.
508
+
509
+ ### Fixed
510
+
511
+ - **Badge icon sizing** — Removed `[&>svg]:size-full` rule that caused icons inside Badge to scale to the full badge size.
512
+ - **Badge icon visibility and alignment** — Fixed icon rendering and avatar alignment issues within Badge.
513
+ - **Badge size in Feed story** — Changed invalid `xs` size reference to `sm`.
514
+ - **Kbd component square rendering** — Fixed Kbd not rendering as a square for single-character keys.
515
+ - **Kbd size tokens** — Refined to 20px/24px with reduced padding for better proportions.
516
+ - **InputOTP number clipping** — Fixed OTP digit input numbers being clipped by removing inner padding on the input container.
517
+ - **Tag `startContent` and avatar alignment** — Fixed alignment issues when using `startContent` or avatar slots in the Tag component.
518
+ - **Avatar title visibility** — Fixed Avatar title not displaying when a subtitle was provided without an explicit title prop.
519
+ - **Avatar title/subtitle overflow** — Added `truncate` to prevent layout overflow when long text is used in title or subtitle slots.
520
+ - **SelectableCard icon circle shrinking** — Fixed icon circles in SelectableCard stories shrinking unexpectedly.
521
+ - **DateRangePicker range fix** — Corrected date range selection logic.
522
+ - **Type safety across 35+ files** — Fixed generic defaults, XSS protections, and type safety issues identified in comprehensive code review.
523
+ - **Accessibility improvements across 30+ files** — Addressed accessibility findings from code review including ARIA attributes and keyboard navigation.
524
+ - **Bundle analysis cleanup** — Removed unused custom icon system (entire codebase uses Heroicons).
525
+ - **Storybook build CSS import path** — Corrected CSS import path in Storybook preview config.
526
+ - **Avatar and AvatarGroup minor fixes** — Various alignment and rendering corrections.
527
+ - **CommandPalette fixes** — Minor rendering and behavior corrections.
528
+ - **`global.scss` indeterminate progress keyframes** — Updated keyframes to use `left`/`width` properties instead of `translateX` for correct indeterminate bar behavior.
529
+
530
+ ### Removed
531
+
532
+ - **`ApprovalCard` component** — Removed in favor of the new `InteractiveCharacters` component.
533
+ - **`MessageHistory` component** — Removed as part of the InteractiveCharacters introduction.
534
+ - **Unused custom icon system** — Removed all legacy custom SVG icon infrastructure; Heroicons is the only icon system.
535
+ - **Progress `color` prop** — Use `className` to set fill color instead (see Changed section above).
536
+ - **Progress `trackClassName` / `fillClassName` props** — Replaced by `wrapperClassName`.
537
+
538
+ ## [1.0.0-beta.14] - 2026-03-05
539
+
540
+ ### BREAKING CHANGES
541
+
542
+ - **Badge `ghost` variant renamed to `soft`** — `variant="ghost"` no longer exists on Badge. Use `variant="soft"` instead. The `BadgeVariant` TypeScript type has been updated — code using `"ghost"` will fail type-checking.
543
+ - **Button `ghost` variant renamed to `soft`** — `variant="ghost"` no longer exists on Button. Use `variant="soft"` instead. The `ButtonVariant` TypeScript type has been updated — code using `"ghost"` will fail type-checking.
544
+ - **Sidebar API overhaul** — The Sidebar component has been significantly restructured. New compound sub-components added (`Sidebar.MobileTrigger`, `Sidebar.UserProfile`). Hardcoded colors replaced with CSS variables. Mobile full-screen takeover behavior added. If you have custom Sidebar implementations, review the new API.
545
+ - **NavItem API changes** — NavItem now supports self-contained submenus via `items` prop, `notification` prop (number for badge, `true` for dot), and active indicator bar. The `NavItemProps` interface has changed. Hardcoded `hover:bg-neutral-100` replaced with `hover:bg-[var(--color-background-secondary)]`.
546
+
547
+ ### Added
548
+
549
+ - **Sidebar mobile support** — Full-screen mobile takeover with backdrop, body scroll lock, and close button. New `mobileBreakpoint` prop (default 1024px).
550
+ - **Sidebar.MobileTrigger** — New sub-component for hamburger menu button, auto-hidden on desktop.
551
+ - **Sidebar.UserProfile** — New sub-component with avatar, name, email, status dot, and collapsed tooltip that adapts to rail/expanded/mobile states.
552
+ - **Sidebar accordion mode** — `Sidebar.Nav` now supports accordion mode where only one submenu can be open at a time.
553
+ - **NavItem `items` prop** — Self-contained submenu support without manual `useState` per submenu.
554
+ - **NavItem `notification` prop** — Pass a number for a count badge or `true` for a dot indicator.
555
+ - **NavItem active indicator** — 3px rounded primary bar on left edge for active items.
556
+ - **NavItem focus-visible ring** — Keyboard navigation now shows a visible focus ring.
557
+
558
+ ### Changed
559
+
560
+ - **Badge/Pill sizes and font weights** — Adjusted sizes and font weights (`xs`/`sm` now use `font-semibold`, Pill `md` padding updated).
561
+ - **Tabs trigger font** — Changed to `font-semibold`, removed gap from size variants.
562
+ - **Link component** — Added `font-semibold` to link variant.
563
+ - **PromptInput width** — Changed from `min-w-xl` to `w-full` for fluid width.
564
+ - **PromptSuggestion padding** — Reduced from `py-2 px-3.5` to `py-1 px-3`.
565
+ - **Card/Modal radius** — Reduced from 3x to 2x base radius in `theme.css`.
566
+ - **Sidebar theming** — All hardcoded colors (`bg-white`, `border-gray-200`) replaced with CSS variables. Supports `bg-image` classes for dark/themed sidebars via `className`.
567
+ - **NavItem hover style** — Replaced `hover:bg-neutral-100` with `hover:bg-[var(--color-background-secondary)]` for theme consistency.
568
+ - **Block stories** — Added responsive breakpoints and mobile sizing to AIAssistant, ActivityTimeline, Changelog, Chat, and other layout stories.
569
+
570
+ ### Fixed
571
+
572
+ - **FileManagerLayout story** — Fixed Breadcrumbs usage (use `items` prop, not compound API).
573
+ - **SettingsLayout story** — Removed non-existent `FormLayout.Header`/`FormLayout.Body` sub-components.
574
+ - **Font size and CSS variables** — Fixed font size and variable references.
575
+
576
+ ### Removed
577
+
578
+ - **EmptyStatesLayout story** — Removed story file.
579
+
580
+ ## [1.0.0-beta.13] - 2026-03-04
581
+
582
+ ### Added
583
+
584
+ - **Feed compound component** — Rebuilt as `Feed.Item` + `Feed.Collapse` with SVG curved connector, staggered expand/collapse animation, and reduced-motion support. New `Feed.animations.ts` module added.
585
+ - **Badge `xs` size** — New extra-small size variant with adjusted typography and per-size font weight.
586
+ - **FileTypeIcon component** — New component for rendering file type indicators.
587
+ - **ThemeBuilder component** — New component for theme customization workflows.
588
+ - **AIOrb `Aura` variant** — New aura visual variant for the AIOrb component. `OrbState` type is now exported. Hooks directory added.
589
+ - **GlassSurface `colorScheme` prop** — Theme-aware defaults for light mode including opacity, distortion, blend mode, and saturation control. Storybook stories added.
590
+ - **`paletteGenerator` utility exported** — `paletteGenerator` is now exported from the main `utils` package.
591
+
592
+ ### Changed
593
+
594
+ - **Feed architecture** — Previous Feed component replaced entirely by the new compound component API (`Feed.Item`, `Feed.Collapse`).
595
+ - **Badge typography and alignment** — Adjusted per-size font weight, added `align-middle`, fixed `ghost-neutral` text color.
596
+ - **Avatar base styles simplified** — Removed ring and glass-effect styles, switched to `font-bold`, limited `xs` size to single initial character.
597
+ - **Button `sm` text size** — Changed from `text-base` to `text-sm` for small button variant.
598
+ - **Message component** — Timestamp text changed to `text-xs`, sender bubble darkened to `neutral-900`.
599
+ - **AIOrb container** — Changed to `overflow-visible` to allow visual effects to extend beyond container bounds.
600
+ - **Timeline horizontal connector positioning** — Fixed using `absolute` positioning instead of `flex` layout.
601
+ - **`--color-text-secondary` token** — Adjusted from `neutral-800` to `neutral-700` in `theme.css`.
602
+ - **SocialIcon stories** — Updated Storybook stories.
603
+ - **Storybook sort order** — Added "Tools" category to Storybook story sort order.
604
+
605
+ ### Removed
606
+
607
+ - **Loader component** — The `Loader` component has been removed from the library.
608
+
609
+ ### Fixed
610
+
611
+ - **Avatar `alt` prop renamed to `name`** — `alt` prop is now `name` across Avatar and AvatarGroup. Review issues from the refactor have been addressed.
612
+ - **Timeline horizontal connector** — Connector now uses `absolute` positioning to correctly align with timeline items.
613
+ - **Ghost-neutral Badge text color** — Corrected text color for `ghost` variant with `neutral` color.
614
+
615
+ ## [1.0.0-beta.12] - 2026-02-26
616
+
617
+ ### BREAKING CHANGES
618
+
619
+ - **Compound component `.Content` renamed to `.Body`** — All compound components that previously used `.Content` (e.g., `Card.Content`, `Accordion.Content`, `Modal.Content`, `Drawer.Content`) now use `.Body`. Backward compatibility aliases have been removed.
620
+
621
+ ### Added
622
+
623
+ - **DatePicker `yearRange` prop** — Year dropdown order reversed (newest first) and a new `yearRange` prop exposed for custom year range configuration.
624
+ - **`React.ReactNode` flexibility across 14 components** — Applied the ReactNode flexibility pattern to 14 components for greater composition flexibility.
625
+ - **Checkbox and Radio flexibility** — Enhanced Checkbox and Radio components for more flexible usage patterns.
626
+ - **AccordionTrigger chevron customization** — New `chevron`, `chevronRotation`, and `chevronPosition` props for full control over the trigger indicator icon.
627
+ - **FormLayout Storybook autodocs** — Added `tags: ["autodocs"]`, component description, subcomponents, and inline source code blocks to FormLayout stories.
628
+
629
+ ### Changed
630
+
631
+ - **FormLayout simplified** — Removed dedicated `FormLayout.Header` and `FormLayout.Body` sub-components; separator injection logic moved to the root `FormLayout` component for a flatter API.
632
+ - **Card, Button, Modal, and Drawer minor styling adjustments** — Minor theme refinements for consistency.
633
+
634
+ ### Fixed
635
+
636
+ - **DatePicker year dropdown** — Default year dropdown now ends at current year instead of +50 years into the future.
637
+
638
+ ## [1.0.0-beta.11] - 2026-02-24
639
+
640
+ ### Added
641
+
642
+ - **AccordionTrigger `iconStart` / `iconEnd` props** — Trigger now accepts a leading `iconStart` and a trailing `iconEnd` element. `iconEnd` defaults to `PlusIcon`; set to `null` to hide the indicator entirely.
643
+ - **AccordionTrigger `iconStartRotation` / `iconEndRotation` props** — Configurable rotation degrees applied to each icon when the accordion is open. `iconEndRotation` defaults to 45 (plus-to-X); use 180 for chevrons, 90 for arrows, 0 to disable. `iconRotation` retained as a deprecated alias for `iconEndRotation`.
644
+ - **`createTriggerIconVariants` animation factory** — New exported helper in `Accordion.animations.ts` that returns Framer Motion `Variants` for icon rotation, parameterized by target degrees.
645
+ - **Accordion `contentInnerStyle` theme key** — `AccordionThemeOverrides` now includes `contentInnerStyle`, exposed in context, so the inner content padding can be overridden via theme. `className` on `AccordionContent` now targets the inner div instead of the outer container.
646
+ - **Drawer `sm` size** — New `sm` size variant: 320 px wide (horizontal) / 240 px tall (vertical), capped at 90 % of the viewport.
647
+ - **`DrawerContentProps` and `DrawerFooterProps` exported** — Both prop interfaces are now re-exported from the Drawer barrel (`index.ts`) for consumer use.
648
+ - **Button ripple utilities exported** — `useRipple`, `getRippleColorClass`, `getRippleAnimation`, and the types `RippleEffectType`, `RippleConfig`, `Ripple` are now exported from `@flikk/ui/core` and `@flikk/ui`.
649
+ - **`ButtonTheme` interface exported** — The `ButtonTheme` interface is now `export`ed from `Button.theme.ts` for consumers who need to extend it.
650
+
651
+ ### Changed
652
+
653
+ - **AccordionTrigger icon rendering** — The default indicator icon (`PlusIcon`) is now rendered through the unified `iconEnd` / `renderIcon` path, removing the previous hardcoded `AnimatePresence` wrapper. Indicator motion div gains `ml-auto` to always push to the right.
654
+ - **Accordion content `max-h`** — `data-[state=open]:max-h-[500px]` reduced to `max-h-[320px]` to limit the transition distance and prevent janky over-shoot on short content.
655
+ - **Accordion item style** — Removed `data-[state=open]:shadow-xs` from `itemStyle`; open state no longer elevates the item card.
656
+ - **Accordion trigger style** — Removed duplicate and conflicting utilities from `triggerStyle` string (`justify-between` duplication, redundant `cursor-pointer`, redundant `flex`).
657
+ - **Badge font sizes simplified** — `text-xs md:text-sm` (sm) and `text-sm md:text-base` (md) replaced with flat `text-sm` and `text-base` respectively, consistent with the beta.9 base-font-size change.
658
+ - **Button `getRippleAnimation` signature** — Changed from `(effect, layer, baseScale)` to `(effect, ripple, baseScale)` so the full `Ripple` object is available; `layer` is derived internally.
659
+ - **Button `particle` ripple effect** — Random scale and duration values are now pre-computed at ripple creation time (`randomScale`, `randomDuration` fields on `Ripple`) and reused during render, eliminating React hydration/re-render instability from calling `Math.random()` during animation.
660
+ - **Button `echo` ripple timeouts tracked** — Echo ripple `setTimeout` calls are now stored in `timeoutsRef` and cleared on unmount, preventing state updates on unmounted components.
661
+ - **Button `muted` ripple color removed** — `getRippleColorClass` no longer has a `muted` case; falls through to the `default` primary color.
662
+ - **Button disabled state consolidation** — `isDisabled` now correctly includes the native `disabled` prop (`!!disabledProp`), unifying `state="disabled"`, `state="loading"`, and native `disabled={true}` into a single flag used for all conditional logic.
663
+ - **Button `mergedRef` stability** — The merged ref callback no longer lists `ref` in its dependency array; instead tracks the latest `ref` via `useRef<forwardedRef>` to avoid DOM detach/attach cycles on every render when an inline callback ref is passed.
664
+ - **Button prop spread order** — `restProps` and `animationProps` are now spread before the explicit props in the JSX to ensure explicitly set values (e.g., `aria-label`, `onClick`) always take precedence over motion or consumer overrides.
665
+ - **Button reflection gradient completed** — The inner reflection `<div>` now includes the missing `from-white/25 to-transparent` gradient classes that were accidentally omitted.
666
+ - **Card padding simplified** — All card sub-components (`Header`, `Content`, `Footer`) use flat `p-6` instead of responsive `p-4 md:p-6`. `contentStyle` and `footerStyle` now include `pt-0` to eliminate double-spacing when `Header` is present.
667
+ - **Card `[&>*+*]:pt-0` rule removed** — The implicit child padding override has been removed from `baseStyle`; spacing is now handled explicitly per sub-component.
668
+ - **`CardTitle` and `CardSubtitle` render as `<div>`** — Changed from `<h3>` / `<p>` to `<div>` for maximum flexibility. Consumers who want semantic heading or paragraph elements should add them inside.
669
+ - **`CardTitleProps` / `CardSubtitleProps` interfaces** — Extend `HTMLAttributes<HTMLDivElement>` instead of `HTMLAttributes<HTMLHeadingElement>` / `HTMLAttributes<HTMLParagraphElement>`. `children` removed from explicit props (inherited from HTMLAttributes).
670
+ - **`CardComponent` type signatures updated** — `Title` and `Subtitle` `ForwardRefExoticComponent` ref types changed from `HTMLHeadingElement` / `HTMLParagraphElement` to `HTMLDivElement`.
671
+ - **Drawer theme keys renamed** — `DrawerTheme.content` renamed to `inner` (the full-height flex wrapper); `DrawerTheme.body` renamed to `content` (the scrollable body region). `DrawerThemeOverrides` updated to match.
672
+ - **Drawer position variants** — `drawerPositionVariantsWithMargin` and `drawerPositionVariantsFullWidth` now use `0` offsets (e.g., `right-0 top-0 h-full`) instead of `6` (`right-6 top-6`), removing the previously baked-in viewport gutter. Apply margin via wrapper or `className` instead.
673
+ - **`DrawerTitle` renders as `<h2>`** — Changed from `<div>` to `<h2>` for correct document outline and screen-reader heading announcement.
674
+ - **Drawer dark mode border** — `drawerTheme.footer` dark mode border changed from `dark:border-[var(--color-neutral-700)]` to `dark:border-[var(--color-border)]` for consistency with the theme system.
675
+ - **Drawer stories** — Added `CustomStyling` story demonstrating `className` overrides on `Drawer.Header`, `Drawer.Content`, `Drawer.Footer`, and `Drawer.Title`. Added `sm` size button and Drawer instance to the `Variants` story. Storybook size control updated to include `"sm"` option.
676
+ - **`global.scss` shadow** — Removed `!important` from the `.shadow-real-xl` shadow value to avoid CSS specificity side-effects.
677
+ - **`import type` for Framer Motion `Variants`** — `Accordion.animations.ts` now uses `import type` for the `Variants` import.
678
+
679
+ ### Fixed
680
+
681
+ - **Button ripple memory leak** — `useRipple` now creates a `timeoutsRef` and clears all pending `setTimeout` handles via a `useEffect` cleanup. Previously, timers fired after component unmount and called `setRipples` on a dead component.
682
+ - **Button `particle` ripple render instability** — `Math.random()` was previously called inside `getRippleAnimation` during React render/re-render, producing different values each call and causing animation flicker. Random values are now stable.
683
+ - **AccordionTrigger `AnimatePresence` removed** — The previous implementation wrapped the icon in `AnimatePresence` unnecessarily; it has been replaced with a direct `motion.div` using `initial={false}` and `animate` state, which is simpler and avoids exit animation artifacts.
684
+
685
+ ## [1.0.0-beta.10] - 2026-02-23
686
+
687
+ ### Added
688
+
689
+ - **VoiceRecorder component** — New `VoiceRecorder` sub-component for `PromptInput` enabling voice recording with Web Speech API / MediaRecorder integration. Exports `VoiceRecorderProps` and `VoiceRecorderTypes` from the AI package entry point.
690
+ - **PromptInput voice recording support** — `PromptInput` now accepts a `voiceRecorder` prop to render the `VoiceRecorder` UI inline within the input bar.
691
+ - **PromptInput animation system** — New `PromptInput.animations.ts` file with dedicated motion variants for the prompt input component.
692
+ - **WordAnimationContext** — New React context (`WordAnimationContext.tsx`) for coordinating per-word animation timing across `StreamingResponse` child components.
693
+ - **StreamingResponse animation variants** — New `StreamingResponse.animations.ts` with dedicated motion variants for streaming text and markdown elements.
694
+
695
+ ### Changed
696
+
697
+ - **Mention component — click-to-select atomic tags** — Clicking a rendered `@mention` tag now selects it as a single atomic unit with a visible ring highlight. Pressing Backspace or Delete removes the selected mention; typing any character replaces it. Implemented via React state to avoid conflicts with React reconciliation (`removeChild` errors previously caused by direct DOM manipulation).
698
+ - **Mention component utilities** — New `Mention.utils.ts` file extracted from component logic for reuse and testability.
699
+ - **StreamingResponse MarkdownRenderer** — Refactored `MarkdownRenderer.tsx` with improved block-level animation sequencing, better code block rendering, and compatibility with the new `WordAnimationContext`.
700
+ - **StreamingCursor** — Enhanced `StreamingCursor.tsx` with refined animation and cursor character options.
701
+ - **PromptInput types** — `PromptInput.types.ts` updated with new props for voice recording integration and animation configuration.
702
+ - **StreamingResponse types** — `StreamingResponse.types.ts` updated with new animation and cursor configuration props.
703
+ - **Tag component** — Types, theme, and implementation updated for improved flexibility and better integration with Mention's tag rendering.
704
+ - **Core component theme adjustments** — Minor visual refinements to Avatar, Badge, Button, and Card themes for improved consistency.
705
+
706
+ ### Fixed
707
+
708
+ - **Dropdown portal rendering** — `DropdownMenu` now correctly handles portal attachment edge cases.
709
+ - **Popover positioning and types** — `PopoverContent` positioning logic improved; `Popover.types.ts` extended with additional placement options.
710
+ - **useSelectPortal hook** — Refactored `useSelectPortal.ts` with more robust portal selection and cleanup logic, eliminating positioning drift on scroll and resize.
711
+
712
+ ## [1.0.0-beta.9] - 2026-02-20
713
+
714
+ ### Fixed
715
+
716
+ - **Text sizing corrected across all components** — Base font size changed from `text-sm` to `text-base` throughout all component themes, matching the intended design system baseline. Affects AI components, charts, core components, data-display, forms, effects, and layout.
717
+ - **Corrupted CSS variable references in Avatar and Segmented themes** — A previous automated script corrupted `--avatar-text-*` and `--segmented-text-size-*` variable names (e.g. `--avatar-text-sm` was corrupted to `--avatar-text-base`). These have been replaced with direct Tailwind text-size classes, which are more reliable and remove the need for the intermediate CSS variables.
718
+ - **Unused CSS variables removed from theme.css** — `--form-text-*`, `--button-text-size-*`, `--segmented-text-size-*`, and `--avatar-text-*` variables have been removed as they are no longer referenced by any component theme.
719
+
720
+ ## [1.0.0-beta.8] - 2026-02-20
721
+
722
+ ### BREAKING CHANGES
723
+
724
+ - **Checkbox compound component API** — `Checkbox` now exports as a compound component with `Checkbox.Group`. The `id` and `name` props changed from required to optional (auto-generated when omitted or inherited from group context)
725
+ - **Radio compound component API** — `Radio` now exports as a compound component with `Radio.Group`. The `id` and `name` props changed from required to optional. The `value` prop type widened from `string` to `string | number`
726
+
727
+ ### Added
728
+
729
+ - **CheckboxGroup compound component** — `Checkbox.Group` for managing groups of checkboxes with controlled/uncontrolled value handling, label, description, error state, vertical/horizontal orientation, and full accessibility (aria-labelledby, aria-invalid, role="group")
730
+ - **RadioGroup compound component** — `Radio.Group` for managing groups of radios with same feature set plus `string | number` value support (role="radiogroup")
731
+ - **Secondary semantic color** — New `secondary` color option available in Alert, Badge, Button, Progress, Spinner, KPI, Metric, CustomCursor
732
+ - **colorUtils module** — Shared `SemanticColor` type and centralized `semanticBgColors`, `semanticTextColors`, `semanticSpinnerColors` maps, exported from `@flikk/ui`
733
+ - **Secondary color CSS variables** — `--color-secondary-50` through `--color-secondary-950`, `--color-secondary`, and `--color-secondary-contrast` in theme.css
734
+
735
+ ### Fixed
736
+
737
+ - **Popover scroll lag** — Replaced debounced scroll handler with `requestAnimationFrame`-synced updates so the popover tracks the trigger without visible delay during page scroll
738
+ - **Popover internal scroll shift** — Scroll events originating inside the popover content no longer trigger position recalculation, preventing horizontal jitter when scrolling within the popover
739
+ - **Popover stays open when trigger off-screen** — Popover now auto-closes when the trigger element scrolls out of the viewport
740
+
741
+ ### Changed
742
+
743
+ - **Color type consolidation** — All semantic-color components now use shared `SemanticColor` from colorUtils instead of per-component color unions
744
+ - **Component themes** — Alert, Badge, Button, Progress, Spinner, KPI, Metric, CustomCursor themes updated with secondary color variants
745
+ - **Checkbox/Radio themes** — Extended with groupStyle, groupHorizontalStyle, groupDescriptionStyle, groupErrorStyle, groupItemsStyle
746
+ - **Forms barrel export** — Added CheckboxGroupProps, CheckboxGroupOrientation, RadioGroupProps, RadioGroupOrientation type exports
747
+ - **Storybook stories** — Updated for all affected components to demonstrate secondary color and compound group APIs
748
+
749
+ ## [1.0.0-beta.7] - 2026-02-19
750
+
751
+ ### Added
752
+
753
+ - **Semantic contrast color system** — Introduces `--color-primary-contrast`, `--color-danger-contrast`, `--color-success-contrast`, and `--color-warning-contrast` CSS variables for configurable text color on filled semantic backgrounds. Particularly useful when the primary color is light (e.g., yellow), where the default `text-white` would be unreadable
754
+ - **Dark mode setup documentation** — New `docs/INSTALLATION.md` section covering dark mode configuration with `@custom-variant` and `data-theme` attribute approach
755
+
756
+ ### Changed
757
+
758
+ - **Badge component** — Replaced hardcoded `text-white` with `text-[var(--color-{semantic}-contrast)]` across all filled color variants (`primary`, `danger`, `success`, `warning`)
759
+ - **Button component** — All filled color variant text colors now use contrast variables instead of `text-white`
760
+ - **Calendar component** — Selected date and range highlight text uses contrast variables
761
+ - **CommandPalette component** — Active/selected item text migrated to contrast variable
762
+ - **MenuItem component** — Active state text color uses contrast variable
763
+ - **OfflineIndicator component** — Indicator text uses contrast variable
764
+ - **Progress component** — Progress bar label text uses contrast variable
765
+ - **Timeline component** — Active marker text uses contrast variable
766
+ - **TableFilter component** — Active filter badge text uses contrast variable
767
+ - **PromptInput component** — Submit button text uses contrast variable
768
+ - **`src/styles/theme.css`** — Added four new contrast variable definitions defaulting to `var(--color-neutral-50)` (near-white), overridable per-project
769
+
770
+ ## [1.0.0-beta.6] - 2026-02-19
771
+
772
+ ### Changed
773
+
774
+ - **`package-lock.json` updated** — Lockfile regenerated to reflect latest resolved dependency versions
775
+
776
+ ## [1.0.0-beta.5] - 2026-02-19
777
+
778
+ ### Added
779
+
780
+ - **`./theme.css` export entry** — New subpath export `@flikk/ui/theme.css` pointing to `src/theme-plugin.css`, allowing consumers to import the Tailwind theme plugin CSS directly
781
+ - **`src/theme-plugin.css`** — Simplified theme plugin entry file containing `@source "../dist"` and `@import "./global.scss"` directives for clean Tailwind v4 integration
782
+
783
+ ### Changed
784
+
785
+ - **`package.json` files array** — Added `src/theme-plugin.css`, `src/global.scss`, and `src/styles` to the published files list so all theme source files are available to consumers
786
+ - **`sideEffects` declaration** — Added `./src/theme-plugin.css` to `sideEffects` to prevent tree-shaking from discarding the CSS file
787
+
788
+ ### Fixed
789
+
790
+ - **`@custom-variant dark` directive removed** from `theme-plugin.css` — The directive caused build errors in some consumer configurations; the simplified file is now broadly compatible
791
+
792
+ ## [1.0.0-beta.4] - 2026-02-19
793
+
794
+ ### Changed
795
+
796
+ - **Dependency management overhaul** — Moved `motion`, `@heroicons/react`, `clsx`, and `tailwind-merge` from `peerDependencies` to `dependencies` so they auto-install with `@flikk/ui`. Consumers no longer need to manually install these packages.
797
+ - **3D components isolated to sub-entry point** — `AIOrb`, `Particles`, and `SpotlightBorder` are no longer exported from `@flikk/ui` or `@flikk/ui/effects`. Import them from the new `@flikk/ui/effects/3d` subpath instead:
798
+ ```ts
799
+ // Before (pulls in three.js — breaks if not installed)
800
+ import { AIOrb } from "@flikk/ui";
801
+ // After (only loads when you explicitly opt in)
802
+ import { AIOrb } from "@flikk/ui/effects/3d";
803
+ ```
804
+
805
+ ### Fixed
806
+
807
+ - **"Module not found" errors on fresh install** — Installing `@flikk/ui` alone now works without extra dependency installs for all non-3D, non-AI components
808
+ - **Unwanted three.js dependency** — The main bundle no longer statically imports `three`, `@react-three/fiber`, or `@react-three/drei`
809
+
810
+ ## [1.0.0-beta.3] - 2026-02-19
811
+
812
+ ### Added
813
+
814
+ - **GanttChart component** - Interactive Gantt chart with Frappe Gantt-inspired features including drag-to-reschedule, dependency arrows that follow task bars during drag, task progress indicators, and full accessibility support
815
+ - **PageLayout compound component** - Full application layout with `PageLayout.Sidebar`, `PageLayout.Header`, and `PageLayout.Content` slots; includes stagger fade-up animation for content blocks
816
+ - **FormLayout compound component** - Structured form sections with `FormLayout.Header`, `FormLayout.Body`, `FormLayout.Section`, and `FormLayout.Footer` sub-components
817
+ - **15 new effect and core components**:
818
+ - `Aurora` - Animated aurora borealis background effect
819
+ - `DotPattern` - Configurable dot grid background pattern
820
+ - `GridPattern` - Configurable grid line background pattern
821
+ - `MagneticElement` - Cursor-attracted magnetic hover effect
822
+ - `MorphingText` - Smooth text morphing animation between strings
823
+ - `NoiseOverlay` - Film grain / noise texture overlay effect
824
+ - `ParallaxSection` - Scroll-driven parallax depth sections
825
+ - `Particles` - Three.js / R3F particle system effect
826
+ - `ScrollReveal` - Scroll-triggered reveal animation wrapper
827
+ - `Spotlight` - Cursor-following spotlight highlight effect
828
+ - `StickyScroll` - Sticky scroll content reveal (text + media panels)
829
+ - `CountdownTimer` - Animated countdown with days/hours/minutes/seconds display
830
+ - `Message` and `MessageList` - Chat message bubble components with threading support
831
+ - `SelectableCard` and `SelectableCardGroup` - Card-style radio/checkbox selector
832
+ - `TransferList` - Dual-list multi-select transfer control
833
+ - **New form components**:
834
+ - `CronInput` - Human-friendly cron expression builder with utility helpers
835
+ - `Mention` - @mention input with autocomplete dropdown
836
+ - **New data-display folder** - Reorganised data-display components into a dedicated folder
837
+ - **ProgressiveBlur component** - Gradient blur effect that progressively increases across an element
838
+ - **`dateUtils`** - Shared date formatting and manipulation utilities in `/src/utils/dateUtils.ts`
839
+ - **12 new Storybook block stories** - Full-page layout demos including AIAssistantLayout, CalendarLayout, ChangelogLayout, CommandPaletteLayout, EmptyStatesLayout, FileManagerLayout, InboxLayout, IntegrationsLayout, MailComposerLayout, MediaGalleryLayout, WaitlistLayout, and ActivityTimelineLayout
840
+
841
+ ### Changed
842
+
843
+ - **Message component UI improvements** - Updated message bubble styling and layout
844
+ - **ProgressiveBlur fix** - Corrected rendering artefacts in progressive blur implementation
845
+ - **Block stories refactored** - Removed embedded sidebars from 6+ block stories for cleaner standalone demos; all stories updated to use `w-full max-w-[X]` pattern for responsive mobile viewports
846
+ - **Story padding reduced** - Default story padding reduced; `PageHeading` made responsive
847
+ - **Import paths updated** - All story documentation updated from `"flikkui"` to `"@flikk/ui"`
848
+ - **Card component** - Added `CardSubtitle` sub-component; updated theme and types
849
+ - **Modal component** - Added `ModalDescription` and `ModalSubtitle` sub-components; updated theme and types
850
+ - **Drawer component** - Refactored with `DrawerHeader`, `DrawerTitle`, `DrawerSubtitle` sub-components; improved theme structure
851
+ - **Badge component** - Theme refinements for better visual consistency
852
+ - **Button component** - Theme updates aligned with design system
853
+ - **Accordion component** - Theme improvements
854
+ - **Checkbox and Radio components** - Theme refactors for consistency
855
+ - **CommandPalette** - Added `CommandItem` sub-component; updated theme
856
+ - **ContextMenu** - Added `ContextMenuItem` sub-component; updated types
857
+ - **Dropdown** - Added `DropdownItem` sub-component; updated types
858
+ - **Empty component** - New `Empty` state component added with theme
859
+ - **MenuItem component** - New standalone menu item with theme
860
+ - **Alert and AlertDialog** - Refactored types and component implementations
861
+ - **AI components** - Added `ApprovalCard` and enhanced `PromptInput` with updated theme
862
+ - **Layout index** - `src/components/layout/index.ts` added for clean layout exports
863
+ - **Forms index** - `src/components/forms/index.ts` updated with all new form components
864
+ - **Core index** - `src/components/core/index.ts` updated with all new core components
865
+ - **`src/index.ts`** - Main package index updated to export all new components
866
+ - **`global.scss`** - CSS variable and base style updates
867
+ - **`theme.css` / `tailwind-config.css`** - Theme variable refinements
868
+
869
+ ### Fixed
870
+
871
+ - **GanttChart dependency arrows** - Arrows now correctly track task bars during drag operations
872
+ - **GanttChart polish** - Bug fixes, performance improvements, and accessibility enhancements
873
+ - **Lint errors** - Fixed ESLint violations across multiple files; lockfile regenerated
874
+ - **All components made responsive** - Storybook stories updated for mobile viewport compatibility
875
+ - **DescriptionList and FormLayout responsiveness** - Improved layout on small screens
876
+ - **Chart and effect stories** - Responsive patterns applied consistently (`w-full max-w-[X]`)
877
+ - **AuthLayout** - Restored non-standard CSS classes after incorrect cleanup revert
878
+
879
+ ## [1.0.0-beta.1] - 2026-02-11
880
+
881
+ ### Changed
882
+
883
+ - **Package renamed** from `flikkui` to `@flikk/ui` (scoped private package)
884
+ - **Version bumped** to `1.0.0-beta.1` — fresh start under new scope
885
+ - **Drawer improvements** — Better transition animations and `useScaleBackground` hook fixes
886
+ - **Smooth scroll fixes** — Resolved 6 bugs in smooth scroll utility and ScrollArea integration
887
+
888
+ ### Fixed
889
+
890
+ - Drawer component transition animation refinements
891
+ - `useScaleBackground` hook reliability improvements
892
+
893
+ ## [0.2.0-beta.12] - 2026-02-09
894
+
895
+ ### Added
896
+
897
+ - **Animated effect component** - New compound animation component with pre-built animation presets:
898
+ - `Animated` container component with 10+ animation presets (fade, slide, scale, flip, bounce, rotate)
899
+ - `Animated.Item` for animating individual child elements with stagger support
900
+ - Configurable stagger delays, duration, and easing curves
901
+ - Reduced motion support via `prefers-reduced-motion`
902
+ - Built on Framer Motion with smooth, performant animations
903
+
904
+ ### Changed
905
+
906
+ - **Alert component major enhancement** - Merged Notification functionality into Alert:
907
+ - Added `dismissible` prop for showing close button
908
+ - Added `onClose` callback for handling dismissal
909
+ - Enhanced alert actions support with flexible button placement
910
+ - Improved theme structure with separate closeButton and action styles
911
+ - Better icon positioning and spacing
912
+ - Maintains all previous Alert functionality while adding notification-like behavior
913
+ - **Toast component improvements**:
914
+ - Enhanced animation performance and smoothness
915
+ - Improved provider integration and state management
916
+ - Better positioning and stacking behavior
917
+ - Added `pauseOnHover` support to prevent auto-dismiss on hover
918
+ - **Tag component theme refinements**:
919
+ - Updated color variants for better visual consistency
920
+ - Improved contrast ratios for accessibility
921
+ - Better alignment with design system color palette
922
+ - **Badge component theme improvements**:
923
+ - Enhanced visual hierarchy across variants
924
+ - Better text contrast on colored backgrounds
925
+ - **Package configuration**:
926
+ - Removed README.md from NPM package (no documentation shown on NPM page)
927
+ - Cleaner NPM package with only essential distribution files
928
+
929
+ ### Removed
930
+
931
+ - **ArtifactContainer component** - Removed experimental AI artifact container component
932
+ - **ChatInterface component** - Removed experimental chat interface component
933
+ - **Notification component** - Functionality merged into enhanced Alert component
934
+ - **StepperForm component** - Removed experimental stepper form component
935
+ - **Development documentation files** - CODE_REVIEW.md and GEMINI.md removed from repository
936
+
937
+ ### Fixed
938
+
939
+ - **Toast rendering issues** - Fixed edge cases in toast display and dismissal
940
+ - **Component usage issues** - Various bug fixes for improved stability and reliability
941
+ - **Theme consistency** - Resolved color and spacing inconsistencies across components
942
+
943
+ ## [0.2.0-beta.11] - 2026-02-09
944
+
945
+ ### Fixed
946
+
947
+ - **Minor patches and stability improvements**
948
+
949
+ ## [0.2.0-beta.10] - 2026-02-09
950
+
951
+ ### Added
952
+
953
+ - **AIOrb effect component** with two stunning variants:
954
+ - `AIOrb.DotSphere` - React Three Fiber implementation with animated particle sphere, wave distortion, and custom shader effects
955
+ - `AIOrb.Liquid` - Vanilla Three.js metallic liquid sphere with simplex noise displacement, PBR reflections, and radial-gradient masking
956
+ - **ArtifactContainer.CanvasTab** - New tab system for Canvas pane supporting multiple canvas views with smooth tab switching animations
957
+ - **ArtifactContainer animations** - Comprehensive motion system including:
958
+ - Collapsible pane animations with smooth width transitions
959
+ - Handle pill hover/press interactions
960
+ - Border glow effects for active states
961
+ - Tab content fade-in/slide animations
962
+ - Tab underline indicator with smooth tracking
963
+ - **AspectRatio component** - Maintains consistent width/height ratio for responsive media and content (16:9, 4:3, 1:1, etc.)
964
+ - **ScrollArea component** - Custom scrollable container with styled scrollbars, supporting vertical/horizontal/both orientations and auto/always/scroll/hover visibility modes
965
+ - **KPI component** - Lightweight metric display with value, label, trend indicator (auto-colored positive/negative), mini bar chart visualization, and description text
966
+ - **Rating component** - Interactive star rating with half-star support, hover preview, keyboard navigation (arrow keys), read-only/disabled modes, custom icons, and 4 color variants
967
+ - **Timeline component** - Compound component (Timeline > Item + Marker + Content) with vertical/horizontal layouts, left/right/alternate alignment, scroll-triggered entry animations, and completed/active/pending status states
968
+ - **RadarChart component** - SVG-based radar/spider chart with multiple overlapping data series, concentric grid rings, axis spokes, legend, and tooltip support on hover
969
+ - **ModalStack component** - Stacked modal system displaying two modals simultaneously (back + front) with scale/brightness animations for the back modal and smooth transitions
970
+ - **StreamingResponse animations** - Enhanced AI streaming with:
971
+ - Token-by-token fade-in with blur-to-sharp effect for plain text
972
+ - Block-level slide-in animations for markdown elements (paragraphs, code blocks, headings, lists)
973
+ - Animated blinking cursor (▍) shown during streaming
974
+ - `AnimatedText` component for performant per-token animation
975
+ - `StreamingCursor` component with configurable cursor character
976
+ - `animated` and `showCursor` props with reduced motion support
977
+
978
+ ### Changed
979
+
980
+ - **ArtifactContainer major refactor**:
981
+ - Complete rewrite with compound component architecture (Container > Chat + Canvas)
982
+ - Added collapsible pane support with smooth animations
983
+ - Implemented tab system for multiple canvas views
984
+ - Enhanced theming with separate styles for each sub-component
985
+ - Improved resize handle with visual feedback and constraints
986
+ - Better accessibility with ARIA attributes and keyboard navigation
987
+ - **Metric component icon handling** - Now properly preserves custom icon className while ensuring minimum `size-6` for consistency
988
+ - **Separator component** - Renamed from Divider (breaking change in beta.9, backward compatibility removed)
989
+ - **Chart infrastructure improvements**:
990
+ - RadarChart integrated with shared ChartTooltip system
991
+ - Enhanced tooltip positioning for radar/polar coordinates
992
+ - Improved hover hit areas for better UX
993
+ - **Dependency updates** (all latest stable versions as of Feb 2026):
994
+ - @emotion/is-prop-valid: 1.3.1 → 1.4.0
995
+ - @rollup/plugin-commonjs: 28.0.2 → 29.0.0 (major)
996
+ - @tailwindcss/cli: 4.0.9 → 4.1.18
997
+ - @types/react: 19.0.10 → 19.2.13
998
+ - @types/three: 0.170.0 → 0.182.0
999
+ - motion: 12.24.0 → 12.33.0
1000
+ - rollup: 4.34.8 → 4.57.1
1001
+ - three: 0.170.0 → 0.182.0
1002
+ - typescript: 5.7.3 → 5.9.3
1003
+ - Plus 10+ other devDependencies to latest versions
1004
+
1005
+ ### Fixed
1006
+
1007
+ - **Production build quality** - Comprehensive code review addressing 60+ issues:
1008
+ - Fixed grayscale2 typo in global.scss (Firefox font smoothing)
1009
+ - Set noEmitOnError: true in Rollup config (prevents shipping broken TypeScript)
1010
+ - Converted jsx: "react" to "react-jsx" for automatic JSX transform
1011
+ - Added forwardRef to 25+ components (Checkbox, Radio, Switch, FormLabel, FileUpload, Calendar, DragDrop, Masonry, Skeleton, Spinner, and more)
1012
+ - Eliminated ~60 `any` types across charts, tables, and core components
1013
+ - Added proper TypeScript types for callbacks, data items, filter values
1014
+ - Removed !important usage from component styles
1015
+ - **TypeScript compilation errors** - Fixed pre-existing errors that were silently ignored:
1016
+ - Fixed react-syntax-highlighter import path (removed /index.js suffix)
1017
+ - Widened MultiSeriesData.category to accept string | number
1018
+ - Fixed Sortable filter type narrowing and ref casting
1019
+ - Fixed TableFilter Input value prop casting
1020
+ - **AIOrb liquid variant rendering** - Fixed CSS margin collapsing issue where canvas container margin-top affected parent positioning (added overflow: hidden to create BFC)
1021
+ - **React peer dependency** - Updated to >=18.0.0 (motion library requirement)
1022
+ - **useClickOutside hook organization** - Moved from utils/ to hooks/ (kept re-export for backward compatibility)
1023
+
1024
+ ### Removed
1025
+
1026
+ - **Divider backward compatibility exports** - Use Separator instead (renamed in beta.9)
1027
+ - **Dead code cleanup**:
1028
+ - Unused coreGlowFragment export from Liquid.shaders.ts
1029
+ - .DS_Store files (now properly gitignored)
1030
+ - Generated src/index.css from version control (Tailwind build output)
1031
+
1032
+ ## [0.2.0-beta.9] - 2026-02-05
1033
+
1034
+ ### BREAKING CHANGES
1035
+
1036
+ - **AI components removed from main export** — `import { ChatInterface, Message, ... } from 'flikkui'` **no longer works**. AI components now require a subpath import:
1037
+
1038
+ ```ts
1039
+ // Before (broken)
1040
+ import { ChatInterface } from "flikkui";
1041
+ // After (correct)
1042
+ import { ChatInterface } from "flikkui/ai";
1043
+ ```
1044
+
1045
+ This was done to avoid pulling in heavy optional peer dependencies (`react-markdown`, `react-syntax-highlighter`, `remark-gfm`) for users who don't use AI components.
1046
+
1047
+ - **CLI module removed entirely** — The `flikkui` CLI (`npx flikkui init`) is gone. The library now focuses purely on components. Remove any CLI-related scripts or dependencies.
1048
+
1049
+ - **Input theme interface changed** — `InputTheme` now requires two new properties: `inputGroupFocusStyle` and `inputGroupFocusInvalidStyle`. If you provide a custom `InputTheme` override, you must add these fields. Focus styling is now JS-driven (not CSS `focus-within`) for better compatibility with `contentStart`/`contentEnd` slots.
1050
+
1051
+ - **Input `states.invalid` changed** — No longer includes `focus-within` pseudo-class styles. Focus ring for invalid state is now controlled separately via `inputGroupFocusInvalidStyle`.
1052
+
1053
+ ### Added
1054
+
1055
+ - `useIsClient` hook for safe client-side rendering and hydration detection
1056
+ - Chart path utilities (`path-utils.ts`) — shared SVG curve generation (monotone, linear, step, etc.) extracted from individual chart components
1057
+ - Comprehensive stories for Input, AreaChart, BarChart, LineChart, ComboChart
1058
+ - InputAddress: new type props and enhanced address field capabilities
1059
+
1060
+ ### Changed
1061
+
1062
+ - Refactored chart components with simplified, shared architecture:
1063
+ - AreaChart, BarChart, LineChart, ComboChart, StackedBarChart all use shared path/rendering utilities
1064
+ - BarRenderer: more robust rendering with improved edge-case handling
1065
+ - YAxis: uses `generateNiceTicks` for cleaner axis labels
1066
+ - ChartContainer, ChartTooltip, LineRenderer: simplified internals
1067
+ - Chart validation utilities expanded with stricter data checks
1068
+ - Input component: new focus-management system using JS state instead of CSS `focus-within` for full compatibility with embedded interactive elements (`contentStart`/`contentEnd`)
1069
+ - Input `contentStartStyle` / `contentEndStyle` now reset nested interactive element styles (outline, ring, border, background) for seamless embedding
1070
+ - Simplified `index.css` — removed redundant style rules
1071
+ - Updated `theme.css` variable structure
1072
+ - Optimized `rollup.config.js` build pipeline
1073
+ - Removed CLI-related dependencies from `package.json`
1074
+
1075
+ ### Fixed
1076
+
1077
+ - **Portal hydration mismatch (SSR/CSR)** — Fixed in 10+ components by gating portal rendering behind `useIsClient`. Affected components: ContextMenu, Dropdown, Popover, ColorPicker, Combobox, DatePicker, TimePicker, Toast, Tooltip, Overlay
1078
+ - Chart rendering edge cases and data validation errors
1079
+ - Input theme inheritance when using custom theme overrides
1080
+ - ProgressiveBlur component rendering improvements
1081
+
1082
+ ### Removed
1083
+
1084
+ - `src/cli/` module and all associated files (init command, project detection, CSS injection, dependency installer, Tailwind setup, logger)
1085
+ - CLI dependencies removed from `package.json`
1086
+ - Unused chart hook dependencies from `useChartScales`
1087
+
1088
+ ## [0.2.0-beta.8] - 2026-01-XX
1089
+
1090
+ ### Added
1091
+
1092
+ - Initial chart component implementations
1093
+ - Core component suite
1094
+
1095
+ ### Changed
1096
+
1097
+ - Various component improvements and refinements
1098
+
1099
+ ## [0.2.0-beta.7] - 2026-01-XX
1100
+
1101
+ ### Changed
1102
+
1103
+ - Component updates and bug fixes
1104
+
1105
+ ## [0.2.0-beta.6] - 2026-01-XX
1106
+
1107
+ ### Added
1108
+
1109
+ - MenuItem component with standardized design
1110
+ - Component radii standardization using CSS variables
1111
+
1112
+ ### Changed
1113
+
1114
+ - Comprehensive dark mode styling for Storybook documentation
1115
+ - Refactored global CSS variables for better theme consistency
1116
+
1117
+ ### Fixed
1118
+
1119
+ - Toast component rendering and positioning issues
1120
+
1121
+ ## [0.2.0-beta.5] - 2025-12-XX
1122
+
1123
+ ### Added
1124
+
1125
+ - Separate `theme.css` for better style organization
1126
+
1127
+ ### Changed
1128
+
1129
+ - Complete Table component refactor with improved architecture
1130
+ - Enhanced table theming and customization options
1131
+
1132
+ ## [0.2.0-beta.4] - 2025-12-XX
1133
+
1134
+ ### Added
1135
+
1136
+ - Progress component for loading states
1137
+
1138
+ ### Changed
1139
+
1140
+ - Tag Input component refactor with improved API
1141
+ - Combobox component updates for better usability
1142
+
1143
+ ### Fixed
1144
+
1145
+ - Time Picker component issues
1146
+
1147
+ ## [0.2.0-beta.3] - 2025-12-XX
1148
+
1149
+ ### Added
1150
+
1151
+ - Initial beta release features
1152
+
1153
+ ## [0.2.0-beta.2] - 2025-12-XX
1154
+
1155
+ ### Changed
1156
+
1157
+ - Early beta improvements
1158
+
1159
+ ## [0.2.0-beta.1] - 2025-12-XX
1160
+
1161
+ ### Added
1162
+
1163
+ - First beta release of Flikkui
1164
+ - Core component library foundation
1165
+ - TypeScript support
1166
+ - Tailwind CSS v4 integration
1167
+ - Framer Motion animations
1168
+ - Storybook documentation
1169
+
1170
+ ---
1171
+
1172
+ ## Release Notes
1173
+
1174
+ ### Beta Release Status
1175
+
1176
+ Flikkui is currently in beta. APIs may change between releases. Production use is not recommended until v1.0.0 stable release.
1177
+
1178
+ ### Migration Guide
1179
+
1180
+ For migration guidance between versions, please refer to the [documentation](https://github.com/yourusername/flikkui).
1181
+
1182
+ ### Reporting Issues
1183
+
1184
+ Found a bug? Please [open an issue](https://github.com/yourusername/flikkui/issues) on GitHub.