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/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 takeshi sakuma
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.ja.md
ADDED
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
# wimui
|
|
2
|
+
|
|
3
|
+
**日本語** · [English](./README.md)
|
|
4
|
+
|
|
5
|
+
React コンポーネントライブラリ。200+ のコンポーネントを収録し、デザイントークン・ダークモード・多言語化(en / ja / pt=ポルトガル語・ブラジル)・WAI-ARIA 準拠のアクセシビリティを備えています。
|
|
6
|
+
|
|
7
|
+
- ドキュメント(Storybook): https://takeshisakuma.github.io/wimui/
|
|
8
|
+
- 動作要件: Node.js >= 22 / **React 19**(`react` / `react-dom`)/ 書字方向は **LTR のみ**(en / ja / pt)
|
|
9
|
+
|
|
10
|
+
## スコープ(Core / optional)
|
|
11
|
+
|
|
12
|
+
npm パッケージは **`wimui` 一つ**です(パッケージを分割したモノレポではありません)。利用範囲だけを次のように分けて考えます。**まず Core**、必要になったときだけ optional サブパスを使います。
|
|
13
|
+
|
|
14
|
+
| スコープ | import | 追加 peer |
|
|
15
|
+
|---|---|---|
|
|
16
|
+
| **Core** | `wimui` / `wimui/form` / `wimui/layout` など | 不要(React 19 のみ) |
|
|
17
|
+
| Optional — Charts | `wimui/charts` | `recharts` |
|
|
18
|
+
| Optional — Peer コンポーネント | コンポーネント別の専用サブパス(例: `wimui/ai/markdown-renderer`, `wimui/data-display/qr-code`) | そのコンポーネントの peer(下表) |
|
|
19
|
+
| Optional — RHF | `wimui/rhf` | `react-hook-form` + `zod` 4(+ resolvers) |
|
|
20
|
+
|
|
21
|
+
**なぜサブパスに分かれているか:** optional のコンポーネントは重い peer(recharts 等)を引き込みます。ルート `wimui` からそれらを export しないことで、Core だけのアプリが peer を入れなくても型解決・バンドル解析で巻き込まれにくくなります。使う機能のサブパスだけを import し、その peer だけを入れてください。
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
// ✅
|
|
25
|
+
import { Button } from "wimui";
|
|
26
|
+
import { BarChart } from "wimui/charts";
|
|
27
|
+
|
|
28
|
+
// ❌ ルートに無い(型エラー / 解決できない)
|
|
29
|
+
// import { BarChart } from "wimui";
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
カテゴリバレル **`wimui/data-display` と `wimui/ai` は peer-free** です(import しても optional peer を引き込まない)。peer 依存コンポーネントは、必要 peer が名前で分かる**コンポーネント別の専用サブパス**に分離しています(例: `wimui/data-display/markdown` → `react-markdown`)。これは「deep path を作らない」方針の**意図的な例外**で、フォルダ名の機械的公開ではなく peer 分離のために curated した境界です。下表参照。
|
|
33
|
+
|
|
34
|
+
## サポート行列(peer)
|
|
35
|
+
|
|
36
|
+
公開 peer の版レンジです。これより広い版はサポート対象外です。
|
|
37
|
+
|
|
38
|
+
| パッケージ | サポート | peer レンジ | 備考 |
|
|
39
|
+
|---|---|---|---|
|
|
40
|
+
| `react` / `react-dom` | **19** | `^19.0.0` | 開発・テスト・公開型は React 19。React 18 は非対応 |
|
|
41
|
+
| `zod`(`wimui/rhf` 利用時) | **4** | `^4.0.0` | 開発・テストは zod 4。zod 3 は非対応 |
|
|
42
|
+
| `@hookform/resolvers` | **5.1+** | `^5.1.0` | `wimui/rhf` 利用時 |
|
|
43
|
+
| `react-hook-form` | **7.43+** | `^7.43.0` | `wimui/rhf` 利用時のみ |
|
|
44
|
+
|
|
45
|
+
Core(ルート `wimui`)に zod / RHF は不要です。charts 等の optional peer は下表を参照。
|
|
46
|
+
|
|
47
|
+
## インストール
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npm install wimui
|
|
51
|
+
# peer(React 19):
|
|
52
|
+
npm install react@^19 react-dom@^19
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
optional 機能は対応する peer が必要(「オプショナルな peerDependencies」参照)。例: `wimui/charts` を使うなら `npm install recharts`。
|
|
56
|
+
|
|
57
|
+
`i18next` / `react-i18next` などの i18n ライブラリは不要です。翻訳リソースを内蔵し、特定の i18n ライブラリに依存しません(後述の「多言語化」を参照)。
|
|
58
|
+
|
|
59
|
+
## クイックスタート
|
|
60
|
+
|
|
61
|
+
アプリのエントリポイントでスタイルを一度だけ読み込みます。必須 CSS は
|
|
62
|
+
`styles.css` の 1 本(トークン + コンポーネント)です。`reset.css` は任意です。
|
|
63
|
+
|
|
64
|
+
**Core から始める** — 追加 peer なし。ほとんどの UI はルートから import できます。
|
|
65
|
+
|
|
66
|
+
```tsx
|
|
67
|
+
import "wimui/styles.css"; // 必須: :root の --wim-* + 全コンポーネントのスタイル
|
|
68
|
+
import "wimui/reset.css"; // 任意: 意見の強いリセット/base 要素スタイル
|
|
69
|
+
|
|
70
|
+
import { Button } from "wimui";
|
|
71
|
+
|
|
72
|
+
export const App = () => <Button>保存</Button>;
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
- `styles.css` は必須です(デザイントークンとコンポーネント CSS を同梱)。
|
|
76
|
+
- `reset.css` は任意です。`button` / `a` / `ul` / `table` などをリセットする意見の強い
|
|
77
|
+
グローバルスタイルを含むため、アプリ側の既存スタイルと衝突する場合は省略できます。
|
|
78
|
+
|
|
79
|
+
i18next の初期化は不要です。テーマ・密度・ロケールをまとめて扱うなら `WimProvider` を推奨します(後述)。
|
|
80
|
+
|
|
81
|
+
### よく使う公開型・API
|
|
82
|
+
|
|
83
|
+
```tsx
|
|
84
|
+
import {
|
|
85
|
+
WimProvider,
|
|
86
|
+
useWim,
|
|
87
|
+
setWimTheme,
|
|
88
|
+
setWimDensity,
|
|
89
|
+
setWimLocale,
|
|
90
|
+
type WimDensity,
|
|
91
|
+
type WimColor,
|
|
92
|
+
type WimColorKey,
|
|
93
|
+
} from "wimui";
|
|
94
|
+
// トークン型だけ欲しい場合は `wimui/tokens` からも可
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
| API / 型 | 用途 |
|
|
98
|
+
|---|---|
|
|
99
|
+
| `WimProvider` / `useWim` | `theme` / `density` / `locale` を React から設定 |
|
|
100
|
+
| `setWimTheme` / `setWimDensity` / `setWimLocale` | 属性・ロケールの命令型 API |
|
|
101
|
+
| `WimDensity` | `"comfortable" \| "compact"` |
|
|
102
|
+
| `WimColor` / `WimColorKey` | 色 prop・トークンキー(公開 role。`--wim-comp-*` は含まない) |
|
|
103
|
+
|
|
104
|
+
**Optional が必要なときだけ** — `wimui/charts` / peer コンポーネントの専用サブパス / `wimui/rhf` から import し、下表の peer を入れます。
|
|
105
|
+
|
|
106
|
+
```tsx
|
|
107
|
+
import { BarChart } from "wimui/charts";
|
|
108
|
+
import { Markdown } from "wimui/data-display/markdown";
|
|
109
|
+
import { StreamingText } from "wimui/ai/streaming-text";
|
|
110
|
+
import { FormField } from "wimui/rhf";
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
# 例: チャートを使う場合
|
|
115
|
+
npm install recharts
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
> `<script>` タグで読み込む UMD 版(`dist/wimui.umd.js` + `dist/wimui.umd.css`)は、
|
|
119
|
+
> 必須の styles(トークン + コンポーネント)と reset を 1 ファイルに同梱しています。
|
|
120
|
+
|
|
121
|
+
## アイコン
|
|
122
|
+
|
|
123
|
+
アイコンの指定方法は2通りあります。
|
|
124
|
+
|
|
125
|
+
**1. コンポーネントを直接渡す(推奨・tree-shaking が効く)**
|
|
126
|
+
|
|
127
|
+
```tsx
|
|
128
|
+
import { Button, Icon, CheckIcon } from "wimui";
|
|
129
|
+
|
|
130
|
+
<Button icon={<Icon component={CheckIcon} />}>保存</Button>
|
|
131
|
+
<Icon component={CheckIcon} size="sm" />
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
**2. 文字列で指定する**
|
|
135
|
+
|
|
136
|
+
`icon="CheckIcon"` のような文字列ベースの指定を使う場合は、エントリポイントで一度だけアイコンを登録してください(未登録のまま文字列指定すると開発時に警告が出ます)。
|
|
137
|
+
|
|
138
|
+
```tsx
|
|
139
|
+
import "wimui/icons"; // 全アイコン(約 30KB minify / 5KB gzip)を登録
|
|
140
|
+
|
|
141
|
+
<Button icon="CheckIcon">保存</Button>
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
文字列指定を使わなければ `wimui/icons` の読み込みは不要で、アイコンはバンドルに含まれません。
|
|
145
|
+
|
|
146
|
+
## 多言語化(i18n)
|
|
147
|
+
|
|
148
|
+
セットアップなしで英語表示で動作します(コンポーネントが使用する翻訳キーのみを en / ja / pt で内蔵)。**i18next / react-i18next などの依存は不要**です。表示言語を切り替えるには:
|
|
149
|
+
|
|
150
|
+
```tsx
|
|
151
|
+
import { setWimLocale, getWimLocale } from "wimui";
|
|
152
|
+
|
|
153
|
+
setWimLocale("ja"); // "en" | "ja" | "pt"
|
|
154
|
+
getWimLocale(); // 現在のロケール(例: "ja")
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
アプリ自体が i18next などで言語を管理している場合は、言語切替時に `setWimLocale` を呼んで同期してください。wimui は特定の i18n ライブラリに依存しないため、任意の仕組みと組み合わせられます。
|
|
158
|
+
|
|
159
|
+
```ts
|
|
160
|
+
// 例: アプリの i18next と同期する
|
|
161
|
+
i18n.on("languageChanged", (lng) => setWimLocale(lng));
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
**書字方向**: 公式サポートは LTR(en / ja / pt)のみです。RTL(アラビア語・ヘブライ語など)および論理プロパティへの全面移行は **対応予定なし** です(詳細は `IMPROVEMENTS.md`「対象外」)。
|
|
165
|
+
|
|
166
|
+
## ダークモード
|
|
167
|
+
|
|
168
|
+
推奨は `WimProvider` です。内部では `<html>` の `data-theme` を書き込みます(属性名・載せる先は公開契約のまま)。未指定(`system`)の場合は OS の `prefers-color-scheme` に追従します。
|
|
169
|
+
|
|
170
|
+
```tsx
|
|
171
|
+
import { WimProvider } from "wimui";
|
|
172
|
+
|
|
173
|
+
<WimProvider theme="dark" density="compact" locale="ja">
|
|
174
|
+
<App />
|
|
175
|
+
</WimProvider>
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
属性を直接書くこともできます(`ThemeToggle` / `setWimTheme` も同じ契約)。
|
|
179
|
+
|
|
180
|
+
```html
|
|
181
|
+
<html data-theme="dark"> <!-- ダーク固定 -->
|
|
182
|
+
<html data-theme="light"> <!-- ライト固定 -->
|
|
183
|
+
<html> <!-- OS 設定に追従 -->
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
`ThemeToggle` と `WimProvider` の両方で同じ document テーマを動かす場合は、状態を親に持ち上げてトグル側は `applyToDocument={false}` にしてください。
|
|
187
|
+
|
|
188
|
+
## ブランド色(primary)の差し替え
|
|
189
|
+
|
|
190
|
+
公開 role トークンを CSS で上書きします。`wimui/styles.css` の**あと**に読み込んでください。触るのは role 層だけです(`--wim-comp-*` や palette 生色は触らない)。
|
|
191
|
+
|
|
192
|
+
多くの派生(`primary-hover` / `primary-active` / `primary-muted` / `primary-soft` 等)は `primary` / `primary-rgb` から計算されるため、**まずはこの2つ + コントラスト用の `text-on-primary`** で足ります。
|
|
193
|
+
|
|
194
|
+
```css
|
|
195
|
+
/* app.css — import "wimui/styles.css" の後 */
|
|
196
|
+
:root {
|
|
197
|
+
--wim-color-primary: #0b6e4f;
|
|
198
|
+
--wim-color-primary-rgb: 11, 110, 79; /* rgba(var(--wim-color-primary-rgb), a) 用。カンマ区切り */
|
|
199
|
+
--wim-color-text-on-primary: #ffffff;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/* ダークで別色にしたいときだけ */
|
|
203
|
+
[data-theme="dark"] {
|
|
204
|
+
--wim-color-primary: #3dd68c;
|
|
205
|
+
--wim-color-primary-rgb: 61, 214, 140;
|
|
206
|
+
--wim-color-text-on-primary: #06281a;
|
|
207
|
+
}
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
- `primary-rgb` は `rgb(...)` で包まない(`11, 110, 79` の形)。
|
|
211
|
+
- ダークの塗り面などで `primary-fill` を独自にしている場合は、必要ならそれも上書きする。
|
|
212
|
+
- トークン一覧は Storybook **Token → Colors** / `DESIGN.md` を参照。
|
|
213
|
+
|
|
214
|
+
## UI 密度(Density)
|
|
215
|
+
|
|
216
|
+
コントロールの高さ・余白をグローバルに切り替えます。レイアウト用の `--wim-spacing-*` は変えず、`--wim-height-*` や `--wim-control-padding-*`、テーブルセル余白などが追従します。属性名は `data-density`(公開契約)。`WimProvider` の `density` か `setWimDensity` で設定します。
|
|
217
|
+
|
|
218
|
+
```ts
|
|
219
|
+
import { setWimDensity, getWimDensity } from "wimui";
|
|
220
|
+
|
|
221
|
+
setWimDensity("compact"); // ダッシュボード向け(documentElement)
|
|
222
|
+
setWimDensity("comfortable"); // デフォルト
|
|
223
|
+
getWimDensity(); // "comfortable" | "compact"
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
```html
|
|
227
|
+
<html data-density="compact">
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
Storybook ではツールバーの **Density**、または Token → Density / Theme で確認できます。
|
|
231
|
+
|
|
232
|
+
## バンドルサイズと import 方法
|
|
233
|
+
|
|
234
|
+
ルートからの named import で未使用コンポーネントはバンドルに含まれません(`sideEffects` 設定済み)。カテゴリ別のサブパスも利用できます。
|
|
235
|
+
|
|
236
|
+
```tsx
|
|
237
|
+
import { Button } from "wimui"; // tree-shaking が効く(推奨)
|
|
238
|
+
import { Button } from "wimui/form"; // カテゴリ別サブパス
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
カテゴリ: `layout` / `form` / `feedback` / `navigation` / `data-display` / `overlay` / `typography` / `media` / `charts` / `ai` / `tokens` / `rhf`
|
|
242
|
+
|
|
243
|
+
**deep path は非公開です。** `wimui/form/Button` のようなコンポーネント単位パスは `exports` に含まれません(フォルダ名を利用者契約にしないため)。
|
|
244
|
+
|
|
245
|
+
### 公開 API サーフェス(凍結)
|
|
246
|
+
|
|
247
|
+
`package.json` の `exports` とバレルの named export は公開契約です。`npm run check:api` が両方を `api-snapshot.json` に対して検証します。
|
|
248
|
+
|
|
249
|
+
| 層 | 例 | 注意 |
|
|
250
|
+
|---|---|---|
|
|
251
|
+
| ルート / カテゴリバレル | `wimui`, `wimui/form`, `wimui/rhf` | 公開。シンボル増減はスナップショット更新が必要 |
|
|
252
|
+
| CSS / locales | `wimui/styles.css`, `wimui/locales/*` | テーマ・i18n 契約どおり |
|
|
253
|
+
| 非公開 | `wimui/form/Button`、`_internal` 等 | `exports` に無いため import 不可 |
|
|
254
|
+
|
|
255
|
+
意図的な API 変更時のみ `npm run check:api:update` でスナップショットを更新してコミットしてください。
|
|
256
|
+
|
|
257
|
+
> **optional peer 依存コンポーネントはルート `wimui` から export されません。** クイックスタートの subpath 例と下表を参照してください。
|
|
258
|
+
|
|
259
|
+
## オプショナルな peerDependencies
|
|
260
|
+
|
|
261
|
+
以下のコンポーネントを使う場合のみ、対応するサブパスから import し、peer を追加してください。使わない場合は不要です。
|
|
262
|
+
|
|
263
|
+
peer 依存コンポーネントは**コンポーネント別の専用サブパス**を持ち、名前で必要 peer が分かります。カテゴリバレル(`wimui/data-display` / `wimui/ai`)は peer-free です。
|
|
264
|
+
|
|
265
|
+
| コンポーネント | import | 必要なパッケージ |
|
|
266
|
+
|---|---|---|
|
|
267
|
+
| AreaChart, BarChart 等 | `wimui/charts` | `recharts` |
|
|
268
|
+
| Markdown | `wimui/data-display/markdown` | `react-markdown` `remark-gfm` |
|
|
269
|
+
| QRCode | `wimui/data-display/qr-code` | `qrcode.react` |
|
|
270
|
+
| NodeGraph | `wimui/data-display/node-graph` | `@xyflow/react` |
|
|
271
|
+
| ScheduleView | `wimui/data-display/schedule-view` | `@fullcalendar/core` `@fullcalendar/react` `@fullcalendar/daygrid` `@fullcalendar/timegrid` `@fullcalendar/interaction` |
|
|
272
|
+
| JsonDiffViewer | `wimui/data-display/json-diff-viewer` | `diff` |
|
|
273
|
+
| StreamingText | `wimui/ai/streaming-text` | `react-markdown` `remark-gfm` |
|
|
274
|
+
| MarkdownRenderer | `wimui/ai/markdown-renderer` | `react-markdown` `remark-gfm` |
|
|
275
|
+
| CodeDiffViewer | `wimui/ai/code-diff-viewer` | `diff` |
|
|
276
|
+
| InteractiveGraph | `wimui/ai/interactive-graph` | `@xyflow/react` |
|
|
277
|
+
| Audio(`showMetadata` 時のみ) | `wimui` または `wimui/media` | `music-metadata` |
|
|
278
|
+
| FormField / zodResolver | `wimui/rhf` | `react-hook-form` `^7.43` / `@hookform/resolvers` `^5.1` / `zod` `^4` |
|
|
279
|
+
|
|
280
|
+
正本マップ: `src/data/peer-imports.json`(CI の `check:imports` もこれを参照)。Audio の metadata peer は optional 動的 import のためルートにも居ます。
|
|
281
|
+
|
|
282
|
+
## Form 値・エラー契約
|
|
283
|
+
|
|
284
|
+
コア form コンポーネントの公開契約です(RHF 利用時も同じ)。
|
|
285
|
+
|
|
286
|
+
| 項目 | 契約 |
|
|
287
|
+
|---|---|
|
|
288
|
+
| クリア可能スカラー(ClearedValue) | 制御時の空は **`null`**。`undefined` は「非制御 / prop 未指定」のみ |
|
|
289
|
+
| 例: `DatePicker` | `value?: Date \| null` / `onChange?: (date: Date \| null) => void` |
|
|
290
|
+
| `error`(メッセージ付き) | `Input` / `Select` / `DatePicker` / `Textarea` など → `error?: string` |
|
|
291
|
+
| `error`(葉トグル) | `Checkbox` / `Switch` / `Radio` → `error?: boolean`(見た目用) |
|
|
292
|
+
|
|
293
|
+
文字列フィールドの UI 空は多くの場合 `""` です。DatePicker のようなクリア可能スカラーを `""` や `undefined` で「クリア済み」としないでください。
|
|
294
|
+
|
|
295
|
+
## Form 連携(react-hook-form / zod)
|
|
296
|
+
|
|
297
|
+
コアの form コンポーネントはフレームワーク非依存のままです。RHF とつなぐ場合は optional エントリ `wimui/rhf` を使います。上表の ClearedValue / `error` 分岐に合わせ、`FormField` は `error`(string)と `invalid`(boolean)の両方を渡します。
|
|
298
|
+
|
|
299
|
+
```bash
|
|
300
|
+
npm i react-hook-form@^7.43 @hookform/resolvers@^5.1 zod@^4
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
```tsx
|
|
304
|
+
import { useForm } from "react-hook-form";
|
|
305
|
+
import { z } from "zod";
|
|
306
|
+
import { Input, Select, Checkbox, DatePicker } from "wimui";
|
|
307
|
+
import { FormField, valueFieldProps, checkedFieldProps, zodResolver } from "wimui/rhf";
|
|
308
|
+
|
|
309
|
+
const schema = z.object({
|
|
310
|
+
email: z.string().email(),
|
|
311
|
+
role: z.string().min(1),
|
|
312
|
+
accept: z.boolean().refine(Boolean),
|
|
313
|
+
due: z.date().nullable(),
|
|
314
|
+
});
|
|
315
|
+
|
|
316
|
+
function Example() {
|
|
317
|
+
const { control, handleSubmit } = useForm({
|
|
318
|
+
resolver: zodResolver(schema),
|
|
319
|
+
defaultValues: { email: "", role: "", accept: false, due: null },
|
|
320
|
+
});
|
|
321
|
+
|
|
322
|
+
return (
|
|
323
|
+
<form onSubmit={handleSubmit(console.log)}>
|
|
324
|
+
<FormField
|
|
325
|
+
control={control}
|
|
326
|
+
name="email"
|
|
327
|
+
render={({ field, error }) => <Input {...field} label="Email" error={error} />}
|
|
328
|
+
/>
|
|
329
|
+
<FormField
|
|
330
|
+
control={control}
|
|
331
|
+
name="role"
|
|
332
|
+
render={({ field, error }) => (
|
|
333
|
+
<Select {...valueFieldProps(field)} label="Role" error={error} options={[]} />
|
|
334
|
+
)}
|
|
335
|
+
/>
|
|
336
|
+
<FormField
|
|
337
|
+
control={control}
|
|
338
|
+
name="due"
|
|
339
|
+
render={({ field, error }) => (
|
|
340
|
+
<DatePicker {...valueFieldProps(field)} label="Due" error={error} />
|
|
341
|
+
)}
|
|
342
|
+
/>
|
|
343
|
+
<FormField
|
|
344
|
+
control={control}
|
|
345
|
+
name="accept"
|
|
346
|
+
render={({ field, invalid }) => (
|
|
347
|
+
<Checkbox {...checkedFieldProps(field)} error={invalid}>
|
|
348
|
+
Accept
|
|
349
|
+
</Checkbox>
|
|
350
|
+
)}
|
|
351
|
+
/>
|
|
352
|
+
</form>
|
|
353
|
+
);
|
|
354
|
+
}
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
- ネイティブ寄りの入力(`Input` / `Textarea` 等): `{...field}` をそのまま渡す
|
|
358
|
+
- 値コールバック型(`Select` / `DatePicker` / `RadioGroup` 等): `valueFieldProps(field)`(クリアは `null`)
|
|
359
|
+
- `checked` 型(`Checkbox` / `Switch`): `checkedFieldProps(field)` + `error={invalid}`(`error?: boolean`)
|
|
360
|
+
|
|
361
|
+
Storybook: **Patterns → Form → React Hook Form**
|
|
362
|
+
|
|
363
|
+
## Next.js App Router(RSC)対応
|
|
364
|
+
|
|
365
|
+
ビルド成果物の各モジュール先頭には `"use client"` ディレクティブが自動付与されています。App Router のサーバーコンポーネントから追加のラップなしで直接 import できます(各コンポーネントは client boundary として扱われます)。
|
|
366
|
+
|
|
367
|
+
例外として `wimui/tokens` は型定義のみのモジュールのため `"use client"` を持たず、サーバーコンポーネントからも参照できます。
|
|
368
|
+
|
|
369
|
+
## リリースについて
|
|
370
|
+
|
|
371
|
+
npm への公開は [changesets](https://github.com/changesets/changesets) + GitHub Actions で行います。`npm run changeset` で changeset を追加し、自動生成される「Version Packages」PR をマージすると publish されます(provenance 付き)。詳細は [`RELEASING.md`](./RELEASING.md) を参照。
|
|
372
|
+
|
|
373
|
+
---
|
|
374
|
+
|
|
375
|
+
## 開発
|
|
376
|
+
|
|
377
|
+
### 開発サーバー
|
|
378
|
+
|
|
379
|
+
```
|
|
380
|
+
npm run dev # Vite 開発サーバー(アイコン生成・i18n bundle を含む)
|
|
381
|
+
npm run storybook # Storybook(ドキュメント・コンポーネント確認)
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
### コンポーネント雛形
|
|
385
|
+
|
|
386
|
+
```
|
|
387
|
+
npm run scaffold -- <Name> <category> [categoryId]
|
|
388
|
+
# 例: npm run scaffold -- MyInput form basic-inputs
|
|
389
|
+
```
|
|
390
|
+
|
|
391
|
+
`src/components/<category>/<Name>/` と `stories/<category>/<Name>/` のボイラープレートを生成します。続けて `src/<category>.ts` への export 追加、翻訳キー、MDX 記述が必要です(詳細は `CLAUDE.md` / `SKILLS.md`)。
|
|
392
|
+
|
|
393
|
+
### パッケージバージョン確認
|
|
394
|
+
|
|
395
|
+
```
|
|
396
|
+
npm outdated
|
|
397
|
+
```
|
|
398
|
+
|
|
399
|
+
## 品質チェック
|
|
400
|
+
|
|
401
|
+
### SCSS
|
|
402
|
+
|
|
403
|
+
```
|
|
404
|
+
npm run stylelint # src・storiesフォルダ内のCSS/SCSSの品質確認
|
|
405
|
+
npm run stylelint:fix # src・storiesフォルダ内のCSS/SCSSを自動修正
|
|
406
|
+
```
|
|
407
|
+
|
|
408
|
+
### JavaScript / TypeScript
|
|
409
|
+
|
|
410
|
+
```
|
|
411
|
+
npm run lint # src・stories 内の JS/TS/MDX の品質確認(警告ゼロが必須)
|
|
412
|
+
npm run lint:fix # src・stories 内の JS/TS/MDX を自動修正
|
|
413
|
+
```
|
|
414
|
+
|
|
415
|
+
### 単体テスト
|
|
416
|
+
|
|
417
|
+
```
|
|
418
|
+
npm run test # コンポーネント単体テスト (*.test.tsx) を実行
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
### テストカバレッジ
|
|
422
|
+
|
|
423
|
+
```
|
|
424
|
+
npm run test:coverage # カバレッジ測定(行・分岐・関数・文いずれも 80% 未満で失敗)+ coverage/ に HTML レポート
|
|
425
|
+
```
|
|
426
|
+
|
|
427
|
+
### 未テストコンポーネント
|
|
428
|
+
|
|
429
|
+
```
|
|
430
|
+
npm run test:check # 未テストコンポーネントのリスト (stories/missing_tests.txt) を更新
|
|
431
|
+
npm run test:report # カバレッジ測定と未テストチェックを同時に実行
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
### VRT (Visual Regression Testing)
|
|
435
|
+
|
|
436
|
+
事前に Storybook の静的ビルドが必要です(`storybook-static/` は gitignore)。
|
|
437
|
+
|
|
438
|
+
```
|
|
439
|
+
npm run build-storybook # 初回・ストーリー変更後に必須
|
|
440
|
+
npm run test:vrt # vrt/ 配下の Playwright テスト一式(VRT・a11y・e2e)
|
|
441
|
+
npm run test:vrt:update # スナップショットを更新
|
|
442
|
+
npm run test:vrt:report # 差分をスライダー形式で確認
|
|
443
|
+
$env:FILTER='Calendar'; npm run test:vrt:update # Calendarのスナップショットのみ更新
|
|
444
|
+
```
|
|
445
|
+
|
|
446
|
+
> CI の Visual Regression Test ワークフローは `vrt/vrt.spec.ts` のみを実行します。ローカルの `npm run test:vrt` は a11y / e2e も含みます。
|
|
447
|
+
> Playwright のバージョンを更新した後は `npx playwright install` でブラウザを再取得してください。
|
|
448
|
+
|
|
449
|
+
#### 環境変数
|
|
450
|
+
|
|
451
|
+
```
|
|
452
|
+
$env:THEME='light' # ライトモードのみ実行
|
|
453
|
+
$env:THEME='dark' # ダークモードのみ実行
|
|
454
|
+
$env:FILTER='Button' # Buttonコンポーネントのみ実行
|
|
455
|
+
$env:THEME='light'; $env:FILTER='Button' # ButtonのライトモードのみVRT
|
|
456
|
+
$env:THEME='dark'; $env:FILTER='Calendar' # CalendarのダークモードのみVRT
|
|
457
|
+
$env:THEME=$null; $env:FILTER=$null # 環境変数をリセット
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
#### CI (GitHub Actions) での VRT 運用
|
|
461
|
+
|
|
462
|
+
VRT は `src/`・`stories/` に変更があるPRで自動実行されます。
|
|
463
|
+
|
|
464
|
+
UIを意図的に変更した場合の手順:
|
|
465
|
+
|
|
466
|
+
1. UIを変更してPRを作成する
|
|
467
|
+
2. VRTワークフローが自動実行され、既存のlinuxスナップショットと比較する
|
|
468
|
+
3. 差分が検出されるとテストが失敗する
|
|
469
|
+
4. Actions タブ → 該当ワークフロー → `vrt-diffs` アーティファクトをダウンロードして差分画像を確認する
|
|
470
|
+
5. 変更が意図的なものであれば、Actions タブ → Visual Regression Test → Run workflow → `Update baseline snapshots: true` でベースラインを更新する
|
|
471
|
+
|
|
472
|
+
> 初回セットアップ: linuxスナップショットがまだ存在しない状態では比較対象がないため失敗します。
|
|
473
|
+
> 上記の Run workflow → `Update baseline snapshots: true` を一度実行してlinux用ベースラインを生成してください。
|
|
474
|
+
|
|
475
|
+
### a11y
|
|
476
|
+
|
|
477
|
+
VRT と同様に、事前に `npm run build-storybook` が必要です。
|
|
478
|
+
|
|
479
|
+
```
|
|
480
|
+
npx playwright test vrt/a11y.spec.ts # 全ストーリーのa11yチェック
|
|
481
|
+
$env:FILTER='Button'; npx playwright test vrt/a11y.spec.ts # Buttonのみ
|
|
482
|
+
npx playwright test vrt/a11y.spec.ts --grep "DataGrid" # DataGridのみ
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
### バンドルサイズ
|
|
486
|
+
|
|
487
|
+
```
|
|
488
|
+
npm run size # ESモジュール全チャンク(gzip)とUMDバンドル(gzip)が閾値内かチェック
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
閾値はCI(`bundle-size.yml`)でも自動確認されます。
|
|
492
|
+
|
|
493
|
+
### Storybook docs エラー検知
|
|
494
|
+
|
|
495
|
+
MDX ファイルで参照しているストーリー名が実際のエクスポートと一致しない場合、Storybook のビルド時にエラーが出力されます。
|
|
496
|
+
|
|
497
|
+
```
|
|
498
|
+
npm run build-storybook # ビルドエラーとしてエラーのあるページを検知
|
|
499
|
+
```
|
|
500
|
+
|
|
501
|
+
エラーが出た場合は標準エラー出力に `error` が含まれる行として表示されます。
|
|
502
|
+
|
|
503
|
+
よくある原因:
|
|
504
|
+
|
|
505
|
+
- MDX の `<Canvas of={Stories.ExportName} />` で `ExportName` がストーリーファイルに存在しない
|
|
506
|
+
- MDX の `<Controls of={Stories.ExportName} />` で同上
|
|
507
|
+
- `<Markdown>` コンポーネントに文字列ではなく JSX を渡している
|
|
508
|
+
|
|
509
|
+
## コード整形
|
|
510
|
+
|
|
511
|
+
```
|
|
512
|
+
npm run format # プロジェクト全体をPrettierで整形
|
|
513
|
+
```
|
|
514
|
+
|
|
515
|
+
## メンテナンス・監査 (Maintenance & Audit)
|
|
516
|
+
|
|
517
|
+
大量のコンポーネント追加や大規模なリファクタリングの前後で実行することを推奨します。
|
|
518
|
+
|
|
519
|
+
```bash
|
|
520
|
+
npm run audit:all # 全監査を一括実行(docs + lib)
|
|
521
|
+
npm run audit:lib # ライブラリ構造ガードのみ
|
|
522
|
+
npm run audit:docs # Storybook/MDX・i18n 系のみ
|
|
523
|
+
npm run audit-mdx # ドキュメントの必須セクション漏れをチェック
|
|
524
|
+
npm run i18n:check # 3言語の整合性をチェック
|
|
525
|
+
npm run check:aschild # asChild(Slotパターン)の適用漏れをチェック
|
|
526
|
+
```
|
|
527
|
+
|
|
528
|
+
監査内容(`audit:all`):
|
|
529
|
+
- **docs**: MDX 必須セクション / i18n 整合・行数 / MDX・Stories のハードコード文言 / ストーリー階層
|
|
530
|
+
- **lib**: asChild / ハードコード値(色・px) / 公開 API サーフェス / root hooks / トークン・intent 整合 / SCSS トークン参照
|
|
531
|
+
|
|
532
|
+
## 国際化 (i18n)
|
|
533
|
+
|
|
534
|
+
```bash
|
|
535
|
+
npm run i18n:check # ロケールファイル間の翻訳キー欠落とファイル行数(1000行)をチェック
|
|
536
|
+
npm run i18n:check:components # コンポーネントソースで使われているキーが翻訳ファイルに存在するかチェック
|
|
537
|
+
npm run i18n:sync # enを基準にja/ptへGoogle AIで自動翻訳・追記(要: GOOGLE_GENERATIVE_AI_API_KEY)
|
|
538
|
+
```
|
|
539
|
+
|
|
540
|
+
| スクリプト | 検出できるケース |
|
|
541
|
+
|---|---|
|
|
542
|
+
| `i18n:check` | ロケール間の欠落、ファイル肥大化(1000行制限) |
|
|
543
|
+
| `i18n:check:components` | コード上で `t("key")` を使い始めたが登録を忘れているケース |
|
|
544
|
+
|
|
545
|
+
推奨フロー:
|
|
546
|
+
1. `npm run i18n:check:components` で未登録キーを検出
|
|
547
|
+
2. EN の翻訳ファイルにキーを追加
|
|
548
|
+
3. `npm run i18n:sync` で ja/pt へ自動翻訳
|
|
549
|
+
4. `npm run i18n:check` で最終的な整合性を確認
|
|
550
|
+
|
|
551
|
+
## ユーティリティ・整合性
|
|
552
|
+
|
|
553
|
+
```bash
|
|
554
|
+
npm run check:consistency # src・src/data/components.json・stories・mdx の構造的矛盾を確認
|
|
555
|
+
npm run check:hierarchy # コンポーネントリスト(MDX)の掲載漏れを確認
|
|
556
|
+
npm run check:aschild # コンポーネントが Slot パターンを正しく実装しているか確認
|
|
557
|
+
npm run check:stories # 翻訳キーの漏れ(生キー表示)を確認
|
|
558
|
+
npm run i18n:missing # enにあって他言語に未翻訳のキーを確認
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
## デプロイ
|
|
562
|
+
|
|
563
|
+
```
|
|
564
|
+
npm run deploy # GitHub Pagesへデプロイ
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
`main` ブランチへの push でも `.github/workflows/deploy.yml` 経由で Storybook が GitHub Pages に自動デプロイされます。手動の `npm run deploy` はローカルからの緊急デプロイや検証用です。
|
|
568
|
+
|
|
569
|
+
## Git
|
|
570
|
+
|
|
571
|
+
### Huskyのスキップ
|
|
572
|
+
|
|
573
|
+
やむを得ずコミット時のHuskyをスキップする場合:
|
|
574
|
+
|
|
575
|
+
```
|
|
576
|
+
git commit -m "commit message" --no-verify
|
|
577
|
+
```
|
|
578
|
+
|
|
579
|
+
## コーディングルール
|
|
580
|
+
|
|
581
|
+
- スタイリング:新規コンポーネントは CSS Modules(`*.module.scss`)を推奨
|
|
582
|
+
- CSSクラス名:従来のグローバルクラスは `wim-` プレフィックスを使用(詳細は `RULES.md` を参照)
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
## ドキュメントの自動抽出 (Docgen)
|
|
586
|
+
|
|
587
|
+
WIM UI では、コンポーネントの仕様(Props、デザイントークン、構成要素)を自動抽出し、MDX に埋め込む仕組みを構築しています。
|
|
588
|
+
Vite の開発サーバー起動時やファイル保存時に `src/data/docgen_*.json` が自動更新されるため、手動でスクリプトを実行する必要はありません(生成物は gitignore され、Storybook の Vite プラグインが出力します)。
|
|
589
|
+
MDX の記述方法の詳細は `SKILLS.md` を参照してください。
|
|
590
|
+
|
|
591
|
+
## デザイントークン
|
|
592
|
+
|
|
593
|
+
WIM UI は、Style Dictionary を使用してデザイントークンを一元管理(Single Source of Truth)しています。
|
|
594
|
+
|
|
595
|
+
### 基本構成
|
|
596
|
+
|
|
597
|
+
- ソース: `tokens/color/*.json`・`tokens/*.json`・`tokens/themes/dark.json`・`tokens/intents.json`
|
|
598
|
+
- 生成物(自動生成):
|
|
599
|
+
- `src/tokens/generated/`(SCSS 変数・CSS カスタムプロパティ・`_intents.scss`)
|
|
600
|
+
- `src/types/generated-tokens.ts` / `src/types/generated-intents.ts`
|
|
601
|
+
|
|
602
|
+
### ビルドコマンド
|
|
603
|
+
|
|
604
|
+
トークン(JSON)を編集した後は、必ず以下のコマンドを実行してコードに反映させてください。
|
|
605
|
+
|
|
606
|
+
```bash
|
|
607
|
+
npm run tokens:build # Style Dictionary + intent 生成(SCSS / TypeScript)
|
|
608
|
+
```
|
|
609
|
+
|
|
610
|
+
このコマンドにより、コンポーネント開発時に最新のトークンが型補完として利用可能になります。
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
## ワークフロー
|
|
617
|
+
|
|
618
|
+
git add .
|
|
619
|
+
git commit -m "..."
|
|
620
|
+
git pull --rebase origin main
|
|
621
|
+
git push origin main
|