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
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"calendar": {
|
|
3
|
+
"aria_date": "{{day}}/{{month}}/{{year}}",
|
|
4
|
+
"title": "{{month}}/{{year}}"
|
|
5
|
+
},
|
|
6
|
+
"countdown": {
|
|
7
|
+
"remaining": "{{time}} restantes"
|
|
8
|
+
},
|
|
9
|
+
"table": {
|
|
10
|
+
"header_component": "Componente",
|
|
11
|
+
"header_overview": "Visão Geral",
|
|
12
|
+
"header_usage": "Cenário de Uso",
|
|
13
|
+
"header_placement": "Posicionamento"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent_status": {
|
|
3
|
+
"done": "Concluído",
|
|
4
|
+
"error": "Erro",
|
|
5
|
+
"idle": "Ocioso",
|
|
6
|
+
"running": "Executando…",
|
|
7
|
+
"thinking": "Pensando…",
|
|
8
|
+
"waiting": "Aguardando…"
|
|
9
|
+
},
|
|
10
|
+
"ai_feedback": {
|
|
11
|
+
"group_label": "Avaliação da resposta",
|
|
12
|
+
"negative_label": "Não foi útil",
|
|
13
|
+
"positive_label": "Útil",
|
|
14
|
+
"regenerate_label": "Regenerar resposta"
|
|
15
|
+
},
|
|
16
|
+
"artifact_overlay": {
|
|
17
|
+
"maximize": "Maximizar",
|
|
18
|
+
"minimize": "Minimizar"
|
|
19
|
+
},
|
|
20
|
+
"btn": {
|
|
21
|
+
"page_transition": "Transições de página padrão ou links de rodapé."
|
|
22
|
+
},
|
|
23
|
+
"button": {
|
|
24
|
+
"clear": "Limpar",
|
|
25
|
+
"close": "Fechar",
|
|
26
|
+
"consistency": "Consistência",
|
|
27
|
+
"consistency_desc": "Mantenha o mesmo uso de maiúsculas no rótulo (Frase) e o posicionamento do ícone em todos os botões.",
|
|
28
|
+
"copy_desc": "Um botão especializado para copiar texto para a área de transferência com feedback visual.",
|
|
29
|
+
"copy_usage": "Chaves de API, IDs de transação ou links de compartilhamento.",
|
|
30
|
+
"dismiss": "Descartar",
|
|
31
|
+
"group_desc": "Um contêiner que agrupa vários botões logicamente relacionados.",
|
|
32
|
+
"group_usage": "Barras de filtro, paginação ou ações de formulário de várias etapas.",
|
|
33
|
+
"guide_desc": "Diretrizes para escolher e implementar o tipo de botão correto para sua interface.",
|
|
34
|
+
"guide_title": "Visão Geral dos Botões",
|
|
35
|
+
"guideline_detail": "Detalhe",
|
|
36
|
+
"guideline_principle": "Princípio",
|
|
37
|
+
"icon_usage": "Barras de ferramentas densas, controles de mídia ou compartilhamento social.",
|
|
38
|
+
"label": "Botão",
|
|
39
|
+
"link_desc": "Um botão estilizado como um link de texto para ações de navegação secundárias.",
|
|
40
|
+
"placement_conflict": "Conflito de Posicionamento",
|
|
41
|
+
"placement_conflict_desc": "Evite colocar vários botões primários na mesma visualização.",
|
|
42
|
+
"placement_desc": "Os botões devem ser agrupados no canto inferior direito para modais ou inferior esquerdo para formulários.",
|
|
43
|
+
"priority_weighting": "Uma matriz descrevendo quando usar botões Primários, Secundários ou Terciários.",
|
|
44
|
+
"semantics_desc": "Botões acionam ações, enquanto Links alteram a localização da página ou a posição de rolagem.",
|
|
45
|
+
"semantics_guide_ref": "Consulte o guia Link vs Botão para informações mais detalhadas.",
|
|
46
|
+
"standard_desc": "Botão retangular padrão para ações gerais.",
|
|
47
|
+
"standard_usage": "CTAs principais como Enviar, Salvar ou Adicionar Item."
|
|
48
|
+
},
|
|
49
|
+
"code_block": {
|
|
50
|
+
"collapse_label": "Recolher",
|
|
51
|
+
"copied_label": "Copiado!",
|
|
52
|
+
"copy_label": "Copiar código",
|
|
53
|
+
"expand_label": "Expandir",
|
|
54
|
+
"lines": "{{count}} linhas"
|
|
55
|
+
},
|
|
56
|
+
"code_diff_viewer": {
|
|
57
|
+
"applied": "Aplicado",
|
|
58
|
+
"apply": "Aplicar",
|
|
59
|
+
"copied_label": "Copiado!",
|
|
60
|
+
"copy_label": "Copiar",
|
|
61
|
+
"reject": "Rejeitar",
|
|
62
|
+
"split_view": "Dividido",
|
|
63
|
+
"unified_view": "Unificado"
|
|
64
|
+
},
|
|
65
|
+
"combobox": {
|
|
66
|
+
"no_results": "Nenhum resultado encontrado"
|
|
67
|
+
},
|
|
68
|
+
"dropzone": {
|
|
69
|
+
"description": "Arraste e solte os arquivos aqui ou clique para selecionar"
|
|
70
|
+
},
|
|
71
|
+
"fileupload": {
|
|
72
|
+
"button": "Selecionar arquivo",
|
|
73
|
+
"no_file": "Nenhum arquivo selecionado"
|
|
74
|
+
},
|
|
75
|
+
"form": {
|
|
76
|
+
"optional": "Opcional",
|
|
77
|
+
"required": "Obrigatório"
|
|
78
|
+
},
|
|
79
|
+
"image_cropper": {
|
|
80
|
+
"apply": "Aplicar recorte",
|
|
81
|
+
"cancel": "Cancelar",
|
|
82
|
+
"confirm": "Aplicar",
|
|
83
|
+
"confirm_message": "Deseja salvar a imagem com este recorte?",
|
|
84
|
+
"confirm_title": "Aplicar recorte",
|
|
85
|
+
"no_image": "Nenhuma imagem selecionada",
|
|
86
|
+
"rotate": "Rodar",
|
|
87
|
+
"zoom": "Zoom"
|
|
88
|
+
},
|
|
89
|
+
"otp": {
|
|
90
|
+
"digit": "Dígito {{index}}"
|
|
91
|
+
},
|
|
92
|
+
"password_strength": {
|
|
93
|
+
"fair": "Razoável",
|
|
94
|
+
"strong": "Forte",
|
|
95
|
+
"very_strong": "Muito forte",
|
|
96
|
+
"very_weak": "Muito fraca",
|
|
97
|
+
"weak": "Fraca"
|
|
98
|
+
},
|
|
99
|
+
"phone": {
|
|
100
|
+
"number": "Número de telefone"
|
|
101
|
+
},
|
|
102
|
+
"prompt_input": {
|
|
103
|
+
"aria_label": "Campo de prompt",
|
|
104
|
+
"attach_label": "Anexar arquivo",
|
|
105
|
+
"send_label": "Enviar"
|
|
106
|
+
},
|
|
107
|
+
"select": {
|
|
108
|
+
"no_options": "Nenhuma opção encontrada",
|
|
109
|
+
"option": "Opção 1"
|
|
110
|
+
},
|
|
111
|
+
"tag_input": {
|
|
112
|
+
"input_label": "Tags"
|
|
113
|
+
},
|
|
114
|
+
"smart_search": {
|
|
115
|
+
"input_label": "Pesquisar"
|
|
116
|
+
},
|
|
117
|
+
"markdown": {
|
|
118
|
+
"task_done": "Tarefa concluída",
|
|
119
|
+
"task_todo": "Tarefa pendente"
|
|
120
|
+
},
|
|
121
|
+
"source_citation": {
|
|
122
|
+
"open_source": "Abrir fonte",
|
|
123
|
+
"source_label": "Fonte {{index}}"
|
|
124
|
+
},
|
|
125
|
+
"terminal": {
|
|
126
|
+
"clear_label": "Limpar",
|
|
127
|
+
"copied_label": "Copiado!",
|
|
128
|
+
"copy_label": "Copiar saída"
|
|
129
|
+
},
|
|
130
|
+
"transfer": {
|
|
131
|
+
"move_to_source": "Mover para disponível",
|
|
132
|
+
"move_to_target": "Mover para selecionado",
|
|
133
|
+
"no_data": "Sem dados",
|
|
134
|
+
"source": "Disponível",
|
|
135
|
+
"status_moved_to_source": "{{count}} item(s) movido(s) para lista disponível",
|
|
136
|
+
"status_moved_to_target": "{{count}} item(s) movido(s) para lista selecionada",
|
|
137
|
+
"target": "Selecionado"
|
|
138
|
+
}
|
|
139
|
+
}
|
package/dist/media.cjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./components/media/Icon/Icon.cjs"),t=require("./components/media/Audio/Audio.cjs"),n=require("./components/media/Image/Image.cjs"),r=require("./components/media/Video/Video.cjs"),i=require("./components/media/Lightbox/Lightbox.cjs"),a=require("./components/media/Gallery/Gallery.cjs"),o=require("./components/media/ImageCompare/ImageCompare.cjs");exports.Audio=t.Audio,exports.Gallery=a.Gallery,exports.Icon=e.Icon,exports.Image=n.Image,exports.ImageCompare=o.ImageCompare,exports.Lightbox=i.Lightbox,exports.LightboxContent=i.LightboxContent,exports.LightboxGallery=i.LightboxGallery,exports.LightboxRoot=i.LightboxRoot,exports.LightboxTrigger=i.LightboxTrigger,exports.Video=r.Video,exports.useLightbox=i.useLightbox;
|
package/dist/media.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './components/media/Audio/Audio';
|
|
2
|
+
export * from './components/media/Image/Image';
|
|
3
|
+
export * from './components/media/Icon/Icon';
|
|
4
|
+
export * from './components/media/Video/Video';
|
|
5
|
+
export * from './components/media/Lightbox/Lightbox';
|
|
6
|
+
export * from './components/media/Gallery/Gallery';
|
|
7
|
+
export * from './components/media/ImageCompare/ImageCompare';
|
package/dist/media.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Icon as e } from "./components/media/Icon/Icon.js";
|
|
3
|
+
import { Audio as t } from "./components/media/Audio/Audio.js";
|
|
4
|
+
import { Image as n } from "./components/media/Image/Image.js";
|
|
5
|
+
import { Video as r } from "./components/media/Video/Video.js";
|
|
6
|
+
import { Lightbox as i, LightboxContent as a, LightboxGallery as o, LightboxRoot as s, LightboxTrigger as c, useLightbox as l } from "./components/media/Lightbox/Lightbox.js";
|
|
7
|
+
import { Gallery as u } from "./components/media/Gallery/Gallery.js";
|
|
8
|
+
import { ImageCompare as d } from "./components/media/ImageCompare/ImageCompare.js";
|
|
9
|
+
export { t as Audio, u as Gallery, e as Icon, n as Image, d as ImageCompare, i as Lightbox, a as LightboxContent, o as LightboxGallery, s as LightboxRoot, c as LightboxTrigger, r as Video, l as useLightbox };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./components/navigation/HamburgerMenu/HamburgerMenu.cjs"),t=require("./components/navigation/Affix/Affix.cjs"),n=require("./components/navigation/Anchor/Anchor.cjs"),r=require("./components/navigation/BackTop/BackTop.cjs"),i=require("./components/navigation/Link/Link.cjs"),a=require("./components/navigation/Breadcrumb/Breadcrumb.cjs"),o=require("./components/navigation/CommandPalette/CommandPalette.cjs"),s=require("./components/navigation/Pagination/Pagination.cjs"),c=require("./components/navigation/Stepper/Stepper.cjs"),l=require("./components/navigation/TabBar/TabBar.cjs"),u=require("./components/navigation/TabNavigation/TabNavigation.cjs"),d=require("./components/navigation/Tabs/Tabs.cjs"),f=require("./components/navigation/SpeedDial/SpeedDial.cjs"),p=require("./components/navigation/KeyboardShortcuts/KeyboardShortcuts.cjs"),m=require("./components/navigation/Menubar/Menubar.cjs");exports.Affix=t.Affix,exports.Anchor=n.Anchor,exports.BackTop=r.BackTop,exports.Breadcrumb=a.Breadcrumb,exports.CommandPalette=o.CommandPalette,exports.CommandPaletteContent=o.CommandPaletteContent,exports.CommandPaletteEmpty=o.CommandPaletteEmpty,exports.CommandPaletteFooter=o.CommandPaletteFooter,exports.CommandPaletteGroup=o.CommandPaletteGroup,exports.CommandPaletteInput=o.CommandPaletteInput,exports.CommandPaletteItem=o.CommandPaletteItem,exports.CommandPaletteList=o.CommandPaletteList,exports.CommandPaletteTrigger=o.CommandPaletteTrigger,exports.HamburgerMenu=e.HamburgerMenu,exports.KeyboardShortcuts=p.KeyboardShortcuts,exports.Link=i.Link,exports.Menubar=m.Menubar,exports.Pagination=s.Pagination,exports.PaginationPage=s.PaginationPage,exports.SpeedDial=f.SpeedDial,exports.Stepper=c.Stepper,exports.TabBar=l.TabBar,exports.TabBarItem=l.TabBarItem,exports.TabNavigation=u.TabNavigation,exports.TabNavigationItem=u.TabNavigationItem,exports.Tabs=d.Tabs,exports.TabsContent=d.TabsContent,exports.TabsList=d.TabsList,exports.TabsTrigger=d.TabsTrigger;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './components/navigation/Affix/Affix';
|
|
2
|
+
export * from './components/navigation/Anchor/Anchor';
|
|
3
|
+
export * from './components/navigation/BackTop/BackTop';
|
|
4
|
+
export * from './components/navigation/Breadcrumb/Breadcrumb';
|
|
5
|
+
export * from './components/navigation/CommandPalette/CommandPalette';
|
|
6
|
+
export * from './components/navigation/HamburgerMenu/HamburgerMenu';
|
|
7
|
+
export * from './components/navigation/Link/Link';
|
|
8
|
+
export * from './components/navigation/Pagination/Pagination';
|
|
9
|
+
export * from './components/navigation/Stepper/Stepper';
|
|
10
|
+
export * from './components/navigation/TabBar/TabBar';
|
|
11
|
+
export * from './components/navigation/TabNavigation/TabNavigation';
|
|
12
|
+
export * from './components/navigation/Tabs/Tabs';
|
|
13
|
+
export * from './components/navigation/SpeedDial/SpeedDial';
|
|
14
|
+
export * from './components/navigation/KeyboardShortcuts/KeyboardShortcuts';
|
|
15
|
+
export * from './components/navigation/Menubar/Menubar';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { HamburgerMenu as e } from "./components/navigation/HamburgerMenu/HamburgerMenu.js";
|
|
3
|
+
import { Affix as t } from "./components/navigation/Affix/Affix.js";
|
|
4
|
+
import { Anchor as n } from "./components/navigation/Anchor/Anchor.js";
|
|
5
|
+
import { BackTop as r } from "./components/navigation/BackTop/BackTop.js";
|
|
6
|
+
import { Link as i } from "./components/navigation/Link/Link.js";
|
|
7
|
+
import { Breadcrumb as a } from "./components/navigation/Breadcrumb/Breadcrumb.js";
|
|
8
|
+
import { CommandPalette as o, CommandPaletteContent as s, CommandPaletteEmpty as c, CommandPaletteFooter as l, CommandPaletteGroup as u, CommandPaletteInput as d, CommandPaletteItem as f, CommandPaletteList as p, CommandPaletteTrigger as m } from "./components/navigation/CommandPalette/CommandPalette.js";
|
|
9
|
+
import { Pagination as h, PaginationPage as g } from "./components/navigation/Pagination/Pagination.js";
|
|
10
|
+
import { Stepper as _ } from "./components/navigation/Stepper/Stepper.js";
|
|
11
|
+
import { TabBar as v, TabBarItem as y } from "./components/navigation/TabBar/TabBar.js";
|
|
12
|
+
import { TabNavigation as b, TabNavigationItem as x } from "./components/navigation/TabNavigation/TabNavigation.js";
|
|
13
|
+
import { Tabs as S, TabsContent as C, TabsList as w, TabsTrigger as T } from "./components/navigation/Tabs/Tabs.js";
|
|
14
|
+
import { SpeedDial as E } from "./components/navigation/SpeedDial/SpeedDial.js";
|
|
15
|
+
import { KeyboardShortcuts as D } from "./components/navigation/KeyboardShortcuts/KeyboardShortcuts.js";
|
|
16
|
+
import { Menubar as O } from "./components/navigation/Menubar/Menubar.js";
|
|
17
|
+
export { t as Affix, n as Anchor, r as BackTop, a as Breadcrumb, o as CommandPalette, s as CommandPaletteContent, c as CommandPaletteEmpty, l as CommandPaletteFooter, u as CommandPaletteGroup, d as CommandPaletteInput, f as CommandPaletteItem, p as CommandPaletteList, m as CommandPaletteTrigger, e as HamburgerMenu, D as KeyboardShortcuts, i as Link, O as Menubar, h as Pagination, g as PaginationPage, E as SpeedDial, _ as Stepper, v as TabBar, y as TabBarItem, b as TabNavigation, x as TabNavigationItem, S as Tabs, C as TabsContent, w as TabsList, T as TabsTrigger };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region node_modules/@fullcalendar/core/locales/ja.js
|
|
3
|
+
var e = {
|
|
4
|
+
code: "ja",
|
|
5
|
+
buttonText: {
|
|
6
|
+
prev: "前",
|
|
7
|
+
next: "次",
|
|
8
|
+
today: "今日",
|
|
9
|
+
year: "年",
|
|
10
|
+
month: "月",
|
|
11
|
+
week: "週",
|
|
12
|
+
day: "日",
|
|
13
|
+
list: "予定リスト"
|
|
14
|
+
},
|
|
15
|
+
weekText: "週",
|
|
16
|
+
allDayText: "終日",
|
|
17
|
+
moreLinkText(e) {
|
|
18
|
+
return "他 " + e + " 件";
|
|
19
|
+
},
|
|
20
|
+
noEventsText: "表示する予定はありません"
|
|
21
|
+
};
|
|
22
|
+
//#endregion
|
|
23
|
+
export { e as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var e={code:`pt-br`,buttonText:{prev:`Anterior`,next:`Próximo`,prevYear:`Ano anterior`,nextYear:`Próximo ano`,year:`Ano`,today:`Hoje`,month:`Mês`,week:`Semana`,day:`Dia`,list:`Lista`},buttonHints:{prev:`$0 Anterior`,next:`Próximo $0`,today(e){return e===`Dia`?`Hoje`:(e===`Semana`?`Esta`:`Este`)+` `+e.toLocaleLowerCase()}},viewHint(e){return`Visualizar `+(e===`Semana`?`a`:`o`)+` `+e.toLocaleLowerCase()},weekText:`Sm`,weekTextLong:`Semana`,allDayText:`dia inteiro`,moreLinkText(e){return`mais +`+e},moreLinkHint(e){return`Mostrar mais ${e} eventos`},noEventsText:`Não há eventos para mostrar`,navLinkHint:`Ir para $0`,closeHint:`Fechar`,timeHint:`A hora`,eventHint:`Evento`};exports.default=e;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region node_modules/@fullcalendar/core/locales/pt-br.js
|
|
3
|
+
var e = {
|
|
4
|
+
code: "pt-br",
|
|
5
|
+
buttonText: {
|
|
6
|
+
prev: "Anterior",
|
|
7
|
+
next: "Próximo",
|
|
8
|
+
prevYear: "Ano anterior",
|
|
9
|
+
nextYear: "Próximo ano",
|
|
10
|
+
year: "Ano",
|
|
11
|
+
today: "Hoje",
|
|
12
|
+
month: "Mês",
|
|
13
|
+
week: "Semana",
|
|
14
|
+
day: "Dia",
|
|
15
|
+
list: "Lista"
|
|
16
|
+
},
|
|
17
|
+
buttonHints: {
|
|
18
|
+
prev: "$0 Anterior",
|
|
19
|
+
next: "Próximo $0",
|
|
20
|
+
today(e) {
|
|
21
|
+
return e === "Dia" ? "Hoje" : (e === "Semana" ? "Esta" : "Este") + " " + e.toLocaleLowerCase();
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
viewHint(e) {
|
|
25
|
+
return "Visualizar " + (e === "Semana" ? "a" : "o") + " " + e.toLocaleLowerCase();
|
|
26
|
+
},
|
|
27
|
+
weekText: "Sm",
|
|
28
|
+
weekTextLong: "Semana",
|
|
29
|
+
allDayText: "dia inteiro",
|
|
30
|
+
moreLinkText(e) {
|
|
31
|
+
return "mais +" + e;
|
|
32
|
+
},
|
|
33
|
+
moreLinkHint(e) {
|
|
34
|
+
return `Mostrar mais ${e} eventos`;
|
|
35
|
+
},
|
|
36
|
+
noEventsText: "Não há eventos para mostrar",
|
|
37
|
+
navLinkHint: "Ir para $0",
|
|
38
|
+
closeHint: "Fechar",
|
|
39
|
+
timeHint: "A hora",
|
|
40
|
+
eventHint: "Evento"
|
|
41
|
+
};
|
|
42
|
+
//#endregion
|
|
43
|
+
export { e as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var e={code:`pt`,week:{dow:1,doy:4},buttonText:{prev:`Anterior`,next:`Seguinte`,today:`Hoje`,year:`Ano`,month:`Mês`,week:`Semana`,day:`Dia`,list:`Agenda`},weekText:`Sem`,allDayText:`Todo o dia`,moreLinkText:`mais`,noEventsText:`Não há eventos para mostrar`};exports.default=e;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region node_modules/@fullcalendar/core/locales/pt.js
|
|
3
|
+
var e = {
|
|
4
|
+
code: "pt",
|
|
5
|
+
week: {
|
|
6
|
+
dow: 1,
|
|
7
|
+
doy: 4
|
|
8
|
+
},
|
|
9
|
+
buttonText: {
|
|
10
|
+
prev: "Anterior",
|
|
11
|
+
next: "Seguinte",
|
|
12
|
+
today: "Hoje",
|
|
13
|
+
year: "Ano",
|
|
14
|
+
month: "Mês",
|
|
15
|
+
week: "Semana",
|
|
16
|
+
day: "Dia",
|
|
17
|
+
list: "Agenda"
|
|
18
|
+
},
|
|
19
|
+
weekText: "Sem",
|
|
20
|
+
allDayText: "Todo o dia",
|
|
21
|
+
moreLinkText: "mais",
|
|
22
|
+
noEventsText: "Não há eventos para mostrar"
|
|
23
|
+
};
|
|
24
|
+
//#endregion
|
|
25
|
+
export { e as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("../../../../_virtual/_rolldown/runtime.cjs");let t=require("react");t=e.__toESM(t,1);function n(e,t){if(typeof e==`function`)return e(t);e!=null&&(e.current=t)}function r(...e){return t=>{let r=!1,i=e.map(e=>{let i=n(e,t);return!r&&typeof i==`function`&&(r=!0),i});if(r)return()=>{for(let t=0;t<i.length;t++){let r=i[t];typeof r==`function`?r():n(e[t],null)}}}}function i(...e){return t.useCallback(r(...e),e)}exports.composeRefs=r,exports.useComposedRefs=i;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import * as e from "react";
|
|
3
|
+
//#region node_modules/@radix-ui/react-compose-refs/dist/index.mjs
|
|
4
|
+
function t(e, t) {
|
|
5
|
+
if (typeof e == "function") return e(t);
|
|
6
|
+
e != null && (e.current = t);
|
|
7
|
+
}
|
|
8
|
+
function n(...e) {
|
|
9
|
+
return (n) => {
|
|
10
|
+
let r = !1, i = e.map((e) => {
|
|
11
|
+
let i = t(e, n);
|
|
12
|
+
return !r && typeof i == "function" && (r = !0), i;
|
|
13
|
+
});
|
|
14
|
+
if (r) return () => {
|
|
15
|
+
for (let n = 0; n < i.length; n++) {
|
|
16
|
+
let r = i[n];
|
|
17
|
+
typeof r == "function" ? r() : t(e[n], null);
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
function r(...t) {
|
|
23
|
+
return e.useCallback(n(...t), t);
|
|
24
|
+
}
|
|
25
|
+
//#endregion
|
|
26
|
+
export { n as composeRefs, r as useComposedRefs };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("../../../../_virtual/_rolldown/runtime.cjs"),t=require("../../react-compose-refs/dist/index.cjs");let n=require("react");n=e.__toESM(n,1);function r(e){let r=n.forwardRef((r,i)=>{let{children:a,...o}=r,s=null,f=!1,m=[];p(a)&&typeof _==`function`&&(a=_(a._payload)),n.Children.forEach(a,e=>{if(d(e)){f=!0;let t=e,n=`child`in t.props?t.props.child:t.props.children;p(n)&&typeof _==`function`&&(n=_(n._payload)),s=c(t,n),m.push(s?.props?.children)}else m.push(e)}),s?s=n.cloneElement(s,void 0,m):!f&&n.Children.count(a)===1&&n.isValidElement(a)&&(s=a);let v=s?u(s):void 0,y=t.useComposedRefs(i,v);if(!s){if(a||a===0)throw Error(f?g(e):h(e));return a}let b=l(o,s.props??{});return s.type!==n.Fragment&&(b.ref=i?y:v),n.cloneElement(s,b)});return r.displayName=`${e}.Slot`,r}var i=r(`Slot`),a=Symbol.for(`radix.slottable`);function o(e){let t=e=>`child`in e?e.children(e.child):e.children;return t.displayName=`${e}.Slottable`,t.__radixId=a,t}var s=o(`Slottable`),c=(e,t)=>{if(`child`in e.props){let t=e.props.child;return n.isValidElement(t)?n.cloneElement(t,void 0,e.props.children(t.props.children)):null}return n.isValidElement(t)?t:null};function l(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{let t=a(...e);return i(...e),t}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}function u(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}function d(e){return n.isValidElement(e)&&typeof e.type==`function`&&`__radixId`in e.type&&e.type.__radixId===a}var f=Symbol.for(`react.lazy`);function p(e){return typeof e==`object`&&!!e&&`$$typeof`in e&&e.$$typeof===f&&`_payload`in e&&m(e._payload)}function m(e){return typeof e==`object`&&!!e&&`then`in e}var h=e=>`${e} failed to slot onto its children. Expected a single React element child or \`Slottable\`.`,g=e=>`${e} failed to slot onto its \`Slottable\`. Expected \`Slottable\` to receive a single React element child.`,_=n.use;exports.Root=i,exports.Slot=i,exports.Slottable=s,exports.createSlot=r,exports.createSlottable=o;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useComposedRefs as e } from "../../react-compose-refs/dist/index.js";
|
|
3
|
+
import * as t from "react";
|
|
4
|
+
//#region node_modules/@radix-ui/react-slot/dist/index.mjs
|
|
5
|
+
// @__NO_SIDE_EFFECTS__
|
|
6
|
+
function n(n) {
|
|
7
|
+
let r = t.forwardRef((r, i) => {
|
|
8
|
+
let { children: a, ...o } = r, d = null, p = !1, _ = [];
|
|
9
|
+
f(a) && typeof g == "function" && (a = g(a._payload)), t.Children.forEach(a, (e) => {
|
|
10
|
+
if (u(e)) {
|
|
11
|
+
p = !0;
|
|
12
|
+
let t = e, n = "child" in t.props ? t.props.child : t.props.children;
|
|
13
|
+
f(n) && typeof g == "function" && (n = g(n._payload)), d = s(t, n), _.push(d?.props?.children);
|
|
14
|
+
} else _.push(e);
|
|
15
|
+
}), d ? d = t.cloneElement(d, void 0, _) : !p && t.Children.count(a) === 1 && t.isValidElement(a) && (d = a);
|
|
16
|
+
let v = d ? l(d) : void 0, y = e(i, v);
|
|
17
|
+
if (!d) {
|
|
18
|
+
if (a || a === 0) throw Error(p ? h(n) : m(n));
|
|
19
|
+
return a;
|
|
20
|
+
}
|
|
21
|
+
let b = c(o, d.props ?? {});
|
|
22
|
+
return d.type !== t.Fragment && (b.ref = i ? y : v), t.cloneElement(d, b);
|
|
23
|
+
});
|
|
24
|
+
return r.displayName = `${n}.Slot`, r;
|
|
25
|
+
}
|
|
26
|
+
var r = /* @__PURE__ */ n("Slot"), i = Symbol.for("radix.slottable");
|
|
27
|
+
// @__NO_SIDE_EFFECTS__
|
|
28
|
+
function a(e) {
|
|
29
|
+
let t = (e) => "child" in e ? e.children(e.child) : e.children;
|
|
30
|
+
return t.displayName = `${e}.Slottable`, t.__radixId = i, t;
|
|
31
|
+
}
|
|
32
|
+
var o = /* @__PURE__ */ a("Slottable"), s = (e, n) => {
|
|
33
|
+
if ("child" in e.props) {
|
|
34
|
+
let n = e.props.child;
|
|
35
|
+
return t.isValidElement(n) ? t.cloneElement(n, void 0, e.props.children(n.props.children)) : null;
|
|
36
|
+
}
|
|
37
|
+
return t.isValidElement(n) ? n : null;
|
|
38
|
+
};
|
|
39
|
+
function c(e, t) {
|
|
40
|
+
let n = { ...t };
|
|
41
|
+
for (let r in t) {
|
|
42
|
+
let i = e[r], a = t[r];
|
|
43
|
+
/^on[A-Z]/.test(r) ? i && a ? n[r] = (...e) => {
|
|
44
|
+
let t = a(...e);
|
|
45
|
+
return i(...e), t;
|
|
46
|
+
} : i && (n[r] = i) : r === "style" ? n[r] = {
|
|
47
|
+
...i,
|
|
48
|
+
...a
|
|
49
|
+
} : r === "className" && (n[r] = [i, a].filter(Boolean).join(" "));
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
...e,
|
|
53
|
+
...n
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
function l(e) {
|
|
57
|
+
let t = Object.getOwnPropertyDescriptor(e.props, "ref")?.get, n = t && "isReactWarning" in t && t.isReactWarning;
|
|
58
|
+
return n ? e.ref : (t = Object.getOwnPropertyDescriptor(e, "ref")?.get, n = t && "isReactWarning" in t && t.isReactWarning, n ? e.props.ref : e.props.ref || e.ref);
|
|
59
|
+
}
|
|
60
|
+
function u(e) {
|
|
61
|
+
return t.isValidElement(e) && typeof e.type == "function" && "__radixId" in e.type && e.type.__radixId === i;
|
|
62
|
+
}
|
|
63
|
+
var d = Symbol.for("react.lazy");
|
|
64
|
+
function f(e) {
|
|
65
|
+
return typeof e == "object" && !!e && "$$typeof" in e && e.$$typeof === d && "_payload" in e && p(e._payload);
|
|
66
|
+
}
|
|
67
|
+
function p(e) {
|
|
68
|
+
return typeof e == "object" && !!e && "then" in e;
|
|
69
|
+
}
|
|
70
|
+
var m = (e) => `${e} failed to slot onto its children. Expected a single React element child or \`Slottable\`.`, h = (e) => `${e} failed to slot onto its \`Slottable\`. Expected \`Slottable\` to receive a single React element child.`, g = t.use;
|
|
71
|
+
//#endregion
|
|
72
|
+
export { r as Root, r as Slot, o as Slottable, n as createSlot, a as createSlottable };
|
package/dist/overlay.cjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./components/overlay/Portal/Portal.cjs"),t=require("./components/overlay/FocusTrap/FocusTrap.cjs"),n=require("./components/overlay/Drawer/Drawer.cjs"),r=require("./components/overlay/Dialog/Dialog.cjs"),i=require("./components/overlay/Tooltip/Tooltip.cjs"),a=require("./components/overlay/BottomSheet/BottomSheet.cjs"),o=require("./components/overlay/ContextMenu/ContextMenu.cjs"),s=require("./components/overlay/Dropdown/Dropdown.cjs"),c=require("./components/overlay/HoverCard/HoverCard.cjs"),l=require("./components/overlay/Menu/Menu.cjs"),u=require("./components/overlay/Popover/Popover.cjs"),d=require("./components/overlay/Popconfirm/Popconfirm.cjs");exports.BottomSheet=a.BottomSheet,exports.BottomSheetBody=a.BottomSheetBody,exports.BottomSheetClose=a.BottomSheetClose,exports.BottomSheetContent=a.BottomSheetContent,exports.BottomSheetDescription=a.BottomSheetDescription,exports.BottomSheetFooter=a.BottomSheetFooter,exports.BottomSheetHeader=a.BottomSheetHeader,exports.BottomSheetTitle=a.BottomSheetTitle,exports.BottomSheetTrigger=a.BottomSheetTrigger,exports.ContextMenu=o.ContextMenu,exports.ContextMenuDivider=o.ContextMenuDivider,exports.ContextMenuGroup=o.ContextMenuGroup,exports.ContextMenuItem=o.ContextMenuItem,exports.Dialog=r.Dialog,exports.DialogClose=r.DialogClose,exports.DialogContent=r.DialogContent,exports.DialogDescription=r.DialogDescription,exports.DialogFooter=r.DialogFooter,exports.DialogHeader=r.DialogHeader,exports.DialogTitle=r.DialogTitle,exports.DialogTrigger=r.DialogTrigger,exports.Drawer=n.Drawer,exports.DrawerClose=n.DrawerClose,exports.DrawerContent=n.DrawerContent,exports.DrawerDescription=n.DrawerDescription,exports.DrawerFooter=n.DrawerFooter,exports.DrawerHeader=n.DrawerHeader,exports.DrawerTitle=n.DrawerTitle,exports.DrawerTrigger=n.DrawerTrigger,exports.Dropdown=s.Dropdown,exports.DropdownItem=s.DropdownItem,exports.DropdownMenu=s.DropdownMenu,exports.DropdownTrigger=s.DropdownTrigger,exports.FocusTrap=t.FocusTrap,exports.HoverCard=c.HoverCard,exports.HoverCardContent=c.HoverCardContent,exports.HoverCardTrigger=c.HoverCardTrigger,exports.Menu=l.Menu,exports.MenuDivider=l.MenuDivider,exports.MenuItem=l.MenuItem,exports.MenuItemGroup=l.MenuItemGroup,exports.Popconfirm=d.Popconfirm,exports.Popover=u.Popover,exports.PopoverClose=u.PopoverClose,exports.PopoverContent=u.PopoverContent,exports.PopoverTrigger=u.PopoverTrigger,exports.Portal=e.Portal,exports.SubMenu=l.SubMenu,exports.Tooltip=i.Tooltip,exports.TooltipContent=i.TooltipContent,exports.TooltipTrigger=i.TooltipTrigger,exports.useDialog=r.useDialog,exports.useDrawer=n.useDrawer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './components/overlay/BottomSheet/BottomSheet';
|
|
2
|
+
export * from './components/overlay/ContextMenu/ContextMenu';
|
|
3
|
+
export * from './components/overlay/Dialog/Dialog';
|
|
4
|
+
export * from './components/overlay/Drawer/Drawer';
|
|
5
|
+
export * from './components/overlay/Dropdown/Dropdown';
|
|
6
|
+
export * from './components/overlay/HoverCard/HoverCard';
|
|
7
|
+
export * from './components/overlay/Menu/Menu';
|
|
8
|
+
export * from './components/overlay/Popconfirm/Popconfirm';
|
|
9
|
+
export * from './components/overlay/Popover/Popover';
|
|
10
|
+
export * from './components/overlay/Tooltip/Tooltip';
|
|
11
|
+
export * from './components/overlay/Portal/Portal';
|
|
12
|
+
export * from './components/overlay/FocusTrap/FocusTrap';
|
package/dist/overlay.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { Portal as e } from "./components/overlay/Portal/Portal.js";
|
|
3
|
+
import { FocusTrap as t } from "./components/overlay/FocusTrap/FocusTrap.js";
|
|
4
|
+
import { Drawer as n, DrawerClose as r, DrawerContent as i, DrawerDescription as a, DrawerFooter as o, DrawerHeader as s, DrawerTitle as c, DrawerTrigger as l, useDrawer as u } from "./components/overlay/Drawer/Drawer.js";
|
|
5
|
+
import { Dialog as d, DialogClose as f, DialogContent as p, DialogDescription as m, DialogFooter as h, DialogHeader as g, DialogTitle as _, DialogTrigger as v, useDialog as y } from "./components/overlay/Dialog/Dialog.js";
|
|
6
|
+
import { Tooltip as b, TooltipContent as x, TooltipTrigger as S } from "./components/overlay/Tooltip/Tooltip.js";
|
|
7
|
+
import { BottomSheet as C, BottomSheetBody as w, BottomSheetClose as T, BottomSheetContent as E, BottomSheetDescription as D, BottomSheetFooter as O, BottomSheetHeader as k, BottomSheetTitle as A, BottomSheetTrigger as j } from "./components/overlay/BottomSheet/BottomSheet.js";
|
|
8
|
+
import { ContextMenu as M, ContextMenuDivider as N, ContextMenuGroup as P, ContextMenuItem as F } from "./components/overlay/ContextMenu/ContextMenu.js";
|
|
9
|
+
import { Dropdown as I, DropdownItem as L, DropdownMenu as R, DropdownTrigger as z } from "./components/overlay/Dropdown/Dropdown.js";
|
|
10
|
+
import { HoverCard as B, HoverCardContent as V, HoverCardTrigger as H } from "./components/overlay/HoverCard/HoverCard.js";
|
|
11
|
+
import { Menu as U, MenuDivider as W, MenuItem as G, MenuItemGroup as K, SubMenu as q } from "./components/overlay/Menu/Menu.js";
|
|
12
|
+
import { Popover as J, PopoverClose as Y, PopoverContent as X, PopoverTrigger as Z } from "./components/overlay/Popover/Popover.js";
|
|
13
|
+
import { Popconfirm as Q } from "./components/overlay/Popconfirm/Popconfirm.js";
|
|
14
|
+
export { C as BottomSheet, w as BottomSheetBody, T as BottomSheetClose, E as BottomSheetContent, D as BottomSheetDescription, O as BottomSheetFooter, k as BottomSheetHeader, A as BottomSheetTitle, j as BottomSheetTrigger, M as ContextMenu, N as ContextMenuDivider, P as ContextMenuGroup, F as ContextMenuItem, d as Dialog, f as DialogClose, p as DialogContent, m as DialogDescription, h as DialogFooter, g as DialogHeader, _ as DialogTitle, v as DialogTrigger, n as Drawer, r as DrawerClose, i as DrawerContent, a as DrawerDescription, o as DrawerFooter, s as DrawerHeader, c as DrawerTitle, l as DrawerTrigger, I as Dropdown, L as DropdownItem, R as DropdownMenu, z as DropdownTrigger, t as FocusTrap, B as HoverCard, V as HoverCardContent, H as HoverCardTrigger, U as Menu, W as MenuDivider, G as MenuItem, K as MenuItemGroup, Q as Popconfirm, J as Popover, Y as PopoverClose, X as PopoverContent, Z as PopoverTrigger, e as Portal, q as SubMenu, b as Tooltip, x as TooltipContent, S as TooltipTrigger, y as useDialog, u as useDrawer };
|
package/dist/reset.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@layer reset, base, component, utilities;@layer reset{@media(prefers-reduced-motion: reduce){*,*::before,*::after{scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important;animation-iteration-count:1 !important}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{padding:0;margin:0}button{padding:0;cursor:pointer;background-color:rgba(0,0,0,0);border:none}ol,ul{padding:0;margin:0;list-style:none}a{color:inherit;text-decoration:none}table{border-spacing:0;border-collapse:collapse}blockquote{margin:0}}@layer base{html{text-size-adjust:100%;line-height:1.15;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{min-height:100vh;scrollbar-gutter:auto}@media(width >= 769px){body{scrollbar-gutter:stable}}body{color:var(--wim-color-text-primary);overflow-wrap:break-word;background-color:var(--wim-color-surface-app);text-rendering:optimizelegibility;-webkit-tap-highlight-color:rgba(0,0,0,0)}img,picture,video,canvas,svg{display:block;max-width:100%;height:auto}input,button,textarea,select{font:inherit;line-height:inherit;touch-action:manipulation}textarea{resize:vertical}rt{font-feature-settings:"palt"}dialog,[popover]{overscroll-behavior-block:contain}:focus-visible{outline:none;border-radius:inherit;box-shadow:var(--wim-shadow-focus)}@media(prefers-reduced-motion: reduce){*,::before,::after{scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important;animation-iteration-count:1 !important}}::-webkit-scrollbar{width:var(--wim-spacing-sm);height:var(--wim-spacing-sm)}::-webkit-scrollbar-track{background:var(--wim-color-scrollbar-track)}::-webkit-scrollbar-thumb{background:var(--wim-color-scrollbar-thumb);border-radius:var(--wim-radius-full)}::-webkit-scrollbar-thumb:hover{background:oklch(from var(--wim-color-scrollbar-thumb) calc(l * 0.9) c h)}*{scrollbar-color:var(--wim-color-scrollbar-thumb) var(--wim-color-scrollbar-track);scrollbar-width:thin}}.wim-docs-container{padding:24px;color:var(--wim-color-text-primary);background-color:var(--wim-color-surface-app);border-radius:var(--wim-radius-container);transition:background-color var(--wim-duration-base) var(--wim-easing-standard),color var(--wim-duration-base) var(--wim-easing-standard)}.wim-docs-container h1,.wim-docs-container h2,.wim-docs-container h3,.wim-docs-container h4,.wim-docs-container h5,.wim-docs-container h6{margin-top:1.5em;margin-bottom:.5em;color:var(--wim-color-text-primary) !important}.wim-docs-container h1:first-child,.wim-docs-container h2:first-child,.wim-docs-container h3:first-child,.wim-docs-container h4:first-child,.wim-docs-container h5:first-child,.wim-docs-container h6:first-child{margin-top:0}.wim-docs-container p{line-height:1.6;color:var(--wim-color-text-primary) !important}.wim-docs-container ul,.wim-docs-container ol{padding-left:2em;margin:1em 0;color:var(--wim-color-text-primary) !important}.wim-docs-container ul li,.wim-docs-container ol li{margin-bottom:.5em;color:var(--wim-color-text-primary) !important}.wim-docs-container ul li strong,.wim-docs-container ol li strong{color:var(--wim-color-text-primary) !important}.wim-docs-container strong{color:var(--wim-color-text-primary) !important}.wim-docs-container code{padding:2px 4px;color:var(--wim-color-text-primary) !important;background-color:var(--wim-color-surface-variant);border-radius:var(--wim-radius-component)}.wim-docs-container small{color:var(--wim-color-text-secondary) !important}.wim-docs-container table{width:100%;margin:16px 0;color:var(--wim-color-text-primary) !important;border-collapse:collapse}.wim-docs-container table th,.wim-docs-container table td{padding:12px;color:var(--wim-color-text-primary) !important;background-color:var(--wim-color-surface);border:1px solid var(--wim-color-border)}.wim-docs-container table th strong,.wim-docs-container table td strong{color:var(--wim-color-text-primary) !important}.wim-docs-container table th{font-weight:600;background-color:var(--wim-color-surface-variant)}.wim-docs-container a{color:var(--wim-color-primary)}.wim-t code{display:inline-block;padding:3px 5px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:var(--wim-font-size-xs);line-height:1;vertical-align:middle;color:var(--wim-color-text-primary) !important;background-color:oklch(from var(--wim-color-text-primary) l c h/0.01);border:1px solid oklch(from var(--wim-color-text-primary) l c h/0.05);border-radius:var(--wim-radius-sm)}.react-flow svg,.react-flow__edges svg,svg.react-flow__connectionline{display:unset !important;max-width:unset !important;height:unset !important}@layer utilities{.no-scrollbar{scrollbar-width:none !important;-ms-overflow-style:none !important}.no-scrollbar::-webkit-scrollbar{display:none !important}.subtle-scrollbar{scrollbar-color:var(--wim-color-scrollbar-thumb) var(--wim-color-scrollbar-track) !important;scrollbar-width:thin !important}.subtle-scrollbar::-webkit-scrollbar{width:var(--wim-spacing-lg) !important;height:var(--wim-spacing-lg) !important}.subtle-scrollbar::-webkit-scrollbar-track{background:var(--wim-color-scrollbar-track) !important}.subtle-scrollbar::-webkit-scrollbar-thumb{background-color:var(--wim-color-scrollbar-thumb) !important;background-clip:content-box !important;border:1px solid rgba(0,0,0,0) !important;border-radius:var(--wim-radius-lg) !important}.subtle-scrollbar::-webkit-scrollbar-thumb:hover{background-color:oklch(from var(--wim-color-scrollbar-thumb) calc(l * 0.9) c h) !important}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;white-space:nowrap;border:0;clip-path:inset(50%)}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-nowrap{white-space:nowrap}.flex-center{display:flex !important;align-items:center !important;justify-content:center !important}.expand-click-area{position:relative}.expand-click-area::before{position:absolute;inset:calc(-1*var(--wim-spacing-lg));content:""}.unselectable{user-select:none}.pointer-events-none{pointer-events:none}.glass-sm{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);backdrop-filter:blur(var(--wim-blur-sm))}.glass-md{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);box-shadow:var(--wim-shadow-sm);backdrop-filter:blur(var(--wim-blur-md))}.glass-lg{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);box-shadow:var(--wim-shadow-md);backdrop-filter:blur(var(--wim-blur-xl))}}body{font-family:var(--wim-font-family-default);font-optical-sizing:auto;font-feature-settings:normal;font-kerning:auto;line-height:var(--wim-line-height-normal);word-spacing:0;letter-spacing:0;line-break:normal;word-break:normal;text-wrap:pretty;overflow-wrap:anywhere;text-size-adjust:100%;text-spacing-trim:normal}body[lang=ja]{font-family:var(--wim-font-family-ja);font-feature-settings:"palt";line-height:var(--wim-line-height-normal-jp);hyphens:manual;line-break:auto}body[lang=ja] p,body[lang=ja] li,body[lang=ja] dd,body[lang=ja] dt{-webkit-line-break:strict;line-break:strict;word-break:break-all}body[lang=ja] h1,body[lang=ja] h2,body[lang=ja] h3,body[lang=ja] h4,body[lang=ja] h5,body[lang=ja] h6{-webkit-line-break:strict;line-break:strict}body[lang=en]{font-family:var(--wim-font-family-en);line-height:var(--wim-line-height-normal);hyphens:auto}body[lang=en] h1,body[lang=en] h2,body[lang=en] h3,body[lang=en] h4,body[lang=en] h5,body[lang=en] h6{hyphens:manual}body[lang=pt]{font-family:var(--wim-font-family-pt);line-height:var(--wim-line-height-normal);hyphens:auto}body[lang=pt] h1,body[lang=pt] h2,body[lang=pt] h3,body[lang=pt] h4,body[lang=pt] h5,body[lang=pt] h6{hyphens:manual}.font-size-ex-large{font-size:var(--wim-font-size-xl)}.font-size-large{font-size:var(--wim-font-size-lg)}.font-size-medium{font-size:var(--wim-font-size-md)}.font-size-small{font-size:var(--wim-font-size-sm)}.font-size-ex-small{font-size:var(--wim-font-size-xs)}.text-color-white{color:var(--wim-color-white)}.text-color-deepgray{color:var(--wim-color-text-primary)}.text-color-gray{color:var(--wim-color-text-secondary)}.text-color-lightgray{color:var(--wim-color-text-tertiary)}.text-color-black{color:var(--wim-color-surface-app)}.text-color-error{color:var(--wim-color-text-danger)}.font-weight-normal{font-weight:var(--wim-font-weight-normal)}.font-weight-bold{font-weight:var(--wim-font-weight-bold)}.font-style-normal{font-style:normal}.font-style-italic{font-style:italic}.font-lines-loose-jpan{line-height:var(--wim-line-height-loose-jp)}.font-lines-normal-jpan{line-height:var(--wim-line-height-normal-jp)}.font-lines-tight-jpan{line-height:var(--wim-line-height-tight-jp)}.font-lines-loose-latn{line-height:var(--wim-line-height-loose)}.font-lines-normal-latn{line-height:var(--wim-line-height-normal)}.font-lines-tight-latn{line-height:var(--wim-line-height-tight)}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("../_virtual/_rolldown/runtime.cjs"),t=require("./fieldError.cjs");let n=require("react");n=e.__toESM(n,1);let r=require("react/jsx-runtime"),i=require("react-hook-form");function a({render:e,...n}){return(0,r.jsx)(i.Controller,{...n,render:n=>e({...n,error:t.getFieldErrorMessage(n.fieldState.error),invalid:t.getFieldErrorFlag(n.fieldState.error)})})}a.displayName=`FormField`,exports.FormField=a;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ControllerFieldState, ControllerProps, ControllerRenderProps, FieldPath, FieldValues, UseFormStateReturn } from 'react-hook-form';
|
|
3
|
+
export type FormFieldRenderProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = {
|
|
4
|
+
field: ControllerRenderProps<TFieldValues, TName>;
|
|
5
|
+
fieldState: ControllerFieldState;
|
|
6
|
+
formState: UseFormStateReturn<TFieldValues>;
|
|
7
|
+
/** Flattened `fieldState.error` for WIM `error?: string` props. */
|
|
8
|
+
error: string | undefined;
|
|
9
|
+
/** Whether the field currently has a validation error. */
|
|
10
|
+
invalid: boolean;
|
|
11
|
+
};
|
|
12
|
+
export type FormFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = Omit<ControllerProps<TFieldValues, TName>, "render"> & {
|
|
13
|
+
render: (props: FormFieldRenderProps<TFieldValues, TName>) => React.ReactElement;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Thin `Controller` wrapper that exposes WIM-friendly `error` / `invalid` alongside RHF field props.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* ```tsx
|
|
20
|
+
* <FormField
|
|
21
|
+
* control={control}
|
|
22
|
+
* name="email"
|
|
23
|
+
* render={({ field, error }) => <Input {...field} label="Email" error={error} />}
|
|
24
|
+
* />
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare function FormField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ render, ...controllerProps }: FormFieldProps<TFieldValues, TName>): React.JSX.Element;
|
|
28
|
+
export declare namespace FormField {
|
|
29
|
+
var displayName: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { getFieldErrorFlag as e, getFieldErrorMessage as t } from "./fieldError.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
5
|
+
import { Controller as r } from "react-hook-form";
|
|
6
|
+
//#region src/rhf/FormField.tsx
|
|
7
|
+
function i({ render: i, ...a }) {
|
|
8
|
+
return /* @__PURE__ */ n(r, {
|
|
9
|
+
...a,
|
|
10
|
+
render: (n) => i({
|
|
11
|
+
...n,
|
|
12
|
+
error: t(n.fieldState.error),
|
|
13
|
+
invalid: e(n.fieldState.error)
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
i.displayName = "FormField";
|
|
18
|
+
//#endregion
|
|
19
|
+
export { i as FormField };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
function e(t){if(t){if(typeof t.message==`string`&&t.message.length>0)return t.message;for(let n of Object.values(t)){if(!n||typeof n!=`object`)continue;let t=e(n);if(t)return t}}}function t(t){return e(t)!==void 0||!!t}exports.getFieldErrorFlag=t,exports.getFieldErrorMessage=e;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FieldError, FieldErrors, FieldValues, Merge } from 'react-hook-form';
|
|
2
|
+
type AnyFieldError = FieldError | Merge<FieldError, FieldErrors<FieldValues>> | undefined;
|
|
3
|
+
/**
|
|
4
|
+
* Flatten a react-hook-form `FieldError` into a string for WIM `error?: string` props.
|
|
5
|
+
* Nested/root messages (e.g. zod array/object refine) fall back to the first string message found.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getFieldErrorMessage(error: AnyFieldError): string | undefined;
|
|
8
|
+
/** Boolean flag for WIM components that take `error?: boolean` (Checkbox, Switch, Radio). */
|
|
9
|
+
export declare function getFieldErrorFlag(error: AnyFieldError): boolean;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region src/rhf/fieldError.ts
|
|
3
|
+
function e(t) {
|
|
4
|
+
if (t) {
|
|
5
|
+
if (typeof t.message == "string" && t.message.length > 0) return t.message;
|
|
6
|
+
for (let n of Object.values(t)) {
|
|
7
|
+
if (!n || typeof n != "object") continue;
|
|
8
|
+
let t = e(n);
|
|
9
|
+
if (t) return t;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
function t(t) {
|
|
14
|
+
return e(t) !== void 0 || !!t;
|
|
15
|
+
}
|
|
16
|
+
//#endregion
|
|
17
|
+
export { t as getFieldErrorFlag, e as getFieldErrorMessage };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
function e(e){return{name:e.name,value:e.value,onChange:e.onChange,onBlur:e.onBlur,ref:e.ref}}function t(e){return{name:e.name,checked:!!e.value,onChange:t=>{e.onChange(t.target.checked)},onBlur:e.onBlur,ref:e.ref}}exports.checkedFieldProps=t,exports.valueFieldProps=e;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeEvent } from 'react';
|
|
2
|
+
import { ControllerRenderProps, FieldPath, FieldValues } from 'react-hook-form';
|
|
3
|
+
/**
|
|
4
|
+
* Props for WIM value-based controls (`Select`, `RadioGroup`, `CheckboxGroup`,
|
|
5
|
+
* `Slider`, …) where `onChange` receives the value directly (not a DOM event).
|
|
6
|
+
*
|
|
7
|
+
* `ref` stays as RHF's `RefCallBack` so it assigns cleanly to Input / Div / etc. refs.
|
|
8
|
+
*/
|
|
9
|
+
export declare function valueFieldProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>, TValue = TFieldValues[TName]>(field: ControllerRenderProps<TFieldValues, TName>): {
|
|
10
|
+
name: TName;
|
|
11
|
+
value: TValue;
|
|
12
|
+
onChange: (value: TValue) => void;
|
|
13
|
+
onBlur: import('react-hook-form').Noop;
|
|
14
|
+
ref: import('react-hook-form').RefCallBack;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Props for boolean toggles (`Checkbox`, `Switch`) that use native `checked` + change events.
|
|
18
|
+
*/
|
|
19
|
+
export declare function checkedFieldProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>>(field: ControllerRenderProps<TFieldValues, TName>): {
|
|
20
|
+
name: TName;
|
|
21
|
+
checked: boolean;
|
|
22
|
+
onChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
23
|
+
onBlur: import('react-hook-form').Noop;
|
|
24
|
+
ref: import('react-hook-form').RefCallBack;
|
|
25
|
+
};
|