@flikk/ui 1.0.0-beta.31 → 1.0.0-beta.33

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 (460) hide show
  1. package/CHANGELOG.md +497 -22
  2. package/dist/components/ai/AgentRequest/AgentRequest.animations.d.ts +25 -0
  3. package/dist/components/ai/AgentRequest/AgentRequest.animations.js +81 -0
  4. package/dist/components/ai/AgentRequest/AgentRequest.d.ts +3 -0
  5. package/dist/components/ai/AgentRequest/AgentRequest.js +435 -0
  6. package/dist/components/ai/AgentRequest/AgentRequest.theme.d.ts +2 -0
  7. package/dist/components/ai/AgentRequest/AgentRequest.theme.js +106 -0
  8. package/dist/components/ai/AgentRequest/AgentRequest.types.d.ts +241 -0
  9. package/dist/components/ai/AgentRequest/index.d.ts +3 -0
  10. package/dist/components/ai/CodeBlock/CodeBlock.theme.js +1 -1
  11. package/dist/components/ai/PromptInput/PromptInput.js +2 -2
  12. package/dist/components/ai/PromptInput/PromptInput.theme.js +2 -2
  13. package/dist/components/ai/PromptSuggestion/PromptSuggestion.theme.js +2 -2
  14. package/dist/components/ai/Reasoning/Reasoning.js +27 -3
  15. package/dist/components/ai/Reasoning/Reasoning.theme.d.ts +6 -0
  16. package/dist/components/ai/Reasoning/Reasoning.theme.js +36 -0
  17. package/dist/components/ai/Reasoning/Reasoning.types.d.ts +58 -5
  18. package/dist/components/ai/Reasoning/ReasoningTrace.d.ts +11 -0
  19. package/dist/components/ai/Reasoning/ReasoningTrace.js +84 -0
  20. package/dist/components/ai/Reasoning/index.d.ts +2 -1
  21. package/dist/components/ai/StreamingResponse/AnimatedText.d.ts +7 -0
  22. package/dist/components/ai/StreamingResponse/AnimatedText.js +8 -7
  23. package/dist/components/ai/StreamingResponse/MarkdownRenderer.d.ts +5 -0
  24. package/dist/components/ai/StreamingResponse/MarkdownRenderer.js +4 -4
  25. package/dist/components/ai/StreamingResponse/StreamingCursor.d.ts +2 -2
  26. package/dist/components/ai/StreamingResponse/StreamingCursor.js +10 -7
  27. package/dist/components/ai/StreamingResponse/StreamingResponse.animations.d.ts +10 -0
  28. package/dist/components/ai/StreamingResponse/StreamingResponse.animations.js +59 -33
  29. package/dist/components/ai/StreamingResponse/StreamingResponse.js +13 -7
  30. package/dist/components/ai/StreamingResponse/StreamingResponse.types.d.ts +33 -2
  31. package/dist/components/ai/StreamingResponse/StreamingSurface.d.ts +13 -0
  32. package/dist/components/ai/StreamingResponse/StreamingSurface.js +38 -0
  33. package/dist/components/ai/StreamingResponse/WordAnimationContext.d.ts +5 -0
  34. package/dist/components/ai/StreamingResponse/WordAnimationContext.js +5 -4
  35. package/dist/components/ai/StreamingResponse/index.d.ts +4 -2
  36. package/dist/components/ai/TokenCounter/TokenCounter.theme.js +1 -1
  37. package/dist/components/ai/index.d.ts +3 -2
  38. package/dist/components/ai/index.js +4 -0
  39. package/dist/components/canvas/BaseNode.js +1 -1
  40. package/dist/components/canvas/CanvasToolbar.js +0 -1
  41. package/dist/components/canvas/Edge.js +2 -2
  42. package/dist/components/canvas/NodeControls.js +0 -1
  43. package/dist/components/canvas/NodeRenderer.js +2 -2
  44. package/dist/components/charts/ActivityRings/ActivityRings.js +2 -2
  45. package/dist/components/charts/ActivityRings/ActivityRings.theme.js +1 -1
  46. package/dist/components/charts/AreaChart/AreaChart.js +3 -3
  47. package/dist/components/charts/AreaChart/AreaChart.theme.js +3 -3
  48. package/dist/components/charts/BarChart/BarChart.js +4 -4
  49. package/dist/components/charts/ComboChart/BarRenderer.js +2 -2
  50. package/dist/components/charts/ComboChart/BarRenderer.types.d.ts +1 -1
  51. package/dist/components/charts/ComboChart/ComboChartCanvas.js +1 -1
  52. package/dist/components/charts/ComboChart/LineRenderer.js +1 -1
  53. package/dist/components/charts/ComboChart/LineRenderer.types.d.ts +1 -1
  54. package/dist/components/charts/DonutChart/DonutChart.theme.js +4 -4
  55. package/dist/components/charts/DonutChart/MultiSegmentDonutChart.theme.js +1 -1
  56. package/dist/components/charts/Heatmap/Heatmap.js +49 -42
  57. package/dist/components/charts/Heatmap/Heatmap.theme.d.ts +6 -2
  58. package/dist/components/charts/Heatmap/Heatmap.theme.js +20 -8
  59. package/dist/components/charts/Heatmap/Heatmap.types.d.ts +49 -82
  60. package/dist/components/charts/Heatmap/HeatmapCell.js +30 -81
  61. package/dist/components/charts/Heatmap/HeatmapLegend.d.ts +7 -6
  62. package/dist/components/charts/Heatmap/HeatmapLegend.js +6 -6
  63. package/dist/components/charts/Heatmap/index.d.ts +1 -1
  64. package/dist/components/charts/Heatmap/utils/heatmapUtils.d.ts +7 -12
  65. package/dist/components/charts/Heatmap/utils/heatmapUtils.js +16 -61
  66. package/dist/components/charts/Heatmap/utils/heatmapUtils.test.d.ts +1 -0
  67. package/dist/components/charts/HorizontalBarChart/HorizontalBarChart.js +1 -1
  68. package/dist/components/charts/LineChart/LineChart.js +2 -2
  69. package/dist/components/charts/LollipopChart/LollipopChart.js +1 -1
  70. package/dist/components/charts/RadarChart/RadarChart.js +1 -1
  71. package/dist/components/charts/StackedBarChart/StackedBarChart.js +3 -3
  72. package/dist/components/charts/hooks/useChartAccessibility.js +9 -6
  73. package/dist/components/charts/index.d.ts +4 -8
  74. package/dist/components/charts/index.js +2 -4
  75. package/dist/components/charts/shared/ChartText/ChartText.theme.js +1 -1
  76. package/dist/components/charts/shared/index.d.ts +1 -1
  77. package/dist/components/charts/theme/chart.theme.js +3 -3
  78. package/dist/components/charts/utils/animation-utils.d.ts +12 -7
  79. package/dist/components/charts/utils/animation-utils.js +19 -19
  80. package/dist/components/core/Accordion/Accordion.theme.js +1 -1
  81. package/dist/components/core/Alert/Alert.animations.d.ts +11 -4
  82. package/dist/components/core/Alert/Alert.animations.js +11 -4
  83. package/dist/components/core/Alert/Alert.js +16 -2
  84. package/dist/components/core/Alert/Alert.theme.js +1 -1
  85. package/dist/components/core/Alert/Alert.types.d.ts +4 -2
  86. package/dist/components/core/AlertDialog/AlertDialog.js +2 -2
  87. package/dist/components/core/Avatar/Avatar.theme.js +1 -1
  88. package/dist/components/core/Badge/Badge.animations.d.ts +0 -5
  89. package/dist/components/core/Badge/Badge.animations.js +5 -84
  90. package/dist/components/core/Badge/Badge.d.ts +7 -4
  91. package/dist/components/core/Badge/Badge.js +27 -64
  92. package/dist/components/core/Badge/Badge.theme.js +8 -12
  93. package/dist/components/core/Badge/Badge.types.d.ts +18 -34
  94. package/dist/components/core/Breadcrumbs/Breadcrumbs.theme.js +4 -4
  95. package/dist/components/core/Button/Button.js +7 -43
  96. package/dist/components/core/Button/Button.theme.js +5 -5
  97. package/dist/components/core/Button/Button.types.d.ts +8 -12
  98. package/dist/components/core/Button/index.d.ts +0 -2
  99. package/dist/components/core/Calendar/Calendar.theme.js +1 -1
  100. package/dist/components/core/Calendar/CalendarMini/CalendarMini.theme.js +2 -2
  101. package/dist/components/core/Card/Card.js +7 -2
  102. package/dist/components/core/Card/Card.theme.js +29 -1
  103. package/dist/components/core/Card/Card.types.d.ts +20 -0
  104. package/dist/components/core/Card/CardBody.js +9 -1
  105. package/dist/components/core/Card/CardContext.d.ts +13 -0
  106. package/dist/components/core/Card/CardContext.js +14 -0
  107. package/dist/components/core/Card/CardHeader.js +4 -1
  108. package/dist/components/core/ContextMenu/ContextMenu.theme.js +4 -3
  109. package/dist/components/core/ContextMenu/ContextMenu.types.d.ts +8 -1
  110. package/dist/components/core/ContextMenu/ContextMenuSub.d.ts +11 -1
  111. package/dist/components/core/ContextMenu/ContextMenuSub.js +35 -22
  112. package/dist/components/core/ContextMenu/ContextMenuSubBody.js +14 -3
  113. package/dist/components/core/ContextMenu/ContextMenuSubTrigger.js +21 -8
  114. package/dist/components/core/DragDrop/DragDrop.theme.js +2 -2
  115. package/dist/components/core/Drawer/Drawer.theme.js +1 -1
  116. package/dist/components/core/Drawer/DrawerHeader.js +0 -1
  117. package/dist/components/core/Dropdown/DropdownMenu.js +22 -7
  118. package/dist/components/core/Link/Link.js +1 -1
  119. package/dist/components/core/Masonry/Masonry.theme.js +1 -1
  120. package/dist/components/core/MenuItem/MenuItem.js +2 -1
  121. package/dist/components/core/MenuItem/MenuItem.theme.js +13 -1
  122. package/dist/components/core/Message/Message.js +2 -0
  123. package/dist/components/core/Message/Message.theme.js +3 -3
  124. package/dist/components/core/Modal/Modal.animations.d.ts +1 -1
  125. package/dist/components/core/Modal/Modal.animations.js +50 -11
  126. package/dist/components/core/Modal/Modal.js +5 -1
  127. package/dist/components/core/Modal/Modal.theme.js +1 -1
  128. package/dist/components/core/Modal/ModalHeader.js +0 -1
  129. package/dist/components/core/ModalStack/ModalStackModal.js +3 -1
  130. package/dist/components/core/NavItem/NavItem.js +3 -2
  131. package/dist/components/core/NavItem/NavItem.theme.js +1 -1
  132. package/dist/components/core/OfflineIndicator/OfflineIndicator.theme.js +4 -2
  133. package/dist/components/core/PageHeading/PageHeading.theme.js +1 -1
  134. package/dist/components/core/Pagination/Pagination.theme.js +2 -2
  135. package/dist/components/core/Pill/Pill.js +34 -18
  136. package/dist/components/core/Pill/Pill.theme.js +4 -2
  137. package/dist/components/core/Pill/Pill.types.d.ts +14 -1
  138. package/dist/components/core/Popover/PopoverBody.js +16 -5
  139. package/dist/components/core/Progress/Progress.d.ts +0 -25
  140. package/dist/components/core/Progress/Progress.js +79 -11
  141. package/dist/components/core/Progress/Progress.theme.js +17 -0
  142. package/dist/components/core/Progress/Progress.types.d.ts +47 -1
  143. package/dist/components/core/Rating/Rating.theme.js +1 -1
  144. package/dist/components/core/Rating/Rating.types.d.ts +3 -2
  145. package/dist/components/core/ScrollArea/ScrollArea.js +1 -1
  146. package/dist/components/core/ScrollArea/ScrollArea.theme.js +1 -1
  147. package/dist/components/core/Segmented/Segmented.theme.js +3 -3
  148. package/dist/components/core/Segmented/SegmentedContext.js +1 -0
  149. package/dist/components/core/Sidebar/Sidebar.js +5 -2
  150. package/dist/components/core/Sidebar/Sidebar.theme.js +2 -2
  151. package/dist/components/core/Sidebar/SidebarContent.js +1 -1
  152. package/dist/components/core/Sidebar/SidebarHeader.js +1 -1
  153. package/dist/components/core/Sidebar/SidebarSearch.js +2 -2
  154. package/dist/components/core/Sidebar/SidebarToggle.js +1 -1
  155. package/dist/components/core/Sidebar/SidebarUserProfile.js +1 -1
  156. package/dist/components/core/SlidingNumber/SlidingNumber.d.ts +8 -0
  157. package/dist/components/core/SlidingNumber/SlidingNumber.js +12 -3
  158. package/dist/components/core/Sortable/Sortable.theme.js +1 -1
  159. package/dist/components/core/Tabs/Tabs.theme.js +1 -1
  160. package/dist/components/core/Tag/Tag.theme.js +1 -1
  161. package/dist/components/core/Toast/ToastProvider.js +1 -1
  162. package/dist/components/core/Tree/Tree.theme.js +1 -1
  163. package/dist/components/core/index.d.ts +0 -2
  164. package/dist/components/core/index.js +0 -4
  165. package/dist/components/core/shared/ChartTooltip/ChartTooltip.animations.d.ts +4 -0
  166. package/dist/components/core/shared/ChartTooltip/ChartTooltip.animations.js +20 -0
  167. package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.js +1 -1
  168. package/dist/components/core/shared/Ripple.d.ts +16 -0
  169. package/dist/components/core/shared/Ripple.js +141 -0
  170. package/dist/components/data-display/GanttChart/GanttChart.theme.js +6 -6
  171. package/dist/components/data-display/GanttChart/GanttTaskBar.js +1 -1
  172. package/dist/components/data-display/GanttChart/GanttTimelineHeader.js +1 -1
  173. package/dist/components/data-display/GanttChart/GanttToolbar.js +0 -1
  174. package/dist/components/data-display/KPI/KPI.js +11 -20
  175. package/dist/components/data-display/KPI/KPI.theme.js +8 -4
  176. package/dist/components/data-display/Metric/Metric.theme.js +4 -4
  177. package/dist/components/data-display/Table/Table.theme.js +2 -2
  178. package/dist/components/data-display/Table/TableColumnManager.js +1 -2
  179. package/dist/components/data-display/Table/TableContext.js +1 -0
  180. package/dist/components/data-display/Table/TableFilter.js +9 -2
  181. package/dist/components/data-display/Table/TableSelectionHeader.js +1 -1
  182. package/dist/components/data-display/Timeline/Timeline.theme.js +1 -1
  183. package/dist/components/effects/CustomCursor/CustomCursor.d.ts +1 -1
  184. package/dist/components/effects/CustomCursor/CustomCursor.js +1 -1
  185. package/dist/components/effects/CustomCursor/CustomCursor.theme.js +4 -4
  186. package/dist/components/effects/Neumorphic/InsetCircleButton.js +1 -1
  187. package/dist/components/effects/Overlay/Overlay.js +7 -3
  188. package/dist/components/effects/index.d.ts +0 -32
  189. package/dist/components/effects/index.js +0 -16
  190. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.d.ts +0 -2
  191. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.js +1 -93
  192. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.types.d.ts +0 -10
  193. package/dist/components/effects/shared/ShaderCanvas/index.d.ts +1 -1
  194. package/dist/components/effects/shared/index.d.ts +1 -3
  195. package/dist/components/effects/shared/shaderNoise.glsl.d.ts +1 -1
  196. package/dist/components/effects/shared/shaderNoise.glsl.js +2 -11
  197. package/dist/components/forms/Checkbox/Checkbox.theme.js +1 -1
  198. package/dist/components/forms/ColorPicker/ColorPicker.js +45 -3
  199. package/dist/components/forms/ColorPicker/ColorPickerBody.js +8 -4
  200. package/dist/components/forms/ColorPicker/ColorPickerHeader.js +1 -1
  201. package/dist/components/forms/ColorPicker/ColorPickerImage.js +1 -1
  202. package/dist/components/forms/Combobox/Combobox.js +10 -4
  203. package/dist/components/forms/Combobox/Combobox.theme.js +9 -0
  204. package/dist/components/forms/Combobox/Combobox.types.d.ts +13 -0
  205. package/dist/components/forms/DatePicker/DatePicker.js +19 -12
  206. package/dist/components/forms/DatePicker/DatePicker.theme.js +5 -0
  207. package/dist/components/forms/DatePicker/DatePicker.types.d.ts +8 -0
  208. package/dist/components/forms/DatePicker/DatePickerContext.d.ts +0 -1
  209. package/dist/components/forms/DatePicker/DatePickerTrigger.js +5 -3
  210. package/dist/components/forms/DateRangePicker/DateRangePicker.theme.js +6 -1
  211. package/dist/components/forms/DateRangePicker/DateRangePicker.types.d.ts +8 -0
  212. package/dist/components/forms/DateRangePicker/DateRangePickerContext.js +1 -0
  213. package/dist/components/forms/DateRangePicker/DateRangePickerTrigger.js +5 -3
  214. package/dist/components/forms/FileUpload/FileUpload.theme.js +2 -2
  215. package/dist/components/forms/FileUpload/FileUploadProgress.theme.js +1 -1
  216. package/dist/components/forms/Input/Input.js +17 -12
  217. package/dist/components/forms/Input/Input.theme.js +10 -0
  218. package/dist/components/forms/Input/Input.types.d.ts +14 -0
  219. package/dist/components/forms/InputAddress/InputAddress.js +5 -5
  220. package/dist/components/forms/InputAddress/InputAddress.types.d.ts +9 -2
  221. package/dist/components/forms/InputCounter/InputCounter.js +194 -17
  222. package/dist/components/forms/InputCounter/InputCounter.theme.d.ts +12 -0
  223. package/dist/components/forms/InputCounter/InputCounter.theme.js +92 -2
  224. package/dist/components/forms/InputCounter/InputCounter.types.d.ts +47 -4
  225. package/dist/components/forms/InputCreditCard/InputCreditCard.js +4 -4
  226. package/dist/components/forms/InputCreditCard/InputCreditCard.types.d.ts +7 -0
  227. package/dist/components/forms/Mention/Mention.js +13 -11
  228. package/dist/components/forms/Radio/Radio.theme.js +1 -1
  229. package/dist/components/forms/RichTextEditor/RichTextEditor.d.ts +12 -16
  230. package/dist/components/forms/RichTextEditor/RichTextEditor.js +174 -1680
  231. package/dist/components/forms/RichTextEditor/RichTextEditor.theme.d.ts +12 -56
  232. package/dist/components/forms/RichTextEditor/RichTextEditor.theme.js +60 -118
  233. package/dist/components/forms/RichTextEditor/RichTextEditor.types.d.ts +62 -126
  234. package/dist/components/forms/RichTextEditor/RichTextLinkField.d.ts +18 -0
  235. package/dist/components/forms/RichTextEditor/RichTextLinkField.js +46 -0
  236. package/dist/components/forms/RichTextEditor/RichTextToolbar.d.ts +15 -0
  237. package/dist/components/forms/RichTextEditor/RichTextToolbar.js +93 -0
  238. package/dist/components/forms/RichTextEditor/editorCommands.d.ts +50 -0
  239. package/dist/components/forms/RichTextEditor/editorCommands.js +58 -0
  240. package/dist/components/forms/RichTextEditor/editorState.d.ts +19 -0
  241. package/dist/components/forms/RichTextEditor/editorState.js +103 -0
  242. package/dist/components/forms/RichTextEditor/index.d.ts +5 -3
  243. package/dist/components/forms/RichTextEditor/sanitizeHtml.d.ts +38 -0
  244. package/dist/components/forms/RichTextEditor/sanitizeHtml.js +179 -0
  245. package/dist/components/forms/RichTextEditor/sanitizeHtml.test.d.ts +1 -0
  246. package/dist/components/forms/Select/Select.js +19 -12
  247. package/dist/components/forms/Select/Select.theme.js +9 -1
  248. package/dist/components/forms/Select/Select.types.d.ts +86 -8
  249. package/dist/components/forms/Select/useSelectState.d.ts +9 -3
  250. package/dist/components/forms/Select/useSelectState.js +4 -1
  251. package/dist/components/forms/SelectableCard/SelectableCard.js +2 -1
  252. package/dist/components/forms/SelectableCard/SelectableCard.theme.js +1 -1
  253. package/dist/components/forms/Switch/Switch.theme.js +2 -2
  254. package/dist/components/forms/Textarea/Textarea.js +14 -25
  255. package/dist/components/forms/TimePicker/TimePicker.theme.js +10 -1
  256. package/dist/components/forms/TimePicker/TimePicker.types.d.ts +11 -0
  257. package/dist/components/forms/TimePicker/TimePickerTrigger.js +7 -5
  258. package/dist/components/forms/forms.theme.d.ts +57 -0
  259. package/dist/components/forms/forms.theme.js +102 -13
  260. package/dist/components/forms/index.js +1 -0
  261. package/dist/components/generative/FormShell.d.ts +22 -0
  262. package/dist/components/generative/FormShell.js +102 -0
  263. package/dist/components/generative/GenerativeView.d.ts +52 -1
  264. package/dist/components/generative/GenerativeView.js +203 -11
  265. package/dist/components/generative/actions.d.ts +5 -0
  266. package/dist/components/generative/ai-sdk/index.d.ts +1 -0
  267. package/dist/components/generative/ai-sdk/index.js +1 -0
  268. package/dist/components/generative/ai-sdk/useGenerativeChat.d.ts +52 -0
  269. package/dist/components/generative/ai-sdk/useGenerativeChat.js +73 -0
  270. package/dist/components/generative/ai-sdk/useGenerativeChat.test.d.ts +1 -0
  271. package/dist/components/generative/fieldBinding.d.ts +31 -0
  272. package/dist/components/generative/fieldBinding.js +33 -0
  273. package/dist/components/generative/fieldBinding.test.d.ts +1 -0
  274. package/dist/components/generative/formScope.d.ts +71 -0
  275. package/dist/components/generative/formScope.js +135 -0
  276. package/dist/components/generative/index.d.ts +4 -0
  277. package/dist/components/generative/index.js +4 -0
  278. package/dist/components/generative/registry.d.ts +2 -0
  279. package/dist/components/generative/registry.js +11 -10
  280. package/dist/components/generative/schema.generated.js +199 -293
  281. package/dist/components/generative/toToolResult.d.ts +21 -0
  282. package/dist/components/generative/toToolResult.js +15 -0
  283. package/dist/components/generative/toToolResult.test.d.ts +1 -0
  284. package/dist/components/generative/validate.d.ts +10 -1
  285. package/dist/components/generative/validate.js +126 -11
  286. package/dist/components/layout/Grid/Grid.js +1 -0
  287. package/dist/components/layout/Section/Section.theme.js +1 -1
  288. package/dist/components/layout/Stack/Stack.js +1 -0
  289. package/dist/generative.schema.json +199 -293
  290. package/dist/index.js +1 -4
  291. package/dist/registry.json +2765 -2450
  292. package/dist/shadcn-compat.css +5 -5
  293. package/dist/styles/theme.test.d.ts +1 -0
  294. package/dist/styles.css +1 -1
  295. package/dist/test/render.d.ts +17 -0
  296. package/dist/themes/precision.css +232 -0
  297. package/dist/tools.json +200 -295
  298. package/dist/utils/composeEventHandlers.d.ts +19 -0
  299. package/dist/utils/composeEventHandlers.js +26 -0
  300. package/dist/utils/composeEventHandlers.test.d.ts +1 -0
  301. package/dist/utils/index.d.ts +1 -1
  302. package/package.json +31 -1
  303. package/src/global.scss +21 -28
  304. package/src/styles/theme.css +157 -50
  305. package/src/styles/theme.test.ts +119 -0
  306. package/tailwind.preset.cjs +30 -20
  307. package/dist/components/charts/FunnelChart/FunnelChart.animations.d.ts +0 -35
  308. package/dist/components/charts/FunnelChart/FunnelChart.animations.js +0 -59
  309. package/dist/components/charts/FunnelChart/FunnelChart.d.ts +0 -8
  310. package/dist/components/charts/FunnelChart/FunnelChart.js +0 -410
  311. package/dist/components/charts/FunnelChart/FunnelChart.theme.d.ts +0 -2
  312. package/dist/components/charts/FunnelChart/FunnelChart.theme.js +0 -12
  313. package/dist/components/charts/FunnelChart/FunnelChart.types.d.ts +0 -105
  314. package/dist/components/charts/FunnelChart/index.d.ts +0 -4
  315. package/dist/components/charts/ScatterPlot/ScatterPlot.d.ts +0 -9
  316. package/dist/components/charts/ScatterPlot/ScatterPlot.js +0 -208
  317. package/dist/components/charts/ScatterPlot/ScatterPlot.theme.d.ts +0 -18
  318. package/dist/components/charts/ScatterPlot/ScatterPlot.theme.js +0 -42
  319. package/dist/components/charts/ScatterPlot/ScatterPlot.types.d.ts +0 -60
  320. package/dist/components/charts/ScatterPlot/ScatterPlot.types.js +0 -19
  321. package/dist/components/charts/ScatterPlot/index.d.ts +0 -3
  322. package/dist/components/core/Button/Button.ripple.d.ts +0 -71
  323. package/dist/components/core/Button/Button.ripple.js +0 -236
  324. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.d.ts +0 -4
  325. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.theme.d.ts +0 -12
  326. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.types.d.ts +0 -23
  327. package/dist/components/core/Calendar/CalendarEvent/index.d.ts +0 -2
  328. package/dist/components/core/CardStack/CardStack.animations.d.ts +0 -47
  329. package/dist/components/core/CardStack/CardStack.d.ts +0 -3
  330. package/dist/components/core/CardStack/CardStack.js +0 -187
  331. package/dist/components/core/CardStack/CardStack.theme.d.ts +0 -6
  332. package/dist/components/core/CardStack/CardStack.theme.js +0 -33
  333. package/dist/components/core/CardStack/CardStack.types.d.ts +0 -139
  334. package/dist/components/core/CardStack/index.d.ts +0 -7
  335. package/dist/components/core/Carousel/Carousel.d.ts +0 -3
  336. package/dist/components/core/Carousel/Carousel.js +0 -83
  337. package/dist/components/core/Carousel/Carousel.theme.d.ts +0 -10
  338. package/dist/components/core/Carousel/Carousel.theme.js +0 -20
  339. package/dist/components/core/Carousel/Carousel.types.d.ts +0 -113
  340. package/dist/components/core/Carousel/CarouselBody.d.ts +0 -4
  341. package/dist/components/core/Carousel/CarouselBody.js +0 -59
  342. package/dist/components/core/Carousel/CarouselContext.d.ts +0 -3
  343. package/dist/components/core/Carousel/CarouselContext.js +0 -13
  344. package/dist/components/core/Carousel/CarouselItem.d.ts +0 -4
  345. package/dist/components/core/Carousel/CarouselItem.js +0 -11
  346. package/dist/components/core/Carousel/CarouselNext.d.ts +0 -4
  347. package/dist/components/core/Carousel/CarouselNext.js +0 -16
  348. package/dist/components/core/Carousel/CarouselPrevious.d.ts +0 -4
  349. package/dist/components/core/Carousel/CarouselPrevious.js +0 -16
  350. package/dist/components/core/Carousel/index.d.ts +0 -3
  351. package/dist/components/effects/ColorPanels/ColorPanels.d.ts +0 -8
  352. package/dist/components/effects/ColorPanels/ColorPanels.js +0 -66
  353. package/dist/components/effects/ColorPanels/ColorPanels.shaders.d.ts +0 -12
  354. package/dist/components/effects/ColorPanels/ColorPanels.shaders.js +0 -218
  355. package/dist/components/effects/ColorPanels/ColorPanels.types.d.ts +0 -29
  356. package/dist/components/effects/ColorPanels/ColorPanels.types.js +0 -3
  357. package/dist/components/effects/ColorPanels/index.d.ts +0 -2
  358. package/dist/components/effects/FlutedGlass/FlutedGlass.d.ts +0 -9
  359. package/dist/components/effects/FlutedGlass/FlutedGlass.js +0 -80
  360. package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.d.ts +0 -12
  361. package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.js +0 -335
  362. package/dist/components/effects/FlutedGlass/FlutedGlass.types.d.ts +0 -61
  363. package/dist/components/effects/FlutedGlass/FlutedGlass.types.js +0 -16
  364. package/dist/components/effects/FlutedGlass/index.d.ts +0 -3
  365. package/dist/components/effects/GlassEffect/GlassEffect.d.ts +0 -15
  366. package/dist/components/effects/GlassEffect/GlassEffect.js +0 -38
  367. package/dist/components/effects/GlassEffect/GlassEffect.types.d.ts +0 -19
  368. package/dist/components/effects/GlassEffect/index.d.ts +0 -2
  369. package/dist/components/effects/GlassSurface/GlassSurface.d.ts +0 -8
  370. package/dist/components/effects/GlassSurface/GlassSurface.js +0 -250
  371. package/dist/components/effects/GlassSurface/GlassSurface.types.d.ts +0 -66
  372. package/dist/components/effects/GlassSurface/index.d.ts +0 -2
  373. package/dist/components/effects/GodRays/GodRays.d.ts +0 -8
  374. package/dist/components/effects/GodRays/GodRays.js +0 -68
  375. package/dist/components/effects/GodRays/GodRays.shaders.d.ts +0 -10
  376. package/dist/components/effects/GodRays/GodRays.shaders.js +0 -128
  377. package/dist/components/effects/GodRays/GodRays.types.d.ts +0 -25
  378. package/dist/components/effects/GodRays/GodRays.types.js +0 -3
  379. package/dist/components/effects/GodRays/index.d.ts +0 -2
  380. package/dist/components/effects/GridPattern/GridPattern.d.ts +0 -18
  381. package/dist/components/effects/GridPattern/GridPattern.js +0 -65
  382. package/dist/components/effects/GridPattern/GridPattern.types.d.ts +0 -47
  383. package/dist/components/effects/GridPattern/index.d.ts +0 -2
  384. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.d.ts +0 -10
  385. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.js +0 -78
  386. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.d.ts +0 -22
  387. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.js +0 -239
  388. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.types.d.ts +0 -52
  389. package/dist/components/effects/HalftoneCmyk/index.d.ts +0 -2
  390. package/dist/components/effects/HalftoneDots/HalftoneDots.d.ts +0 -9
  391. package/dist/components/effects/HalftoneDots/HalftoneDots.js +0 -68
  392. package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.d.ts +0 -13
  393. package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.js +0 -296
  394. package/dist/components/effects/HalftoneDots/HalftoneDots.types.d.ts +0 -43
  395. package/dist/components/effects/HalftoneDots/HalftoneDots.types.js +0 -12
  396. package/dist/components/effects/HalftoneDots/index.d.ts +0 -3
  397. package/dist/components/effects/ImageDithering/ImageDithering.d.ts +0 -9
  398. package/dist/components/effects/ImageDithering/ImageDithering.js +0 -68
  399. package/dist/components/effects/ImageDithering/ImageDithering.shaders.d.ts +0 -12
  400. package/dist/components/effects/ImageDithering/ImageDithering.shaders.js +0 -117
  401. package/dist/components/effects/ImageDithering/ImageDithering.types.d.ts +0 -30
  402. package/dist/components/effects/ImageDithering/ImageDithering.types.js +0 -8
  403. package/dist/components/effects/ImageDithering/index.d.ts +0 -3
  404. package/dist/components/effects/MagneticElement/MagneticElement.d.ts +0 -30
  405. package/dist/components/effects/MagneticElement/MagneticElement.js +0 -111
  406. package/dist/components/effects/MagneticElement/MagneticElement.types.d.ts +0 -44
  407. package/dist/components/effects/MagneticElement/index.d.ts +0 -2
  408. package/dist/components/effects/Metaballs/Metaballs.d.ts +0 -8
  409. package/dist/components/effects/Metaballs/Metaballs.js +0 -59
  410. package/dist/components/effects/Metaballs/Metaballs.shaders.d.ts +0 -10
  411. package/dist/components/effects/Metaballs/Metaballs.shaders.js +0 -102
  412. package/dist/components/effects/Metaballs/Metaballs.types.d.ts +0 -16
  413. package/dist/components/effects/Metaballs/Metaballs.types.js +0 -3
  414. package/dist/components/effects/Metaballs/index.d.ts +0 -2
  415. package/dist/components/effects/PaperTexture/PaperTexture.d.ts +0 -9
  416. package/dist/components/effects/PaperTexture/PaperTexture.js +0 -61
  417. package/dist/components/effects/PaperTexture/PaperTexture.shaders.d.ts +0 -22
  418. package/dist/components/effects/PaperTexture/PaperTexture.shaders.js +0 -145
  419. package/dist/components/effects/PaperTexture/PaperTexture.types.d.ts +0 -19
  420. package/dist/components/effects/PaperTexture/index.d.ts +0 -2
  421. package/dist/components/effects/PulsingBorder/PulsingBorder.d.ts +0 -27
  422. package/dist/components/effects/PulsingBorder/PulsingBorder.js +0 -174
  423. package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.d.ts +0 -14
  424. package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.js +0 -258
  425. package/dist/components/effects/PulsingBorder/PulsingBorder.types.d.ts +0 -75
  426. package/dist/components/effects/PulsingBorder/PulsingBorder.types.js +0 -3
  427. package/dist/components/effects/PulsingBorder/index.d.ts +0 -2
  428. package/dist/components/effects/SmokeRing/SmokeRing.d.ts +0 -8
  429. package/dist/components/effects/SmokeRing/SmokeRing.js +0 -62
  430. package/dist/components/effects/SmokeRing/SmokeRing.shaders.d.ts +0 -14
  431. package/dist/components/effects/SmokeRing/SmokeRing.shaders.js +0 -130
  432. package/dist/components/effects/SmokeRing/SmokeRing.types.d.ts +0 -22
  433. package/dist/components/effects/SmokeRing/SmokeRing.types.js +0 -3
  434. package/dist/components/effects/SmokeRing/index.d.ts +0 -2
  435. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.d.ts +0 -9
  436. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.js +0 -59
  437. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.d.ts +0 -14
  438. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.js +0 -129
  439. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.d.ts +0 -23
  440. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.js +0 -3
  441. package/dist/components/effects/StaticGradientMesh/index.d.ts +0 -2
  442. package/dist/components/effects/Water/Water.d.ts +0 -9
  443. package/dist/components/effects/Water/Water.js +0 -65
  444. package/dist/components/effects/Water/Water.shaders.d.ts +0 -11
  445. package/dist/components/effects/Water/Water.shaders.js +0 -123
  446. package/dist/components/effects/Water/Water.types.d.ts +0 -25
  447. package/dist/components/effects/Water/index.d.ts +0 -2
  448. package/dist/components/effects/shared/bayerMatrices.glsl.d.ts +0 -10
  449. package/dist/components/effects/shared/bayerMatrices.glsl.js +0 -44
  450. package/dist/components/effects/shared/imageUV.glsl.d.ts +0 -12
  451. package/dist/components/effects/shared/imageUV.glsl.js +0 -26
  452. package/dist/components/forms/RichTextEditor/RichTextEditor.animations.d.ts +0 -7
  453. package/dist/components/forms/RichTextEditor/RichTextEditor.animations.js +0 -32
  454. package/dist/utils/calendarUtils.d.ts +0 -60
  455. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.d.ts +0 -0
  456. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.theme.d.ts +0 -0
  457. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.theme.js +0 -0
  458. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.types.d.ts +0 -0
  459. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltipContent.d.ts +0 -0
  460. /package/dist/components/{charts → core}/shared/ChartTooltip/index.d.ts +0 -0
@@ -380,8 +380,8 @@ const GENERATIVE_SCHEMA = {
380
380
  "outline",
381
381
  "soft"
382
382
  ],
383
- "default": "filled",
384
- "description": "The visual style variant of the badge (filled, outline, soft)"
383
+ "default": "soft",
384
+ "description": "The visual style variant of the badge."
385
385
  },
386
386
  "color": {
387
387
  "kind": "enum",
@@ -417,11 +417,6 @@ const GENERATIVE_SCHEMA = {
417
417
  "iconStart": {
418
418
  "kind": "icon",
419
419
  "description": "Icon element at the start (before content)"
420
- },
421
- "disabled": {
422
- "kind": "boolean",
423
- "default": false,
424
- "description": "Whether the badge is disabled"
425
420
  }
426
421
  }
427
422
  },
@@ -609,27 +604,8 @@ const GENERATIVE_SCHEMA = {
609
604
  },
610
605
  "enableRipple": {
611
606
  "kind": "boolean",
612
- "description": "Whether to enable ripple effect on click"
613
- },
614
- "rippleEffect": {
615
- "kind": "enum",
616
- "options": [
617
- "default",
618
- "neon",
619
- "aurora",
620
- "particle",
621
- "glass",
622
- "echo"
623
- ],
624
- "description": "Type of ripple effect: 'default' | 'aurora' | 'particle' | 'glass' | 'neon' | 'echo'"
625
- },
626
- "rippleClassName": {
627
- "kind": "string",
628
- "description": "Custom class name for ripple styling"
629
- },
630
- "rippleScale": {
631
- "kind": "number",
632
- "description": "Scale multiplier for ripple expansion (default: 10)"
607
+ "default": true,
608
+ "description": "Whether to show the press ripple."
633
609
  },
634
610
  "showReflection": {
635
611
  "kind": "boolean",
@@ -761,6 +737,14 @@ const GENERATIVE_SCHEMA = {
761
737
  "disabled": {
762
738
  "kind": "boolean",
763
739
  "description": "Whether the checkbox is disabled"
740
+ },
741
+ "required": {
742
+ "kind": "boolean",
743
+ "description": "Marks this field as required. A parent Form refuses to submit while it is empty, and lists it in the form's error summary."
744
+ },
745
+ "name": {
746
+ "kind": "string",
747
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
764
748
  }
765
749
  }
766
750
  },
@@ -830,7 +814,7 @@ const GENERATIVE_SCHEMA = {
830
814
  },
831
815
  "name": {
832
816
  "kind": "string",
833
- "description": "Form field name"
817
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
834
818
  },
835
819
  "value": {
836
820
  "kind": "string",
@@ -1150,113 +1134,27 @@ const GENERATIVE_SCHEMA = {
1150
1134
  }
1151
1135
  }
1152
1136
  },
1153
- "FunnelChart": {
1154
- "role": "leaf",
1155
- "description": "Conversion funnel chart (auto Card shell). Bind node.actions.stageClick to onStageClick (fires with the clicked stage's data).",
1137
+ "Form": {
1138
+ "role": "container",
1139
+ "description": "A form that collects structured input from the user. Children with a `name` prop become fields; submitting delivers all field values at once in a single action. Use this whenever you need information from the user rather than free text.",
1156
1140
  "props": {
1157
- "data": {
1158
- "kind": "shape",
1159
- "shape": "funnelStages",
1160
- "required": true,
1161
- "description": "Funnel stages data"
1162
- },
1163
- "height": {
1164
- "kind": "union",
1165
- "types": [
1166
- "number",
1167
- "string"
1168
- ],
1169
- "description": "Height of the chart"
1170
- },
1171
- "width": {
1172
- "kind": "union",
1173
- "types": [
1174
- "number",
1175
- "string"
1176
- ],
1177
- "description": "Width of the chart"
1178
- },
1179
- "showPercentages": {
1180
- "kind": "boolean",
1181
- "description": "Whether to show percentages"
1182
- },
1183
- "showValues": {
1184
- "kind": "boolean",
1185
- "description": "Whether to show values"
1186
- },
1187
- "showLabels": {
1188
- "kind": "boolean",
1189
- "description": "Whether to show stage labels (name)"
1190
- },
1191
- "showDropoff": {
1192
- "kind": "boolean",
1193
- "description": "Whether to show dropoff percentages between stages"
1194
- },
1195
- "showConversionRate": {
1196
- "kind": "boolean",
1197
- "description": "Whether to show conversion rates between stages"
1198
- },
1199
- "showSummary": {
1200
- "kind": "boolean",
1201
- "description": "Whether to show summary statistics"
1202
- },
1203
- "colors": {
1204
- "kind": "shape",
1205
- "shape": "colorList",
1206
- "description": "Custom colors"
1207
- },
1208
- "orientation": {
1209
- "kind": "enum",
1210
- "options": [
1211
- "horizontal",
1212
- "vertical"
1213
- ],
1214
- "description": "Orientation of the funnel"
1215
- },
1216
- "curved": {
1217
- "kind": "boolean",
1218
- "description": "Whether to curve segment edges (horizontal only)"
1219
- },
1220
- "useGradient": {
1221
- "kind": "boolean",
1222
- "description": "Whether to use gradient fills"
1223
- },
1224
- "fillOpacity": {
1225
- "kind": "number",
1226
- "description": "Fill opacity when gradients are disabled or for gradient stops"
1227
- },
1228
- "labelPosition": {
1229
- "kind": "enum",
1230
- "options": [
1231
- "top",
1232
- "bottom",
1233
- "inside",
1234
- "tooltip-only"
1235
- ],
1236
- "description": "Position of stage labels"
1237
- },
1238
- "summaryPosition": {
1239
- "kind": "enum",
1240
- "options": [
1241
- "none",
1242
- "top-right",
1243
- "top-left",
1244
- "bottom-right",
1245
- "bottom-left"
1246
- ],
1247
- "description": "Position of summary statistics box"
1248
- },
1249
- "animate": {
1250
- "kind": "boolean",
1251
- "description": "Whether to animate on mount"
1252
- },
1253
1141
  "title": {
1254
1142
  "kind": "text",
1255
- "description": "Card header title (the auto shell)"
1143
+ "description": "Heading for the form. Also becomes its accessible name."
1256
1144
  },
1257
- "subtitle": {
1145
+ "description": {
1258
1146
  "kind": "text",
1259
- "description": "Card header subtitle (the auto shell)"
1147
+ "description": "Optional helper text shown above the fields."
1148
+ },
1149
+ "submitLabel": {
1150
+ "kind": "string",
1151
+ "default": "Submit",
1152
+ "description": "Label for the submit button. A button is rendered automatically when the form's children do not include one."
1153
+ },
1154
+ "errorSummaryTitle": {
1155
+ "kind": "text",
1156
+ "default": "Please fix the following before continuing:",
1157
+ "description": "Heading for the error summary shown when submit is blocked because a required field is empty. Set it to match the spec's language."
1260
1158
  }
1261
1159
  }
1262
1160
  },
@@ -1290,8 +1188,8 @@ const GENERATIVE_SCHEMA = {
1290
1188
  "kind": "enum",
1291
1189
  "options": [
1292
1190
  "none",
1293
- "inside",
1294
1191
  "auto",
1192
+ "inside",
1295
1193
  "outside"
1296
1194
  ]
1297
1195
  },
@@ -1437,29 +1335,66 @@ const GENERATIVE_SCHEMA = {
1437
1335
  "role": "leaf",
1438
1336
  "description": "Calendar/matrix heatmap (auto Card shell). Bind node.actions.cellClick to onCellClick (fires with the clicked cell's data).",
1439
1337
  "props": {
1338
+ "legend": {
1339
+ "kind": "enum",
1340
+ "options": [
1341
+ "top",
1342
+ "bottom",
1343
+ "none"
1344
+ ],
1345
+ "default": "bottom",
1346
+ "description": "Colour-ramp legend position — Heatmap draws its own gradient ramp, not per-series swatches from `config`. Always defaults to 'bottom' when omitted."
1347
+ },
1440
1348
  "data": {
1441
1349
  "kind": "shape",
1442
1350
  "shape": "heatmapPoints",
1443
- "description": "Heatmap data array - optional when using ChartContainer context"
1351
+ "description": "Heatmap data array optional when using ChartContainer context"
1444
1352
  },
1445
1353
  "color": {
1446
1354
  "kind": "enum",
1447
1355
  "options": [
1356
+ "mono",
1448
1357
  "primary",
1449
1358
  "success",
1450
1359
  "warning",
1451
1360
  "danger"
1452
1361
  ],
1453
- "description": "Semantic color for heatmap cells (primary, success, warning, danger)"
1362
+ "default": "primary",
1363
+ "description": "Semantic colour for heatmap cells"
1454
1364
  },
1455
1365
  "variant": {
1456
1366
  "kind": "enum",
1457
1367
  "options": [
1458
1368
  "default",
1459
- "minimal",
1460
- "bordered"
1369
+ "minimal"
1461
1370
  ],
1462
- "description": "Chart variant"
1371
+ "default": "default",
1372
+ "description": "Visual variant"
1373
+ },
1374
+ "legendLabels": {
1375
+ "kind": "shape",
1376
+ "shape": "heatmapLegendLabels",
1377
+ "default": "{ min: 'Low activity', max: 'High activity' }",
1378
+ "description": "Captions at each end of the colour ramp."
1379
+ },
1380
+ "cellGap": {
1381
+ "kind": "union",
1382
+ "types": [
1383
+ "number",
1384
+ "string"
1385
+ ],
1386
+ "default": 6,
1387
+ "description": "Gap between cells"
1388
+ },
1389
+ "minOpacity": {
1390
+ "kind": "number",
1391
+ "default": 0.1,
1392
+ "description": "Opacity floor for zero/lowest-intensity cells"
1393
+ },
1394
+ "showTooltip": {
1395
+ "kind": "boolean",
1396
+ "default": true,
1397
+ "description": "Show the hover tooltip"
1463
1398
  },
1464
1399
  "height": {
1465
1400
  "kind": "union",
@@ -1475,9 +1410,18 @@ const GENERATIVE_SCHEMA = {
1475
1410
  "string"
1476
1411
  ]
1477
1412
  },
1478
- "enableKeyboardNavigation": {
1413
+ "showXAxis": {
1414
+ "kind": "boolean"
1415
+ },
1416
+ "showYAxis": {
1479
1417
  "kind": "boolean"
1480
1418
  },
1419
+ "minValue": {
1420
+ "kind": "number"
1421
+ },
1422
+ "maxValue": {
1423
+ "kind": "number"
1424
+ },
1481
1425
  "title": {
1482
1426
  "kind": "text",
1483
1427
  "description": "Card header title (the auto shell)"
@@ -1591,15 +1535,21 @@ const GENERATIVE_SCHEMA = {
1591
1535
  "enableKeyboardNavigation": {
1592
1536
  "kind": "boolean"
1593
1537
  },
1594
- "showGrid": {
1595
- "kind": "boolean"
1596
- },
1597
1538
  "showXAxis": {
1598
1539
  "kind": "boolean"
1599
1540
  },
1600
1541
  "showYAxis": {
1601
1542
  "kind": "boolean"
1602
1543
  },
1544
+ "minValue": {
1545
+ "kind": "number"
1546
+ },
1547
+ "maxValue": {
1548
+ "kind": "number"
1549
+ },
1550
+ "showGrid": {
1551
+ "kind": "boolean"
1552
+ },
1603
1553
  "legend": {
1604
1554
  "kind": "enum",
1605
1555
  "options": [
@@ -1609,12 +1559,6 @@ const GENERATIVE_SCHEMA = {
1609
1559
  ],
1610
1560
  "description": "Always-visible legend position, rendered from `config`'s labels/colors."
1611
1561
  },
1612
- "minValue": {
1613
- "kind": "number"
1614
- },
1615
- "maxValue": {
1616
- "kind": "number"
1617
- },
1618
1562
  "barRadius": {
1619
1563
  "kind": "number"
1620
1564
  },
@@ -1793,7 +1737,7 @@ const GENERATIVE_SCHEMA = {
1793
1737
  },
1794
1738
  "name": {
1795
1739
  "kind": "string",
1796
- "description": "Form field name"
1740
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
1797
1741
  },
1798
1742
  "min": {
1799
1743
  "kind": "number",
@@ -1818,6 +1762,21 @@ const GENERATIVE_SCHEMA = {
1818
1762
  "required": true,
1819
1763
  "description": "Current counter value (controlled)"
1820
1764
  },
1765
+ "size": {
1766
+ "kind": "enum",
1767
+ "options": [
1768
+ "sm",
1769
+ "md",
1770
+ "lg"
1771
+ ],
1772
+ "default": "md",
1773
+ "description": "Control size, drawn from the shared `--form-*` scale so a counter lines up"
1774
+ },
1775
+ "editable": {
1776
+ "kind": "boolean",
1777
+ "default": true,
1778
+ "description": "Whether clicking the number swaps it for a text field so the value can be"
1779
+ },
1821
1780
  "state": {
1822
1781
  "kind": "enum",
1823
1782
  "options": [
@@ -1858,6 +1817,14 @@ const GENERATIVE_SCHEMA = {
1858
1817
  "decimalPlaces": {
1859
1818
  "kind": "number",
1860
1819
  "description": "Number of decimal places to display (auto-detected from step if not specified)"
1820
+ },
1821
+ "required": {
1822
+ "kind": "boolean",
1823
+ "description": "Marks this field as required. A parent Form refuses to submit while it is empty, and lists it in the form's error summary."
1824
+ },
1825
+ "name": {
1826
+ "kind": "string",
1827
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
1861
1828
  }
1862
1829
  }
1863
1830
  },
@@ -1935,6 +1902,10 @@ const GENERATIVE_SCHEMA = {
1935
1902
  "maxDate": {
1936
1903
  "kind": "string",
1937
1904
  "description": "Maximum selectable date, ISO format"
1905
+ },
1906
+ "name": {
1907
+ "kind": "string",
1908
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
1938
1909
  }
1939
1910
  }
1940
1911
  },
@@ -2001,6 +1972,14 @@ const GENERATIVE_SCHEMA = {
2001
1972
  "kind": "boolean",
2002
1973
  "default": true,
2003
1974
  "description": "Auto-focus the first input on mount"
1975
+ },
1976
+ "required": {
1977
+ "kind": "boolean",
1978
+ "description": "Marks this field as required. A parent Form refuses to submit while it is empty, and lists it in the form's error summary."
1979
+ },
1980
+ "name": {
1981
+ "kind": "string",
1982
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
2004
1983
  }
2005
1984
  }
2006
1985
  },
@@ -2070,6 +2049,14 @@ const GENERATIVE_SCHEMA = {
2070
2049
  "emptyMessage": {
2071
2050
  "kind": "string",
2072
2051
  "description": "Message shown when no suggestions match (default: \"No suggestions\")"
2052
+ },
2053
+ "required": {
2054
+ "kind": "boolean",
2055
+ "description": "Marks this field as required. A parent Form refuses to submit while it is empty, and lists it in the form's error summary."
2056
+ },
2057
+ "name": {
2058
+ "kind": "string",
2059
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
2073
2060
  }
2074
2061
  }
2075
2062
  },
@@ -2221,15 +2208,21 @@ const GENERATIVE_SCHEMA = {
2221
2208
  "enableKeyboardNavigation": {
2222
2209
  "kind": "boolean"
2223
2210
  },
2224
- "showGrid": {
2225
- "kind": "boolean"
2226
- },
2227
2211
  "showXAxis": {
2228
2212
  "kind": "boolean"
2229
2213
  },
2230
2214
  "showYAxis": {
2231
2215
  "kind": "boolean"
2232
2216
  },
2217
+ "minValue": {
2218
+ "kind": "number"
2219
+ },
2220
+ "maxValue": {
2221
+ "kind": "number"
2222
+ },
2223
+ "showGrid": {
2224
+ "kind": "boolean"
2225
+ },
2233
2226
  "legend": {
2234
2227
  "kind": "enum",
2235
2228
  "options": [
@@ -2239,12 +2232,6 @@ const GENERATIVE_SCHEMA = {
2239
2232
  ],
2240
2233
  "description": "Always-visible legend position, rendered from `config`'s labels/colors."
2241
2234
  },
2242
- "minValue": {
2243
- "kind": "number"
2244
- },
2245
- "maxValue": {
2246
- "kind": "number"
2247
- },
2248
2235
  "title": {
2249
2236
  "kind": "text",
2250
2237
  "description": "Card header title (the auto shell)"
@@ -2576,7 +2563,12 @@ const GENERATIVE_SCHEMA = {
2576
2563
  },
2577
2564
  "selected": {
2578
2565
  "kind": "boolean",
2579
- "description": "Whether the pill is selected (controlled state)"
2566
+ "description": "Whether the pill is selected CONTROLLED. Passing it makes the prop"
2567
+ },
2568
+ "defaultSelected": {
2569
+ "kind": "boolean",
2570
+ "default": false,
2571
+ "description": "Initial selection for an UNCONTROLLED pill, which then owns its own state."
2580
2572
  },
2581
2573
  "readOnly": {
2582
2574
  "kind": "boolean",
@@ -2591,7 +2583,21 @@ const GENERATIVE_SCHEMA = {
2591
2583
  "props": {
2592
2584
  "value": {
2593
2585
  "kind": "number",
2594
- "description": "Progress value from 0 to 100."
2586
+ "description": "Progress value, from 0 to `max`."
2587
+ },
2588
+ "max": {
2589
+ "kind": "number",
2590
+ "default": 100,
2591
+ "description": "Upper bound of the range `value` is measured against."
2592
+ },
2593
+ "segments": {
2594
+ "kind": "number",
2595
+ "description": "Number of cells to render the bar as an LED-style segmented meter."
2596
+ },
2597
+ "segmentFade": {
2598
+ "kind": "boolean",
2599
+ "default": false,
2600
+ "description": "Fade the meter out across its last few lit cells (segmented form only)."
2595
2601
  },
2596
2602
  "size": {
2597
2603
  "kind": "enum",
@@ -2755,88 +2761,14 @@ const GENERATIVE_SCHEMA = {
2755
2761
  "kind": "boolean",
2756
2762
  "default": false,
2757
2763
  "description": "Enable half-step rating increments"
2758
- }
2759
- }
2760
- },
2761
- "ScatterPlot": {
2762
- "role": "leaf",
2763
- "description": "Scatter/bubble chart (auto Card shell).",
2764
- "props": {
2765
- "data": {
2766
- "kind": "shape",
2767
- "shape": "scatterPoints",
2768
- "required": true,
2769
- "description": "Data points"
2770
- },
2771
- "xLabel": {
2772
- "kind": "string",
2773
- "description": "X-axis label"
2774
- },
2775
- "yLabel": {
2776
- "kind": "string",
2777
- "description": "Y-axis label"
2778
2764
  },
2779
- "dotRadius": {
2780
- "kind": "number",
2781
- "description": "Point size (if not using data.size)"
2782
- },
2783
- "colors": {
2784
- "kind": "shape",
2785
- "shape": "colorList",
2786
- "description": "Custom colors for categories (using CSS variables)"
2787
- },
2788
- "showTooltip": {
2765
+ "required": {
2789
2766
  "kind": "boolean",
2790
- "description": "Enable tooltip on hover"
2767
+ "description": "Marks this field as required. A parent Form refuses to submit while it is empty, and lists it in the form's error summary."
2791
2768
  },
2792
- "showGrid": {
2793
- "kind": "boolean"
2794
- },
2795
- "showXAxis": {
2796
- "kind": "boolean"
2797
- },
2798
- "showYAxis": {
2799
- "kind": "boolean"
2800
- },
2801
- "legend": {
2802
- "kind": "enum",
2803
- "options": [
2804
- "top",
2805
- "bottom",
2806
- "none"
2807
- ],
2808
- "description": "Always-visible legend position, rendered from `config`'s labels/colors."
2809
- },
2810
- "minValue": {
2811
- "kind": "number"
2812
- },
2813
- "maxValue": {
2814
- "kind": "number"
2815
- },
2816
- "height": {
2817
- "kind": "union",
2818
- "types": [
2819
- "number",
2820
- "string"
2821
- ]
2822
- },
2823
- "width": {
2824
- "kind": "union",
2825
- "types": [
2826
- "number",
2827
- "string"
2828
- ]
2829
- },
2830
- "enableKeyboardNavigation": {
2831
- "kind": "boolean"
2832
- },
2833
- "title": {
2834
- "kind": "text",
2835
- "description": "Card header title (the auto shell)"
2836
- },
2837
- "subtitle": {
2838
- "kind": "text",
2839
- "description": "Card header subtitle (the auto shell)"
2769
+ "name": {
2770
+ "kind": "string",
2771
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
2840
2772
  }
2841
2773
  }
2842
2774
  },
@@ -2943,7 +2875,7 @@ const GENERATIVE_SCHEMA = {
2943
2875
  "props": {
2944
2876
  "name": {
2945
2877
  "kind": "string",
2946
- "description": "Name for the select component"
2878
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
2947
2879
  },
2948
2880
  "size": {
2949
2881
  "kind": "enum",
@@ -3010,6 +2942,10 @@ const GENERATIVE_SCHEMA = {
3010
2942
  "kind": "boolean",
3011
2943
  "description": "Whether to enable typeahead functionality (default: true)"
3012
2944
  },
2945
+ "aria-label": {
2946
+ "kind": "string",
2947
+ "description": "Accessible name for a Select with no visible `label` — e.g. a control sitting"
2948
+ },
3013
2949
  "value": {
3014
2950
  "kind": "string",
3015
2951
  "description": "Currently selected option's value (controlled)"
@@ -3146,7 +3082,7 @@ const GENERATIVE_SCHEMA = {
3146
3082
  },
3147
3083
  "name": {
3148
3084
  "kind": "string",
3149
- "description": "Name attribute for form submission"
3085
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
3150
3086
  },
3151
3087
  "value": {
3152
3088
  "kind": "number",
@@ -3397,7 +3333,7 @@ const GENERATIVE_SCHEMA = {
3397
3333
  },
3398
3334
  "name": {
3399
3335
  "kind": "string",
3400
- "description": "HTML name attribute for the hidden input"
3336
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
3401
3337
  },
3402
3338
  "value": {
3403
3339
  "kind": "string",
@@ -3427,8 +3363,8 @@ const GENERATIVE_SCHEMA = {
3427
3363
  "kind": "enum",
3428
3364
  "options": [
3429
3365
  "default",
3430
- "bordered",
3431
3366
  "striped",
3367
+ "bordered",
3432
3368
  "compact"
3433
3369
  ],
3434
3370
  "description": "Visual variant for different table styles"
@@ -3600,7 +3536,7 @@ const GENERATIVE_SCHEMA = {
3600
3536
  },
3601
3537
  "name": {
3602
3538
  "kind": "string",
3603
- "description": "Form field name"
3539
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
3604
3540
  }
3605
3541
  }
3606
3542
  },
@@ -3701,6 +3637,14 @@ const GENERATIVE_SCHEMA = {
3701
3637
  "iconEnd": {
3702
3638
  "kind": "icon",
3703
3639
  "description": "Icon to display at the end (right side)"
3640
+ },
3641
+ "required": {
3642
+ "kind": "boolean",
3643
+ "description": "Marks this field as required. A parent Form refuses to submit while it is empty, and lists it in the form's error summary."
3644
+ },
3645
+ "name": {
3646
+ "kind": "string",
3647
+ "description": "Field name. Required for this control's value to be included when a parent Form is submitted. Must match /^[A-Za-z_][A-Za-z0-9_-]*$/."
3704
3648
  }
3705
3649
  }
3706
3650
  },
@@ -4148,56 +4092,6 @@ const GENERATIVE_SCHEMA = {
4148
4092
  }
4149
4093
  }
4150
4094
  },
4151
- "scatterPoints": {
4152
- "description": "Array of points: { x, y } (numbers, required) plus optional size (number), label (string), category (string, for color grouping).",
4153
- "type": "array",
4154
- "items": {
4155
- "type": "object",
4156
- "required": [
4157
- "x",
4158
- "y"
4159
- ],
4160
- "properties": {
4161
- "x": {
4162
- "type": "number"
4163
- },
4164
- "y": {
4165
- "type": "number"
4166
- },
4167
- "size": {
4168
- "type": "number"
4169
- },
4170
- "label": {
4171
- "type": "string"
4172
- },
4173
- "category": {
4174
- "type": "string"
4175
- }
4176
- }
4177
- }
4178
- },
4179
- "funnelStages": {
4180
- "description": "Array of funnel stages: { name, value } (required) plus optional color (CSS string).",
4181
- "type": "array",
4182
- "items": {
4183
- "type": "object",
4184
- "required": [
4185
- "name",
4186
- "value"
4187
- ],
4188
- "properties": {
4189
- "name": {
4190
- "type": "string"
4191
- },
4192
- "value": {
4193
- "type": "number"
4194
- },
4195
- "color": {
4196
- "type": "string"
4197
- }
4198
- }
4199
- }
4200
- },
4201
4095
  "activityRings": {
4202
4096
  "description": "Array of rings, ordered outer to inner: { value } (number 0-100, required) plus optional label (string) and color (CSS/hex string).",
4203
4097
  "type": "array",
@@ -4262,6 +4156,18 @@ const GENERATIVE_SCHEMA = {
4262
4156
  }
4263
4157
  }
4264
4158
  }
4159
+ },
4160
+ "heatmapLegendLabels": {
4161
+ "description": "Captions at each end of the colour ramp, both optional: { min, max }.",
4162
+ "type": "object",
4163
+ "properties": {
4164
+ "min": {
4165
+ "type": "string"
4166
+ },
4167
+ "max": {
4168
+ "type": "string"
4169
+ }
4170
+ }
4265
4171
  }
4266
4172
  },
4267
4173
  "examples": [