@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
package/dist/tools.json CHANGED
@@ -43,7 +43,7 @@
43
43
  "DotSeparator",
44
44
  "Empty",
45
45
  "Feed",
46
- "FunnelChart",
46
+ "Form",
47
47
  "GanttChart",
48
48
  "Grid",
49
49
  "Heatmap",
@@ -69,7 +69,6 @@
69
69
  "Progress",
70
70
  "RadarChart",
71
71
  "Rating",
72
- "ScatterPlot",
73
72
  "ScrollArea",
74
73
  "Section",
75
74
  "Select",
@@ -500,8 +499,8 @@
500
499
  "outline",
501
500
  "soft"
502
501
  ],
503
- "default": "filled",
504
- "description": "The visual style variant of the badge (filled, outline, soft)"
502
+ "default": "soft",
503
+ "description": "The visual style variant of the badge."
505
504
  },
506
505
  "color": {
507
506
  "kind": "enum",
@@ -537,11 +536,6 @@
537
536
  "iconStart": {
538
537
  "kind": "icon",
539
538
  "description": "Icon element at the start (before content)"
540
- },
541
- "disabled": {
542
- "kind": "boolean",
543
- "default": false,
544
- "description": "Whether the badge is disabled"
545
539
  }
546
540
  }
547
541
  },
@@ -729,27 +723,8 @@
729
723
  },
730
724
  "enableRipple": {
731
725
  "kind": "boolean",
732
- "description": "Whether to enable ripple effect on click"
733
- },
734
- "rippleEffect": {
735
- "kind": "enum",
736
- "options": [
737
- "default",
738
- "neon",
739
- "aurora",
740
- "particle",
741
- "glass",
742
- "echo"
743
- ],
744
- "description": "Type of ripple effect: 'default' | 'aurora' | 'particle' | 'glass' | 'neon' | 'echo'"
745
- },
746
- "rippleClassName": {
747
- "kind": "string",
748
- "description": "Custom class name for ripple styling"
749
- },
750
- "rippleScale": {
751
- "kind": "number",
752
- "description": "Scale multiplier for ripple expansion (default: 10)"
726
+ "default": true,
727
+ "description": "Whether to show the press ripple."
753
728
  },
754
729
  "showReflection": {
755
730
  "kind": "boolean",
@@ -881,6 +856,14 @@
881
856
  "disabled": {
882
857
  "kind": "boolean",
883
858
  "description": "Whether the checkbox is disabled"
859
+ },
860
+ "required": {
861
+ "kind": "boolean",
862
+ "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."
863
+ },
864
+ "name": {
865
+ "kind": "string",
866
+ "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_-]*$/."
884
867
  }
885
868
  }
886
869
  },
@@ -950,7 +933,7 @@
950
933
  },
951
934
  "name": {
952
935
  "kind": "string",
953
- "description": "Form field name"
936
+ "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_-]*$/."
954
937
  },
955
938
  "value": {
956
939
  "kind": "string",
@@ -1270,113 +1253,27 @@
1270
1253
  }
1271
1254
  }
1272
1255
  },
1273
- "FunnelChart": {
1274
- "role": "leaf",
1275
- "description": "Conversion funnel chart (auto Card shell). Bind node.actions.stageClick to onStageClick (fires with the clicked stage's data).",
1256
+ "Form": {
1257
+ "role": "container",
1258
+ "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.",
1276
1259
  "props": {
1277
- "data": {
1278
- "kind": "shape",
1279
- "shape": "funnelStages",
1280
- "required": true,
1281
- "description": "Funnel stages data"
1282
- },
1283
- "height": {
1284
- "kind": "union",
1285
- "types": [
1286
- "number",
1287
- "string"
1288
- ],
1289
- "description": "Height of the chart"
1290
- },
1291
- "width": {
1292
- "kind": "union",
1293
- "types": [
1294
- "number",
1295
- "string"
1296
- ],
1297
- "description": "Width of the chart"
1298
- },
1299
- "showPercentages": {
1300
- "kind": "boolean",
1301
- "description": "Whether to show percentages"
1302
- },
1303
- "showValues": {
1304
- "kind": "boolean",
1305
- "description": "Whether to show values"
1306
- },
1307
- "showLabels": {
1308
- "kind": "boolean",
1309
- "description": "Whether to show stage labels (name)"
1310
- },
1311
- "showDropoff": {
1312
- "kind": "boolean",
1313
- "description": "Whether to show dropoff percentages between stages"
1314
- },
1315
- "showConversionRate": {
1316
- "kind": "boolean",
1317
- "description": "Whether to show conversion rates between stages"
1318
- },
1319
- "showSummary": {
1320
- "kind": "boolean",
1321
- "description": "Whether to show summary statistics"
1322
- },
1323
- "colors": {
1324
- "kind": "shape",
1325
- "shape": "colorList",
1326
- "description": "Custom colors"
1327
- },
1328
- "orientation": {
1329
- "kind": "enum",
1330
- "options": [
1331
- "horizontal",
1332
- "vertical"
1333
- ],
1334
- "description": "Orientation of the funnel"
1335
- },
1336
- "curved": {
1337
- "kind": "boolean",
1338
- "description": "Whether to curve segment edges (horizontal only)"
1339
- },
1340
- "useGradient": {
1341
- "kind": "boolean",
1342
- "description": "Whether to use gradient fills"
1343
- },
1344
- "fillOpacity": {
1345
- "kind": "number",
1346
- "description": "Fill opacity when gradients are disabled or for gradient stops"
1347
- },
1348
- "labelPosition": {
1349
- "kind": "enum",
1350
- "options": [
1351
- "top",
1352
- "bottom",
1353
- "inside",
1354
- "tooltip-only"
1355
- ],
1356
- "description": "Position of stage labels"
1357
- },
1358
- "summaryPosition": {
1359
- "kind": "enum",
1360
- "options": [
1361
- "none",
1362
- "top-right",
1363
- "top-left",
1364
- "bottom-right",
1365
- "bottom-left"
1366
- ],
1367
- "description": "Position of summary statistics box"
1368
- },
1369
- "animate": {
1370
- "kind": "boolean",
1371
- "description": "Whether to animate on mount"
1372
- },
1373
1260
  "title": {
1374
1261
  "kind": "text",
1375
- "description": "Card header title (the auto shell)"
1262
+ "description": "Heading for the form. Also becomes its accessible name."
1376
1263
  },
1377
- "subtitle": {
1264
+ "description": {
1378
1265
  "kind": "text",
1379
- "description": "Card header subtitle (the auto shell)"
1266
+ "description": "Optional helper text shown above the fields."
1267
+ },
1268
+ "submitLabel": {
1269
+ "kind": "string",
1270
+ "default": "Submit",
1271
+ "description": "Label for the submit button. A button is rendered automatically when the form's children do not include one."
1272
+ },
1273
+ "errorSummaryTitle": {
1274
+ "kind": "text",
1275
+ "default": "Please fix the following before continuing:",
1276
+ "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."
1380
1277
  }
1381
1278
  }
1382
1279
  },
@@ -1410,8 +1307,8 @@
1410
1307
  "kind": "enum",
1411
1308
  "options": [
1412
1309
  "none",
1413
- "inside",
1414
1310
  "auto",
1311
+ "inside",
1415
1312
  "outside"
1416
1313
  ]
1417
1314
  },
@@ -1557,29 +1454,66 @@
1557
1454
  "role": "leaf",
1558
1455
  "description": "Calendar/matrix heatmap (auto Card shell). Bind node.actions.cellClick to onCellClick (fires with the clicked cell's data).",
1559
1456
  "props": {
1457
+ "legend": {
1458
+ "kind": "enum",
1459
+ "options": [
1460
+ "top",
1461
+ "bottom",
1462
+ "none"
1463
+ ],
1464
+ "default": "bottom",
1465
+ "description": "Colour-ramp legend position — Heatmap draws its own gradient ramp, not per-series swatches from `config`. Always defaults to 'bottom' when omitted."
1466
+ },
1560
1467
  "data": {
1561
1468
  "kind": "shape",
1562
1469
  "shape": "heatmapPoints",
1563
- "description": "Heatmap data array - optional when using ChartContainer context"
1470
+ "description": "Heatmap data array optional when using ChartContainer context"
1564
1471
  },
1565
1472
  "color": {
1566
1473
  "kind": "enum",
1567
1474
  "options": [
1475
+ "mono",
1568
1476
  "primary",
1569
1477
  "success",
1570
1478
  "warning",
1571
1479
  "danger"
1572
1480
  ],
1573
- "description": "Semantic color for heatmap cells (primary, success, warning, danger)"
1481
+ "default": "primary",
1482
+ "description": "Semantic colour for heatmap cells"
1574
1483
  },
1575
1484
  "variant": {
1576
1485
  "kind": "enum",
1577
1486
  "options": [
1578
1487
  "default",
1579
- "minimal",
1580
- "bordered"
1488
+ "minimal"
1581
1489
  ],
1582
- "description": "Chart variant"
1490
+ "default": "default",
1491
+ "description": "Visual variant"
1492
+ },
1493
+ "legendLabels": {
1494
+ "kind": "shape",
1495
+ "shape": "heatmapLegendLabels",
1496
+ "default": "{ min: 'Low activity', max: 'High activity' }",
1497
+ "description": "Captions at each end of the colour ramp."
1498
+ },
1499
+ "cellGap": {
1500
+ "kind": "union",
1501
+ "types": [
1502
+ "number",
1503
+ "string"
1504
+ ],
1505
+ "default": 6,
1506
+ "description": "Gap between cells"
1507
+ },
1508
+ "minOpacity": {
1509
+ "kind": "number",
1510
+ "default": 0.1,
1511
+ "description": "Opacity floor for zero/lowest-intensity cells"
1512
+ },
1513
+ "showTooltip": {
1514
+ "kind": "boolean",
1515
+ "default": true,
1516
+ "description": "Show the hover tooltip"
1583
1517
  },
1584
1518
  "height": {
1585
1519
  "kind": "union",
@@ -1595,9 +1529,18 @@
1595
1529
  "string"
1596
1530
  ]
1597
1531
  },
1598
- "enableKeyboardNavigation": {
1532
+ "showXAxis": {
1533
+ "kind": "boolean"
1534
+ },
1535
+ "showYAxis": {
1599
1536
  "kind": "boolean"
1600
1537
  },
1538
+ "minValue": {
1539
+ "kind": "number"
1540
+ },
1541
+ "maxValue": {
1542
+ "kind": "number"
1543
+ },
1601
1544
  "title": {
1602
1545
  "kind": "text",
1603
1546
  "description": "Card header title (the auto shell)"
@@ -1711,15 +1654,21 @@
1711
1654
  "enableKeyboardNavigation": {
1712
1655
  "kind": "boolean"
1713
1656
  },
1714
- "showGrid": {
1715
- "kind": "boolean"
1716
- },
1717
1657
  "showXAxis": {
1718
1658
  "kind": "boolean"
1719
1659
  },
1720
1660
  "showYAxis": {
1721
1661
  "kind": "boolean"
1722
1662
  },
1663
+ "minValue": {
1664
+ "kind": "number"
1665
+ },
1666
+ "maxValue": {
1667
+ "kind": "number"
1668
+ },
1669
+ "showGrid": {
1670
+ "kind": "boolean"
1671
+ },
1723
1672
  "legend": {
1724
1673
  "kind": "enum",
1725
1674
  "options": [
@@ -1729,12 +1678,6 @@
1729
1678
  ],
1730
1679
  "description": "Always-visible legend position, rendered from `config`'s labels/colors."
1731
1680
  },
1732
- "minValue": {
1733
- "kind": "number"
1734
- },
1735
- "maxValue": {
1736
- "kind": "number"
1737
- },
1738
1681
  "barRadius": {
1739
1682
  "kind": "number"
1740
1683
  },
@@ -1913,7 +1856,7 @@
1913
1856
  },
1914
1857
  "name": {
1915
1858
  "kind": "string",
1916
- "description": "Form field name"
1859
+ "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_-]*$/."
1917
1860
  },
1918
1861
  "min": {
1919
1862
  "kind": "number",
@@ -1978,6 +1921,14 @@
1978
1921
  "decimalPlaces": {
1979
1922
  "kind": "number",
1980
1923
  "description": "Number of decimal places to display (auto-detected from step if not specified)"
1924
+ },
1925
+ "required": {
1926
+ "kind": "boolean",
1927
+ "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."
1928
+ },
1929
+ "name": {
1930
+ "kind": "string",
1931
+ "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_-]*$/."
1981
1932
  }
1982
1933
  }
1983
1934
  },
@@ -2055,6 +2006,10 @@
2055
2006
  "maxDate": {
2056
2007
  "kind": "string",
2057
2008
  "description": "Maximum selectable date, ISO format"
2009
+ },
2010
+ "name": {
2011
+ "kind": "string",
2012
+ "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_-]*$/."
2058
2013
  }
2059
2014
  }
2060
2015
  },
@@ -2121,6 +2076,14 @@
2121
2076
  "kind": "boolean",
2122
2077
  "default": true,
2123
2078
  "description": "Auto-focus the first input on mount"
2079
+ },
2080
+ "required": {
2081
+ "kind": "boolean",
2082
+ "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."
2083
+ },
2084
+ "name": {
2085
+ "kind": "string",
2086
+ "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_-]*$/."
2124
2087
  }
2125
2088
  }
2126
2089
  },
@@ -2190,6 +2153,14 @@
2190
2153
  "emptyMessage": {
2191
2154
  "kind": "string",
2192
2155
  "description": "Message shown when no suggestions match (default: \"No suggestions\")"
2156
+ },
2157
+ "required": {
2158
+ "kind": "boolean",
2159
+ "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."
2160
+ },
2161
+ "name": {
2162
+ "kind": "string",
2163
+ "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_-]*$/."
2193
2164
  }
2194
2165
  }
2195
2166
  },
@@ -2341,15 +2312,21 @@
2341
2312
  "enableKeyboardNavigation": {
2342
2313
  "kind": "boolean"
2343
2314
  },
2344
- "showGrid": {
2345
- "kind": "boolean"
2346
- },
2347
2315
  "showXAxis": {
2348
2316
  "kind": "boolean"
2349
2317
  },
2350
2318
  "showYAxis": {
2351
2319
  "kind": "boolean"
2352
2320
  },
2321
+ "minValue": {
2322
+ "kind": "number"
2323
+ },
2324
+ "maxValue": {
2325
+ "kind": "number"
2326
+ },
2327
+ "showGrid": {
2328
+ "kind": "boolean"
2329
+ },
2353
2330
  "legend": {
2354
2331
  "kind": "enum",
2355
2332
  "options": [
@@ -2359,12 +2336,6 @@
2359
2336
  ],
2360
2337
  "description": "Always-visible legend position, rendered from `config`'s labels/colors."
2361
2338
  },
2362
- "minValue": {
2363
- "kind": "number"
2364
- },
2365
- "maxValue": {
2366
- "kind": "number"
2367
- },
2368
2339
  "title": {
2369
2340
  "kind": "text",
2370
2341
  "description": "Card header title (the auto shell)"
@@ -2711,7 +2682,21 @@
2711
2682
  "props": {
2712
2683
  "value": {
2713
2684
  "kind": "number",
2714
- "description": "Progress value from 0 to 100."
2685
+ "description": "Progress value, from 0 to `max`."
2686
+ },
2687
+ "max": {
2688
+ "kind": "number",
2689
+ "default": 100,
2690
+ "description": "Upper bound of the range `value` is measured against."
2691
+ },
2692
+ "segments": {
2693
+ "kind": "number",
2694
+ "description": "Number of cells to render the bar as an LED-style segmented meter."
2695
+ },
2696
+ "segmentFade": {
2697
+ "kind": "boolean",
2698
+ "default": false,
2699
+ "description": "Fade the meter out across its last few lit cells (segmented form only)."
2715
2700
  },
2716
2701
  "size": {
2717
2702
  "kind": "enum",
@@ -2875,88 +2860,14 @@
2875
2860
  "kind": "boolean",
2876
2861
  "default": false,
2877
2862
  "description": "Enable half-step rating increments"
2878
- }
2879
- }
2880
- },
2881
- "ScatterPlot": {
2882
- "role": "leaf",
2883
- "description": "Scatter/bubble chart (auto Card shell).",
2884
- "props": {
2885
- "data": {
2886
- "kind": "shape",
2887
- "shape": "scatterPoints",
2888
- "required": true,
2889
- "description": "Data points"
2890
- },
2891
- "xLabel": {
2892
- "kind": "string",
2893
- "description": "X-axis label"
2894
- },
2895
- "yLabel": {
2896
- "kind": "string",
2897
- "description": "Y-axis label"
2898
2863
  },
2899
- "dotRadius": {
2900
- "kind": "number",
2901
- "description": "Point size (if not using data.size)"
2902
- },
2903
- "colors": {
2904
- "kind": "shape",
2905
- "shape": "colorList",
2906
- "description": "Custom colors for categories (using CSS variables)"
2907
- },
2908
- "showTooltip": {
2864
+ "required": {
2909
2865
  "kind": "boolean",
2910
- "description": "Enable tooltip on hover"
2911
- },
2912
- "showGrid": {
2913
- "kind": "boolean"
2914
- },
2915
- "showXAxis": {
2916
- "kind": "boolean"
2917
- },
2918
- "showYAxis": {
2919
- "kind": "boolean"
2920
- },
2921
- "legend": {
2922
- "kind": "enum",
2923
- "options": [
2924
- "top",
2925
- "bottom",
2926
- "none"
2927
- ],
2928
- "description": "Always-visible legend position, rendered from `config`'s labels/colors."
2929
- },
2930
- "minValue": {
2931
- "kind": "number"
2932
- },
2933
- "maxValue": {
2934
- "kind": "number"
2935
- },
2936
- "height": {
2937
- "kind": "union",
2938
- "types": [
2939
- "number",
2940
- "string"
2941
- ]
2866
+ "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."
2942
2867
  },
2943
- "width": {
2944
- "kind": "union",
2945
- "types": [
2946
- "number",
2947
- "string"
2948
- ]
2949
- },
2950
- "enableKeyboardNavigation": {
2951
- "kind": "boolean"
2952
- },
2953
- "title": {
2954
- "kind": "text",
2955
- "description": "Card header title (the auto shell)"
2956
- },
2957
- "subtitle": {
2958
- "kind": "text",
2959
- "description": "Card header subtitle (the auto shell)"
2868
+ "name": {
2869
+ "kind": "string",
2870
+ "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_-]*$/."
2960
2871
  }
2961
2872
  }
2962
2873
  },
@@ -3063,7 +2974,7 @@
3063
2974
  "props": {
3064
2975
  "name": {
3065
2976
  "kind": "string",
3066
- "description": "Name for the select component"
2977
+ "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_-]*$/."
3067
2978
  },
3068
2979
  "size": {
3069
2980
  "kind": "enum",
@@ -3130,6 +3041,10 @@
3130
3041
  "kind": "boolean",
3131
3042
  "description": "Whether to enable typeahead functionality (default: true)"
3132
3043
  },
3044
+ "aria-label": {
3045
+ "kind": "string",
3046
+ "description": "Accessible name for a Select with no visible `label` — e.g. a control sitting"
3047
+ },
3133
3048
  "value": {
3134
3049
  "kind": "string",
3135
3050
  "description": "Currently selected option's value (controlled)"
@@ -3266,7 +3181,7 @@
3266
3181
  },
3267
3182
  "name": {
3268
3183
  "kind": "string",
3269
- "description": "Name attribute for form submission"
3184
+ "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_-]*$/."
3270
3185
  },
3271
3186
  "value": {
3272
3187
  "kind": "number",
@@ -3517,7 +3432,7 @@
3517
3432
  },
3518
3433
  "name": {
3519
3434
  "kind": "string",
3520
- "description": "HTML name attribute for the hidden input"
3435
+ "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_-]*$/."
3521
3436
  },
3522
3437
  "value": {
3523
3438
  "kind": "string",
@@ -3547,8 +3462,8 @@
3547
3462
  "kind": "enum",
3548
3463
  "options": [
3549
3464
  "default",
3550
- "bordered",
3551
3465
  "striped",
3466
+ "bordered",
3552
3467
  "compact"
3553
3468
  ],
3554
3469
  "description": "Visual variant for different table styles"
@@ -3720,7 +3635,7 @@
3720
3635
  },
3721
3636
  "name": {
3722
3637
  "kind": "string",
3723
- "description": "Form field name"
3638
+ "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_-]*$/."
3724
3639
  }
3725
3640
  }
3726
3641
  },
@@ -3821,6 +3736,14 @@
3821
3736
  "iconEnd": {
3822
3737
  "kind": "icon",
3823
3738
  "description": "Icon to display at the end (right side)"
3739
+ },
3740
+ "required": {
3741
+ "kind": "boolean",
3742
+ "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."
3743
+ },
3744
+ "name": {
3745
+ "kind": "string",
3746
+ "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_-]*$/."
3824
3747
  }
3825
3748
  }
3826
3749
  },
@@ -4284,56 +4207,6 @@
4284
4207
  }
4285
4208
  }
4286
4209
  },
4287
- "scatterPoints": {
4288
- "description": "Array of points: { x, y } (numbers, required) plus optional size (number), label (string), category (string, for color grouping).",
4289
- "type": "array",
4290
- "items": {
4291
- "type": "object",
4292
- "required": [
4293
- "x",
4294
- "y"
4295
- ],
4296
- "properties": {
4297
- "x": {
4298
- "type": "number"
4299
- },
4300
- "y": {
4301
- "type": "number"
4302
- },
4303
- "size": {
4304
- "type": "number"
4305
- },
4306
- "label": {
4307
- "type": "string"
4308
- },
4309
- "category": {
4310
- "type": "string"
4311
- }
4312
- }
4313
- }
4314
- },
4315
- "funnelStages": {
4316
- "description": "Array of funnel stages: { name, value } (required) plus optional color (CSS string).",
4317
- "type": "array",
4318
- "items": {
4319
- "type": "object",
4320
- "required": [
4321
- "name",
4322
- "value"
4323
- ],
4324
- "properties": {
4325
- "name": {
4326
- "type": "string"
4327
- },
4328
- "value": {
4329
- "type": "number"
4330
- },
4331
- "color": {
4332
- "type": "string"
4333
- }
4334
- }
4335
- }
4336
- },
4337
4210
  "activityRings": {
4338
4211
  "description": "Array of rings, ordered outer to inner: { value } (number 0-100, required) plus optional label (string) and color (CSS/hex string).",
4339
4212
  "type": "array",
@@ -4398,6 +4271,18 @@
4398
4271
  }
4399
4272
  }
4400
4273
  }
4274
+ },
4275
+ "heatmapLegendLabels": {
4276
+ "description": "Captions at each end of the colour ramp, both optional: { min, max }.",
4277
+ "type": "object",
4278
+ "properties": {
4279
+ "min": {
4280
+ "type": "string"
4281
+ },
4282
+ "max": {
4283
+ "type": "string"
4284
+ }
4285
+ }
4401
4286
  }
4402
4287
  },
4403
4288
  "examples": [