flikkui 0.1.0-beta.11 → 0.1.0-beta.12
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/README.md +174 -86
- package/dist/components/ai/ApprovalCard/ApprovalCard.d.ts +3 -0
- package/dist/components/ai/ApprovalCard/ApprovalCard.js +43 -0
- package/dist/components/ai/ApprovalCard/ApprovalCard.theme.d.ts +15 -0
- package/dist/components/ai/ApprovalCard/ApprovalCard.theme.js +17 -0
- package/dist/components/ai/ApprovalCard/ApprovalCard.types.d.ts +43 -0
- package/dist/components/ai/ApprovalCard/index.d.ts +2 -0
- package/dist/components/ai/ArtifactContainer/ArtifactContainer.d.ts +6 -0
- package/dist/components/ai/ArtifactContainer/ArtifactContainer.js +136 -0
- package/dist/components/ai/ArtifactContainer/ArtifactContainer.theme.d.ts +6 -0
- package/dist/components/ai/ArtifactContainer/ArtifactContainer.theme.js +14 -0
- package/dist/components/ai/ArtifactContainer/ArtifactContainer.types.d.ts +57 -0
- package/dist/components/ai/ArtifactContainer/index.d.ts +3 -0
- package/dist/components/ai/ChatInterface/ChatInterface.d.ts +26 -0
- package/dist/components/ai/ChatInterface/ChatInterface.js +79 -0
- package/dist/components/ai/ChatInterface/ChatInterface.theme.d.ts +2 -0
- package/dist/components/ai/ChatInterface/ChatInterface.theme.js +8 -0
- package/dist/components/ai/ChatInterface/ChatInterface.types.d.ts +68 -0
- package/dist/components/ai/ChatInterface/ChatInterface.types.js +19 -0
- package/dist/components/ai/ChatInterface/index.d.ts +4 -0
- package/dist/components/ai/CodeBlock/CodeBlock.d.ts +34 -0
- package/dist/components/ai/CodeBlock/CodeBlock.js +207 -0
- package/dist/components/ai/CodeBlock/CodeBlock.theme.d.ts +2 -0
- package/dist/components/ai/CodeBlock/CodeBlock.theme.js +17 -0
- package/dist/components/ai/CodeBlock/CodeBlock.types.d.ts +108 -0
- package/dist/components/ai/CodeBlock/LanguageIcon.d.ts +10 -0
- package/dist/components/ai/CodeBlock/LanguageIcon.js +103 -0
- package/dist/components/ai/CodeBlock/index.d.ts +3 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.animations.d.ts +31 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.animations.js +115 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.d.ts +35 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.js +93 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.theme.d.ts +2 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.theme.js +13 -0
- package/dist/components/ai/EditingIndicator/EditingIndicator.types.d.ts +54 -0
- package/dist/components/ai/EditingIndicator/index.d.ts +9 -0
- package/dist/components/ai/GenerativeRenderer/GenerativeRenderer.d.ts +3 -0
- package/dist/components/ai/GenerativeRenderer/GenerativeRenderer.js +104 -0
- package/dist/components/ai/GenerativeRenderer/GenerativeRenderer.theme.d.ts +2 -0
- package/dist/components/ai/GenerativeRenderer/GenerativeRenderer.theme.js +8 -0
- package/dist/components/ai/GenerativeRenderer/GenerativeRenderer.types.d.ts +45 -0
- package/dist/components/ai/GenerativeRenderer/index.d.ts +3 -0
- package/dist/components/ai/MessageHistory/MessageHistory.d.ts +18 -0
- package/dist/components/ai/MessageHistory/MessageHistory.js +107 -0
- package/dist/components/ai/MessageHistory/MessageHistory.theme.d.ts +2 -0
- package/dist/components/ai/MessageHistory/MessageHistory.theme.js +8 -0
- package/dist/components/ai/MessageHistory/MessageHistory.types.d.ts +94 -0
- package/dist/components/ai/MessageHistory/index.d.ts +3 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.animations.d.ts +17 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.animations.js +56 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.d.ts +38 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.js +109 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.theme.d.ts +2 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.theme.js +13 -0
- package/dist/components/ai/PresenceIndicator/PresenceIndicator.types.d.ts +53 -0
- package/dist/components/ai/PresenceIndicator/index.d.ts +8 -0
- package/dist/components/ai/PresenceProvider/PresenceContext.d.ts +24 -0
- package/dist/components/ai/PresenceProvider/PresenceContext.js +34 -0
- package/dist/components/ai/PresenceProvider/PresenceProvider.d.ts +32 -0
- package/dist/components/ai/PresenceProvider/PresenceProvider.js +345 -0
- package/dist/components/ai/PresenceProvider/PresenceProvider.types.d.ts +140 -0
- package/dist/components/ai/PresenceProvider/adapters/MockAdapter.d.ts +102 -0
- package/dist/components/ai/PresenceProvider/adapters/MockAdapter.js +353 -0
- package/dist/components/ai/PresenceProvider/adapters/PresenceAdapter.d.ts +93 -0
- package/dist/components/ai/PresenceProvider/adapters/SupabaseAdapter.d.ts +134 -0
- package/dist/components/ai/PresenceProvider/adapters/WebSocketAdapter.d.ts +149 -0
- package/dist/components/ai/PresenceProvider/adapters/index.d.ts +11 -0
- package/dist/components/ai/PresenceProvider/index.d.ts +10 -0
- package/dist/components/ai/PromptInput/PromptInput.js +613 -0
- package/dist/components/ai/PromptInput/PromptInput.theme.d.ts +1 -7
- package/dist/components/ai/PromptInput/PromptInput.theme.js +15 -0
- package/dist/components/ai/PromptInput/PromptInput.types.d.ts +72 -5
- package/dist/components/ai/PromptInput/index.d.ts +3 -3
- package/dist/components/ai/PromptSuggestions/PromptSuggestions.d.ts +27 -0
- package/dist/components/ai/PromptSuggestions/PromptSuggestions.js +66 -0
- package/dist/components/ai/PromptSuggestions/PromptSuggestions.types.d.ts +65 -0
- package/dist/components/ai/PromptSuggestions/index.d.ts +2 -0
- package/dist/components/ai/StreamingResponse/ErrorDisplay.d.ts +23 -0
- package/dist/components/ai/StreamingResponse/ErrorDisplay.js +50 -0
- package/dist/components/ai/StreamingResponse/MarkdownRenderer.d.ts +17 -0
- package/dist/components/ai/StreamingResponse/MarkdownRenderer.js +138 -0
- package/dist/components/ai/StreamingResponse/StreamingResponse.d.ts +22 -0
- package/dist/components/ai/StreamingResponse/StreamingResponse.js +84 -0
- package/dist/components/ai/StreamingResponse/StreamingResponse.theme.d.ts +2 -0
- package/dist/components/ai/StreamingResponse/StreamingResponse.theme.js +10 -0
- package/dist/components/ai/StreamingResponse/StreamingResponse.types.d.ts +101 -0
- package/dist/components/ai/StreamingResponse/index.d.ts +9 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.animations.d.ts +10 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.animations.js +47 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.d.ts +20 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.js +58 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.theme.d.ts +2 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.theme.js +20 -0
- package/dist/components/ai/ThinkingIndicator/ThinkingIndicator.types.d.ts +67 -0
- package/dist/components/ai/ThinkingIndicator/index.d.ts +3 -0
- package/dist/components/ai/TokenCounter/TokenCounter.d.ts +21 -0
- package/dist/components/ai/TokenCounter/TokenCounter.js +74 -0
- package/dist/components/ai/TokenCounter/TokenCounter.theme.d.ts +2 -0
- package/dist/components/ai/TokenCounter/TokenCounter.theme.js +28 -0
- package/dist/components/ai/TokenCounter/TokenCounter.types.d.ts +104 -0
- package/dist/components/ai/TokenCounter/index.d.ts +4 -0
- package/dist/components/ai/TokenCounter/tokenUtils.d.ts +23 -0
- package/dist/components/ai/TokenCounter/tokenUtils.js +108 -0
- package/dist/components/ai/VersionSlider/VersionSlider.d.ts +3 -0
- package/dist/components/ai/VersionSlider/VersionSlider.js +99 -0
- package/dist/components/ai/VersionSlider/VersionSlider.theme.d.ts +2 -0
- package/dist/components/ai/VersionSlider/VersionSlider.theme.js +18 -0
- package/dist/components/ai/VersionSlider/VersionSlider.types.d.ts +77 -0
- package/dist/components/ai/VersionSlider/index.d.ts +3 -0
- package/dist/components/ai/index.d.ts +33 -0
- package/dist/components/charts/ActivityRings/ActivityRings.js +164 -0
- package/dist/components/charts/ActivityRings/ActivityRings.theme.js +27 -0
- package/dist/components/charts/ActivityRings/ActivityRings.types.js +8 -0
- package/dist/components/charts/AreaChart/AreaChart.js +490 -0
- package/dist/components/charts/AreaChart/AreaChart.theme.js +45 -0
- package/dist/components/charts/AreaChart/AreaChart.types.js +7 -0
- package/dist/components/charts/BarChart/BarChart.js +470 -0
- package/dist/components/charts/BarChart/BarChart.types.d.ts +4 -4
- package/dist/components/charts/BarChart/BarChart.types.js +7 -0
- package/dist/components/charts/ChartContainer.js +38 -0
- package/dist/components/charts/ComboChart/ComboChart.js +164 -0
- package/dist/components/charts/ComboChart/ComboChart.types.js +7 -0
- package/dist/components/charts/DonutChart/DonutChart.js +169 -0
- package/dist/components/charts/DonutChart/DonutChart.theme.js +24 -0
- package/dist/components/charts/DonutChart/MultiSegmentDonutChart.js +252 -0
- package/dist/components/charts/DonutChart/MultiSegmentDonutChart.theme.js +36 -0
- package/dist/components/charts/DonutChart/donut-utils.js +117 -0
- package/dist/components/charts/FunnelChart/FunnelChart.animations.js +106 -0
- package/dist/components/charts/FunnelChart/FunnelChart.d.ts +2 -2
- package/dist/components/charts/FunnelChart/FunnelChart.js +486 -0
- package/dist/components/charts/FunnelChart/FunnelChart.theme.js +12 -0
- package/dist/components/charts/Heatmap/Heatmap.js +166 -0
- package/dist/components/charts/Heatmap/Heatmap.theme.js +18 -0
- package/dist/components/charts/Heatmap/HeatmapCell.js +91 -0
- package/dist/components/charts/Heatmap/HeatmapLegend.js +23 -0
- package/dist/components/charts/Heatmap/utils/heatmapUtils.js +174 -0
- package/dist/components/charts/LineChart/LineChart.js +443 -0
- package/dist/components/charts/LineChart/LineChart.types.js +7 -0
- package/dist/components/charts/ScatterPlot/ScatterPlot.js +222 -0
- package/dist/components/charts/ScatterPlot/ScatterPlot.theme.js +38 -0
- package/dist/components/charts/ScatterPlot/ScatterPlot.types.js +9 -0
- package/dist/components/charts/StackedBarChart/StackedBarChart.d.ts +3 -0
- package/dist/components/charts/StackedBarChart/StackedBarChart.js +314 -0
- package/dist/components/charts/StackedBarChart/StackedBarChart.types.d.ts +34 -0
- package/dist/components/charts/StackedBarChart/StackedBarChart.types.js +7 -0
- package/dist/components/charts/StackedBarChart/index.d.ts +3 -0
- package/dist/components/charts/hooks/useChartAccessibility.js +127 -0
- package/dist/components/charts/hooks/useChartScales.js +180 -0
- package/dist/components/charts/hooks/useChartTheme.js +86 -0
- package/dist/components/charts/hooks/useChartValidation.js +59 -0
- package/dist/components/charts/hooks/useTooltipPosition.js +304 -0
- package/dist/components/charts/index.d.ts +52 -49
- package/dist/components/charts/index.js +40 -0
- package/dist/components/charts/shared/BarRenderer/BarRenderer.js +295 -0
- package/dist/components/charts/shared/ChartAxis/XAxis.js +40 -0
- package/dist/components/charts/shared/ChartAxis/YAxis.js +97 -0
- package/dist/components/charts/shared/ChartContainer/ChartContainer.js +172 -0
- package/dist/components/charts/shared/ChartCrosshair/ChartCrosshair.js +34 -0
- package/dist/components/charts/shared/ChartCrosshair/ChartCrosshair.theme.js +11 -0
- package/dist/components/charts/shared/ChartErrorBoundary/ChartErrorBoundary.js +66 -0
- package/dist/components/charts/shared/ChartGrid/HorizontalGrid.js +22 -0
- package/dist/components/charts/shared/ChartLegend/ChartLegend.js +30 -0
- package/dist/components/charts/shared/ChartLegend/ChartLegendContent.js +22 -0
- package/dist/components/charts/shared/ChartMarker/ChartMarker.js +23 -0
- package/dist/components/charts/shared/ChartMarker/ChartMarker.theme.js +9 -0
- package/dist/components/charts/shared/ChartText/ChartText.js +33 -0
- package/dist/components/charts/shared/ChartText/ChartText.theme.js +9 -0
- package/dist/components/charts/shared/ChartTooltip/ChartTooltip.js +71 -0
- package/dist/components/charts/shared/ChartTooltip/ChartTooltip.theme.js +18 -0
- package/dist/components/charts/shared/LineRenderer/LineRenderer.js +314 -0
- package/dist/components/charts/theme/chart.theme.js +73 -0
- package/dist/components/charts/types/chart.types.js +31 -0
- package/dist/components/charts/utils/animation-utils.js +115 -0
- package/dist/components/charts/utils/chart-validation.js +301 -0
- package/dist/components/charts/utils/color-utils.js +144 -0
- package/dist/components/core/Accordion/Accordion.js +1 -1
- package/dist/components/core/Accordion/Accordion.theme.js +1 -1
- package/dist/components/core/Accordion/AccordionContent.js +2 -3
- package/dist/components/core/Accordion/AccordionItem.js +1 -1
- package/dist/components/core/Accordion/AccordionTrigger.js +4 -4
- package/dist/components/core/Alert/Alert.js +14 -18
- package/dist/components/core/Alert/Alert.theme.js +1 -9
- package/dist/components/core/Alert/Alert.types.d.ts +2 -10
- package/dist/components/core/AlertDialog/AlertDialog.js +29 -0
- package/dist/components/core/Avatar/Avatar.js +15 -15
- package/dist/components/core/Avatar/Avatar.theme.d.ts +1 -1
- package/dist/components/core/Avatar/Avatar.theme.js +11 -11
- package/dist/components/core/AvatarGroup/AvatarGroup.animations.d.ts +5 -4
- package/dist/components/core/AvatarGroup/AvatarGroup.animations.js +60 -32
- package/dist/components/core/AvatarGroup/AvatarGroup.js +24 -16
- package/dist/components/core/AvatarGroup/AvatarGroup.theme.d.ts +1 -1
- package/dist/components/core/AvatarGroup/AvatarGroup.theme.js +8 -8
- package/dist/components/core/Badge/Badge.js +23 -19
- package/dist/components/core/Badge/Badge.theme.d.ts +2 -2
- package/dist/components/core/Badge/Badge.theme.js +88 -59
- package/dist/components/core/Badge/Badge.types.d.ts +10 -9
- package/dist/components/core/Breadcrumbs/Breadcrumbs.js +1 -1
- package/dist/components/core/Breadcrumbs/Breadcrumbs.theme.js +2 -2
- package/dist/components/core/Button/Button.js +57 -35
- package/dist/components/core/Button/Button.ripple.js +1 -1
- package/dist/components/core/Button/Button.theme.d.ts +8 -2
- package/dist/components/core/Button/Button.theme.js +109 -12
- package/dist/components/core/Button/Button.types.d.ts +2 -0
- package/dist/components/core/ButtonGroup/ButtonGroup.js +1 -1
- package/dist/components/core/ButtonGroup/ButtonGroup.theme.d.ts +1 -0
- package/dist/components/core/ButtonGroup/ButtonGroup.theme.js +2 -0
- package/dist/components/core/ButtonGroup/ButtonGroupSeparator.js +1 -1
- package/dist/components/core/ButtonGroup/ButtonGroupText.js +1 -1
- package/dist/components/core/Calendar/Calendar.animations.js +12 -0
- package/dist/components/core/Calendar/Calendar.js +6 -78
- package/dist/components/core/Calendar/Calendar.theme.d.ts +1 -1
- package/dist/components/core/Calendar/Calendar.theme.js +37 -4
- package/dist/components/core/Calendar/CalendarMini/CalendarMini.animations.js +27 -0
- package/dist/components/core/Calendar/CalendarMini/CalendarMini.js +269 -0
- package/dist/components/core/Calendar/CalendarMini/CalendarMini.theme.js +9 -0
- package/dist/components/core/Calendar/calendar.utils.js +10 -1
- package/dist/components/core/Card/Card.js +1 -1
- package/dist/components/core/Card/Card.theme.d.ts +1 -1
- package/dist/components/core/Card/Card.theme.js +6 -6
- package/dist/components/core/Card/Card.types.d.ts +2 -2
- package/dist/components/core/Card/CardContent.js +1 -1
- package/dist/components/core/Card/CardDescription.js +1 -1
- package/dist/components/core/Card/CardFooter.js +1 -1
- package/dist/components/core/Card/CardHeader.js +1 -1
- package/dist/components/core/Card/CardTitle.js +1 -1
- package/dist/components/core/CardStack/CardStack.animations.d.ts +47 -0
- package/dist/components/core/CardStack/CardStack.d.ts +3 -0
- package/dist/components/core/CardStack/CardStack.js +189 -0
- package/dist/components/core/CardStack/CardStack.theme.d.ts +6 -0
- package/dist/components/core/CardStack/CardStack.theme.js +33 -0
- package/dist/components/core/CardStack/CardStack.types.d.ts +139 -0
- package/dist/components/core/CardStack/index.d.ts +7 -0
- package/dist/components/core/Carousel/Carousel.js +1 -1
- package/dist/components/core/Carousel/CarouselContent.js +2 -2
- package/dist/components/core/Carousel/CarouselItem.js +1 -1
- package/dist/components/core/Carousel/CarouselNext.js +3 -4
- package/dist/components/core/Carousel/CarouselPrevious.js +3 -4
- package/dist/components/core/CommandPalette/CommandItem.js +145 -0
- package/dist/components/core/CommandPalette/CommandPalette.animations.d.ts +1 -1
- package/dist/components/core/CommandPalette/CommandPalette.animations.js +51 -0
- package/dist/components/core/CommandPalette/CommandPalette.d.ts +2 -2
- package/dist/components/core/CommandPalette/CommandPalette.js +236 -0
- package/dist/components/core/CommandPalette/CommandPalette.theme.d.ts +1 -1
- package/dist/components/core/CommandPalette/CommandPalette.theme.js +30 -0
- package/dist/components/core/ContextMenu/ContextMenu.types.d.ts +4 -1
- package/dist/components/core/ContextMenu/ContextMenuItem.d.ts +1 -0
- package/dist/components/core/Divider/Divider.js +1 -1
- package/dist/components/core/DragDrop/DragDrop.js +30 -3
- package/dist/components/core/Drawer/Drawer.js +8 -4
- package/dist/components/core/Drawer/Drawer.theme.js +12 -4
- package/dist/components/core/Drawer/DrawerContent.js +1 -1
- package/dist/components/core/Drawer/DrawerFooter.js +1 -1
- package/dist/components/core/Drawer/DrawerHeader.js +3 -3
- package/dist/components/core/Dropdown/Dropdown.js +2 -2
- package/dist/components/core/Dropdown/Dropdown.theme.d.ts +1 -0
- package/dist/components/core/Dropdown/Dropdown.theme.js +21 -4
- package/dist/components/core/Dropdown/DropdownItem.js +6 -3
- package/dist/components/core/Dropdown/DropdownMenu.js +53 -12
- package/dist/components/core/Dropdown/DropdownSection.js +1 -1
- package/dist/components/core/Dropdown/DropdownSeparator.js +1 -1
- package/dist/components/core/Empty/Empty.js +1 -1
- package/dist/components/core/Kbd/Kbd.js +1 -1
- package/dist/components/core/Link/Link.js +6 -7
- package/dist/components/core/Loader/Loader.js +64 -0
- package/dist/components/core/Loader/Loader.theme.js +60 -0
- package/dist/components/core/Masonry/Masonry.js +2 -3
- package/dist/components/core/Masonry/Masonry.theme.js +1 -1
- package/dist/components/{ai → core}/Message/Message.d.ts +1 -1
- package/dist/components/core/Message/Message.js +136 -0
- package/dist/components/core/Message/Message.theme.d.ts +6 -0
- package/dist/components/core/Message/Message.theme.js +46 -0
- package/dist/components/core/Message/Message.types.d.ts +169 -0
- package/dist/components/core/Message/MessageActions.js +21 -0
- package/dist/components/{ai → core}/Message/MessageAvatar.d.ts +2 -2
- package/dist/components/core/Message/MessageAvatar.js +18 -0
- package/dist/components/core/Message/MessageContent.js +26 -0
- package/dist/components/{ai → core}/Message/MessageContext.d.ts +3 -2
- package/dist/components/core/Message/MessageContext.js +12 -0
- package/dist/components/core/Message/MessageTimestamp.js +23 -0
- package/dist/components/core/Message/TypeWriter.js +28 -0
- package/dist/components/core/Message/index.d.ts +5 -0
- package/dist/components/core/Metric/Metric.js +6 -4
- package/dist/components/core/Metric/index.d.ts +1 -1
- package/dist/components/core/Modal/Modal.js +8 -4
- package/dist/components/core/Modal/Modal.theme.js +1 -1
- package/dist/components/core/Modal/ModalBody.js +1 -1
- package/dist/components/core/Modal/ModalDescription.js +1 -1
- package/dist/components/core/Modal/ModalFooter.js +1 -1
- package/dist/components/core/Modal/ModalHeader.js +6 -5
- package/dist/components/core/Modal/ModalTitle.js +1 -1
- package/dist/components/core/NavItem/NavItem.js +42 -21
- package/dist/components/core/NavItem/NavItem.theme.js +11 -11
- package/dist/components/core/NavItem/NavItem.types.d.ts +59 -4
- package/dist/components/core/Notification/Notification.js +33 -42
- package/dist/components/core/Notification/Notification.theme.js +7 -11
- package/dist/components/core/OfflineIndicator/OfflineIndicator.d.ts +20 -0
- package/dist/components/core/OfflineIndicator/OfflineIndicator.js +113 -0
- package/dist/components/core/OfflineIndicator/OfflineIndicator.theme.d.ts +2 -0
- package/dist/components/core/OfflineIndicator/OfflineIndicator.theme.js +22 -0
- package/dist/components/core/OfflineIndicator/OfflineIndicator.types.d.ts +57 -0
- package/dist/components/core/OfflineIndicator/index.d.ts +3 -0
- package/dist/components/core/Pagination/Pagination.js +6 -9
- package/dist/components/core/Pagination/Pagination.theme.js +20 -2
- package/dist/components/core/Pill/Pill.animations.js +25 -0
- package/dist/components/core/Pill/Pill.js +150 -0
- package/dist/components/core/Pill/Pill.theme.d.ts +1 -1
- package/dist/components/core/Pill/Pill.theme.js +65 -0
- package/dist/components/core/Pill/Pill.types.d.ts +5 -5
- package/dist/components/core/Popover/Popover.js +1 -1
- package/dist/components/core/Popover/PopoverContent.js +2 -4
- package/dist/components/core/Popover/PopoverTrigger.js +1 -1
- package/dist/components/core/ProgressiveBlur/ProgressiveBlur.d.ts +31 -4
- package/dist/components/core/ProgressiveBlur/ProgressiveBlur.js +223 -33
- package/dist/components/core/ProgressiveBlur/ProgressiveBlur.theme.d.ts +0 -6
- package/dist/components/core/ProgressiveBlur/ProgressiveBlur.types.d.ts +8 -2
- package/dist/components/core/ProgressiveBlur/index.d.ts +2 -2
- package/dist/components/core/RetryBoundary/RetryBoundary.d.ts +35 -0
- package/dist/components/core/RetryBoundary/RetryBoundary.js +160 -0
- package/dist/components/core/RetryBoundary/RetryBoundary.theme.d.ts +2 -0
- package/dist/components/core/RetryBoundary/RetryBoundary.theme.js +7 -0
- package/dist/components/core/RetryBoundary/RetryBoundary.types.d.ts +51 -0
- package/dist/components/core/RetryBoundary/index.d.ts +3 -0
- package/dist/components/core/Segmented/Segmented.js +4 -1
- package/dist/components/core/Segmented/Segmented.theme.d.ts +1 -1
- package/dist/components/core/Segmented/Segmented.theme.js +4 -4
- package/dist/components/core/Segmented/SegmentedItem.js +1 -1
- package/dist/components/core/Sidebar/Sidebar.d.ts +2 -2
- package/dist/components/core/Sidebar/Sidebar.js +14 -9
- package/dist/components/core/Sidebar/SidebarContent.d.ts +2 -2
- package/dist/components/core/Sidebar/SidebarContent.js +6 -4
- package/dist/components/core/Sidebar/SidebarFooter.d.ts +2 -2
- package/dist/components/core/Sidebar/SidebarFooter.js +6 -3
- package/dist/components/core/Sidebar/SidebarHeader.d.ts +2 -2
- package/dist/components/core/Sidebar/SidebarHeader.js +6 -7
- package/dist/components/core/Sidebar/SidebarNav.js +1 -1
- package/dist/components/core/Sidebar/SidebarNavGroup.d.ts +2 -2
- package/dist/components/core/Sidebar/SidebarNavGroup.js +7 -7
- package/dist/components/core/Sidebar/SidebarSubmenu.d.ts +7 -0
- package/dist/components/core/Sidebar/SidebarSubmenu.js +13 -0
- package/dist/components/core/Sidebar/SidebarToggle.d.ts +2 -2
- package/dist/components/core/Sidebar/SidebarToggle.js +11 -9
- package/dist/components/core/Sidebar/index.d.ts +10 -9
- package/dist/components/core/Skeleton/Skeleton.js +61 -0
- package/dist/components/core/Skeleton/Skeleton.theme.js +18 -0
- package/dist/components/core/SlidingNumber/SlidingNumber.d.ts +2 -2
- package/dist/components/core/SlidingNumber/SlidingNumber.js +40 -32
- package/dist/components/core/SlidingNumber/SlidingNumber.types.d.ts +3 -3
- package/dist/components/core/Sortable/Sortable.animations.d.ts +48 -0
- package/dist/components/core/Sortable/Sortable.animations.js +1 -1
- package/dist/components/core/Sortable/Sortable.js +6 -10
- package/dist/components/core/Spinner/Spinner.js +4 -1
- package/dist/components/core/Stepper/Stepper.js +1 -1
- package/dist/components/core/Stepper/Stepper.theme.d.ts +26 -4
- package/dist/components/core/Stepper/Stepper.theme.js +42 -9
- package/dist/components/core/Stepper/StepperItem.js +39 -15
- package/dist/components/core/Table/Table.js +6 -3
- package/dist/components/core/Table/Table.theme.js +49 -14
- package/dist/components/core/Table/components/DeclarativeComponents.js +4 -1
- package/dist/components/core/Table/components/TableActions/TableActions.d.ts +3 -3
- package/dist/components/core/Table/components/TableActions/TableActions.js +44 -22
- package/dist/components/core/Table/components/TableActions/TableActionsMenu.js +4 -1
- package/dist/components/core/Table/components/TablePagination/TablePagination.js +4 -1
- package/dist/components/core/Table/components/TableSelectionHeader/TableSelectionHeader.js +6 -3
- package/dist/components/core/Table/components/core/TableBody.js +1 -1
- package/dist/components/core/Table/components/core/TableCell.js +4 -1
- package/dist/components/core/Table/components/core/TableHeader.js +1 -1
- package/dist/components/core/Table/components/core/TableRow.js +2 -3
- package/dist/components/core/Table/index.js +6 -1
- package/dist/components/core/Tabs/Tabs.js +1 -1
- package/dist/components/core/Tabs/TabsContent.js +2 -4
- package/dist/components/core/Tabs/TabsList.js +2 -3
- package/dist/components/core/Tabs/TabsTrigger.js +2 -3
- package/dist/components/core/Toast/Toast.js +11 -16
- package/dist/components/core/Toast/ToastProvider.js +2 -2
- package/dist/components/core/Tooltip/Tooltip.animations.js +18 -2
- package/dist/components/core/Tooltip/Tooltip.js +48 -11
- package/dist/components/core/Tooltip/Tooltip.theme.js +2 -1
- package/dist/components/core/Tree/Tree.animations.js +1 -1
- package/dist/components/core/Tree/Tree.js +5 -8
- package/dist/components/core/index.d.ts +4 -1
- package/dist/components/core/index.js +94 -0
- package/dist/components/effects/CustomCursor/CustomCursor.js +4 -8
- package/dist/components/effects/GlassEffect/GlassEffect.js +4 -1
- package/dist/components/effects/GlassSurface/GlassSurface.d.ts +8 -0
- package/dist/components/effects/GlassSurface/GlassSurface.js +218 -0
- package/dist/components/effects/GlassSurface/GlassSurface.types.d.ts +57 -0
- package/dist/components/effects/GlassSurface/index.d.ts +2 -0
- package/dist/components/effects/Overlay/Overlay.d.ts +2 -2
- package/dist/components/effects/Overlay/Overlay.js +26 -17
- package/dist/components/effects/SpotlightBorder/SpotlightBorder.d.ts +18 -0
- package/dist/components/effects/SpotlightBorder/SpotlightBorder.js +195 -0
- package/dist/components/effects/SpotlightBorder/SpotlightBorder.shaders.d.ts +7 -0
- package/dist/components/effects/SpotlightBorder/SpotlightBorder.shaders.js +9 -0
- package/dist/components/effects/SpotlightBorder/SpotlightBorder.types.d.ts +61 -0
- package/dist/components/effects/SpotlightBorder/SpotlightBorder.types.js +8 -0
- package/dist/components/effects/SpotlightBorder/index.d.ts +2 -0
- package/dist/components/effects/index.d.ts +10 -6
- package/dist/components/effects/index.js +5 -0
- package/dist/components/forms/Checkbox/Checkbox.js +4 -5
- package/dist/components/forms/Checkbox/Checkbox.theme.d.ts +1 -0
- package/dist/components/forms/Checkbox/Checkbox.theme.js +31 -4
- package/dist/components/forms/DatePicker/DatePicker.d.ts +2 -2
- package/dist/components/forms/DatePicker/DatePicker.js +19 -13
- package/dist/components/forms/DatePicker/DatePicker.theme.d.ts +1 -1
- package/dist/components/forms/DatePicker/DatePicker.theme.js +26 -7
- package/dist/components/forms/DatePicker/DatePicker.types.d.ts +11 -13
- package/dist/components/forms/DatePicker/DatePickerContent.d.ts +2 -2
- package/dist/components/forms/DatePicker/DatePickerContent.js +85 -36
- package/dist/components/forms/DatePicker/DatePickerTrigger.d.ts +2 -2
- package/dist/components/forms/DatePicker/DatePickerTrigger.js +8 -7
- package/dist/components/forms/FileUpload/FileUpload.js +299 -0
- package/dist/components/forms/FileUpload/FileUpload.theme.js +36 -0
- package/dist/components/forms/FileUpload/FileUpload.types.d.ts +4 -0
- package/dist/components/forms/FileUpload/index.d.ts +1 -1
- package/dist/components/forms/FormLabel/FormLabel.js +4 -1
- package/dist/components/forms/Input/Input.js +7 -6
- package/dist/components/forms/Input/Input.theme.js +23 -16
- package/dist/components/forms/InputAddress/InputAddress.js +1 -1
- package/dist/components/forms/InputAddress/InputAddress.theme.js +1 -1
- package/dist/components/forms/InputCounter/InputCounter.d.ts +2 -2
- package/dist/components/forms/InputCounter/InputCounter.js +172 -0
- package/dist/components/forms/InputCounter/InputCounter.theme.js +11 -0
- package/dist/components/forms/InputCreditCard/InputCreditCard.js +1 -1
- package/dist/components/forms/InputCreditCard/InputCreditCard.theme.js +1 -1
- package/dist/components/forms/InputDate/InputDate.js +1 -1
- package/dist/components/forms/InputOTP/InputOTP.js +1 -1
- package/dist/components/forms/OptimisticForm/OptimisticForm.d.ts +33 -0
- package/dist/components/forms/OptimisticForm/OptimisticForm.js +88 -0
- package/dist/components/forms/OptimisticForm/OptimisticForm.theme.d.ts +2 -0
- package/dist/components/forms/OptimisticForm/OptimisticForm.theme.js +8 -0
- package/dist/components/forms/OptimisticForm/OptimisticForm.types.d.ts +74 -0
- package/dist/components/forms/OptimisticForm/index.d.ts +3 -0
- package/dist/components/forms/Radio/Radio.js +1 -1
- package/dist/components/forms/RichTextEditor/RichTextEditor.js +16 -22
- package/dist/components/forms/Select/Select.js +103 -36
- package/dist/components/forms/Select/Select.theme.d.ts +1 -1
- package/dist/components/forms/Select/Select.theme.js +18 -8
- package/dist/components/forms/Select/Select.types.d.ts +8 -4
- package/dist/components/forms/Signature/Signature.js +1 -1
- package/dist/components/forms/Slider/Slider.js +29 -11
- package/dist/components/forms/Slider/Slider.theme.js +1 -1
- package/dist/components/forms/StepperForm/StepperForm.d.ts +7 -0
- package/dist/components/forms/StepperForm/StepperForm.js +105 -0
- package/dist/components/forms/StepperForm/StepperForm.theme.d.ts +2 -0
- package/dist/components/forms/StepperForm/StepperForm.theme.js +19 -0
- package/dist/components/forms/StepperForm/StepperForm.types.d.ts +65 -0
- package/dist/components/forms/StepperForm/StepperForm.types.js +12 -0
- package/dist/components/forms/StepperForm/index.d.ts +3 -0
- package/dist/components/forms/Switch/Switch.js +5 -2
- package/dist/components/forms/Switch/Switch.types.d.ts +1 -1
- package/dist/components/forms/Textarea/Textarea.js +1 -1
- package/dist/components/forms/TimePicker/TimePicker.js +1 -1
- package/dist/components/forms/TimePicker/TimePickerContent.js +2 -3
- package/dist/components/forms/TimePicker/TimePickerTrigger.js +4 -6
- package/dist/components/forms/forms.theme.js +32 -9
- package/dist/components/forms/index.d.ts +59 -55
- package/dist/components/forms/index.js +52 -0
- package/dist/hooks/index.d.ts +14 -5
- package/dist/hooks/useFormStateMachine.d.ts +31 -0
- package/dist/hooks/useFormStateMachine.js +72 -0
- package/dist/hooks/useNetworkStatus.d.ts +40 -0
- package/dist/hooks/useNetworkStatus.js +88 -0
- package/dist/hooks/useOptimisticMutation.d.ts +109 -0
- package/dist/hooks/useOptimisticMutation.js +196 -0
- package/dist/hooks/usePresence.d.ts +88 -0
- package/dist/hooks/useSlidingNumber.js +67 -0
- package/dist/hooks/useStreamingSSE.d.ts +80 -0
- package/dist/hooks/useStreamingSSE.js +236 -0
- package/dist/hooks/useTypewriter.js +117 -0
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/core/ChevronUpDown.js +1 -1
- package/dist/icons/core/DollarIcon.js +1 -1
- package/dist/icons/core/LockIcon.js +1 -1
- package/dist/icons/core/MinusIcon.js +1 -1
- package/dist/icons/core/PlusIcon.js +1 -1
- package/dist/icons/core/SearchIcon.js +1 -1
- package/dist/icons/core/TickIcon.js +1 -1
- package/dist/index.d.ts +11 -124
- package/dist/index.js +150 -35
- package/dist/styles.css +1 -1
- package/dist/utils/actionQueue.d.ts +113 -0
- package/dist/utils/actionQueue.js +233 -0
- package/dist/utils/cn.js +2 -2
- package/dist/utils/dateUtils.js +1 -1
- package/dist/utils/formValidation.d.ts +20 -0
- package/dist/utils/formValidation.js +33 -0
- package/dist/utils/index.d.ts +14 -6
- package/dist/utils/optimisticErrors.d.ts +79 -0
- package/dist/utils/optimisticErrors.js +111 -0
- package/dist/utils/presenceUtils.d.ts +66 -0
- package/dist/utils/presenceUtils.js +110 -0
- package/dist/utils/retryUtils.d.ts +49 -0
- package/dist/utils/retryUtils.js +53 -0
- package/dist/utils/sseFormatParsers.d.ts +64 -0
- package/dist/utils/sseFormatParsers.js +124 -0
- package/dist/utils/stateMachine.d.ts +43 -0
- package/dist/utils/stateMachine.js +45 -0
- package/dist/utils/streamingErrors.d.ts +70 -0
- package/dist/utils/streamingErrors.js +110 -0
- package/package.json +69 -20
- package/dist/_virtual/jsx-runtime.js +0 -5
- package/dist/_virtual/jsx-runtime2.js +0 -3
- package/dist/_virtual/react-jsx-runtime.development.js +0 -3
- package/dist/_virtual/react-jsx-runtime.production.js +0 -3
- package/dist/components/ai/Message/Message.theme.d.ts +0 -2
- package/dist/components/ai/Message/Message.types.d.ts +0 -110
- package/dist/components/ai/Message/index.d.ts +0 -9
- package/dist/components/core/ChatMessage/ChatMessage.d.ts +0 -3
- package/dist/components/core/ChatMessage/ChatMessage.js +0 -62
- package/dist/components/core/ChatMessage/ChatMessage.theme.d.ts +0 -6
- package/dist/components/core/ChatMessage/ChatMessage.theme.js +0 -31
- package/dist/components/core/ChatMessage/ChatMessage.types.d.ts +0 -120
- package/dist/components/core/ChatMessage/index.d.ts +0 -2
- package/dist/components/core/ProgressiveBlur/ProgressiveBlur.theme.js +0 -17
- package/dist/node_modules/@heroicons/react/16/solid/esm/CheckIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/16/solid/esm/LockClosedIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/20/solid/esm/ChevronDownIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/20/solid/esm/ChevronRightIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/20/solid/esm/PaperAirplaneIcon.js +0 -24
- package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowTrendingDownIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowTrendingUpIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowUturnLeftIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowUturnRightIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/Bars3BottomLeftIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/Bars3BottomRightIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/Bars3Icon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/BoldIcon.js +0 -27
- package/dist/node_modules/@heroicons/react/24/outline/esm/CalendarIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/CheckIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronDoubleLeftIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronDoubleRightIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronDownIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronLeftIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronRightIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronUpDownIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChevronUpIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ClockIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/Cog6ToothIcon.js +0 -32
- package/dist/node_modules/@heroicons/react/24/outline/esm/DocumentIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/EllipsisVerticalIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/ItalicIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/LockClosedIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/MagnifyingGlassIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/MinusIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/PlusIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/UnderlineIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/outline/esm/XMarkIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/solid/esm/ArrowPathIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/BellIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/CheckCircleIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/ExclamationTriangleIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/EyeIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/solid/esm/EyeSlashIcon.js +0 -28
- package/dist/node_modules/@heroicons/react/24/solid/esm/InformationCircleIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/LockClosedIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/PaintBrushIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/XCircleIcon.js +0 -26
- package/dist/node_modules/@heroicons/react/24/solid/esm/XMarkIcon.js +0 -26
- package/dist/node_modules/clsx/dist/clsx.js +0 -3
- package/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +0 -11
- package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +0 -11
- package/dist/node_modules/framer-motion/dist/es/animation/interfaces/motion-value.js +0 -103
- package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.js +0 -85
- package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +0 -59
- package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element.js +0 -26
- package/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.js +0 -6
- package/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +0 -7
- package/dist/node_modules/framer-motion/dist/es/animation/utils/calc-child-stagger.js +0 -15
- package/dist/node_modules/framer-motion/dist/es/animation/utils/default-transitions.js +0 -40
- package/dist/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.js +0 -7
- package/dist/node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.js +0 -10
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +0 -87
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +0 -63
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +0 -165
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +0 -44
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +0 -14
- package/dist/node_modules/framer-motion/dist/es/components/Reorder/Group.js +0 -52
- package/dist/node_modules/framer-motion/dist/es/components/Reorder/Item.js +0 -33
- package/dist/node_modules/framer-motion/dist/es/components/Reorder/utils/check-reorder.js +0 -24
- package/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +0 -12
- package/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +0 -17
- package/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +0 -9
- package/dist/node_modules/framer-motion/dist/es/context/ReorderContext.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/events/add-dom-event.js +0 -6
- package/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/events/event-info.js +0 -15
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +0 -501
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +0 -27
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/use-drag-controls.js +0 -116
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +0 -129
- package/dist/node_modules/framer-motion/dist/es/gestures/focus.js +0 -41
- package/dist/node_modules/framer-motion/dist/es/gestures/hover.js +0 -30
- package/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +0 -157
- package/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +0 -50
- package/dist/node_modules/framer-motion/dist/es/gestures/press.js +0 -33
- package/dist/node_modules/framer-motion/dist/es/motion/features/Feature.js +0 -9
- package/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +0 -36
- package/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +0 -40
- package/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +0 -28
- package/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +0 -17
- package/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +0 -21
- package/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +0 -147
- package/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +0 -11
- package/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +0 -12
- package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +0 -72
- package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +0 -49
- package/dist/node_modules/framer-motion/dist/es/motion/index.js +0 -107
- package/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +0 -11
- package/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +0 -3
- package/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +0 -38
- package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +0 -139
- package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +0 -79
- package/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +0 -57
- package/dist/node_modules/framer-motion/dist/es/projection/animation/mix-values.js +0 -91
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/conversion.js +0 -33
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/copy.js +0 -31
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-apply.js +0 -119
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-calc.js +0 -52
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-remove.js +0 -54
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/models.js +0 -17
- package/dist/node_modules/framer-motion/dist/es/projection/geometry/utils.js +0 -31
- package/dist/node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +0 -27
- package/dist/node_modules/framer-motion/dist/es/projection/node/create-projection-node.js +0 -1582
- package/dist/node_modules/framer-motion/dist/es/projection/node/state.js +0 -19
- package/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +0 -112
- package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.js +0 -41
- package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.js +0 -35
- package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/projection/styles/transform.js +0 -49
- package/dist/node_modules/framer-motion/dist/es/projection/utils/each-axis.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/projection/utils/has-transform.js +0 -26
- package/dist/node_modules/framer-motion/dist/es/projection/utils/measure.js +0 -17
- package/dist/node_modules/framer-motion/dist/es/render/VisualElement.js +0 -489
- package/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +0 -45
- package/dist/node_modules/framer-motion/dist/es/render/components/motion/feature-bundle.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +0 -7
- package/dist/node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.js +0 -43
- package/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +0 -14
- package/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +0 -28
- package/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +0 -6
- package/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +0 -59
- package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +0 -30
- package/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +0 -44
- package/dist/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.js +0 -10
- package/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +0 -57
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +0 -65
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +0 -62
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/render.js +0 -17
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +0 -19
- package/dist/node_modules/framer-motion/dist/es/render/store.js +0 -3
- package/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +0 -45
- package/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +0 -33
- package/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +0 -24
- package/dist/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.js +0 -10
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +0 -57
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +0 -30
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +0 -3
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +0 -32
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/render.js +0 -12
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +0 -19
- package/dist/node_modules/framer-motion/dist/es/render/utils/animation-state.js +0 -357
- package/dist/node_modules/framer-motion/dist/es/render/utils/compare-by-depth.js +0 -3
- package/dist/node_modules/framer-motion/dist/es/render/utils/flat-tree.js +0 -24
- package/dist/node_modules/framer-motion/dist/es/render/utils/get-variant-context.js +0 -28
- package/dist/node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/render/utils/is-variant-label.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/render/utils/motion-values.js +0 -51
- package/dist/node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/render/utils/resolve-variants.js +0 -36
- package/dist/node_modules/framer-motion/dist/es/render/utils/setters.js +0 -31
- package/dist/node_modules/framer-motion/dist/es/render/utils/variant-props.js +0 -12
- package/dist/node_modules/framer-motion/dist/es/utils/delay.js +0 -20
- package/dist/node_modules/framer-motion/dist/es/utils/distance.js +0 -9
- package/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +0 -6
- package/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +0 -3
- package/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +0 -7
- package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +0 -19
- package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/state.js +0 -5
- package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion.js +0 -47
- package/dist/node_modules/framer-motion/dist/es/utils/shallow-compare.js +0 -14
- package/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +0 -18
- package/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +0 -6
- package/dist/node_modules/framer-motion/dist/es/value/use-combine-values.js +0 -37
- package/dist/node_modules/framer-motion/dist/es/value/use-computed.js +0 -19
- package/dist/node_modules/framer-motion/dist/es/value/use-motion-value.js +0 -38
- package/dist/node_modules/framer-motion/dist/es/value/use-spring.js +0 -22
- package/dist/node_modules/framer-motion/dist/es/value/use-transform.js +0 -29
- package/dist/node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.js +0 -20
- package/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +0 -7
- package/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +0 -12
- package/dist/node_modules/motion-dom/dist/es/animation/AsyncMotionValueAnimation.js +0 -176
- package/dist/node_modules/motion-dom/dist/es/animation/JSAnimation.js +0 -341
- package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimation.js +0 -158
- package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimationExtended.js +0 -65
- package/dist/node_modules/motion-dom/dist/es/animation/drivers/frame.js +0 -17
- package/dist/node_modules/motion-dom/dist/es/animation/generators/inertia.js +0 -87
- package/dist/node_modules/motion-dom/dist/es/animation/generators/keyframes.js +0 -51
- package/dist/node_modules/motion-dom/dist/es/animation/generators/spring/defaults.js +0 -27
- package/dist/node_modules/motion-dom/dist/es/animation/generators/spring/find.js +0 -86
- package/dist/node_modules/motion-dom/dist/es/animation/generators/spring/index.js +0 -176
- package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +0 -17
- package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/create-generator-easing.js +0 -19
- package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +0 -5
- package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/velocity.js +0 -9
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/DOMKeyframesResolver.js +0 -131
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/KeyframesResolver.js +0 -147
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/get-final.js +0 -11
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/offsets/default.js +0 -9
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/offsets/fill.js +0 -12
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/offsets/time.js +0 -5
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/fill-wildcards.js +0 -7
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/is-none.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/make-none-animatable.js +0 -30
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/unit-conversion.js +0 -36
- package/dist/node_modules/motion-dom/dist/es/animation/utils/WithPromise.js +0 -26
- package/dist/node_modules/motion-dom/dist/es/animation/utils/can-animate.js +0 -42
- package/dist/node_modules/motion-dom/dist/es/animation/utils/css-variables-conversion.js +0 -42
- package/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +0 -7
- package/dist/node_modules/motion-dom/dist/es/animation/utils/is-animatable.js +0 -30
- package/dist/node_modules/motion-dom/dist/es/animation/utils/is-css-variable.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/animation/utils/make-animation-instant.js +0 -6
- package/dist/node_modules/motion-dom/dist/es/animation/utils/replace-transition-type.js +0 -18
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/easing/cubic-bezier.js +0 -3
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/easing/map-easing.js +0 -28
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/easing/supported.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/start-waapi-animation.js +0 -29
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/supports/waapi.js +0 -43
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/apply-generator.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +0 -12
- package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/unsupported-easing.js +0 -20
- package/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +0 -71
- package/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +0 -6
- package/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +0 -6
- package/dist/node_modules/motion-dom/dist/es/frameloop/order.js +0 -12
- package/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +0 -81
- package/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +0 -31
- package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +0 -9
- package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +0 -28
- package/dist/node_modules/motion-dom/dist/es/gestures/hover.js +0 -37
- package/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +0 -83
- package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +0 -13
- package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +0 -38
- package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +0 -3
- package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +0 -20
- package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +0 -18
- package/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/render/dom/is-css-var.js +0 -3
- package/dist/node_modules/motion-dom/dist/es/render/dom/parse-transform.js +0 -83
- package/dist/node_modules/motion-dom/dist/es/render/dom/style-set.js +0 -9
- package/dist/node_modules/motion-dom/dist/es/render/utils/keys-position.js +0 -13
- package/dist/node_modules/motion-dom/dist/es/render/utils/keys-transform.js +0 -28
- package/dist/node_modules/motion-dom/dist/es/utils/interpolate.js +0 -79
- package/dist/node_modules/motion-dom/dist/es/utils/is-html-element.js +0 -11
- package/dist/node_modules/motion-dom/dist/es/utils/is-svg-element.js +0 -11
- package/dist/node_modules/motion-dom/dist/es/utils/is-svg-svg-element.js +0 -11
- package/dist/node_modules/motion-dom/dist/es/utils/mix/color.js +0 -47
- package/dist/node_modules/motion-dom/dist/es/utils/mix/complex.js +0 -93
- package/dist/node_modules/motion-dom/dist/es/utils/mix/immediate.js +0 -5
- package/dist/node_modules/motion-dom/dist/es/utils/mix/index.js +0 -14
- package/dist/node_modules/motion-dom/dist/es/utils/mix/number.js +0 -26
- package/dist/node_modules/motion-dom/dist/es/utils/mix/visibility.js +0 -16
- package/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +0 -14
- package/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +0 -7
- package/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +0 -9
- package/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +0 -5
- package/dist/node_modules/motion-dom/dist/es/utils/transform.js +0 -14
- package/dist/node_modules/motion-dom/dist/es/value/index.js +0 -325
- package/dist/node_modules/motion-dom/dist/es/value/spring-value.js +0 -54
- package/dist/node_modules/motion-dom/dist/es/value/types/auto.js +0 -9
- package/dist/node_modules/motion-dom/dist/es/value/types/color/hex.js +0 -40
- package/dist/node_modules/motion-dom/dist/es/value/types/color/hsla-to-rgba.js +0 -42
- package/dist/node_modules/motion-dom/dist/es/value/types/color/hsla.js +0 -22
- package/dist/node_modules/motion-dom/dist/es/value/types/color/index.js +0 -32
- package/dist/node_modules/motion-dom/dist/es/value/types/color/rgba.js +0 -25
- package/dist/node_modules/motion-dom/dist/es/value/types/color/utils.js +0 -29
- package/dist/node_modules/motion-dom/dist/es/value/types/complex/filter.js +0 -30
- package/dist/node_modules/motion-dom/dist/es/value/types/complex/index.js +0 -91
- package/dist/node_modules/motion-dom/dist/es/value/types/dimensions.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/value/types/int.js +0 -8
- package/dist/node_modules/motion-dom/dist/es/value/types/maps/defaults.js +0 -30
- package/dist/node_modules/motion-dom/dist/es/value/types/maps/number.js +0 -50
- package/dist/node_modules/motion-dom/dist/es/value/types/maps/transform.js +0 -31
- package/dist/node_modules/motion-dom/dist/es/value/types/numbers/index.js +0 -17
- package/dist/node_modules/motion-dom/dist/es/value/types/numbers/units.js +0 -18
- package/dist/node_modules/motion-dom/dist/es/value/types/test.js +0 -6
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/animatable-none.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/color-regex.js +0 -3
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/find.js +0 -15
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/float-regex.js +0 -3
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/get-as-type.js +0 -10
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/is-nullish.js +0 -5
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/sanitize.js +0 -5
- package/dist/node_modules/motion-dom/dist/es/value/types/utils/single-color-regex.js +0 -3
- package/dist/node_modules/motion-dom/dist/es/value/utils/is-motion-value.js +0 -3
- package/dist/node_modules/motion-utils/dist/es/array.js +0 -21
- package/dist/node_modules/motion-utils/dist/es/clamp.js +0 -9
- package/dist/node_modules/motion-utils/dist/es/easing/anticipate.js +0 -5
- package/dist/node_modules/motion-utils/dist/es/easing/back.js +0 -9
- package/dist/node_modules/motion-utils/dist/es/easing/circ.js +0 -8
- package/dist/node_modules/motion-utils/dist/es/easing/cubic-bezier.js +0 -51
- package/dist/node_modules/motion-utils/dist/es/easing/ease.js +0 -7
- package/dist/node_modules/motion-utils/dist/es/easing/modifiers/mirror.js +0 -5
- package/dist/node_modules/motion-utils/dist/es/easing/modifiers/reverse.js +0 -5
- package/dist/node_modules/motion-utils/dist/es/easing/utils/is-bezier-definition.js +0 -3
- package/dist/node_modules/motion-utils/dist/es/easing/utils/is-easing-array.js +0 -5
- package/dist/node_modules/motion-utils/dist/es/easing/utils/map.js +0 -41
- package/dist/node_modules/motion-utils/dist/es/errors.js +0 -18
- package/dist/node_modules/motion-utils/dist/es/format-error-message.js +0 -7
- package/dist/node_modules/motion-utils/dist/es/global-config.js +0 -3
- package/dist/node_modules/motion-utils/dist/es/is-numerical-string.js +0 -6
- package/dist/node_modules/motion-utils/dist/es/is-object.js +0 -5
- package/dist/node_modules/motion-utils/dist/es/is-zero-value-string.js +0 -6
- package/dist/node_modules/motion-utils/dist/es/memo.js +0 -11
- package/dist/node_modules/motion-utils/dist/es/noop.js +0 -4
- package/dist/node_modules/motion-utils/dist/es/pipe.js +0 -11
- package/dist/node_modules/motion-utils/dist/es/progress.js +0 -19
- package/dist/node_modules/motion-utils/dist/es/subscription-manager.js +0 -40
- package/dist/node_modules/motion-utils/dist/es/time-conversion.js +0 -12
- package/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +0 -11
- package/dist/node_modules/motion-utils/dist/es/warn-once.js +0 -11
- package/dist/node_modules/react/cjs/react-jsx-runtime.development.js +0 -368
- package/dist/node_modules/react/cjs/react-jsx-runtime.production.js +0 -44
- package/dist/node_modules/react/jsx-runtime.js +0 -19
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +0 -2956
- package/dist/node_modules/tslib/tslib.es6.js +0 -56
- /package/dist/components/{ai → core}/Message/MessageActions.d.ts +0 -0
- /package/dist/components/{ai → core}/Message/MessageContent.d.ts +0 -0
- /package/dist/components/{ai → core}/Message/MessageTimestamp.d.ts +0 -0
- /package/dist/components/{ai → core}/Message/TypeWriter.d.ts +0 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import { __rest, __assign } from '/Users/ggn/Development/ui-flik/node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
import { cn } from '../../../utils/cn.js';
|
|
4
|
+
import { useChartScales } from '../hooks/useChartScales.js';
|
|
5
|
+
import { ChartContainer, useChartContext } from '../shared/ChartContainer/ChartContainer.js';
|
|
6
|
+
import { BarRenderer } from '../shared/BarRenderer/BarRenderer.js';
|
|
7
|
+
import { LineRenderer } from '../shared/LineRenderer/LineRenderer.js';
|
|
8
|
+
import { COMBO_CHART_DEFAULTS } from './ComboChart.types.js';
|
|
9
|
+
import { ExclamationTriangleIcon } from '@heroicons/react/20/solid';
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Internal component that uses context to render bars and lines
|
|
13
|
+
*/
|
|
14
|
+
var ComboChartRenderers = function (_a) {
|
|
15
|
+
var barKeys = _a.barKeys, lineKeys = _a.lineKeys, stacked = _a.stacked, barRadius = _a.barRadius, dotRadius = _a.dotRadius, gap = _a.gap, categoryGap = _a.categoryGap, strokeWidth = _a.strokeWidth, curved = _a.curved, curveType = _a.curveType, showDots = _a.showDots;
|
|
16
|
+
var context = useChartContext();
|
|
17
|
+
var dataKeys = Object.keys(context.config);
|
|
18
|
+
var seriesColors = [
|
|
19
|
+
"var(--color-primary)",
|
|
20
|
+
"var(--color-warning)",
|
|
21
|
+
"var(--color-success)",
|
|
22
|
+
"var(--color-danger)",
|
|
23
|
+
];
|
|
24
|
+
// Filter configs for bars and lines, and assign colors
|
|
25
|
+
var barConfig = {};
|
|
26
|
+
barKeys.forEach(function (key) {
|
|
27
|
+
var _a;
|
|
28
|
+
var keyIndex = dataKeys.indexOf(key);
|
|
29
|
+
barConfig[key] = __assign(__assign({}, context.config[key]), { color: ((_a = context.config[key]) === null || _a === void 0 ? void 0 : _a.color) ||
|
|
30
|
+
seriesColors[keyIndex % seriesColors.length] });
|
|
31
|
+
});
|
|
32
|
+
var lineConfig = {};
|
|
33
|
+
lineKeys.forEach(function (key) {
|
|
34
|
+
var _a;
|
|
35
|
+
var keyIndex = dataKeys.indexOf(key);
|
|
36
|
+
lineConfig[key] = __assign(__assign({}, context.config[key]), { color: ((_a = context.config[key]) === null || _a === void 0 ? void 0 : _a.color) ||
|
|
37
|
+
seriesColors[keyIndex % seriesColors.length] });
|
|
38
|
+
});
|
|
39
|
+
// Create custom tooltip handler that includes ALL series (bars + lines)
|
|
40
|
+
var handleComboMouseEnter = React__default.useCallback(function (e, content, coordinates) {
|
|
41
|
+
var _a, _b;
|
|
42
|
+
// Rebuild content to include all series from the full config
|
|
43
|
+
var dataItem = context.data[(_b = (_a = content.series) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.dataIndex] || context.data.find(function (d) { return d.name === content.category; });
|
|
44
|
+
if (dataItem) {
|
|
45
|
+
var allSeries = dataKeys.map(function (key, idx) {
|
|
46
|
+
var _a, _b;
|
|
47
|
+
var value = dataItem[key];
|
|
48
|
+
var isNull = value === null || value === undefined || (typeof value === 'number' && !isFinite(value));
|
|
49
|
+
return {
|
|
50
|
+
key: key,
|
|
51
|
+
label: ((_a = context.config[key]) === null || _a === void 0 ? void 0 : _a.label) || key,
|
|
52
|
+
value: isNull ? 0 : value,
|
|
53
|
+
color: ((_b = context.config[key]) === null || _b === void 0 ? void 0 : _b.color) || seriesColors[idx % seriesColors.length],
|
|
54
|
+
};
|
|
55
|
+
}).filter(function (series) {
|
|
56
|
+
// Only show series that have valid non-zero values
|
|
57
|
+
var rawVal = dataItem[series.key];
|
|
58
|
+
return rawVal != null && typeof rawVal === 'number' && isFinite(rawVal) && rawVal > 0;
|
|
59
|
+
});
|
|
60
|
+
var enhancedContent = {
|
|
61
|
+
category: content.category,
|
|
62
|
+
series: allSeries,
|
|
63
|
+
total: stacked && allSeries.length > 0
|
|
64
|
+
? allSeries.reduce(function (acc, s) { return acc + (typeof s.value === 'number' ? s.value : 0); }, 0)
|
|
65
|
+
: undefined,
|
|
66
|
+
};
|
|
67
|
+
context.handleMouseEnter(e, enhancedContent, coordinates);
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
// Fallback to original content if we can't find the data item
|
|
71
|
+
context.handleMouseEnter(e, content, coordinates);
|
|
72
|
+
}
|
|
73
|
+
}, [context, dataKeys, seriesColors, stacked]);
|
|
74
|
+
return (React__default.createElement(React__default.Fragment, null,
|
|
75
|
+
barKeys.length > 0 && (React__default.createElement(BarRenderer, { data: context.data, config: barConfig, scales: context.scales, dimensions: context.dimensions, margin: context.margin, stacked: stacked, radius: barRadius, gap: gap, categoryGap: categoryGap, showAnimation: true, hoveredCategory: context.hoveredCategory, onHoverCategory: context.setHoveredCategory, onMouseEnter: handleComboMouseEnter, onMouseMove: context.handleMouseMove, onMouseLeave: context.handleMouseLeave, focusedElementIndex: context.focusedElementIndex, isKeyboardMode: context.isKeyboardMode })),
|
|
76
|
+
lineKeys.length > 0 && (React__default.createElement(LineRenderer, { data: context.data, config: lineConfig, scales: context.scales, dimensions: context.dimensions, margin: context.margin, strokeWidth: strokeWidth, curved: curved, curveType: curveType, showDots: showDots, radius: dotRadius, hoveredPoint: context.hoveredPoint, onHoverPoint: context.setHoveredPoint, onMouseEnter: handleComboMouseEnter, onMouseMove: context.handleMouseMove, onMouseLeave: context.handleMouseLeave, focusedElementIndex: context.focusedElementIndex, isKeyboardMode: context.isKeyboardMode }))));
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* ComboChart Component
|
|
80
|
+
*
|
|
81
|
+
* Combines bar and line series in a single chart.
|
|
82
|
+
* Now uses composed BarRenderer and LineRenderer instead of duplicating code.
|
|
83
|
+
*/
|
|
84
|
+
var ComboChart = function (_a) {
|
|
85
|
+
var _b, _c;
|
|
86
|
+
var data = _a.data, config = _a.config,
|
|
87
|
+
// Standardized display props with defaults
|
|
88
|
+
_d = _a.showGrid,
|
|
89
|
+
// Standardized display props with defaults
|
|
90
|
+
showGrid = _d === void 0 ? COMBO_CHART_DEFAULTS.showGrid : _d, _e = _a.showXAxis, showXAxis = _e === void 0 ? COMBO_CHART_DEFAULTS.showXAxis : _e, _f = _a.showYAxis, showYAxis = _f === void 0 ? COMBO_CHART_DEFAULTS.showYAxis : _f, propMinValue = _a.minValue, propMaxValue = _a.maxValue,
|
|
91
|
+
// Visual props (inherited from StandardVisualProps)
|
|
92
|
+
barRadius = _a.barRadius, dotRadius = _a.dotRadius, radius = _a.radius, // @deprecated - kept for backward compatibility
|
|
93
|
+
_g = _a.strokeWidth, // @deprecated - kept for backward compatibility
|
|
94
|
+
strokeWidth = _g === void 0 ? COMBO_CHART_DEFAULTS.strokeWidth : _g, _h = _a.gap, gap = _h === void 0 ? COMBO_CHART_DEFAULTS.gap : _h, _j = _a.categoryGap, categoryGap = _j === void 0 ? COMBO_CHART_DEFAULTS.categoryGap : _j, _k = _a.stacked, stacked = _k === void 0 ? COMBO_CHART_DEFAULTS.stacked : _k,
|
|
95
|
+
// Line-specific props
|
|
96
|
+
_l = _a.curved,
|
|
97
|
+
// Line-specific props
|
|
98
|
+
curved = _l === void 0 ? COMBO_CHART_DEFAULTS.curved : _l, _m = _a.curveType, curveType = _m === void 0 ? COMBO_CHART_DEFAULTS.curveType : _m, _o = _a.showDots, showDots = _o === void 0 ? COMBO_CHART_DEFAULTS.showDots : _o,
|
|
99
|
+
// Dual axis (not yet implemented)
|
|
100
|
+
_p = _a.showDualAxis;
|
|
101
|
+
// Dual axis (not yet implemented)
|
|
102
|
+
_p === void 0 ? COMBO_CHART_DEFAULTS.showDualAxis : _p;
|
|
103
|
+
var // Base props
|
|
104
|
+
className = _a.className, title = _a.title, description = _a.description, _q = _a.enableKeyboardNavigation, enableKeyboardNavigation = _q === void 0 ? COMBO_CHART_DEFAULTS.enableKeyboardNavigation : _q, _r = _a.showValidationWarnings, showValidationWarnings = _r === void 0 ? process.env.NODE_ENV === "development" : _r, children = _a.children, props = __rest(_a, ["data", "config", "showGrid", "showXAxis", "showYAxis", "minValue", "maxValue", "barRadius", "dotRadius", "radius", "strokeWidth", "gap", "categoryGap", "stacked", "curved", "curveType", "showDots", "showDualAxis", "className", "title", "description", "enableKeyboardNavigation", "showValidationWarnings", "children"]);
|
|
105
|
+
// Resolve radius props with backward compatibility
|
|
106
|
+
var resolvedBarRadius = (_b = barRadius !== null && barRadius !== void 0 ? barRadius : radius) !== null && _b !== void 0 ? _b : COMBO_CHART_DEFAULTS.barRadius;
|
|
107
|
+
var resolvedDotRadius = (_c = dotRadius !== null && dotRadius !== void 0 ? dotRadius : radius) !== null && _c !== void 0 ? _c : COMBO_CHART_DEFAULTS.dotRadius;
|
|
108
|
+
// Development warning for deprecated radius prop
|
|
109
|
+
if (process.env.NODE_ENV !== 'production' && radius !== undefined) {
|
|
110
|
+
console.warn('[ComboChart]: The `radius` prop is deprecated and will be removed in a future version. ' +
|
|
111
|
+
'Use `barRadius` for bar corners and `dotRadius` for line markers instead.');
|
|
112
|
+
}
|
|
113
|
+
// Get all data keys from config
|
|
114
|
+
var dataKeys = Object.keys(config || {});
|
|
115
|
+
// Separate bar and line series
|
|
116
|
+
var barSeries = dataKeys.filter(function (key) {
|
|
117
|
+
var seriesConfig = config[key];
|
|
118
|
+
return !(seriesConfig === null || seriesConfig === void 0 ? void 0 : seriesConfig.type) || seriesConfig.type === "bar";
|
|
119
|
+
});
|
|
120
|
+
var lineSeries = dataKeys.filter(function (key) {
|
|
121
|
+
var seriesConfig = config[key];
|
|
122
|
+
return (seriesConfig === null || seriesConfig === void 0 ? void 0 : seriesConfig.type) === "line";
|
|
123
|
+
});
|
|
124
|
+
// Use unified chart scales hook
|
|
125
|
+
var _s = useChartScales({
|
|
126
|
+
data: data,
|
|
127
|
+
config: config,
|
|
128
|
+
chartType: "combo",
|
|
129
|
+
stacked: stacked,
|
|
130
|
+
minValue: propMinValue,
|
|
131
|
+
maxValue: propMaxValue,
|
|
132
|
+
includeZero: true,
|
|
133
|
+
innerWidth: 600, // Will be overridden by ChartContainer
|
|
134
|
+
categoryGap: categoryGap,
|
|
135
|
+
}), scales = _s.scales, sanitizedData = _s.sanitizedData, isValid = _s.isValid, hasWarnings = _s.hasWarnings;
|
|
136
|
+
// Early return for invalid data with error message
|
|
137
|
+
if (!isValid) {
|
|
138
|
+
return (React__default.createElement("div", __assign({ className: cn("chart-container flex flex-col items-center justify-center p-6 border border-border rounded-lg text-xl", className), role: "alert", "aria-live": "polite" }, props),
|
|
139
|
+
React__default.createElement("div", { className: "flex flex-col items-center gap-4 mb-1" },
|
|
140
|
+
React__default.createElement(ExclamationTriangleIcon, { className: "size-6 text-[var(--color-danger)]" }),
|
|
141
|
+
React__default.createElement("div", { className: "text-sm font-semibold text-[var(--color-text-secondary)]" }, "Invalid Chart Data")),
|
|
142
|
+
React__default.createElement("p", { className: "text-sm text-[var(--color-text-secondary)]/70 mb-2" }, "Unable to render chart due to data validation errors")));
|
|
143
|
+
}
|
|
144
|
+
// Early return for empty data
|
|
145
|
+
if (!sanitizedData || sanitizedData.length === 0) {
|
|
146
|
+
return (React__default.createElement("div", __assign({ className: cn("chart-container flex items-center justify-center text-[var(--color-text-muted)]", className), role: "img", "aria-label": "Empty combo chart" }, props),
|
|
147
|
+
React__default.createElement("span", null, "No data available")));
|
|
148
|
+
}
|
|
149
|
+
barSeries.forEach(function (key) {
|
|
150
|
+
config[key];
|
|
151
|
+
});
|
|
152
|
+
lineSeries.forEach(function (key) {
|
|
153
|
+
config[key];
|
|
154
|
+
});
|
|
155
|
+
return (React__default.createElement(ChartContainer, __assign({ data: sanitizedData, config: config, scales: scales, showGrid: showGrid, showXAxis: showXAxis, showYAxis: showYAxis, categoryGap: categoryGap, className: className, title: title, description: description, enableKeyboardNavigation: enableKeyboardNavigation, chartType: "combo" }, props),
|
|
156
|
+
React__default.createElement(ComboChartRenderers, { barKeys: barSeries, lineKeys: lineSeries, stacked: stacked, barRadius: resolvedBarRadius, dotRadius: resolvedDotRadius, gap: gap, categoryGap: categoryGap, strokeWidth: strokeWidth, curved: curved, curveType: curveType, showDots: showDots }),
|
|
157
|
+
showValidationWarnings && hasWarnings && (React__default.createElement("foreignObject", { x: "0", y: "0", width: "100%", height: "50" },
|
|
158
|
+
React__default.createElement("div", { className: "p-2 bg-[var(--color-warning-50)] border border-[var(--color-warning-200)] rounded text-xs text-[var(--color-warning)] shadow-sm" },
|
|
159
|
+
React__default.createElement("strong", null, "Chart Warnings:"),
|
|
160
|
+
" Some data validation warnings occurred."))),
|
|
161
|
+
children));
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
export { ComboChart };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { __assign } from '/Users/ggn/Development/ui-flik/node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import { CHART_DEFAULTS } from '../types/chart.types.js';
|
|
3
|
+
|
|
4
|
+
// Default values using centralized defaults
|
|
5
|
+
var COMBO_CHART_DEFAULTS = __assign(__assign({}, CHART_DEFAULTS), { barRadius: CHART_DEFAULTS.barRadius, dotRadius: CHART_DEFAULTS.dotRadius, categoryGap: CHART_DEFAULTS.categoryGap, curved: CHART_DEFAULTS.curved, curveType: CHART_DEFAULTS.curveType, showDots: CHART_DEFAULTS.showDots, showDualAxis: false });
|
|
6
|
+
|
|
7
|
+
export { COMBO_CHART_DEFAULTS };
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { __rest, __assign } from '/Users/ggn/Development/ui-flik/node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import React__default, { useState, useRef, useMemo, useEffect } from 'react';
|
|
3
|
+
import { useReducedMotion, motion } from 'motion/react';
|
|
4
|
+
import { cn } from '../../../utils/cn.js';
|
|
5
|
+
import { donutChartTheme } from './DonutChart.theme.js';
|
|
6
|
+
import { getSpringAnimation, CIRCULAR_CHART_ANIMATIONS, getStaggerDelay } from '../utils/animation-utils.js';
|
|
7
|
+
import { describeRingSegmentPath, interpolateHexColor, clamp } from './donut-utils.js';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* DonutChart component for displaying a percentage value with a circular progress indicator
|
|
11
|
+
* Supports customization of size, thickness, animations, and theming
|
|
12
|
+
*/
|
|
13
|
+
var DonutChart = function (_a) {
|
|
14
|
+
var _b, _c;
|
|
15
|
+
var _d = _a.variant, variant = _d === void 0 ? "solid" : _d, percentage = _a.percentage, label = _a.label, subtitle = _a.subtitle, _e = _a.size, size = _e === void 0 ? 200 : _e, _f = _a.thickness, thickness = _f === void 0 ? 2 : _f, _g = _a.segmentCount, segmentCount = _g === void 0 ? 32 : _g, _h = _a.segmentGap, segmentGap = _h === void 0 ? 0.35 : _h, _j = _a.showAnimation, showAnimation = _j === void 0 ? true : _j, className = _a.className, children = _a.children, themeOverrides = _a.theme, colors = _a.colors, props = __rest(_a, ["variant", "percentage", "label", "subtitle", "size", "thickness", "segmentCount", "segmentGap", "showAnimation", "className", "children", "theme", "colors"]);
|
|
16
|
+
var _k = useState(false), isHovered = _k[0], setIsHovered = _k[1];
|
|
17
|
+
var _l = useState(false), hasAnimated = _l[0], setHasAnimated = _l[1];
|
|
18
|
+
var shouldReduceMotion = useReducedMotion();
|
|
19
|
+
var containerRef = useRef(null);
|
|
20
|
+
var isSegmentedVariant = variant === "segmented";
|
|
21
|
+
// Ensure percentage is between 0-100
|
|
22
|
+
var safePercentage = Math.min(Math.max(0, percentage), 100);
|
|
23
|
+
// Calculate SVG parameters - SIMPLE AND CLEAN
|
|
24
|
+
var svgSize = 100;
|
|
25
|
+
var center = svgSize / 2;
|
|
26
|
+
var strokeWidth = thickness * 2;
|
|
27
|
+
var radius = (svgSize - strokeWidth) / 2;
|
|
28
|
+
var innerRadius = Math.max(0, radius - strokeWidth / 2);
|
|
29
|
+
var outerRadius = radius + strokeWidth / 2;
|
|
30
|
+
var circumference = 2 * Math.PI * radius;
|
|
31
|
+
// Calculate progress - start from 0, animate to target
|
|
32
|
+
var progressOffset = circumference - (safePercentage / 100) * circumference;
|
|
33
|
+
// Merge theme with overrides
|
|
34
|
+
var theme = __assign(__assign({}, donutChartTheme), (themeOverrides || {}));
|
|
35
|
+
// Generate stable gradient ID based on component instance
|
|
36
|
+
var gradientId = useMemo(function () { return "donut-gradient-".concat(Math.random().toString(36).substr(2, 9)); }, []);
|
|
37
|
+
// Determine colors based on props or theme - simplified logic
|
|
38
|
+
var getColors = useMemo(function () {
|
|
39
|
+
var _a, _b;
|
|
40
|
+
// If colors prop has both from and to, use gradient
|
|
41
|
+
if ((colors === null || colors === void 0 ? void 0 : colors.from) && (colors === null || colors === void 0 ? void 0 : colors.to)) {
|
|
42
|
+
return {
|
|
43
|
+
type: "gradient",
|
|
44
|
+
from: colors.from,
|
|
45
|
+
to: colors.to,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
// If colors prop has primary, use solid color
|
|
49
|
+
if (colors === null || colors === void 0 ? void 0 : colors.primary) {
|
|
50
|
+
return {
|
|
51
|
+
type: "solid",
|
|
52
|
+
color: colors.primary,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
// Use theme defaults (gradient)
|
|
56
|
+
return {
|
|
57
|
+
type: "gradient",
|
|
58
|
+
from: ((_a = theme.colors) === null || _a === void 0 ? void 0 : _a.primary) || "#3b82f6",
|
|
59
|
+
to: ((_b = theme.colors) === null || _b === void 0 ? void 0 : _b.secondary) || "#10b981",
|
|
60
|
+
};
|
|
61
|
+
}, [colors, theme.colors]);
|
|
62
|
+
var segmentDefinitions = useMemo(function () {
|
|
63
|
+
if (!isSegmentedVariant) {
|
|
64
|
+
return [];
|
|
65
|
+
}
|
|
66
|
+
var totalSegments = Math.max(1, Math.floor(segmentCount));
|
|
67
|
+
var gapRatio = clamp(segmentGap, 0, 0.8);
|
|
68
|
+
var baseAngle = 360 / totalSegments;
|
|
69
|
+
var gapAngle = baseAngle * gapRatio;
|
|
70
|
+
var arcAngle = Math.max(0, baseAngle - gapAngle);
|
|
71
|
+
var rotationOffset = 0 - gapAngle / 2; // Start at 12 o'clock (0 degrees)
|
|
72
|
+
var activeValue = (safePercentage / 100) * totalSegments;
|
|
73
|
+
var fullSegments = Math.floor(activeValue);
|
|
74
|
+
var partialSegmentProgress = activeValue - fullSegments;
|
|
75
|
+
return Array.from({ length: totalSegments }, function (_, index) {
|
|
76
|
+
var startAngle = rotationOffset + index * baseAngle + gapAngle / 2;
|
|
77
|
+
var endAngle = startAngle + arcAngle;
|
|
78
|
+
var colorFactor = totalSegments === 1 ? 0 : index / (totalSegments - 1);
|
|
79
|
+
var isFullActive = index < fullSegments;
|
|
80
|
+
var isPartialActive = !isFullActive && index === fullSegments && partialSegmentProgress > 0;
|
|
81
|
+
var activeSweep = isFullActive
|
|
82
|
+
? arcAngle
|
|
83
|
+
: isPartialActive
|
|
84
|
+
? arcAngle * partialSegmentProgress
|
|
85
|
+
: 0;
|
|
86
|
+
return {
|
|
87
|
+
trackPath: describeRingSegmentPath(center, center, innerRadius, outerRadius, startAngle, endAngle),
|
|
88
|
+
activePath: activeSweep > 0
|
|
89
|
+
? describeRingSegmentPath(center, center, innerRadius, outerRadius, startAngle, startAngle + activeSweep)
|
|
90
|
+
: null,
|
|
91
|
+
colorFactor: colorFactor,
|
|
92
|
+
};
|
|
93
|
+
});
|
|
94
|
+
}, [
|
|
95
|
+
center,
|
|
96
|
+
innerRadius,
|
|
97
|
+
isSegmentedVariant,
|
|
98
|
+
outerRadius,
|
|
99
|
+
safePercentage,
|
|
100
|
+
segmentCount,
|
|
101
|
+
segmentGap,
|
|
102
|
+
]);
|
|
103
|
+
// Handle component mount for animation
|
|
104
|
+
useEffect(function () {
|
|
105
|
+
if (showAnimation && !shouldReduceMotion) {
|
|
106
|
+
setHasAnimated(true);
|
|
107
|
+
}
|
|
108
|
+
else {
|
|
109
|
+
// If animations disabled, immediately show final state
|
|
110
|
+
setHasAnimated(true);
|
|
111
|
+
}
|
|
112
|
+
}, [showAnimation, shouldReduceMotion]);
|
|
113
|
+
// Handle hover interactions
|
|
114
|
+
var handleMouseEnter = function () { return setIsHovered(true); };
|
|
115
|
+
var handleMouseLeave = function () { return setIsHovered(false); };
|
|
116
|
+
var containerSize = typeof size === "number" ? "".concat(size, "px") : size;
|
|
117
|
+
// Get stroke color/url
|
|
118
|
+
var getStroke = function () {
|
|
119
|
+
if (getColors.type === "solid") {
|
|
120
|
+
return getColors.color;
|
|
121
|
+
}
|
|
122
|
+
return "url(#".concat(gradientId, ")");
|
|
123
|
+
};
|
|
124
|
+
// Get glow color for hover effect
|
|
125
|
+
var getGlowColor = function () {
|
|
126
|
+
if (getColors.type === "solid") {
|
|
127
|
+
return getColors.color;
|
|
128
|
+
}
|
|
129
|
+
return getColors.from;
|
|
130
|
+
};
|
|
131
|
+
var resolveSegmentFill = function (factor) {
|
|
132
|
+
if (getColors.type === "solid") {
|
|
133
|
+
return getColors.color;
|
|
134
|
+
}
|
|
135
|
+
return interpolateHexColor(getColors.from, getColors.to, factor);
|
|
136
|
+
};
|
|
137
|
+
return (React__default.createElement(motion.div, __assign({ ref: containerRef, className: cn(theme.baseStyle, className), style: { width: containerSize, height: containerSize }, onMouseEnter: handleMouseEnter, onMouseLeave: handleMouseLeave, role: "progressbar", "aria-valuenow": safePercentage, "aria-valuemin": 0, "aria-valuemax": 100, "aria-label": "Progress: ".concat(safePercentage, "%") }, props),
|
|
138
|
+
React__default.createElement("svg", { viewBox: "0 0 ".concat(svgSize, " ").concat(svgSize), width: "100%", height: "100%", className: "overflow-visible relative z-10 rounded-full", style: {
|
|
139
|
+
filter: isHovered
|
|
140
|
+
? "drop-shadow(0 4px 4px ".concat(getGlowColor(), "60)")
|
|
141
|
+
: "none",
|
|
142
|
+
transition: "filter 1s ease",
|
|
143
|
+
} },
|
|
144
|
+
React__default.createElement("defs", null, getColors.type === "gradient" && (React__default.createElement("linearGradient", { id: gradientId, x1: "0%", y1: "0%", x2: "100%", y2: "0%" },
|
|
145
|
+
React__default.createElement("stop", { offset: "0%", stopColor: getColors.from }),
|
|
146
|
+
React__default.createElement("stop", { offset: "100%", stopColor: getColors.to })))),
|
|
147
|
+
isSegmentedVariant ? (React__default.createElement("g", null,
|
|
148
|
+
segmentDefinitions.map(function (segment, index) {
|
|
149
|
+
var _a;
|
|
150
|
+
return (React__default.createElement("path", { key: "donut-track-".concat(index), d: segment.trackPath, fill: ((_a = theme.colors) === null || _a === void 0 ? void 0 : _a.track) || "#e5e7eb", opacity: 0.25 }));
|
|
151
|
+
}),
|
|
152
|
+
segmentDefinitions.map(function (segment, index) {
|
|
153
|
+
return segment.activePath ? (React__default.createElement(motion.path, { key: "donut-active-".concat(index), d: segment.activePath, fill: resolveSegmentFill(segment.colorFactor), initial: { opacity: 0, scale: 0.95 }, animate: hasAnimated ? { opacity: 1, scale: 1 } : {}, transition: showAnimation && !shouldReduceMotion
|
|
154
|
+
? __assign({}, getSpringAnimation(CIRCULAR_CHART_ANIMATIONS.donut.preset, shouldReduceMotion, CIRCULAR_CHART_ANIMATIONS.donut.initialDelay + getStaggerDelay(index, 0.015))) : { duration: 0 }, style: { transformOrigin: "50% 50%" } })) : null;
|
|
155
|
+
}))) : (React__default.createElement(React__default.Fragment, null,
|
|
156
|
+
React__default.createElement("circle", { cx: center, cy: center, r: radius, fill: "none", stroke: "#000000", strokeWidth: strokeWidth > 2 ? strokeWidth - 2 : 1, opacity: 0.05 }),
|
|
157
|
+
React__default.createElement(motion.circle, { cx: center, cy: center, r: radius, fill: "none", stroke: getStroke(), strokeWidth: strokeWidth, strokeLinecap: "round", strokeDasharray: circumference, initial: { strokeDashoffset: circumference }, animate: hasAnimated ? { strokeDashoffset: progressOffset } : {}, transition: showAnimation && !shouldReduceMotion
|
|
158
|
+
? getSpringAnimation(CIRCULAR_CHART_ANIMATIONS.donut.preset, shouldReduceMotion, CIRCULAR_CHART_ANIMATIONS.donut.initialDelay)
|
|
159
|
+
: { duration: 0 }, transform: "rotate(-90 ".concat(center, " ").concat(center, ")"), style: {
|
|
160
|
+
filter: isHovered ? "url(#glow-".concat(gradientId, ")") : "none",
|
|
161
|
+
} })))),
|
|
162
|
+
React__default.createElement("div", { className: "absolute inset-0 flex flex-col items-center justify-center text-center z-20" },
|
|
163
|
+
React__default.createElement("div", { className: cn((_b = theme.text) === null || _b === void 0 ? void 0 : _b.label) }, label !== undefined ? label : "".concat(safePercentage, "%")),
|
|
164
|
+
subtitle && React__default.createElement("div", { className: cn((_c = theme.text) === null || _c === void 0 ? void 0 : _c.subtitle) }, subtitle),
|
|
165
|
+
children && React__default.createElement("div", null, children))));
|
|
166
|
+
};
|
|
167
|
+
DonutChart.displayName = "DonutChart";
|
|
168
|
+
|
|
169
|
+
export { DonutChart };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Default theme for the DonutChart component
|
|
3
|
+
*/
|
|
4
|
+
var donutChartTheme = {
|
|
5
|
+
// Base container styles
|
|
6
|
+
baseStyle: "relative flex items-center justify-center transition-all duration-300 cursor-default",
|
|
7
|
+
// Background track styling
|
|
8
|
+
track: "text-[var(--color-border)]",
|
|
9
|
+
// Progress arc styling
|
|
10
|
+
progress: "text-[var(--color-primary)] transition-all duration-300",
|
|
11
|
+
// Text styling
|
|
12
|
+
text: {
|
|
13
|
+
label: "text-2xl font-bold text-[var(--color-text-primary)] transition-colors duration-300 tracking-tight",
|
|
14
|
+
subtitle: "text-sm text-[var(--color-text-secondary)] mt-1 transition-colors duration-300",
|
|
15
|
+
},
|
|
16
|
+
// Default color palette
|
|
17
|
+
colors: {
|
|
18
|
+
primary: "#3b82f6", // blue-500
|
|
19
|
+
secondary: "#10b981", // emerald-500
|
|
20
|
+
track: "#e5e7eb", // neutral-200
|
|
21
|
+
},
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export { donutChartTheme };
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
import { __rest, __assign } from '/Users/ggn/Development/ui-flik/node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import React__default, { useState, useMemo, useEffect } from 'react';
|
|
3
|
+
import { useReducedMotion, motion, useMotionValue, useTransform, animate } from 'motion/react';
|
|
4
|
+
import { cn } from '../../../utils/cn.js';
|
|
5
|
+
import { multiSegmentDonutChartTheme } from './MultiSegmentDonutChart.theme.js';
|
|
6
|
+
import { describeRingSegmentPath, clamp, describeArcPathClockwise } from './donut-utils.js';
|
|
7
|
+
|
|
8
|
+
var AnimatedSegment = function (_a) {
|
|
9
|
+
var center = _a.center, innerRadius = _a.innerRadius, outerRadius = _a.outerRadius, startAngle = _a.startAngle, endAngle = _a.endAngle, color = _a.color, delay = _a.delay, duration = _a.duration, shouldAnimate = _a.shouldAnimate, shouldReduceMotion = _a.shouldReduceMotion, isHovered = _a.isHovered, isFaded = _a.isFaded, onMouseEnter = _a.onMouseEnter, onMouseLeave = _a.onMouseLeave, onClick = _a.onClick, clickable = _a.clickable;
|
|
10
|
+
// Motion value for animation progress (0 to 1)
|
|
11
|
+
var progress = useMotionValue(0);
|
|
12
|
+
// Transform progress to current end angle
|
|
13
|
+
var currentEndAngle = useTransform(progress, [0, 1], [startAngle, endAngle]);
|
|
14
|
+
// Generate path based on current angle
|
|
15
|
+
var _b = useState(function () {
|
|
16
|
+
return describeRingSegmentPath(center, center, innerRadius, outerRadius, startAngle, startAngle // Start with zero-width segment
|
|
17
|
+
);
|
|
18
|
+
}), path = _b[0], setPath = _b[1];
|
|
19
|
+
// Update path when currentEndAngle changes
|
|
20
|
+
useEffect(function () {
|
|
21
|
+
var unsubscribe = currentEndAngle.on("change", function (latest) {
|
|
22
|
+
var newPath = describeRingSegmentPath(center, center, innerRadius, outerRadius, startAngle, latest);
|
|
23
|
+
setPath(newPath);
|
|
24
|
+
});
|
|
25
|
+
return function () { return unsubscribe(); };
|
|
26
|
+
}, [center, innerRadius, outerRadius, startAngle, currentEndAngle]);
|
|
27
|
+
// Trigger animation
|
|
28
|
+
useEffect(function () {
|
|
29
|
+
if (shouldReduceMotion) {
|
|
30
|
+
// Skip animation for accessibility - show full segment immediately
|
|
31
|
+
progress.set(1);
|
|
32
|
+
}
|
|
33
|
+
else if (shouldAnimate) {
|
|
34
|
+
// Run the drawing animation with spring physics (same as base DonutChart)
|
|
35
|
+
var controls_1 = animate(progress, 1, {
|
|
36
|
+
type: "spring",
|
|
37
|
+
stiffness: 80, // Same as CIRCULAR_CHART_ANIMATIONS.donut.preset ('smooth')
|
|
38
|
+
damping: 20,
|
|
39
|
+
delay: delay,
|
|
40
|
+
});
|
|
41
|
+
return function () { return controls_1.stop(); };
|
|
42
|
+
}
|
|
43
|
+
// If shouldAnimate is false, progress stays at 0 (waiting state)
|
|
44
|
+
}, [shouldAnimate, shouldReduceMotion, progress, duration, delay]);
|
|
45
|
+
return (React__default.createElement(motion.path, { d: path, fill: color, animate: {
|
|
46
|
+
opacity: isFaded ? 0.6 : 1,
|
|
47
|
+
scale: isHovered ? 1.025 : 1,
|
|
48
|
+
}, transition: {
|
|
49
|
+
scale: { duration: 0.2 },
|
|
50
|
+
opacity: { duration: 0.2 },
|
|
51
|
+
}, style: {
|
|
52
|
+
transformOrigin: "50% 50%",
|
|
53
|
+
cursor: clickable ? "pointer" : "default",
|
|
54
|
+
filter: isHovered
|
|
55
|
+
? "drop-shadow(0 4px 8px ".concat(color, "60)")
|
|
56
|
+
: "none",
|
|
57
|
+
}, onMouseEnter: onMouseEnter, onMouseLeave: onMouseLeave, onClick: onClick }));
|
|
58
|
+
};
|
|
59
|
+
var AnimatedStrokeSegment = function (_a) {
|
|
60
|
+
var center = _a.center, radius = _a.radius, strokeWidth = _a.strokeWidth, startAngle = _a.startAngle, endAngle = _a.endAngle, color = _a.color, delay = _a.delay, shouldAnimate = _a.shouldAnimate, shouldReduceMotion = _a.shouldReduceMotion, isHovered = _a.isHovered, isFaded = _a.isFaded, onMouseEnter = _a.onMouseEnter, onMouseLeave = _a.onMouseLeave, onClick = _a.onClick, clickable = _a.clickable;
|
|
61
|
+
// Calculate cap compensation - rounded caps extend by strokeWidth/2 at each end
|
|
62
|
+
// Convert to degrees: (strokeWidth/2) / radius * (180/π)
|
|
63
|
+
var capCompensationDegrees = ((strokeWidth / 2) / radius) * (180 / Math.PI);
|
|
64
|
+
// Adjust angles to account for rounded cap protrusion
|
|
65
|
+
var adjustedStartAngle = startAngle + capCompensationDegrees;
|
|
66
|
+
var adjustedEndAngle = endAngle - capCompensationDegrees;
|
|
67
|
+
// Ensure we have a valid arc (end > start)
|
|
68
|
+
var validEndAngle = Math.max(adjustedEndAngle, adjustedStartAngle + 1);
|
|
69
|
+
// Calculate arc path (clockwise for proper animation direction) and length
|
|
70
|
+
var arcPath = describeArcPathClockwise(center, center, radius, adjustedStartAngle, validEndAngle);
|
|
71
|
+
var sweepAngle = validEndAngle - adjustedStartAngle;
|
|
72
|
+
var arcLength = (sweepAngle / 360) * 2 * Math.PI * radius;
|
|
73
|
+
return (React__default.createElement(motion.path, { d: arcPath, fill: "none", stroke: color, strokeWidth: strokeWidth, strokeLinecap: "round", strokeDasharray: arcLength, initial: { strokeDashoffset: arcLength, opacity: 1, scale: 1 }, animate: {
|
|
74
|
+
strokeDashoffset: shouldAnimate ? 0 : arcLength,
|
|
75
|
+
opacity: isFaded ? 0.6 : 1,
|
|
76
|
+
scale: isHovered ? 1.025 : 1,
|
|
77
|
+
}, transition: {
|
|
78
|
+
strokeDashoffset: shouldReduceMotion
|
|
79
|
+
? { duration: 0 }
|
|
80
|
+
: {
|
|
81
|
+
type: "spring",
|
|
82
|
+
stiffness: 80,
|
|
83
|
+
damping: 20,
|
|
84
|
+
delay: delay,
|
|
85
|
+
},
|
|
86
|
+
scale: { duration: 0.2 },
|
|
87
|
+
opacity: { duration: 0.2 },
|
|
88
|
+
}, style: {
|
|
89
|
+
transformOrigin: "50% 50%",
|
|
90
|
+
cursor: clickable ? "pointer" : "default",
|
|
91
|
+
filter: isHovered ? "drop-shadow(0 4px 8px ".concat(color, "60)") : "none",
|
|
92
|
+
}, onMouseEnter: onMouseEnter, onMouseLeave: onMouseLeave, onClick: onClick }));
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* MultiSegmentDonutChart component for displaying multiple data values in a circular chart
|
|
96
|
+
* Each segment represents a different data point with its own value and optional color
|
|
97
|
+
*/
|
|
98
|
+
var MultiSegmentDonutChart = function (_a) {
|
|
99
|
+
var data = _a.data, _b = _a.size, size = _b === void 0 ? 200 : _b, _c = _a.thickness, thickness = _c === void 0 ? 4 : _c, _d = _a.segmentGap, segmentGap = _d === void 0 ? 0.05 : _d, _e = _a.showAnimation, showAnimation = _e === void 0 ? true : _e, _f = _a.showLegend, showLegend = _f === void 0 ? false : _f, _g = _a.legendPosition, legendPosition = _g === void 0 ? "right" : _g, centerContent = _a.centerContent, className = _a.className, themeOverrides = _a.theme, onSegmentHover = _a.onSegmentHover, onSegmentClick = _a.onSegmentClick, _h = _a.roundedCaps, roundedCaps = _h === void 0 ? true : _h, restProps = __rest(_a, ["data", "size", "thickness", "segmentGap", "showAnimation", "showLegend", "legendPosition", "centerContent", "className", "theme", "onSegmentHover", "onSegmentClick", "roundedCaps"]);
|
|
100
|
+
var _j = useState(null), hoveredSegment = _j[0], setHoveredSegment = _j[1];
|
|
101
|
+
var _k = useState(false), hasAnimated = _k[0], setHasAnimated = _k[1];
|
|
102
|
+
var shouldReduceMotion = useReducedMotion();
|
|
103
|
+
// Merge theme with overrides
|
|
104
|
+
var theme = __assign(__assign(__assign({}, multiSegmentDonutChartTheme), (themeOverrides || {})), { legend: __assign(__assign({}, multiSegmentDonutChartTheme.legend), ((themeOverrides === null || themeOverrides === void 0 ? void 0 : themeOverrides.legend) || {})), colors: (themeOverrides === null || themeOverrides === void 0 ? void 0 : themeOverrides.colors) || multiSegmentDonutChartTheme.colors || [] });
|
|
105
|
+
// Calculate SVG parameters
|
|
106
|
+
var svgSize = 100;
|
|
107
|
+
var center = svgSize / 2;
|
|
108
|
+
var strokeWidth = thickness * 2;
|
|
109
|
+
var radius = (svgSize - strokeWidth) / 2;
|
|
110
|
+
var innerRadius = Math.max(0, radius - strokeWidth / 2);
|
|
111
|
+
var outerRadius = radius + strokeWidth / 2;
|
|
112
|
+
// Validate and prepare data
|
|
113
|
+
var validatedData = useMemo(function () {
|
|
114
|
+
if (!data || data.length === 0) {
|
|
115
|
+
return [];
|
|
116
|
+
}
|
|
117
|
+
// Ensure percentages sum to 100 or less
|
|
118
|
+
var totalPercentage = data.reduce(function (sum, segment) { return sum + segment.percentage; }, 0);
|
|
119
|
+
if (totalPercentage > 100) {
|
|
120
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
121
|
+
console.warn("[MultiSegmentDonutChart]: Total percentage (".concat(totalPercentage, ") exceeds 100%. Normalizing values."));
|
|
122
|
+
}
|
|
123
|
+
// Normalize percentages
|
|
124
|
+
return data.map(function (segment) { return (__assign(__assign({}, segment), { percentage: (segment.percentage / totalPercentage) * 100 })); });
|
|
125
|
+
}
|
|
126
|
+
return data;
|
|
127
|
+
}, [data]);
|
|
128
|
+
// Calculate segment paths, colors, and animation timings
|
|
129
|
+
var segments = useMemo(function () {
|
|
130
|
+
if (validatedData.length === 0) {
|
|
131
|
+
return [];
|
|
132
|
+
}
|
|
133
|
+
var gapRatio = clamp(segmentGap, 0, 0.8);
|
|
134
|
+
var totalGapDegrees = validatedData.length * 360 * gapRatio / validatedData.length;
|
|
135
|
+
var effectiveCircle = 360 - totalGapDegrees;
|
|
136
|
+
var currentAngle = 0; // Start at 12 o'clock (top)
|
|
137
|
+
var cumulativeDelay = 0; // Track cumulative delay for sequential animation
|
|
138
|
+
// Base duration for a full 100% segment (in seconds)
|
|
139
|
+
var baseDuration = 0.6;
|
|
140
|
+
return validatedData.map(function (segment, index) {
|
|
141
|
+
// Calculate the angle for this segment
|
|
142
|
+
var segmentAngle = (segment.percentage / 100) * effectiveCircle;
|
|
143
|
+
var gapAngle = 360 * gapRatio / validatedData.length;
|
|
144
|
+
var startAngle = currentAngle;
|
|
145
|
+
var endAngle = currentAngle + segmentAngle;
|
|
146
|
+
// Get color from segment or theme palette
|
|
147
|
+
var color = segment.color ||
|
|
148
|
+
(theme.colors && theme.colors[index % theme.colors.length]) ||
|
|
149
|
+
"#3b82f6";
|
|
150
|
+
// Generate the SVG path (full segment)
|
|
151
|
+
var path = describeRingSegmentPath(center, center, innerRadius, outerRadius, startAngle, endAngle);
|
|
152
|
+
// Calculate animation duration proportional to segment size
|
|
153
|
+
// Minimum duration of 0.15s to ensure visibility
|
|
154
|
+
var duration = Math.max(0.15, (segment.percentage / 100) * baseDuration);
|
|
155
|
+
// This segment starts after all previous segments complete
|
|
156
|
+
var delay = cumulativeDelay;
|
|
157
|
+
// Add this segment's duration to cumulative delay for next segment
|
|
158
|
+
cumulativeDelay += duration;
|
|
159
|
+
// Move to next segment start position
|
|
160
|
+
currentAngle = endAngle + gapAngle;
|
|
161
|
+
return __assign(__assign({}, segment), { path: path, color: color, startAngle: startAngle, endAngle: endAngle, animationDuration: duration, animationDelay: delay });
|
|
162
|
+
});
|
|
163
|
+
}, [
|
|
164
|
+
validatedData,
|
|
165
|
+
center,
|
|
166
|
+
innerRadius,
|
|
167
|
+
outerRadius,
|
|
168
|
+
segmentGap,
|
|
169
|
+
theme.colors,
|
|
170
|
+
]);
|
|
171
|
+
// Handle component mount for animation
|
|
172
|
+
useEffect(function () {
|
|
173
|
+
if (showAnimation && !shouldReduceMotion) {
|
|
174
|
+
setHasAnimated(true);
|
|
175
|
+
}
|
|
176
|
+
else {
|
|
177
|
+
// If animations disabled, immediately show final state
|
|
178
|
+
setHasAnimated(true);
|
|
179
|
+
}
|
|
180
|
+
}, [showAnimation, shouldReduceMotion]);
|
|
181
|
+
// Handle hover interactions
|
|
182
|
+
var handleSegmentMouseEnter = function (index) {
|
|
183
|
+
setHoveredSegment(index);
|
|
184
|
+
if (onSegmentHover) {
|
|
185
|
+
onSegmentHover(segments[index]);
|
|
186
|
+
}
|
|
187
|
+
};
|
|
188
|
+
var handleSegmentMouseLeave = function () {
|
|
189
|
+
setHoveredSegment(null);
|
|
190
|
+
if (onSegmentHover) {
|
|
191
|
+
onSegmentHover(null);
|
|
192
|
+
}
|
|
193
|
+
};
|
|
194
|
+
var handleSegmentClick = function (index) {
|
|
195
|
+
if (onSegmentClick) {
|
|
196
|
+
onSegmentClick(segments[index]);
|
|
197
|
+
}
|
|
198
|
+
};
|
|
199
|
+
var containerSize = typeof size === "number" ? "".concat(size, "px") : size;
|
|
200
|
+
// Layout classes based on legend position
|
|
201
|
+
var getLayoutClasses = function () {
|
|
202
|
+
if (!showLegend) {
|
|
203
|
+
return "";
|
|
204
|
+
}
|
|
205
|
+
switch (legendPosition) {
|
|
206
|
+
case "top":
|
|
207
|
+
return "flex-col";
|
|
208
|
+
case "bottom":
|
|
209
|
+
return "flex-col-reverse";
|
|
210
|
+
case "left":
|
|
211
|
+
return "flex-row-reverse";
|
|
212
|
+
case "right":
|
|
213
|
+
default:
|
|
214
|
+
return "flex-row";
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
var renderLegend = function () {
|
|
218
|
+
var _a;
|
|
219
|
+
if (!showLegend) {
|
|
220
|
+
return null;
|
|
221
|
+
}
|
|
222
|
+
return (React__default.createElement("div", { className: cn((_a = theme.legend) === null || _a === void 0 ? void 0 : _a.container, legendPosition === "top" || legendPosition === "bottom" ? "flex-row flex-wrap" : "flex-col") }, segments.map(function (segment, index) {
|
|
223
|
+
var _a, _b, _c, _d;
|
|
224
|
+
return (React__default.createElement("div", { key: "legend-".concat(index), className: cn((_a = theme.legend) === null || _a === void 0 ? void 0 : _a.item), onMouseEnter: function () { return handleSegmentMouseEnter(index); }, onMouseLeave: handleSegmentMouseLeave, onClick: function () { return handleSegmentClick(index); }, style: {
|
|
225
|
+
opacity: hoveredSegment !== null && hoveredSegment !== index ? 0.5 : 1,
|
|
226
|
+
} },
|
|
227
|
+
React__default.createElement("div", { className: cn((_b = theme.legend) === null || _b === void 0 ? void 0 : _b.colorDot), style: { backgroundColor: segment.color } }),
|
|
228
|
+
segment.label && (React__default.createElement("span", { className: cn((_c = theme.legend) === null || _c === void 0 ? void 0 : _c.label) }, segment.label)),
|
|
229
|
+
React__default.createElement("span", { className: cn((_d = theme.legend) === null || _d === void 0 ? void 0 : _d.value) },
|
|
230
|
+
segment.value,
|
|
231
|
+
" (",
|
|
232
|
+
segment.percentage.toFixed(1),
|
|
233
|
+
"%)")));
|
|
234
|
+
})));
|
|
235
|
+
};
|
|
236
|
+
if (!data || data.length === 0) {
|
|
237
|
+
return (React__default.createElement("div", { className: cn(theme.baseStyle, className), style: { width: containerSize, height: containerSize } },
|
|
238
|
+
React__default.createElement("div", { className: "text-sm text-[var(--color-text-secondary)]" }, "No data")));
|
|
239
|
+
}
|
|
240
|
+
return (React__default.createElement("div", { className: cn("flex gap-4 items-center", getLayoutClasses(), className) },
|
|
241
|
+
React__default.createElement(motion.div, __assign({ className: cn(theme.baseStyle), style: { width: containerSize, height: containerSize }, role: "img", "aria-label": "Donut chart with ".concat(segments.length, " segments") }, restProps),
|
|
242
|
+
React__default.createElement("svg", { viewBox: "0 0 ".concat(svgSize, " ").concat(svgSize), width: "100%", height: "100%", className: "overflow-visible relative z-10" },
|
|
243
|
+
React__default.createElement("circle", { cx: center, cy: center, r: radius, fill: "none", stroke: "#000000", strokeWidth: strokeWidth > 2 ? strokeWidth - 2 : 1, opacity: 0.03 }),
|
|
244
|
+
segments.map(function (segment, index) {
|
|
245
|
+
return roundedCaps ? (React__default.createElement(AnimatedStrokeSegment, { key: "segment-".concat(index), center: center, radius: radius, strokeWidth: strokeWidth, startAngle: segment.startAngle, endAngle: segment.endAngle, color: segment.color, delay: segment.animationDelay, shouldAnimate: showAnimation && hasAnimated, shouldReduceMotion: shouldReduceMotion, isHovered: hoveredSegment === index, isFaded: hoveredSegment !== null && hoveredSegment !== index, onMouseEnter: function () { return handleSegmentMouseEnter(index); }, onMouseLeave: handleSegmentMouseLeave, onClick: function () { return handleSegmentClick(index); }, clickable: !!onSegmentClick })) : (React__default.createElement(AnimatedSegment, { key: "segment-".concat(index), center: center, innerRadius: innerRadius, outerRadius: outerRadius, startAngle: segment.startAngle, endAngle: segment.endAngle, color: segment.color, delay: segment.animationDelay, duration: segment.animationDuration, shouldAnimate: showAnimation && hasAnimated, shouldReduceMotion: shouldReduceMotion, isHovered: hoveredSegment === index, isFaded: hoveredSegment !== null && hoveredSegment !== index, onMouseEnter: function () { return handleSegmentMouseEnter(index); }, onMouseLeave: handleSegmentMouseLeave, onClick: function () { return handleSegmentClick(index); }, clickable: !!onSegmentClick }));
|
|
246
|
+
})),
|
|
247
|
+
centerContent && (React__default.createElement("div", { className: cn(theme.centerContent) }, centerContent))),
|
|
248
|
+
renderLegend()));
|
|
249
|
+
};
|
|
250
|
+
MultiSegmentDonutChart.displayName = "MultiSegmentDonutChart";
|
|
251
|
+
|
|
252
|
+
export { MultiSegmentDonutChart };
|