@work-rjkashyap/unified-ui 0.3.3 → 0.3.5
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 -1933
- 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-IVZAB7BV.mjs → tokens/colors.cjs} +212 -86
- package/dist/{z-index-Dd8IllRx.d.cts → tokens/colors.d.cts} +235 -72
- package/dist/{z-index-Dd8IllRx.d.ts → tokens/colors.d.ts} +235 -72
- package/dist/{chunk-ZBGR7MUW.cjs → tokens/colors.mjs} +165 -104
- 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-5TP7J7T4.cjs +0 -1766
- package/dist/chunk-A2DGHQL2.cjs +0 -21808
- package/dist/chunk-EQWESXRH.mjs +0 -1735
- 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-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 -131
- package/dist/theme.d.cts +0 -414
- package/dist/theme.d.ts +0 -414
- 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
package/dist/index.mjs
CHANGED
|
@@ -1,17 +1,1139 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
const UNIFIED_UI_VERSION = "0.3.1";
|
|
3
|
+
import {
|
|
4
|
+
Accordion,
|
|
5
|
+
AccordionContent,
|
|
6
|
+
AccordionItem,
|
|
7
|
+
AccordionTrigger,
|
|
8
|
+
accordionRootVariants,
|
|
9
|
+
accordionTriggerVariants
|
|
10
|
+
} from "./components/accordion";
|
|
11
|
+
import {
|
|
12
|
+
Alert,
|
|
13
|
+
alertVariants,
|
|
14
|
+
Callout,
|
|
15
|
+
calloutVariants
|
|
16
|
+
} from "./components/alert";
|
|
17
|
+
import {
|
|
18
|
+
AlertDialog,
|
|
19
|
+
AlertDialogAction,
|
|
20
|
+
AlertDialogCancel,
|
|
21
|
+
AlertDialogContent,
|
|
22
|
+
AlertDialogDescription,
|
|
23
|
+
AlertDialogFooter,
|
|
24
|
+
AlertDialogHeader,
|
|
25
|
+
AlertDialogOverlay,
|
|
26
|
+
AlertDialogPortal,
|
|
27
|
+
AlertDialogTitle,
|
|
28
|
+
AlertDialogTrigger
|
|
29
|
+
} from "./components/alert-dialog";
|
|
30
|
+
import { AspectRatio } from "./components/aspect-ratio";
|
|
31
|
+
import {
|
|
32
|
+
Avatar,
|
|
33
|
+
AvatarGroup,
|
|
34
|
+
avatarVariants
|
|
35
|
+
} from "./components/avatar";
|
|
36
|
+
import {
|
|
37
|
+
Badge,
|
|
38
|
+
badgeVariants,
|
|
39
|
+
Tag,
|
|
40
|
+
tagVariants
|
|
41
|
+
} from "./components/badge";
|
|
42
|
+
import {
|
|
43
|
+
Banner,
|
|
44
|
+
bannerVariants
|
|
45
|
+
} from "./components/banner";
|
|
46
|
+
import {
|
|
47
|
+
Breadcrumb,
|
|
48
|
+
BreadcrumbEllipsis,
|
|
49
|
+
BreadcrumbItem,
|
|
50
|
+
BreadcrumbLink,
|
|
51
|
+
BreadcrumbList,
|
|
52
|
+
BreadcrumbNav,
|
|
53
|
+
BreadcrumbPage,
|
|
54
|
+
BreadcrumbSeparator
|
|
55
|
+
} from "./components/breadcrumb";
|
|
56
|
+
import {
|
|
57
|
+
Button,
|
|
58
|
+
buttonVariants
|
|
59
|
+
} from "./components/button";
|
|
60
|
+
import {
|
|
61
|
+
Calendar,
|
|
62
|
+
calendarDayVariants
|
|
63
|
+
} from "./components/calendar";
|
|
64
|
+
import {
|
|
65
|
+
Card,
|
|
66
|
+
CardBody,
|
|
67
|
+
CardFooter,
|
|
68
|
+
CardHeader,
|
|
69
|
+
cardVariants
|
|
70
|
+
} from "./components/card";
|
|
71
|
+
import {
|
|
72
|
+
Carousel,
|
|
73
|
+
useCarouselContext
|
|
74
|
+
} from "./components/carousel";
|
|
75
|
+
import {
|
|
76
|
+
ChartContainer,
|
|
77
|
+
ChartTooltipContent,
|
|
78
|
+
chartColors
|
|
79
|
+
} from "./components/chart";
|
|
80
|
+
import {
|
|
81
|
+
Checkbox,
|
|
82
|
+
CheckboxGroup,
|
|
83
|
+
checkboxVariants,
|
|
84
|
+
useCheckboxGroupContext
|
|
85
|
+
} from "./components/checkbox";
|
|
86
|
+
import {
|
|
87
|
+
CodeBlock,
|
|
88
|
+
codeBlockVariants,
|
|
89
|
+
InlineCode,
|
|
90
|
+
inlineCodeVariants
|
|
91
|
+
} from "./components/code";
|
|
92
|
+
import {
|
|
93
|
+
Collapsible,
|
|
94
|
+
CollapsibleContent,
|
|
95
|
+
CollapsibleTrigger,
|
|
96
|
+
useCollapsibleContext
|
|
97
|
+
} from "./components/collapsible";
|
|
98
|
+
import {
|
|
99
|
+
ColorPicker
|
|
100
|
+
} from "./components/color-picker";
|
|
101
|
+
import {
|
|
102
|
+
Combobox,
|
|
103
|
+
comboboxTriggerVariants
|
|
104
|
+
} from "./components/combobox";
|
|
105
|
+
import {
|
|
106
|
+
Command,
|
|
107
|
+
CommandTrigger
|
|
108
|
+
} from "./components/command";
|
|
109
|
+
import {
|
|
110
|
+
ConfirmDialog
|
|
111
|
+
} from "./components/confirm-dialog";
|
|
112
|
+
import {
|
|
113
|
+
ContextMenu,
|
|
114
|
+
ContextMenuCheckboxItem,
|
|
115
|
+
ContextMenuContent,
|
|
116
|
+
ContextMenuGroup,
|
|
117
|
+
ContextMenuItem,
|
|
118
|
+
ContextMenuLabel,
|
|
119
|
+
ContextMenuRadioGroup,
|
|
120
|
+
ContextMenuRadioItem,
|
|
121
|
+
ContextMenuSeparator,
|
|
122
|
+
ContextMenuShortcut,
|
|
123
|
+
ContextMenuSub,
|
|
124
|
+
ContextMenuSubContent,
|
|
125
|
+
ContextMenuSubTrigger,
|
|
126
|
+
ContextMenuTrigger
|
|
127
|
+
} from "./components/context-menu";
|
|
128
|
+
import {
|
|
129
|
+
CopyButton,
|
|
130
|
+
copyButtonVariants
|
|
131
|
+
} from "./components/copy-button";
|
|
132
|
+
import {
|
|
133
|
+
DataList,
|
|
134
|
+
DataListDetail,
|
|
135
|
+
DataListTerm,
|
|
136
|
+
dataListVariants
|
|
137
|
+
} from "./components/data-list";
|
|
138
|
+
import {
|
|
139
|
+
createColumnHelper,
|
|
140
|
+
DataTable,
|
|
141
|
+
useDataTable
|
|
142
|
+
} from "./components/data-table";
|
|
143
|
+
import {
|
|
144
|
+
DataTableToolbar
|
|
145
|
+
} from "./components/data-table-toolbar";
|
|
146
|
+
import {
|
|
147
|
+
DatePicker
|
|
148
|
+
} from "./components/date-picker";
|
|
149
|
+
import {
|
|
150
|
+
Dialog,
|
|
151
|
+
DialogBody,
|
|
152
|
+
DialogClose,
|
|
153
|
+
DialogContent,
|
|
154
|
+
DialogDescription,
|
|
155
|
+
DialogFooter,
|
|
156
|
+
DialogHeader,
|
|
157
|
+
DialogTitle,
|
|
158
|
+
DialogTrigger,
|
|
159
|
+
dialogContentVariants
|
|
160
|
+
} from "./components/dialog";
|
|
161
|
+
import {
|
|
162
|
+
Drawer,
|
|
163
|
+
DrawerBody,
|
|
164
|
+
DrawerClose,
|
|
165
|
+
DrawerContent,
|
|
166
|
+
DrawerDescription,
|
|
167
|
+
DrawerFooter,
|
|
168
|
+
DrawerHandle,
|
|
169
|
+
DrawerHeader,
|
|
170
|
+
DrawerTitle,
|
|
171
|
+
DrawerTrigger,
|
|
172
|
+
drawerContentVariants
|
|
173
|
+
} from "./components/drawer";
|
|
174
|
+
import {
|
|
175
|
+
DropdownMenu,
|
|
176
|
+
DropdownMenuCheckboxItem,
|
|
177
|
+
DropdownMenuContent,
|
|
178
|
+
DropdownMenuGroup,
|
|
179
|
+
DropdownMenuItem,
|
|
180
|
+
DropdownMenuLabel,
|
|
181
|
+
DropdownMenuRadioGroup,
|
|
182
|
+
DropdownMenuRadioItem,
|
|
183
|
+
DropdownMenuSeparator,
|
|
184
|
+
DropdownMenuShortcut,
|
|
185
|
+
DropdownMenuSub,
|
|
186
|
+
DropdownMenuSubContent,
|
|
187
|
+
DropdownMenuSubTrigger,
|
|
188
|
+
DropdownMenuTrigger
|
|
189
|
+
} from "./components/dropdown-menu";
|
|
190
|
+
import { EmptyState } from "./components/empty-state";
|
|
191
|
+
import {
|
|
192
|
+
FileUpload,
|
|
193
|
+
fileUploadZoneVariants
|
|
194
|
+
} from "./components/file-upload";
|
|
195
|
+
import {
|
|
196
|
+
FormField
|
|
197
|
+
} from "./components/form-field";
|
|
198
|
+
import {
|
|
199
|
+
HoverCard,
|
|
200
|
+
HoverCardContent,
|
|
201
|
+
HoverCardTrigger
|
|
202
|
+
} from "./components/hover-card";
|
|
203
|
+
import {
|
|
204
|
+
ImageGallery
|
|
205
|
+
} from "./components/image-gallery";
|
|
206
|
+
import {
|
|
207
|
+
InfiniteScroll
|
|
208
|
+
} from "./components/infinite-scroll";
|
|
209
|
+
import {
|
|
210
|
+
Input,
|
|
211
|
+
inputVariants
|
|
212
|
+
} from "./components/input";
|
|
213
|
+
import {
|
|
214
|
+
InputGroup
|
|
215
|
+
} from "./components/input-group";
|
|
216
|
+
import {
|
|
217
|
+
Kbd,
|
|
218
|
+
kbdVariants
|
|
219
|
+
} from "./components/kbd";
|
|
220
|
+
import {
|
|
221
|
+
Label,
|
|
222
|
+
labelVariants
|
|
223
|
+
} from "./components/label";
|
|
224
|
+
import {
|
|
225
|
+
Markdown
|
|
226
|
+
} from "./components/markdown";
|
|
227
|
+
import {
|
|
228
|
+
Menubar,
|
|
229
|
+
MenubarCheckboxItem,
|
|
230
|
+
MenubarContent,
|
|
231
|
+
MenubarGroup,
|
|
232
|
+
MenubarItem,
|
|
233
|
+
MenubarLabel,
|
|
234
|
+
MenubarMenu,
|
|
235
|
+
MenubarRadioGroup,
|
|
236
|
+
MenubarRadioItem,
|
|
237
|
+
MenubarSeparator,
|
|
238
|
+
MenubarShortcut,
|
|
239
|
+
MenubarSub,
|
|
240
|
+
MenubarSubContent,
|
|
241
|
+
MenubarSubTrigger,
|
|
242
|
+
MenubarTrigger
|
|
243
|
+
} from "./components/menubar";
|
|
244
|
+
import {
|
|
245
|
+
NavigationMenu,
|
|
246
|
+
NavigationMenuCardLink,
|
|
247
|
+
NavigationMenuContent,
|
|
248
|
+
NavigationMenuIndicator,
|
|
249
|
+
NavigationMenuItem,
|
|
250
|
+
NavigationMenuLink,
|
|
251
|
+
NavigationMenuList,
|
|
252
|
+
NavigationMenuTrigger,
|
|
253
|
+
NavigationMenuViewport
|
|
254
|
+
} from "./components/navigation-menu";
|
|
255
|
+
import {
|
|
256
|
+
NumberInput,
|
|
257
|
+
numberInputVariants
|
|
258
|
+
} from "./components/number-input";
|
|
259
|
+
import {
|
|
260
|
+
Pagination,
|
|
261
|
+
paginationButtonVariants
|
|
262
|
+
} from "./components/pagination";
|
|
263
|
+
import {
|
|
264
|
+
PinInput,
|
|
265
|
+
pinCellVariants
|
|
266
|
+
} from "./components/pin-input";
|
|
267
|
+
import {
|
|
268
|
+
Popover,
|
|
269
|
+
PopoverArrow,
|
|
270
|
+
PopoverClose,
|
|
271
|
+
PopoverContent,
|
|
272
|
+
PopoverTrigger
|
|
273
|
+
} from "./components/popover";
|
|
274
|
+
import {
|
|
275
|
+
Progress,
|
|
276
|
+
progressIndicatorVariants,
|
|
277
|
+
progressTrackVariants
|
|
278
|
+
} from "./components/progress";
|
|
279
|
+
import {
|
|
280
|
+
RadioCard,
|
|
281
|
+
RadioGroup,
|
|
282
|
+
RadioGroupItem,
|
|
283
|
+
radioCardVariants,
|
|
284
|
+
radioGroupVariants,
|
|
285
|
+
radioIndicatorVariants
|
|
286
|
+
} from "./components/radio";
|
|
287
|
+
import {
|
|
288
|
+
ResizableHandle,
|
|
289
|
+
ResizablePanel,
|
|
290
|
+
ResizablePanelGroup
|
|
291
|
+
} from "./components/resizable";
|
|
292
|
+
import {
|
|
293
|
+
ScrollArea,
|
|
294
|
+
ScrollBar,
|
|
295
|
+
scrollbarThumbVariants,
|
|
296
|
+
scrollbarVariants
|
|
297
|
+
} from "./components/scroll-area";
|
|
298
|
+
import {
|
|
299
|
+
SearchInput,
|
|
300
|
+
searchInputVariants
|
|
301
|
+
} from "./components/search-input";
|
|
302
|
+
import {
|
|
303
|
+
Select,
|
|
304
|
+
SelectContent,
|
|
305
|
+
SelectGroup,
|
|
306
|
+
SelectItem,
|
|
307
|
+
SelectLabel,
|
|
308
|
+
SelectScrollDownButton,
|
|
309
|
+
SelectScrollUpButton,
|
|
310
|
+
SelectSeparator,
|
|
311
|
+
SelectTrigger,
|
|
312
|
+
SelectValue,
|
|
313
|
+
selectTriggerVariants
|
|
314
|
+
} from "./components/select";
|
|
315
|
+
import {
|
|
316
|
+
Separator,
|
|
317
|
+
separatorVariants
|
|
318
|
+
} from "./components/separator";
|
|
319
|
+
import {
|
|
320
|
+
Sheet,
|
|
321
|
+
SheetClose,
|
|
322
|
+
SheetContent,
|
|
323
|
+
SheetDescription,
|
|
324
|
+
SheetFooter,
|
|
325
|
+
SheetHeader,
|
|
326
|
+
SheetTitle,
|
|
327
|
+
SheetTrigger,
|
|
328
|
+
sheetContentVariants
|
|
329
|
+
} from "./components/sheet";
|
|
330
|
+
import {
|
|
331
|
+
Sidebar,
|
|
332
|
+
SidebarContent,
|
|
333
|
+
SidebarFooter,
|
|
334
|
+
SidebarGroup,
|
|
335
|
+
SidebarGroupAction,
|
|
336
|
+
SidebarGroupContent,
|
|
337
|
+
SidebarGroupLabel,
|
|
338
|
+
SidebarHeader,
|
|
339
|
+
SidebarInput,
|
|
340
|
+
SidebarInset,
|
|
341
|
+
SidebarItem,
|
|
342
|
+
SidebarMenu,
|
|
343
|
+
SidebarMenuAction,
|
|
344
|
+
SidebarMenuBadge,
|
|
345
|
+
SidebarMenuButton,
|
|
346
|
+
SidebarMenuItem,
|
|
347
|
+
SidebarMenuSkeleton,
|
|
348
|
+
SidebarMenuSub,
|
|
349
|
+
SidebarMenuSubButton,
|
|
350
|
+
SidebarMenuSubItem,
|
|
351
|
+
SidebarMobileOverlay,
|
|
352
|
+
SidebarProvider,
|
|
353
|
+
SidebarRail,
|
|
354
|
+
SidebarSection,
|
|
355
|
+
SidebarSeparator,
|
|
356
|
+
SidebarToggle,
|
|
357
|
+
SidebarTrigger,
|
|
358
|
+
useSidebar,
|
|
359
|
+
useSidebarContext
|
|
360
|
+
} from "./components/sidebar";
|
|
361
|
+
import {
|
|
362
|
+
Skeleton,
|
|
363
|
+
SkeletonCircle,
|
|
364
|
+
SkeletonRect,
|
|
365
|
+
SkeletonText,
|
|
366
|
+
skeletonVariants
|
|
367
|
+
} from "./components/skeleton";
|
|
368
|
+
import {
|
|
369
|
+
Slider,
|
|
370
|
+
sliderRangeVariants,
|
|
371
|
+
sliderThumbVariants,
|
|
372
|
+
sliderTrackVariants
|
|
373
|
+
} from "./components/slider";
|
|
374
|
+
import {
|
|
375
|
+
SonnerToaster,
|
|
376
|
+
toast
|
|
377
|
+
} from "./components/sonner";
|
|
378
|
+
import {
|
|
379
|
+
Spinner,
|
|
380
|
+
spinnerVariants
|
|
381
|
+
} from "./components/spinner";
|
|
382
|
+
import {
|
|
383
|
+
Stat,
|
|
384
|
+
statVariants
|
|
385
|
+
} from "./components/stat";
|
|
386
|
+
import {
|
|
387
|
+
Step,
|
|
388
|
+
Steps
|
|
389
|
+
} from "./components/steps";
|
|
390
|
+
import {
|
|
391
|
+
Switch,
|
|
392
|
+
switchThumbVariants,
|
|
393
|
+
switchTrackVariants
|
|
394
|
+
} from "./components/switch";
|
|
395
|
+
import {
|
|
396
|
+
Table,
|
|
397
|
+
TableBody,
|
|
398
|
+
TableCaption,
|
|
399
|
+
TableCell,
|
|
400
|
+
TableFooter,
|
|
401
|
+
TableHead,
|
|
402
|
+
TableHeader,
|
|
403
|
+
TableRow,
|
|
404
|
+
tableRootVariants
|
|
405
|
+
} from "./components/table";
|
|
406
|
+
import {
|
|
407
|
+
Tabs,
|
|
408
|
+
TabsContent,
|
|
409
|
+
TabsList,
|
|
410
|
+
TabsTrigger,
|
|
411
|
+
tabsListVariants,
|
|
412
|
+
tabsTriggerVariants
|
|
413
|
+
} from "./components/tabs";
|
|
414
|
+
import {
|
|
415
|
+
Textarea,
|
|
416
|
+
textareaVariants
|
|
417
|
+
} from "./components/textarea";
|
|
418
|
+
import {
|
|
419
|
+
ThemeToggle
|
|
420
|
+
} from "./components/theme-toggle";
|
|
421
|
+
import {
|
|
422
|
+
Timeline,
|
|
423
|
+
TimelineItem
|
|
424
|
+
} from "./components/timeline";
|
|
425
|
+
import {
|
|
426
|
+
ToastItem,
|
|
427
|
+
ToastProvider,
|
|
428
|
+
toastVariants,
|
|
429
|
+
useToast
|
|
430
|
+
} from "./components/toast";
|
|
431
|
+
import {
|
|
432
|
+
Toggle,
|
|
433
|
+
toggleVariants
|
|
434
|
+
} from "./components/toggle";
|
|
435
|
+
import {
|
|
436
|
+
ToggleGroup,
|
|
437
|
+
ToggleGroupItem,
|
|
438
|
+
toggleGroupItemVariants,
|
|
439
|
+
toggleGroupVariants,
|
|
440
|
+
useToggleGroupContext
|
|
441
|
+
} from "./components/toggle-group";
|
|
442
|
+
import {
|
|
443
|
+
Tooltip,
|
|
444
|
+
TooltipProvider
|
|
445
|
+
} from "./components/tooltip";
|
|
446
|
+
import {
|
|
447
|
+
TreeView
|
|
448
|
+
} from "./components/tree-view";
|
|
449
|
+
import {
|
|
450
|
+
VideoPlayer
|
|
451
|
+
} from "./components/video-player";
|
|
452
|
+
import {
|
|
453
|
+
VirtualList
|
|
454
|
+
} from "./components/virtual-list";
|
|
455
|
+
import {
|
|
456
|
+
VisuallyHidden
|
|
457
|
+
} from "./components/visually-hidden";
|
|
458
|
+
import {
|
|
459
|
+
blurIn,
|
|
460
|
+
blurInSubtle,
|
|
461
|
+
expandHeight,
|
|
462
|
+
expandHeightSlow,
|
|
463
|
+
fadeIn,
|
|
464
|
+
fadeInFast,
|
|
465
|
+
fadeInSlow,
|
|
466
|
+
hoverLift,
|
|
467
|
+
hoverScale,
|
|
468
|
+
MotionSafe,
|
|
469
|
+
modalContent,
|
|
470
|
+
modalContentSpring,
|
|
471
|
+
motionProps,
|
|
472
|
+
overlayBackdrop,
|
|
473
|
+
pop,
|
|
474
|
+
popSubtle,
|
|
475
|
+
press,
|
|
476
|
+
pulse,
|
|
477
|
+
reduceMotion,
|
|
478
|
+
scaleIn,
|
|
479
|
+
scaleInLg,
|
|
480
|
+
scaleInSpring,
|
|
481
|
+
slideDown,
|
|
482
|
+
slideDownSm,
|
|
483
|
+
slideInFromBottom,
|
|
484
|
+
slideInFromLeft,
|
|
485
|
+
slideInFromRight,
|
|
486
|
+
slideLeft,
|
|
487
|
+
slideRight,
|
|
488
|
+
slideUp,
|
|
489
|
+
slideUpLg,
|
|
490
|
+
slideUpSm,
|
|
491
|
+
slideUpSpring,
|
|
492
|
+
spin,
|
|
493
|
+
staggerContainer,
|
|
494
|
+
staggerContainerFast,
|
|
495
|
+
staggerContainerSlow,
|
|
496
|
+
tapScale,
|
|
497
|
+
toastSlideIn,
|
|
498
|
+
toastSlideUp,
|
|
499
|
+
useMotion,
|
|
500
|
+
useMotionProps,
|
|
501
|
+
useMotionSpringConfig,
|
|
502
|
+
useReducedMotion,
|
|
503
|
+
withReducedMotion
|
|
504
|
+
} from "./motion";
|
|
505
|
+
import {
|
|
506
|
+
countUp,
|
|
507
|
+
crossfade,
|
|
508
|
+
dragDismiss,
|
|
509
|
+
numberRoll,
|
|
510
|
+
revealMask,
|
|
511
|
+
shakeX,
|
|
512
|
+
slidePanelBottom,
|
|
513
|
+
slidePanelLeft,
|
|
514
|
+
slidePanelRight,
|
|
515
|
+
slidePanelTop,
|
|
516
|
+
springHover,
|
|
517
|
+
springPress
|
|
518
|
+
} from "./motion/presets";
|
|
519
|
+
import {
|
|
520
|
+
Body,
|
|
521
|
+
Caption,
|
|
522
|
+
Container,
|
|
523
|
+
Divider,
|
|
524
|
+
Grid,
|
|
525
|
+
Heading,
|
|
526
|
+
InlineCode as InlineCode2,
|
|
527
|
+
Label as Label2,
|
|
528
|
+
Overline,
|
|
529
|
+
Stack,
|
|
530
|
+
Subheading,
|
|
531
|
+
Typography
|
|
532
|
+
} from "./primitives";
|
|
533
|
+
import {
|
|
534
|
+
buildDarkThemeVars,
|
|
535
|
+
buildLightThemeVars,
|
|
536
|
+
buildThemeCSS,
|
|
537
|
+
buildThemeOverrides,
|
|
538
|
+
COLOR_PRESET_KEYS,
|
|
539
|
+
COLOR_PRESETS,
|
|
540
|
+
contract,
|
|
541
|
+
cssVar,
|
|
542
|
+
DEFAULT_FONT_KEY,
|
|
543
|
+
DEFAULT_MENU_ACCENT_KEY,
|
|
544
|
+
DEFAULT_MENU_COLOR_KEY,
|
|
545
|
+
DEFAULT_RADIUS_KEY,
|
|
546
|
+
DEFAULT_SHADOW_KEY,
|
|
547
|
+
DEFAULT_STYLE_KEY,
|
|
548
|
+
DEFAULT_SURFACE_STYLE_KEY,
|
|
549
|
+
DEFAULT_THEME_CONFIG,
|
|
550
|
+
DSThemeProvider,
|
|
551
|
+
FONT_PRESETS,
|
|
552
|
+
generateThemeCSS,
|
|
553
|
+
getColorPreset,
|
|
554
|
+
getFontPreset,
|
|
555
|
+
getMenuAccentPreset,
|
|
556
|
+
getMenuColorPreset,
|
|
557
|
+
getRadiusPreset,
|
|
558
|
+
getShadowPreset,
|
|
559
|
+
getStylePreset,
|
|
560
|
+
MENU_ACCENT_PRESETS,
|
|
561
|
+
MENU_COLOR_PRESETS,
|
|
562
|
+
RADIUS_PRESETS,
|
|
563
|
+
SHADOW_PRESETS,
|
|
564
|
+
STYLE_PRESETS,
|
|
565
|
+
SURFACE_STYLE_PRESETS,
|
|
566
|
+
ThemeCustomizer,
|
|
567
|
+
ThemeCustomizerProvider,
|
|
568
|
+
useDSTheme,
|
|
569
|
+
useThemeCustomizer
|
|
570
|
+
} from "./theme";
|
|
571
|
+
import {
|
|
572
|
+
amber,
|
|
573
|
+
blue,
|
|
574
|
+
brand,
|
|
575
|
+
duration,
|
|
576
|
+
durationCSS,
|
|
577
|
+
durationSeconds,
|
|
578
|
+
easing,
|
|
579
|
+
easingCSS,
|
|
580
|
+
fontFamily,
|
|
581
|
+
fontSize,
|
|
582
|
+
fontWeight,
|
|
583
|
+
gray,
|
|
584
|
+
green,
|
|
585
|
+
letterSpacing,
|
|
586
|
+
lineHeight,
|
|
587
|
+
neutral,
|
|
588
|
+
palettes,
|
|
589
|
+
pure,
|
|
590
|
+
radius,
|
|
591
|
+
red,
|
|
592
|
+
semanticDark,
|
|
593
|
+
semanticLight,
|
|
594
|
+
shadow,
|
|
595
|
+
shadowDark,
|
|
596
|
+
slate,
|
|
597
|
+
spacing,
|
|
598
|
+
spring,
|
|
599
|
+
stagger,
|
|
600
|
+
teal,
|
|
601
|
+
typographyVariants,
|
|
602
|
+
zIndex,
|
|
603
|
+
zinc
|
|
604
|
+
} from "./tokens";
|
|
605
|
+
import {
|
|
606
|
+
cn,
|
|
607
|
+
composeRefs,
|
|
608
|
+
dsAttr,
|
|
609
|
+
dsColorVar,
|
|
610
|
+
dsStateAttr,
|
|
611
|
+
dsVar,
|
|
612
|
+
mergeSlots,
|
|
613
|
+
noop,
|
|
614
|
+
typedKeys
|
|
615
|
+
} from "./utils/cn";
|
|
616
|
+
import {
|
|
617
|
+
auditContrast,
|
|
618
|
+
checkDSContrast,
|
|
619
|
+
checkHexContrast,
|
|
620
|
+
contrastRatio,
|
|
621
|
+
DS_DARK_CRITICAL_PAIRS,
|
|
622
|
+
DS_LIGHT_CRITICAL_PAIRS,
|
|
623
|
+
meetsAA,
|
|
624
|
+
meetsAAA,
|
|
625
|
+
meetsNonTextAA,
|
|
626
|
+
parseHex,
|
|
627
|
+
parseRGBString,
|
|
628
|
+
relativeLuminance,
|
|
629
|
+
toRGBString,
|
|
630
|
+
WCAG_AA_LARGE,
|
|
631
|
+
WCAG_AA_NORMAL,
|
|
632
|
+
WCAG_AAA_LARGE,
|
|
633
|
+
WCAG_AAA_NORMAL,
|
|
634
|
+
WCAG_NON_TEXT_AA
|
|
635
|
+
} from "./utils/contrast";
|
|
636
|
+
import {
|
|
637
|
+
focusRingClasses,
|
|
638
|
+
focusRingClassList,
|
|
639
|
+
focusRingCompactClasses,
|
|
640
|
+
focusRingCompactClassList,
|
|
641
|
+
focusRingGroupRingClasses,
|
|
642
|
+
focusRingGroupTriggerClasses,
|
|
643
|
+
focusRingInsetClasses,
|
|
644
|
+
focusRingInsetClassList,
|
|
645
|
+
focusRingVariantOverrides,
|
|
646
|
+
focusWithinRingClasses,
|
|
647
|
+
focusWithinRingClassList
|
|
648
|
+
} from "./utils/focus-ring";
|
|
649
|
+
import {
|
|
650
|
+
dsDataAttrs
|
|
651
|
+
} from "./utils/types";
|
|
652
|
+
export {
|
|
653
|
+
Accordion,
|
|
654
|
+
AccordionContent,
|
|
655
|
+
AccordionItem,
|
|
656
|
+
AccordionTrigger,
|
|
657
|
+
Alert,
|
|
658
|
+
AlertDialog,
|
|
659
|
+
AlertDialogAction,
|
|
660
|
+
AlertDialogCancel,
|
|
661
|
+
AlertDialogContent,
|
|
662
|
+
AlertDialogDescription,
|
|
663
|
+
AlertDialogFooter,
|
|
664
|
+
AlertDialogHeader,
|
|
665
|
+
AlertDialogOverlay,
|
|
666
|
+
AlertDialogPortal,
|
|
667
|
+
AlertDialogTitle,
|
|
668
|
+
AlertDialogTrigger,
|
|
669
|
+
AspectRatio,
|
|
670
|
+
Avatar,
|
|
671
|
+
AvatarGroup,
|
|
672
|
+
Badge,
|
|
673
|
+
Banner,
|
|
674
|
+
Body,
|
|
675
|
+
Breadcrumb,
|
|
676
|
+
BreadcrumbEllipsis,
|
|
677
|
+
BreadcrumbItem,
|
|
678
|
+
BreadcrumbLink,
|
|
679
|
+
BreadcrumbList,
|
|
680
|
+
BreadcrumbNav,
|
|
681
|
+
BreadcrumbPage,
|
|
682
|
+
BreadcrumbSeparator,
|
|
683
|
+
Button,
|
|
684
|
+
COLOR_PRESETS,
|
|
685
|
+
COLOR_PRESET_KEYS,
|
|
686
|
+
Calendar,
|
|
687
|
+
Callout,
|
|
688
|
+
Caption,
|
|
689
|
+
Card,
|
|
690
|
+
CardBody,
|
|
691
|
+
CardFooter,
|
|
692
|
+
CardHeader,
|
|
693
|
+
Carousel,
|
|
694
|
+
ChartContainer,
|
|
695
|
+
ChartTooltipContent,
|
|
696
|
+
Checkbox,
|
|
697
|
+
CheckboxGroup,
|
|
698
|
+
CodeBlock,
|
|
699
|
+
InlineCode as CodeInline,
|
|
700
|
+
Collapsible,
|
|
701
|
+
CollapsibleContent,
|
|
702
|
+
CollapsibleTrigger,
|
|
703
|
+
ColorPicker,
|
|
704
|
+
Combobox,
|
|
705
|
+
Command,
|
|
706
|
+
CommandTrigger,
|
|
707
|
+
ConfirmDialog,
|
|
708
|
+
Container,
|
|
709
|
+
ContextMenu,
|
|
710
|
+
ContextMenuCheckboxItem,
|
|
711
|
+
ContextMenuContent,
|
|
712
|
+
ContextMenuGroup,
|
|
713
|
+
ContextMenuItem,
|
|
714
|
+
ContextMenuLabel,
|
|
715
|
+
ContextMenuRadioGroup,
|
|
716
|
+
ContextMenuRadioItem,
|
|
717
|
+
ContextMenuSeparator,
|
|
718
|
+
ContextMenuShortcut,
|
|
719
|
+
ContextMenuSub,
|
|
720
|
+
ContextMenuSubContent,
|
|
721
|
+
ContextMenuSubTrigger,
|
|
722
|
+
ContextMenuTrigger,
|
|
723
|
+
CopyButton,
|
|
724
|
+
DEFAULT_FONT_KEY,
|
|
725
|
+
DEFAULT_MENU_ACCENT_KEY,
|
|
726
|
+
DEFAULT_MENU_COLOR_KEY,
|
|
727
|
+
DEFAULT_RADIUS_KEY,
|
|
728
|
+
DEFAULT_SHADOW_KEY,
|
|
729
|
+
DEFAULT_STYLE_KEY,
|
|
730
|
+
DEFAULT_SURFACE_STYLE_KEY,
|
|
731
|
+
DEFAULT_THEME_CONFIG,
|
|
732
|
+
DSThemeProvider,
|
|
733
|
+
DS_DARK_CRITICAL_PAIRS,
|
|
734
|
+
DS_LIGHT_CRITICAL_PAIRS,
|
|
735
|
+
DataList,
|
|
736
|
+
DataListDetail,
|
|
737
|
+
DataListTerm,
|
|
738
|
+
DataTable,
|
|
739
|
+
DataTableToolbar,
|
|
740
|
+
DatePicker,
|
|
741
|
+
Dialog,
|
|
742
|
+
DialogBody,
|
|
743
|
+
DialogClose,
|
|
744
|
+
DialogContent,
|
|
745
|
+
DialogDescription,
|
|
746
|
+
DialogFooter,
|
|
747
|
+
DialogHeader,
|
|
748
|
+
DialogTitle,
|
|
749
|
+
DialogTrigger,
|
|
750
|
+
Divider,
|
|
751
|
+
Drawer,
|
|
752
|
+
DrawerBody,
|
|
753
|
+
DrawerClose,
|
|
754
|
+
DrawerContent,
|
|
755
|
+
DrawerDescription,
|
|
756
|
+
DrawerFooter,
|
|
757
|
+
DrawerHandle,
|
|
758
|
+
DrawerHeader,
|
|
759
|
+
DrawerTitle,
|
|
760
|
+
DrawerTrigger,
|
|
761
|
+
DropdownMenu,
|
|
762
|
+
DropdownMenuCheckboxItem,
|
|
763
|
+
DropdownMenuContent,
|
|
764
|
+
DropdownMenuGroup,
|
|
765
|
+
DropdownMenuItem,
|
|
766
|
+
DropdownMenuLabel,
|
|
767
|
+
DropdownMenuRadioGroup,
|
|
768
|
+
DropdownMenuRadioItem,
|
|
769
|
+
DropdownMenuSeparator,
|
|
770
|
+
DropdownMenuShortcut,
|
|
771
|
+
DropdownMenuSub,
|
|
772
|
+
DropdownMenuSubContent,
|
|
773
|
+
DropdownMenuSubTrigger,
|
|
774
|
+
DropdownMenuTrigger,
|
|
775
|
+
EmptyState,
|
|
776
|
+
FONT_PRESETS,
|
|
777
|
+
FileUpload,
|
|
778
|
+
FormField,
|
|
779
|
+
Label as FormLabel,
|
|
780
|
+
Grid,
|
|
781
|
+
Heading,
|
|
782
|
+
HoverCard,
|
|
783
|
+
HoverCardContent,
|
|
784
|
+
HoverCardTrigger,
|
|
785
|
+
ImageGallery,
|
|
786
|
+
InfiniteScroll,
|
|
787
|
+
InlineCode2 as InlineCode,
|
|
788
|
+
Input,
|
|
789
|
+
InputGroup,
|
|
790
|
+
Kbd,
|
|
791
|
+
Label2 as Label,
|
|
792
|
+
MENU_ACCENT_PRESETS,
|
|
793
|
+
MENU_COLOR_PRESETS,
|
|
794
|
+
Markdown,
|
|
795
|
+
Menubar,
|
|
796
|
+
MenubarCheckboxItem,
|
|
797
|
+
MenubarContent,
|
|
798
|
+
MenubarGroup,
|
|
799
|
+
MenubarItem,
|
|
800
|
+
MenubarLabel,
|
|
801
|
+
MenubarMenu,
|
|
802
|
+
MenubarRadioGroup,
|
|
803
|
+
MenubarRadioItem,
|
|
804
|
+
MenubarSeparator,
|
|
805
|
+
MenubarShortcut,
|
|
806
|
+
MenubarSub,
|
|
807
|
+
MenubarSubContent,
|
|
808
|
+
MenubarSubTrigger,
|
|
809
|
+
MenubarTrigger,
|
|
810
|
+
MotionSafe,
|
|
811
|
+
NavigationMenu,
|
|
812
|
+
NavigationMenuCardLink,
|
|
813
|
+
NavigationMenuContent,
|
|
814
|
+
NavigationMenuIndicator,
|
|
815
|
+
NavigationMenuItem,
|
|
816
|
+
NavigationMenuLink,
|
|
817
|
+
NavigationMenuList,
|
|
818
|
+
NavigationMenuTrigger,
|
|
819
|
+
NavigationMenuViewport,
|
|
820
|
+
NumberInput,
|
|
821
|
+
Overline,
|
|
822
|
+
Pagination,
|
|
823
|
+
PinInput,
|
|
824
|
+
Popover,
|
|
825
|
+
PopoverArrow,
|
|
826
|
+
PopoverClose,
|
|
827
|
+
PopoverContent,
|
|
828
|
+
PopoverTrigger,
|
|
829
|
+
Progress,
|
|
830
|
+
RADIUS_PRESETS,
|
|
831
|
+
RadioCard,
|
|
832
|
+
RadioGroup,
|
|
833
|
+
RadioGroupItem,
|
|
834
|
+
ResizableHandle,
|
|
835
|
+
ResizablePanel,
|
|
836
|
+
ResizablePanelGroup,
|
|
837
|
+
SHADOW_PRESETS,
|
|
838
|
+
STYLE_PRESETS,
|
|
839
|
+
SURFACE_STYLE_PRESETS,
|
|
840
|
+
ScrollArea,
|
|
841
|
+
ScrollBar,
|
|
842
|
+
SearchInput,
|
|
843
|
+
Select,
|
|
844
|
+
SelectContent,
|
|
845
|
+
SelectGroup,
|
|
846
|
+
SelectItem,
|
|
847
|
+
SelectLabel,
|
|
848
|
+
SelectScrollDownButton,
|
|
849
|
+
SelectScrollUpButton,
|
|
850
|
+
SelectSeparator,
|
|
851
|
+
SelectTrigger,
|
|
852
|
+
SelectValue,
|
|
853
|
+
Separator,
|
|
854
|
+
Sheet,
|
|
855
|
+
SheetClose,
|
|
856
|
+
SheetContent,
|
|
857
|
+
SheetDescription,
|
|
858
|
+
SheetFooter,
|
|
859
|
+
SheetHeader,
|
|
860
|
+
SheetTitle,
|
|
861
|
+
SheetTrigger,
|
|
862
|
+
Sidebar,
|
|
863
|
+
SidebarContent,
|
|
864
|
+
SidebarFooter,
|
|
865
|
+
SidebarGroup,
|
|
866
|
+
SidebarGroupAction,
|
|
867
|
+
SidebarGroupContent,
|
|
868
|
+
SidebarGroupLabel,
|
|
869
|
+
SidebarHeader,
|
|
870
|
+
SidebarInput,
|
|
871
|
+
SidebarInset,
|
|
872
|
+
SidebarItem,
|
|
873
|
+
SidebarMenu,
|
|
874
|
+
SidebarMenuAction,
|
|
875
|
+
SidebarMenuBadge,
|
|
876
|
+
SidebarMenuButton,
|
|
877
|
+
SidebarMenuItem,
|
|
878
|
+
SidebarMenuSkeleton,
|
|
879
|
+
SidebarMenuSub,
|
|
880
|
+
SidebarMenuSubButton,
|
|
881
|
+
SidebarMenuSubItem,
|
|
882
|
+
SidebarMobileOverlay,
|
|
883
|
+
SidebarProvider,
|
|
884
|
+
SidebarRail,
|
|
885
|
+
SidebarSection,
|
|
886
|
+
SidebarSeparator,
|
|
887
|
+
SidebarToggle,
|
|
888
|
+
SidebarTrigger,
|
|
889
|
+
Skeleton,
|
|
890
|
+
SkeletonCircle,
|
|
891
|
+
SkeletonRect,
|
|
892
|
+
SkeletonText,
|
|
893
|
+
Slider,
|
|
894
|
+
SonnerToaster,
|
|
895
|
+
Spinner,
|
|
896
|
+
Stack,
|
|
897
|
+
Stat,
|
|
898
|
+
Step,
|
|
899
|
+
Steps,
|
|
900
|
+
Subheading,
|
|
901
|
+
Switch,
|
|
902
|
+
Table,
|
|
903
|
+
TableBody,
|
|
904
|
+
TableCaption,
|
|
905
|
+
TableCell,
|
|
906
|
+
TableFooter,
|
|
907
|
+
TableHead,
|
|
908
|
+
TableHeader,
|
|
909
|
+
TableRow,
|
|
910
|
+
Tabs,
|
|
911
|
+
TabsContent,
|
|
912
|
+
TabsList,
|
|
913
|
+
TabsTrigger,
|
|
914
|
+
Tag,
|
|
915
|
+
Textarea,
|
|
916
|
+
ThemeCustomizer,
|
|
917
|
+
ThemeCustomizerProvider,
|
|
918
|
+
ThemeToggle,
|
|
919
|
+
Timeline,
|
|
920
|
+
TimelineItem,
|
|
921
|
+
ToastItem,
|
|
922
|
+
ToastProvider,
|
|
923
|
+
Toggle,
|
|
924
|
+
ToggleGroup,
|
|
925
|
+
ToggleGroupItem,
|
|
926
|
+
Tooltip,
|
|
927
|
+
TooltipProvider,
|
|
928
|
+
TreeView,
|
|
929
|
+
Typography,
|
|
930
|
+
UNIFIED_UI_VERSION,
|
|
931
|
+
VideoPlayer,
|
|
932
|
+
VirtualList,
|
|
933
|
+
VisuallyHidden,
|
|
934
|
+
WCAG_AAA_LARGE,
|
|
935
|
+
WCAG_AAA_NORMAL,
|
|
936
|
+
WCAG_AA_LARGE,
|
|
937
|
+
WCAG_AA_NORMAL,
|
|
938
|
+
WCAG_NON_TEXT_AA,
|
|
939
|
+
accordionRootVariants,
|
|
940
|
+
accordionTriggerVariants,
|
|
941
|
+
alertVariants,
|
|
942
|
+
amber,
|
|
943
|
+
auditContrast,
|
|
944
|
+
avatarVariants,
|
|
945
|
+
badgeVariants,
|
|
946
|
+
bannerVariants,
|
|
947
|
+
blue,
|
|
948
|
+
blurIn,
|
|
949
|
+
blurInSubtle,
|
|
950
|
+
brand,
|
|
951
|
+
buildDarkThemeVars,
|
|
952
|
+
buildLightThemeVars,
|
|
953
|
+
buildThemeCSS,
|
|
954
|
+
buildThemeOverrides,
|
|
955
|
+
buttonVariants,
|
|
956
|
+
calendarDayVariants,
|
|
957
|
+
calloutVariants,
|
|
958
|
+
cardVariants,
|
|
959
|
+
chartColors,
|
|
960
|
+
checkDSContrast,
|
|
961
|
+
checkHexContrast,
|
|
962
|
+
checkboxVariants,
|
|
963
|
+
cn,
|
|
964
|
+
codeBlockVariants,
|
|
965
|
+
comboboxTriggerVariants,
|
|
966
|
+
composeRefs,
|
|
967
|
+
contract,
|
|
968
|
+
contrastRatio,
|
|
969
|
+
copyButtonVariants,
|
|
970
|
+
countUp,
|
|
971
|
+
createColumnHelper,
|
|
972
|
+
crossfade,
|
|
973
|
+
cssVar,
|
|
974
|
+
dataListVariants,
|
|
975
|
+
dialogContentVariants,
|
|
976
|
+
dragDismiss,
|
|
977
|
+
drawerContentVariants,
|
|
978
|
+
dsAttr,
|
|
979
|
+
dsColorVar,
|
|
980
|
+
dsDataAttrs,
|
|
981
|
+
dsStateAttr,
|
|
982
|
+
dsVar,
|
|
983
|
+
duration,
|
|
984
|
+
durationCSS,
|
|
985
|
+
durationSeconds,
|
|
986
|
+
easing,
|
|
987
|
+
easingCSS,
|
|
988
|
+
expandHeight,
|
|
989
|
+
expandHeightSlow,
|
|
990
|
+
fadeIn,
|
|
991
|
+
fadeInFast,
|
|
992
|
+
fadeInSlow,
|
|
993
|
+
fileUploadZoneVariants,
|
|
994
|
+
focusRingClassList,
|
|
995
|
+
focusRingClasses,
|
|
996
|
+
focusRingCompactClassList,
|
|
997
|
+
focusRingCompactClasses,
|
|
998
|
+
focusRingGroupRingClasses,
|
|
999
|
+
focusRingGroupTriggerClasses,
|
|
1000
|
+
focusRingInsetClassList,
|
|
1001
|
+
focusRingInsetClasses,
|
|
1002
|
+
focusRingVariantOverrides,
|
|
1003
|
+
focusWithinRingClassList,
|
|
1004
|
+
focusWithinRingClasses,
|
|
1005
|
+
fontFamily,
|
|
1006
|
+
fontSize,
|
|
1007
|
+
fontWeight,
|
|
1008
|
+
labelVariants as formLabelVariants,
|
|
1009
|
+
generateThemeCSS,
|
|
1010
|
+
getColorPreset,
|
|
1011
|
+
getFontPreset,
|
|
1012
|
+
getMenuAccentPreset,
|
|
1013
|
+
getMenuColorPreset,
|
|
1014
|
+
getRadiusPreset,
|
|
1015
|
+
getShadowPreset,
|
|
1016
|
+
getStylePreset,
|
|
1017
|
+
gray,
|
|
1018
|
+
green,
|
|
1019
|
+
hoverLift,
|
|
1020
|
+
hoverScale,
|
|
1021
|
+
inlineCodeVariants,
|
|
1022
|
+
inputVariants,
|
|
1023
|
+
kbdVariants,
|
|
1024
|
+
letterSpacing,
|
|
1025
|
+
lineHeight,
|
|
1026
|
+
meetsAA,
|
|
1027
|
+
meetsAAA,
|
|
1028
|
+
meetsNonTextAA,
|
|
1029
|
+
mergeSlots,
|
|
1030
|
+
modalContent,
|
|
1031
|
+
modalContentSpring,
|
|
1032
|
+
motionProps,
|
|
1033
|
+
neutral,
|
|
1034
|
+
noop,
|
|
1035
|
+
numberInputVariants,
|
|
1036
|
+
numberRoll,
|
|
1037
|
+
overlayBackdrop,
|
|
1038
|
+
paginationButtonVariants,
|
|
1039
|
+
palettes,
|
|
1040
|
+
parseHex,
|
|
1041
|
+
parseRGBString,
|
|
1042
|
+
pinCellVariants,
|
|
1043
|
+
pop,
|
|
1044
|
+
popSubtle,
|
|
1045
|
+
press,
|
|
1046
|
+
progressIndicatorVariants,
|
|
1047
|
+
progressTrackVariants,
|
|
1048
|
+
pulse,
|
|
1049
|
+
pure,
|
|
1050
|
+
radioCardVariants,
|
|
1051
|
+
radioGroupVariants,
|
|
1052
|
+
radioIndicatorVariants,
|
|
1053
|
+
radius,
|
|
1054
|
+
red,
|
|
1055
|
+
reduceMotion,
|
|
1056
|
+
relativeLuminance,
|
|
1057
|
+
revealMask,
|
|
1058
|
+
scaleIn,
|
|
1059
|
+
scaleInLg,
|
|
1060
|
+
scaleInSpring,
|
|
1061
|
+
scrollbarThumbVariants,
|
|
1062
|
+
scrollbarVariants,
|
|
1063
|
+
searchInputVariants,
|
|
1064
|
+
selectTriggerVariants,
|
|
1065
|
+
semanticDark,
|
|
1066
|
+
semanticLight,
|
|
1067
|
+
separatorVariants,
|
|
1068
|
+
shadow,
|
|
1069
|
+
shadowDark,
|
|
1070
|
+
shakeX,
|
|
1071
|
+
sheetContentVariants,
|
|
1072
|
+
skeletonVariants,
|
|
1073
|
+
slate,
|
|
1074
|
+
slideDown,
|
|
1075
|
+
slideDownSm,
|
|
1076
|
+
slideInFromBottom,
|
|
1077
|
+
slideInFromLeft,
|
|
1078
|
+
slideInFromRight,
|
|
1079
|
+
slideLeft,
|
|
1080
|
+
slidePanelBottom,
|
|
1081
|
+
slidePanelLeft,
|
|
1082
|
+
slidePanelRight,
|
|
1083
|
+
slidePanelTop,
|
|
1084
|
+
slideRight,
|
|
1085
|
+
slideUp,
|
|
1086
|
+
slideUpLg,
|
|
1087
|
+
slideUpSm,
|
|
1088
|
+
slideUpSpring,
|
|
1089
|
+
sliderRangeVariants,
|
|
1090
|
+
sliderThumbVariants,
|
|
1091
|
+
sliderTrackVariants,
|
|
1092
|
+
spacing,
|
|
1093
|
+
spin,
|
|
1094
|
+
spinnerVariants,
|
|
1095
|
+
spring,
|
|
1096
|
+
springHover,
|
|
1097
|
+
springPress,
|
|
1098
|
+
stagger,
|
|
1099
|
+
staggerContainer,
|
|
1100
|
+
staggerContainerFast,
|
|
1101
|
+
staggerContainerSlow,
|
|
1102
|
+
statVariants,
|
|
1103
|
+
switchThumbVariants,
|
|
1104
|
+
switchTrackVariants,
|
|
1105
|
+
tableRootVariants,
|
|
1106
|
+
tabsListVariants,
|
|
1107
|
+
tabsTriggerVariants,
|
|
1108
|
+
tagVariants,
|
|
1109
|
+
tapScale,
|
|
1110
|
+
teal,
|
|
1111
|
+
textareaVariants,
|
|
1112
|
+
toRGBString,
|
|
1113
|
+
toast,
|
|
1114
|
+
toastSlideIn,
|
|
1115
|
+
toastSlideUp,
|
|
1116
|
+
toastVariants,
|
|
1117
|
+
toggleGroupItemVariants,
|
|
1118
|
+
toggleGroupVariants,
|
|
1119
|
+
toggleVariants,
|
|
1120
|
+
typedKeys,
|
|
1121
|
+
typographyVariants,
|
|
1122
|
+
useCarouselContext,
|
|
1123
|
+
useCheckboxGroupContext,
|
|
1124
|
+
useCollapsibleContext,
|
|
1125
|
+
useDSTheme,
|
|
1126
|
+
useDataTable,
|
|
1127
|
+
useMotion,
|
|
1128
|
+
useMotionProps,
|
|
1129
|
+
useMotionSpringConfig,
|
|
1130
|
+
useReducedMotion,
|
|
1131
|
+
useSidebar,
|
|
1132
|
+
useSidebarContext,
|
|
1133
|
+
useThemeCustomizer,
|
|
1134
|
+
useToast,
|
|
1135
|
+
useToggleGroupContext,
|
|
1136
|
+
withReducedMotion,
|
|
1137
|
+
zIndex,
|
|
1138
|
+
zinc
|
|
1139
|
+
};
|