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,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("../_virtual/_rolldown/runtime.cjs");let t=require("react");t=e.__toESM(t);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z`}),(0,n.jsx)(`polyline`,{points:`14 2 14 8 20 8`}),(0,n.jsx)(`line`,{x1:16,y1:13,x2:8,y2:13}),(0,n.jsx)(`line`,{x1:16,y1:17,x2:8,y2:17}),(0,n.jsx)(`line`,{x1:10,y1:9,x2:8,y2:9})]});exports.default=r;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/document.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ e("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
16
|
+
/* @__PURE__ */ e("polyline", { points: "14 2 14 8 20 8" }),
|
|
17
|
+
/* @__PURE__ */ e("line", {
|
|
18
|
+
x1: 16,
|
|
19
|
+
y1: 13,
|
|
20
|
+
x2: 8,
|
|
21
|
+
y2: 13
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ e("line", {
|
|
24
|
+
x1: 16,
|
|
25
|
+
y1: 17,
|
|
26
|
+
x2: 8,
|
|
27
|
+
y2: 17
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ e("line", {
|
|
30
|
+
x1: 10,
|
|
31
|
+
y1: 9,
|
|
32
|
+
x2: 8,
|
|
33
|
+
y2: 9
|
|
34
|
+
})
|
|
35
|
+
]
|
|
36
|
+
});
|
|
37
|
+
//#endregion
|
|
38
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`}),(0,n.jsx)(`polyline`,{points:`7 10 12 15 17 10`}),(0,n.jsx)(`line`,{x1:12,y1:15,x2:12,y2:3})]});exports.default=r;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/download.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ e("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
16
|
+
/* @__PURE__ */ e("polyline", { points: "7 10 12 15 17 10" }),
|
|
17
|
+
/* @__PURE__ */ e("line", {
|
|
18
|
+
x1: 12,
|
|
19
|
+
y1: 15,
|
|
20
|
+
x2: 12,
|
|
21
|
+
y2: 3
|
|
22
|
+
})
|
|
23
|
+
]
|
|
24
|
+
});
|
|
25
|
+
//#endregion
|
|
26
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7`}),(0,n.jsx)(`path`,{d:`M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z`})]});exports.default=r;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/edit.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [/* @__PURE__ */ e("path", { d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }), /* @__PURE__ */ e("path", { d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z`}),(0,n.jsx)(`polyline`,{points:`22,6 12,13 2,6`})]});exports.default=r;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/email.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [/* @__PURE__ */ e("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" }), /* @__PURE__ */ e("polyline", { points: "22,6 12,13 2,6" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,width:24,height:24,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6`}),(0,n.jsx)(`polyline`,{points:`15 3 21 3 21 9`}),(0,n.jsx)(`line`,{x1:10,y1:14,x2:21,y2:3})]});exports.default=r;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/external-link.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
width: 24,
|
|
9
|
+
height: 24,
|
|
10
|
+
fill: "none",
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
strokeWidth: 2,
|
|
13
|
+
strokeLinecap: "round",
|
|
14
|
+
strokeLinejoin: "round",
|
|
15
|
+
...n,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }),
|
|
18
|
+
/* @__PURE__ */ e("polyline", { points: "15 3 21 3 21 9" }),
|
|
19
|
+
/* @__PURE__ */ e("line", {
|
|
20
|
+
x1: 10,
|
|
21
|
+
y1: 14,
|
|
22
|
+
x2: 21,
|
|
23
|
+
y2: 3
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
//#endregion
|
|
28
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24`}),(0,n.jsx)(`line`,{x1:1,y1:1,x2:23,y2:23})]});exports.default=r;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/eye-off.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [/* @__PURE__ */ e("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }), /* @__PURE__ */ e("line", {
|
|
15
|
+
x1: 1,
|
|
16
|
+
y1: 1,
|
|
17
|
+
x2: 23,
|
|
18
|
+
y2: 23
|
|
19
|
+
})]
|
|
20
|
+
});
|
|
21
|
+
//#endregion
|
|
22
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z`}),(0,n.jsx)(`circle`,{cx:12,cy:12,r:3})]});exports.default=r;
|
package/dist/icon/eye.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/eye.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [/* @__PURE__ */ e("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }), /* @__PURE__ */ e("circle", {
|
|
15
|
+
cx: 12,
|
|
16
|
+
cy: 12,
|
|
17
|
+
r: 3
|
|
18
|
+
})]
|
|
19
|
+
});
|
|
20
|
+
//#endregion
|
|
21
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsx)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:(0,n.jsx)(`polygon`,{points:`22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3`})});exports.default=r;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/filter.svg?react
|
|
5
|
+
var t = (t) => /* @__PURE__ */ e("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...t,
|
|
14
|
+
children: /* @__PURE__ */ e("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { t 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`circle`,{cx:9,cy:5,r:1}),(0,n.jsx)(`circle`,{cx:9,cy:12,r:1}),(0,n.jsx)(`circle`,{cx:9,cy:19,r:1}),(0,n.jsx)(`circle`,{cx:15,cy:5,r:1}),(0,n.jsx)(`circle`,{cx:15,cy:12,r:1}),(0,n.jsx)(`circle`,{cx:15,cy:19,r:1})]});exports.default=r;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/grip-vertical.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 24,
|
|
8
|
+
height: 24,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
fill: "none",
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
strokeWidth: 2,
|
|
13
|
+
strokeLinecap: "round",
|
|
14
|
+
strokeLinejoin: "round",
|
|
15
|
+
...n,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e("circle", {
|
|
18
|
+
cx: 9,
|
|
19
|
+
cy: 5,
|
|
20
|
+
r: 1
|
|
21
|
+
}),
|
|
22
|
+
/* @__PURE__ */ e("circle", {
|
|
23
|
+
cx: 9,
|
|
24
|
+
cy: 12,
|
|
25
|
+
r: 1
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ e("circle", {
|
|
28
|
+
cx: 9,
|
|
29
|
+
cy: 19,
|
|
30
|
+
r: 1
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ e("circle", {
|
|
33
|
+
cx: 15,
|
|
34
|
+
cy: 5,
|
|
35
|
+
r: 1
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ e("circle", {
|
|
38
|
+
cx: 15,
|
|
39
|
+
cy: 12,
|
|
40
|
+
r: 1
|
|
41
|
+
}),
|
|
42
|
+
/* @__PURE__ */ e("circle", {
|
|
43
|
+
cx: 15,
|
|
44
|
+
cy: 19,
|
|
45
|
+
r: 1
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
//#endregion
|
|
50
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`circle`,{cx:12,cy:12,r:10}),(0,n.jsx)(`path`,{d:`M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3`}),(0,n.jsx)(`line`,{x1:12,y1:17,x2:12.01,y2:17})]});exports.default=r;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/help-circle.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ e("circle", {
|
|
16
|
+
cx: 12,
|
|
17
|
+
cy: 12,
|
|
18
|
+
r: 10
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ e("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
21
|
+
/* @__PURE__ */ e("line", {
|
|
22
|
+
x1: 12,
|
|
23
|
+
y1: 17,
|
|
24
|
+
x2: 12.01,
|
|
25
|
+
y2: 17
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
});
|
|
29
|
+
//#endregion
|
|
30
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z`}),(0,n.jsx)(`polyline`,{points:`9 22 9 12 15 12 15 22`})]});exports.default=r;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/home.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 24,
|
|
8
|
+
height: 24,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
fill: "none",
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
strokeWidth: 2,
|
|
13
|
+
strokeLinecap: "round",
|
|
14
|
+
strokeLinejoin: "round",
|
|
15
|
+
...n,
|
|
16
|
+
children: [/* @__PURE__ */ e("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }), /* @__PURE__ */ e("polyline", { points: "9 22 9 12 15 12 15 22" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`path`,{d:`M22 12h-6l-2 3h-4l-2-3H2`}),(0,n.jsx)(`path`,{d:`M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z`})]});exports.default=r;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/hourglass.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [/* @__PURE__ */ e("path", { d: "M22 12h-6l-2 3h-4l-2-3H2" }), /* @__PURE__ */ e("path", { d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { n 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);let n=require("react/jsx-runtime");var r=e=>(0,n.jsxs)(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...e,children:[(0,n.jsx)(`rect`,{x:3,y:3,width:18,height:18,rx:2,ry:2}),(0,n.jsx)(`circle`,{cx:8.5,cy:8.5,r:1.5}),(0,n.jsx)(`polyline`,{points:`21 15 16 10 5 21`})]});exports.default=r;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
4
|
+
//#region src/icon/image.svg?react
|
|
5
|
+
var n = (n) => /* @__PURE__ */ t("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeWidth: 2,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
...n,
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ e("rect", {
|
|
16
|
+
x: 3,
|
|
17
|
+
y: 3,
|
|
18
|
+
width: 18,
|
|
19
|
+
height: 18,
|
|
20
|
+
rx: 2,
|
|
21
|
+
ry: 2
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ e("circle", {
|
|
24
|
+
cx: 8.5,
|
|
25
|
+
cy: 8.5,
|
|
26
|
+
r: 1.5
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ e("polyline", { points: "21 15 16 10 5 21" })
|
|
29
|
+
]
|
|
30
|
+
});
|
|
31
|
+
//#endregion
|
|
32
|
+
export { n as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("./alert-circle.cjs"),t=require("./align-justify.cjs"),n=require("./bell.cjs"),r=require("./calendar.cjs"),i=require("./chart.cjs"),a=require("./check-circle.cjs"),o=require("./check.cjs"),s=require("./chevron-down.cjs"),c=require("./chevron-left.cjs"),l=require("./chevron-right.cjs"),u=require("./chevron-up.cjs"),d=require("./circle.cjs"),f=require("./clock.cjs"),p=require("./close-small.cjs"),m=require("./close.cjs"),h=require("./columns.cjs"),g=require("./copy.cjs"),_=require("./credit-card.cjs"),v=require("./document.cjs"),y=require("./download.cjs"),b=require("./edit.cjs"),x=require("./email.cjs"),S=require("./external-link.cjs"),C=require("./eye-off.cjs"),w=require("./eye.cjs"),T=require("./filter.cjs"),E=require("./grip-vertical.cjs"),D=require("./help-circle.cjs"),O=require("./home.cjs"),k=require("./hourglass.cjs"),A=require("./image.cjs"),j=require("./info-circle.cjs"),M=require("./loading.cjs"),N=require("./log-in.cjs"),P=require("./log-out.cjs"),F=require("./maximize.cjs"),I=require("./minimize.cjs"),L=require("./minus.cjs"),R=require("./monitor.cjs"),z=require("./moon.cjs"),B=require("./more-horizontal.cjs"),V=require("./more-vertical.cjs"),H=require("./mute.cjs"),U=require("./paperclip.cjs"),W=require("./pause.cjs"),G=require("./pdf.cjs"),K=require("./phone.cjs"),q=require("./pip.cjs"),J=require("./play.cjs"),Y=require("./plus.cjs"),X=require("./project.cjs"),Z=require("./refresh.cjs"),Q=require("./repeat.cjs"),$=require("./search.cjs"),ee=require("./send.cjs"),te=require("./settings.cjs"),ne=require("./share.cjs"),re=require("./shuffle.cjs"),ie=require("./skip-back.cjs"),ae=require("./skip-forward.cjs"),oe=require("./smartphone.cjs"),se=require("./spinner.cjs"),ce=require("./square.cjs"),le=require("./star.cjs"),ue=require("./sun.cjs"),de=require("./thumb-down.cjs"),fe=require("./thumb-up.cjs"),pe=require("./trash.cjs"),me=require("./upload.cjs"),he=require("./user.cjs"),ge=require("./video.cjs"),_e=require("./volume.cjs");var ve={AlertCircleIcon:e.default,AlignJustifyIcon:t.default,BellIcon:n.default,CalendarIcon:r.default,ChartIcon:i.default,CheckCircleIcon:a.default,CheckIcon:o.default,ChevronDownIcon:s.default,ChevronLeftIcon:c.default,ChevronRightIcon:l.default,ChevronUpIcon:u.default,CircleIcon:d.default,ClockIcon:f.default,CloseSmallIcon:p.default,CloseIcon:m.default,ColumnsIcon:h.default,CopyIcon:g.default,CreditCardIcon:_.default,DocumentIcon:v.default,DownloadIcon:y.default,EditIcon:b.default,EmailIcon:x.default,ExternalLinkIcon:S.default,EyeOffIcon:C.default,EyeIcon:w.default,FilterIcon:T.default,GripVerticalIcon:E.default,HelpCircleIcon:D.default,HomeIcon:O.default,HourglassIcon:k.default,ImageIcon:A.default,InfoCircleIcon:j.default,LoadingIcon:M.default,LogInIcon:N.default,LogOutIcon:P.default,MaximizeIcon:F.default,MinimizeIcon:I.default,MinusIcon:L.default,MonitorIcon:R.default,MoonIcon:z.default,MoreHorizontalIcon:B.default,MoreVerticalIcon:V.default,MuteIcon:H.default,PaperclipIcon:U.default,PauseIcon:W.default,PdfIcon:G.default,PhoneIcon:K.default,PipIcon:q.default,PlayIcon:J.default,PlusIcon:Y.default,ProjectIcon:X.default,RefreshIcon:Z.default,RepeatIcon:Q.default,SearchIcon:$.default,SendIcon:ee.default,SettingsIcon:te.default,ShareIcon:ne.default,ShuffleIcon:re.default,SkipBackIcon:ie.default,SkipForwardIcon:ae.default,SmartphoneIcon:oe.default,SpinnerIcon:se.default,SquareIcon:ce.default,StarIcon:le.default,SunIcon:ue.default,ThumbDownIcon:de.default,ThumbUpIcon:fe.default,TrashIcon:pe.default,UploadIcon:me.default,UserIcon:he.default,VideoIcon:ge.default,VolumeIcon:_e.default};exports.ALL_ICONS=ve,exports.AlertCircleIcon=e.default,exports.AlignJustifyIcon=t.default,exports.BellIcon=n.default,exports.CalendarIcon=r.default,exports.ChartIcon=i.default,exports.CheckCircleIcon=a.default,exports.CheckIcon=o.default,exports.ChevronDownIcon=s.default,exports.ChevronLeftIcon=c.default,exports.ChevronRightIcon=l.default,exports.ChevronUpIcon=u.default,exports.CircleIcon=d.default,exports.ClockIcon=f.default,exports.CloseIcon=m.default,exports.CloseSmallIcon=p.default,exports.ColumnsIcon=h.default,exports.CopyIcon=g.default,exports.CreditCardIcon=_.default,exports.DocumentIcon=v.default,exports.DownloadIcon=y.default,exports.EditIcon=b.default,exports.EmailIcon=x.default,exports.ExternalLinkIcon=S.default,exports.EyeIcon=w.default,exports.EyeOffIcon=C.default,exports.FilterIcon=T.default,exports.GripVerticalIcon=E.default,exports.HelpCircleIcon=D.default,exports.HomeIcon=O.default,exports.HourglassIcon=k.default,exports.ImageIcon=A.default,exports.InfoCircleIcon=j.default,exports.LoadingIcon=M.default,exports.LogInIcon=N.default,exports.LogOutIcon=P.default,exports.MaximizeIcon=F.default,exports.MinimizeIcon=I.default,exports.MinusIcon=L.default,exports.MonitorIcon=R.default,exports.MoonIcon=z.default,exports.MoreHorizontalIcon=B.default,exports.MoreVerticalIcon=V.default,exports.MuteIcon=H.default,exports.PaperclipIcon=U.default,exports.PauseIcon=W.default,exports.PdfIcon=G.default,exports.PhoneIcon=K.default,exports.PipIcon=q.default,exports.PlayIcon=J.default,exports.PlusIcon=Y.default,exports.ProjectIcon=X.default,exports.RefreshIcon=Z.default,exports.RepeatIcon=Q.default,exports.SearchIcon=$.default,exports.SendIcon=ee.default,exports.SettingsIcon=te.default,exports.ShareIcon=ne.default,exports.ShuffleIcon=re.default,exports.SkipBackIcon=ie.default,exports.SkipForwardIcon=ae.default,exports.SmartphoneIcon=oe.default,exports.SpinnerIcon=se.default,exports.SquareIcon=ce.default,exports.StarIcon=le.default,exports.SunIcon=ue.default,exports.ThumbDownIcon=de.default,exports.ThumbUpIcon=fe.default,exports.TrashIcon=pe.default,exports.UploadIcon=me.default,exports.UserIcon=he.default,exports.VideoIcon=ge.default,exports.VolumeIcon=_e.default;
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { default as AlertCircleIcon } from './alert-circle.svg?react';
|
|
2
|
+
import { default as AlignJustifyIcon } from './align-justify.svg?react';
|
|
3
|
+
import { default as BellIcon } from './bell.svg?react';
|
|
4
|
+
import { default as CalendarIcon } from './calendar.svg?react';
|
|
5
|
+
import { default as ChartIcon } from './chart.svg?react';
|
|
6
|
+
import { default as CheckCircleIcon } from './check-circle.svg?react';
|
|
7
|
+
import { default as CheckIcon } from './check.svg?react';
|
|
8
|
+
import { default as ChevronDownIcon } from './chevron-down.svg?react';
|
|
9
|
+
import { default as ChevronLeftIcon } from './chevron-left.svg?react';
|
|
10
|
+
import { default as ChevronRightIcon } from './chevron-right.svg?react';
|
|
11
|
+
import { default as ChevronUpIcon } from './chevron-up.svg?react';
|
|
12
|
+
import { default as CircleIcon } from './circle.svg?react';
|
|
13
|
+
import { default as ClockIcon } from './clock.svg?react';
|
|
14
|
+
import { default as CloseSmallIcon } from './close-small.svg?react';
|
|
15
|
+
import { default as CloseIcon } from './close.svg?react';
|
|
16
|
+
import { default as ColumnsIcon } from './columns.svg?react';
|
|
17
|
+
import { default as CopyIcon } from './copy.svg?react';
|
|
18
|
+
import { default as CreditCardIcon } from './credit-card.svg?react';
|
|
19
|
+
import { default as DocumentIcon } from './document.svg?react';
|
|
20
|
+
import { default as DownloadIcon } from './download.svg?react';
|
|
21
|
+
import { default as EditIcon } from './edit.svg?react';
|
|
22
|
+
import { default as EmailIcon } from './email.svg?react';
|
|
23
|
+
import { default as ExternalLinkIcon } from './external-link.svg?react';
|
|
24
|
+
import { default as EyeOffIcon } from './eye-off.svg?react';
|
|
25
|
+
import { default as EyeIcon } from './eye.svg?react';
|
|
26
|
+
import { default as FilterIcon } from './filter.svg?react';
|
|
27
|
+
import { default as GripVerticalIcon } from './grip-vertical.svg?react';
|
|
28
|
+
import { default as HelpCircleIcon } from './help-circle.svg?react';
|
|
29
|
+
import { default as HomeIcon } from './home.svg?react';
|
|
30
|
+
import { default as HourglassIcon } from './hourglass.svg?react';
|
|
31
|
+
import { default as ImageIcon } from './image.svg?react';
|
|
32
|
+
import { default as InfoCircleIcon } from './info-circle.svg?react';
|
|
33
|
+
import { default as LoadingIcon } from './loading.svg?react';
|
|
34
|
+
import { default as LogInIcon } from './log-in.svg?react';
|
|
35
|
+
import { default as LogOutIcon } from './log-out.svg?react';
|
|
36
|
+
import { default as MaximizeIcon } from './maximize.svg?react';
|
|
37
|
+
import { default as MinimizeIcon } from './minimize.svg?react';
|
|
38
|
+
import { default as MinusIcon } from './minus.svg?react';
|
|
39
|
+
import { default as MonitorIcon } from './monitor.svg?react';
|
|
40
|
+
import { default as MoonIcon } from './moon.svg?react';
|
|
41
|
+
import { default as MoreHorizontalIcon } from './more-horizontal.svg?react';
|
|
42
|
+
import { default as MoreVerticalIcon } from './more-vertical.svg?react';
|
|
43
|
+
import { default as MuteIcon } from './mute.svg?react';
|
|
44
|
+
import { default as PaperclipIcon } from './paperclip.svg?react';
|
|
45
|
+
import { default as PauseIcon } from './pause.svg?react';
|
|
46
|
+
import { default as PdfIcon } from './pdf.svg?react';
|
|
47
|
+
import { default as PhoneIcon } from './phone.svg?react';
|
|
48
|
+
import { default as PipIcon } from './pip.svg?react';
|
|
49
|
+
import { default as PlayIcon } from './play.svg?react';
|
|
50
|
+
import { default as PlusIcon } from './plus.svg?react';
|
|
51
|
+
import { default as ProjectIcon } from './project.svg?react';
|
|
52
|
+
import { default as RefreshIcon } from './refresh.svg?react';
|
|
53
|
+
import { default as RepeatIcon } from './repeat.svg?react';
|
|
54
|
+
import { default as SearchIcon } from './search.svg?react';
|
|
55
|
+
import { default as SendIcon } from './send.svg?react';
|
|
56
|
+
import { default as SettingsIcon } from './settings.svg?react';
|
|
57
|
+
import { default as ShareIcon } from './share.svg?react';
|
|
58
|
+
import { default as ShuffleIcon } from './shuffle.svg?react';
|
|
59
|
+
import { default as SkipBackIcon } from './skip-back.svg?react';
|
|
60
|
+
import { default as SkipForwardIcon } from './skip-forward.svg?react';
|
|
61
|
+
import { default as SmartphoneIcon } from './smartphone.svg?react';
|
|
62
|
+
import { default as SpinnerIcon } from './spinner.svg?react';
|
|
63
|
+
import { default as SquareIcon } from './square.svg?react';
|
|
64
|
+
import { default as StarIcon } from './star.svg?react';
|
|
65
|
+
import { default as SunIcon } from './sun.svg?react';
|
|
66
|
+
import { default as ThumbDownIcon } from './thumb-down.svg?react';
|
|
67
|
+
import { default as ThumbUpIcon } from './thumb-up.svg?react';
|
|
68
|
+
import { default as TrashIcon } from './trash.svg?react';
|
|
69
|
+
import { default as UploadIcon } from './upload.svg?react';
|
|
70
|
+
import { default as UserIcon } from './user.svg?react';
|
|
71
|
+
import { default as VideoIcon } from './video.svg?react';
|
|
72
|
+
import { default as VolumeIcon } from './volume.svg?react';
|
|
73
|
+
export { AlertCircleIcon, AlignJustifyIcon, BellIcon, CalendarIcon, ChartIcon, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleIcon, ClockIcon, CloseSmallIcon, CloseIcon, ColumnsIcon, CopyIcon, CreditCardIcon, DocumentIcon, DownloadIcon, EditIcon, EmailIcon, ExternalLinkIcon, EyeOffIcon, EyeIcon, FilterIcon, GripVerticalIcon, HelpCircleIcon, HomeIcon, HourglassIcon, ImageIcon, InfoCircleIcon, LoadingIcon, LogInIcon, LogOutIcon, MaximizeIcon, MinimizeIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MuteIcon, PaperclipIcon, PauseIcon, PdfIcon, PhoneIcon, PipIcon, PlayIcon, PlusIcon, ProjectIcon, RefreshIcon, RepeatIcon, SearchIcon, SendIcon, SettingsIcon, ShareIcon, ShuffleIcon, SkipBackIcon, SkipForwardIcon, SmartphoneIcon, SpinnerIcon, SquareIcon, StarIcon, SunIcon, ThumbDownIcon, ThumbUpIcon, TrashIcon, UploadIcon, UserIcon, VideoIcon, VolumeIcon, };
|
|
74
|
+
export declare const ALL_ICONS: {
|
|
75
|
+
readonly AlertCircleIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
76
|
+
readonly AlignJustifyIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
77
|
+
readonly BellIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
78
|
+
readonly CalendarIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
79
|
+
readonly ChartIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
80
|
+
readonly CheckCircleIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
81
|
+
readonly CheckIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
82
|
+
readonly ChevronDownIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
83
|
+
readonly ChevronLeftIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
84
|
+
readonly ChevronRightIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
85
|
+
readonly ChevronUpIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
86
|
+
readonly CircleIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
87
|
+
readonly ClockIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
88
|
+
readonly CloseSmallIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
89
|
+
readonly CloseIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
90
|
+
readonly ColumnsIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
91
|
+
readonly CopyIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
92
|
+
readonly CreditCardIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
93
|
+
readonly DocumentIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
94
|
+
readonly DownloadIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
95
|
+
readonly EditIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
96
|
+
readonly EmailIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
97
|
+
readonly ExternalLinkIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
98
|
+
readonly EyeOffIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
99
|
+
readonly EyeIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
100
|
+
readonly FilterIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
101
|
+
readonly GripVerticalIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
102
|
+
readonly HelpCircleIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
103
|
+
readonly HomeIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
104
|
+
readonly HourglassIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
105
|
+
readonly ImageIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
106
|
+
readonly InfoCircleIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
107
|
+
readonly LoadingIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
108
|
+
readonly LogInIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
109
|
+
readonly LogOutIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
110
|
+
readonly MaximizeIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
111
|
+
readonly MinimizeIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
112
|
+
readonly MinusIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
113
|
+
readonly MonitorIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
114
|
+
readonly MoonIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
115
|
+
readonly MoreHorizontalIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
116
|
+
readonly MoreVerticalIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
117
|
+
readonly MuteIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
118
|
+
readonly PaperclipIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
119
|
+
readonly PauseIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
120
|
+
readonly PdfIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
121
|
+
readonly PhoneIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
122
|
+
readonly PipIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
123
|
+
readonly PlayIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
124
|
+
readonly PlusIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
125
|
+
readonly ProjectIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
126
|
+
readonly RefreshIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
127
|
+
readonly RepeatIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
128
|
+
readonly SearchIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
129
|
+
readonly SendIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
130
|
+
readonly SettingsIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
131
|
+
readonly ShareIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
132
|
+
readonly ShuffleIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
133
|
+
readonly SkipBackIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
134
|
+
readonly SkipForwardIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
135
|
+
readonly SmartphoneIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
136
|
+
readonly SpinnerIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
137
|
+
readonly SquareIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
138
|
+
readonly StarIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
139
|
+
readonly SunIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
140
|
+
readonly ThumbDownIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
141
|
+
readonly ThumbUpIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
142
|
+
readonly TrashIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
143
|
+
readonly UploadIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
144
|
+
readonly UserIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
145
|
+
readonly VideoIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
146
|
+
readonly VolumeIcon: import('react').FC<import('react').SVGProps<SVGSVGElement>>;
|
|
147
|
+
};
|
|
148
|
+
export type IconName = keyof typeof ALL_ICONS;
|