@flikk/ui 1.0.0-beta.31 → 1.0.0-beta.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +497 -22
- package/dist/components/ai/AgentRequest/AgentRequest.animations.d.ts +25 -0
- package/dist/components/ai/AgentRequest/AgentRequest.animations.js +81 -0
- package/dist/components/ai/AgentRequest/AgentRequest.d.ts +3 -0
- package/dist/components/ai/AgentRequest/AgentRequest.js +435 -0
- package/dist/components/ai/AgentRequest/AgentRequest.theme.d.ts +2 -0
- package/dist/components/ai/AgentRequest/AgentRequest.theme.js +106 -0
- package/dist/components/ai/AgentRequest/AgentRequest.types.d.ts +241 -0
- package/dist/components/ai/AgentRequest/index.d.ts +3 -0
- package/dist/components/ai/CodeBlock/CodeBlock.theme.js +1 -1
- package/dist/components/ai/PromptInput/PromptInput.js +2 -2
- package/dist/components/ai/PromptInput/PromptInput.theme.js +2 -2
- package/dist/components/ai/PromptSuggestion/PromptSuggestion.theme.js +2 -2
- package/dist/components/ai/Reasoning/Reasoning.js +27 -3
- package/dist/components/ai/Reasoning/Reasoning.theme.d.ts +6 -0
- package/dist/components/ai/Reasoning/Reasoning.theme.js +36 -0
- package/dist/components/ai/Reasoning/Reasoning.types.d.ts +58 -5
- package/dist/components/ai/Reasoning/ReasoningTrace.d.ts +11 -0
- package/dist/components/ai/Reasoning/ReasoningTrace.js +84 -0
- package/dist/components/ai/Reasoning/index.d.ts +2 -1
- package/dist/components/ai/StreamingResponse/AnimatedText.d.ts +7 -0
- package/dist/components/ai/StreamingResponse/AnimatedText.js +8 -7
- package/dist/components/ai/StreamingResponse/MarkdownRenderer.d.ts +5 -0
- package/dist/components/ai/StreamingResponse/MarkdownRenderer.js +4 -4
- package/dist/components/ai/StreamingResponse/StreamingCursor.d.ts +2 -2
- package/dist/components/ai/StreamingResponse/StreamingCursor.js +10 -7
- package/dist/components/ai/StreamingResponse/StreamingResponse.animations.d.ts +10 -0
- package/dist/components/ai/StreamingResponse/StreamingResponse.animations.js +59 -33
- package/dist/components/ai/StreamingResponse/StreamingResponse.js +13 -7
- package/dist/components/ai/StreamingResponse/StreamingResponse.types.d.ts +33 -2
- package/dist/components/ai/StreamingResponse/StreamingSurface.d.ts +13 -0
- package/dist/components/ai/StreamingResponse/StreamingSurface.js +38 -0
- package/dist/components/ai/StreamingResponse/WordAnimationContext.d.ts +5 -0
- package/dist/components/ai/StreamingResponse/WordAnimationContext.js +5 -4
- package/dist/components/ai/StreamingResponse/index.d.ts +4 -2
- package/dist/components/ai/TokenCounter/TokenCounter.theme.js +1 -1
- package/dist/components/ai/index.d.ts +3 -2
- package/dist/components/ai/index.js +4 -0
- package/dist/components/canvas/BaseNode.js +1 -1
- package/dist/components/canvas/CanvasToolbar.js +0 -1
- package/dist/components/canvas/Edge.js +2 -2
- package/dist/components/canvas/NodeControls.js +0 -1
- package/dist/components/canvas/NodeRenderer.js +2 -2
- package/dist/components/charts/ActivityRings/ActivityRings.js +2 -2
- package/dist/components/charts/ActivityRings/ActivityRings.theme.js +1 -1
- package/dist/components/charts/AreaChart/AreaChart.js +3 -3
- package/dist/components/charts/AreaChart/AreaChart.theme.js +3 -3
- package/dist/components/charts/BarChart/BarChart.js +4 -4
- package/dist/components/charts/ComboChart/BarRenderer.js +2 -2
- package/dist/components/charts/ComboChart/BarRenderer.types.d.ts +1 -1
- package/dist/components/charts/ComboChart/ComboChartCanvas.js +1 -1
- package/dist/components/charts/ComboChart/LineRenderer.js +1 -1
- package/dist/components/charts/ComboChart/LineRenderer.types.d.ts +1 -1
- package/dist/components/charts/DonutChart/DonutChart.theme.js +4 -4
- package/dist/components/charts/DonutChart/MultiSegmentDonutChart.theme.js +1 -1
- package/dist/components/charts/Heatmap/Heatmap.js +49 -42
- package/dist/components/charts/Heatmap/Heatmap.theme.d.ts +6 -2
- package/dist/components/charts/Heatmap/Heatmap.theme.js +20 -8
- package/dist/components/charts/Heatmap/Heatmap.types.d.ts +49 -82
- package/dist/components/charts/Heatmap/HeatmapCell.js +30 -81
- package/dist/components/charts/Heatmap/HeatmapLegend.d.ts +7 -6
- package/dist/components/charts/Heatmap/HeatmapLegend.js +6 -6
- package/dist/components/charts/Heatmap/index.d.ts +1 -1
- package/dist/components/charts/Heatmap/utils/heatmapUtils.d.ts +7 -12
- package/dist/components/charts/Heatmap/utils/heatmapUtils.js +16 -61
- package/dist/components/charts/Heatmap/utils/heatmapUtils.test.d.ts +1 -0
- package/dist/components/charts/HorizontalBarChart/HorizontalBarChart.js +1 -1
- package/dist/components/charts/LineChart/LineChart.js +2 -2
- package/dist/components/charts/LollipopChart/LollipopChart.js +1 -1
- package/dist/components/charts/RadarChart/RadarChart.js +1 -1
- package/dist/components/charts/StackedBarChart/StackedBarChart.js +3 -3
- package/dist/components/charts/hooks/useChartAccessibility.js +9 -6
- package/dist/components/charts/index.d.ts +4 -8
- package/dist/components/charts/index.js +2 -4
- package/dist/components/charts/shared/ChartText/ChartText.theme.js +1 -1
- package/dist/components/charts/shared/index.d.ts +1 -1
- package/dist/components/charts/theme/chart.theme.js +3 -3
- package/dist/components/charts/utils/animation-utils.d.ts +12 -7
- package/dist/components/charts/utils/animation-utils.js +19 -19
- package/dist/components/core/Accordion/Accordion.theme.js +1 -1
- package/dist/components/core/Alert/Alert.animations.d.ts +11 -4
- package/dist/components/core/Alert/Alert.animations.js +11 -4
- package/dist/components/core/Alert/Alert.js +16 -2
- package/dist/components/core/Alert/Alert.theme.js +1 -1
- package/dist/components/core/Alert/Alert.types.d.ts +4 -2
- package/dist/components/core/AlertDialog/AlertDialog.js +2 -2
- package/dist/components/core/Avatar/Avatar.theme.js +1 -1
- package/dist/components/core/Badge/Badge.animations.d.ts +0 -5
- package/dist/components/core/Badge/Badge.animations.js +5 -84
- package/dist/components/core/Badge/Badge.d.ts +7 -4
- package/dist/components/core/Badge/Badge.js +27 -64
- package/dist/components/core/Badge/Badge.theme.js +8 -12
- package/dist/components/core/Badge/Badge.types.d.ts +18 -34
- package/dist/components/core/Breadcrumbs/Breadcrumbs.theme.js +4 -4
- package/dist/components/core/Button/Button.js +7 -43
- package/dist/components/core/Button/Button.theme.js +5 -5
- package/dist/components/core/Button/Button.types.d.ts +8 -12
- package/dist/components/core/Button/index.d.ts +0 -2
- package/dist/components/core/Calendar/Calendar.theme.js +1 -1
- package/dist/components/core/Calendar/CalendarMini/CalendarMini.theme.js +2 -2
- package/dist/components/core/Card/Card.js +7 -2
- package/dist/components/core/Card/Card.theme.js +29 -1
- package/dist/components/core/Card/Card.types.d.ts +20 -0
- package/dist/components/core/Card/CardBody.js +9 -1
- package/dist/components/core/Card/CardContext.d.ts +13 -0
- package/dist/components/core/Card/CardContext.js +14 -0
- package/dist/components/core/Card/CardHeader.js +4 -1
- package/dist/components/core/ContextMenu/ContextMenu.theme.js +4 -3
- package/dist/components/core/ContextMenu/ContextMenu.types.d.ts +8 -1
- package/dist/components/core/ContextMenu/ContextMenuSub.d.ts +11 -1
- package/dist/components/core/ContextMenu/ContextMenuSub.js +35 -22
- package/dist/components/core/ContextMenu/ContextMenuSubBody.js +14 -3
- package/dist/components/core/ContextMenu/ContextMenuSubTrigger.js +21 -8
- package/dist/components/core/DragDrop/DragDrop.theme.js +2 -2
- package/dist/components/core/Drawer/Drawer.theme.js +1 -1
- package/dist/components/core/Drawer/DrawerHeader.js +0 -1
- package/dist/components/core/Dropdown/DropdownMenu.js +22 -7
- package/dist/components/core/Link/Link.js +1 -1
- package/dist/components/core/Masonry/Masonry.theme.js +1 -1
- package/dist/components/core/MenuItem/MenuItem.js +2 -1
- package/dist/components/core/MenuItem/MenuItem.theme.js +13 -1
- package/dist/components/core/Message/Message.js +2 -0
- package/dist/components/core/Message/Message.theme.js +3 -3
- package/dist/components/core/Modal/Modal.animations.d.ts +1 -1
- package/dist/components/core/Modal/Modal.animations.js +50 -11
- package/dist/components/core/Modal/Modal.js +5 -1
- package/dist/components/core/Modal/Modal.theme.js +1 -1
- package/dist/components/core/Modal/ModalHeader.js +0 -1
- package/dist/components/core/ModalStack/ModalStackModal.js +3 -1
- package/dist/components/core/NavItem/NavItem.js +3 -2
- package/dist/components/core/NavItem/NavItem.theme.js +1 -1
- package/dist/components/core/OfflineIndicator/OfflineIndicator.theme.js +4 -2
- package/dist/components/core/PageHeading/PageHeading.theme.js +1 -1
- package/dist/components/core/Pagination/Pagination.theme.js +2 -2
- package/dist/components/core/Pill/Pill.js +34 -18
- package/dist/components/core/Pill/Pill.theme.js +4 -2
- package/dist/components/core/Pill/Pill.types.d.ts +14 -1
- package/dist/components/core/Popover/PopoverBody.js +16 -5
- package/dist/components/core/Progress/Progress.d.ts +0 -25
- package/dist/components/core/Progress/Progress.js +79 -11
- package/dist/components/core/Progress/Progress.theme.js +17 -0
- package/dist/components/core/Progress/Progress.types.d.ts +47 -1
- package/dist/components/core/Rating/Rating.theme.js +1 -1
- package/dist/components/core/Rating/Rating.types.d.ts +3 -2
- package/dist/components/core/ScrollArea/ScrollArea.js +1 -1
- package/dist/components/core/ScrollArea/ScrollArea.theme.js +1 -1
- package/dist/components/core/Segmented/Segmented.theme.js +3 -3
- package/dist/components/core/Segmented/SegmentedContext.js +1 -0
- package/dist/components/core/Sidebar/Sidebar.js +5 -2
- package/dist/components/core/Sidebar/Sidebar.theme.js +2 -2
- package/dist/components/core/Sidebar/SidebarContent.js +1 -1
- package/dist/components/core/Sidebar/SidebarHeader.js +1 -1
- package/dist/components/core/Sidebar/SidebarSearch.js +2 -2
- package/dist/components/core/Sidebar/SidebarToggle.js +1 -1
- package/dist/components/core/Sidebar/SidebarUserProfile.js +1 -1
- package/dist/components/core/SlidingNumber/SlidingNumber.d.ts +8 -0
- package/dist/components/core/SlidingNumber/SlidingNumber.js +12 -3
- package/dist/components/core/Sortable/Sortable.theme.js +1 -1
- package/dist/components/core/Tabs/Tabs.theme.js +1 -1
- package/dist/components/core/Tag/Tag.theme.js +1 -1
- package/dist/components/core/Toast/ToastProvider.js +1 -1
- package/dist/components/core/Tree/Tree.theme.js +1 -1
- package/dist/components/core/index.d.ts +0 -2
- package/dist/components/core/index.js +0 -4
- package/dist/components/core/shared/ChartTooltip/ChartTooltip.animations.d.ts +4 -0
- package/dist/components/core/shared/ChartTooltip/ChartTooltip.animations.js +20 -0
- package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.js +1 -1
- package/dist/components/core/shared/Ripple.d.ts +16 -0
- package/dist/components/core/shared/Ripple.js +141 -0
- package/dist/components/data-display/GanttChart/GanttChart.theme.js +6 -6
- package/dist/components/data-display/GanttChart/GanttTaskBar.js +1 -1
- package/dist/components/data-display/GanttChart/GanttTimelineHeader.js +1 -1
- package/dist/components/data-display/GanttChart/GanttToolbar.js +0 -1
- package/dist/components/data-display/KPI/KPI.js +11 -20
- package/dist/components/data-display/KPI/KPI.theme.js +8 -4
- package/dist/components/data-display/Metric/Metric.theme.js +4 -4
- package/dist/components/data-display/Table/Table.theme.js +2 -2
- package/dist/components/data-display/Table/TableColumnManager.js +1 -2
- package/dist/components/data-display/Table/TableContext.js +1 -0
- package/dist/components/data-display/Table/TableFilter.js +9 -2
- package/dist/components/data-display/Table/TableSelectionHeader.js +1 -1
- package/dist/components/data-display/Timeline/Timeline.theme.js +1 -1
- package/dist/components/effects/CustomCursor/CustomCursor.d.ts +1 -1
- package/dist/components/effects/CustomCursor/CustomCursor.js +1 -1
- package/dist/components/effects/CustomCursor/CustomCursor.theme.js +4 -4
- package/dist/components/effects/Neumorphic/InsetCircleButton.js +1 -1
- package/dist/components/effects/Overlay/Overlay.js +7 -3
- package/dist/components/effects/index.d.ts +0 -32
- package/dist/components/effects/index.js +0 -16
- package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.d.ts +0 -2
- package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.js +1 -93
- package/dist/components/effects/shared/ShaderCanvas/ShaderCanvas.types.d.ts +0 -10
- package/dist/components/effects/shared/ShaderCanvas/index.d.ts +1 -1
- package/dist/components/effects/shared/index.d.ts +1 -3
- package/dist/components/effects/shared/shaderNoise.glsl.d.ts +1 -1
- package/dist/components/effects/shared/shaderNoise.glsl.js +2 -11
- package/dist/components/forms/Checkbox/Checkbox.theme.js +1 -1
- package/dist/components/forms/ColorPicker/ColorPicker.js +45 -3
- package/dist/components/forms/ColorPicker/ColorPickerBody.js +8 -4
- package/dist/components/forms/ColorPicker/ColorPickerHeader.js +1 -1
- package/dist/components/forms/ColorPicker/ColorPickerImage.js +1 -1
- package/dist/components/forms/Combobox/Combobox.js +10 -4
- package/dist/components/forms/Combobox/Combobox.theme.js +9 -0
- package/dist/components/forms/Combobox/Combobox.types.d.ts +13 -0
- package/dist/components/forms/DatePicker/DatePicker.js +19 -12
- package/dist/components/forms/DatePicker/DatePicker.theme.js +5 -0
- package/dist/components/forms/DatePicker/DatePicker.types.d.ts +8 -0
- package/dist/components/forms/DatePicker/DatePickerContext.d.ts +0 -1
- package/dist/components/forms/DatePicker/DatePickerTrigger.js +5 -3
- package/dist/components/forms/DateRangePicker/DateRangePicker.theme.js +6 -1
- package/dist/components/forms/DateRangePicker/DateRangePicker.types.d.ts +8 -0
- package/dist/components/forms/DateRangePicker/DateRangePickerContext.js +1 -0
- package/dist/components/forms/DateRangePicker/DateRangePickerTrigger.js +5 -3
- package/dist/components/forms/FileUpload/FileUpload.theme.js +2 -2
- package/dist/components/forms/FileUpload/FileUploadProgress.theme.js +1 -1
- package/dist/components/forms/Input/Input.js +17 -12
- package/dist/components/forms/Input/Input.theme.js +10 -0
- package/dist/components/forms/Input/Input.types.d.ts +14 -0
- package/dist/components/forms/InputAddress/InputAddress.js +5 -5
- package/dist/components/forms/InputAddress/InputAddress.types.d.ts +9 -2
- package/dist/components/forms/InputCounter/InputCounter.js +194 -17
- package/dist/components/forms/InputCounter/InputCounter.theme.d.ts +12 -0
- package/dist/components/forms/InputCounter/InputCounter.theme.js +92 -2
- package/dist/components/forms/InputCounter/InputCounter.types.d.ts +47 -4
- package/dist/components/forms/InputCreditCard/InputCreditCard.js +4 -4
- package/dist/components/forms/InputCreditCard/InputCreditCard.types.d.ts +7 -0
- package/dist/components/forms/Mention/Mention.js +13 -11
- package/dist/components/forms/Radio/Radio.theme.js +1 -1
- package/dist/components/forms/RichTextEditor/RichTextEditor.d.ts +12 -16
- package/dist/components/forms/RichTextEditor/RichTextEditor.js +174 -1680
- package/dist/components/forms/RichTextEditor/RichTextEditor.theme.d.ts +12 -56
- package/dist/components/forms/RichTextEditor/RichTextEditor.theme.js +60 -118
- package/dist/components/forms/RichTextEditor/RichTextEditor.types.d.ts +62 -126
- package/dist/components/forms/RichTextEditor/RichTextLinkField.d.ts +18 -0
- package/dist/components/forms/RichTextEditor/RichTextLinkField.js +46 -0
- package/dist/components/forms/RichTextEditor/RichTextToolbar.d.ts +15 -0
- package/dist/components/forms/RichTextEditor/RichTextToolbar.js +93 -0
- package/dist/components/forms/RichTextEditor/editorCommands.d.ts +50 -0
- package/dist/components/forms/RichTextEditor/editorCommands.js +58 -0
- package/dist/components/forms/RichTextEditor/editorState.d.ts +19 -0
- package/dist/components/forms/RichTextEditor/editorState.js +103 -0
- package/dist/components/forms/RichTextEditor/index.d.ts +5 -3
- package/dist/components/forms/RichTextEditor/sanitizeHtml.d.ts +38 -0
- package/dist/components/forms/RichTextEditor/sanitizeHtml.js +179 -0
- package/dist/components/forms/RichTextEditor/sanitizeHtml.test.d.ts +1 -0
- package/dist/components/forms/Select/Select.js +19 -12
- package/dist/components/forms/Select/Select.theme.js +9 -1
- package/dist/components/forms/Select/Select.types.d.ts +86 -8
- package/dist/components/forms/Select/useSelectState.d.ts +9 -3
- package/dist/components/forms/Select/useSelectState.js +4 -1
- package/dist/components/forms/SelectableCard/SelectableCard.js +2 -1
- package/dist/components/forms/SelectableCard/SelectableCard.theme.js +1 -1
- package/dist/components/forms/Switch/Switch.theme.js +2 -2
- package/dist/components/forms/Textarea/Textarea.js +14 -25
- package/dist/components/forms/TimePicker/TimePicker.theme.js +10 -1
- package/dist/components/forms/TimePicker/TimePicker.types.d.ts +11 -0
- package/dist/components/forms/TimePicker/TimePickerTrigger.js +7 -5
- package/dist/components/forms/forms.theme.d.ts +57 -0
- package/dist/components/forms/forms.theme.js +102 -13
- package/dist/components/forms/index.js +1 -0
- package/dist/components/generative/FormShell.d.ts +22 -0
- package/dist/components/generative/FormShell.js +102 -0
- package/dist/components/generative/GenerativeView.d.ts +52 -1
- package/dist/components/generative/GenerativeView.js +203 -11
- package/dist/components/generative/actions.d.ts +5 -0
- package/dist/components/generative/ai-sdk/index.d.ts +1 -0
- package/dist/components/generative/ai-sdk/index.js +1 -0
- package/dist/components/generative/ai-sdk/useGenerativeChat.d.ts +52 -0
- package/dist/components/generative/ai-sdk/useGenerativeChat.js +73 -0
- package/dist/components/generative/ai-sdk/useGenerativeChat.test.d.ts +1 -0
- package/dist/components/generative/fieldBinding.d.ts +31 -0
- package/dist/components/generative/fieldBinding.js +33 -0
- package/dist/components/generative/fieldBinding.test.d.ts +1 -0
- package/dist/components/generative/formScope.d.ts +71 -0
- package/dist/components/generative/formScope.js +135 -0
- package/dist/components/generative/index.d.ts +4 -0
- package/dist/components/generative/index.js +4 -0
- package/dist/components/generative/registry.d.ts +2 -0
- package/dist/components/generative/registry.js +11 -10
- package/dist/components/generative/schema.generated.js +199 -293
- package/dist/components/generative/toToolResult.d.ts +21 -0
- package/dist/components/generative/toToolResult.js +15 -0
- package/dist/components/generative/toToolResult.test.d.ts +1 -0
- package/dist/components/generative/validate.d.ts +10 -1
- package/dist/components/generative/validate.js +126 -11
- package/dist/components/layout/Grid/Grid.js +1 -0
- package/dist/components/layout/Section/Section.theme.js +1 -1
- package/dist/components/layout/Stack/Stack.js +1 -0
- package/dist/generative.schema.json +199 -293
- package/dist/index.js +1 -4
- package/dist/registry.json +2765 -2450
- package/dist/shadcn-compat.css +5 -5
- package/dist/styles/theme.test.d.ts +1 -0
- package/dist/styles.css +1 -1
- package/dist/test/render.d.ts +17 -0
- package/dist/themes/precision.css +232 -0
- package/dist/tools.json +200 -295
- package/dist/utils/composeEventHandlers.d.ts +19 -0
- package/dist/utils/composeEventHandlers.js +26 -0
- package/dist/utils/composeEventHandlers.test.d.ts +1 -0
- package/dist/utils/index.d.ts +1 -1
- package/package.json +31 -1
- package/src/global.scss +21 -28
- package/src/styles/theme.css +157 -50
- package/src/styles/theme.test.ts +119 -0
- package/tailwind.preset.cjs +30 -20
- package/dist/components/charts/FunnelChart/FunnelChart.animations.d.ts +0 -35
- package/dist/components/charts/FunnelChart/FunnelChart.animations.js +0 -59
- package/dist/components/charts/FunnelChart/FunnelChart.d.ts +0 -8
- package/dist/components/charts/FunnelChart/FunnelChart.js +0 -410
- package/dist/components/charts/FunnelChart/FunnelChart.theme.d.ts +0 -2
- package/dist/components/charts/FunnelChart/FunnelChart.theme.js +0 -12
- package/dist/components/charts/FunnelChart/FunnelChart.types.d.ts +0 -105
- package/dist/components/charts/FunnelChart/index.d.ts +0 -4
- package/dist/components/charts/ScatterPlot/ScatterPlot.d.ts +0 -9
- package/dist/components/charts/ScatterPlot/ScatterPlot.js +0 -208
- package/dist/components/charts/ScatterPlot/ScatterPlot.theme.d.ts +0 -18
- package/dist/components/charts/ScatterPlot/ScatterPlot.theme.js +0 -42
- package/dist/components/charts/ScatterPlot/ScatterPlot.types.d.ts +0 -60
- package/dist/components/charts/ScatterPlot/ScatterPlot.types.js +0 -19
- package/dist/components/charts/ScatterPlot/index.d.ts +0 -3
- package/dist/components/core/Button/Button.ripple.d.ts +0 -71
- package/dist/components/core/Button/Button.ripple.js +0 -236
- package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.d.ts +0 -4
- package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.theme.d.ts +0 -12
- package/dist/components/core/Calendar/CalendarEvent/CalendarEvent.types.d.ts +0 -23
- package/dist/components/core/Calendar/CalendarEvent/index.d.ts +0 -2
- package/dist/components/core/CardStack/CardStack.animations.d.ts +0 -47
- package/dist/components/core/CardStack/CardStack.d.ts +0 -3
- package/dist/components/core/CardStack/CardStack.js +0 -187
- package/dist/components/core/CardStack/CardStack.theme.d.ts +0 -6
- package/dist/components/core/CardStack/CardStack.theme.js +0 -33
- package/dist/components/core/CardStack/CardStack.types.d.ts +0 -139
- package/dist/components/core/CardStack/index.d.ts +0 -7
- package/dist/components/core/Carousel/Carousel.d.ts +0 -3
- package/dist/components/core/Carousel/Carousel.js +0 -83
- package/dist/components/core/Carousel/Carousel.theme.d.ts +0 -10
- package/dist/components/core/Carousel/Carousel.theme.js +0 -20
- package/dist/components/core/Carousel/Carousel.types.d.ts +0 -113
- package/dist/components/core/Carousel/CarouselBody.d.ts +0 -4
- package/dist/components/core/Carousel/CarouselBody.js +0 -59
- package/dist/components/core/Carousel/CarouselContext.d.ts +0 -3
- package/dist/components/core/Carousel/CarouselContext.js +0 -13
- package/dist/components/core/Carousel/CarouselItem.d.ts +0 -4
- package/dist/components/core/Carousel/CarouselItem.js +0 -11
- package/dist/components/core/Carousel/CarouselNext.d.ts +0 -4
- package/dist/components/core/Carousel/CarouselNext.js +0 -16
- package/dist/components/core/Carousel/CarouselPrevious.d.ts +0 -4
- package/dist/components/core/Carousel/CarouselPrevious.js +0 -16
- package/dist/components/core/Carousel/index.d.ts +0 -3
- package/dist/components/effects/ColorPanels/ColorPanels.d.ts +0 -8
- package/dist/components/effects/ColorPanels/ColorPanels.js +0 -66
- package/dist/components/effects/ColorPanels/ColorPanels.shaders.d.ts +0 -12
- package/dist/components/effects/ColorPanels/ColorPanels.shaders.js +0 -218
- package/dist/components/effects/ColorPanels/ColorPanels.types.d.ts +0 -29
- package/dist/components/effects/ColorPanels/ColorPanels.types.js +0 -3
- package/dist/components/effects/ColorPanels/index.d.ts +0 -2
- package/dist/components/effects/FlutedGlass/FlutedGlass.d.ts +0 -9
- package/dist/components/effects/FlutedGlass/FlutedGlass.js +0 -80
- package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.d.ts +0 -12
- package/dist/components/effects/FlutedGlass/FlutedGlass.shaders.js +0 -335
- package/dist/components/effects/FlutedGlass/FlutedGlass.types.d.ts +0 -61
- package/dist/components/effects/FlutedGlass/FlutedGlass.types.js +0 -16
- package/dist/components/effects/FlutedGlass/index.d.ts +0 -3
- package/dist/components/effects/GlassEffect/GlassEffect.d.ts +0 -15
- package/dist/components/effects/GlassEffect/GlassEffect.js +0 -38
- package/dist/components/effects/GlassEffect/GlassEffect.types.d.ts +0 -19
- package/dist/components/effects/GlassEffect/index.d.ts +0 -2
- package/dist/components/effects/GlassSurface/GlassSurface.d.ts +0 -8
- package/dist/components/effects/GlassSurface/GlassSurface.js +0 -250
- package/dist/components/effects/GlassSurface/GlassSurface.types.d.ts +0 -66
- package/dist/components/effects/GlassSurface/index.d.ts +0 -2
- package/dist/components/effects/GodRays/GodRays.d.ts +0 -8
- package/dist/components/effects/GodRays/GodRays.js +0 -68
- package/dist/components/effects/GodRays/GodRays.shaders.d.ts +0 -10
- package/dist/components/effects/GodRays/GodRays.shaders.js +0 -128
- package/dist/components/effects/GodRays/GodRays.types.d.ts +0 -25
- package/dist/components/effects/GodRays/GodRays.types.js +0 -3
- package/dist/components/effects/GodRays/index.d.ts +0 -2
- package/dist/components/effects/GridPattern/GridPattern.d.ts +0 -18
- package/dist/components/effects/GridPattern/GridPattern.js +0 -65
- package/dist/components/effects/GridPattern/GridPattern.types.d.ts +0 -47
- package/dist/components/effects/GridPattern/index.d.ts +0 -2
- package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.d.ts +0 -10
- package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.js +0 -78
- package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.d.ts +0 -22
- package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.shaders.js +0 -239
- package/dist/components/effects/HalftoneCmyk/HalftoneCmyk.types.d.ts +0 -52
- package/dist/components/effects/HalftoneCmyk/index.d.ts +0 -2
- package/dist/components/effects/HalftoneDots/HalftoneDots.d.ts +0 -9
- package/dist/components/effects/HalftoneDots/HalftoneDots.js +0 -68
- package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.d.ts +0 -13
- package/dist/components/effects/HalftoneDots/HalftoneDots.shaders.js +0 -296
- package/dist/components/effects/HalftoneDots/HalftoneDots.types.d.ts +0 -43
- package/dist/components/effects/HalftoneDots/HalftoneDots.types.js +0 -12
- package/dist/components/effects/HalftoneDots/index.d.ts +0 -3
- package/dist/components/effects/ImageDithering/ImageDithering.d.ts +0 -9
- package/dist/components/effects/ImageDithering/ImageDithering.js +0 -68
- package/dist/components/effects/ImageDithering/ImageDithering.shaders.d.ts +0 -12
- package/dist/components/effects/ImageDithering/ImageDithering.shaders.js +0 -117
- package/dist/components/effects/ImageDithering/ImageDithering.types.d.ts +0 -30
- package/dist/components/effects/ImageDithering/ImageDithering.types.js +0 -8
- package/dist/components/effects/ImageDithering/index.d.ts +0 -3
- package/dist/components/effects/MagneticElement/MagneticElement.d.ts +0 -30
- package/dist/components/effects/MagneticElement/MagneticElement.js +0 -111
- package/dist/components/effects/MagneticElement/MagneticElement.types.d.ts +0 -44
- package/dist/components/effects/MagneticElement/index.d.ts +0 -2
- package/dist/components/effects/Metaballs/Metaballs.d.ts +0 -8
- package/dist/components/effects/Metaballs/Metaballs.js +0 -59
- package/dist/components/effects/Metaballs/Metaballs.shaders.d.ts +0 -10
- package/dist/components/effects/Metaballs/Metaballs.shaders.js +0 -102
- package/dist/components/effects/Metaballs/Metaballs.types.d.ts +0 -16
- package/dist/components/effects/Metaballs/Metaballs.types.js +0 -3
- package/dist/components/effects/Metaballs/index.d.ts +0 -2
- package/dist/components/effects/PaperTexture/PaperTexture.d.ts +0 -9
- package/dist/components/effects/PaperTexture/PaperTexture.js +0 -61
- package/dist/components/effects/PaperTexture/PaperTexture.shaders.d.ts +0 -22
- package/dist/components/effects/PaperTexture/PaperTexture.shaders.js +0 -145
- package/dist/components/effects/PaperTexture/PaperTexture.types.d.ts +0 -19
- package/dist/components/effects/PaperTexture/index.d.ts +0 -2
- package/dist/components/effects/PulsingBorder/PulsingBorder.d.ts +0 -27
- package/dist/components/effects/PulsingBorder/PulsingBorder.js +0 -174
- package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.d.ts +0 -14
- package/dist/components/effects/PulsingBorder/PulsingBorder.shaders.js +0 -258
- package/dist/components/effects/PulsingBorder/PulsingBorder.types.d.ts +0 -75
- package/dist/components/effects/PulsingBorder/PulsingBorder.types.js +0 -3
- package/dist/components/effects/PulsingBorder/index.d.ts +0 -2
- package/dist/components/effects/SmokeRing/SmokeRing.d.ts +0 -8
- package/dist/components/effects/SmokeRing/SmokeRing.js +0 -62
- package/dist/components/effects/SmokeRing/SmokeRing.shaders.d.ts +0 -14
- package/dist/components/effects/SmokeRing/SmokeRing.shaders.js +0 -130
- package/dist/components/effects/SmokeRing/SmokeRing.types.d.ts +0 -22
- package/dist/components/effects/SmokeRing/SmokeRing.types.js +0 -3
- package/dist/components/effects/SmokeRing/index.d.ts +0 -2
- package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.d.ts +0 -9
- package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.js +0 -59
- package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.d.ts +0 -14
- package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.shaders.js +0 -129
- package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.d.ts +0 -23
- package/dist/components/effects/StaticGradientMesh/StaticGradientMesh.types.js +0 -3
- package/dist/components/effects/StaticGradientMesh/index.d.ts +0 -2
- package/dist/components/effects/Water/Water.d.ts +0 -9
- package/dist/components/effects/Water/Water.js +0 -65
- package/dist/components/effects/Water/Water.shaders.d.ts +0 -11
- package/dist/components/effects/Water/Water.shaders.js +0 -123
- package/dist/components/effects/Water/Water.types.d.ts +0 -25
- package/dist/components/effects/Water/index.d.ts +0 -2
- package/dist/components/effects/shared/bayerMatrices.glsl.d.ts +0 -10
- package/dist/components/effects/shared/bayerMatrices.glsl.js +0 -44
- package/dist/components/effects/shared/imageUV.glsl.d.ts +0 -12
- package/dist/components/effects/shared/imageUV.glsl.js +0 -26
- package/dist/components/forms/RichTextEditor/RichTextEditor.animations.d.ts +0 -7
- package/dist/components/forms/RichTextEditor/RichTextEditor.animations.js +0 -32
- package/dist/utils/calendarUtils.d.ts +0 -60
- /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.d.ts +0 -0
- /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.theme.d.ts +0 -0
- /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.theme.js +0 -0
- /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltip.types.d.ts +0 -0
- /package/dist/components/{charts → core}/shared/ChartTooltip/ChartTooltipContent.d.ts +0 -0
- /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
|
-
"
|
|
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": "
|
|
504
|
-
"description": "The visual style variant of the badge
|
|
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
|
-
"
|
|
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
|
|
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
|
-
"
|
|
1274
|
-
"role": "
|
|
1275
|
-
"description": "
|
|
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": "
|
|
1262
|
+
"description": "Heading for the form. Also becomes its accessible name."
|
|
1376
1263
|
},
|
|
1377
|
-
"
|
|
1264
|
+
"description": {
|
|
1378
1265
|
"kind": "text",
|
|
1379
|
-
"description": "
|
|
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
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
|
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",
|
|
@@ -1938,6 +1881,21 @@
|
|
|
1938
1881
|
"required": true,
|
|
1939
1882
|
"description": "Current counter value (controlled)"
|
|
1940
1883
|
},
|
|
1884
|
+
"size": {
|
|
1885
|
+
"kind": "enum",
|
|
1886
|
+
"options": [
|
|
1887
|
+
"sm",
|
|
1888
|
+
"md",
|
|
1889
|
+
"lg"
|
|
1890
|
+
],
|
|
1891
|
+
"default": "md",
|
|
1892
|
+
"description": "Control size, drawn from the shared `--form-*` scale so a counter lines up"
|
|
1893
|
+
},
|
|
1894
|
+
"editable": {
|
|
1895
|
+
"kind": "boolean",
|
|
1896
|
+
"default": true,
|
|
1897
|
+
"description": "Whether clicking the number swaps it for a text field so the value can be"
|
|
1898
|
+
},
|
|
1941
1899
|
"state": {
|
|
1942
1900
|
"kind": "enum",
|
|
1943
1901
|
"options": [
|
|
@@ -1978,6 +1936,14 @@
|
|
|
1978
1936
|
"decimalPlaces": {
|
|
1979
1937
|
"kind": "number",
|
|
1980
1938
|
"description": "Number of decimal places to display (auto-detected from step if not specified)"
|
|
1939
|
+
},
|
|
1940
|
+
"required": {
|
|
1941
|
+
"kind": "boolean",
|
|
1942
|
+
"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."
|
|
1943
|
+
},
|
|
1944
|
+
"name": {
|
|
1945
|
+
"kind": "string",
|
|
1946
|
+
"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
1947
|
}
|
|
1982
1948
|
}
|
|
1983
1949
|
},
|
|
@@ -2055,6 +2021,10 @@
|
|
|
2055
2021
|
"maxDate": {
|
|
2056
2022
|
"kind": "string",
|
|
2057
2023
|
"description": "Maximum selectable date, ISO format"
|
|
2024
|
+
},
|
|
2025
|
+
"name": {
|
|
2026
|
+
"kind": "string",
|
|
2027
|
+
"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
2028
|
}
|
|
2059
2029
|
}
|
|
2060
2030
|
},
|
|
@@ -2121,6 +2091,14 @@
|
|
|
2121
2091
|
"kind": "boolean",
|
|
2122
2092
|
"default": true,
|
|
2123
2093
|
"description": "Auto-focus the first input on mount"
|
|
2094
|
+
},
|
|
2095
|
+
"required": {
|
|
2096
|
+
"kind": "boolean",
|
|
2097
|
+
"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."
|
|
2098
|
+
},
|
|
2099
|
+
"name": {
|
|
2100
|
+
"kind": "string",
|
|
2101
|
+
"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
2102
|
}
|
|
2125
2103
|
}
|
|
2126
2104
|
},
|
|
@@ -2190,6 +2168,14 @@
|
|
|
2190
2168
|
"emptyMessage": {
|
|
2191
2169
|
"kind": "string",
|
|
2192
2170
|
"description": "Message shown when no suggestions match (default: \"No suggestions\")"
|
|
2171
|
+
},
|
|
2172
|
+
"required": {
|
|
2173
|
+
"kind": "boolean",
|
|
2174
|
+
"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."
|
|
2175
|
+
},
|
|
2176
|
+
"name": {
|
|
2177
|
+
"kind": "string",
|
|
2178
|
+
"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
2179
|
}
|
|
2194
2180
|
}
|
|
2195
2181
|
},
|
|
@@ -2341,15 +2327,21 @@
|
|
|
2341
2327
|
"enableKeyboardNavigation": {
|
|
2342
2328
|
"kind": "boolean"
|
|
2343
2329
|
},
|
|
2344
|
-
"showGrid": {
|
|
2345
|
-
"kind": "boolean"
|
|
2346
|
-
},
|
|
2347
2330
|
"showXAxis": {
|
|
2348
2331
|
"kind": "boolean"
|
|
2349
2332
|
},
|
|
2350
2333
|
"showYAxis": {
|
|
2351
2334
|
"kind": "boolean"
|
|
2352
2335
|
},
|
|
2336
|
+
"minValue": {
|
|
2337
|
+
"kind": "number"
|
|
2338
|
+
},
|
|
2339
|
+
"maxValue": {
|
|
2340
|
+
"kind": "number"
|
|
2341
|
+
},
|
|
2342
|
+
"showGrid": {
|
|
2343
|
+
"kind": "boolean"
|
|
2344
|
+
},
|
|
2353
2345
|
"legend": {
|
|
2354
2346
|
"kind": "enum",
|
|
2355
2347
|
"options": [
|
|
@@ -2359,12 +2351,6 @@
|
|
|
2359
2351
|
],
|
|
2360
2352
|
"description": "Always-visible legend position, rendered from `config`'s labels/colors."
|
|
2361
2353
|
},
|
|
2362
|
-
"minValue": {
|
|
2363
|
-
"kind": "number"
|
|
2364
|
-
},
|
|
2365
|
-
"maxValue": {
|
|
2366
|
-
"kind": "number"
|
|
2367
|
-
},
|
|
2368
2354
|
"title": {
|
|
2369
2355
|
"kind": "text",
|
|
2370
2356
|
"description": "Card header title (the auto shell)"
|
|
@@ -2696,7 +2682,12 @@
|
|
|
2696
2682
|
},
|
|
2697
2683
|
"selected": {
|
|
2698
2684
|
"kind": "boolean",
|
|
2699
|
-
"description": "Whether the pill is selected
|
|
2685
|
+
"description": "Whether the pill is selected — CONTROLLED. Passing it makes the prop"
|
|
2686
|
+
},
|
|
2687
|
+
"defaultSelected": {
|
|
2688
|
+
"kind": "boolean",
|
|
2689
|
+
"default": false,
|
|
2690
|
+
"description": "Initial selection for an UNCONTROLLED pill, which then owns its own state."
|
|
2700
2691
|
},
|
|
2701
2692
|
"readOnly": {
|
|
2702
2693
|
"kind": "boolean",
|
|
@@ -2711,7 +2702,21 @@
|
|
|
2711
2702
|
"props": {
|
|
2712
2703
|
"value": {
|
|
2713
2704
|
"kind": "number",
|
|
2714
|
-
"description": "Progress value from 0 to
|
|
2705
|
+
"description": "Progress value, from 0 to `max`."
|
|
2706
|
+
},
|
|
2707
|
+
"max": {
|
|
2708
|
+
"kind": "number",
|
|
2709
|
+
"default": 100,
|
|
2710
|
+
"description": "Upper bound of the range `value` is measured against."
|
|
2711
|
+
},
|
|
2712
|
+
"segments": {
|
|
2713
|
+
"kind": "number",
|
|
2714
|
+
"description": "Number of cells to render the bar as an LED-style segmented meter."
|
|
2715
|
+
},
|
|
2716
|
+
"segmentFade": {
|
|
2717
|
+
"kind": "boolean",
|
|
2718
|
+
"default": false,
|
|
2719
|
+
"description": "Fade the meter out across its last few lit cells (segmented form only)."
|
|
2715
2720
|
},
|
|
2716
2721
|
"size": {
|
|
2717
2722
|
"kind": "enum",
|
|
@@ -2875,88 +2880,14 @@
|
|
|
2875
2880
|
"kind": "boolean",
|
|
2876
2881
|
"default": false,
|
|
2877
2882
|
"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
2883
|
},
|
|
2899
|
-
"
|
|
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": {
|
|
2884
|
+
"required": {
|
|
2909
2885
|
"kind": "boolean",
|
|
2910
|
-
"description": "
|
|
2886
|
+
"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."
|
|
2911
2887
|
},
|
|
2912
|
-
"
|
|
2913
|
-
"kind": "
|
|
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
|
-
]
|
|
2942
|
-
},
|
|
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)"
|
|
2888
|
+
"name": {
|
|
2889
|
+
"kind": "string",
|
|
2890
|
+
"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
2891
|
}
|
|
2961
2892
|
}
|
|
2962
2893
|
},
|
|
@@ -3063,7 +2994,7 @@
|
|
|
3063
2994
|
"props": {
|
|
3064
2995
|
"name": {
|
|
3065
2996
|
"kind": "string",
|
|
3066
|
-
"description": "
|
|
2997
|
+
"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
2998
|
},
|
|
3068
2999
|
"size": {
|
|
3069
3000
|
"kind": "enum",
|
|
@@ -3130,6 +3061,10 @@
|
|
|
3130
3061
|
"kind": "boolean",
|
|
3131
3062
|
"description": "Whether to enable typeahead functionality (default: true)"
|
|
3132
3063
|
},
|
|
3064
|
+
"aria-label": {
|
|
3065
|
+
"kind": "string",
|
|
3066
|
+
"description": "Accessible name for a Select with no visible `label` — e.g. a control sitting"
|
|
3067
|
+
},
|
|
3133
3068
|
"value": {
|
|
3134
3069
|
"kind": "string",
|
|
3135
3070
|
"description": "Currently selected option's value (controlled)"
|
|
@@ -3266,7 +3201,7 @@
|
|
|
3266
3201
|
},
|
|
3267
3202
|
"name": {
|
|
3268
3203
|
"kind": "string",
|
|
3269
|
-
"description": "
|
|
3204
|
+
"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
3205
|
},
|
|
3271
3206
|
"value": {
|
|
3272
3207
|
"kind": "number",
|
|
@@ -3517,7 +3452,7 @@
|
|
|
3517
3452
|
},
|
|
3518
3453
|
"name": {
|
|
3519
3454
|
"kind": "string",
|
|
3520
|
-
"description": "
|
|
3455
|
+
"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
3456
|
},
|
|
3522
3457
|
"value": {
|
|
3523
3458
|
"kind": "string",
|
|
@@ -3547,8 +3482,8 @@
|
|
|
3547
3482
|
"kind": "enum",
|
|
3548
3483
|
"options": [
|
|
3549
3484
|
"default",
|
|
3550
|
-
"bordered",
|
|
3551
3485
|
"striped",
|
|
3486
|
+
"bordered",
|
|
3552
3487
|
"compact"
|
|
3553
3488
|
],
|
|
3554
3489
|
"description": "Visual variant for different table styles"
|
|
@@ -3720,7 +3655,7 @@
|
|
|
3720
3655
|
},
|
|
3721
3656
|
"name": {
|
|
3722
3657
|
"kind": "string",
|
|
3723
|
-
"description": "Form
|
|
3658
|
+
"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
3659
|
}
|
|
3725
3660
|
}
|
|
3726
3661
|
},
|
|
@@ -3821,6 +3756,14 @@
|
|
|
3821
3756
|
"iconEnd": {
|
|
3822
3757
|
"kind": "icon",
|
|
3823
3758
|
"description": "Icon to display at the end (right side)"
|
|
3759
|
+
},
|
|
3760
|
+
"required": {
|
|
3761
|
+
"kind": "boolean",
|
|
3762
|
+
"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."
|
|
3763
|
+
},
|
|
3764
|
+
"name": {
|
|
3765
|
+
"kind": "string",
|
|
3766
|
+
"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
3767
|
}
|
|
3825
3768
|
}
|
|
3826
3769
|
},
|
|
@@ -4284,56 +4227,6 @@
|
|
|
4284
4227
|
}
|
|
4285
4228
|
}
|
|
4286
4229
|
},
|
|
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
4230
|
"activityRings": {
|
|
4338
4231
|
"description": "Array of rings, ordered outer to inner: { value } (number 0-100, required) plus optional label (string) and color (CSS/hex string).",
|
|
4339
4232
|
"type": "array",
|
|
@@ -4398,6 +4291,18 @@
|
|
|
4398
4291
|
}
|
|
4399
4292
|
}
|
|
4400
4293
|
}
|
|
4294
|
+
},
|
|
4295
|
+
"heatmapLegendLabels": {
|
|
4296
|
+
"description": "Captions at each end of the colour ramp, both optional: { min, max }.",
|
|
4297
|
+
"type": "object",
|
|
4298
|
+
"properties": {
|
|
4299
|
+
"min": {
|
|
4300
|
+
"type": "string"
|
|
4301
|
+
},
|
|
4302
|
+
"max": {
|
|
4303
|
+
"type": "string"
|
|
4304
|
+
}
|
|
4305
|
+
}
|
|
4401
4306
|
}
|
|
4402
4307
|
},
|
|
4403
4308
|
"examples": [
|