@work-rjkashyap/unified-ui 0.3.4 → 0.3.6
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/CHANGELOG.md +105 -0
- package/LICENSE +21 -0
- package/dist/components/accordion.cjs +225 -0
- package/dist/components/accordion.d.cts +157 -0
- package/dist/components/accordion.d.ts +157 -0
- package/dist/components/accordion.mjs +199 -0
- package/dist/components/alert-dialog.cjs +246 -0
- package/dist/components/alert-dialog.d.cts +61 -0
- package/dist/components/alert-dialog.d.ts +61 -0
- package/dist/components/alert-dialog.mjs +218 -0
- package/dist/components/alert.cjs +401 -0
- package/dist/components/alert.d.cts +217 -0
- package/dist/components/alert.d.ts +217 -0
- package/dist/components/alert.mjs +374 -0
- package/dist/components/aspect-ratio.cjs +45 -0
- package/dist/components/aspect-ratio.d.cts +10 -0
- package/dist/components/aspect-ratio.d.ts +10 -0
- package/dist/components/aspect-ratio.mjs +23 -0
- package/dist/components/avatar.cjs +348 -0
- package/dist/components/avatar.d.cts +198 -0
- package/dist/components/avatar.d.ts +198 -0
- package/dist/components/avatar.mjs +329 -0
- package/dist/components/badge.cjs +325 -0
- package/dist/components/badge.d.cts +259 -0
- package/dist/components/badge.d.ts +259 -0
- package/dist/components/badge.mjs +298 -0
- package/dist/components/banner.cjs +147 -0
- package/dist/components/banner.d.cts +31 -0
- package/dist/components/banner.d.ts +31 -0
- package/dist/components/banner.mjs +122 -0
- package/dist/components/breadcrumb.cjs +266 -0
- package/dist/components/breadcrumb.d.cts +159 -0
- package/dist/components/breadcrumb.d.ts +159 -0
- package/dist/components/breadcrumb.mjs +235 -0
- package/dist/components/button.cjs +254 -0
- package/dist/components/button.d.cts +126 -0
- package/dist/components/button.d.ts +126 -0
- package/dist/components/button.mjs +229 -0
- package/dist/components/calendar.cjs +511 -0
- package/dist/components/calendar.d.cts +94 -0
- package/dist/components/calendar.d.ts +94 -0
- package/dist/components/calendar.mjs +492 -0
- package/dist/components/card.cjs +234 -0
- package/dist/components/card.d.cts +190 -0
- package/dist/components/card.d.ts +190 -0
- package/dist/components/card.mjs +210 -0
- package/dist/components/carousel.cjs +234 -0
- package/dist/components/carousel.d.cts +30 -0
- package/dist/components/carousel.d.ts +30 -0
- package/dist/components/carousel.mjs +217 -0
- package/dist/components/chart.cjs +122 -0
- package/dist/components/chart.d.cts +103 -0
- package/dist/components/chart.d.ts +103 -0
- package/dist/components/chart.mjs +96 -0
- package/dist/components/checkbox.cjs +318 -0
- package/dist/components/checkbox.d.cts +182 -0
- package/dist/components/checkbox.d.ts +182 -0
- package/dist/components/checkbox.mjs +296 -0
- package/dist/components/code-highlight.cjs +335 -0
- package/dist/components/code-highlight.d.cts +18 -0
- package/dist/components/code-highlight.d.ts +18 -0
- package/dist/components/code-highlight.mjs +308 -0
- package/dist/components/code.cjs +265 -0
- package/dist/components/code.d.cts +40 -0
- package/dist/components/code.d.ts +40 -0
- package/dist/components/code.mjs +243 -0
- package/dist/components/collapsible.cjs +143 -0
- package/dist/components/collapsible.d.cts +159 -0
- package/dist/components/collapsible.d.ts +159 -0
- package/dist/components/collapsible.mjs +123 -0
- package/dist/components/color-picker.cjs +348 -0
- package/dist/components/color-picker.d.cts +35 -0
- package/dist/components/color-picker.d.ts +35 -0
- package/dist/components/color-picker.mjs +331 -0
- package/dist/components/combobox.cjs +584 -0
- package/dist/components/combobox.d.cts +183 -0
- package/dist/components/combobox.d.ts +183 -0
- package/dist/components/combobox.mjs +571 -0
- package/dist/components/command.cjs +329 -0
- package/dist/components/command.d.cts +97 -0
- package/dist/components/command.d.ts +97 -0
- package/dist/components/command.mjs +311 -0
- package/dist/components/confirm-dialog.cjs +100 -0
- package/dist/components/confirm-dialog.d.cts +25 -0
- package/dist/components/confirm-dialog.d.ts +25 -0
- package/dist/components/confirm-dialog.mjs +86 -0
- package/dist/components/context-menu.cjs +325 -0
- package/dist/components/context-menu.d.cts +259 -0
- package/dist/components/context-menu.d.ts +259 -0
- package/dist/components/context-menu.mjs +290 -0
- package/dist/components/copy-button.cjs +203 -0
- package/dist/components/copy-button.d.cts +22 -0
- package/dist/components/copy-button.d.ts +22 -0
- package/dist/components/copy-button.mjs +178 -0
- package/dist/components/data-list.cjs +140 -0
- package/dist/components/data-list.d.cts +36 -0
- package/dist/components/data-list.d.ts +36 -0
- package/dist/components/data-list.mjs +113 -0
- package/dist/components/data-table-toolbar.cjs +338 -0
- package/dist/components/data-table-toolbar.d.cts +84 -0
- package/dist/components/data-table-toolbar.d.ts +84 -0
- package/dist/components/data-table-toolbar.mjs +320 -0
- package/dist/components/data-table.cjs +1324 -0
- package/dist/components/data-table.d.cts +349 -0
- package/dist/components/data-table.d.ts +349 -0
- package/dist/components/data-table.mjs +1323 -0
- package/dist/components/date-picker.cjs +282 -0
- package/dist/components/date-picker.d.cts +97 -0
- package/dist/components/date-picker.d.ts +97 -0
- package/dist/components/date-picker.mjs +258 -0
- package/dist/components/dialog.cjs +319 -0
- package/dist/components/dialog.d.cts +74 -0
- package/dist/components/dialog.d.ts +74 -0
- package/dist/components/dialog.mjs +292 -0
- package/dist/components/drawer.cjs +262 -0
- package/dist/components/drawer.d.cts +113 -0
- package/dist/components/drawer.d.ts +113 -0
- package/dist/components/drawer.mjs +230 -0
- package/dist/components/dropdown-menu.cjs +328 -0
- package/dist/components/dropdown-menu.d.cts +95 -0
- package/dist/components/dropdown-menu.d.ts +95 -0
- package/dist/components/dropdown-menu.mjs +293 -0
- package/dist/components/empty-state.cjs +123 -0
- package/dist/components/empty-state.d.cts +15 -0
- package/dist/components/empty-state.d.ts +15 -0
- package/dist/components/empty-state.mjs +99 -0
- package/dist/components/file-upload.cjs +442 -0
- package/dist/components/file-upload.d.cts +35 -0
- package/dist/components/file-upload.d.ts +35 -0
- package/dist/components/file-upload.mjs +423 -0
- package/dist/components/form-field.cjs +191 -0
- package/dist/components/form-field.d.cts +163 -0
- package/dist/components/form-field.d.ts +163 -0
- package/dist/components/form-field.mjs +167 -0
- package/dist/components/hover-card.cjs +99 -0
- package/dist/components/hover-card.d.cts +28 -0
- package/dist/components/hover-card.d.ts +28 -0
- package/dist/components/hover-card.mjs +75 -0
- package/dist/components/image-gallery.cjs +359 -0
- package/dist/components/image-gallery.d.cts +46 -0
- package/dist/components/image-gallery.d.ts +46 -0
- package/dist/components/image-gallery.mjs +340 -0
- package/dist/components/index.cjs +719 -0
- package/dist/components/index.d.cts +84 -0
- package/dist/components/index.d.ts +84 -0
- package/dist/components/index.mjs +771 -0
- package/dist/components/infinite-scroll.cjs +95 -0
- package/dist/components/infinite-scroll.d.cts +54 -0
- package/dist/components/infinite-scroll.d.ts +54 -0
- package/dist/components/infinite-scroll.mjs +71 -0
- package/dist/components/input-group.cjs +202 -0
- package/dist/components/input-group.d.cts +22 -0
- package/dist/components/input-group.d.ts +22 -0
- package/dist/components/input-group.mjs +178 -0
- package/dist/components/input.cjs +318 -0
- package/dist/components/input.d.cts +99 -0
- package/dist/components/input.d.ts +99 -0
- package/dist/components/input.mjs +296 -0
- package/dist/components/kbd.cjs +69 -0
- package/dist/components/kbd.d.cts +25 -0
- package/dist/components/kbd.d.ts +25 -0
- package/dist/components/kbd.mjs +44 -0
- package/dist/components/label.cjs +138 -0
- package/dist/components/label.d.cts +91 -0
- package/dist/components/label.d.ts +91 -0
- package/dist/components/label.mjs +113 -0
- package/dist/components/markdown.cjs +179 -0
- package/dist/components/markdown.d.cts +41 -0
- package/dist/components/markdown.d.ts +41 -0
- package/dist/components/markdown.mjs +155 -0
- package/dist/components/menubar.cjs +365 -0
- package/dist/components/menubar.d.cts +88 -0
- package/dist/components/menubar.d.ts +88 -0
- package/dist/components/menubar.mjs +329 -0
- package/dist/components/navigation-menu.cjs +280 -0
- package/dist/components/navigation-menu.d.cts +123 -0
- package/dist/components/navigation-menu.d.ts +123 -0
- package/dist/components/navigation-menu.mjs +250 -0
- package/dist/components/number-input.cjs +419 -0
- package/dist/components/number-input.d.cts +111 -0
- package/dist/components/number-input.d.ts +111 -0
- package/dist/components/number-input.mjs +400 -0
- package/dist/components/pagination.cjs +322 -0
- package/dist/components/pagination.d.cts +119 -0
- package/dist/components/pagination.d.ts +119 -0
- package/dist/components/pagination.mjs +297 -0
- package/dist/components/pin-input.cjs +321 -0
- package/dist/components/pin-input.d.cts +112 -0
- package/dist/components/pin-input.d.ts +112 -0
- package/dist/components/pin-input.mjs +303 -0
- package/dist/components/popover.cjs +194 -0
- package/dist/components/popover.d.cts +108 -0
- package/dist/components/popover.d.ts +108 -0
- package/dist/components/popover.mjs +168 -0
- package/dist/components/progress.cjs +237 -0
- package/dist/components/progress.d.cts +137 -0
- package/dist/components/progress.d.ts +137 -0
- package/dist/components/progress.mjs +211 -0
- package/dist/components/radio.cjs +344 -0
- package/dist/components/radio.d.cts +145 -0
- package/dist/components/radio.d.ts +145 -0
- package/dist/components/radio.mjs +320 -0
- package/dist/components/resizable.cjs +121 -0
- package/dist/components/resizable.d.cts +23 -0
- package/dist/components/resizable.d.ts +23 -0
- package/dist/components/resizable.mjs +99 -0
- package/dist/components/scroll-area.cjs +168 -0
- package/dist/components/scroll-area.d.cts +131 -0
- package/dist/components/scroll-area.d.ts +131 -0
- package/dist/components/scroll-area.mjs +143 -0
- package/dist/components/search-input.cjs +261 -0
- package/dist/components/search-input.d.cts +26 -0
- package/dist/components/search-input.d.ts +26 -0
- package/dist/components/search-input.mjs +243 -0
- package/dist/components/select.cjs +320 -0
- package/dist/components/select.d.cts +55 -0
- package/dist/components/select.d.ts +55 -0
- package/dist/components/select.mjs +288 -0
- package/dist/components/separator.cjs +193 -0
- package/dist/components/separator.d.cts +92 -0
- package/dist/components/separator.d.ts +92 -0
- package/dist/components/separator.mjs +170 -0
- package/dist/components/sheet.cjs +399 -0
- package/dist/components/sheet.d.cts +219 -0
- package/dist/components/sheet.d.ts +219 -0
- package/dist/components/sheet.mjs +379 -0
- package/dist/components/sidebar.cjs +1077 -0
- package/dist/components/sidebar.d.cts +733 -0
- package/dist/components/sidebar.d.ts +733 -0
- package/dist/components/sidebar.mjs +1033 -0
- package/dist/components/skeleton.cjs +210 -0
- package/dist/components/skeleton.d.cts +202 -0
- package/dist/components/skeleton.d.ts +202 -0
- package/dist/components/skeleton.mjs +182 -0
- package/dist/components/slider.cjs +319 -0
- package/dist/components/slider.d.cts +82 -0
- package/dist/components/slider.d.ts +82 -0
- package/dist/components/slider.mjs +296 -0
- package/dist/components/sonner.cjs +119 -0
- package/dist/components/sonner.d.cts +60 -0
- package/dist/components/sonner.d.ts +60 -0
- package/dist/components/sonner.mjs +94 -0
- package/dist/components/spinner.cjs +238 -0
- package/dist/components/spinner.d.cts +101 -0
- package/dist/components/spinner.d.ts +101 -0
- package/dist/components/spinner.mjs +213 -0
- package/dist/components/stat.cjs +180 -0
- package/dist/components/stat.d.cts +21 -0
- package/dist/components/stat.d.ts +21 -0
- package/dist/components/stat.mjs +161 -0
- package/dist/components/steps.cjs +228 -0
- package/dist/components/steps.d.cts +76 -0
- package/dist/components/steps.d.ts +76 -0
- package/dist/components/steps.mjs +207 -0
- package/dist/components/switch.cjs +243 -0
- package/dist/components/switch.d.cts +90 -0
- package/dist/components/switch.d.ts +90 -0
- package/dist/components/switch.mjs +228 -0
- package/dist/components/table.cjs +381 -0
- package/dist/components/table.d.cts +181 -0
- package/dist/components/table.d.ts +181 -0
- package/dist/components/table.mjs +349 -0
- package/dist/components/tabs.cjs +326 -0
- package/dist/components/tabs.d.cts +154 -0
- package/dist/components/tabs.d.ts +154 -0
- package/dist/components/tabs.mjs +304 -0
- package/dist/components/textarea.cjs +258 -0
- package/dist/components/textarea.d.cts +112 -0
- package/dist/components/textarea.d.ts +112 -0
- package/dist/components/textarea.mjs +233 -0
- package/dist/components/theme-toggle.cjs +282 -0
- package/dist/components/theme-toggle.d.cts +58 -0
- package/dist/components/theme-toggle.d.ts +58 -0
- package/dist/components/theme-toggle.mjs +258 -0
- package/dist/components/timeline.cjs +178 -0
- package/dist/components/timeline.d.cts +41 -0
- package/dist/components/timeline.d.ts +41 -0
- package/dist/components/timeline.mjs +157 -0
- package/dist/components/toast.cjs +546 -0
- package/dist/components/toast.d.cts +169 -0
- package/dist/components/toast.d.ts +169 -0
- package/dist/components/toast.mjs +528 -0
- package/dist/components/toggle-group.cjs +204 -0
- package/dist/components/toggle-group.d.cts +215 -0
- package/dist/components/toggle-group.d.ts +215 -0
- package/dist/components/toggle-group.mjs +180 -0
- package/dist/components/toggle.cjs +155 -0
- package/dist/components/toggle.d.cts +100 -0
- package/dist/components/toggle.d.ts +100 -0
- package/dist/components/toggle.mjs +130 -0
- package/dist/components/tooltip.cjs +155 -0
- package/dist/components/tooltip.d.cts +129 -0
- package/dist/components/tooltip.d.ts +129 -0
- package/dist/components/tooltip.mjs +132 -0
- package/dist/components/tree-view.cjs +450 -0
- package/dist/components/tree-view.d.cts +67 -0
- package/dist/components/tree-view.d.ts +67 -0
- package/dist/components/tree-view.mjs +433 -0
- package/dist/components/video-player.cjs +344 -0
- package/dist/components/video-player.d.cts +34 -0
- package/dist/components/video-player.d.ts +34 -0
- package/dist/components/video-player.mjs +320 -0
- package/dist/components/virtual-list.cjs +153 -0
- package/dist/components/virtual-list.d.cts +53 -0
- package/dist/components/virtual-list.d.ts +53 -0
- package/dist/components/virtual-list.mjs +136 -0
- package/dist/components/visually-hidden.cjs +43 -0
- package/dist/components/visually-hidden.d.cts +9 -0
- package/dist/components/visually-hidden.d.ts +9 -0
- package/dist/components/visually-hidden.mjs +21 -0
- package/dist/index.cjs +1081 -1957
- package/dist/index.d.cts +99 -11
- package/dist/index.d.ts +99 -11
- package/dist/index.mjs +1138 -16
- package/dist/motion/hooks.cjs +98 -0
- package/dist/motion/hooks.d.cts +32 -0
- package/dist/motion/hooks.d.ts +32 -0
- package/dist/motion/hooks.mjs +70 -0
- package/dist/motion/index.cjs +157 -0
- package/dist/motion/index.d.cts +5 -0
- package/dist/motion/index.d.ts +5 -0
- package/dist/motion/index.mjs +137 -0
- package/dist/motion/presets.cjs +609 -0
- package/dist/{motion.d.ts → motion/presets.d.cts} +1 -30
- package/dist/{motion.d.cts → motion/presets.d.ts} +1 -30
- package/dist/{chunk-PLRSH37T.mjs → motion/presets.mjs} +119 -126
- package/dist/primitives/container.cjs +88 -0
- package/dist/primitives/container.d.cts +82 -0
- package/dist/primitives/container.d.ts +82 -0
- package/dist/primitives/container.mjs +64 -0
- package/dist/primitives/divider.cjs +74 -0
- package/dist/primitives/divider.d.cts +30 -0
- package/dist/primitives/divider.d.ts +30 -0
- package/dist/primitives/divider.mjs +50 -0
- package/dist/primitives/index.cjs +54 -0
- package/dist/primitives/index.d.cts +6 -0
- package/dist/primitives/index.d.ts +6 -0
- package/dist/primitives/index.mjs +33 -0
- package/dist/primitives/stack.cjs +167 -0
- package/dist/primitives/stack.d.cts +132 -0
- package/dist/primitives/stack.d.ts +132 -0
- package/dist/primitives/stack.mjs +142 -0
- package/dist/primitives/typography.cjs +260 -0
- package/dist/primitives/typography.d.cts +157 -0
- package/dist/primitives/typography.d.ts +157 -0
- package/dist/primitives/typography.mjs +229 -0
- package/dist/theme/contract.cjs +246 -0
- package/dist/theme/contract.d.cts +76 -0
- package/dist/theme/contract.d.ts +76 -0
- package/dist/theme/contract.mjs +221 -0
- package/dist/theme/customizer-store.cjs +266 -0
- package/dist/theme/customizer-store.d.cts +76 -0
- package/dist/theme/customizer-store.d.ts +76 -0
- package/dist/theme/customizer-store.mjs +261 -0
- package/dist/theme/customizer.cjs +812 -0
- package/dist/theme/customizer.d.cts +13 -0
- package/dist/theme/customizer.d.ts +13 -0
- package/dist/theme/customizer.mjs +803 -0
- package/dist/theme/index.cjs +105 -0
- package/dist/theme/index.d.cts +13 -0
- package/dist/theme/index.d.ts +13 -0
- package/dist/theme/index.mjs +87 -0
- package/dist/theme/presets.cjs +1205 -0
- package/dist/theme/presets.d.cts +232 -0
- package/dist/theme/presets.d.ts +232 -0
- package/dist/theme/presets.mjs +1175 -0
- package/dist/theme/provider.cjs +122 -0
- package/dist/theme/provider.d.cts +57 -0
- package/dist/theme/provider.d.ts +57 -0
- package/dist/theme/provider.mjs +104 -0
- package/dist/{chunk-AAEWG5VR.mjs → tokens/colors.cjs} +94 -94
- package/dist/{z-index-DmLl6FUD.d.ts → tokens/colors.d.cts} +118 -72
- package/dist/{z-index-DmLl6FUD.d.cts → tokens/colors.d.ts} +118 -72
- package/dist/{chunk-6ZZZBOCH.cjs → tokens/colors.mjs} +47 -121
- package/dist/tokens/index.cjs +96 -0
- package/dist/tokens/index.d.cts +7 -0
- package/dist/tokens/index.d.ts +7 -0
- package/dist/tokens/index.mjs +71 -0
- package/dist/{chunk-XCKK6P46.cjs → tokens/motion.cjs} +46 -18
- package/dist/{motion-D9wQbcKL.d.cts → tokens/motion.d.cts} +1 -1
- package/dist/{motion-D9wQbcKL.d.ts → tokens/motion.d.ts} +1 -1
- package/dist/{chunk-EZ2L3XPS.mjs → tokens/motion.mjs} +16 -10
- package/dist/tokens/radius.cjs +41 -0
- package/dist/tokens/radius.d.cts +18 -0
- package/dist/tokens/radius.d.ts +18 -0
- package/dist/tokens/radius.mjs +17 -0
- package/dist/tokens/shadows.cjs +57 -0
- package/dist/tokens/shadows.d.cts +32 -0
- package/dist/tokens/shadows.d.ts +32 -0
- package/dist/tokens/shadows.mjs +32 -0
- package/dist/tokens/spacing.cjs +51 -0
- package/dist/tokens/spacing.d.cts +26 -0
- package/dist/tokens/spacing.d.ts +26 -0
- package/dist/{chunk-NMPHV6ZD.mjs → tokens/spacing.mjs} +4 -4
- package/dist/{chunk-ECIGDEAH.cjs → tokens/typography.cjs} +43 -16
- package/dist/{typography-DlvVjEdE.d.ts → tokens/typography.d.cts} +1 -1
- package/dist/{typography-DlvVjEdE.d.cts → tokens/typography.d.ts} +1 -1
- package/dist/{chunk-ITBG42M5.mjs → tokens/typography.mjs} +14 -9
- package/dist/tokens/z-index.cjs +47 -0
- package/dist/tokens/z-index.d.cts +24 -0
- package/dist/tokens/z-index.d.ts +24 -0
- package/dist/tokens/z-index.mjs +23 -0
- package/dist/utils/cn.cjs +102 -0
- package/dist/utils/cn.d.cts +84 -0
- package/dist/utils/cn.d.ts +84 -0
- package/dist/{chunk-ZT3PCXDF.mjs → utils/cn.mjs} +14 -7
- package/dist/{chunk-33QEKXRQ.cjs → utils/contrast.cjs} +68 -38
- package/dist/utils/contrast.d.cts +209 -0
- package/dist/utils/contrast.d.ts +209 -0
- package/dist/{chunk-5NZDQWRV.mjs → utils/contrast.mjs} +27 -18
- package/dist/utils/focus-ring.cjs +81 -0
- package/dist/utils/focus-ring.d.cts +80 -0
- package/dist/utils/focus-ring.d.ts +80 -0
- package/dist/utils/focus-ring.mjs +47 -0
- package/dist/utils/index.cjs +107 -0
- package/dist/utils/index.d.cts +6 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.mjs +88 -0
- package/dist/utils/types.cjs +38 -0
- package/dist/utils/types.d.cts +187 -0
- package/dist/utils/types.d.ts +187 -0
- package/dist/utils/types.mjs +13 -0
- package/package.json +191 -191
- package/dist/chunk-2JFREULQ.cjs +0 -29
- package/dist/chunk-3EHT6IOA.cjs +0 -49
- package/dist/chunk-4ON3M3OM.cjs +0 -73
- package/dist/chunk-A2DGHQL2.cjs +0 -21808
- package/dist/chunk-BJ55D5IK.mjs +0 -2433
- package/dist/chunk-F4JJFWWU.cjs +0 -604
- package/dist/chunk-FUWXGHWQ.cjs +0 -468
- package/dist/chunk-MBYCK2JJ.mjs +0 -37
- package/dist/chunk-OHEH57BV.mjs +0 -455
- package/dist/chunk-RUG3BW2B.cjs +0 -2471
- package/dist/chunk-XAIUX2YS.mjs +0 -21477
- package/dist/components.cjs +0 -1247
- package/dist/components.d.cts +0 -7881
- package/dist/components.d.ts +0 -7881
- package/dist/components.mjs +0 -6
- package/dist/motion.cjs +0 -264
- package/dist/motion.mjs +0 -3
- package/dist/primitives.cjs +0 -57
- package/dist/primitives.d.cts +0 -390
- package/dist/primitives.d.ts +0 -390
- package/dist/primitives.mjs +0 -4
- package/dist/theme.cjs +0 -159
- package/dist/theme.d.cts +0 -440
- package/dist/theme.d.ts +0 -440
- package/dist/theme.mjs +0 -6
- package/dist/tokens.cjs +0 -137
- package/dist/tokens.d.cts +0 -30
- package/dist/tokens.d.ts +0 -30
- package/dist/tokens.mjs +0 -4
- package/dist/utils.cjs +0 -164
- package/dist/utils.d.cts +0 -525
- package/dist/utils.d.ts +0 -525
- package/dist/utils.mjs +0 -3
|
@@ -0,0 +1,719 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
var components_exports = {};
|
|
21
|
+
__export(components_exports, {
|
|
22
|
+
Accordion: () => import_accordion.Accordion,
|
|
23
|
+
AccordionContent: () => import_accordion.AccordionContent,
|
|
24
|
+
AccordionItem: () => import_accordion.AccordionItem,
|
|
25
|
+
AccordionTrigger: () => import_accordion.AccordionTrigger,
|
|
26
|
+
Alert: () => import_alert.Alert,
|
|
27
|
+
AlertDialog: () => import_alert_dialog.AlertDialog,
|
|
28
|
+
AlertDialogAction: () => import_alert_dialog.AlertDialogAction,
|
|
29
|
+
AlertDialogCancel: () => import_alert_dialog.AlertDialogCancel,
|
|
30
|
+
AlertDialogContent: () => import_alert_dialog.AlertDialogContent,
|
|
31
|
+
AlertDialogDescription: () => import_alert_dialog.AlertDialogDescription,
|
|
32
|
+
AlertDialogFooter: () => import_alert_dialog.AlertDialogFooter,
|
|
33
|
+
AlertDialogHeader: () => import_alert_dialog.AlertDialogHeader,
|
|
34
|
+
AlertDialogOverlay: () => import_alert_dialog.AlertDialogOverlay,
|
|
35
|
+
AlertDialogPortal: () => import_alert_dialog.AlertDialogPortal,
|
|
36
|
+
AlertDialogTitle: () => import_alert_dialog.AlertDialogTitle,
|
|
37
|
+
AlertDialogTrigger: () => import_alert_dialog.AlertDialogTrigger,
|
|
38
|
+
AspectRatio: () => import_aspect_ratio.AspectRatio,
|
|
39
|
+
Avatar: () => import_avatar.Avatar,
|
|
40
|
+
AvatarGroup: () => import_avatar.AvatarGroup,
|
|
41
|
+
Badge: () => import_badge.Badge,
|
|
42
|
+
Banner: () => import_banner.Banner,
|
|
43
|
+
Breadcrumb: () => import_breadcrumb.Breadcrumb,
|
|
44
|
+
BreadcrumbEllipsis: () => import_breadcrumb.BreadcrumbEllipsis,
|
|
45
|
+
BreadcrumbItem: () => import_breadcrumb.BreadcrumbItem,
|
|
46
|
+
BreadcrumbLink: () => import_breadcrumb.BreadcrumbLink,
|
|
47
|
+
BreadcrumbList: () => import_breadcrumb.BreadcrumbList,
|
|
48
|
+
BreadcrumbNav: () => import_breadcrumb.BreadcrumbNav,
|
|
49
|
+
BreadcrumbPage: () => import_breadcrumb.BreadcrumbPage,
|
|
50
|
+
BreadcrumbSeparator: () => import_breadcrumb.BreadcrumbSeparator,
|
|
51
|
+
Button: () => import_button.Button,
|
|
52
|
+
Calendar: () => import_calendar.Calendar,
|
|
53
|
+
Callout: () => import_alert.Callout,
|
|
54
|
+
Card: () => import_card.Card,
|
|
55
|
+
CardBody: () => import_card.CardBody,
|
|
56
|
+
CardFooter: () => import_card.CardFooter,
|
|
57
|
+
CardHeader: () => import_card.CardHeader,
|
|
58
|
+
Carousel: () => import_carousel.Carousel,
|
|
59
|
+
ChartContainer: () => import_chart.ChartContainer,
|
|
60
|
+
ChartTooltipContent: () => import_chart.ChartTooltipContent,
|
|
61
|
+
Checkbox: () => import_checkbox.Checkbox,
|
|
62
|
+
CheckboxGroup: () => import_checkbox.CheckboxGroup,
|
|
63
|
+
CodeBlock: () => import_code.CodeBlock,
|
|
64
|
+
CodeInline: () => import_code.InlineCode,
|
|
65
|
+
Collapsible: () => import_collapsible.Collapsible,
|
|
66
|
+
CollapsibleContent: () => import_collapsible.CollapsibleContent,
|
|
67
|
+
CollapsibleTrigger: () => import_collapsible.CollapsibleTrigger,
|
|
68
|
+
ColorPicker: () => import_color_picker.ColorPicker,
|
|
69
|
+
Combobox: () => import_combobox.Combobox,
|
|
70
|
+
Command: () => import_command.Command,
|
|
71
|
+
CommandTrigger: () => import_command.CommandTrigger,
|
|
72
|
+
ConfirmDialog: () => import_confirm_dialog.ConfirmDialog,
|
|
73
|
+
ContextMenu: () => import_context_menu.ContextMenu,
|
|
74
|
+
ContextMenuCheckboxItem: () => import_context_menu.ContextMenuCheckboxItem,
|
|
75
|
+
ContextMenuContent: () => import_context_menu.ContextMenuContent,
|
|
76
|
+
ContextMenuGroup: () => import_context_menu.ContextMenuGroup,
|
|
77
|
+
ContextMenuItem: () => import_context_menu.ContextMenuItem,
|
|
78
|
+
ContextMenuLabel: () => import_context_menu.ContextMenuLabel,
|
|
79
|
+
ContextMenuRadioGroup: () => import_context_menu.ContextMenuRadioGroup,
|
|
80
|
+
ContextMenuRadioItem: () => import_context_menu.ContextMenuRadioItem,
|
|
81
|
+
ContextMenuSeparator: () => import_context_menu.ContextMenuSeparator,
|
|
82
|
+
ContextMenuShortcut: () => import_context_menu.ContextMenuShortcut,
|
|
83
|
+
ContextMenuSub: () => import_context_menu.ContextMenuSub,
|
|
84
|
+
ContextMenuSubContent: () => import_context_menu.ContextMenuSubContent,
|
|
85
|
+
ContextMenuSubTrigger: () => import_context_menu.ContextMenuSubTrigger,
|
|
86
|
+
ContextMenuTrigger: () => import_context_menu.ContextMenuTrigger,
|
|
87
|
+
CopyButton: () => import_copy_button.CopyButton,
|
|
88
|
+
DataList: () => import_data_list.DataList,
|
|
89
|
+
DataListDetail: () => import_data_list.DataListDetail,
|
|
90
|
+
DataListTerm: () => import_data_list.DataListTerm,
|
|
91
|
+
DataTable: () => import_data_table.DataTable,
|
|
92
|
+
DataTableToolbar: () => import_data_table_toolbar.DataTableToolbar,
|
|
93
|
+
DatePicker: () => import_date_picker.DatePicker,
|
|
94
|
+
Dialog: () => import_dialog.Dialog,
|
|
95
|
+
DialogBody: () => import_dialog.DialogBody,
|
|
96
|
+
DialogClose: () => import_dialog.DialogClose,
|
|
97
|
+
DialogContent: () => import_dialog.DialogContent,
|
|
98
|
+
DialogDescription: () => import_dialog.DialogDescription,
|
|
99
|
+
DialogFooter: () => import_dialog.DialogFooter,
|
|
100
|
+
DialogHeader: () => import_dialog.DialogHeader,
|
|
101
|
+
DialogTitle: () => import_dialog.DialogTitle,
|
|
102
|
+
DialogTrigger: () => import_dialog.DialogTrigger,
|
|
103
|
+
Drawer: () => import_drawer.Drawer,
|
|
104
|
+
DrawerBody: () => import_drawer.DrawerBody,
|
|
105
|
+
DrawerClose: () => import_drawer.DrawerClose,
|
|
106
|
+
DrawerContent: () => import_drawer.DrawerContent,
|
|
107
|
+
DrawerDescription: () => import_drawer.DrawerDescription,
|
|
108
|
+
DrawerFooter: () => import_drawer.DrawerFooter,
|
|
109
|
+
DrawerHandle: () => import_drawer.DrawerHandle,
|
|
110
|
+
DrawerHeader: () => import_drawer.DrawerHeader,
|
|
111
|
+
DrawerTitle: () => import_drawer.DrawerTitle,
|
|
112
|
+
DrawerTrigger: () => import_drawer.DrawerTrigger,
|
|
113
|
+
DropdownMenu: () => import_dropdown_menu.DropdownMenu,
|
|
114
|
+
DropdownMenuCheckboxItem: () => import_dropdown_menu.DropdownMenuCheckboxItem,
|
|
115
|
+
DropdownMenuContent: () => import_dropdown_menu.DropdownMenuContent,
|
|
116
|
+
DropdownMenuGroup: () => import_dropdown_menu.DropdownMenuGroup,
|
|
117
|
+
DropdownMenuItem: () => import_dropdown_menu.DropdownMenuItem,
|
|
118
|
+
DropdownMenuLabel: () => import_dropdown_menu.DropdownMenuLabel,
|
|
119
|
+
DropdownMenuRadioGroup: () => import_dropdown_menu.DropdownMenuRadioGroup,
|
|
120
|
+
DropdownMenuRadioItem: () => import_dropdown_menu.DropdownMenuRadioItem,
|
|
121
|
+
DropdownMenuSeparator: () => import_dropdown_menu.DropdownMenuSeparator,
|
|
122
|
+
DropdownMenuShortcut: () => import_dropdown_menu.DropdownMenuShortcut,
|
|
123
|
+
DropdownMenuSub: () => import_dropdown_menu.DropdownMenuSub,
|
|
124
|
+
DropdownMenuSubContent: () => import_dropdown_menu.DropdownMenuSubContent,
|
|
125
|
+
DropdownMenuSubTrigger: () => import_dropdown_menu.DropdownMenuSubTrigger,
|
|
126
|
+
DropdownMenuTrigger: () => import_dropdown_menu.DropdownMenuTrigger,
|
|
127
|
+
EmptyState: () => import_empty_state.EmptyState,
|
|
128
|
+
FileUpload: () => import_file_upload.FileUpload,
|
|
129
|
+
FormField: () => import_form_field.FormField,
|
|
130
|
+
HoverCard: () => import_hover_card.HoverCard,
|
|
131
|
+
HoverCardContent: () => import_hover_card.HoverCardContent,
|
|
132
|
+
HoverCardTrigger: () => import_hover_card.HoverCardTrigger,
|
|
133
|
+
ImageGallery: () => import_image_gallery.ImageGallery,
|
|
134
|
+
InfiniteScroll: () => import_infinite_scroll.InfiniteScroll,
|
|
135
|
+
Input: () => import_input.Input,
|
|
136
|
+
InputGroup: () => import_input_group.InputGroup,
|
|
137
|
+
Kbd: () => import_kbd.Kbd,
|
|
138
|
+
Label: () => import_label.Label,
|
|
139
|
+
Markdown: () => import_markdown.Markdown,
|
|
140
|
+
Menubar: () => import_menubar.Menubar,
|
|
141
|
+
MenubarCheckboxItem: () => import_menubar.MenubarCheckboxItem,
|
|
142
|
+
MenubarContent: () => import_menubar.MenubarContent,
|
|
143
|
+
MenubarGroup: () => import_menubar.MenubarGroup,
|
|
144
|
+
MenubarItem: () => import_menubar.MenubarItem,
|
|
145
|
+
MenubarLabel: () => import_menubar.MenubarLabel,
|
|
146
|
+
MenubarMenu: () => import_menubar.MenubarMenu,
|
|
147
|
+
MenubarRadioGroup: () => import_menubar.MenubarRadioGroup,
|
|
148
|
+
MenubarRadioItem: () => import_menubar.MenubarRadioItem,
|
|
149
|
+
MenubarSeparator: () => import_menubar.MenubarSeparator,
|
|
150
|
+
MenubarShortcut: () => import_menubar.MenubarShortcut,
|
|
151
|
+
MenubarSub: () => import_menubar.MenubarSub,
|
|
152
|
+
MenubarSubContent: () => import_menubar.MenubarSubContent,
|
|
153
|
+
MenubarSubTrigger: () => import_menubar.MenubarSubTrigger,
|
|
154
|
+
MenubarTrigger: () => import_menubar.MenubarTrigger,
|
|
155
|
+
NavigationMenu: () => import_navigation_menu.NavigationMenu,
|
|
156
|
+
NavigationMenuCardLink: () => import_navigation_menu.NavigationMenuCardLink,
|
|
157
|
+
NavigationMenuContent: () => import_navigation_menu.NavigationMenuContent,
|
|
158
|
+
NavigationMenuIndicator: () => import_navigation_menu.NavigationMenuIndicator,
|
|
159
|
+
NavigationMenuItem: () => import_navigation_menu.NavigationMenuItem,
|
|
160
|
+
NavigationMenuLink: () => import_navigation_menu.NavigationMenuLink,
|
|
161
|
+
NavigationMenuList: () => import_navigation_menu.NavigationMenuList,
|
|
162
|
+
NavigationMenuTrigger: () => import_navigation_menu.NavigationMenuTrigger,
|
|
163
|
+
NavigationMenuViewport: () => import_navigation_menu.NavigationMenuViewport,
|
|
164
|
+
NumberInput: () => import_number_input.NumberInput,
|
|
165
|
+
Pagination: () => import_pagination.Pagination,
|
|
166
|
+
PinInput: () => import_pin_input.PinInput,
|
|
167
|
+
Popover: () => import_popover.Popover,
|
|
168
|
+
PopoverArrow: () => import_popover.PopoverArrow,
|
|
169
|
+
PopoverClose: () => import_popover.PopoverClose,
|
|
170
|
+
PopoverContent: () => import_popover.PopoverContent,
|
|
171
|
+
PopoverTrigger: () => import_popover.PopoverTrigger,
|
|
172
|
+
Progress: () => import_progress.Progress,
|
|
173
|
+
RadioCard: () => import_radio.RadioCard,
|
|
174
|
+
RadioGroup: () => import_radio.RadioGroup,
|
|
175
|
+
RadioGroupItem: () => import_radio.RadioGroupItem,
|
|
176
|
+
ResizableHandle: () => import_resizable.ResizableHandle,
|
|
177
|
+
ResizablePanel: () => import_resizable.ResizablePanel,
|
|
178
|
+
ResizablePanelGroup: () => import_resizable.ResizablePanelGroup,
|
|
179
|
+
ScrollArea: () => import_scroll_area.ScrollArea,
|
|
180
|
+
ScrollBar: () => import_scroll_area.ScrollBar,
|
|
181
|
+
SearchInput: () => import_search_input.SearchInput,
|
|
182
|
+
Select: () => import_select.Select,
|
|
183
|
+
SelectContent: () => import_select.SelectContent,
|
|
184
|
+
SelectGroup: () => import_select.SelectGroup,
|
|
185
|
+
SelectItem: () => import_select.SelectItem,
|
|
186
|
+
SelectLabel: () => import_select.SelectLabel,
|
|
187
|
+
SelectScrollDownButton: () => import_select.SelectScrollDownButton,
|
|
188
|
+
SelectScrollUpButton: () => import_select.SelectScrollUpButton,
|
|
189
|
+
SelectSeparator: () => import_select.SelectSeparator,
|
|
190
|
+
SelectTrigger: () => import_select.SelectTrigger,
|
|
191
|
+
SelectValue: () => import_select.SelectValue,
|
|
192
|
+
Separator: () => import_separator.Separator,
|
|
193
|
+
Sheet: () => import_sheet.Sheet,
|
|
194
|
+
SheetClose: () => import_sheet.SheetClose,
|
|
195
|
+
SheetContent: () => import_sheet.SheetContent,
|
|
196
|
+
SheetDescription: () => import_sheet.SheetDescription,
|
|
197
|
+
SheetFooter: () => import_sheet.SheetFooter,
|
|
198
|
+
SheetHeader: () => import_sheet.SheetHeader,
|
|
199
|
+
SheetTitle: () => import_sheet.SheetTitle,
|
|
200
|
+
SheetTrigger: () => import_sheet.SheetTrigger,
|
|
201
|
+
Sidebar: () => import_sidebar.Sidebar,
|
|
202
|
+
SidebarContent: () => import_sidebar.SidebarContent,
|
|
203
|
+
SidebarFooter: () => import_sidebar.SidebarFooter,
|
|
204
|
+
SidebarGroup: () => import_sidebar.SidebarGroup,
|
|
205
|
+
SidebarGroupAction: () => import_sidebar.SidebarGroupAction,
|
|
206
|
+
SidebarGroupContent: () => import_sidebar.SidebarGroupContent,
|
|
207
|
+
SidebarGroupLabel: () => import_sidebar.SidebarGroupLabel,
|
|
208
|
+
SidebarHeader: () => import_sidebar.SidebarHeader,
|
|
209
|
+
SidebarInput: () => import_sidebar.SidebarInput,
|
|
210
|
+
SidebarInset: () => import_sidebar.SidebarInset,
|
|
211
|
+
SidebarItem: () => import_sidebar.SidebarItem,
|
|
212
|
+
SidebarMenu: () => import_sidebar.SidebarMenu,
|
|
213
|
+
SidebarMenuAction: () => import_sidebar.SidebarMenuAction,
|
|
214
|
+
SidebarMenuBadge: () => import_sidebar.SidebarMenuBadge,
|
|
215
|
+
SidebarMenuButton: () => import_sidebar.SidebarMenuButton,
|
|
216
|
+
SidebarMenuItem: () => import_sidebar.SidebarMenuItem,
|
|
217
|
+
SidebarMenuSkeleton: () => import_sidebar.SidebarMenuSkeleton,
|
|
218
|
+
SidebarMenuSub: () => import_sidebar.SidebarMenuSub,
|
|
219
|
+
SidebarMenuSubButton: () => import_sidebar.SidebarMenuSubButton,
|
|
220
|
+
SidebarMenuSubItem: () => import_sidebar.SidebarMenuSubItem,
|
|
221
|
+
SidebarMobileOverlay: () => import_sidebar.SidebarMobileOverlay,
|
|
222
|
+
SidebarProvider: () => import_sidebar.SidebarProvider,
|
|
223
|
+
SidebarRail: () => import_sidebar.SidebarRail,
|
|
224
|
+
SidebarSection: () => import_sidebar.SidebarSection,
|
|
225
|
+
SidebarSeparator: () => import_sidebar.SidebarSeparator,
|
|
226
|
+
SidebarToggle: () => import_sidebar.SidebarToggle,
|
|
227
|
+
SidebarTrigger: () => import_sidebar.SidebarTrigger,
|
|
228
|
+
Skeleton: () => import_skeleton.Skeleton,
|
|
229
|
+
SkeletonCircle: () => import_skeleton.SkeletonCircle,
|
|
230
|
+
SkeletonRect: () => import_skeleton.SkeletonRect,
|
|
231
|
+
SkeletonText: () => import_skeleton.SkeletonText,
|
|
232
|
+
Slider: () => import_slider.Slider,
|
|
233
|
+
SonnerToaster: () => import_sonner.SonnerToaster,
|
|
234
|
+
Spinner: () => import_spinner.Spinner,
|
|
235
|
+
Stat: () => import_stat.Stat,
|
|
236
|
+
Step: () => import_steps.Step,
|
|
237
|
+
Steps: () => import_steps.Steps,
|
|
238
|
+
Switch: () => import_switch.Switch,
|
|
239
|
+
Table: () => import_table.Table,
|
|
240
|
+
TableBody: () => import_table.TableBody,
|
|
241
|
+
TableCaption: () => import_table.TableCaption,
|
|
242
|
+
TableCell: () => import_table.TableCell,
|
|
243
|
+
TableFooter: () => import_table.TableFooter,
|
|
244
|
+
TableHead: () => import_table.TableHead,
|
|
245
|
+
TableHeader: () => import_table.TableHeader,
|
|
246
|
+
TableRow: () => import_table.TableRow,
|
|
247
|
+
Tabs: () => import_tabs.Tabs,
|
|
248
|
+
TabsContent: () => import_tabs.TabsContent,
|
|
249
|
+
TabsList: () => import_tabs.TabsList,
|
|
250
|
+
TabsTrigger: () => import_tabs.TabsTrigger,
|
|
251
|
+
Tag: () => import_badge.Tag,
|
|
252
|
+
Textarea: () => import_textarea.Textarea,
|
|
253
|
+
ThemeToggle: () => import_theme_toggle.ThemeToggle,
|
|
254
|
+
Timeline: () => import_timeline.Timeline,
|
|
255
|
+
TimelineItem: () => import_timeline.TimelineItem,
|
|
256
|
+
ToastItem: () => import_toast.ToastItem,
|
|
257
|
+
ToastProvider: () => import_toast.ToastProvider,
|
|
258
|
+
Toggle: () => import_toggle.Toggle,
|
|
259
|
+
ToggleGroup: () => import_toggle_group.ToggleGroup,
|
|
260
|
+
ToggleGroupItem: () => import_toggle_group.ToggleGroupItem,
|
|
261
|
+
Tooltip: () => import_tooltip.Tooltip,
|
|
262
|
+
TooltipProvider: () => import_tooltip.TooltipProvider,
|
|
263
|
+
TreeView: () => import_tree_view.TreeView,
|
|
264
|
+
VideoPlayer: () => import_video_player.VideoPlayer,
|
|
265
|
+
VirtualList: () => import_virtual_list.VirtualList,
|
|
266
|
+
VisuallyHidden: () => import_visually_hidden.VisuallyHidden,
|
|
267
|
+
accordionRootVariants: () => import_accordion.accordionRootVariants,
|
|
268
|
+
accordionTriggerVariants: () => import_accordion.accordionTriggerVariants,
|
|
269
|
+
alertVariants: () => import_alert.alertVariants,
|
|
270
|
+
avatarVariants: () => import_avatar.avatarVariants,
|
|
271
|
+
badgeVariants: () => import_badge.badgeVariants,
|
|
272
|
+
bannerVariants: () => import_banner.bannerVariants,
|
|
273
|
+
buttonVariants: () => import_button.buttonVariants,
|
|
274
|
+
calendarDayVariants: () => import_calendar.calendarDayVariants,
|
|
275
|
+
calloutVariants: () => import_alert.calloutVariants,
|
|
276
|
+
cardVariants: () => import_card.cardVariants,
|
|
277
|
+
chartColors: () => import_chart.chartColors,
|
|
278
|
+
checkboxVariants: () => import_checkbox.checkboxVariants,
|
|
279
|
+
codeBlockVariants: () => import_code.codeBlockVariants,
|
|
280
|
+
comboboxTriggerVariants: () => import_combobox.comboboxTriggerVariants,
|
|
281
|
+
copyButtonVariants: () => import_copy_button.copyButtonVariants,
|
|
282
|
+
createColumnHelper: () => import_data_table.createColumnHelper,
|
|
283
|
+
dataListVariants: () => import_data_list.dataListVariants,
|
|
284
|
+
dialogContentVariants: () => import_dialog.dialogContentVariants,
|
|
285
|
+
drawerContentVariants: () => import_drawer.drawerContentVariants,
|
|
286
|
+
fileUploadZoneVariants: () => import_file_upload.fileUploadZoneVariants,
|
|
287
|
+
inlineCodeVariants: () => import_code.inlineCodeVariants,
|
|
288
|
+
inputVariants: () => import_input.inputVariants,
|
|
289
|
+
kbdVariants: () => import_kbd.kbdVariants,
|
|
290
|
+
labelVariants: () => import_label.labelVariants,
|
|
291
|
+
numberInputVariants: () => import_number_input.numberInputVariants,
|
|
292
|
+
paginationButtonVariants: () => import_pagination.paginationButtonVariants,
|
|
293
|
+
pinCellVariants: () => import_pin_input.pinCellVariants,
|
|
294
|
+
progressIndicatorVariants: () => import_progress.progressIndicatorVariants,
|
|
295
|
+
progressTrackVariants: () => import_progress.progressTrackVariants,
|
|
296
|
+
radioCardVariants: () => import_radio.radioCardVariants,
|
|
297
|
+
radioGroupVariants: () => import_radio.radioGroupVariants,
|
|
298
|
+
radioIndicatorVariants: () => import_radio.radioIndicatorVariants,
|
|
299
|
+
scrollbarThumbVariants: () => import_scroll_area.scrollbarThumbVariants,
|
|
300
|
+
scrollbarVariants: () => import_scroll_area.scrollbarVariants,
|
|
301
|
+
searchInputVariants: () => import_search_input.searchInputVariants,
|
|
302
|
+
selectTriggerVariants: () => import_select.selectTriggerVariants,
|
|
303
|
+
separatorVariants: () => import_separator.separatorVariants,
|
|
304
|
+
sheetContentVariants: () => import_sheet.sheetContentVariants,
|
|
305
|
+
skeletonVariants: () => import_skeleton.skeletonVariants,
|
|
306
|
+
sliderRangeVariants: () => import_slider.sliderRangeVariants,
|
|
307
|
+
sliderThumbVariants: () => import_slider.sliderThumbVariants,
|
|
308
|
+
sliderTrackVariants: () => import_slider.sliderTrackVariants,
|
|
309
|
+
spinnerVariants: () => import_spinner.spinnerVariants,
|
|
310
|
+
statVariants: () => import_stat.statVariants,
|
|
311
|
+
switchThumbVariants: () => import_switch.switchThumbVariants,
|
|
312
|
+
switchTrackVariants: () => import_switch.switchTrackVariants,
|
|
313
|
+
tableRootVariants: () => import_table.tableRootVariants,
|
|
314
|
+
tabsListVariants: () => import_tabs.tabsListVariants,
|
|
315
|
+
tabsTriggerVariants: () => import_tabs.tabsTriggerVariants,
|
|
316
|
+
tagVariants: () => import_badge.tagVariants,
|
|
317
|
+
textareaVariants: () => import_textarea.textareaVariants,
|
|
318
|
+
toast: () => import_sonner.toast,
|
|
319
|
+
toastVariants: () => import_toast.toastVariants,
|
|
320
|
+
toggleGroupItemVariants: () => import_toggle_group.toggleGroupItemVariants,
|
|
321
|
+
toggleGroupVariants: () => import_toggle_group.toggleGroupVariants,
|
|
322
|
+
toggleVariants: () => import_toggle.toggleVariants,
|
|
323
|
+
useCarouselContext: () => import_carousel.useCarouselContext,
|
|
324
|
+
useCheckboxGroupContext: () => import_checkbox.useCheckboxGroupContext,
|
|
325
|
+
useCollapsibleContext: () => import_collapsible.useCollapsibleContext,
|
|
326
|
+
useDataTable: () => import_data_table.useDataTable,
|
|
327
|
+
useSidebar: () => import_sidebar.useSidebar,
|
|
328
|
+
useSidebarContext: () => import_sidebar.useSidebarContext,
|
|
329
|
+
useToast: () => import_toast.useToast,
|
|
330
|
+
useToggleGroupContext: () => import_toggle_group.useToggleGroupContext
|
|
331
|
+
});
|
|
332
|
+
module.exports = __toCommonJS(components_exports);
|
|
333
|
+
var import_command = require("./command.cjs");
|
|
334
|
+
var import_context_menu = require("./context-menu.cjs");
|
|
335
|
+
var import_menubar = require("./menubar.cjs");
|
|
336
|
+
var import_navigation_menu = require("./navigation-menu.cjs");
|
|
337
|
+
var import_steps = require("./steps.cjs");
|
|
338
|
+
var import_accordion = require("./accordion.cjs");
|
|
339
|
+
var import_alert = require("./alert.cjs");
|
|
340
|
+
var import_alert_dialog = require("./alert-dialog.cjs");
|
|
341
|
+
var import_aspect_ratio = require("./aspect-ratio.cjs");
|
|
342
|
+
var import_avatar = require("./avatar.cjs");
|
|
343
|
+
var import_badge = require("./badge.cjs");
|
|
344
|
+
var import_banner = require("./banner.cjs");
|
|
345
|
+
var import_breadcrumb = require("./breadcrumb.cjs");
|
|
346
|
+
var import_button = require("./button.cjs");
|
|
347
|
+
var import_calendar = require("./calendar.cjs");
|
|
348
|
+
var import_card = require("./card.cjs");
|
|
349
|
+
var import_carousel = require("./carousel.cjs");
|
|
350
|
+
var import_checkbox = require("./checkbox.cjs");
|
|
351
|
+
var import_code = require("./code.cjs");
|
|
352
|
+
var import_collapsible = require("./collapsible.cjs");
|
|
353
|
+
var import_color_picker = require("./color-picker.cjs");
|
|
354
|
+
var import_combobox = require("./combobox.cjs");
|
|
355
|
+
var import_confirm_dialog = require("./confirm-dialog.cjs");
|
|
356
|
+
var import_copy_button = require("./copy-button.cjs");
|
|
357
|
+
var import_data_list = require("./data-list.cjs");
|
|
358
|
+
var import_data_table = require("./data-table.cjs");
|
|
359
|
+
var import_date_picker = require("./date-picker.cjs");
|
|
360
|
+
var import_dialog = require("./dialog.cjs");
|
|
361
|
+
var import_drawer = require("./drawer.cjs");
|
|
362
|
+
var import_dropdown_menu = require("./dropdown-menu.cjs");
|
|
363
|
+
var import_empty_state = require("./empty-state.cjs");
|
|
364
|
+
var import_file_upload = require("./file-upload.cjs");
|
|
365
|
+
var import_form_field = require("./form-field.cjs");
|
|
366
|
+
var import_hover_card = require("./hover-card.cjs");
|
|
367
|
+
var import_input = require("./input.cjs");
|
|
368
|
+
var import_input_group = require("./input-group.cjs");
|
|
369
|
+
var import_kbd = require("./kbd.cjs");
|
|
370
|
+
var import_label = require("./label.cjs");
|
|
371
|
+
var import_number_input = require("./number-input.cjs");
|
|
372
|
+
var import_pagination = require("./pagination.cjs");
|
|
373
|
+
var import_pin_input = require("./pin-input.cjs");
|
|
374
|
+
var import_popover = require("./popover.cjs");
|
|
375
|
+
var import_progress = require("./progress.cjs");
|
|
376
|
+
var import_radio = require("./radio.cjs");
|
|
377
|
+
var import_resizable = require("./resizable.cjs");
|
|
378
|
+
var import_scroll_area = require("./scroll-area.cjs");
|
|
379
|
+
var import_search_input = require("./search-input.cjs");
|
|
380
|
+
var import_select = require("./select.cjs");
|
|
381
|
+
var import_separator = require("./separator.cjs");
|
|
382
|
+
var import_sheet = require("./sheet.cjs");
|
|
383
|
+
var import_sidebar = require("./sidebar.cjs");
|
|
384
|
+
var import_skeleton = require("./skeleton.cjs");
|
|
385
|
+
var import_slider = require("./slider.cjs");
|
|
386
|
+
var import_spinner = require("./spinner.cjs");
|
|
387
|
+
var import_stat = require("./stat.cjs");
|
|
388
|
+
var import_switch = require("./switch.cjs");
|
|
389
|
+
var import_table = require("./table.cjs");
|
|
390
|
+
var import_tabs = require("./tabs.cjs");
|
|
391
|
+
var import_textarea = require("./textarea.cjs");
|
|
392
|
+
var import_theme_toggle = require("./theme-toggle.cjs");
|
|
393
|
+
var import_toast = require("./toast.cjs");
|
|
394
|
+
var import_toggle = require("./toggle.cjs");
|
|
395
|
+
var import_toggle_group = require("./toggle-group.cjs");
|
|
396
|
+
var import_tooltip = require("./tooltip.cjs");
|
|
397
|
+
var import_timeline = require("./timeline.cjs");
|
|
398
|
+
var import_visually_hidden = require("./visually-hidden.cjs");
|
|
399
|
+
var import_chart = require("./chart.cjs");
|
|
400
|
+
var import_data_table_toolbar = require("./data-table-toolbar.cjs");
|
|
401
|
+
var import_image_gallery = require("./image-gallery.cjs");
|
|
402
|
+
var import_infinite_scroll = require("./infinite-scroll.cjs");
|
|
403
|
+
var import_markdown = require("./markdown.cjs");
|
|
404
|
+
var import_sonner = require("./sonner.cjs");
|
|
405
|
+
var import_tree_view = require("./tree-view.cjs");
|
|
406
|
+
var import_video_player = require("./video-player.cjs");
|
|
407
|
+
var import_virtual_list = require("./virtual-list.cjs");
|
|
408
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
409
|
+
0 && (module.exports = {
|
|
410
|
+
Accordion,
|
|
411
|
+
AccordionContent,
|
|
412
|
+
AccordionItem,
|
|
413
|
+
AccordionTrigger,
|
|
414
|
+
Alert,
|
|
415
|
+
AlertDialog,
|
|
416
|
+
AlertDialogAction,
|
|
417
|
+
AlertDialogCancel,
|
|
418
|
+
AlertDialogContent,
|
|
419
|
+
AlertDialogDescription,
|
|
420
|
+
AlertDialogFooter,
|
|
421
|
+
AlertDialogHeader,
|
|
422
|
+
AlertDialogOverlay,
|
|
423
|
+
AlertDialogPortal,
|
|
424
|
+
AlertDialogTitle,
|
|
425
|
+
AlertDialogTrigger,
|
|
426
|
+
AspectRatio,
|
|
427
|
+
Avatar,
|
|
428
|
+
AvatarGroup,
|
|
429
|
+
Badge,
|
|
430
|
+
Banner,
|
|
431
|
+
Breadcrumb,
|
|
432
|
+
BreadcrumbEllipsis,
|
|
433
|
+
BreadcrumbItem,
|
|
434
|
+
BreadcrumbLink,
|
|
435
|
+
BreadcrumbList,
|
|
436
|
+
BreadcrumbNav,
|
|
437
|
+
BreadcrumbPage,
|
|
438
|
+
BreadcrumbSeparator,
|
|
439
|
+
Button,
|
|
440
|
+
Calendar,
|
|
441
|
+
Callout,
|
|
442
|
+
Card,
|
|
443
|
+
CardBody,
|
|
444
|
+
CardFooter,
|
|
445
|
+
CardHeader,
|
|
446
|
+
Carousel,
|
|
447
|
+
ChartContainer,
|
|
448
|
+
ChartTooltipContent,
|
|
449
|
+
Checkbox,
|
|
450
|
+
CheckboxGroup,
|
|
451
|
+
CodeBlock,
|
|
452
|
+
CodeInline,
|
|
453
|
+
Collapsible,
|
|
454
|
+
CollapsibleContent,
|
|
455
|
+
CollapsibleTrigger,
|
|
456
|
+
ColorPicker,
|
|
457
|
+
Combobox,
|
|
458
|
+
Command,
|
|
459
|
+
CommandTrigger,
|
|
460
|
+
ConfirmDialog,
|
|
461
|
+
ContextMenu,
|
|
462
|
+
ContextMenuCheckboxItem,
|
|
463
|
+
ContextMenuContent,
|
|
464
|
+
ContextMenuGroup,
|
|
465
|
+
ContextMenuItem,
|
|
466
|
+
ContextMenuLabel,
|
|
467
|
+
ContextMenuRadioGroup,
|
|
468
|
+
ContextMenuRadioItem,
|
|
469
|
+
ContextMenuSeparator,
|
|
470
|
+
ContextMenuShortcut,
|
|
471
|
+
ContextMenuSub,
|
|
472
|
+
ContextMenuSubContent,
|
|
473
|
+
ContextMenuSubTrigger,
|
|
474
|
+
ContextMenuTrigger,
|
|
475
|
+
CopyButton,
|
|
476
|
+
DataList,
|
|
477
|
+
DataListDetail,
|
|
478
|
+
DataListTerm,
|
|
479
|
+
DataTable,
|
|
480
|
+
DataTableToolbar,
|
|
481
|
+
DatePicker,
|
|
482
|
+
Dialog,
|
|
483
|
+
DialogBody,
|
|
484
|
+
DialogClose,
|
|
485
|
+
DialogContent,
|
|
486
|
+
DialogDescription,
|
|
487
|
+
DialogFooter,
|
|
488
|
+
DialogHeader,
|
|
489
|
+
DialogTitle,
|
|
490
|
+
DialogTrigger,
|
|
491
|
+
Drawer,
|
|
492
|
+
DrawerBody,
|
|
493
|
+
DrawerClose,
|
|
494
|
+
DrawerContent,
|
|
495
|
+
DrawerDescription,
|
|
496
|
+
DrawerFooter,
|
|
497
|
+
DrawerHandle,
|
|
498
|
+
DrawerHeader,
|
|
499
|
+
DrawerTitle,
|
|
500
|
+
DrawerTrigger,
|
|
501
|
+
DropdownMenu,
|
|
502
|
+
DropdownMenuCheckboxItem,
|
|
503
|
+
DropdownMenuContent,
|
|
504
|
+
DropdownMenuGroup,
|
|
505
|
+
DropdownMenuItem,
|
|
506
|
+
DropdownMenuLabel,
|
|
507
|
+
DropdownMenuRadioGroup,
|
|
508
|
+
DropdownMenuRadioItem,
|
|
509
|
+
DropdownMenuSeparator,
|
|
510
|
+
DropdownMenuShortcut,
|
|
511
|
+
DropdownMenuSub,
|
|
512
|
+
DropdownMenuSubContent,
|
|
513
|
+
DropdownMenuSubTrigger,
|
|
514
|
+
DropdownMenuTrigger,
|
|
515
|
+
EmptyState,
|
|
516
|
+
FileUpload,
|
|
517
|
+
FormField,
|
|
518
|
+
HoverCard,
|
|
519
|
+
HoverCardContent,
|
|
520
|
+
HoverCardTrigger,
|
|
521
|
+
ImageGallery,
|
|
522
|
+
InfiniteScroll,
|
|
523
|
+
Input,
|
|
524
|
+
InputGroup,
|
|
525
|
+
Kbd,
|
|
526
|
+
Label,
|
|
527
|
+
Markdown,
|
|
528
|
+
Menubar,
|
|
529
|
+
MenubarCheckboxItem,
|
|
530
|
+
MenubarContent,
|
|
531
|
+
MenubarGroup,
|
|
532
|
+
MenubarItem,
|
|
533
|
+
MenubarLabel,
|
|
534
|
+
MenubarMenu,
|
|
535
|
+
MenubarRadioGroup,
|
|
536
|
+
MenubarRadioItem,
|
|
537
|
+
MenubarSeparator,
|
|
538
|
+
MenubarShortcut,
|
|
539
|
+
MenubarSub,
|
|
540
|
+
MenubarSubContent,
|
|
541
|
+
MenubarSubTrigger,
|
|
542
|
+
MenubarTrigger,
|
|
543
|
+
NavigationMenu,
|
|
544
|
+
NavigationMenuCardLink,
|
|
545
|
+
NavigationMenuContent,
|
|
546
|
+
NavigationMenuIndicator,
|
|
547
|
+
NavigationMenuItem,
|
|
548
|
+
NavigationMenuLink,
|
|
549
|
+
NavigationMenuList,
|
|
550
|
+
NavigationMenuTrigger,
|
|
551
|
+
NavigationMenuViewport,
|
|
552
|
+
NumberInput,
|
|
553
|
+
Pagination,
|
|
554
|
+
PinInput,
|
|
555
|
+
Popover,
|
|
556
|
+
PopoverArrow,
|
|
557
|
+
PopoverClose,
|
|
558
|
+
PopoverContent,
|
|
559
|
+
PopoverTrigger,
|
|
560
|
+
Progress,
|
|
561
|
+
RadioCard,
|
|
562
|
+
RadioGroup,
|
|
563
|
+
RadioGroupItem,
|
|
564
|
+
ResizableHandle,
|
|
565
|
+
ResizablePanel,
|
|
566
|
+
ResizablePanelGroup,
|
|
567
|
+
ScrollArea,
|
|
568
|
+
ScrollBar,
|
|
569
|
+
SearchInput,
|
|
570
|
+
Select,
|
|
571
|
+
SelectContent,
|
|
572
|
+
SelectGroup,
|
|
573
|
+
SelectItem,
|
|
574
|
+
SelectLabel,
|
|
575
|
+
SelectScrollDownButton,
|
|
576
|
+
SelectScrollUpButton,
|
|
577
|
+
SelectSeparator,
|
|
578
|
+
SelectTrigger,
|
|
579
|
+
SelectValue,
|
|
580
|
+
Separator,
|
|
581
|
+
Sheet,
|
|
582
|
+
SheetClose,
|
|
583
|
+
SheetContent,
|
|
584
|
+
SheetDescription,
|
|
585
|
+
SheetFooter,
|
|
586
|
+
SheetHeader,
|
|
587
|
+
SheetTitle,
|
|
588
|
+
SheetTrigger,
|
|
589
|
+
Sidebar,
|
|
590
|
+
SidebarContent,
|
|
591
|
+
SidebarFooter,
|
|
592
|
+
SidebarGroup,
|
|
593
|
+
SidebarGroupAction,
|
|
594
|
+
SidebarGroupContent,
|
|
595
|
+
SidebarGroupLabel,
|
|
596
|
+
SidebarHeader,
|
|
597
|
+
SidebarInput,
|
|
598
|
+
SidebarInset,
|
|
599
|
+
SidebarItem,
|
|
600
|
+
SidebarMenu,
|
|
601
|
+
SidebarMenuAction,
|
|
602
|
+
SidebarMenuBadge,
|
|
603
|
+
SidebarMenuButton,
|
|
604
|
+
SidebarMenuItem,
|
|
605
|
+
SidebarMenuSkeleton,
|
|
606
|
+
SidebarMenuSub,
|
|
607
|
+
SidebarMenuSubButton,
|
|
608
|
+
SidebarMenuSubItem,
|
|
609
|
+
SidebarMobileOverlay,
|
|
610
|
+
SidebarProvider,
|
|
611
|
+
SidebarRail,
|
|
612
|
+
SidebarSection,
|
|
613
|
+
SidebarSeparator,
|
|
614
|
+
SidebarToggle,
|
|
615
|
+
SidebarTrigger,
|
|
616
|
+
Skeleton,
|
|
617
|
+
SkeletonCircle,
|
|
618
|
+
SkeletonRect,
|
|
619
|
+
SkeletonText,
|
|
620
|
+
Slider,
|
|
621
|
+
SonnerToaster,
|
|
622
|
+
Spinner,
|
|
623
|
+
Stat,
|
|
624
|
+
Step,
|
|
625
|
+
Steps,
|
|
626
|
+
Switch,
|
|
627
|
+
Table,
|
|
628
|
+
TableBody,
|
|
629
|
+
TableCaption,
|
|
630
|
+
TableCell,
|
|
631
|
+
TableFooter,
|
|
632
|
+
TableHead,
|
|
633
|
+
TableHeader,
|
|
634
|
+
TableRow,
|
|
635
|
+
Tabs,
|
|
636
|
+
TabsContent,
|
|
637
|
+
TabsList,
|
|
638
|
+
TabsTrigger,
|
|
639
|
+
Tag,
|
|
640
|
+
Textarea,
|
|
641
|
+
ThemeToggle,
|
|
642
|
+
Timeline,
|
|
643
|
+
TimelineItem,
|
|
644
|
+
ToastItem,
|
|
645
|
+
ToastProvider,
|
|
646
|
+
Toggle,
|
|
647
|
+
ToggleGroup,
|
|
648
|
+
ToggleGroupItem,
|
|
649
|
+
Tooltip,
|
|
650
|
+
TooltipProvider,
|
|
651
|
+
TreeView,
|
|
652
|
+
VideoPlayer,
|
|
653
|
+
VirtualList,
|
|
654
|
+
VisuallyHidden,
|
|
655
|
+
accordionRootVariants,
|
|
656
|
+
accordionTriggerVariants,
|
|
657
|
+
alertVariants,
|
|
658
|
+
avatarVariants,
|
|
659
|
+
badgeVariants,
|
|
660
|
+
bannerVariants,
|
|
661
|
+
buttonVariants,
|
|
662
|
+
calendarDayVariants,
|
|
663
|
+
calloutVariants,
|
|
664
|
+
cardVariants,
|
|
665
|
+
chartColors,
|
|
666
|
+
checkboxVariants,
|
|
667
|
+
codeBlockVariants,
|
|
668
|
+
comboboxTriggerVariants,
|
|
669
|
+
copyButtonVariants,
|
|
670
|
+
createColumnHelper,
|
|
671
|
+
dataListVariants,
|
|
672
|
+
dialogContentVariants,
|
|
673
|
+
drawerContentVariants,
|
|
674
|
+
fileUploadZoneVariants,
|
|
675
|
+
inlineCodeVariants,
|
|
676
|
+
inputVariants,
|
|
677
|
+
kbdVariants,
|
|
678
|
+
labelVariants,
|
|
679
|
+
numberInputVariants,
|
|
680
|
+
paginationButtonVariants,
|
|
681
|
+
pinCellVariants,
|
|
682
|
+
progressIndicatorVariants,
|
|
683
|
+
progressTrackVariants,
|
|
684
|
+
radioCardVariants,
|
|
685
|
+
radioGroupVariants,
|
|
686
|
+
radioIndicatorVariants,
|
|
687
|
+
scrollbarThumbVariants,
|
|
688
|
+
scrollbarVariants,
|
|
689
|
+
searchInputVariants,
|
|
690
|
+
selectTriggerVariants,
|
|
691
|
+
separatorVariants,
|
|
692
|
+
sheetContentVariants,
|
|
693
|
+
skeletonVariants,
|
|
694
|
+
sliderRangeVariants,
|
|
695
|
+
sliderThumbVariants,
|
|
696
|
+
sliderTrackVariants,
|
|
697
|
+
spinnerVariants,
|
|
698
|
+
statVariants,
|
|
699
|
+
switchThumbVariants,
|
|
700
|
+
switchTrackVariants,
|
|
701
|
+
tableRootVariants,
|
|
702
|
+
tabsListVariants,
|
|
703
|
+
tabsTriggerVariants,
|
|
704
|
+
tagVariants,
|
|
705
|
+
textareaVariants,
|
|
706
|
+
toast,
|
|
707
|
+
toastVariants,
|
|
708
|
+
toggleGroupItemVariants,
|
|
709
|
+
toggleGroupVariants,
|
|
710
|
+
toggleVariants,
|
|
711
|
+
useCarouselContext,
|
|
712
|
+
useCheckboxGroupContext,
|
|
713
|
+
useCollapsibleContext,
|
|
714
|
+
useDataTable,
|
|
715
|
+
useSidebar,
|
|
716
|
+
useSidebarContext,
|
|
717
|
+
useToast,
|
|
718
|
+
useToggleGroupContext
|
|
719
|
+
});
|