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

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 (428) hide show
  1. package/CHANGELOG.md +295 -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 +2 -2
  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 +2 -1
  136. package/dist/components/core/Pill/Pill.theme.js +4 -2
  137. package/dist/components/core/Popover/PopoverBody.js +16 -5
  138. package/dist/components/core/Progress/Progress.d.ts +0 -25
  139. package/dist/components/core/Progress/Progress.js +79 -11
  140. package/dist/components/core/Progress/Progress.theme.js +17 -0
  141. package/dist/components/core/Progress/Progress.types.d.ts +47 -1
  142. package/dist/components/core/Rating/Rating.theme.js +1 -1
  143. package/dist/components/core/Rating/Rating.types.d.ts +3 -2
  144. package/dist/components/core/ScrollArea/ScrollArea.js +1 -1
  145. package/dist/components/core/ScrollArea/ScrollArea.theme.js +1 -1
  146. package/dist/components/core/Segmented/Segmented.theme.js +3 -3
  147. package/dist/components/core/Segmented/SegmentedContext.js +1 -0
  148. package/dist/components/core/Sidebar/Sidebar.js +5 -2
  149. package/dist/components/core/Sidebar/Sidebar.theme.js +2 -2
  150. package/dist/components/core/Sidebar/SidebarContent.js +1 -1
  151. package/dist/components/core/Sidebar/SidebarHeader.js +1 -1
  152. package/dist/components/core/Sidebar/SidebarSearch.js +2 -2
  153. package/dist/components/core/Sidebar/SidebarToggle.js +1 -1
  154. package/dist/components/core/Sidebar/SidebarUserProfile.js +1 -1
  155. package/dist/components/core/Sortable/Sortable.theme.js +1 -1
  156. package/dist/components/core/Tabs/Tabs.theme.js +1 -1
  157. package/dist/components/core/Tag/Tag.theme.js +1 -1
  158. package/dist/components/core/Toast/ToastProvider.js +1 -1
  159. package/dist/components/core/Tree/Tree.theme.js +1 -1
  160. package/dist/components/core/index.d.ts +0 -2
  161. package/dist/components/core/index.js +0 -4
  162. package/dist/components/core/shared/ChartTooltip/ChartTooltip.animations.d.ts +4 -0
  163. package/dist/components/core/shared/ChartTooltip/ChartTooltip.animations.js +20 -0
  164. package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.js +1 -1
  165. package/dist/components/core/shared/Ripple.d.ts +16 -0
  166. package/dist/components/core/shared/Ripple.js +141 -0
  167. package/dist/components/data-display/GanttChart/GanttChart.theme.js +6 -6
  168. package/dist/components/data-display/GanttChart/GanttTaskBar.js +1 -1
  169. package/dist/components/data-display/GanttChart/GanttTimelineHeader.js +1 -1
  170. package/dist/components/data-display/GanttChart/GanttToolbar.js +0 -1
  171. package/dist/components/data-display/KPI/KPI.js +11 -20
  172. package/dist/components/data-display/KPI/KPI.theme.js +8 -4
  173. package/dist/components/data-display/Metric/Metric.theme.js +4 -4
  174. package/dist/components/data-display/Table/Table.theme.js +2 -2
  175. package/dist/components/data-display/Table/TableColumnManager.js +1 -2
  176. package/dist/components/data-display/Table/TableContext.js +1 -0
  177. package/dist/components/data-display/Table/TableFilter.js +9 -2
  178. package/dist/components/data-display/Table/TableSelectionHeader.js +1 -1
  179. package/dist/components/data-display/Timeline/Timeline.theme.js +1 -1
  180. package/dist/components/effects/CustomCursor/CustomCursor.d.ts +1 -1
  181. package/dist/components/effects/CustomCursor/CustomCursor.js +1 -1
  182. package/dist/components/effects/CustomCursor/CustomCursor.theme.js +4 -4
  183. package/dist/components/effects/Neumorphic/InsetCircleButton.js +1 -1
  184. package/dist/components/effects/Overlay/Overlay.js +7 -3
  185. package/dist/components/effects/index.d.ts +0 -32
  186. package/dist/components/effects/index.js +0 -16
  187. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.d.ts +0 -2
  188. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.js +1 -93
  189. package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.types.d.ts +0 -10
  190. package/dist/components/effects/shared/ShaderCanvas/index.d.ts +1 -1
  191. package/dist/components/effects/shared/index.d.ts +1 -3
  192. package/dist/components/effects/shared/shaderNoise.glsl.d.ts +1 -1
  193. package/dist/components/effects/shared/shaderNoise.glsl.js +2 -11
  194. package/dist/components/forms/Checkbox/Checkbox.theme.js +1 -1
  195. package/dist/components/forms/ColorPicker/ColorPickerHeader.js +1 -1
  196. package/dist/components/forms/ColorPicker/ColorPickerImage.js +1 -1
  197. package/dist/components/forms/Combobox/Combobox.js +2 -0
  198. package/dist/components/forms/DateRangePicker/DateRangePicker.theme.js +1 -1
  199. package/dist/components/forms/DateRangePicker/DateRangePickerContext.js +1 -0
  200. package/dist/components/forms/FileUpload/FileUpload.theme.js +2 -2
  201. package/dist/components/forms/FileUpload/FileUploadProgress.theme.js +1 -1
  202. package/dist/components/forms/InputAddress/InputAddress.types.d.ts +2 -2
  203. package/dist/components/forms/Radio/Radio.theme.js +1 -1
  204. package/dist/components/forms/RichTextEditor/RichTextEditor.d.ts +12 -16
  205. package/dist/components/forms/RichTextEditor/RichTextEditor.js +165 -1680
  206. package/dist/components/forms/RichTextEditor/RichTextEditor.theme.d.ts +12 -56
  207. package/dist/components/forms/RichTextEditor/RichTextEditor.theme.js +60 -118
  208. package/dist/components/forms/RichTextEditor/RichTextEditor.types.d.ts +62 -126
  209. package/dist/components/forms/RichTextEditor/RichTextLinkField.d.ts +18 -0
  210. package/dist/components/forms/RichTextEditor/RichTextLinkField.js +46 -0
  211. package/dist/components/forms/RichTextEditor/RichTextToolbar.d.ts +15 -0
  212. package/dist/components/forms/RichTextEditor/RichTextToolbar.js +93 -0
  213. package/dist/components/forms/RichTextEditor/editorCommands.d.ts +50 -0
  214. package/dist/components/forms/RichTextEditor/editorCommands.js +58 -0
  215. package/dist/components/forms/RichTextEditor/editorState.d.ts +19 -0
  216. package/dist/components/forms/RichTextEditor/editorState.js +103 -0
  217. package/dist/components/forms/RichTextEditor/index.d.ts +5 -3
  218. package/dist/components/forms/RichTextEditor/sanitizeHtml.d.ts +38 -0
  219. package/dist/components/forms/RichTextEditor/sanitizeHtml.js +179 -0
  220. package/dist/components/forms/RichTextEditor/sanitizeHtml.test.d.ts +1 -0
  221. package/dist/components/forms/Select/Select.js +4 -4
  222. package/dist/components/forms/Select/Select.types.d.ts +70 -7
  223. package/dist/components/forms/Select/useSelectState.d.ts +9 -3
  224. package/dist/components/forms/Select/useSelectState.js +4 -1
  225. package/dist/components/forms/SelectableCard/SelectableCard.js +2 -1
  226. package/dist/components/forms/SelectableCard/SelectableCard.theme.js +1 -1
  227. package/dist/components/forms/Switch/Switch.theme.js +2 -2
  228. package/dist/components/forms/TimePicker/TimePicker.theme.js +1 -1
  229. package/dist/components/forms/TimePicker/TimePickerTrigger.js +1 -1
  230. package/dist/components/forms/forms.theme.js +19 -5
  231. package/dist/components/forms/index.js +1 -0
  232. package/dist/components/generative/FormShell.d.ts +22 -0
  233. package/dist/components/generative/FormShell.js +102 -0
  234. package/dist/components/generative/GenerativeView.d.ts +52 -1
  235. package/dist/components/generative/GenerativeView.js +203 -11
  236. package/dist/components/generative/actions.d.ts +5 -0
  237. package/dist/components/generative/ai-sdk/index.d.ts +1 -0
  238. package/dist/components/generative/ai-sdk/index.js +1 -0
  239. package/dist/components/generative/ai-sdk/useGenerativeChat.d.ts +52 -0
  240. package/dist/components/generative/ai-sdk/useGenerativeChat.js +73 -0
  241. package/dist/components/generative/ai-sdk/useGenerativeChat.test.d.ts +1 -0
  242. package/dist/components/generative/fieldBinding.d.ts +31 -0
  243. package/dist/components/generative/fieldBinding.js +33 -0
  244. package/dist/components/generative/fieldBinding.test.d.ts +1 -0
  245. package/dist/components/generative/formScope.d.ts +71 -0
  246. package/dist/components/generative/formScope.js +135 -0
  247. package/dist/components/generative/index.d.ts +4 -0
  248. package/dist/components/generative/index.js +4 -0
  249. package/dist/components/generative/registry.d.ts +2 -0
  250. package/dist/components/generative/registry.js +10 -10
  251. package/dist/components/generative/schema.generated.js +178 -292
  252. package/dist/components/generative/toToolResult.d.ts +21 -0
  253. package/dist/components/generative/toToolResult.js +15 -0
  254. package/dist/components/generative/toToolResult.test.d.ts +1 -0
  255. package/dist/components/generative/validate.d.ts +10 -1
  256. package/dist/components/generative/validate.js +126 -11
  257. package/dist/components/layout/Grid/Grid.js +1 -0
  258. package/dist/components/layout/Section/Section.theme.js +1 -1
  259. package/dist/components/layout/Stack/Stack.js +1 -0
  260. package/dist/generative.schema.json +178 -292
  261. package/dist/index.js +1 -4
  262. package/dist/registry.json +2599 -2375
  263. package/dist/shadcn-compat.css +5 -5
  264. package/dist/styles/theme.test.d.ts +1 -0
  265. package/dist/styles.css +1 -1
  266. package/dist/test/render.d.ts +17 -0
  267. package/dist/themes/precision.css +232 -0
  268. package/dist/tools.json +179 -294
  269. package/dist/utils/index.d.ts +0 -1
  270. package/package.json +31 -1
  271. package/src/global.scss +21 -28
  272. package/src/styles/theme.css +124 -41
  273. package/src/styles/theme.test.ts +119 -0
  274. package/tailwind.preset.cjs +30 -20
  275. package/dist/components/charts/FunnelChart/FunnelChart.animations.d.ts +0 -35
  276. package/dist/components/charts/FunnelChart/FunnelChart.animations.js +0 -59
  277. package/dist/components/charts/FunnelChart/FunnelChart.d.ts +0 -8
  278. package/dist/components/charts/FunnelChart/FunnelChart.js +0 -410
  279. package/dist/components/charts/FunnelChart/FunnelChart.theme.d.ts +0 -2
  280. package/dist/components/charts/FunnelChart/FunnelChart.theme.js +0 -12
  281. package/dist/components/charts/FunnelChart/FunnelChart.types.d.ts +0 -105
  282. package/dist/components/charts/FunnelChart/index.d.ts +0 -4
  283. package/dist/components/charts/ScatterPlot/ScatterPlot.d.ts +0 -9
  284. package/dist/components/charts/ScatterPlot/ScatterPlot.js +0 -208
  285. package/dist/components/charts/ScatterPlot/ScatterPlot.theme.d.ts +0 -18
  286. package/dist/components/charts/ScatterPlot/ScatterPlot.theme.js +0 -42
  287. package/dist/components/charts/ScatterPlot/ScatterPlot.types.d.ts +0 -60
  288. package/dist/components/charts/ScatterPlot/ScatterPlot.types.js +0 -19
  289. package/dist/components/charts/ScatterPlot/index.d.ts +0 -3
  290. package/dist/components/core/Button/Button.ripple.d.ts +0 -71
  291. package/dist/components/core/Button/Button.ripple.js +0 -236
  292. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.d.ts +0 -4
  293. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.theme.d.ts +0 -12
  294. package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.types.d.ts +0 -23
  295. package/dist/components/core/Calendar/CalendarEvent/index.d.ts +0 -2
  296. package/dist/components/core/CardStack/CardStack.animations.d.ts +0 -47
  297. package/dist/components/core/CardStack/CardStack.d.ts +0 -3
  298. package/dist/components/core/CardStack/CardStack.js +0 -187
  299. package/dist/components/core/CardStack/CardStack.theme.d.ts +0 -6
  300. package/dist/components/core/CardStack/CardStack.theme.js +0 -33
  301. package/dist/components/core/CardStack/CardStack.types.d.ts +0 -139
  302. package/dist/components/core/CardStack/index.d.ts +0 -7
  303. package/dist/components/core/Carousel/Carousel.d.ts +0 -3
  304. package/dist/components/core/Carousel/Carousel.js +0 -83
  305. package/dist/components/core/Carousel/Carousel.theme.d.ts +0 -10
  306. package/dist/components/core/Carousel/Carousel.theme.js +0 -20
  307. package/dist/components/core/Carousel/Carousel.types.d.ts +0 -113
  308. package/dist/components/core/Carousel/CarouselBody.d.ts +0 -4
  309. package/dist/components/core/Carousel/CarouselBody.js +0 -59
  310. package/dist/components/core/Carousel/CarouselContext.d.ts +0 -3
  311. package/dist/components/core/Carousel/CarouselContext.js +0 -13
  312. package/dist/components/core/Carousel/CarouselItem.d.ts +0 -4
  313. package/dist/components/core/Carousel/CarouselItem.js +0 -11
  314. package/dist/components/core/Carousel/CarouselNext.d.ts +0 -4
  315. package/dist/components/core/Carousel/CarouselNext.js +0 -16
  316. package/dist/components/core/Carousel/CarouselPrevious.d.ts +0 -4
  317. package/dist/components/core/Carousel/CarouselPrevious.js +0 -16
  318. package/dist/components/core/Carousel/index.d.ts +0 -3
  319. package/dist/components/effects/ColorPanels/ColorPanels.d.ts +0 -8
  320. package/dist/components/effects/ColorPanels/ColorPanels.js +0 -66
  321. package/dist/components/effects/ColorPanels/ColorPanels.shaders.d.ts +0 -12
  322. package/dist/components/effects/ColorPanels/ColorPanels.shaders.js +0 -218
  323. package/dist/components/effects/ColorPanels/ColorPanels.types.d.ts +0 -29
  324. package/dist/components/effects/ColorPanels/ColorPanels.types.js +0 -3
  325. package/dist/components/effects/ColorPanels/index.d.ts +0 -2
  326. package/dist/components/effects/FlutedGlass/FlutedGlass.d.ts +0 -9
  327. package/dist/components/effects/FlutedGlass/FlutedGlass.js +0 -80
  328. package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.d.ts +0 -12
  329. package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.js +0 -335
  330. package/dist/components/effects/FlutedGlass/FlutedGlass.types.d.ts +0 -61
  331. package/dist/components/effects/FlutedGlass/FlutedGlass.types.js +0 -16
  332. package/dist/components/effects/FlutedGlass/index.d.ts +0 -3
  333. package/dist/components/effects/GlassEffect/GlassEffect.d.ts +0 -15
  334. package/dist/components/effects/GlassEffect/GlassEffect.js +0 -38
  335. package/dist/components/effects/GlassEffect/GlassEffect.types.d.ts +0 -19
  336. package/dist/components/effects/GlassEffect/index.d.ts +0 -2
  337. package/dist/components/effects/GlassSurface/GlassSurface.d.ts +0 -8
  338. package/dist/components/effects/GlassSurface/GlassSurface.js +0 -250
  339. package/dist/components/effects/GlassSurface/GlassSurface.types.d.ts +0 -66
  340. package/dist/components/effects/GlassSurface/index.d.ts +0 -2
  341. package/dist/components/effects/GodRays/GodRays.d.ts +0 -8
  342. package/dist/components/effects/GodRays/GodRays.js +0 -68
  343. package/dist/components/effects/GodRays/GodRays.shaders.d.ts +0 -10
  344. package/dist/components/effects/GodRays/GodRays.shaders.js +0 -128
  345. package/dist/components/effects/GodRays/GodRays.types.d.ts +0 -25
  346. package/dist/components/effects/GodRays/GodRays.types.js +0 -3
  347. package/dist/components/effects/GodRays/index.d.ts +0 -2
  348. package/dist/components/effects/GridPattern/GridPattern.d.ts +0 -18
  349. package/dist/components/effects/GridPattern/GridPattern.js +0 -65
  350. package/dist/components/effects/GridPattern/GridPattern.types.d.ts +0 -47
  351. package/dist/components/effects/GridPattern/index.d.ts +0 -2
  352. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.d.ts +0 -10
  353. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.js +0 -78
  354. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.d.ts +0 -22
  355. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.js +0 -239
  356. package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.types.d.ts +0 -52
  357. package/dist/components/effects/HalftoneCmyk/index.d.ts +0 -2
  358. package/dist/components/effects/HalftoneDots/HalftoneDots.d.ts +0 -9
  359. package/dist/components/effects/HalftoneDots/HalftoneDots.js +0 -68
  360. package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.d.ts +0 -13
  361. package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.js +0 -296
  362. package/dist/components/effects/HalftoneDots/HalftoneDots.types.d.ts +0 -43
  363. package/dist/components/effects/HalftoneDots/HalftoneDots.types.js +0 -12
  364. package/dist/components/effects/HalftoneDots/index.d.ts +0 -3
  365. package/dist/components/effects/ImageDithering/ImageDithering.d.ts +0 -9
  366. package/dist/components/effects/ImageDithering/ImageDithering.js +0 -68
  367. package/dist/components/effects/ImageDithering/ImageDithering.shaders.d.ts +0 -12
  368. package/dist/components/effects/ImageDithering/ImageDithering.shaders.js +0 -117
  369. package/dist/components/effects/ImageDithering/ImageDithering.types.d.ts +0 -30
  370. package/dist/components/effects/ImageDithering/ImageDithering.types.js +0 -8
  371. package/dist/components/effects/ImageDithering/index.d.ts +0 -3
  372. package/dist/components/effects/MagneticElement/MagneticElement.d.ts +0 -30
  373. package/dist/components/effects/MagneticElement/MagneticElement.js +0 -111
  374. package/dist/components/effects/MagneticElement/MagneticElement.types.d.ts +0 -44
  375. package/dist/components/effects/MagneticElement/index.d.ts +0 -2
  376. package/dist/components/effects/Metaballs/Metaballs.d.ts +0 -8
  377. package/dist/components/effects/Metaballs/Metaballs.js +0 -59
  378. package/dist/components/effects/Metaballs/Metaballs.shaders.d.ts +0 -10
  379. package/dist/components/effects/Metaballs/Metaballs.shaders.js +0 -102
  380. package/dist/components/effects/Metaballs/Metaballs.types.d.ts +0 -16
  381. package/dist/components/effects/Metaballs/Metaballs.types.js +0 -3
  382. package/dist/components/effects/Metaballs/index.d.ts +0 -2
  383. package/dist/components/effects/PaperTexture/PaperTexture.d.ts +0 -9
  384. package/dist/components/effects/PaperTexture/PaperTexture.js +0 -61
  385. package/dist/components/effects/PaperTexture/PaperTexture.shaders.d.ts +0 -22
  386. package/dist/components/effects/PaperTexture/PaperTexture.shaders.js +0 -145
  387. package/dist/components/effects/PaperTexture/PaperTexture.types.d.ts +0 -19
  388. package/dist/components/effects/PaperTexture/index.d.ts +0 -2
  389. package/dist/components/effects/PulsingBorder/PulsingBorder.d.ts +0 -27
  390. package/dist/components/effects/PulsingBorder/PulsingBorder.js +0 -174
  391. package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.d.ts +0 -14
  392. package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.js +0 -258
  393. package/dist/components/effects/PulsingBorder/PulsingBorder.types.d.ts +0 -75
  394. package/dist/components/effects/PulsingBorder/PulsingBorder.types.js +0 -3
  395. package/dist/components/effects/PulsingBorder/index.d.ts +0 -2
  396. package/dist/components/effects/SmokeRing/SmokeRing.d.ts +0 -8
  397. package/dist/components/effects/SmokeRing/SmokeRing.js +0 -62
  398. package/dist/components/effects/SmokeRing/SmokeRing.shaders.d.ts +0 -14
  399. package/dist/components/effects/SmokeRing/SmokeRing.shaders.js +0 -130
  400. package/dist/components/effects/SmokeRing/SmokeRing.types.d.ts +0 -22
  401. package/dist/components/effects/SmokeRing/SmokeRing.types.js +0 -3
  402. package/dist/components/effects/SmokeRing/index.d.ts +0 -2
  403. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.d.ts +0 -9
  404. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.js +0 -59
  405. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.d.ts +0 -14
  406. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.js +0 -129
  407. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.d.ts +0 -23
  408. package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.js +0 -3
  409. package/dist/components/effects/StaticGradientMesh/index.d.ts +0 -2
  410. package/dist/components/effects/Water/Water.d.ts +0 -9
  411. package/dist/components/effects/Water/Water.js +0 -65
  412. package/dist/components/effects/Water/Water.shaders.d.ts +0 -11
  413. package/dist/components/effects/Water/Water.shaders.js +0 -123
  414. package/dist/components/effects/Water/Water.types.d.ts +0 -25
  415. package/dist/components/effects/Water/index.d.ts +0 -2
  416. package/dist/components/effects/shared/bayerMatrices.glsl.d.ts +0 -10
  417. package/dist/components/effects/shared/bayerMatrices.glsl.js +0 -44
  418. package/dist/components/effects/shared/imageUV.glsl.d.ts +0 -12
  419. package/dist/components/effects/shared/imageUV.glsl.js +0 -26
  420. package/dist/components/forms/RichTextEditor/RichTextEditor.animations.d.ts +0 -7
  421. package/dist/components/forms/RichTextEditor/RichTextEditor.animations.js +0 -32
  422. package/dist/utils/calendarUtils.d.ts +0 -60
  423. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.d.ts +0 -0
  424. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.theme.d.ts +0 -0
  425. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.theme.js +0 -0
  426. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.types.d.ts +0 -0
  427. /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltipContent.d.ts +0 -0
  428. /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",
@@ -1858,6 +1802,14 @@ const GENERATIVE_SCHEMA = {
1858
1802
  "decimalPlaces": {
1859
1803
  "kind": "number",
1860
1804
  "description": "Number of decimal places to display (auto-detected from step if not specified)"
1805
+ },
1806
+ "required": {
1807
+ "kind": "boolean",
1808
+ "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."
1809
+ },
1810
+ "name": {
1811
+ "kind": "string",
1812
+ "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
1813
  }
1862
1814
  }
1863
1815
  },
@@ -1935,6 +1887,10 @@ const GENERATIVE_SCHEMA = {
1935
1887
  "maxDate": {
1936
1888
  "kind": "string",
1937
1889
  "description": "Maximum selectable date, ISO format"
1890
+ },
1891
+ "name": {
1892
+ "kind": "string",
1893
+ "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
1894
  }
1939
1895
  }
1940
1896
  },
@@ -2001,6 +1957,14 @@ const GENERATIVE_SCHEMA = {
2001
1957
  "kind": "boolean",
2002
1958
  "default": true,
2003
1959
  "description": "Auto-focus the first input on mount"
1960
+ },
1961
+ "required": {
1962
+ "kind": "boolean",
1963
+ "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."
1964
+ },
1965
+ "name": {
1966
+ "kind": "string",
1967
+ "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
1968
  }
2005
1969
  }
2006
1970
  },
@@ -2070,6 +2034,14 @@ const GENERATIVE_SCHEMA = {
2070
2034
  "emptyMessage": {
2071
2035
  "kind": "string",
2072
2036
  "description": "Message shown when no suggestions match (default: \"No suggestions\")"
2037
+ },
2038
+ "required": {
2039
+ "kind": "boolean",
2040
+ "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."
2041
+ },
2042
+ "name": {
2043
+ "kind": "string",
2044
+ "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
2045
  }
2074
2046
  }
2075
2047
  },
@@ -2221,15 +2193,21 @@ const GENERATIVE_SCHEMA = {
2221
2193
  "enableKeyboardNavigation": {
2222
2194
  "kind": "boolean"
2223
2195
  },
2224
- "showGrid": {
2225
- "kind": "boolean"
2226
- },
2227
2196
  "showXAxis": {
2228
2197
  "kind": "boolean"
2229
2198
  },
2230
2199
  "showYAxis": {
2231
2200
  "kind": "boolean"
2232
2201
  },
2202
+ "minValue": {
2203
+ "kind": "number"
2204
+ },
2205
+ "maxValue": {
2206
+ "kind": "number"
2207
+ },
2208
+ "showGrid": {
2209
+ "kind": "boolean"
2210
+ },
2233
2211
  "legend": {
2234
2212
  "kind": "enum",
2235
2213
  "options": [
@@ -2239,12 +2217,6 @@ const GENERATIVE_SCHEMA = {
2239
2217
  ],
2240
2218
  "description": "Always-visible legend position, rendered from `config`'s labels/colors."
2241
2219
  },
2242
- "minValue": {
2243
- "kind": "number"
2244
- },
2245
- "maxValue": {
2246
- "kind": "number"
2247
- },
2248
2220
  "title": {
2249
2221
  "kind": "text",
2250
2222
  "description": "Card header title (the auto shell)"
@@ -2591,7 +2563,21 @@ const GENERATIVE_SCHEMA = {
2591
2563
  "props": {
2592
2564
  "value": {
2593
2565
  "kind": "number",
2594
- "description": "Progress value from 0 to 100."
2566
+ "description": "Progress value, from 0 to `max`."
2567
+ },
2568
+ "max": {
2569
+ "kind": "number",
2570
+ "default": 100,
2571
+ "description": "Upper bound of the range `value` is measured against."
2572
+ },
2573
+ "segments": {
2574
+ "kind": "number",
2575
+ "description": "Number of cells to render the bar as an LED-style segmented meter."
2576
+ },
2577
+ "segmentFade": {
2578
+ "kind": "boolean",
2579
+ "default": false,
2580
+ "description": "Fade the meter out across its last few lit cells (segmented form only)."
2595
2581
  },
2596
2582
  "size": {
2597
2583
  "kind": "enum",
@@ -2755,88 +2741,14 @@ const GENERATIVE_SCHEMA = {
2755
2741
  "kind": "boolean",
2756
2742
  "default": false,
2757
2743
  "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
2744
  },
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": {
2745
+ "required": {
2789
2746
  "kind": "boolean",
2790
- "description": "Enable tooltip on hover"
2791
- },
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
- ]
2747
+ "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."
2822
2748
  },
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)"
2749
+ "name": {
2750
+ "kind": "string",
2751
+ "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
2752
  }
2841
2753
  }
2842
2754
  },
@@ -2943,7 +2855,7 @@ const GENERATIVE_SCHEMA = {
2943
2855
  "props": {
2944
2856
  "name": {
2945
2857
  "kind": "string",
2946
- "description": "Name for the select component"
2858
+ "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
2859
  },
2948
2860
  "size": {
2949
2861
  "kind": "enum",
@@ -3010,6 +2922,10 @@ const GENERATIVE_SCHEMA = {
3010
2922
  "kind": "boolean",
3011
2923
  "description": "Whether to enable typeahead functionality (default: true)"
3012
2924
  },
2925
+ "aria-label": {
2926
+ "kind": "string",
2927
+ "description": "Accessible name for a Select with no visible `label` — e.g. a control sitting"
2928
+ },
3013
2929
  "value": {
3014
2930
  "kind": "string",
3015
2931
  "description": "Currently selected option's value (controlled)"
@@ -3146,7 +3062,7 @@ const GENERATIVE_SCHEMA = {
3146
3062
  },
3147
3063
  "name": {
3148
3064
  "kind": "string",
3149
- "description": "Name attribute for form submission"
3065
+ "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
3066
  },
3151
3067
  "value": {
3152
3068
  "kind": "number",
@@ -3397,7 +3313,7 @@ const GENERATIVE_SCHEMA = {
3397
3313
  },
3398
3314
  "name": {
3399
3315
  "kind": "string",
3400
- "description": "HTML name attribute for the hidden input"
3316
+ "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
3317
  },
3402
3318
  "value": {
3403
3319
  "kind": "string",
@@ -3427,8 +3343,8 @@ const GENERATIVE_SCHEMA = {
3427
3343
  "kind": "enum",
3428
3344
  "options": [
3429
3345
  "default",
3430
- "bordered",
3431
3346
  "striped",
3347
+ "bordered",
3432
3348
  "compact"
3433
3349
  ],
3434
3350
  "description": "Visual variant for different table styles"
@@ -3600,7 +3516,7 @@ const GENERATIVE_SCHEMA = {
3600
3516
  },
3601
3517
  "name": {
3602
3518
  "kind": "string",
3603
- "description": "Form field name"
3519
+ "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
3520
  }
3605
3521
  }
3606
3522
  },
@@ -3701,6 +3617,14 @@ const GENERATIVE_SCHEMA = {
3701
3617
  "iconEnd": {
3702
3618
  "kind": "icon",
3703
3619
  "description": "Icon to display at the end (right side)"
3620
+ },
3621
+ "required": {
3622
+ "kind": "boolean",
3623
+ "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."
3624
+ },
3625
+ "name": {
3626
+ "kind": "string",
3627
+ "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
3628
  }
3705
3629
  }
3706
3630
  },
@@ -4148,56 +4072,6 @@ const GENERATIVE_SCHEMA = {
4148
4072
  }
4149
4073
  }
4150
4074
  },
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
4075
  "activityRings": {
4202
4076
  "description": "Array of rings, ordered outer to inner: { value } (number 0-100, required) plus optional label (string) and color (CSS/hex string).",
4203
4077
  "type": "array",
@@ -4262,6 +4136,18 @@ const GENERATIVE_SCHEMA = {
4262
4136
  }
4263
4137
  }
4264
4138
  }
4139
+ },
4140
+ "heatmapLegendLabels": {
4141
+ "description": "Captions at each end of the colour ramp, both optional: { min, max }.",
4142
+ "type": "object",
4143
+ "properties": {
4144
+ "min": {
4145
+ "type": "string"
4146
+ },
4147
+ "max": {
4148
+ "type": "string"
4149
+ }
4150
+ }
4265
4151
  }
4266
4152
  },
4267
4153
  "examples": [