wimui 0.1.0
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/LICENSE +21 -0
- package/README.ja.md +621 -0
- package/README.md +616 -0
- package/dist/WimProvider.cjs +2 -0
- package/dist/WimProvider.d.ts +52 -0
- package/dist/WimProvider.js +40 -0
- package/dist/_virtual/_rolldown/runtime.cjs +2 -0
- package/dist/ai/code-diff-viewer.cjs +2 -0
- package/dist/ai/code-diff-viewer.d.ts +1 -0
- package/dist/ai/code-diff-viewer.js +3 -0
- package/dist/ai/interactive-graph.cjs +2 -0
- package/dist/ai/interactive-graph.d.ts +1 -0
- package/dist/ai/interactive-graph.js +3 -0
- package/dist/ai/markdown-renderer.cjs +2 -0
- package/dist/ai/markdown-renderer.d.ts +1 -0
- package/dist/ai/markdown-renderer.js +3 -0
- package/dist/ai/streaming-text.cjs +2 -0
- package/dist/ai/streaming-text.d.ts +1 -0
- package/dist/ai/streaming-text.js +3 -0
- package/dist/ai-core.d.ts +12 -0
- package/dist/ai.cjs +2 -0
- package/dist/ai.d.ts +1 -0
- package/dist/ai.js +14 -0
- package/dist/charts.cjs +2 -0
- package/dist/charts.d.ts +13 -0
- package/dist/charts.js +14 -0
- package/dist/components/_internal/BaseListItem/BaseListItem.cjs +2 -0
- package/dist/components/_internal/BaseListItem/BaseListItem.d.ts +82 -0
- package/dist/components/_internal/BaseListItem/BaseListItem.js +30 -0
- package/dist/components/_internal/BaseListItem/base-list-item.module.cjs +2 -0
- package/dist/components/_internal/BaseListItem/base-list-item.module.js +13 -0
- package/dist/components/_internal/BaseListItem/index.d.ts +1 -0
- package/dist/components/_internal/FeedbackCloseButton.cjs +2 -0
- package/dist/components/_internal/FeedbackCloseButton.d.ts +39 -0
- package/dist/components/_internal/FeedbackCloseButton.js +24 -0
- package/dist/components/_internal/FeedbackIcon.cjs +2 -0
- package/dist/components/_internal/FeedbackIcon.d.ts +39 -0
- package/dist/components/_internal/FeedbackIcon.js +27 -0
- package/dist/components/_internal/FieldCharacterCount/FieldCharacterCount.cjs +2 -0
- package/dist/components/_internal/FieldCharacterCount/FieldCharacterCount.d.ts +17 -0
- package/dist/components/_internal/FieldCharacterCount/FieldCharacterCount.js +25 -0
- package/dist/components/_internal/FieldCharacterCount/field-character-count.module.cjs +2 -0
- package/dist/components/_internal/FieldCharacterCount/field-character-count.module.js +10 -0
- package/dist/components/_internal/FieldLabelContent.cjs +2 -0
- package/dist/components/_internal/FieldLabelContent.d.ts +43 -0
- package/dist/components/_internal/FieldLabelContent.js +31 -0
- package/dist/components/_internal/IndicatorBase.cjs +2 -0
- package/dist/components/_internal/IndicatorBase.d.ts +77 -0
- package/dist/components/_internal/IndicatorBase.js +20 -0
- package/dist/components/_internal/IndicatorSlider.d.ts +50 -0
- package/dist/components/_internal/OverlayBase.cjs +2 -0
- package/dist/components/_internal/OverlayBase.d.ts +72 -0
- package/dist/components/_internal/OverlayBase.js +54 -0
- package/dist/components/_internal/StatusContent.cjs +2 -0
- package/dist/components/_internal/StatusContent.d.ts +50 -0
- package/dist/components/_internal/StatusContent.js +37 -0
- package/dist/components/_internal/field-label-content.module.cjs +2 -0
- package/dist/components/_internal/field-label-content.module.js +8 -0
- package/dist/components/_internal/mergeRefs.cjs +2 -0
- package/dist/components/_internal/mergeRefs.d.ts +6 -0
- package/dist/components/_internal/mergeRefs.js +11 -0
- package/dist/components/_internal/overlay-base.module.cjs +2 -0
- package/dist/components/_internal/overlay-base.module.js +5 -0
- package/dist/components/_internal/status-content.module.cjs +2 -0
- package/dist/components/_internal/status-content.module.js +15 -0
- package/dist/components/_internal/useFloatingElement.cjs +2 -0
- package/dist/components/_internal/useFloatingElement.d.ts +69 -0
- package/dist/components/_internal/useFloatingElement.js +37 -0
- package/dist/components/_internal/useIndicator.cjs +2 -0
- package/dist/components/_internal/useIndicator.d.ts +30 -0
- package/dist/components/_internal/useIndicator.js +45 -0
- package/dist/components/ai/AIResponseFeedback/AIResponseFeedback.cjs +2 -0
- package/dist/components/ai/AIResponseFeedback/AIResponseFeedback.d.ts +25 -0
- package/dist/components/ai/AIResponseFeedback/AIResponseFeedback.js +68 -0
- package/dist/components/ai/AIResponseFeedback/airesponse-feedback.module.cjs +2 -0
- package/dist/components/ai/AIResponseFeedback/airesponse-feedback.module.js +11 -0
- package/dist/components/ai/AgentStatus/AgentStatus.cjs +2 -0
- package/dist/components/ai/AgentStatus/AgentStatus.d.ts +24 -0
- package/dist/components/ai/AgentStatus/AgentStatus.js +41 -0
- package/dist/components/ai/AgentStatus/agent-status.module.cjs +2 -0
- package/dist/components/ai/AgentStatus/agent-status.module.js +20 -0
- package/dist/components/ai/ArtifactsOverlay/ArtifactsOverlay.d.ts +23 -0
- package/dist/components/ai/ChatUI/ChatUI.cjs +2 -0
- package/dist/components/ai/ChatUI/ChatUI.d.ts +82 -0
- package/dist/components/ai/ChatUI/ChatUI.js +132 -0
- package/dist/components/ai/ChatUI/chat-ui.module.cjs +2 -0
- package/dist/components/ai/ChatUI/chat-ui.module.js +47 -0
- package/dist/components/ai/CodeBlock/CodeBlock.cjs +4 -0
- package/dist/components/ai/CodeBlock/CodeBlock.d.ts +30 -0
- package/dist/components/ai/CodeBlock/CodeBlock.js +82 -0
- package/dist/components/ai/CodeBlock/code-block.module.cjs +2 -0
- package/dist/components/ai/CodeBlock/code-block.module.js +21 -0
- package/dist/components/ai/CodeDiffViewer/CodeDiffViewer.cjs +4 -0
- package/dist/components/ai/CodeDiffViewer/CodeDiffViewer.d.ts +33 -0
- package/dist/components/ai/CodeDiffViewer/CodeDiffViewer.js +256 -0
- package/dist/components/ai/CodeDiffViewer/code-diff-viewer.module.cjs +2 -0
- package/dist/components/ai/CodeDiffViewer/code-diff-viewer.module.js +36 -0
- package/dist/components/ai/InteractiveGraph/InteractiveGraph.cjs +2 -0
- package/dist/components/ai/InteractiveGraph/InteractiveGraph.d.ts +21 -0
- package/dist/components/ai/InteractiveGraph/InteractiveGraph.js +32 -0
- package/dist/components/ai/InteractiveGraph/interactive-graph.module.cjs +2 -0
- package/dist/components/ai/InteractiveGraph/interactive-graph.module.js +9 -0
- package/dist/components/ai/MarkdownRenderer/MarkdownRenderer.cjs +2 -0
- package/dist/components/ai/MarkdownRenderer/MarkdownRenderer.d.ts +14 -0
- package/dist/components/ai/MarkdownRenderer/MarkdownRenderer.js +108 -0
- package/dist/components/ai/MarkdownRenderer/markdown-renderer.module.cjs +2 -0
- package/dist/components/ai/MarkdownRenderer/markdown-renderer.module.js +17 -0
- package/dist/components/ai/ModelSelector/ModelSelector.cjs +2 -0
- package/dist/components/ai/ModelSelector/ModelSelector.d.ts +76 -0
- package/dist/components/ai/ModelSelector/ModelSelector.js +178 -0
- package/dist/components/ai/ModelSelector/model-selector.module.cjs +2 -0
- package/dist/components/ai/ModelSelector/model-selector.module.js +30 -0
- package/dist/components/ai/PromptInput/PromptInput.cjs +2 -0
- package/dist/components/ai/PromptInput/PromptInput.d.ts +42 -0
- package/dist/components/ai/PromptInput/PromptInput.js +106 -0
- package/dist/components/ai/PromptInput/prompt-input.module.cjs +2 -0
- package/dist/components/ai/PromptInput/prompt-input.module.js +17 -0
- package/dist/components/ai/SourceCitation/SourceCitation.cjs +2 -0
- package/dist/components/ai/SourceCitation/SourceCitation.d.ts +35 -0
- package/dist/components/ai/SourceCitation/SourceCitation.js +71 -0
- package/dist/components/ai/SourceCitation/source-citation.module.cjs +2 -0
- package/dist/components/ai/SourceCitation/source-citation.module.js +15 -0
- package/dist/components/ai/StreamingText/StreamingText.cjs +2 -0
- package/dist/components/ai/StreamingText/StreamingText.d.ts +21 -0
- package/dist/components/ai/StreamingText/StreamingText.js +26 -0
- package/dist/components/ai/StreamingText/streaming-text.module.cjs +2 -0
- package/dist/components/ai/StreamingText/streaming-text.module.js +9 -0
- package/dist/components/ai/Terminal/Terminal.cjs +3 -0
- package/dist/components/ai/Terminal/Terminal.d.ts +36 -0
- package/dist/components/ai/Terminal/Terminal.js +143 -0
- package/dist/components/ai/Terminal/terminal.module.cjs +2 -0
- package/dist/components/ai/Terminal/terminal.module.js +21 -0
- package/dist/components/ai/ThoughtProcess/ThoughtProcess.cjs +2 -0
- package/dist/components/ai/ThoughtProcess/ThoughtProcess.d.ts +37 -0
- package/dist/components/ai/ThoughtProcess/ThoughtProcess.js +82 -0
- package/dist/components/ai/ThoughtProcess/thought-process.module.cjs +2 -0
- package/dist/components/ai/ThoughtProcess/thought-process.module.js +27 -0
- package/dist/components/ai/ThreadList/ThreadList.cjs +2 -0
- package/dist/components/ai/ThreadList/ThreadList.d.ts +56 -0
- package/dist/components/ai/ThreadList/ThreadList.js +87 -0
- package/dist/components/ai/ThreadList/thread-list.module.cjs +2 -0
- package/dist/components/ai/ThreadList/thread-list.module.js +21 -0
- package/dist/components/ai/UsageMeter/UsageMeter.cjs +2 -0
- package/dist/components/ai/UsageMeter/UsageMeter.d.ts +43 -0
- package/dist/components/ai/UsageMeter/UsageMeter.js +40 -0
- package/dist/components/ai/UsageMeter/usage-meter.module.cjs +2 -0
- package/dist/components/ai/UsageMeter/usage-meter.module.js +16 -0
- package/dist/components/ai/VoiceVisualizer/VoiceVisualizer.cjs +2 -0
- package/dist/components/ai/VoiceVisualizer/VoiceVisualizer.d.ts +34 -0
- package/dist/components/ai/VoiceVisualizer/VoiceVisualizer.js +65 -0
- package/dist/components/ai/VoiceVisualizer/voice-visualizer.module.cjs +2 -0
- package/dist/components/ai/VoiceVisualizer/voice-visualizer.module.js +20 -0
- package/dist/components/charts/AreaChart/AreaChart.cjs +2 -0
- package/dist/components/charts/AreaChart/AreaChart.d.ts +46 -0
- package/dist/components/charts/AreaChart/AreaChart.js +89 -0
- package/dist/components/charts/AreaChart/area-chart.module.cjs +2 -0
- package/dist/components/charts/AreaChart/area-chart.module.js +8 -0
- package/dist/components/charts/BarChart/BarChart.cjs +2 -0
- package/dist/components/charts/BarChart/BarChart.d.ts +41 -0
- package/dist/components/charts/BarChart/BarChart.js +73 -0
- package/dist/components/charts/BarChart/bar-chart.module.cjs +2 -0
- package/dist/components/charts/BarChart/bar-chart.module.js +8 -0
- package/dist/components/charts/FunnelChart/FunnelChart.cjs +2 -0
- package/dist/components/charts/FunnelChart/FunnelChart.d.ts +36 -0
- package/dist/components/charts/FunnelChart/FunnelChart.js +41 -0
- package/dist/components/charts/FunnelChart/funnel-chart.module.cjs +2 -0
- package/dist/components/charts/FunnelChart/funnel-chart.module.js +8 -0
- package/dist/components/charts/GanttChart/GanttChart.cjs +2 -0
- package/dist/components/charts/GanttChart/GanttChart.d.ts +53 -0
- package/dist/components/charts/GanttChart/GanttChart.js +193 -0
- package/dist/components/charts/GanttChart/gantt-chart.module.cjs +2 -0
- package/dist/components/charts/GanttChart/gantt-chart.module.js +21 -0
- package/dist/components/charts/GaugeChart/GaugeChart.cjs +2 -0
- package/dist/components/charts/GaugeChart/GaugeChart.d.ts +45 -0
- package/dist/components/charts/GaugeChart/GaugeChart.js +48 -0
- package/dist/components/charts/GaugeChart/gauge-chart.module.cjs +2 -0
- package/dist/components/charts/GaugeChart/gauge-chart.module.js +9 -0
- package/dist/components/charts/Heatmap/Heatmap.cjs +2 -0
- package/dist/components/charts/Heatmap/Heatmap.d.ts +44 -0
- package/dist/components/charts/Heatmap/Heatmap.js +94 -0
- package/dist/components/charts/Heatmap/heatmap.module.cjs +2 -0
- package/dist/components/charts/Heatmap/heatmap.module.js +8 -0
- package/dist/components/charts/LineChart/LineChart.cjs +2 -0
- package/dist/components/charts/LineChart/LineChart.d.ts +41 -0
- package/dist/components/charts/LineChart/LineChart.js +74 -0
- package/dist/components/charts/LineChart/line-chart.module.cjs +2 -0
- package/dist/components/charts/LineChart/line-chart.module.js +8 -0
- package/dist/components/charts/PieChart/PieChart.cjs +2 -0
- package/dist/components/charts/PieChart/PieChart.d.ts +35 -0
- package/dist/components/charts/PieChart/PieChart.js +49 -0
- package/dist/components/charts/PieChart/pie-chart.module.cjs +2 -0
- package/dist/components/charts/PieChart/pie-chart.module.js +8 -0
- package/dist/components/charts/RadarChart/RadarChart.cjs +2 -0
- package/dist/components/charts/RadarChart/RadarChart.d.ts +36 -0
- package/dist/components/charts/RadarChart/RadarChart.js +57 -0
- package/dist/components/charts/RadarChart/radar-chart.module.cjs +2 -0
- package/dist/components/charts/RadarChart/radar-chart.module.js +8 -0
- package/dist/components/charts/ScatterChart/ScatterChart.cjs +2 -0
- package/dist/components/charts/ScatterChart/ScatterChart.d.ts +42 -0
- package/dist/components/charts/ScatterChart/ScatterChart.js +71 -0
- package/dist/components/charts/ScatterChart/scatter-chart.module.cjs +2 -0
- package/dist/components/charts/ScatterChart/scatter-chart.module.js +8 -0
- package/dist/components/charts/Sparkline/Sparkline.cjs +2 -0
- package/dist/components/charts/Sparkline/Sparkline.d.ts +40 -0
- package/dist/components/charts/Sparkline/Sparkline.js +131 -0
- package/dist/components/charts/Sparkline/sparkline.module.cjs +2 -0
- package/dist/components/charts/Sparkline/sparkline.module.js +5 -0
- package/dist/components/charts/Treemap/Treemap.cjs +2 -0
- package/dist/components/charts/Treemap/Treemap.d.ts +35 -0
- package/dist/components/charts/Treemap/Treemap.js +67 -0
- package/dist/components/charts/Treemap/treemap.module.cjs +2 -0
- package/dist/components/charts/Treemap/treemap.module.js +8 -0
- package/dist/components/data-display/Accordion/Accordion.cjs +2 -0
- package/dist/components/data-display/Accordion/Accordion.d.ts +60 -0
- package/dist/components/data-display/Accordion/Accordion.js +135 -0
- package/dist/components/data-display/Accordion/accordion.module.cjs +2 -0
- package/dist/components/data-display/Accordion/accordion.module.js +16 -0
- package/dist/components/data-display/Avatar/Avatar.cjs +2 -0
- package/dist/components/data-display/Avatar/Avatar.d.ts +26 -0
- package/dist/components/data-display/Avatar/Avatar.js +34 -0
- package/dist/components/data-display/Avatar/avatar.module.cjs +2 -0
- package/dist/components/data-display/Avatar/avatar.module.js +22 -0
- package/dist/components/data-display/AvatarGroup/AvatarGroup.cjs +2 -0
- package/dist/components/data-display/AvatarGroup/AvatarGroup.d.ts +22 -0
- package/dist/components/data-display/AvatarGroup/AvatarGroup.js +33 -0
- package/dist/components/data-display/AvatarGroup/avatar-group.module.cjs +2 -0
- package/dist/components/data-display/AvatarGroup/avatar-group.module.js +12 -0
- package/dist/components/data-display/Badge/Badge.cjs +2 -0
- package/dist/components/data-display/Badge/Badge.d.ts +45 -0
- package/dist/components/data-display/Badge/Badge.js +24 -0
- package/dist/components/data-display/Badge/badge.module.cjs +2 -0
- package/dist/components/data-display/Badge/badge.module.js +23 -0
- package/dist/components/data-display/Calendar/Calendar.cjs +2 -0
- package/dist/components/data-display/Calendar/Calendar.d.ts +28 -0
- package/dist/components/data-display/Calendar/Calendar.js +168 -0
- package/dist/components/data-display/Calendar/RangeCalendar.cjs +2 -0
- package/dist/components/data-display/Calendar/RangeCalendar.d.ts +48 -0
- package/dist/components/data-display/Calendar/RangeCalendar.js +34 -0
- package/dist/components/data-display/Calendar/calendar.module.cjs +2 -0
- package/dist/components/data-display/Calendar/calendar.module.js +22 -0
- package/dist/components/data-display/Calendar/useCalendar.cjs +2 -0
- package/dist/components/data-display/Calendar/useCalendar.d.ts +34 -0
- package/dist/components/data-display/Calendar/useCalendar.js +48 -0
- package/dist/components/data-display/CalendarHeatmap/CalendarHeatmap.cjs +2 -0
- package/dist/components/data-display/CalendarHeatmap/CalendarHeatmap.d.ts +41 -0
- package/dist/components/data-display/CalendarHeatmap/CalendarHeatmap.js +100 -0
- package/dist/components/data-display/CalendarHeatmap/calendar-heatmap.module.cjs +2 -0
- package/dist/components/data-display/CalendarHeatmap/calendar-heatmap.module.js +21 -0
- package/dist/components/data-display/Card/Card.cjs +2 -0
- package/dist/components/data-display/Card/Card.d.ts +42 -0
- package/dist/components/data-display/Card/Card.js +29 -0
- package/dist/components/data-display/Card/card.module.cjs +2 -0
- package/dist/components/data-display/Card/card.module.js +23 -0
- package/dist/components/data-display/Carousel/Carousel.cjs +2 -0
- package/dist/components/data-display/Carousel/Carousel.d.ts +46 -0
- package/dist/components/data-display/Carousel/Carousel.js +160 -0
- package/dist/components/data-display/Carousel/carousel.module.cjs +2 -0
- package/dist/components/data-display/Carousel/carousel.module.js +18 -0
- package/dist/components/data-display/Chip/Chip.cjs +2 -0
- package/dist/components/data-display/Chip/Chip.d.ts +69 -0
- package/dist/components/data-display/Chip/Chip.js +52 -0
- package/dist/components/data-display/Chip/chip.module.cjs +2 -0
- package/dist/components/data-display/Chip/chip.module.js +27 -0
- package/dist/components/data-display/Countdown/Countdown.cjs +2 -0
- package/dist/components/data-display/Countdown/Countdown.d.ts +128 -0
- package/dist/components/data-display/Countdown/Countdown.js +100 -0
- package/dist/components/data-display/Countdown/countdown.module.cjs +2 -0
- package/dist/components/data-display/Countdown/countdown.module.js +16 -0
- package/dist/components/data-display/DataGrid/DataGrid.cjs +2 -0
- package/dist/components/data-display/DataGrid/DataGrid.d.ts +74 -0
- package/dist/components/data-display/DataGrid/DataGrid.js +197 -0
- package/dist/components/data-display/DataGrid/datagrid.module.cjs +2 -0
- package/dist/components/data-display/DataGrid/datagrid.module.js +20 -0
- package/dist/components/data-display/DataGrid/useDataGridKeyboard.cjs +2 -0
- package/dist/components/data-display/DataGrid/useDataGridKeyboard.d.ts +14 -0
- package/dist/components/data-display/DataGrid/useDataGridKeyboard.js +56 -0
- package/dist/components/data-display/DataGrid/useFixedColumns.cjs +2 -0
- package/dist/components/data-display/DataGrid/useFixedColumns.d.ts +9 -0
- package/dist/components/data-display/DataGrid/useFixedColumns.js +31 -0
- package/dist/components/data-display/DataGrid/useInfiniteScroll.cjs +2 -0
- package/dist/components/data-display/DataGrid/useInfiniteScroll.d.ts +4 -0
- package/dist/components/data-display/DataGrid/useInfiniteScroll.js +15 -0
- package/dist/components/data-display/DescriptionList/DescriptionList.cjs +2 -0
- package/dist/components/data-display/DescriptionList/DescriptionList.d.ts +35 -0
- package/dist/components/data-display/DescriptionList/DescriptionList.js +28 -0
- package/dist/components/data-display/DescriptionList/description-list.module.cjs +2 -0
- package/dist/components/data-display/DescriptionList/description-list.module.js +17 -0
- package/dist/components/data-display/EmptyState/EmptyState.cjs +2 -0
- package/dist/components/data-display/EmptyState/EmptyState.d.ts +18 -0
- package/dist/components/data-display/EmptyState/EmptyState.js +17 -0
- package/dist/components/data-display/EmptyState/empty-state.module.cjs +2 -0
- package/dist/components/data-display/EmptyState/empty-state.module.js +5 -0
- package/dist/components/data-display/FAQSection/FAQSection.cjs +2 -0
- package/dist/components/data-display/FAQSection/FAQSection.d.ts +31 -0
- package/dist/components/data-display/FAQSection/FAQSection.js +42 -0
- package/dist/components/data-display/FAQSection/faq-section.module.cjs +2 -0
- package/dist/components/data-display/FAQSection/faq-section.module.js +12 -0
- package/dist/components/data-display/InfiniteScroll/InfiniteScroll.cjs +2 -0
- package/dist/components/data-display/InfiniteScroll/InfiniteScroll.d.ts +24 -0
- package/dist/components/data-display/InfiniteScroll/InfiniteScroll.js +42 -0
- package/dist/components/data-display/InfiniteScroll/infinite-scroll.module.cjs +2 -0
- package/dist/components/data-display/InfiniteScroll/infinite-scroll.module.js +8 -0
- package/dist/components/data-display/JsonDiffViewer/JsonDiffViewer.cjs +2 -0
- package/dist/components/data-display/JsonDiffViewer/JsonDiffViewer.d.ts +21 -0
- package/dist/components/data-display/JsonDiffViewer/JsonDiffViewer.js +24 -0
- package/dist/components/data-display/JsonViewer/JsonViewer.cjs +2 -0
- package/dist/components/data-display/JsonViewer/JsonViewer.d.ts +20 -0
- package/dist/components/data-display/JsonViewer/JsonViewer.js +265 -0
- package/dist/components/data-display/JsonViewer/json-viewer.module.cjs +2 -0
- package/dist/components/data-display/JsonViewer/json-viewer.module.js +31 -0
- package/dist/components/data-display/Kanban/Kanban.cjs +2 -0
- package/dist/components/data-display/Kanban/Kanban.d.ts +56 -0
- package/dist/components/data-display/Kanban/Kanban.js +139 -0
- package/dist/components/data-display/Kanban/kanban.module.cjs +2 -0
- package/dist/components/data-display/Kanban/kanban.module.js +22 -0
- package/dist/components/data-display/Leaderboard/Leaderboard.cjs +2 -0
- package/dist/components/data-display/Leaderboard/Leaderboard.d.ts +28 -0
- package/dist/components/data-display/Leaderboard/Leaderboard.js +48 -0
- package/dist/components/data-display/Leaderboard/leaderboard.module.cjs +2 -0
- package/dist/components/data-display/Leaderboard/leaderboard.module.js +20 -0
- package/dist/components/data-display/List/List.cjs +2 -0
- package/dist/components/data-display/List/List.d.ts +33 -0
- package/dist/components/data-display/List/List.js +58 -0
- package/dist/components/data-display/List/list.module.cjs +2 -0
- package/dist/components/data-display/List/list.module.js +22 -0
- package/dist/components/data-display/Markdown/Markdown.cjs +2 -0
- package/dist/components/data-display/Markdown/Markdown.d.ts +15 -0
- package/dist/components/data-display/Markdown/Markdown.js +20 -0
- package/dist/components/data-display/Markdown/markdown.module.cjs +2 -0
- package/dist/components/data-display/Markdown/markdown.module.js +5 -0
- package/dist/components/data-display/Marquee/Marquee.cjs +2 -0
- package/dist/components/data-display/Marquee/Marquee.d.ts +17 -0
- package/dist/components/data-display/Marquee/Marquee.js +27 -0
- package/dist/components/data-display/Marquee/marquee.module.cjs +2 -0
- package/dist/components/data-display/Marquee/marquee.module.js +12 -0
- package/dist/components/data-display/NodeGraph/NodeGraph.cjs +2 -0
- package/dist/components/data-display/NodeGraph/NodeGraph.d.ts +52 -0
- package/dist/components/data-display/NodeGraph/NodeGraph.js +42 -0
- package/dist/components/data-display/NodeGraph/node-graph.module.cjs +2 -0
- package/dist/components/data-display/NodeGraph/node-graph.module.js +11 -0
- package/dist/components/data-display/PullToRefresh/PullToRefresh.cjs +2 -0
- package/dist/components/data-display/PullToRefresh/PullToRefresh.d.ts +23 -0
- package/dist/components/data-display/PullToRefresh/PullToRefresh.js +99 -0
- package/dist/components/data-display/PullToRefresh/pull-to-refresh.module.cjs +2 -0
- package/dist/components/data-display/PullToRefresh/pull-to-refresh.module.js +15 -0
- package/dist/components/data-display/QRCode/QRCode.cjs +2 -0
- package/dist/components/data-display/QRCode/QRCode.d.ts +26 -0
- package/dist/components/data-display/QRCode/QRCode.js +25 -0
- package/dist/components/data-display/QRCode/qrcode.module.cjs +2 -0
- package/dist/components/data-display/QRCode/qrcode.module.js +5 -0
- package/dist/components/data-display/Reaction/Reaction.cjs +2 -0
- package/dist/components/data-display/Reaction/Reaction.d.ts +40 -0
- package/dist/components/data-display/Reaction/Reaction.js +50 -0
- package/dist/components/data-display/Reaction/reaction.module.cjs +2 -0
- package/dist/components/data-display/Reaction/reaction.module.js +16 -0
- package/dist/components/data-display/RelativeTime/RelativeTime.cjs +2 -0
- package/dist/components/data-display/RelativeTime/RelativeTime.d.ts +92 -0
- package/dist/components/data-display/RelativeTime/RelativeTime.js +105 -0
- package/dist/components/data-display/RelativeTime/relative-time.module.cjs +2 -0
- package/dist/components/data-display/RelativeTime/relative-time.module.js +5 -0
- package/dist/components/data-display/ScheduleView/ScheduleView.cjs +2 -0
- package/dist/components/data-display/ScheduleView/ScheduleView.d.ts +45 -0
- package/dist/components/data-display/ScheduleView/ScheduleView.js +74 -0
- package/dist/components/data-display/ScheduleView/schedule-view.module.cjs +2 -0
- package/dist/components/data-display/ScheduleView/schedule-view.module.js +5 -0
- package/dist/components/data-display/SortableList/SortableList.cjs +2 -0
- package/dist/components/data-display/SortableList/SortableList.d.ts +40 -0
- package/dist/components/data-display/SortableList/SortableList.js +76 -0
- package/dist/components/data-display/SortableList/sortable-list.module.cjs +2 -0
- package/dist/components/data-display/SortableList/sortable-list.module.js +12 -0
- package/dist/components/data-display/Stats/Stats.cjs +2 -0
- package/dist/components/data-display/Stats/Stats.d.ts +50 -0
- package/dist/components/data-display/Stats/Stats.js +46 -0
- package/dist/components/data-display/Stats/stats.module.cjs +2 -0
- package/dist/components/data-display/Stats/stats.module.js +15 -0
- package/dist/components/data-display/SwipeAction/SwipeAction.cjs +2 -0
- package/dist/components/data-display/SwipeAction/SwipeAction.d.ts +42 -0
- package/dist/components/data-display/SwipeAction/SwipeAction.js +105 -0
- package/dist/components/data-display/SwipeAction/SwipeableList.cjs +2 -0
- package/dist/components/data-display/SwipeAction/SwipeableList.d.ts +19 -0
- package/dist/components/data-display/SwipeAction/SwipeableList.js +8 -0
- package/dist/components/data-display/SwipeAction/swipe-action.module.cjs +2 -0
- package/dist/components/data-display/SwipeAction/swipe-action.module.js +18 -0
- package/dist/components/data-display/Table/Table.cjs +2 -0
- package/dist/components/data-display/Table/Table.d.ts +108 -0
- package/dist/components/data-display/Table/Table.js +100 -0
- package/dist/components/data-display/Table/table.module.cjs +2 -0
- package/dist/components/data-display/Table/table.module.js +32 -0
- package/dist/components/data-display/Table/useTableSort.cjs +2 -0
- package/dist/components/data-display/Table/useTableSort.d.ts +26 -0
- package/dist/components/data-display/Table/useTableSort.js +29 -0
- package/dist/components/data-display/Tag/Tag.cjs +2 -0
- package/dist/components/data-display/Tag/Tag.d.ts +54 -0
- package/dist/components/data-display/Tag/Tag.js +33 -0
- package/dist/components/data-display/Tag/tag.module.cjs +2 -0
- package/dist/components/data-display/Tag/tag.module.js +24 -0
- package/dist/components/data-display/Timeline/Timeline.cjs +2 -0
- package/dist/components/data-display/Timeline/Timeline.d.ts +53 -0
- package/dist/components/data-display/Timeline/Timeline.js +60 -0
- package/dist/components/data-display/Timeline/timeline.module.cjs +2 -0
- package/dist/components/data-display/Timeline/timeline.module.js +21 -0
- package/dist/components/data-display/TreeView/TreeView.cjs +2 -0
- package/dist/components/data-display/TreeView/TreeView.d.ts +95 -0
- package/dist/components/data-display/TreeView/TreeView.js +436 -0
- package/dist/components/data-display/TreeView/tree-view.module.cjs +2 -0
- package/dist/components/data-display/TreeView/tree-view.module.js +24 -0
- package/dist/components/data-display/TreeView/useTreeViewItemExpansion.cjs +2 -0
- package/dist/components/data-display/TreeView/useTreeViewItemExpansion.d.ts +10 -0
- package/dist/components/data-display/TreeView/useTreeViewItemExpansion.js +23 -0
- package/dist/components/data-display/VirtualList/VirtualList.cjs +2 -0
- package/dist/components/data-display/VirtualList/VirtualList.d.ts +26 -0
- package/dist/components/data-display/VirtualList/VirtualList.js +58 -0
- package/dist/components/data-display/VirtualList/virtual-list.module.cjs +2 -0
- package/dist/components/data-display/VirtualList/virtual-list.module.js +9 -0
- package/dist/components/feedback/Alert/Alert.cjs +2 -0
- package/dist/components/feedback/Alert/Alert.d.ts +43 -0
- package/dist/components/feedback/Alert/Alert.js +47 -0
- package/dist/components/feedback/Alert/alert.module.cjs +2 -0
- package/dist/components/feedback/Alert/alert.module.js +16 -0
- package/dist/components/feedback/Autosave/Autosave.cjs +2 -0
- package/dist/components/feedback/Autosave/Autosave.d.ts +21 -0
- package/dist/components/feedback/Autosave/Autosave.js +47 -0
- package/dist/components/feedback/Autosave/autosave.module.cjs +2 -0
- package/dist/components/feedback/Autosave/autosave.module.js +14 -0
- package/dist/components/feedback/Banner/Banner.cjs +2 -0
- package/dist/components/feedback/Banner/Banner.d.ts +44 -0
- package/dist/components/feedback/Banner/Banner.js +55 -0
- package/dist/components/feedback/Banner/banner.module.cjs +2 -0
- package/dist/components/feedback/Banner/banner.module.js +20 -0
- package/dist/components/feedback/ErrorBoundary/ErrorBoundary.cjs +2 -0
- package/dist/components/feedback/ErrorBoundary/ErrorBoundary.d.ts +37 -0
- package/dist/components/feedback/ErrorBoundary/ErrorBoundary.js +92 -0
- package/dist/components/feedback/ErrorBoundary/errorboundary.module.cjs +2 -0
- package/dist/components/feedback/ErrorBoundary/errorboundary.module.js +8 -0
- package/dist/components/feedback/Indicator/Indicator.cjs +2 -0
- package/dist/components/feedback/Indicator/Indicator.d.ts +44 -0
- package/dist/components/feedback/Indicator/Indicator.js +30 -0
- package/dist/components/feedback/Indicator/indicator.module.cjs +2 -0
- package/dist/components/feedback/Indicator/indicator.module.js +23 -0
- package/dist/components/feedback/Loader/Loader.cjs +2 -0
- package/dist/components/feedback/Loader/Loader.d.ts +24 -0
- package/dist/components/feedback/Loader/Loader.js +34 -0
- package/dist/components/feedback/Loader/loader.module.cjs +2 -0
- package/dist/components/feedback/Loader/loader.module.js +25 -0
- package/dist/components/feedback/LoadingOverlay/LoadingOverlay.cjs +2 -0
- package/dist/components/feedback/LoadingOverlay/LoadingOverlay.d.ts +55 -0
- package/dist/components/feedback/LoadingOverlay/LoadingOverlay.js +45 -0
- package/dist/components/feedback/LoadingOverlay/loadingoverlay.module.cjs +2 -0
- package/dist/components/feedback/LoadingOverlay/loadingoverlay.module.js +22 -0
- package/dist/components/feedback/Notification/Notification.cjs +2 -0
- package/dist/components/feedback/Notification/Notification.d.ts +51 -0
- package/dist/components/feedback/Notification/Notification.js +80 -0
- package/dist/components/feedback/Notification/notification.module.cjs +2 -0
- package/dist/components/feedback/Notification/notification.module.js +22 -0
- package/dist/components/feedback/Progress/Progress.cjs +2 -0
- package/dist/components/feedback/Progress/Progress.d.ts +41 -0
- package/dist/components/feedback/Progress/Progress.js +39 -0
- package/dist/components/feedback/Progress/progress.module.cjs +2 -0
- package/dist/components/feedback/Progress/progress.module.js +22 -0
- package/dist/components/feedback/Result/Result.cjs +2 -0
- package/dist/components/feedback/Result/Result.d.ts +40 -0
- package/dist/components/feedback/Result/Result.js +60 -0
- package/dist/components/feedback/Result/result.module.cjs +2 -0
- package/dist/components/feedback/Result/result.module.js +10 -0
- package/dist/components/feedback/ScrollProgress/ScrollProgress.cjs +2 -0
- package/dist/components/feedback/ScrollProgress/ScrollProgress.d.ts +16 -0
- package/dist/components/feedback/ScrollProgress/ScrollProgress.js +40 -0
- package/dist/components/feedback/ScrollProgress/scrollprogress.module.cjs +2 -0
- package/dist/components/feedback/ScrollProgress/scrollprogress.module.js +12 -0
- package/dist/components/feedback/Skeleton/Skeleton.cjs +2 -0
- package/dist/components/feedback/Skeleton/Skeleton.d.ts +32 -0
- package/dist/components/feedback/Skeleton/Skeleton.js +22 -0
- package/dist/components/feedback/Skeleton/skeleton.module.cjs +2 -0
- package/dist/components/feedback/Skeleton/skeleton.module.js +14 -0
- package/dist/components/feedback/Snackbar/Snackbar.cjs +2 -0
- package/dist/components/feedback/Snackbar/Snackbar.d.ts +53 -0
- package/dist/components/feedback/Snackbar/Snackbar.js +122 -0
- package/dist/components/feedback/Snackbar/snackbar.module.cjs +2 -0
- package/dist/components/feedback/Snackbar/snackbar.module.js +26 -0
- package/dist/components/feedback/Spinner/Spinner.cjs +2 -0
- package/dist/components/feedback/Spinner/Spinner.d.ts +28 -0
- package/dist/components/feedback/Spinner/Spinner.js +56 -0
- package/dist/components/feedback/Spinner/spinner.module.cjs +2 -0
- package/dist/components/feedback/Spinner/spinner.module.js +25 -0
- package/dist/components/feedback/Toast/Toast.cjs +2 -0
- package/dist/components/feedback/Toast/Toast.d.ts +61 -0
- package/dist/components/feedback/Toast/Toast.js +94 -0
- package/dist/components/feedback/Toast/toast.module.cjs +2 -0
- package/dist/components/feedback/Toast/toast.module.js +29 -0
- package/dist/components/feedback/Tour/Tour.cjs +2 -0
- package/dist/components/feedback/Tour/Tour.d.ts +27 -0
- package/dist/components/feedback/Tour/Tour.js +114 -0
- package/dist/components/feedback/Tour/tour.module.cjs +2 -0
- package/dist/components/feedback/Tour/tour.module.js +15 -0
- package/dist/components/form/Button/Button.cjs +2 -0
- package/dist/components/form/Button/Button.d.ts +72 -0
- package/dist/components/form/Button/Button.js +84 -0
- package/dist/components/form/Button/button.module.cjs +2 -0
- package/dist/components/form/Button/button.module.js +24 -0
- package/dist/components/form/ButtonGroup/ButtonGroup.cjs +2 -0
- package/dist/components/form/ButtonGroup/ButtonGroup.d.ts +18 -0
- package/dist/components/form/ButtonGroup/ButtonGroup.js +17 -0
- package/dist/components/form/ButtonGroup/button-group.module.cjs +2 -0
- package/dist/components/form/ButtonGroup/button-group.module.js +8 -0
- package/dist/components/form/Cascader/Cascader.cjs +2 -0
- package/dist/components/form/Cascader/Cascader.d.ts +53 -0
- package/dist/components/form/Cascader/Cascader.js +234 -0
- package/dist/components/form/Cascader/cascader.module.cjs +2 -0
- package/dist/components/form/Cascader/cascader.module.js +25 -0
- package/dist/components/form/Checkbox/Checkbox.cjs +2 -0
- package/dist/components/form/Checkbox/Checkbox.d.ts +15 -0
- package/dist/components/form/Checkbox/Checkbox.js +27 -0
- package/dist/components/form/Checkbox/checkbox.module.cjs +2 -0
- package/dist/components/form/Checkbox/checkbox.module.js +10 -0
- package/dist/components/form/CheckboxGroup/CheckboxGroup.cjs +2 -0
- package/dist/components/form/CheckboxGroup/CheckboxGroup.d.ts +35 -0
- package/dist/components/form/CheckboxGroup/CheckboxGroup.js +43 -0
- package/dist/components/form/CheckboxGroup/checkbox-group.module.cjs +2 -0
- package/dist/components/form/CheckboxGroup/checkbox-group.module.js +8 -0
- package/dist/components/form/ColorInput/ColorInput.cjs +2 -0
- package/dist/components/form/ColorInput/ColorInput.d.ts +6 -0
- package/dist/components/form/ColorInput/ColorInput.js +53 -0
- package/dist/components/form/ColorInput/color-input.module.cjs +2 -0
- package/dist/components/form/ColorInput/color-input.module.js +12 -0
- package/dist/components/form/ColorPicker/ColorPicker.cjs +2 -0
- package/dist/components/form/ColorPicker/ColorPicker.d.ts +15 -0
- package/dist/components/form/ColorPicker/ColorPicker.js +19 -0
- package/dist/components/form/ColorPicker/color-picker.module.cjs +2 -0
- package/dist/components/form/ColorPicker/color-picker.module.js +5 -0
- package/dist/components/form/Combobox/Combobox.cjs +2 -0
- package/dist/components/form/Combobox/Combobox.d.ts +47 -0
- package/dist/components/form/Combobox/Combobox.js +134 -0
- package/dist/components/form/Combobox/combobox.module.cjs +2 -0
- package/dist/components/form/Combobox/combobox.module.js +14 -0
- package/dist/components/form/CopyButton/CopyButton.cjs +2 -0
- package/dist/components/form/CopyButton/CopyButton.d.ts +22 -0
- package/dist/components/form/CopyButton/CopyButton.js +40 -0
- package/dist/components/form/CounterTextarea/CounterTextarea.cjs +2 -0
- package/dist/components/form/CounterTextarea/CounterTextarea.d.ts +44 -0
- package/dist/components/form/CounterTextarea/CounterTextarea.js +50 -0
- package/dist/components/form/CounterTextarea/counter-textarea.module.cjs +2 -0
- package/dist/components/form/CounterTextarea/counter-textarea.module.js +11 -0
- package/dist/components/form/CreditCardInput/CreditCardInput.cjs +2 -0
- package/dist/components/form/CreditCardInput/CreditCardInput.d.ts +27 -0
- package/dist/components/form/CreditCardInput/CreditCardInput.js +59 -0
- package/dist/components/form/CreditCardInput/credit-card-input.module.cjs +2 -0
- package/dist/components/form/CreditCardInput/credit-card-input.module.js +5 -0
- package/dist/components/form/DatePicker/DatePicker.cjs +2 -0
- package/dist/components/form/DatePicker/DatePicker.d.ts +50 -0
- package/dist/components/form/DatePicker/DatePicker.js +120 -0
- package/dist/components/form/DatePicker/date-picker.module.cjs +2 -0
- package/dist/components/form/DatePicker/date-picker.module.js +10 -0
- package/dist/components/form/DateRangePicker/DateRangePicker.cjs +2 -0
- package/dist/components/form/DateRangePicker/DateRangePicker.d.ts +23 -0
- package/dist/components/form/DateRangePicker/DateRangePicker.js +54 -0
- package/dist/components/form/DateRangePicker/date-range-picker.module.cjs +2 -0
- package/dist/components/form/DateRangePicker/date-range-picker.module.js +10 -0
- package/dist/components/form/Dropzone/Dropzone.cjs +2 -0
- package/dist/components/form/Dropzone/Dropzone.d.ts +34 -0
- package/dist/components/form/Dropzone/Dropzone.js +77 -0
- package/dist/components/form/Dropzone/dropzone.module.cjs +2 -0
- package/dist/components/form/Dropzone/dropzone.module.js +9 -0
- package/dist/components/form/FieldError/FieldError.cjs +2 -0
- package/dist/components/form/FieldError/FieldError.d.ts +14 -0
- package/dist/components/form/FieldError/FieldError.js +20 -0
- package/dist/components/form/FieldError/field-error.module.cjs +2 -0
- package/dist/components/form/FieldError/field-error.module.js +5 -0
- package/dist/components/form/FieldTemplate/FieldTemplate.cjs +2 -0
- package/dist/components/form/FieldTemplate/FieldTemplate.d.ts +38 -0
- package/dist/components/form/FieldTemplate/FieldTemplate.js +34 -0
- package/dist/components/form/FieldTemplate/field-template.module.cjs +2 -0
- package/dist/components/form/FieldTemplate/field-template.module.js +13 -0
- package/dist/components/form/FieldTemplate/index.d.ts +1 -0
- package/dist/components/form/Fieldset/Fieldset.cjs +2 -0
- package/dist/components/form/Fieldset/Fieldset.d.ts +16 -0
- package/dist/components/form/Fieldset/Fieldset.js +14 -0
- package/dist/components/form/Fieldset/fieldset.module.cjs +2 -0
- package/dist/components/form/Fieldset/fieldset.module.js +8 -0
- package/dist/components/form/FileUpload/FileUpload.cjs +2 -0
- package/dist/components/form/FileUpload/FileUpload.d.ts +38 -0
- package/dist/components/form/FileUpload/FileUpload.js +62 -0
- package/dist/components/form/FileUpload/file-upload.module.cjs +2 -0
- package/dist/components/form/FileUpload/file-upload.module.js +14 -0
- package/dist/components/form/FloatButton/FloatButton.cjs +2 -0
- package/dist/components/form/FloatButton/FloatButton.d.ts +40 -0
- package/dist/components/form/FloatButton/FloatButton.js +68 -0
- package/dist/components/form/FloatButton/float-button.module.cjs +2 -0
- package/dist/components/form/FloatButton/float-button.module.js +35 -0
- package/dist/components/form/IconButton/IconButton.cjs +2 -0
- package/dist/components/form/IconButton/IconButton.d.ts +14 -0
- package/dist/components/form/IconButton/IconButton.js +16 -0
- package/dist/components/form/ImageCropper/ImageCropper.cjs +2 -0
- package/dist/components/form/ImageCropper/ImageCropper.d.ts +26 -0
- package/dist/components/form/ImageCropper/ImageCropper.js +150 -0
- package/dist/components/form/ImageCropper/image-cropper.module.cjs +2 -0
- package/dist/components/form/ImageCropper/image-cropper.module.js +20 -0
- package/dist/components/form/InlineEdit/InlineEdit.cjs +2 -0
- package/dist/components/form/InlineEdit/InlineEdit.d.ts +52 -0
- package/dist/components/form/InlineEdit/InlineEdit.js +92 -0
- package/dist/components/form/InlineEdit/inline-edit.module.cjs +2 -0
- package/dist/components/form/InlineEdit/inline-edit.module.js +16 -0
- package/dist/components/form/Input/Input.cjs +2 -0
- package/dist/components/form/Input/Input.d.ts +59 -0
- package/dist/components/form/Input/Input.js +82 -0
- package/dist/components/form/Input/input.module.cjs +2 -0
- package/dist/components/form/Input/input.module.js +12 -0
- package/dist/components/form/InputBase/InputBase.cjs +2 -0
- package/dist/components/form/InputBase/InputBase.d.ts +60 -0
- package/dist/components/form/InputBase/InputBase.js +76 -0
- package/dist/components/form/InputBase/index.d.ts +1 -0
- package/dist/components/form/InputBase/input-base.module.cjs +2 -0
- package/dist/components/form/InputBase/input-base.module.js +31 -0
- package/dist/components/form/InputGroup/InputGroup.cjs +2 -0
- package/dist/components/form/InputGroup/InputGroup.d.ts +22 -0
- package/dist/components/form/InputGroup/InputGroup.js +15 -0
- package/dist/components/form/InputGroup/input-group.module.cjs +2 -0
- package/dist/components/form/InputGroup/input-group.module.js +9 -0
- package/dist/components/form/InputMask/InputMask.cjs +2 -0
- package/dist/components/form/InputMask/InputMask.d.ts +17 -0
- package/dist/components/form/InputMask/InputMask.js +45 -0
- package/dist/components/form/InputMask/input-mask.module.cjs +2 -0
- package/dist/components/form/InputMask/input-mask.module.js +5 -0
- package/dist/components/form/LinkButton/LinkButton.cjs +2 -0
- package/dist/components/form/LinkButton/LinkButton.d.ts +34 -0
- package/dist/components/form/LinkButton/LinkButton.js +41 -0
- package/dist/components/form/Mentions/Mentions.cjs +2 -0
- package/dist/components/form/Mentions/Mentions.d.ts +21 -0
- package/dist/components/form/Mentions/Mentions.js +90 -0
- package/dist/components/form/Mentions/mentions.module.cjs +2 -0
- package/dist/components/form/Mentions/mentions.module.js +8 -0
- package/dist/components/form/MultiSelect/MultiSelect.cjs +2 -0
- package/dist/components/form/MultiSelect/MultiSelect.d.ts +52 -0
- package/dist/components/form/MultiSelect/MultiSelect.js +158 -0
- package/dist/components/form/MultiSelect/multiselect.module.cjs +2 -0
- package/dist/components/form/MultiSelect/multiselect.module.js +19 -0
- package/dist/components/form/NumberInput/NumberInput.cjs +2 -0
- package/dist/components/form/NumberInput/NumberInput.d.ts +22 -0
- package/dist/components/form/NumberInput/NumberInput.js +31 -0
- package/dist/components/form/OtpInput/OtpInput.cjs +2 -0
- package/dist/components/form/OtpInput/OtpInput.d.ts +33 -0
- package/dist/components/form/OtpInput/OtpInput.js +85 -0
- package/dist/components/form/OtpInput/otp-input.module.cjs +2 -0
- package/dist/components/form/OtpInput/otp-input.module.js +12 -0
- package/dist/components/form/PasswordInput/PasswordInput.cjs +2 -0
- package/dist/components/form/PasswordInput/PasswordInput.d.ts +9 -0
- package/dist/components/form/PasswordInput/PasswordInput.js +14 -0
- package/dist/components/form/PasswordStrength/PasswordStrength.cjs +2 -0
- package/dist/components/form/PasswordStrength/PasswordStrength.d.ts +19 -0
- package/dist/components/form/PasswordStrength/PasswordStrength.js +64 -0
- package/dist/components/form/PasswordStrength/password-strength.module.cjs +2 -0
- package/dist/components/form/PasswordStrength/password-strength.module.js +15 -0
- package/dist/components/form/PhoneInput/PhoneInput.cjs +2 -0
- package/dist/components/form/PhoneInput/PhoneInput.d.ts +40 -0
- package/dist/components/form/PhoneInput/PhoneInput.js +185 -0
- package/dist/components/form/PhoneInput/phone-input.module.cjs +2 -0
- package/dist/components/form/PhoneInput/phone-input.module.js +22 -0
- package/dist/components/form/QueryBuilder/QueryBuilder.cjs +2 -0
- package/dist/components/form/QueryBuilder/QueryBuilder.d.ts +75 -0
- package/dist/components/form/QueryBuilder/QueryBuilder.js +393 -0
- package/dist/components/form/QueryBuilder/index.d.ts +1 -0
- package/dist/components/form/QueryBuilder/querybuilder.module.cjs +2 -0
- package/dist/components/form/QueryBuilder/querybuilder.module.js +29 -0
- package/dist/components/form/Radio/Radio.cjs +2 -0
- package/dist/components/form/Radio/Radio.d.ts +13 -0
- package/dist/components/form/Radio/Radio.js +24 -0
- package/dist/components/form/Radio/radio.module.cjs +2 -0
- package/dist/components/form/Radio/radio.module.js +10 -0
- package/dist/components/form/RadioGroup/RadioGroup.cjs +2 -0
- package/dist/components/form/RadioGroup/RadioGroup.d.ts +35 -0
- package/dist/components/form/RadioGroup/RadioGroup.js +44 -0
- package/dist/components/form/RadioGroup/radio-group.module.cjs +2 -0
- package/dist/components/form/RadioGroup/radio-group.module.js +8 -0
- package/dist/components/form/RangeSlider/RangeSlider.cjs +2 -0
- package/dist/components/form/RangeSlider/RangeSlider.d.ts +49 -0
- package/dist/components/form/RangeSlider/RangeSlider.js +156 -0
- package/dist/components/form/RangeSlider/range-slider.module.cjs +2 -0
- package/dist/components/form/RangeSlider/range-slider.module.js +13 -0
- package/dist/components/form/Rating/Rating.cjs +2 -0
- package/dist/components/form/Rating/Rating.d.ts +43 -0
- package/dist/components/form/Rating/Rating.js +103 -0
- package/dist/components/form/Rating/rating.module.cjs +2 -0
- package/dist/components/form/Rating/rating.module.js +17 -0
- package/dist/components/form/RichTextEditor/RichTextEditor.cjs +2 -0
- package/dist/components/form/RichTextEditor/RichTextEditor.d.ts +70 -0
- package/dist/components/form/RichTextEditor/RichTextEditor.js +548 -0
- package/dist/components/form/RichTextEditor/commands.cjs +2 -0
- package/dist/components/form/RichTextEditor/commands.d.ts +49 -0
- package/dist/components/form/RichTextEditor/commands.js +244 -0
- package/dist/components/form/RichTextEditor/rich-text-editor.module.cjs +2 -0
- package/dist/components/form/RichTextEditor/rich-text-editor.module.js +25 -0
- package/dist/components/form/SearchInput/SearchInput.cjs +2 -0
- package/dist/components/form/SearchInput/SearchInput.d.ts +7 -0
- package/dist/components/form/SearchInput/SearchInput.js +14 -0
- package/dist/components/form/SegmentedControl/SegmentedControl.cjs +2 -0
- package/dist/components/form/SegmentedControl/SegmentedControl.d.ts +52 -0
- package/dist/components/form/SegmentedControl/SegmentedControl.js +90 -0
- package/dist/components/form/SegmentedControl/segmented-control.module.cjs +2 -0
- package/dist/components/form/SegmentedControl/segmented-control.module.js +19 -0
- package/dist/components/form/Select/Select.cjs +2 -0
- package/dist/components/form/Select/Select.d.ts +78 -0
- package/dist/components/form/Select/Select.js +174 -0
- package/dist/components/form/Select/select.module.cjs +2 -0
- package/dist/components/form/Select/select.module.js +28 -0
- package/dist/components/form/Select/useSelect.cjs +2 -0
- package/dist/components/form/Select/useSelect.d.ts +26 -0
- package/dist/components/form/Select/useSelect.js +94 -0
- package/dist/components/form/SignaturePad/SignaturePad.cjs +2 -0
- package/dist/components/form/SignaturePad/SignaturePad.d.ts +35 -0
- package/dist/components/form/SignaturePad/SignaturePad.js +126 -0
- package/dist/components/form/SignaturePad/signature-pad.module.cjs +2 -0
- package/dist/components/form/SignaturePad/signature-pad.module.js +17 -0
- package/dist/components/form/Slider/Slider.cjs +2 -0
- package/dist/components/form/Slider/Slider.d.ts +41 -0
- package/dist/components/form/Slider/Slider.js +102 -0
- package/dist/components/form/Slider/slider.module.cjs +2 -0
- package/dist/components/form/Slider/slider.module.js +12 -0
- package/dist/components/form/SmartSearchInput/SmartSearchInput.cjs +2 -0
- package/dist/components/form/SmartSearchInput/SmartSearchInput.d.ts +39 -0
- package/dist/components/form/SmartSearchInput/SmartSearchInput.js +74 -0
- package/dist/components/form/SmartSearchInput/smart-search-input.module.cjs +2 -0
- package/dist/components/form/SmartSearchInput/smart-search-input.module.js +10 -0
- package/dist/components/form/Switch/Switch.cjs +2 -0
- package/dist/components/form/Switch/Switch.d.ts +33 -0
- package/dist/components/form/Switch/Switch.js +29 -0
- package/dist/components/form/Switch/switch.module.cjs +2 -0
- package/dist/components/form/Switch/switch.module.js +12 -0
- package/dist/components/form/SwitchGroup/SwitchGroup.cjs +2 -0
- package/dist/components/form/SwitchGroup/SwitchGroup.d.ts +35 -0
- package/dist/components/form/SwitchGroup/SwitchGroup.js +43 -0
- package/dist/components/form/SwitchGroup/switch-group.module.cjs +2 -0
- package/dist/components/form/SwitchGroup/switch-group.module.js +8 -0
- package/dist/components/form/TagInput/TagInput.cjs +2 -0
- package/dist/components/form/TagInput/TagInput.d.ts +39 -0
- package/dist/components/form/TagInput/TagInput.js +91 -0
- package/dist/components/form/TagInput/tag-input.module.cjs +2 -0
- package/dist/components/form/TagInput/tag-input.module.js +13 -0
- package/dist/components/form/Textarea/Textarea.cjs +2 -0
- package/dist/components/form/Textarea/Textarea.d.ts +53 -0
- package/dist/components/form/Textarea/Textarea.js +47 -0
- package/dist/components/form/Textarea/textarea.module.cjs +2 -0
- package/dist/components/form/Textarea/textarea.module.js +19 -0
- package/dist/components/form/ThemeToggle/ThemeToggle.cjs +2 -0
- package/dist/components/form/ThemeToggle/ThemeToggle.d.ts +53 -0
- package/dist/components/form/ThemeToggle/ThemeToggle.js +82 -0
- package/dist/components/form/ThemeToggle/theme-toggle.module.cjs +2 -0
- package/dist/components/form/ThemeToggle/theme-toggle.module.js +13 -0
- package/dist/components/form/TimePicker/TimePicker.cjs +2 -0
- package/dist/components/form/TimePicker/TimePicker.d.ts +26 -0
- package/dist/components/form/TimePicker/TimePicker.js +37 -0
- package/dist/components/form/TimePicker/time-picker.module.cjs +2 -0
- package/dist/components/form/TimePicker/time-picker.module.js +5 -0
- package/dist/components/form/ToggleGroup/ToggleGroup.cjs +2 -0
- package/dist/components/form/ToggleGroup/ToggleGroup.d.ts +54 -0
- package/dist/components/form/ToggleGroup/ToggleGroup.js +122 -0
- package/dist/components/form/ToggleGroup/toggle-group.module.cjs +2 -0
- package/dist/components/form/ToggleGroup/toggle-group.module.js +20 -0
- package/dist/components/form/Transfer/Transfer.cjs +2 -0
- package/dist/components/form/Transfer/Transfer.d.ts +44 -0
- package/dist/components/form/Transfer/Transfer.js +229 -0
- package/dist/components/form/Transfer/transfer.module.cjs +2 -0
- package/dist/components/form/Transfer/transfer.module.js +27 -0
- package/dist/components/form/TreeSelect/TreeSelect.cjs +2 -0
- package/dist/components/form/TreeSelect/TreeSelect.d.ts +67 -0
- package/dist/components/form/TreeSelect/TreeSelect.js +170 -0
- package/dist/components/form/TreeSelect/tree-select.module.cjs +2 -0
- package/dist/components/form/TreeSelect/tree-select.module.js +26 -0
- package/dist/components/helpers.cjs +2 -0
- package/dist/components/helpers.d.ts +34 -0
- package/dist/components/helpers.js +49 -0
- package/dist/components/layout/AppShell/AppShell.cjs +2 -0
- package/dist/components/layout/AppShell/AppShell.d.ts +84 -0
- package/dist/components/layout/AppShell/AppShell.js +94 -0
- package/dist/components/layout/AppShell/appshell.module.cjs +2 -0
- package/dist/components/layout/AppShell/appshell.module.js +17 -0
- package/dist/components/layout/AspectRatio/AspectRatio.cjs +2 -0
- package/dist/components/layout/AspectRatio/AspectRatio.d.ts +16 -0
- package/dist/components/layout/AspectRatio/AspectRatio.js +22 -0
- package/dist/components/layout/AspectRatio/aspect-ratio.module.cjs +2 -0
- package/dist/components/layout/AspectRatio/aspect-ratio.module.js +8 -0
- package/dist/components/layout/BentoGrid/BentoGrid.cjs +2 -0
- package/dist/components/layout/BentoGrid/BentoGrid.d.ts +20 -0
- package/dist/components/layout/BentoGrid/BentoGrid.js +41 -0
- package/dist/components/layout/BentoGrid/bento-grid.module.cjs +2 -0
- package/dist/components/layout/BentoGrid/bento-grid.module.js +15 -0
- package/dist/components/layout/Box/Box.cjs +2 -0
- package/dist/components/layout/Box/Box.d.ts +66 -0
- package/dist/components/layout/Box/Box.js +42 -0
- package/dist/components/layout/Box/box.module.cjs +2 -0
- package/dist/components/layout/Box/box.module.js +9 -0
- package/dist/components/layout/Center/Center.cjs +2 -0
- package/dist/components/layout/Center/Center.d.ts +13 -0
- package/dist/components/layout/Center/Center.js +22 -0
- package/dist/components/layout/Center/center.module.cjs +2 -0
- package/dist/components/layout/Center/center.module.js +5 -0
- package/dist/components/layout/Container/Container.cjs +2 -0
- package/dist/components/layout/Container/Container.d.ts +17 -0
- package/dist/components/layout/Container/Container.js +31 -0
- package/dist/components/layout/Container/container.module.cjs +2 -0
- package/dist/components/layout/Container/container.module.js +5 -0
- package/dist/components/layout/Dashboard/Dashboard.cjs +2 -0
- package/dist/components/layout/Dashboard/Dashboard.d.ts +42 -0
- package/dist/components/layout/Dashboard/Dashboard.js +125 -0
- package/dist/components/layout/Dashboard/dashboard.module.cjs +2 -0
- package/dist/components/layout/Dashboard/dashboard.module.js +31 -0
- package/dist/components/layout/Divider/Divider.cjs +2 -0
- package/dist/components/layout/Divider/Divider.d.ts +11 -0
- package/dist/components/layout/Divider/Divider.js +21 -0
- package/dist/components/layout/Divider/divider.module.cjs +2 -0
- package/dist/components/layout/Divider/divider.module.js +9 -0
- package/dist/components/layout/Flex/Flex.cjs +2 -0
- package/dist/components/layout/Flex/Flex.d.ts +41 -0
- package/dist/components/layout/Flex/Flex.js +40 -0
- package/dist/components/layout/Flex/flex.module.cjs +2 -0
- package/dist/components/layout/Flex/flex.module.js +5 -0
- package/dist/components/layout/Footer/Footer.cjs +2 -0
- package/dist/components/layout/Footer/Footer.d.ts +18 -0
- package/dist/components/layout/Footer/Footer.js +43 -0
- package/dist/components/layout/Footer/footer.module.cjs +2 -0
- package/dist/components/layout/Footer/footer.module.js +16 -0
- package/dist/components/layout/Grid/Grid.cjs +2 -0
- package/dist/components/layout/Grid/Grid.d.ts +27 -0
- package/dist/components/layout/Grid/Grid.js +47 -0
- package/dist/components/layout/Grid/grid-utils.cjs +2 -0
- package/dist/components/layout/Grid/grid-utils.d.ts +8 -0
- package/dist/components/layout/Grid/grid-utils.js +13 -0
- package/dist/components/layout/Grid/grid.module.cjs +2 -0
- package/dist/components/layout/Grid/grid.module.js +8 -0
- package/dist/components/layout/Group/Group.cjs +2 -0
- package/dist/components/layout/Group/Group.d.ts +36 -0
- package/dist/components/layout/Group/Group.js +32 -0
- package/dist/components/layout/Group/group.module.cjs +2 -0
- package/dist/components/layout/Group/group.module.js +5 -0
- package/dist/components/layout/Header/Header.cjs +2 -0
- package/dist/components/layout/Header/Header.d.ts +21 -0
- package/dist/components/layout/Header/Header.js +29 -0
- package/dist/components/layout/Header/header.module.cjs +2 -0
- package/dist/components/layout/Header/header.module.js +19 -0
- package/dist/components/layout/InteractiveArea/InteractiveArea.cjs +2 -0
- package/dist/components/layout/InteractiveArea/InteractiveArea.d.ts +111 -0
- package/dist/components/layout/InteractiveArea/InteractiveArea.js +57 -0
- package/dist/components/layout/InteractiveArea/interactive-area.module.cjs +2 -0
- package/dist/components/layout/InteractiveArea/interactive-area.module.js +25 -0
- package/dist/components/layout/Masonry/Masonry.cjs +2 -0
- package/dist/components/layout/Masonry/Masonry.d.ts +17 -0
- package/dist/components/layout/Masonry/Masonry.js +39 -0
- package/dist/components/layout/Masonry/masonry.module.cjs +2 -0
- package/dist/components/layout/Masonry/masonry.module.js +8 -0
- package/dist/components/layout/Navbar/Navbar.cjs +2 -0
- package/dist/components/layout/Navbar/Navbar.d.ts +55 -0
- package/dist/components/layout/Navbar/Navbar.js +117 -0
- package/dist/components/layout/Navbar/navbar.module.cjs +2 -0
- package/dist/components/layout/Navbar/navbar.module.js +25 -0
- package/dist/components/layout/ScrollArea/ScrollArea.cjs +2 -0
- package/dist/components/layout/ScrollArea/ScrollArea.d.ts +13 -0
- package/dist/components/layout/ScrollArea/ScrollArea.js +23 -0
- package/dist/components/layout/ScrollArea/scroll-area.module.cjs +2 -0
- package/dist/components/layout/ScrollArea/scroll-area.module.js +5 -0
- package/dist/components/layout/Sidebar/Sidebar.cjs +2 -0
- package/dist/components/layout/Sidebar/Sidebar.d.ts +38 -0
- package/dist/components/layout/Sidebar/Sidebar.js +63 -0
- package/dist/components/layout/Sidebar/sidebar.module.cjs +2 -0
- package/dist/components/layout/Sidebar/sidebar.module.js +22 -0
- package/dist/components/layout/SimpleGrid/SimpleGrid.cjs +2 -0
- package/dist/components/layout/SimpleGrid/SimpleGrid.d.ts +12 -0
- package/dist/components/layout/SimpleGrid/SimpleGrid.js +31 -0
- package/dist/components/layout/SimpleGrid/simple-grid.module.cjs +2 -0
- package/dist/components/layout/SimpleGrid/simple-grid.module.js +8 -0
- package/dist/components/layout/Splitter/Splitter.cjs +2 -0
- package/dist/components/layout/Splitter/Splitter.d.ts +47 -0
- package/dist/components/layout/Splitter/Splitter.js +111 -0
- package/dist/components/layout/Splitter/splitter.module.cjs +2 -0
- package/dist/components/layout/Splitter/splitter.module.js +13 -0
- package/dist/components/layout/Stack/Stack.cjs +2 -0
- package/dist/components/layout/Stack/Stack.d.ts +34 -0
- package/dist/components/layout/Stack/Stack.js +49 -0
- package/dist/components/layout/Stack/stack.module.cjs +2 -0
- package/dist/components/layout/Stack/stack.module.js +5 -0
- package/dist/components/layout/Toolbar/Toolbar.cjs +2 -0
- package/dist/components/layout/Toolbar/Toolbar.d.ts +44 -0
- package/dist/components/layout/Toolbar/Toolbar.js +59 -0
- package/dist/components/layout/Toolbar/toolbar.module.cjs +2 -0
- package/dist/components/layout/Toolbar/toolbar.module.js +14 -0
- package/dist/components/layout/Transition/Transition.cjs +2 -0
- package/dist/components/layout/Transition/Transition.d.ts +29 -0
- package/dist/components/layout/Transition/Transition.js +109 -0
- package/dist/components/layout/Transition/transition.module.cjs +2 -0
- package/dist/components/layout/Transition/transition.module.js +32 -0
- package/dist/components/layout/VisuallyHidden/VisuallyHidden.cjs +2 -0
- package/dist/components/layout/VisuallyHidden/VisuallyHidden.d.ts +10 -0
- package/dist/components/layout/VisuallyHidden/VisuallyHidden.js +13 -0
- package/dist/components/layout/VisuallyHidden/visuallyHidden.module.cjs +2 -0
- package/dist/components/layout/VisuallyHidden/visuallyHidden.module.js +5 -0
- package/dist/components/layout/Watermark/Watermark.cjs +2 -0
- package/dist/components/layout/Watermark/Watermark.d.ts +27 -0
- package/dist/components/layout/Watermark/Watermark.js +65 -0
- package/dist/components/layout/Watermark/watermark.module.cjs +2 -0
- package/dist/components/layout/Watermark/watermark.module.js +8 -0
- package/dist/components/media/Audio/Audio.cjs +2 -0
- package/dist/components/media/Audio/Audio.d.ts +61 -0
- package/dist/components/media/Audio/Audio.js +145 -0
- package/dist/components/media/Audio/audio.module.cjs +2 -0
- package/dist/components/media/Audio/audio.module.js +41 -0
- package/dist/components/media/Audio/components/AudioCustomControls.cjs +2 -0
- package/dist/components/media/Audio/components/AudioCustomControls.d.ts +50 -0
- package/dist/components/media/Audio/components/AudioCustomControls.js +194 -0
- package/dist/components/media/Audio/hooks/useAudioMetadata.cjs +2 -0
- package/dist/components/media/Audio/hooks/useAudioMetadata.d.ts +11 -0
- package/dist/components/media/Audio/hooks/useAudioMetadata.js +44 -0
- package/dist/components/media/Audio/hooks/useAudioPlayer.cjs +2 -0
- package/dist/components/media/Audio/hooks/useAudioPlayer.d.ts +47 -0
- package/dist/components/media/Audio/hooks/useAudioPlayer.js +221 -0
- package/dist/components/media/Gallery/Gallery.cjs +2 -0
- package/dist/components/media/Gallery/Gallery.d.ts +34 -0
- package/dist/components/media/Gallery/Gallery.js +212 -0
- package/dist/components/media/Gallery/gallery.module.cjs +2 -0
- package/dist/components/media/Gallery/gallery.module.js +33 -0
- package/dist/components/media/Icon/Icon.cjs +2 -0
- package/dist/components/media/Icon/Icon.d.ts +17 -0
- package/dist/components/media/Icon/Icon.js +16 -0
- package/dist/components/media/Icon/icon.module.cjs +2 -0
- package/dist/components/media/Icon/icon.module.js +26 -0
- package/dist/components/media/Image/Image.cjs +7 -0
- package/dist/components/media/Image/Image.d.ts +106 -0
- package/dist/components/media/Image/Image.js +230 -0
- package/dist/components/media/Image/image.module.cjs +2 -0
- package/dist/components/media/Image/image.module.js +28 -0
- package/dist/components/media/ImageCompare/ImageCompare.cjs +2 -0
- package/dist/components/media/ImageCompare/ImageCompare.d.ts +49 -0
- package/dist/components/media/ImageCompare/ImageCompare.js +99 -0
- package/dist/components/media/ImageCompare/image-compare.module.cjs +2 -0
- package/dist/components/media/ImageCompare/image-compare.module.js +22 -0
- package/dist/components/media/Lightbox/Lightbox.cjs +2 -0
- package/dist/components/media/Lightbox/Lightbox.d.ts +69 -0
- package/dist/components/media/Lightbox/Lightbox.js +182 -0
- package/dist/components/media/Lightbox/lightbox.module.cjs +2 -0
- package/dist/components/media/Lightbox/lightbox.module.js +28 -0
- package/dist/components/media/Video/Video.cjs +2 -0
- package/dist/components/media/Video/Video.d.ts +66 -0
- package/dist/components/media/Video/Video.js +143 -0
- package/dist/components/media/Video/components/VideoAdvancedMenu.cjs +2 -0
- package/dist/components/media/Video/components/VideoAdvancedMenu.d.ts +29 -0
- package/dist/components/media/Video/components/VideoAdvancedMenu.js +261 -0
- package/dist/components/media/Video/components/VideoControls.cjs +2 -0
- package/dist/components/media/Video/components/VideoControls.d.ts +62 -0
- package/dist/components/media/Video/components/VideoControls.js +183 -0
- package/dist/components/media/Video/hooks/useVideoPlayer.cjs +2 -0
- package/dist/components/media/Video/hooks/useVideoPlayer.d.ts +69 -0
- package/dist/components/media/Video/hooks/useVideoPlayer.js +195 -0
- package/dist/components/media/Video/video.module.cjs +2 -0
- package/dist/components/media/Video/video.module.js +38 -0
- package/dist/components/navigation/Affix/Affix.cjs +2 -0
- package/dist/components/navigation/Affix/Affix.d.ts +19 -0
- package/dist/components/navigation/Affix/Affix.js +70 -0
- package/dist/components/navigation/Affix/affix.module.cjs +2 -0
- package/dist/components/navigation/Affix/affix.module.js +8 -0
- package/dist/components/navigation/Anchor/Anchor.cjs +2 -0
- package/dist/components/navigation/Anchor/Anchor.d.ts +27 -0
- package/dist/components/navigation/Anchor/Anchor.js +106 -0
- package/dist/components/navigation/Anchor/anchor.module.cjs +2 -0
- package/dist/components/navigation/Anchor/anchor.module.js +14 -0
- package/dist/components/navigation/BackTop/BackTop.cjs +2 -0
- package/dist/components/navigation/BackTop/BackTop.d.ts +21 -0
- package/dist/components/navigation/BackTop/BackTop.js +63 -0
- package/dist/components/navigation/BackTop/backtop.module.cjs +2 -0
- package/dist/components/navigation/BackTop/backtop.module.js +10 -0
- package/dist/components/navigation/Breadcrumb/Breadcrumb.cjs +2 -0
- package/dist/components/navigation/Breadcrumb/Breadcrumb.d.ts +37 -0
- package/dist/components/navigation/Breadcrumb/Breadcrumb.js +66 -0
- package/dist/components/navigation/Breadcrumb/breadcrumb.module.cjs +2 -0
- package/dist/components/navigation/Breadcrumb/breadcrumb.module.js +20 -0
- package/dist/components/navigation/CommandPalette/CommandPalette.cjs +2 -0
- package/dist/components/navigation/CommandPalette/CommandPalette.d.ts +55 -0
- package/dist/components/navigation/CommandPalette/CommandPalette.js +211 -0
- package/dist/components/navigation/CommandPalette/command-palette.module.cjs +2 -0
- package/dist/components/navigation/CommandPalette/command-palette.module.js +22 -0
- package/dist/components/navigation/HamburgerMenu/HamburgerMenu.cjs +2 -0
- package/dist/components/navigation/HamburgerMenu/HamburgerMenu.d.ts +22 -0
- package/dist/components/navigation/HamburgerMenu/HamburgerMenu.js +31 -0
- package/dist/components/navigation/HamburgerMenu/hamburger-menu.module.cjs +2 -0
- package/dist/components/navigation/HamburgerMenu/hamburger-menu.module.js +17 -0
- package/dist/components/navigation/KeyboardShortcuts/KeyboardShortcuts.cjs +2 -0
- package/dist/components/navigation/KeyboardShortcuts/KeyboardShortcuts.d.ts +43 -0
- package/dist/components/navigation/KeyboardShortcuts/KeyboardShortcuts.js +38 -0
- package/dist/components/navigation/KeyboardShortcuts/keyboard-shortcuts.module.cjs +2 -0
- package/dist/components/navigation/KeyboardShortcuts/keyboard-shortcuts.module.js +15 -0
- package/dist/components/navigation/Link/Link.cjs +2 -0
- package/dist/components/navigation/Link/Link.d.ts +87 -0
- package/dist/components/navigation/Link/Link.js +43 -0
- package/dist/components/navigation/Link/link.module.cjs +2 -0
- package/dist/components/navigation/Link/link.module.js +16 -0
- package/dist/components/navigation/Menubar/Menubar.cjs +2 -0
- package/dist/components/navigation/Menubar/Menubar.d.ts +75 -0
- package/dist/components/navigation/Menubar/Menubar.js +221 -0
- package/dist/components/navigation/Menubar/menubar.module.cjs +2 -0
- package/dist/components/navigation/Menubar/menubar.module.js +15 -0
- package/dist/components/navigation/Pagination/Pagination.cjs +2 -0
- package/dist/components/navigation/Pagination/Pagination.d.ts +82 -0
- package/dist/components/navigation/Pagination/Pagination.js +226 -0
- package/dist/components/navigation/Pagination/pagination.module.cjs +2 -0
- package/dist/components/navigation/Pagination/pagination.module.js +21 -0
- package/dist/components/navigation/SpeedDial/SpeedDial.cjs +2 -0
- package/dist/components/navigation/SpeedDial/SpeedDial.d.ts +48 -0
- package/dist/components/navigation/SpeedDial/SpeedDial.js +53 -0
- package/dist/components/navigation/SpeedDial/speed-dial.module.cjs +2 -0
- package/dist/components/navigation/SpeedDial/speed-dial.module.js +15 -0
- package/dist/components/navigation/Stepper/Stepper.cjs +2 -0
- package/dist/components/navigation/Stepper/Stepper.d.ts +36 -0
- package/dist/components/navigation/Stepper/Stepper.js +87 -0
- package/dist/components/navigation/Stepper/stepper.module.cjs +2 -0
- package/dist/components/navigation/Stepper/stepper.module.js +21 -0
- package/dist/components/navigation/TabBar/TabBar.cjs +2 -0
- package/dist/components/navigation/TabBar/TabBar.d.ts +29 -0
- package/dist/components/navigation/TabBar/TabBar.js +44 -0
- package/dist/components/navigation/TabBar/tab-bar.module.cjs +2 -0
- package/dist/components/navigation/TabBar/tab-bar.module.js +16 -0
- package/dist/components/navigation/TabNavigation/TabNavigation.cjs +2 -0
- package/dist/components/navigation/TabNavigation/TabNavigation.d.ts +29 -0
- package/dist/components/navigation/TabNavigation/TabNavigation.js +78 -0
- package/dist/components/navigation/TabNavigation/tab-navigation.module.cjs +2 -0
- package/dist/components/navigation/TabNavigation/tab-navigation.module.js +24 -0
- package/dist/components/navigation/Tabs/Tabs.cjs +2 -0
- package/dist/components/navigation/Tabs/Tabs.d.ts +60 -0
- package/dist/components/navigation/Tabs/Tabs.js +131 -0
- package/dist/components/navigation/Tabs/tabs.module.cjs +2 -0
- package/dist/components/navigation/Tabs/tabs.module.js +16 -0
- package/dist/components/overlay/BottomSheet/BottomSheet.cjs +2 -0
- package/dist/components/overlay/BottomSheet/BottomSheet.d.ts +70 -0
- package/dist/components/overlay/BottomSheet/BottomSheet.js +92 -0
- package/dist/components/overlay/BottomSheet/bottom-sheet.module.cjs +2 -0
- package/dist/components/overlay/BottomSheet/bottom-sheet.module.js +17 -0
- package/dist/components/overlay/ContextMenu/ContextMenu.cjs +2 -0
- package/dist/components/overlay/ContextMenu/ContextMenu.d.ts +50 -0
- package/dist/components/overlay/ContextMenu/ContextMenu.js +139 -0
- package/dist/components/overlay/ContextMenu/context-menu.module.cjs +2 -0
- package/dist/components/overlay/ContextMenu/context-menu.module.js +13 -0
- package/dist/components/overlay/ContextMenu/index.d.ts +2 -0
- package/dist/components/overlay/Dialog/Dialog.cjs +2 -0
- package/dist/components/overlay/Dialog/Dialog.d.ts +95 -0
- package/dist/components/overlay/Dialog/Dialog.js +113 -0
- package/dist/components/overlay/Dialog/dialog.module.cjs +2 -0
- package/dist/components/overlay/Dialog/dialog.module.js +12 -0
- package/dist/components/overlay/Drawer/Drawer.cjs +2 -0
- package/dist/components/overlay/Drawer/Drawer.d.ts +78 -0
- package/dist/components/overlay/Drawer/Drawer.js +104 -0
- package/dist/components/overlay/Drawer/drawer.module.cjs +2 -0
- package/dist/components/overlay/Drawer/drawer.module.js +16 -0
- package/dist/components/overlay/Dropdown/Dropdown.cjs +2 -0
- package/dist/components/overlay/Dropdown/Dropdown.d.ts +37 -0
- package/dist/components/overlay/Dropdown/Dropdown.js +154 -0
- package/dist/components/overlay/Dropdown/dropdown.module.cjs +2 -0
- package/dist/components/overlay/Dropdown/dropdown.module.js +12 -0
- package/dist/components/overlay/Dropdown/index.d.ts +2 -0
- package/dist/components/overlay/FocusTrap/FocusTrap.cjs +2 -0
- package/dist/components/overlay/FocusTrap/FocusTrap.d.ts +25 -0
- package/dist/components/overlay/FocusTrap/FocusTrap.js +42 -0
- package/dist/components/overlay/FocusTrap/focus-trap.module.cjs +2 -0
- package/dist/components/overlay/FocusTrap/focus-trap.module.js +5 -0
- package/dist/components/overlay/HoverCard/HoverCard.cjs +2 -0
- package/dist/components/overlay/HoverCard/HoverCard.d.ts +48 -0
- package/dist/components/overlay/HoverCard/HoverCard.js +75 -0
- package/dist/components/overlay/HoverCard/hover-card.module.cjs +2 -0
- package/dist/components/overlay/HoverCard/hover-card.module.js +16 -0
- package/dist/components/overlay/Menu/Menu.cjs +2 -0
- package/dist/components/overlay/Menu/Menu.d.ts +63 -0
- package/dist/components/overlay/Menu/Menu.js +175 -0
- package/dist/components/overlay/Menu/index.d.ts +2 -0
- package/dist/components/overlay/Menu/menu.module.cjs +2 -0
- package/dist/components/overlay/Menu/menu.module.js +21 -0
- package/dist/components/overlay/Popconfirm/Popconfirm.cjs +2 -0
- package/dist/components/overlay/Popconfirm/Popconfirm.d.ts +45 -0
- package/dist/components/overlay/Popconfirm/Popconfirm.js +68 -0
- package/dist/components/overlay/Popconfirm/popconfirm.module.cjs +2 -0
- package/dist/components/overlay/Popconfirm/popconfirm.module.js +13 -0
- package/dist/components/overlay/Popover/Popover.cjs +2 -0
- package/dist/components/overlay/Popover/Popover.d.ts +52 -0
- package/dist/components/overlay/Popover/Popover.js +118 -0
- package/dist/components/overlay/Popover/popover.module.cjs +2 -0
- package/dist/components/overlay/Popover/popover.module.js +11 -0
- package/dist/components/overlay/Portal/Portal.cjs +2 -0
- package/dist/components/overlay/Portal/Portal.d.ts +15 -0
- package/dist/components/overlay/Portal/Portal.js +7 -0
- package/dist/components/overlay/Tooltip/Tooltip.cjs +2 -0
- package/dist/components/overlay/Tooltip/Tooltip.d.ts +44 -0
- package/dist/components/overlay/Tooltip/Tooltip.js +107 -0
- package/dist/components/overlay/Tooltip/tooltip.module.cjs +2 -0
- package/dist/components/overlay/Tooltip/tooltip.module.js +12 -0
- package/dist/components/typography/Blockquote/Blockquote.cjs +2 -0
- package/dist/components/typography/Blockquote/Blockquote.d.ts +31 -0
- package/dist/components/typography/Blockquote/Blockquote.js +33 -0
- package/dist/components/typography/Blockquote/blockquote.module.cjs +2 -0
- package/dist/components/typography/Blockquote/blockquote.module.js +17 -0
- package/dist/components/typography/Code/Code.cjs +2 -0
- package/dist/components/typography/Code/Code.d.ts +25 -0
- package/dist/components/typography/Code/Code.js +23 -0
- package/dist/components/typography/Code/code.module.cjs +2 -0
- package/dist/components/typography/Code/code.module.js +9 -0
- package/dist/components/typography/Highlight/Highlight.cjs +2 -0
- package/dist/components/typography/Highlight/Highlight.d.ts +19 -0
- package/dist/components/typography/Highlight/Highlight.js +48 -0
- package/dist/components/typography/Highlight/highlight.module.cjs +2 -0
- package/dist/components/typography/Highlight/highlight.module.js +8 -0
- package/dist/components/typography/Kbd/Kbd.cjs +2 -0
- package/dist/components/typography/Kbd/Kbd.d.ts +18 -0
- package/dist/components/typography/Kbd/Kbd.js +16 -0
- package/dist/components/typography/Kbd/kbd.module.cjs +2 -0
- package/dist/components/typography/Kbd/kbd.module.js +10 -0
- package/dist/components/typography/Label/Label.cjs +2 -0
- package/dist/components/typography/Label/Label.d.ts +9 -0
- package/dist/components/typography/Label/Label.js +26 -0
- package/dist/components/typography/Label/label.module.cjs +2 -0
- package/dist/components/typography/Label/label.module.js +10 -0
- package/dist/components/typography/Legend/Legend.cjs +2 -0
- package/dist/components/typography/Legend/Legend.d.ts +9 -0
- package/dist/components/typography/Legend/Legend.js +21 -0
- package/dist/components/typography/Legend/legend.module.cjs +2 -0
- package/dist/components/typography/Legend/legend.module.js +5 -0
- package/dist/components/typography/Span/Span.cjs +2 -0
- package/dist/components/typography/Span/Span.d.ts +47 -0
- package/dist/components/typography/Span/Span.js +46 -0
- package/dist/components/typography/Span/span.module.cjs +2 -0
- package/dist/components/typography/Span/span.module.js +22 -0
- package/dist/components/typography/Spoiler/Spoiler.cjs +2 -0
- package/dist/components/typography/Spoiler/Spoiler.d.ts +74 -0
- package/dist/components/typography/Spoiler/Spoiler.js +54 -0
- package/dist/components/typography/Spoiler/spoiler.module.cjs +2 -0
- package/dist/components/typography/Spoiler/spoiler.module.js +11 -0
- package/dist/components/typography/Text/Text.cjs +2 -0
- package/dist/components/typography/Text/Text.d.ts +78 -0
- package/dist/components/typography/Text/Text.js +37 -0
- package/dist/components/typography/Text/text.module.cjs +2 -0
- package/dist/components/typography/Text/text.module.js +29 -0
- package/dist/components/typography/Title/Title.cjs +2 -0
- package/dist/components/typography/Title/Title.d.ts +34 -0
- package/dist/components/typography/Title/Title.js +33 -0
- package/dist/components/typography/Title/title.module.cjs +2 -0
- package/dist/components/typography/Title/title.module.js +25 -0
- package/dist/data-display/json-diff-viewer.cjs +2 -0
- package/dist/data-display/json-diff-viewer.d.ts +1 -0
- package/dist/data-display/json-diff-viewer.js +3 -0
- package/dist/data-display/markdown.cjs +2 -0
- package/dist/data-display/markdown.d.ts +1 -0
- package/dist/data-display/markdown.js +3 -0
- package/dist/data-display/node-graph.cjs +2 -0
- package/dist/data-display/node-graph.d.ts +1 -0
- package/dist/data-display/node-graph.js +3 -0
- package/dist/data-display/qr-code.cjs +2 -0
- package/dist/data-display/qr-code.d.ts +1 -0
- package/dist/data-display/qr-code.js +3 -0
- package/dist/data-display/schedule-view.cjs +2 -0
- package/dist/data-display/schedule-view.d.ts +1 -0
- package/dist/data-display/schedule-view.js +3 -0
- package/dist/data-display-core.d.ts +32 -0
- package/dist/data-display.cjs +2 -0
- package/dist/data-display.d.ts +1 -0
- package/dist/data-display.js +35 -0
- package/dist/density.cjs +2 -0
- package/dist/density.d.ts +18 -0
- package/dist/density.js +13 -0
- package/dist/feedback.cjs +2 -0
- package/dist/feedback.d.ts +16 -0
- package/dist/feedback.js +18 -0
- package/dist/form.cjs +2 -0
- package/dist/form.d.ts +55 -0
- package/dist/form.js +57 -0
- package/dist/hooks/useAutoResize.cjs +2 -0
- package/dist/hooks/useAutoResize.d.ts +8 -0
- package/dist/hooks/useAutoResize.js +17 -0
- package/dist/hooks/useBreakpoint.cjs +2 -0
- package/dist/hooks/useBreakpoint.d.ts +35 -0
- package/dist/hooks/useBreakpoint.js +28 -0
- package/dist/hooks/useFocusVisible.d.ts +6 -0
- package/dist/hooks/useMediaLoader.cjs +2 -0
- package/dist/hooks/useMediaLoader.d.ts +27 -0
- package/dist/hooks/useMediaLoader.js +34 -0
- package/dist/hooks/useMediaQuery.cjs +2 -0
- package/dist/hooks/useMediaQuery.d.ts +14 -0
- package/dist/hooks/useMediaQuery.js +13 -0
- package/dist/hooks/useMergedRef.cjs +2 -0
- package/dist/hooks/useMergedRef.d.ts +8 -0
- package/dist/hooks/useMergedRef.js +20 -0
- package/dist/i18n/generated/keys.d.ts +1 -0
- package/dist/i18n/generated/resources.cjs +2 -0
- package/dist/i18n/generated/resources.d.ts +4 -0
- package/dist/i18n/generated/resources.js +788 -0
- package/dist/i18n/instance.cjs +2 -0
- package/dist/i18n/instance.d.ts +23 -0
- package/dist/i18n/instance.js +47 -0
- package/dist/i18n/useWimTranslation.cjs +2 -0
- package/dist/i18n/useWimTranslation.d.ts +14 -0
- package/dist/i18n/useWimTranslation.js +16 -0
- package/dist/icon/alert-circle.cjs +2 -0
- package/dist/icon/alert-circle.js +35 -0
- package/dist/icon/align-justify.cjs +2 -0
- package/dist/icon/align-justify.js +36 -0
- package/dist/icon/bell.cjs +2 -0
- package/dist/icon/bell.js +19 -0
- package/dist/icon/calendar.cjs +2 -0
- package/dist/icon/calendar.js +44 -0
- package/dist/icon/chart.cjs +2 -0
- package/dist/icon/chart.js +19 -0
- package/dist/icon/check-circle.cjs +2 -0
- package/dist/icon/check-circle.js +17 -0
- package/dist/icon/check.cjs +2 -0
- package/dist/icon/check.js +17 -0
- package/dist/icon/chevron-down.cjs +2 -0
- package/dist/icon/chevron-down.js +17 -0
- package/dist/icon/chevron-left.cjs +2 -0
- package/dist/icon/chevron-left.js +17 -0
- package/dist/icon/chevron-right.cjs +2 -0
- package/dist/icon/chevron-right.js +17 -0
- package/dist/icon/chevron-up.cjs +2 -0
- package/dist/icon/chevron-up.js +17 -0
- package/dist/icon/circle.cjs +2 -0
- package/dist/icon/circle.js +17 -0
- package/dist/icon/clock.cjs +2 -0
- package/dist/icon/clock.js +21 -0
- package/dist/icon/close-small.cjs +2 -0
- package/dist/icon/close-small.js +17 -0
- package/dist/icon/close.cjs +2 -0
- package/dist/icon/close.js +27 -0
- package/dist/icon/columns.cjs +2 -0
- package/dist/icon/columns.js +29 -0
- package/dist/icon/copy.cjs +2 -0
- package/dist/icon/copy.js +24 -0
- package/dist/icon/credit-card.cjs +2 -0
- package/dist/icon/credit-card.js +31 -0
- package/dist/icon/document.cjs +2 -0
- package/dist/icon/document.js +38 -0
- package/dist/icon/download.cjs +2 -0
- package/dist/icon/download.js +26 -0
- package/dist/icon/edit.cjs +2 -0
- package/dist/icon/edit.js +17 -0
- package/dist/icon/email.cjs +2 -0
- package/dist/icon/email.js +17 -0
- package/dist/icon/external-link.cjs +2 -0
- package/dist/icon/external-link.js +28 -0
- package/dist/icon/eye-off.cjs +2 -0
- package/dist/icon/eye-off.js +22 -0
- package/dist/icon/eye.cjs +2 -0
- package/dist/icon/eye.js +21 -0
- package/dist/icon/filter.cjs +2 -0
- package/dist/icon/filter.js +17 -0
- package/dist/icon/grip-vertical.cjs +2 -0
- package/dist/icon/grip-vertical.js +50 -0
- package/dist/icon/help-circle.cjs +2 -0
- package/dist/icon/help-circle.js +30 -0
- package/dist/icon/home.cjs +2 -0
- package/dist/icon/home.js +19 -0
- package/dist/icon/hourglass.cjs +2 -0
- package/dist/icon/hourglass.js +17 -0
- package/dist/icon/image.cjs +2 -0
- package/dist/icon/image.js +32 -0
- package/dist/icon/index.cjs +2 -0
- package/dist/icon/index.d.ts +148 -0
- package/dist/icon/index.js +150 -0
- package/dist/icon/info-circle.cjs +2 -0
- package/dist/icon/info-circle.js +35 -0
- package/dist/icon/loading.cjs +2 -0
- package/dist/icon/loading.js +26 -0
- package/dist/icon/log-in.cjs +2 -0
- package/dist/icon/log-in.js +26 -0
- package/dist/icon/log-out.cjs +2 -0
- package/dist/icon/log-out.js +26 -0
- package/dist/icon/maximize.cjs +2 -0
- package/dist/icon/maximize.js +24 -0
- package/dist/icon/minimize.cjs +2 -0
- package/dist/icon/minimize.js +24 -0
- package/dist/icon/minus.cjs +2 -0
- package/dist/icon/minus.js +22 -0
- package/dist/icon/monitor.cjs +2 -0
- package/dist/icon/monitor.js +38 -0
- package/dist/icon/moon.cjs +2 -0
- package/dist/icon/moon.js +17 -0
- package/dist/icon/more-horizontal.cjs +2 -0
- package/dist/icon/more-horizontal.js +33 -0
- package/dist/icon/more-vertical.cjs +2 -0
- package/dist/icon/more-vertical.js +33 -0
- package/dist/icon/mute.cjs +2 -0
- package/dist/icon/mute.js +31 -0
- package/dist/icon/paperclip.cjs +2 -0
- package/dist/icon/paperclip.js +19 -0
- package/dist/icon/pause.cjs +2 -0
- package/dist/icon/pause.js +27 -0
- package/dist/icon/pdf.cjs +2 -0
- package/dist/icon/pdf.js +32 -0
- package/dist/icon/phone.cjs +2 -0
- package/dist/icon/phone.js +17 -0
- package/dist/icon/pip.cjs +2 -0
- package/dist/icon/pip.js +47 -0
- package/dist/icon/play.cjs +2 -0
- package/dist/icon/play.js +17 -0
- package/dist/icon/plus.cjs +2 -0
- package/dist/icon/plus.js +27 -0
- package/dist/icon/project.cjs +2 -0
- package/dist/icon/project.js +19 -0
- package/dist/icon/refresh.cjs +2 -0
- package/dist/icon/refresh.js +21 -0
- package/dist/icon/registry.cjs +2 -0
- package/dist/icon/registry.d.ts +5 -0
- package/dist/icon/registry.js +9 -0
- package/dist/icon/repeat.cjs +2 -0
- package/dist/icon/repeat.js +24 -0
- package/dist/icon/search.cjs +2 -0
- package/dist/icon/search.js +26 -0
- package/dist/icon/send.cjs +2 -0
- package/dist/icon/send.js +19 -0
- package/dist/icon/settings.cjs +2 -0
- package/dist/icon/settings.js +23 -0
- package/dist/icon/share.cjs +2 -0
- package/dist/icon/share.js +26 -0
- package/dist/icon/shuffle.cjs +2 -0
- package/dist/icon/shuffle.js +40 -0
- package/dist/icon/skip-back.cjs +2 -0
- package/dist/icon/skip-back.js +19 -0
- package/dist/icon/skip-forward.cjs +2 -0
- package/dist/icon/skip-forward.js +19 -0
- package/dist/icon/smartphone.cjs +2 -0
- package/dist/icon/smartphone.js +29 -0
- package/dist/icon/spinner.cjs +2 -0
- package/dist/icon/spinner.js +66 -0
- package/dist/icon/square.cjs +2 -0
- package/dist/icon/square.js +19 -0
- package/dist/icon/star.cjs +2 -0
- package/dist/icon/star.js +19 -0
- package/dist/icon/sun.cjs +2 -0
- package/dist/icon/sun.js +71 -0
- package/dist/icon/thumb-down.cjs +2 -0
- package/dist/icon/thumb-down.js +17 -0
- package/dist/icon/thumb-up.cjs +2 -0
- package/dist/icon/thumb-up.js +17 -0
- package/dist/icon/trash.cjs +2 -0
- package/dist/icon/trash.js +32 -0
- package/dist/icon/upload.cjs +2 -0
- package/dist/icon/upload.js +26 -0
- package/dist/icon/user.cjs +2 -0
- package/dist/icon/user.js +21 -0
- package/dist/icon/video.cjs +2 -0
- package/dist/icon/video.js +24 -0
- package/dist/icon/volume.cjs +2 -0
- package/dist/icon/volume.js +17 -0
- package/dist/icons.cjs +2 -0
- package/dist/icons.d.ts +1 -0
- package/dist/icons.js +79 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +267 -0
- package/dist/index.umd.d.ts +1 -0
- package/dist/layout.cjs +2 -0
- package/dist/layout.d.ts +25 -0
- package/dist/layout.js +27 -0
- package/dist/locales/en/common.json +692 -0
- package/dist/locales/en/components.json +635 -0
- package/dist/locales/en/data-display.json +15 -0
- package/dist/locales/en/form.json +139 -0
- package/dist/locales/ja/common.json +692 -0
- package/dist/locales/ja/components.json +635 -0
- package/dist/locales/ja/data-display.json +15 -0
- package/dist/locales/ja/form.json +139 -0
- package/dist/locales/pt/common.json +692 -0
- package/dist/locales/pt/components.json +635 -0
- package/dist/locales/pt/data-display.json +15 -0
- package/dist/locales/pt/form.json +139 -0
- package/dist/media.cjs +2 -0
- package/dist/media.d.ts +7 -0
- package/dist/media.js +9 -0
- package/dist/navigation.cjs +2 -0
- package/dist/navigation.d.ts +15 -0
- package/dist/navigation.js +17 -0
- package/dist/node_modules/@fullcalendar/core/locales/ja.cjs +2 -0
- package/dist/node_modules/@fullcalendar/core/locales/ja.js +23 -0
- package/dist/node_modules/@fullcalendar/core/locales/pt-br.cjs +2 -0
- package/dist/node_modules/@fullcalendar/core/locales/pt-br.js +43 -0
- package/dist/node_modules/@fullcalendar/core/locales/pt.cjs +2 -0
- package/dist/node_modules/@fullcalendar/core/locales/pt.js +25 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.cjs +2 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +26 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.cjs +2 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +72 -0
- package/dist/overlay.cjs +2 -0
- package/dist/overlay.d.ts +12 -0
- package/dist/overlay.js +14 -0
- package/dist/reset.css +1 -0
- package/dist/rhf/FormField.cjs +2 -0
- package/dist/rhf/FormField.d.ts +30 -0
- package/dist/rhf/FormField.js +19 -0
- package/dist/rhf/fieldError.cjs +2 -0
- package/dist/rhf/fieldError.d.ts +10 -0
- package/dist/rhf/fieldError.js +17 -0
- package/dist/rhf/fieldProps.cjs +2 -0
- package/dist/rhf/fieldProps.d.ts +25 -0
- package/dist/rhf/fieldProps.js +24 -0
- package/dist/rhf/zod.d.ts +6 -0
- package/dist/rhf/zod.js +3 -0
- package/dist/rhf.cjs +2 -0
- package/dist/rhf.d.ts +15 -0
- package/dist/rhf.js +6 -0
- package/dist/styles.css +3 -0
- package/dist/theme.cjs +2 -0
- package/dist/theme.d.ts +13 -0
- package/dist/theme.js +15 -0
- package/dist/tokens.cjs +0 -0
- package/dist/tokens.d.ts +1 -0
- package/dist/tokens.js +0 -0
- package/dist/types/generated-intents.d.ts +26 -0
- package/dist/types/generated-tokens.d.ts +25 -0
- package/dist/types/polymorphic.d.ts +21 -0
- package/dist/types/tokens.d.ts +156 -0
- package/dist/typography.cjs +2 -0
- package/dist/typography.d.ts +10 -0
- package/dist/typography.js +12 -0
- package/dist/utilities/dev-utils.d.ts +1 -0
- package/dist/utilities/slider-utils.cjs +2 -0
- package/dist/utilities/slider-utils.d.ts +12 -0
- package/dist/utilities/slider-utils.js +25 -0
- package/dist/utilities/style-utils.cjs +2 -0
- package/dist/utilities/style-utils.d.ts +33 -0
- package/dist/utilities/style-utils.js +76 -0
- package/dist/wimui.umd.css +2 -0
- package/dist/wimui.umd.js +9 -0
- package/package.json +481 -0
package/README.md
ADDED
|
@@ -0,0 +1,616 @@
|
|
|
1
|
+
# wimui
|
|
2
|
+
|
|
3
|
+
[English](./README.md) · [日本語](./README.ja.md)
|
|
4
|
+
|
|
5
|
+
A React component library with 200+ components, design tokens, dark mode, internationalization (en / ja / pt-BR), and WAI-ARIA compliant accessibility.
|
|
6
|
+
|
|
7
|
+
- Documentation (Storybook): https://takeshisakuma.github.io/wimui/
|
|
8
|
+
- Requirements: Node.js >= 22 / **React 19** (`react` / `react-dom`) / **LTR only** (en / ja / pt)
|
|
9
|
+
|
|
10
|
+
## Scope (Core / optional)
|
|
11
|
+
|
|
12
|
+
The npm package is **a single `wimui`** (not a split monorepo of packages). You only split how you *use* it. **Start with Core**, and reach for optional subpaths only when you need them.
|
|
13
|
+
|
|
14
|
+
| Scope | import | Extra peers |
|
|
15
|
+
|---|---|---|
|
|
16
|
+
| **Core** | `wimui` / `wimui/form` / `wimui/layout`, etc. | None (React 19 only) |
|
|
17
|
+
| Optional — Charts | `wimui/charts` | `recharts` |
|
|
18
|
+
| Optional — Peer components | dedicated subpath per component, e.g. `wimui/ai/markdown-renderer`, `wimui/data-display/qr-code` | that component's peer (see table below) |
|
|
19
|
+
| Optional — RHF | `wimui/rhf` | `react-hook-form` + `zod` 4 (+ resolvers) |
|
|
20
|
+
|
|
21
|
+
**Why subpaths are separated:** optional components pull in heavy peers (recharts, etc.). By not exporting them from the root `wimui`, a Core-only app is far less likely to drag those peers into type resolution or bundle analysis without installing them. Import only the subpath for the feature you use, and install only that peer.
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
// ✅
|
|
25
|
+
import { Button } from "wimui";
|
|
26
|
+
import { BarChart } from "wimui/charts";
|
|
27
|
+
|
|
28
|
+
// ❌ not on the root (type error / unresolved)
|
|
29
|
+
// import { BarChart } from "wimui";
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The category barrels **`wimui/data-display` and `wimui/ai` are peer-free** — importing them never pulls an optional peer. Each peer-dependent component lives on its **own subpath** whose name documents its peer (e.g. `wimui/data-display/markdown` → `react-markdown`). This is the one deliberate exception to "no deep paths": these subpaths are curated peer-isolation boundaries, not folder-mirrored component paths. See the table below.
|
|
33
|
+
|
|
34
|
+
## Support matrix (peers)
|
|
35
|
+
|
|
36
|
+
Supported version ranges for public peers. Wider ranges are unsupported.
|
|
37
|
+
|
|
38
|
+
| Package | Supported | Peer range | Notes |
|
|
39
|
+
|---|---|---|---|
|
|
40
|
+
| `react` / `react-dom` | **19** | `^19.0.0` | Development, tests, and published types target React 19. React 18 is unsupported |
|
|
41
|
+
| `zod` (when using `wimui/rhf`) | **4** | `^4.0.0` | Development and tests target zod 4. zod 3 is unsupported |
|
|
42
|
+
| `@hookform/resolvers` | **5.1+** | `^5.1.0` | When using `wimui/rhf` |
|
|
43
|
+
| `react-hook-form` | **7.43+** | `^7.43.0` | Only when using `wimui/rhf` |
|
|
44
|
+
|
|
45
|
+
Core (the root `wimui`) needs neither zod nor RHF. For optional peers such as charts, see the table below.
|
|
46
|
+
|
|
47
|
+
## Installation
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npm install wimui
|
|
51
|
+
# peers (React 19):
|
|
52
|
+
npm install react@^19 react-dom@^19
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Optional features need their own peer (see "Optional peerDependencies"): e.g. `npm install recharts` for `wimui/charts`.
|
|
56
|
+
|
|
57
|
+
You do **not** need `i18next` / `react-i18next` or any other i18n library. Translation resources are bundled and do not depend on a specific i18n library (see "Internationalization" below).
|
|
58
|
+
|
|
59
|
+
## Quick start
|
|
60
|
+
|
|
61
|
+
Load the styles once at your app entry point. The required CSS is a single file, `styles.css` (tokens + components). `reset.css` is optional.
|
|
62
|
+
|
|
63
|
+
**Start from Core** — no extra peers. Most UI can be imported from the root.
|
|
64
|
+
|
|
65
|
+
```tsx
|
|
66
|
+
import "wimui/styles.css"; // required: :root --wim-* + all component styles
|
|
67
|
+
import "wimui/reset.css"; // optional: opinionated reset / base element styles
|
|
68
|
+
|
|
69
|
+
import { Button } from "wimui";
|
|
70
|
+
|
|
71
|
+
export const App = () => <Button>Save</Button>;
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
- `styles.css` is required (bundles the design tokens and component CSS).
|
|
75
|
+
- `reset.css` is optional. It contains opinionated global styles that reset `button` / `a` / `ul` / `table`, so you can omit it if it conflicts with your app's existing styles.
|
|
76
|
+
|
|
77
|
+
No `i18next` initialization is required. To manage theme, density, and locale together, `WimProvider` is recommended (see below).
|
|
78
|
+
|
|
79
|
+
### Commonly used public types / APIs
|
|
80
|
+
|
|
81
|
+
```tsx
|
|
82
|
+
import {
|
|
83
|
+
WimProvider,
|
|
84
|
+
useWim,
|
|
85
|
+
setWimTheme,
|
|
86
|
+
setWimDensity,
|
|
87
|
+
setWimLocale,
|
|
88
|
+
type WimDensity,
|
|
89
|
+
type WimColor,
|
|
90
|
+
type WimColorKey,
|
|
91
|
+
} from "wimui";
|
|
92
|
+
// If you only want token types, you can also import from `wimui/tokens`
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
| API / type | Purpose |
|
|
96
|
+
|---|---|
|
|
97
|
+
| `WimProvider` / `useWim` | Set `theme` / `density` / `locale` from React |
|
|
98
|
+
| `setWimTheme` / `setWimDensity` / `setWimLocale` | Imperative APIs for attributes and locale |
|
|
99
|
+
| `WimDensity` | `"comfortable" \| "compact"` |
|
|
100
|
+
| `WimColor` / `WimColorKey` | Color prop / token keys (public roles; does not include `--wim-comp-*`) |
|
|
101
|
+
|
|
102
|
+
**Only when you need optional features** — import from `wimui/charts` / a peer-component subpath / `wimui/rhf`, and install the peers in the table below.
|
|
103
|
+
|
|
104
|
+
```tsx
|
|
105
|
+
import { BarChart } from "wimui/charts";
|
|
106
|
+
import { Markdown } from "wimui/data-display/markdown";
|
|
107
|
+
import { StreamingText } from "wimui/ai/streaming-text";
|
|
108
|
+
import { FormField } from "wimui/rhf";
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
# e.g. when using charts
|
|
113
|
+
npm install recharts
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
> The UMD build (`dist/wimui.umd.js` + `dist/wimui.umd.css`) loaded via a `<script>` tag
|
|
117
|
+
> bundles the required styles (tokens + components) and reset into a single file.
|
|
118
|
+
|
|
119
|
+
## Icons
|
|
120
|
+
|
|
121
|
+
There are two ways to specify an icon.
|
|
122
|
+
|
|
123
|
+
**1. Pass the component directly (recommended; tree-shakeable)**
|
|
124
|
+
|
|
125
|
+
```tsx
|
|
126
|
+
import { Button, Icon, CheckIcon } from "wimui";
|
|
127
|
+
|
|
128
|
+
<Button icon={<Icon component={CheckIcon} />}>Save</Button>
|
|
129
|
+
<Icon component={CheckIcon} size="sm" />
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
**2. Specify by string**
|
|
133
|
+
|
|
134
|
+
If you want string-based usage like `icon="CheckIcon"`, register the icons once at your entry point (specifying a string without registering triggers a development-time warning).
|
|
135
|
+
|
|
136
|
+
```tsx
|
|
137
|
+
import "wimui/icons"; // registers all icons (~30KB minified / 5KB gzip)
|
|
138
|
+
|
|
139
|
+
<Button icon="CheckIcon">Save</Button>
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
If you never use string-based specification, you don't need to import `wimui/icons`, and the icons are not included in your bundle.
|
|
143
|
+
|
|
144
|
+
## Internationalization (i18n)
|
|
145
|
+
|
|
146
|
+
Works out of the box in English with no setup (only the translation keys used by components are bundled for en / ja / pt). **No dependency on `i18next` / `react-i18next`** is required. To switch the display language:
|
|
147
|
+
|
|
148
|
+
```tsx
|
|
149
|
+
import { setWimLocale, getWimLocale } from "wimui";
|
|
150
|
+
|
|
151
|
+
setWimLocale("ja"); // "en" | "ja" | "pt"
|
|
152
|
+
getWimLocale(); // current locale (e.g. "ja")
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
If your app already manages language with i18next or similar, call `setWimLocale` on language change to keep them in sync. wimui does not depend on a specific i18n library, so it works with any mechanism.
|
|
156
|
+
|
|
157
|
+
```ts
|
|
158
|
+
// e.g. sync with your app's i18next
|
|
159
|
+
i18n.on("languageChanged", (lng) => setWimLocale(lng));
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
**Writing direction**: officially LTR only (en / ja / pt). RTL (Arabic, Hebrew, etc.) and a full migration to logical properties are **not planned** (see `IMPROVEMENTS.md` "Out of scope").
|
|
163
|
+
|
|
164
|
+
## Dark mode
|
|
165
|
+
|
|
166
|
+
`WimProvider` is recommended. Internally it writes `data-theme` on `<html>` (the attribute name and target remain the public contract). When unspecified (`system`), it follows the OS `prefers-color-scheme`.
|
|
167
|
+
|
|
168
|
+
```tsx
|
|
169
|
+
import { WimProvider } from "wimui";
|
|
170
|
+
|
|
171
|
+
<WimProvider theme="dark" density="compact" locale="ja">
|
|
172
|
+
<App />
|
|
173
|
+
</WimProvider>
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
You can also set the attribute directly (`ThemeToggle` / `setWimTheme` share the same contract).
|
|
177
|
+
|
|
178
|
+
```html
|
|
179
|
+
<html data-theme="dark"> <!-- force dark -->
|
|
180
|
+
<html data-theme="light"> <!-- force light -->
|
|
181
|
+
<html> <!-- follow OS setting -->
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
If you drive the same document theme with both `ThemeToggle` and `WimProvider`, lift the state to a parent and set `applyToDocument={false}` on the toggle side.
|
|
185
|
+
|
|
186
|
+
## Overriding the brand color (primary)
|
|
187
|
+
|
|
188
|
+
Override the public role tokens via CSS. Load it **after** `wimui/styles.css`. Only touch the role layer (do not touch `--wim-comp-*` or raw palette colors).
|
|
189
|
+
|
|
190
|
+
Many derivatives (`primary-hover` / `primary-active` / `primary-muted` / `primary-soft`, etc.) are computed from `primary` / `primary-rgb`, so **the two of those plus `text-on-primary` for contrast** are usually enough.
|
|
191
|
+
|
|
192
|
+
```css
|
|
193
|
+
/* app.css — after import "wimui/styles.css" */
|
|
194
|
+
:root {
|
|
195
|
+
--wim-color-primary: #0b6e4f;
|
|
196
|
+
--wim-color-primary-rgb: 11, 110, 79; /* for rgba(var(--wim-color-primary-rgb), a). comma-separated */
|
|
197
|
+
--wim-color-text-on-primary: #ffffff;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/* only if you want a different color in dark mode */
|
|
201
|
+
[data-theme="dark"] {
|
|
202
|
+
--wim-color-primary: #3dd68c;
|
|
203
|
+
--wim-color-primary-rgb: 61, 214, 140;
|
|
204
|
+
--wim-color-text-on-primary: #06281a;
|
|
205
|
+
}
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
- Do not wrap `primary-rgb` in `rgb(...)` (use the `11, 110, 79` form).
|
|
209
|
+
- If you customize `primary-fill` (e.g. for dark-mode fills), override it too if needed.
|
|
210
|
+
- For the full token list, see Storybook **Token → Colors** / `DESIGN.md`.
|
|
211
|
+
|
|
212
|
+
## UI density
|
|
213
|
+
|
|
214
|
+
Switches control heights and paddings globally. Layout spacing (`--wim-spacing-*`) is unchanged; `--wim-height-*`, `--wim-control-padding-*`, table cell paddings, etc. follow along. The attribute name is `data-density` (public contract). Set it via `WimProvider`'s `density` or `setWimDensity`.
|
|
215
|
+
|
|
216
|
+
```ts
|
|
217
|
+
import { setWimDensity, getWimDensity } from "wimui";
|
|
218
|
+
|
|
219
|
+
setWimDensity("compact"); // for dashboards (documentElement)
|
|
220
|
+
setWimDensity("comfortable"); // default
|
|
221
|
+
getWimDensity(); // "comfortable" | "compact"
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
```html
|
|
225
|
+
<html data-density="compact">
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
In Storybook, check it via the toolbar **Density**, or Token → Density / Theme.
|
|
229
|
+
|
|
230
|
+
## Bundle size and import style
|
|
231
|
+
|
|
232
|
+
Named imports from the root exclude unused components from the bundle (`sideEffects` is configured). Per-category subpaths are also available.
|
|
233
|
+
|
|
234
|
+
```tsx
|
|
235
|
+
import { Button } from "wimui"; // tree-shakeable (recommended)
|
|
236
|
+
import { Button } from "wimui/form"; // per-category subpath
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
Categories: `layout` / `form` / `feedback` / `navigation` / `data-display` / `overlay` / `typography` / `media` / `charts` / `ai` / `tokens` / `rhf`
|
|
240
|
+
|
|
241
|
+
**Deep paths are not public.** Per-component paths like `wimui/form/Button` are not in `exports` (so folder names don't become a consumer contract).
|
|
242
|
+
|
|
243
|
+
### Public API surface (frozen)
|
|
244
|
+
|
|
245
|
+
The `exports` map in `package.json` and the barrels' named exports are the public contract. `npm run check:api` verifies both against `api-snapshot.json`.
|
|
246
|
+
|
|
247
|
+
| Layer | Example | Note |
|
|
248
|
+
|---|---|---|
|
|
249
|
+
| Root / category barrels | `wimui`, `wimui/form`, `wimui/rhf` | Public. Adding/removing symbols requires updating the snapshot |
|
|
250
|
+
| CSS / locales | `wimui/styles.css`, `wimui/locales/*` | Per the theme / i18n contract |
|
|
251
|
+
| Non-public | `wimui/form/Button`, `_internal`, etc. | Not in `exports`, so not importable |
|
|
252
|
+
|
|
253
|
+
Only for intentional API changes, update the snapshot with `npm run check:api:update` and commit it.
|
|
254
|
+
|
|
255
|
+
> **Optional-peer-dependent components are not exported from the root `wimui`.** See the subpath examples in Quick start and the table below.
|
|
256
|
+
|
|
257
|
+
## Optional peerDependencies
|
|
258
|
+
|
|
259
|
+
Only when you use the components below, import from the corresponding subpath and add the peer. If you don't use them, you don't need them.
|
|
260
|
+
|
|
261
|
+
Each peer-dependent component has its **own subpath** whose name documents its peer, so the category barrels (`wimui/data-display`, `wimui/ai`) stay peer-free.
|
|
262
|
+
|
|
263
|
+
| Component | import | Required packages |
|
|
264
|
+
|---|---|---|
|
|
265
|
+
| AreaChart, BarChart, etc. | `wimui/charts` | `recharts` |
|
|
266
|
+
| Markdown | `wimui/data-display/markdown` | `react-markdown` `remark-gfm` |
|
|
267
|
+
| QRCode | `wimui/data-display/qr-code` | `qrcode.react` |
|
|
268
|
+
| NodeGraph | `wimui/data-display/node-graph` | `@xyflow/react` |
|
|
269
|
+
| ScheduleView | `wimui/data-display/schedule-view` | `@fullcalendar/core` `@fullcalendar/react` `@fullcalendar/daygrid` `@fullcalendar/timegrid` `@fullcalendar/interaction` |
|
|
270
|
+
| JsonDiffViewer | `wimui/data-display/json-diff-viewer` | `diff` |
|
|
271
|
+
| StreamingText | `wimui/ai/streaming-text` | `react-markdown` `remark-gfm` |
|
|
272
|
+
| MarkdownRenderer | `wimui/ai/markdown-renderer` | `react-markdown` `remark-gfm` |
|
|
273
|
+
| CodeDiffViewer | `wimui/ai/code-diff-viewer` | `diff` |
|
|
274
|
+
| InteractiveGraph | `wimui/ai/interactive-graph` | `@xyflow/react` |
|
|
275
|
+
| Audio (only when `showMetadata`) | `wimui` or `wimui/media` | `music-metadata` |
|
|
276
|
+
| FormField / zodResolver | `wimui/rhf` | `react-hook-form` `^7.43` / `@hookform/resolvers` `^5.1` / `zod` `^4` |
|
|
277
|
+
|
|
278
|
+
Source of truth: `src/data/peer-imports.json` (CI's `check:imports` also reads this). Audio's metadata peer is a dynamic optional import, so it also lives at the root.
|
|
279
|
+
|
|
280
|
+
## Form value / error contract
|
|
281
|
+
|
|
282
|
+
The public contract for core form components (same when using RHF).
|
|
283
|
+
|
|
284
|
+
| Item | Contract |
|
|
285
|
+
|---|---|
|
|
286
|
+
| Clearable scalar (ClearedValue) | Controlled empty is **`null`**. `undefined` means "uncontrolled / prop unspecified" only |
|
|
287
|
+
| e.g. `DatePicker` | `value?: Date \| null` / `onChange?: (date: Date \| null) => void` |
|
|
288
|
+
| `error` (with message) | `Input` / `Select` / `DatePicker` / `Textarea`, etc. → `error?: string` |
|
|
289
|
+
| `error` (leaf toggles) | `Checkbox` / `Switch` / `Radio` → `error?: boolean` (visual only) |
|
|
290
|
+
|
|
291
|
+
The UI-empty state of string fields is usually `""`. Do not treat a clearable scalar like DatePicker as "cleared" with `""` or `undefined`.
|
|
292
|
+
|
|
293
|
+
## Form integration (react-hook-form / zod)
|
|
294
|
+
|
|
295
|
+
The core form components stay framework-agnostic. To wire them to RHF, use the optional entry `wimui/rhf`. Matching the ClearedValue / `error` split in the table above, `FormField` passes both `error` (string) and `invalid` (boolean).
|
|
296
|
+
|
|
297
|
+
```bash
|
|
298
|
+
npm i react-hook-form@^7.43 @hookform/resolvers@^5.1 zod@^4
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
```tsx
|
|
302
|
+
import { useForm } from "react-hook-form";
|
|
303
|
+
import { z } from "zod";
|
|
304
|
+
import { Input, Select, Checkbox, DatePicker } from "wimui";
|
|
305
|
+
import { FormField, valueFieldProps, checkedFieldProps, zodResolver } from "wimui/rhf";
|
|
306
|
+
|
|
307
|
+
const schema = z.object({
|
|
308
|
+
email: z.string().email(),
|
|
309
|
+
role: z.string().min(1),
|
|
310
|
+
accept: z.boolean().refine(Boolean),
|
|
311
|
+
due: z.date().nullable(),
|
|
312
|
+
});
|
|
313
|
+
|
|
314
|
+
function Example() {
|
|
315
|
+
const { control, handleSubmit } = useForm({
|
|
316
|
+
resolver: zodResolver(schema),
|
|
317
|
+
defaultValues: { email: "", role: "", accept: false, due: null },
|
|
318
|
+
});
|
|
319
|
+
|
|
320
|
+
return (
|
|
321
|
+
<form onSubmit={handleSubmit(console.log)}>
|
|
322
|
+
<FormField
|
|
323
|
+
control={control}
|
|
324
|
+
name="email"
|
|
325
|
+
render={({ field, error }) => <Input {...field} label="Email" error={error} />}
|
|
326
|
+
/>
|
|
327
|
+
<FormField
|
|
328
|
+
control={control}
|
|
329
|
+
name="role"
|
|
330
|
+
render={({ field, error }) => (
|
|
331
|
+
<Select {...valueFieldProps(field)} label="Role" error={error} options={[]} />
|
|
332
|
+
)}
|
|
333
|
+
/>
|
|
334
|
+
<FormField
|
|
335
|
+
control={control}
|
|
336
|
+
name="due"
|
|
337
|
+
render={({ field, error }) => (
|
|
338
|
+
<DatePicker {...valueFieldProps(field)} label="Due" error={error} />
|
|
339
|
+
)}
|
|
340
|
+
/>
|
|
341
|
+
<FormField
|
|
342
|
+
control={control}
|
|
343
|
+
name="accept"
|
|
344
|
+
render={({ field, invalid }) => (
|
|
345
|
+
<Checkbox {...checkedFieldProps(field)} error={invalid}>
|
|
346
|
+
Accept
|
|
347
|
+
</Checkbox>
|
|
348
|
+
)}
|
|
349
|
+
/>
|
|
350
|
+
</form>
|
|
351
|
+
);
|
|
352
|
+
}
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
- Native-ish inputs (`Input` / `Textarea`, etc.): pass `{...field}` directly
|
|
356
|
+
- Value-callback types (`Select` / `DatePicker` / `RadioGroup`, etc.): `valueFieldProps(field)` (clear is `null`)
|
|
357
|
+
- `checked` types (`Checkbox` / `Switch`): `checkedFieldProps(field)` + `error={invalid}` (`error?: boolean`)
|
|
358
|
+
|
|
359
|
+
Storybook: **Patterns → Form → React Hook Form**
|
|
360
|
+
|
|
361
|
+
## Next.js App Router (RSC) support
|
|
362
|
+
|
|
363
|
+
Each built module has a `"use client"` directive prepended automatically. You can import directly from App Router server components with no extra wrapper (each component is treated as a client boundary).
|
|
364
|
+
|
|
365
|
+
As an exception, `wimui/tokens` is a types-only module, so it has no `"use client"` and can be referenced from server components too.
|
|
366
|
+
|
|
367
|
+
## Releasing
|
|
368
|
+
|
|
369
|
+
Published to npm via [changesets](https://github.com/changesets/changesets) + GitHub Actions. Add a changeset with `npm run changeset`; merging the auto-generated "Version Packages" PR publishes the release (with provenance). See [`RELEASING.md`](./RELEASING.md) for the full runbook.
|
|
370
|
+
|
|
371
|
+
---
|
|
372
|
+
|
|
373
|
+
## Development
|
|
374
|
+
|
|
375
|
+
### Dev servers
|
|
376
|
+
|
|
377
|
+
```
|
|
378
|
+
npm run dev # Vite dev server (includes icon generation and i18n bundle)
|
|
379
|
+
npm run storybook # Storybook (documentation and component review)
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
### Component scaffold
|
|
383
|
+
|
|
384
|
+
```
|
|
385
|
+
npm run scaffold -- <Name> <category> [categoryId]
|
|
386
|
+
# e.g. npm run scaffold -- MyInput form basic-inputs
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
Generates boilerplate under `src/components/<category>/<Name>/` and `stories/<category>/<Name>/`. You then need to add the export to `src/<category>.ts`, add translation keys, and write the MDX (see `CLAUDE.md` / `SKILLS.md`).
|
|
390
|
+
|
|
391
|
+
### Check package versions
|
|
392
|
+
|
|
393
|
+
```
|
|
394
|
+
npm outdated
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
## Quality checks
|
|
398
|
+
|
|
399
|
+
### SCSS
|
|
400
|
+
|
|
401
|
+
```
|
|
402
|
+
npm run stylelint # lint CSS/SCSS under src and stories
|
|
403
|
+
npm run stylelint:fix # auto-fix CSS/SCSS under src and stories
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
### JavaScript / TypeScript
|
|
407
|
+
|
|
408
|
+
```
|
|
409
|
+
npm run lint # lint JS/TS/MDX under src and stories (zero warnings required)
|
|
410
|
+
npm run lint:fix # auto-fix JS/TS/MDX under src and stories
|
|
411
|
+
```
|
|
412
|
+
|
|
413
|
+
### Unit tests
|
|
414
|
+
|
|
415
|
+
```
|
|
416
|
+
npm run test # run component unit tests (*.test.tsx)
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
### Test coverage
|
|
420
|
+
|
|
421
|
+
```
|
|
422
|
+
npm run test:coverage # measure coverage (fails below 80% for lines/branches/functions/statements) + HTML report in coverage/
|
|
423
|
+
```
|
|
424
|
+
|
|
425
|
+
### Untested components
|
|
426
|
+
|
|
427
|
+
```
|
|
428
|
+
npm run test:check # update the list of untested components (stories/missing_tests.txt)
|
|
429
|
+
npm run test:report # run coverage and the untested check together
|
|
430
|
+
```
|
|
431
|
+
|
|
432
|
+
### VRT (Visual Regression Testing)
|
|
433
|
+
|
|
434
|
+
Requires a static Storybook build first (`storybook-static/` is gitignored).
|
|
435
|
+
|
|
436
|
+
```
|
|
437
|
+
npm run build-storybook # required initially and after story changes
|
|
438
|
+
npm run test:vrt # the full Playwright suite under vrt/ (VRT, a11y, e2e)
|
|
439
|
+
npm run test:vrt:update # update snapshots
|
|
440
|
+
npm run test:vrt:report # review diffs in a slider view
|
|
441
|
+
$env:FILTER='Calendar'; npm run test:vrt:update # update Calendar snapshots only
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
> The CI Visual Regression Test workflow runs only `vrt/vrt.spec.ts`. Local `npm run test:vrt` also includes a11y / e2e.
|
|
445
|
+
> After updating the Playwright version, re-fetch browsers with `npx playwright install`.
|
|
446
|
+
|
|
447
|
+
#### Environment variables
|
|
448
|
+
|
|
449
|
+
```
|
|
450
|
+
$env:THEME='light' # run light mode only
|
|
451
|
+
$env:THEME='dark' # run dark mode only
|
|
452
|
+
$env:FILTER='Button' # run the Button component only
|
|
453
|
+
$env:THEME='light'; $env:FILTER='Button' # VRT for Button, light mode only
|
|
454
|
+
$env:THEME='dark'; $env:FILTER='Calendar' # VRT for Calendar, dark mode only
|
|
455
|
+
$env:THEME=$null; $env:FILTER=$null # reset the environment variables
|
|
456
|
+
```
|
|
457
|
+
|
|
458
|
+
#### Running VRT in CI (GitHub Actions)
|
|
459
|
+
|
|
460
|
+
VRT runs automatically on PRs that change `src/` or `stories/`.
|
|
461
|
+
|
|
462
|
+
Procedure when you intentionally change the UI:
|
|
463
|
+
|
|
464
|
+
1. Change the UI and open a PR
|
|
465
|
+
2. The VRT workflow runs automatically and compares against the existing linux snapshots
|
|
466
|
+
3. If a diff is detected, the test fails
|
|
467
|
+
4. Actions tab → the workflow → download the `vrt-diffs` artifact to review the diff images
|
|
468
|
+
5. If the change is intentional, Actions tab → Visual Regression Test → Run workflow → `Update baseline snapshots: true` to update the baseline
|
|
469
|
+
|
|
470
|
+
> First-time setup: with no linux snapshots yet, there is nothing to compare against, so it fails.
|
|
471
|
+
> Run the above Run workflow → `Update baseline snapshots: true` once to generate the linux baseline.
|
|
472
|
+
|
|
473
|
+
### a11y
|
|
474
|
+
|
|
475
|
+
Like VRT, requires `npm run build-storybook` first.
|
|
476
|
+
|
|
477
|
+
```
|
|
478
|
+
npx playwright test vrt/a11y.spec.ts # a11y check for all stories
|
|
479
|
+
$env:FILTER='Button'; npx playwright test vrt/a11y.spec.ts # Button only
|
|
480
|
+
npx playwright test vrt/a11y.spec.ts --grep "DataGrid" # DataGrid only
|
|
481
|
+
```
|
|
482
|
+
|
|
483
|
+
### Bundle size
|
|
484
|
+
|
|
485
|
+
```
|
|
486
|
+
npm run size # check that all ES module chunks (gzip) and the UMD bundle (gzip) are within thresholds
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
The thresholds are also verified automatically in CI (`bundle-size.yml`).
|
|
490
|
+
|
|
491
|
+
### Storybook docs error detection
|
|
492
|
+
|
|
493
|
+
If a story name referenced in an MDX file doesn't match the actual export, an error is emitted at Storybook build time.
|
|
494
|
+
|
|
495
|
+
```
|
|
496
|
+
npm run build-storybook # detects pages with errors as build errors
|
|
497
|
+
```
|
|
498
|
+
|
|
499
|
+
When an error occurs, it appears on stderr as a line containing `error`.
|
|
500
|
+
|
|
501
|
+
Common causes:
|
|
502
|
+
|
|
503
|
+
- `<Canvas of={Stories.ExportName} />` in MDX where `ExportName` doesn't exist in the story file
|
|
504
|
+
- `<Controls of={Stories.ExportName} />` in MDX, same as above
|
|
505
|
+
- Passing JSX rather than a string to the `<Markdown>` component
|
|
506
|
+
|
|
507
|
+
## Code formatting
|
|
508
|
+
|
|
509
|
+
```
|
|
510
|
+
npm run format # format the whole project with Prettier
|
|
511
|
+
```
|
|
512
|
+
|
|
513
|
+
## Maintenance & Audit
|
|
514
|
+
|
|
515
|
+
Recommended to run before and after adding many components or doing large refactors.
|
|
516
|
+
|
|
517
|
+
```bash
|
|
518
|
+
npm run audit:all # run all audits (docs + lib)
|
|
519
|
+
npm run audit:lib # library structural guards only
|
|
520
|
+
npm run audit:docs # Storybook/MDX and i18n only
|
|
521
|
+
npm run audit-mdx # check for missing required documentation sections
|
|
522
|
+
npm run i18n:check # check consistency across the 3 languages
|
|
523
|
+
npm run check:aschild # check for missing asChild (Slot pattern) support
|
|
524
|
+
```
|
|
525
|
+
|
|
526
|
+
Audit scope (`audit:all`):
|
|
527
|
+
- **docs**: MDX required sections / i18n consistency and line counts / hardcoded text in MDX and stories / story hierarchy
|
|
528
|
+
- **lib**: asChild / hardcoded values (colors, px) / public API surface / root hooks / token & intent consistency / SCSS token references
|
|
529
|
+
|
|
530
|
+
## Internationalization (i18n) scripts
|
|
531
|
+
|
|
532
|
+
```bash
|
|
533
|
+
npm run i18n:check # check for missing translation keys across locale files and file line count (1000 lines)
|
|
534
|
+
npm run i18n:check:components # check that keys used in component sources exist in the translation files
|
|
535
|
+
npm run i18n:sync # auto-translate/append from en to ja/pt via Google AI (requires GOOGLE_GENERATIVE_AI_API_KEY)
|
|
536
|
+
```
|
|
537
|
+
|
|
538
|
+
| Script | What it catches |
|
|
539
|
+
|---|---|
|
|
540
|
+
| `i18n:check` | Missing keys across locales, file bloat (1000-line limit) |
|
|
541
|
+
| `i18n:check:components` | Cases where you started using `t("key")` in code but forgot to register it |
|
|
542
|
+
|
|
543
|
+
Recommended flow:
|
|
544
|
+
1. Detect unregistered keys with `npm run i18n:check:components`
|
|
545
|
+
2. Add the keys to the EN translation file
|
|
546
|
+
3. Auto-translate to ja/pt with `npm run i18n:sync`
|
|
547
|
+
4. Verify final consistency with `npm run i18n:check`
|
|
548
|
+
|
|
549
|
+
## Utilities & consistency
|
|
550
|
+
|
|
551
|
+
```bash
|
|
552
|
+
npm run check:consistency # check structural mismatches across src, src/data/components.json, stories, mdx
|
|
553
|
+
npm run check:hierarchy # check for components missing from the component list (MDX)
|
|
554
|
+
npm run check:aschild # check that components implement the Slot pattern correctly
|
|
555
|
+
npm run check:stories # check for missing translation keys (raw keys shown)
|
|
556
|
+
npm run i18n:missing # check for keys present in en but not translated in other languages
|
|
557
|
+
```
|
|
558
|
+
|
|
559
|
+
## Deployment
|
|
560
|
+
|
|
561
|
+
```
|
|
562
|
+
npm run deploy # deploy to GitHub Pages
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
Storybook is also deployed to GitHub Pages automatically on push to `main` via `.github/workflows/deploy.yml`. Manual `npm run deploy` is for emergency deploys or verification from local.
|
|
566
|
+
|
|
567
|
+
## Git
|
|
568
|
+
|
|
569
|
+
### Skipping Husky
|
|
570
|
+
|
|
571
|
+
If you must skip Husky on commit:
|
|
572
|
+
|
|
573
|
+
```
|
|
574
|
+
git commit -m "commit message" --no-verify
|
|
575
|
+
```
|
|
576
|
+
|
|
577
|
+
## Coding rules
|
|
578
|
+
|
|
579
|
+
- Styling: new components should use CSS Modules (`*.module.scss`)
|
|
580
|
+
- CSS class names: legacy global classes use the `wim-` prefix (see `RULES.md` for details)
|
|
581
|
+
|
|
582
|
+
## Automatic documentation extraction (Docgen)
|
|
583
|
+
|
|
584
|
+
WIM UI extracts component specs (Props, design tokens, anatomy) automatically and embeds them into MDX.
|
|
585
|
+
`src/data/docgen_*.json` is refreshed automatically when the Vite dev server starts or on file save, so you don't need to run a script manually (the output is gitignored and produced by Storybook's Vite plugin).
|
|
586
|
+
For details on writing MDX, see `SKILLS.md`.
|
|
587
|
+
|
|
588
|
+
## Design tokens
|
|
589
|
+
|
|
590
|
+
WIM UI manages design tokens as a single source of truth using Style Dictionary.
|
|
591
|
+
|
|
592
|
+
### Structure
|
|
593
|
+
|
|
594
|
+
- Source: `tokens/color/*.json` / `tokens/*.json` / `tokens/themes/dark.json` / `tokens/intents.json`
|
|
595
|
+
- Generated (auto):
|
|
596
|
+
- `src/tokens/generated/` (SCSS variables, CSS custom properties, `_intents.scss`)
|
|
597
|
+
- `src/types/generated-tokens.ts` / `src/types/generated-intents.ts`
|
|
598
|
+
|
|
599
|
+
### Build command
|
|
600
|
+
|
|
601
|
+
After editing tokens (JSON), always run the following to reflect them in code.
|
|
602
|
+
|
|
603
|
+
```bash
|
|
604
|
+
npm run tokens:build # Style Dictionary + intent generation (SCSS / TypeScript)
|
|
605
|
+
```
|
|
606
|
+
|
|
607
|
+
This makes the latest tokens available as type completions during component development.
|
|
608
|
+
|
|
609
|
+
## Workflow
|
|
610
|
+
|
|
611
|
+
```bash
|
|
612
|
+
git add .
|
|
613
|
+
git commit -m "..."
|
|
614
|
+
git pull --rebase origin main
|
|
615
|
+
git push origin main
|
|
616
|
+
```
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("./_virtual/_rolldown/runtime.cjs"),t=require("./i18n/instance.cjs"),n=require("./theme.cjs"),r=require("./density.cjs");let i=require("react");i=e.__toESM(i,1);let a=require("react/jsx-runtime");var o=(0,i.createContext)(null);function s(){return(0,i.useContext)(o)||{theme:n.getWimTheme(),density:r.getWimDensity(),locale:t.getWimLocale()}}function c({children:e,theme:s=`system`,density:c=`comfortable`,locale:l,root:u}){(0,i.useEffect)(()=>{n.setWimTheme(s,u)},[s,u]),(0,i.useEffect)(()=>{r.setWimDensity(c,u)},[c,u]),(0,i.useEffect)(()=>{l!=null&&t.setWimLocale(l)},[l]);let d=(0,i.useMemo)(()=>({theme:s,density:c,locale:l??t.getWimLocale()}),[s,c,l]);return(0,a.jsx)(o.Provider,{value:d,children:e})}c.displayName=`WimProvider`,exports.WimProvider=c,exports.useWim=s;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { WimDensity } from './density';
|
|
3
|
+
import { WimTheme } from './theme';
|
|
4
|
+
export type WimProviderProps = {
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
/**
|
|
7
|
+
* Color theme. Writes `data-theme` on `root` (`light` / `dark`), or removes it for `system`.
|
|
8
|
+
* @default "system"
|
|
9
|
+
*/
|
|
10
|
+
theme?: WimTheme;
|
|
11
|
+
/**
|
|
12
|
+
* Control density. Writes `data-density` on `root`.
|
|
13
|
+
* @default "comfortable"
|
|
14
|
+
*/
|
|
15
|
+
density?: WimDensity;
|
|
16
|
+
/** Built-in UI locale (`en` / `ja` / `pt`). Omit to leave the current locale unchanged. */
|
|
17
|
+
locale?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Element that receives `data-theme` / `data-density`.
|
|
20
|
+
* Defaults to `document.documentElement` (`<html>`).
|
|
21
|
+
*/
|
|
22
|
+
root?: Element | null;
|
|
23
|
+
};
|
|
24
|
+
export type WimContextValue = {
|
|
25
|
+
theme: WimTheme;
|
|
26
|
+
density: WimDensity;
|
|
27
|
+
locale: string;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Read the nearest `WimProvider` values, or fall back to document / i18n globals
|
|
31
|
+
* when used outside a provider.
|
|
32
|
+
*/
|
|
33
|
+
export declare function useWim(): WimContextValue;
|
|
34
|
+
/**
|
|
35
|
+
* Front-facing setup for theme, density, and built-in locale.
|
|
36
|
+
* Attributes (`data-theme` / `data-density`) remain the CSS contract; this provider
|
|
37
|
+
* is the preferred way to set them from React.
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* ```tsx
|
|
41
|
+
* <WimProvider theme="dark" density="compact" locale="ja">
|
|
42
|
+
* <App />
|
|
43
|
+
* </WimProvider>
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* When also using `ThemeToggle` for the same document theme, lift state into the
|
|
47
|
+
* parent and pass `applyToDocument={false}` on the toggle so the two do not fight.
|
|
48
|
+
*/
|
|
49
|
+
export declare function WimProvider({ children, theme, density, locale, root, }: WimProviderProps): React.JSX.Element;
|
|
50
|
+
export declare namespace WimProvider {
|
|
51
|
+
var displayName: string;
|
|
52
|
+
}
|