mainbase-ui 1.2.5 → 3.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +66 -23
- package/dist/cjs/anatomy.cjs +349 -0
- package/dist/cjs/collection.cjs +22 -0
- package/dist/cjs/components/absolute-center/absolute-center.cjs +42 -0
- package/dist/cjs/components/absolute-center/index.cjs +7 -0
- package/dist/cjs/components/accordion/accordion.cjs +48 -0
- package/dist/cjs/components/accordion/index.cjs +32 -0
- package/dist/cjs/components/accordion/namespace.cjs +16 -0
- package/dist/cjs/components/action-bar/action-bar.cjs +46 -0
- package/dist/cjs/components/action-bar/index.cjs +27 -0
- package/dist/cjs/components/action-bar/namespace.cjs +15 -0
- package/dist/cjs/components/alert/alert.cjs +69 -0
- package/dist/cjs/components/alert/index.cjs +15 -0
- package/dist/cjs/components/alert/namespace.cjs +12 -0
- package/dist/cjs/components/aspect-ratio/aspect-ratio.cjs +54 -0
- package/dist/cjs/components/aspect-ratio/index.cjs +7 -0
- package/dist/cjs/components/avatar/avatar.cjs +105 -0
- package/dist/cjs/components/avatar/index.cjs +26 -0
- package/dist/cjs/components/avatar/namespace.cjs +13 -0
- package/dist/cjs/components/badge/badge.cjs +15 -0
- package/dist/cjs/components/badge/index.cjs +8 -0
- package/dist/cjs/components/bleed/bleed.cjs +47 -0
- package/dist/cjs/components/bleed/index.cjs +7 -0
- package/dist/cjs/components/blockquote/blockquote.cjs +30 -0
- package/dist/cjs/components/blockquote/index.cjs +14 -0
- package/dist/cjs/components/blockquote/namespace.cjs +11 -0
- package/dist/cjs/components/box/index.cjs +9 -0
- package/dist/cjs/components/breadcrumb/breadcrumb.cjs +58 -0
- package/dist/cjs/components/breadcrumb/index.cjs +17 -0
- package/dist/cjs/components/breadcrumb/namespace.cjs +14 -0
- package/dist/cjs/components/button/button-group.cjs +21 -0
- package/dist/cjs/components/button/button.cjs +60 -0
- package/dist/cjs/components/button/close-button.cjs +31 -0
- package/dist/cjs/components/button/icon-button.cjs +23 -0
- package/dist/cjs/components/button/index.cjs +14 -0
- package/dist/cjs/components/card/card.cjs +42 -0
- package/dist/cjs/components/card/index.cjs +16 -0
- package/dist/cjs/components/card/namespace.cjs +13 -0
- package/dist/cjs/components/carousel/carousel.cjs +81 -0
- package/dist/cjs/components/carousel/index.cjs +33 -0
- package/dist/cjs/components/carousel/namespace.cjs +21 -0
- package/dist/cjs/components/center/center.cjs +22 -0
- package/dist/cjs/components/center/index.cjs +7 -0
- package/dist/cjs/components/checkbox/checkbox.cjs +100 -0
- package/dist/cjs/components/checkbox/index.cjs +35 -0
- package/dist/cjs/components/checkbox/namespace.cjs +15 -0
- package/dist/cjs/components/checkbox-card/checkbox-card.cjs +71 -0
- package/dist/cjs/components/checkbox-card/index.cjs +29 -0
- package/dist/cjs/components/checkbox-card/namespace.cjs +17 -0
- package/dist/cjs/components/checkmark/checkmark.cjs +46 -0
- package/dist/cjs/components/checkmark/index.cjs +7 -0
- package/dist/cjs/components/circle/index.cjs +15 -0
- package/dist/cjs/components/client-only/client-only.cjs +16 -0
- package/dist/cjs/components/client-only/index.cjs +7 -0
- package/dist/cjs/components/clipboard/clipboard.cjs +50 -0
- package/dist/cjs/components/clipboard/index.cjs +29 -0
- package/dist/cjs/components/clipboard/namespace.cjs +17 -0
- package/dist/cjs/components/code/code.cjs +13 -0
- package/dist/cjs/components/code/index.cjs +8 -0
- package/dist/cjs/components/code-block/adapters.cjs +100 -0
- package/dist/cjs/components/code-block/code-block-adapter-context.cjs +17 -0
- package/dist/cjs/components/code-block/code-block-adapter-provider.cjs +13 -0
- package/dist/cjs/components/code-block/code-block-context.cjs +12 -0
- package/dist/cjs/components/code-block/code-block.cjs +262 -0
- package/dist/cjs/components/code-block/index.cjs +29 -0
- package/dist/cjs/components/code-block/namespace.cjs +23 -0
- package/dist/cjs/components/code-block/types.cjs +2 -0
- package/dist/cjs/components/code-block/use-code-highlight.cjs +30 -0
- package/dist/cjs/components/collapsible/collapsible.cjs +28 -0
- package/dist/cjs/components/collapsible/index.cjs +25 -0
- package/dist/cjs/components/collapsible/namespace.cjs +13 -0
- package/dist/cjs/components/color-picker/color-picker.cjs +141 -0
- package/dist/cjs/components/color-picker/index.cjs +57 -0
- package/dist/cjs/components/color-picker/namespace.cjs +40 -0
- package/dist/cjs/components/color-swatch/index.cjs +57 -0
- package/dist/cjs/components/combobox/combobox.cjs +97 -0
- package/dist/cjs/components/combobox/index.cjs +42 -0
- package/dist/cjs/components/combobox/namespace.cjs +27 -0
- package/dist/cjs/components/container/container.cjs +13 -0
- package/dist/cjs/components/container/index.cjs +8 -0
- package/dist/cjs/components/data-list/data-list.cjs +29 -0
- package/dist/cjs/components/data-list/index.cjs +14 -0
- package/dist/cjs/components/data-list/namespace.cjs +11 -0
- package/dist/cjs/components/date-picker/date-picker.cjs +182 -0
- package/dist/cjs/components/date-picker/index.cjs +61 -0
- package/dist/cjs/components/date-picker/namespace.cjs +47 -0
- package/dist/cjs/components/dialog/dialog.cjs +81 -0
- package/dist/cjs/components/dialog/index.cjs +33 -0
- package/dist/cjs/components/dialog/namespace.cjs +21 -0
- package/dist/cjs/components/download-trigger/index.cjs +14 -0
- package/dist/cjs/components/drawer/drawer.cjs +81 -0
- package/dist/cjs/components/drawer/index.cjs +33 -0
- package/dist/cjs/components/drawer/namespace.cjs +21 -0
- package/dist/cjs/components/editable/editable.cjs +64 -0
- package/dist/cjs/components/editable/index.cjs +30 -0
- package/dist/cjs/components/editable/namespace.cjs +19 -0
- package/dist/cjs/components/em/index.cjs +13 -0
- package/dist/cjs/components/empty-state/empty-state.cjs +28 -0
- package/dist/cjs/components/empty-state/index.cjs +15 -0
- package/dist/cjs/components/empty-state/namespace.cjs +12 -0
- package/dist/cjs/components/environment/index.cjs +14 -0
- package/dist/cjs/components/field/field.cjs +69 -0
- package/dist/cjs/components/field/index.cjs +29 -0
- package/dist/cjs/components/field/namespace.cjs +22 -0
- package/dist/cjs/components/fieldset/fieldset.cjs +23 -0
- package/dist/cjs/components/fieldset/index.cjs +19 -0
- package/dist/cjs/components/fieldset/namespace.cjs +12 -0
- package/dist/cjs/components/file-upload/file-upload.cjs +121 -0
- package/dist/cjs/components/file-upload/index.cjs +39 -0
- package/dist/cjs/components/file-upload/namespace.cjs +27 -0
- package/dist/cjs/components/flex/flex.cjs +42 -0
- package/dist/cjs/components/flex/index.cjs +7 -0
- package/dist/cjs/components/float/float.cjs +75 -0
- package/dist/cjs/components/float/index.cjs +7 -0
- package/dist/cjs/components/floating-panel/floating-panel.cjs +57 -0
- package/dist/cjs/components/floating-panel/index.cjs +37 -0
- package/dist/cjs/components/floating-panel/namespace.cjs +26 -0
- package/dist/cjs/components/focus-trap/focus-trap.cjs +9 -0
- package/dist/cjs/components/focus-trap/index.cjs +7 -0
- package/dist/cjs/components/for/for.cjs +11 -0
- package/dist/cjs/components/for/index.cjs +7 -0
- package/dist/cjs/components/format/index.cjs +9 -0
- package/dist/cjs/components/grid/grid-item.cjs +46 -0
- package/dist/cjs/components/grid/grid.cjs +46 -0
- package/dist/cjs/components/grid/index.cjs +9 -0
- package/dist/cjs/components/group/group.cjs +147 -0
- package/dist/cjs/components/group/index.cjs +7 -0
- package/dist/cjs/components/heading/index.cjs +13 -0
- package/dist/cjs/components/highlight/highlight.cjs +25 -0
- package/dist/cjs/components/highlight/index.cjs +12 -0
- package/dist/cjs/components/hover-card/hover-card.cjs +41 -0
- package/dist/cjs/components/hover-card/index.cjs +27 -0
- package/dist/cjs/components/hover-card/namespace.cjs +15 -0
- package/dist/cjs/components/icon/create-icon.cjs +30 -0
- package/dist/cjs/components/icon/icon.cjs +53 -0
- package/dist/cjs/components/icon/index.cjs +10 -0
- package/dist/cjs/components/icons.cjs +239 -0
- package/dist/cjs/components/image/image.cjs +26 -0
- package/dist/cjs/components/image/index.cjs +7 -0
- package/dist/cjs/components/index.cjs +1588 -0
- package/dist/cjs/components/input/index.cjs +8 -0
- package/dist/cjs/components/input/input.cjs +14 -0
- package/dist/cjs/components/input-addon/index.cjs +7 -0
- package/dist/cjs/components/input-addon/input-addon.cjs +18 -0
- package/dist/cjs/components/input-element/index.cjs +7 -0
- package/dist/cjs/components/input-element/input-element.cjs +30 -0
- package/dist/cjs/components/input-group/index.cjs +7 -0
- package/dist/cjs/components/input-group/input-group.cjs +51 -0
- package/dist/cjs/components/kbd/index.cjs +7 -0
- package/dist/cjs/components/kbd/kbd.cjs +13 -0
- package/dist/cjs/components/link/index.cjs +11 -0
- package/dist/cjs/components/link/link-box.cjs +65 -0
- package/dist/cjs/components/link/link.cjs +13 -0
- package/dist/cjs/components/list/index.cjs +13 -0
- package/dist/cjs/components/list/list.cjs +28 -0
- package/dist/cjs/components/list/namespace.cjs +10 -0
- package/dist/cjs/components/listbox/index.cjs +37 -0
- package/dist/cjs/components/listbox/listbox.cjs +78 -0
- package/dist/cjs/components/listbox/namespace.cjs +21 -0
- package/dist/cjs/components/loader/index.cjs +9 -0
- package/dist/cjs/components/loader/loader-overlay.cjs +19 -0
- package/dist/cjs/components/loader/loader.cjs +49 -0
- package/dist/cjs/components/locale/index.cjs +18 -0
- package/dist/cjs/components/mark/index.cjs +13 -0
- package/dist/cjs/components/marquee/index.cjs +25 -0
- package/dist/cjs/components/marquee/marquee.cjs +42 -0
- package/dist/cjs/components/marquee/namespace.cjs +13 -0
- package/dist/cjs/components/menu/index.cjs +45 -0
- package/dist/cjs/components/menu/menu.cjs +115 -0
- package/dist/cjs/components/menu/namespace.cjs +29 -0
- package/dist/cjs/components/native-select/index.cjs +13 -0
- package/dist/cjs/components/native-select/namespace.cjs +10 -0
- package/dist/cjs/components/native-select/native-select.cjs +77 -0
- package/dist/cjs/components/number-input/index.cjs +29 -0
- package/dist/cjs/components/number-input/namespace.cjs +17 -0
- package/dist/cjs/components/number-input/number-input.cjs +48 -0
- package/dist/cjs/components/pagination/index.cjs +28 -0
- package/dist/cjs/components/pagination/namespace.cjs +16 -0
- package/dist/cjs/components/pagination/pagination.cjs +80 -0
- package/dist/cjs/components/pin-input/index.cjs +26 -0
- package/dist/cjs/components/pin-input/namespace.cjs +14 -0
- package/dist/cjs/components/pin-input/pin-input.cjs +42 -0
- package/dist/cjs/components/popover/index.cjs +34 -0
- package/dist/cjs/components/popover/namespace.cjs +23 -0
- package/dist/cjs/components/popover/popover.cjs +78 -0
- package/dist/cjs/components/portal/index.cjs +10 -0
- package/dist/cjs/components/presence/index.cjs +9 -0
- package/dist/cjs/components/progress/index.cjs +26 -0
- package/dist/cjs/components/progress/namespace.cjs +14 -0
- package/dist/cjs/components/progress/progress.cjs +45 -0
- package/dist/cjs/components/progress-circle/index.cjs +18 -0
- package/dist/cjs/components/progress-circle/namespace.cjs +14 -0
- package/dist/cjs/components/progress-circle/progress-circle.cjs +32 -0
- package/dist/cjs/components/qr-code/index.cjs +24 -0
- package/dist/cjs/components/qr-code/namespace.cjs +18 -0
- package/dist/cjs/components/qr-code/qr-code.cjs +47 -0
- package/dist/cjs/components/quote/index.cjs +14 -0
- package/dist/cjs/components/radio-card/index.cjs +35 -0
- package/dist/cjs/components/radio-card/namespace.cjs +20 -0
- package/dist/cjs/components/radio-card/radio-card.cjs +105 -0
- package/dist/cjs/components/radio-group/index.cjs +32 -0
- package/dist/cjs/components/radio-group/namespace.cjs +17 -0
- package/dist/cjs/components/radio-group/radio-group.cjs +59 -0
- package/dist/cjs/components/radiomark/index.cjs +7 -0
- package/dist/cjs/components/radiomark/radiomark.cjs +29 -0
- package/dist/cjs/components/rating-group/index.cjs +33 -0
- package/dist/cjs/components/rating-group/namespace.cjs +18 -0
- package/dist/cjs/components/rating-group/rating-group.cjs +68 -0
- package/dist/cjs/components/scroll-area/index.cjs +27 -0
- package/dist/cjs/components/scroll-area/namespace.cjs +15 -0
- package/dist/cjs/components/scroll-area/scroll-area.cjs +41 -0
- package/dist/cjs/components/segment-group/index.cjs +32 -0
- package/dist/cjs/components/segment-group/namespace.cjs +16 -0
- package/dist/cjs/components/segment-group/segment-group.cjs +62 -0
- package/dist/cjs/components/select/index.cjs +43 -0
- package/dist/cjs/components/select/namespace.cjs +27 -0
- package/dist/cjs/components/select/select.cjs +107 -0
- package/dist/cjs/components/separator/index.cjs +8 -0
- package/dist/cjs/components/separator/separator.cjs +36 -0
- package/dist/cjs/components/show/index.cjs +7 -0
- package/dist/cjs/components/show/show.cjs +16 -0
- package/dist/cjs/components/simple-grid/index.cjs +7 -0
- package/dist/cjs/components/simple-grid/simple-grid.cjs +36 -0
- package/dist/cjs/components/skeleton/index.cjs +10 -0
- package/dist/cjs/components/skeleton/skeleton.cjs +61 -0
- package/dist/cjs/components/skip-nav/index.cjs +9 -0
- package/dist/cjs/components/skip-nav/skip-nav-content.cjs +25 -0
- package/dist/cjs/components/skip-nav/skip-nav-link.cjs +29 -0
- package/dist/cjs/components/slider/index.cjs +34 -0
- package/dist/cjs/components/slider/namespace.cjs +24 -0
- package/dist/cjs/components/slider/slider.cjs +93 -0
- package/dist/cjs/components/spacer/index.cjs +7 -0
- package/dist/cjs/components/spacer/spacer.cjs +15 -0
- package/dist/cjs/components/span/index.cjs +9 -0
- package/dist/cjs/components/spinner/index.cjs +8 -0
- package/dist/cjs/components/spinner/spinner.cjs +13 -0
- package/dist/cjs/components/splitter/index.cjs +34 -0
- package/dist/cjs/components/splitter/namespace.cjs +14 -0
- package/dist/cjs/components/splitter/splitter.cjs +46 -0
- package/dist/cjs/components/square/index.cjs +30 -0
- package/dist/cjs/components/stack/get-separator-style.cjs +40 -0
- package/dist/cjs/components/stack/h-stack.cjs +14 -0
- package/dist/cjs/components/stack/index.cjs +13 -0
- package/dist/cjs/components/stack/stack-separator.cjs +17 -0
- package/dist/cjs/components/stack/stack.cjs +62 -0
- package/dist/cjs/components/stack/v-stack.cjs +14 -0
- package/dist/cjs/components/stat/index.cjs +18 -0
- package/dist/cjs/components/stat/namespace.cjs +14 -0
- package/dist/cjs/components/stat/stat.cjs +81 -0
- package/dist/cjs/components/status/index.cjs +12 -0
- package/dist/cjs/components/status/namespace.cjs +9 -0
- package/dist/cjs/components/status/status.cjs +22 -0
- package/dist/cjs/components/steps/index.cjs +40 -0
- package/dist/cjs/components/steps/namespace.cjs +24 -0
- package/dist/cjs/components/steps/steps.cjs +99 -0
- package/dist/cjs/components/sticky/index.cjs +14 -0
- package/dist/cjs/components/strong/index.cjs +11 -0
- package/dist/cjs/components/switch/index.cjs +28 -0
- package/dist/cjs/components/switch/namespace.cjs +16 -0
- package/dist/cjs/components/switch/switch.cjs +75 -0
- package/dist/cjs/components/table/index.cjs +21 -0
- package/dist/cjs/components/table/namespace.cjs +18 -0
- package/dist/cjs/components/table/table.cjs +92 -0
- package/dist/cjs/components/tabs/index.cjs +30 -0
- package/dist/cjs/components/tabs/namespace.cjs +19 -0
- package/dist/cjs/components/tabs/tabs.cjs +50 -0
- package/dist/cjs/components/tag/index.cjs +15 -0
- package/dist/cjs/components/tag/namespace.cjs +12 -0
- package/dist/cjs/components/tag/tag.cjs +35 -0
- package/dist/cjs/components/tags-input/index.cjs +36 -0
- package/dist/cjs/components/tags-input/namespace.cjs +22 -0
- package/dist/cjs/components/tags-input/tags-input.cjs +65 -0
- package/dist/cjs/components/text/index.cjs +13 -0
- package/dist/cjs/components/textarea/index.cjs +8 -0
- package/dist/cjs/components/textarea/textarea.cjs +16 -0
- package/dist/cjs/components/theme.cjs +33 -0
- package/dist/cjs/components/timeline/index.cjs +18 -0
- package/dist/cjs/components/timeline/namespace.cjs +15 -0
- package/dist/cjs/components/timeline/timeline.cjs +42 -0
- package/dist/cjs/components/toast/index.cjs +21 -0
- package/dist/cjs/components/toast/namespace.cjs +12 -0
- package/dist/cjs/components/toast/toast.cjs +72 -0
- package/dist/cjs/components/toggle/index.cjs +22 -0
- package/dist/cjs/components/toggle/namespace.cjs +10 -0
- package/dist/cjs/components/toggle/toggle.cjs +31 -0
- package/dist/cjs/components/tooltip/index.cjs +27 -0
- package/dist/cjs/components/tooltip/namespace.cjs +15 -0
- package/dist/cjs/components/tooltip/tooltip.cjs +44 -0
- package/dist/cjs/components/tree-view/index.cjs +54 -0
- package/dist/cjs/components/tree-view/namespace.cjs +39 -0
- package/dist/cjs/components/tree-view/tree-view.cjs +89 -0
- package/dist/cjs/components/visually-hidden/index.cjs +8 -0
- package/dist/cjs/components/visually-hidden/visually-hidden.cjs +23 -0
- package/dist/cjs/components/wrap/index.cjs +8 -0
- package/dist/cjs/components/wrap/wrap.cjs +50 -0
- package/dist/cjs/create-context.cjs +35 -0
- package/dist/cjs/hooks/index.cjs +38 -0
- package/dist/cjs/hooks/use-breakpoint.cjs +47 -0
- package/dist/cjs/hooks/use-callback-ref.cjs +16 -0
- package/dist/cjs/hooks/use-const.cjs +14 -0
- package/dist/cjs/hooks/use-controllable-state.cjs +42 -0
- package/dist/cjs/hooks/use-disclosure.cjs +37 -0
- package/dist/cjs/hooks/use-element-rect.cjs +26 -0
- package/dist/cjs/hooks/use-force-update.cjs +10 -0
- package/dist/cjs/hooks/use-list-collection.cjs +10 -0
- package/dist/cjs/hooks/use-live-ref.cjs +12 -0
- package/dist/cjs/hooks/use-media-query.cjs +56 -0
- package/dist/cjs/hooks/use-overlay.cjs +177 -0
- package/dist/cjs/hooks/use-previous.cjs +16 -0
- package/dist/cjs/hooks/use-safe-layout-effect.cjs +8 -0
- package/dist/cjs/hooks/use-update-effect.cjs +25 -0
- package/dist/cjs/index.cjs +1687 -0
- package/dist/cjs/merge-props.cjs +36 -0
- package/dist/cjs/merge-refs.cjs +70 -0
- package/dist/cjs/preset-base.cjs +1101 -0
- package/dist/cjs/preset.cjs +13 -0
- package/dist/cjs/styled-system/breakpoints.cjs +114 -0
- package/dist/cjs/styled-system/calc.cjs +44 -0
- package/dist/cjs/styled-system/color-mix.cjs +35 -0
- package/dist/cjs/styled-system/composition.cjs +2 -0
- package/dist/cjs/styled-system/conditions.cjs +45 -0
- package/dist/cjs/styled-system/config.cjs +38 -0
- package/dist/cjs/styled-system/create-recipe-context.cjs +76 -0
- package/dist/cjs/styled-system/create-slot-recipe-context.cjs +143 -0
- package/dist/cjs/styled-system/css-var.cjs +20 -0
- package/dist/cjs/styled-system/css.cjs +73 -0
- package/dist/cjs/styled-system/css.types.cjs +2 -0
- package/dist/cjs/styled-system/cva.cjs +126 -0
- package/dist/cjs/styled-system/display-name.cjs +22 -0
- package/dist/cjs/styled-system/empty.cjs +9 -0
- package/dist/cjs/styled-system/esc.cjs +14 -0
- package/dist/cjs/styled-system/expand-reference.cjs +135 -0
- package/dist/cjs/styled-system/factory.cjs +261 -0
- package/dist/cjs/styled-system/factory.types.cjs +2 -0
- package/dist/cjs/styled-system/generated/conditions.gen.cjs +2 -0
- package/dist/cjs/styled-system/generated/prop-types.gen.cjs +2 -0
- package/dist/cjs/styled-system/generated/recipes.gen.cjs +2 -0
- package/dist/cjs/styled-system/generated/system.gen.cjs +2 -0
- package/dist/cjs/styled-system/generated/token.gen.cjs +2 -0
- package/dist/cjs/styled-system/index.cjs +44 -0
- package/dist/cjs/styled-system/layers.cjs +30 -0
- package/dist/cjs/styled-system/map-to-json.cjs +15 -0
- package/dist/cjs/styled-system/merge-config.cjs +44 -0
- package/dist/cjs/styled-system/normalize.cjs +18 -0
- package/dist/cjs/styled-system/preflight.cjs +167 -0
- package/dist/cjs/styled-system/provider.cjs +18 -0
- package/dist/cjs/styled-system/recipe-props.cjs +15 -0
- package/dist/cjs/styled-system/recipe.types.cjs +2 -0
- package/dist/cjs/styled-system/references.cjs +41 -0
- package/dist/cjs/styled-system/resolve-token-value.cjs +28 -0
- package/dist/cjs/styled-system/selectors.cjs +2 -0
- package/dist/cjs/styled-system/serialize.cjs +71 -0
- package/dist/cjs/styled-system/singleton.cjs +15 -0
- package/dist/cjs/styled-system/sort-at-params.cjs +71 -0
- package/dist/cjs/styled-system/sort-at-rules.cjs +35 -0
- package/dist/cjs/styled-system/sva.cjs +87 -0
- package/dist/cjs/styled-system/system.cjs +285 -0
- package/dist/cjs/styled-system/token-dictionary.cjs +440 -0
- package/dist/cjs/styled-system/token-middleware.cjs +152 -0
- package/dist/cjs/styled-system/token-transforms.cjs +81 -0
- package/dist/cjs/styled-system/types.cjs +2 -0
- package/dist/cjs/styled-system/unit-conversion.cjs +58 -0
- package/dist/cjs/styled-system/use-recipe.cjs +17 -0
- package/dist/cjs/styled-system/use-resolved-props.cjs +68 -0
- package/dist/cjs/styled-system/use-slot-recipe.cjs +17 -0
- package/dist/cjs/styled-system/use-token.cjs +15 -0
- package/dist/cjs/styled-system/utility.cjs +176 -0
- package/dist/cjs/theme/breakpoints.cjs +11 -0
- package/dist/cjs/theme/global-css.cjs +58 -0
- package/dist/cjs/theme/index.cjs +237 -0
- package/dist/cjs/theme/layer-styles.cjs +116 -0
- package/dist/cjs/theme/motion-styles.cjs +54 -0
- package/dist/cjs/theme/recipes/accordion.cjs +144 -0
- package/dist/cjs/theme/recipes/action-bar.cjs +86 -0
- package/dist/cjs/theme/recipes/alert.cjs +155 -0
- package/dist/cjs/theme/recipes/avatar.cjs +142 -0
- package/dist/cjs/theme/recipes/badge.cjs +73 -0
- package/dist/cjs/theme/recipes/blockquote.cjs +82 -0
- package/dist/cjs/theme/recipes/breadcrumb.cjs +99 -0
- package/dist/cjs/theme/recipes/button.cjs +184 -0
- package/dist/cjs/theme/recipes/card.cjs +102 -0
- package/dist/cjs/theme/recipes/carousel.cjs +66 -0
- package/dist/cjs/theme/recipes/checkbox-card.cjs +209 -0
- package/dist/cjs/theme/recipes/checkbox.cjs +68 -0
- package/dist/cjs/theme/recipes/checkmark.cjs +95 -0
- package/dist/cjs/theme/recipes/code-block.cjs +227 -0
- package/dist/cjs/theme/recipes/code.cjs +19 -0
- package/dist/cjs/theme/recipes/collapsible.cjs +30 -0
- package/dist/cjs/theme/recipes/color-picker.cjs +262 -0
- package/dist/cjs/theme/recipes/color-swatch.cjs +43 -0
- package/dist/cjs/theme/recipes/combobox.cjs +292 -0
- package/dist/cjs/theme/recipes/container.cjs +30 -0
- package/dist/cjs/theme/recipes/data-list.cjs +98 -0
- package/dist/cjs/theme/recipes/date-picker.cjs +392 -0
- package/dist/cjs/theme/recipes/dialog.cjs +232 -0
- package/dist/cjs/theme/recipes/drawer.cjs +214 -0
- package/dist/cjs/theme/recipes/editable.cjs +88 -0
- package/dist/cjs/theme/recipes/empty-state.cjs +90 -0
- package/dist/cjs/theme/recipes/field.cjs +70 -0
- package/dist/cjs/theme/recipes/fieldset.cjs +64 -0
- package/dist/cjs/theme/recipes/file-upload.cjs +111 -0
- package/dist/cjs/theme/recipes/floating-panel.cjs +80 -0
- package/dist/cjs/theme/recipes/heading.cjs +31 -0
- package/dist/cjs/theme/recipes/hover-card.cjs +71 -0
- package/dist/cjs/theme/recipes/icon.cjs +30 -0
- package/dist/cjs/theme/recipes/input-addon.cjs +45 -0
- package/dist/cjs/theme/recipes/input.cjs +103 -0
- package/dist/cjs/theme/recipes/kbd.cjs +61 -0
- package/dist/cjs/theme/recipes/link.cjs +39 -0
- package/dist/cjs/theme/recipes/list.cjs +66 -0
- package/dist/cjs/theme/recipes/listbox.cjs +132 -0
- package/dist/cjs/theme/recipes/mark.cjs +30 -0
- package/dist/cjs/theme/recipes/marquee.cjs +93 -0
- package/dist/cjs/theme/recipes/menu.cjs +148 -0
- package/dist/cjs/theme/recipes/native-select.cjs +156 -0
- package/dist/cjs/theme/recipes/number-input.cjs +117 -0
- package/dist/cjs/theme/recipes/pin-input.cjs +52 -0
- package/dist/cjs/theme/recipes/popover.cjs +91 -0
- package/dist/cjs/theme/recipes/progress-circle.cjs +96 -0
- package/dist/cjs/theme/recipes/progress.cjs +127 -0
- package/dist/cjs/theme/recipes/qr-code.cjs +64 -0
- package/dist/cjs/theme/recipes/radio-card.cjs +219 -0
- package/dist/cjs/theme/recipes/radio-group.cjs +66 -0
- package/dist/cjs/theme/recipes/radiomark.cjs +106 -0
- package/dist/cjs/theme/recipes/rating-group.cjs +89 -0
- package/dist/cjs/theme/recipes/scroll-area.cjs +140 -0
- package/dist/cjs/theme/recipes/segment-group.cjs +128 -0
- package/dist/cjs/theme/recipes/select.cjs +296 -0
- package/dist/cjs/theme/recipes/separator.cjs +53 -0
- package/dist/cjs/theme/recipes/skeleton.cjs +54 -0
- package/dist/cjs/theme/recipes/skip-nav-link.cjs +36 -0
- package/dist/cjs/theme/recipes/slider.cjs +200 -0
- package/dist/cjs/theme/recipes/spinner.cjs +36 -0
- package/dist/cjs/theme/recipes/splitter.cjs +80 -0
- package/dist/cjs/theme/recipes/stat.cjs +84 -0
- package/dist/cjs/theme/recipes/status.cjs +48 -0
- package/dist/cjs/theme/recipes/steps.cjs +219 -0
- package/dist/cjs/theme/recipes/switch.cjs +164 -0
- package/dist/cjs/theme/recipes/table.cjs +165 -0
- package/dist/cjs/theme/recipes/tabs.cjs +275 -0
- package/dist/cjs/theme/recipes/tag.cjs +130 -0
- package/dist/cjs/theme/recipes/tags-input.cjs +239 -0
- package/dist/cjs/theme/recipes/textarea.cjs +90 -0
- package/dist/cjs/theme/recipes/timeline.cjs +159 -0
- package/dist/cjs/theme/recipes/toast.cjs +102 -0
- package/dist/cjs/theme/recipes/tooltip.cjs +44 -0
- package/dist/cjs/theme/recipes/tree-view.cjs +168 -0
- package/dist/cjs/theme/recipes.cjs +45 -0
- package/dist/cjs/theme/recipes.export.cjs +43 -0
- package/dist/cjs/theme/semantic-tokens/colors.cjs +355 -0
- package/dist/cjs/theme/semantic-tokens/radii.cjs +11 -0
- package/dist/cjs/theme/semantic-tokens/shadows.cjs +56 -0
- package/dist/cjs/theme/slot-recipes.cjs +119 -0
- package/dist/cjs/theme/slot-recipes.export.cjs +115 -0
- package/dist/cjs/theme/text-styles.cjs +50 -0
- package/dist/cjs/theme/tokens/animations.cjs +12 -0
- package/dist/cjs/theme/tokens/aspect-ratios.cjs +14 -0
- package/dist/cjs/theme/tokens/blurs.cjs +16 -0
- package/dist/cjs/theme/tokens/borders.cjs +13 -0
- package/dist/cjs/theme/tokens/colors.cjs +168 -0
- package/dist/cjs/theme/tokens/cursor.cjs +16 -0
- package/dist/cjs/theme/tokens/durations.cjs +15 -0
- package/dist/cjs/theme/tokens/easings.cjs +12 -0
- package/dist/cjs/theme/tokens/font-sizes.cjs +22 -0
- package/dist/cjs/theme/tokens/font-weights.cjs +17 -0
- package/dist/cjs/theme/tokens/fonts.cjs +18 -0
- package/dist/cjs/theme/tokens/keyframes.cjs +171 -0
- package/dist/cjs/theme/tokens/letter-spacing.cjs +13 -0
- package/dist/cjs/theme/tokens/line-heights.cjs +13 -0
- package/dist/cjs/theme/tokens/radius.cjs +19 -0
- package/dist/cjs/theme/tokens/sizes.cjs +71 -0
- package/dist/cjs/theme/tokens/spacing.cjs +42 -0
- package/dist/cjs/theme/tokens/z-indices.cjs +21 -0
- package/dist/cjs/utils/attr.cjs +5 -0
- package/dist/cjs/utils/call-all.cjs +9 -0
- package/dist/cjs/utils/clone.cjs +13 -0
- package/dist/cjs/utils/compact.cjs +11 -0
- package/dist/cjs/utils/create-props.cjs +5 -0
- package/dist/cjs/utils/cx.cjs +16 -0
- package/dist/cjs/utils/entries.cjs +12 -0
- package/dist/cjs/utils/flatten.cjs +19 -0
- package/dist/cjs/utils/index.cjs +46 -0
- package/dist/cjs/utils/interop.cjs +7 -0
- package/dist/cjs/utils/is.cjs +11 -0
- package/dist/cjs/utils/memo.cjs +66 -0
- package/dist/cjs/utils/merge.cjs +35 -0
- package/dist/cjs/utils/omit.cjs +13 -0
- package/dist/cjs/utils/ref.cjs +32 -0
- package/dist/cjs/utils/split-props.cjs +29 -0
- package/dist/cjs/utils/types.cjs +2 -0
- package/dist/cjs/utils/uniq.cjs +11 -0
- package/dist/cjs/utils/unit.cjs +10 -0
- package/dist/cjs/utils/walk-object.cjs +40 -0
- package/dist/esm/anatomy.js +244 -0
- package/dist/esm/collection.js +1 -0
- package/dist/esm/components/absolute-center/absolute-center.js +40 -0
- package/dist/esm/components/absolute-center/index.js +1 -0
- package/dist/esm/components/accordion/accordion.js +36 -0
- package/dist/esm/components/accordion/index.js +4 -0
- package/dist/esm/components/accordion/namespace.js +1 -0
- package/dist/esm/components/action-bar/action-bar.js +35 -0
- package/dist/esm/components/action-bar/index.js +4 -0
- package/dist/esm/components/action-bar/namespace.js +1 -0
- package/dist/esm/components/alert/alert.js +59 -0
- package/dist/esm/components/alert/index.js +3 -0
- package/dist/esm/components/alert/namespace.js +1 -0
- package/dist/esm/components/aspect-ratio/aspect-ratio.js +52 -0
- package/dist/esm/components/aspect-ratio/index.js +1 -0
- package/dist/esm/components/avatar/avatar.js +95 -0
- package/dist/esm/components/avatar/index.js +4 -0
- package/dist/esm/components/avatar/namespace.js +1 -0
- package/dist/esm/components/badge/badge.js +10 -0
- package/dist/esm/components/badge/index.js +1 -0
- package/dist/esm/components/bleed/bleed.js +45 -0
- package/dist/esm/components/bleed/index.js +1 -0
- package/dist/esm/components/blockquote/blockquote.js +23 -0
- package/dist/esm/components/blockquote/index.js +3 -0
- package/dist/esm/components/blockquote/namespace.js +1 -0
- package/dist/esm/components/box/index.js +7 -0
- package/dist/esm/components/breadcrumb/breadcrumb.js +48 -0
- package/dist/esm/components/breadcrumb/index.js +3 -0
- package/dist/esm/components/breadcrumb/namespace.js +1 -0
- package/dist/esm/components/button/button-group.js +19 -0
- package/dist/esm/components/button/button.js +57 -0
- package/dist/esm/components/button/close-button.js +10 -0
- package/dist/esm/components/button/icon-button.js +21 -0
- package/dist/esm/components/button/index.js +4 -0
- package/dist/esm/components/card/card.js +33 -0
- package/dist/esm/components/card/index.js +3 -0
- package/dist/esm/components/card/namespace.js +1 -0
- package/dist/esm/components/carousel/carousel.js +64 -0
- package/dist/esm/components/carousel/index.js +4 -0
- package/dist/esm/components/carousel/namespace.js +1 -0
- package/dist/esm/components/center/center.js +20 -0
- package/dist/esm/components/center/index.js +1 -0
- package/dist/esm/components/checkbox/checkbox.js +89 -0
- package/dist/esm/components/checkbox/index.js +4 -0
- package/dist/esm/components/checkbox/namespace.js +1 -0
- package/dist/esm/components/checkbox-card/checkbox-card.js +58 -0
- package/dist/esm/components/checkbox-card/index.js +4 -0
- package/dist/esm/components/checkbox-card/namespace.js +1 -0
- package/dist/esm/components/checkmark/checkmark.js +44 -0
- package/dist/esm/components/checkmark/index.js +1 -0
- package/dist/esm/components/circle/index.js +13 -0
- package/dist/esm/components/client-only/client-only.js +14 -0
- package/dist/esm/components/client-only/index.js +1 -0
- package/dist/esm/components/clipboard/clipboard.js +37 -0
- package/dist/esm/components/clipboard/index.js +4 -0
- package/dist/esm/components/clipboard/namespace.js +1 -0
- package/dist/esm/components/code/code.js +10 -0
- package/dist/esm/components/code/index.js +1 -0
- package/dist/esm/components/code-block/adapters.js +96 -0
- package/dist/esm/components/code-block/code-block-adapter-context.js +14 -0
- package/dist/esm/components/code-block/code-block-adapter-provider.js +11 -0
- package/dist/esm/components/code-block/code-block-context.js +9 -0
- package/dist/esm/components/code-block/code-block.js +244 -0
- package/dist/esm/components/code-block/index.js +5 -0
- package/dist/esm/components/code-block/namespace.js +2 -0
- package/dist/esm/components/code-block/types.js +1 -0
- package/dist/esm/components/code-block/use-code-highlight.js +28 -0
- package/dist/esm/components/collapsible/collapsible.js +19 -0
- package/dist/esm/components/collapsible/index.js +4 -0
- package/dist/esm/components/collapsible/namespace.js +1 -0
- package/dist/esm/components/color-picker/color-picker.js +104 -0
- package/dist/esm/components/color-picker/index.js +4 -0
- package/dist/esm/components/color-picker/namespace.js +1 -0
- package/dist/esm/components/color-swatch/index.js +53 -0
- package/dist/esm/components/combobox/combobox.js +75 -0
- package/dist/esm/components/combobox/index.js +4 -0
- package/dist/esm/components/combobox/namespace.js +1 -0
- package/dist/esm/components/container/container.js +10 -0
- package/dist/esm/components/container/index.js +1 -0
- package/dist/esm/components/data-list/data-list.js +22 -0
- package/dist/esm/components/data-list/index.js +3 -0
- package/dist/esm/components/data-list/namespace.js +1 -0
- package/dist/esm/components/date-picker/date-picker.js +144 -0
- package/dist/esm/components/date-picker/index.js +4 -0
- package/dist/esm/components/date-picker/namespace.js +2 -0
- package/dist/esm/components/dialog/dialog.js +64 -0
- package/dist/esm/components/dialog/index.js +4 -0
- package/dist/esm/components/dialog/namespace.js +1 -0
- package/dist/esm/components/download-trigger/index.js +9 -0
- package/dist/esm/components/drawer/drawer.js +64 -0
- package/dist/esm/components/drawer/index.js +4 -0
- package/dist/esm/components/drawer/namespace.js +1 -0
- package/dist/esm/components/editable/editable.js +49 -0
- package/dist/esm/components/editable/index.js +4 -0
- package/dist/esm/components/editable/namespace.js +1 -0
- package/dist/esm/components/em/index.js +11 -0
- package/dist/esm/components/empty-state/empty-state.js +20 -0
- package/dist/esm/components/empty-state/index.js +3 -0
- package/dist/esm/components/empty-state/namespace.js +1 -0
- package/dist/esm/components/environment/index.js +1 -0
- package/dist/esm/components/field/field.js +60 -0
- package/dist/esm/components/field/index.js +4 -0
- package/dist/esm/components/field/namespace.js +2 -0
- package/dist/esm/components/fieldset/fieldset.js +16 -0
- package/dist/esm/components/fieldset/index.js +4 -0
- package/dist/esm/components/fieldset/namespace.js +1 -0
- package/dist/esm/components/file-upload/file-upload.js +98 -0
- package/dist/esm/components/file-upload/index.js +4 -0
- package/dist/esm/components/file-upload/namespace.js +1 -0
- package/dist/esm/components/flex/flex.js +40 -0
- package/dist/esm/components/flex/index.js +1 -0
- package/dist/esm/components/float/float.js +73 -0
- package/dist/esm/components/float/index.js +1 -0
- package/dist/esm/components/floating-panel/floating-panel.js +40 -0
- package/dist/esm/components/floating-panel/index.js +4 -0
- package/dist/esm/components/floating-panel/namespace.js +2 -0
- package/dist/esm/components/focus-trap/focus-trap.js +7 -0
- package/dist/esm/components/focus-trap/index.js +1 -0
- package/dist/esm/components/for/for.js +9 -0
- package/dist/esm/components/for/index.js +1 -0
- package/dist/esm/components/format/index.js +6 -0
- package/dist/esm/components/grid/grid-item.js +44 -0
- package/dist/esm/components/grid/grid.js +44 -0
- package/dist/esm/components/grid/index.js +2 -0
- package/dist/esm/components/group/group.js +145 -0
- package/dist/esm/components/group/index.js +1 -0
- package/dist/esm/components/heading/index.js +10 -0
- package/dist/esm/components/highlight/highlight.js +23 -0
- package/dist/esm/components/highlight/index.js +2 -0
- package/dist/esm/components/hover-card/hover-card.js +30 -0
- package/dist/esm/components/hover-card/index.js +4 -0
- package/dist/esm/components/hover-card/namespace.js +1 -0
- package/dist/esm/components/icon/create-icon.js +28 -0
- package/dist/esm/components/icon/icon.js +31 -0
- package/dist/esm/components/icon/index.js +2 -0
- package/dist/esm/components/icons.js +219 -0
- package/dist/esm/components/image/image.js +24 -0
- package/dist/esm/components/image/index.js +1 -0
- package/dist/esm/components/index.js +289 -0
- package/dist/esm/components/input/index.js +1 -0
- package/dist/esm/components/input/input.js +11 -0
- package/dist/esm/components/input-addon/index.js +1 -0
- package/dist/esm/components/input-addon/input-addon.js +16 -0
- package/dist/esm/components/input-element/index.js +1 -0
- package/dist/esm/components/input-element/input-element.js +28 -0
- package/dist/esm/components/input-group/index.js +1 -0
- package/dist/esm/components/input-group/input-group.js +49 -0
- package/dist/esm/components/kbd/index.js +1 -0
- package/dist/esm/components/kbd/kbd.js +10 -0
- package/dist/esm/components/link/index.js +2 -0
- package/dist/esm/components/link/link-box.js +62 -0
- package/dist/esm/components/link/link.js +10 -0
- package/dist/esm/components/list/index.js +3 -0
- package/dist/esm/components/list/list.js +22 -0
- package/dist/esm/components/list/namespace.js +1 -0
- package/dist/esm/components/listbox/index.js +4 -0
- package/dist/esm/components/listbox/listbox.js +61 -0
- package/dist/esm/components/listbox/namespace.js +1 -0
- package/dist/esm/components/loader/index.js +2 -0
- package/dist/esm/components/loader/loader-overlay.js +17 -0
- package/dist/esm/components/loader/loader.js +28 -0
- package/dist/esm/components/locale/index.js +1 -0
- package/dist/esm/components/mark/index.js +10 -0
- package/dist/esm/components/marquee/index.js +4 -0
- package/dist/esm/components/marquee/marquee.js +33 -0
- package/dist/esm/components/marquee/namespace.js +1 -0
- package/dist/esm/components/menu/index.js +4 -0
- package/dist/esm/components/menu/menu.js +90 -0
- package/dist/esm/components/menu/namespace.js +1 -0
- package/dist/esm/components/native-select/index.js +3 -0
- package/dist/esm/components/native-select/namespace.js +1 -0
- package/dist/esm/components/native-select/native-select.js +71 -0
- package/dist/esm/components/number-input/index.js +4 -0
- package/dist/esm/components/number-input/namespace.js +1 -0
- package/dist/esm/components/number-input/number-input.js +35 -0
- package/dist/esm/components/pagination/index.js +4 -0
- package/dist/esm/components/pagination/namespace.js +1 -0
- package/dist/esm/components/pagination/pagination.js +68 -0
- package/dist/esm/components/pin-input/index.js +4 -0
- package/dist/esm/components/pin-input/namespace.js +1 -0
- package/dist/esm/components/pin-input/pin-input.js +32 -0
- package/dist/esm/components/popover/index.js +4 -0
- package/dist/esm/components/popover/namespace.js +1 -0
- package/dist/esm/components/popover/popover.js +59 -0
- package/dist/esm/components/portal/index.js +1 -0
- package/dist/esm/components/presence/index.js +7 -0
- package/dist/esm/components/progress/index.js +4 -0
- package/dist/esm/components/progress/namespace.js +1 -0
- package/dist/esm/components/progress/progress.js +35 -0
- package/dist/esm/components/progress-circle/index.js +3 -0
- package/dist/esm/components/progress-circle/namespace.js +1 -0
- package/dist/esm/components/progress-circle/progress-circle.js +21 -0
- package/dist/esm/components/qr-code/index.js +4 -0
- package/dist/esm/components/qr-code/namespace.js +2 -0
- package/dist/esm/components/qr-code/qr-code.js +38 -0
- package/dist/esm/components/quote/index.js +12 -0
- package/dist/esm/components/radio-card/index.js +4 -0
- package/dist/esm/components/radio-card/namespace.js +1 -0
- package/dist/esm/components/radio-card/radio-card.js +89 -0
- package/dist/esm/components/radio-group/index.js +4 -0
- package/dist/esm/components/radio-group/namespace.js +1 -0
- package/dist/esm/components/radio-group/radio-group.js +46 -0
- package/dist/esm/components/radiomark/index.js +1 -0
- package/dist/esm/components/radiomark/radiomark.js +27 -0
- package/dist/esm/components/rating-group/index.js +4 -0
- package/dist/esm/components/rating-group/namespace.js +1 -0
- package/dist/esm/components/rating-group/rating-group.js +55 -0
- package/dist/esm/components/scroll-area/index.js +4 -0
- package/dist/esm/components/scroll-area/namespace.js +1 -0
- package/dist/esm/components/scroll-area/scroll-area.js +30 -0
- package/dist/esm/components/segment-group/index.js +4 -0
- package/dist/esm/components/segment-group/namespace.js +1 -0
- package/dist/esm/components/segment-group/segment-group.js +50 -0
- package/dist/esm/components/select/index.js +4 -0
- package/dist/esm/components/select/namespace.js +1 -0
- package/dist/esm/components/select/select.js +84 -0
- package/dist/esm/components/separator/index.js +1 -0
- package/dist/esm/components/separator/separator.js +33 -0
- package/dist/esm/components/show/index.js +1 -0
- package/dist/esm/components/show/show.js +14 -0
- package/dist/esm/components/simple-grid/index.js +1 -0
- package/dist/esm/components/simple-grid/simple-grid.js +34 -0
- package/dist/esm/components/skeleton/index.js +1 -0
- package/dist/esm/components/skeleton/skeleton.js +37 -0
- package/dist/esm/components/skip-nav/index.js +2 -0
- package/dist/esm/components/skip-nav/skip-nav-content.js +23 -0
- package/dist/esm/components/skip-nav/skip-nav-link.js +26 -0
- package/dist/esm/components/slider/index.js +4 -0
- package/dist/esm/components/slider/namespace.js +1 -0
- package/dist/esm/components/slider/slider.js +73 -0
- package/dist/esm/components/spacer/index.js +1 -0
- package/dist/esm/components/spacer/spacer.js +13 -0
- package/dist/esm/components/span/index.js +7 -0
- package/dist/esm/components/spinner/index.js +1 -0
- package/dist/esm/components/spinner/spinner.js +10 -0
- package/dist/esm/components/splitter/index.js +4 -0
- package/dist/esm/components/splitter/namespace.js +1 -0
- package/dist/esm/components/splitter/splitter.js +36 -0
- package/dist/esm/components/square/index.js +28 -0
- package/dist/esm/components/stack/get-separator-style.js +38 -0
- package/dist/esm/components/stack/h-stack.js +12 -0
- package/dist/esm/components/stack/index.js +4 -0
- package/dist/esm/components/stack/stack-separator.js +15 -0
- package/dist/esm/components/stack/stack.js +60 -0
- package/dist/esm/components/stack/v-stack.js +12 -0
- package/dist/esm/components/stat/index.js +3 -0
- package/dist/esm/components/stat/namespace.js +1 -0
- package/dist/esm/components/stat/stat.js +70 -0
- package/dist/esm/components/status/index.js +3 -0
- package/dist/esm/components/status/namespace.js +1 -0
- package/dist/esm/components/status/status.js +17 -0
- package/dist/esm/components/steps/index.js +4 -0
- package/dist/esm/components/steps/namespace.js +1 -0
- package/dist/esm/components/steps/steps.js +79 -0
- package/dist/esm/components/sticky/index.js +12 -0
- package/dist/esm/components/strong/index.js +9 -0
- package/dist/esm/components/switch/index.js +4 -0
- package/dist/esm/components/switch/namespace.js +1 -0
- package/dist/esm/components/switch/switch.js +63 -0
- package/dist/esm/components/table/index.js +3 -0
- package/dist/esm/components/table/namespace.js +1 -0
- package/dist/esm/components/table/table.js +78 -0
- package/dist/esm/components/tabs/index.js +4 -0
- package/dist/esm/components/tabs/namespace.js +2 -0
- package/dist/esm/components/tabs/tabs.js +40 -0
- package/dist/esm/components/tag/index.js +3 -0
- package/dist/esm/components/tag/namespace.js +1 -0
- package/dist/esm/components/tag/tag.js +27 -0
- package/dist/esm/components/tags-input/index.js +4 -0
- package/dist/esm/components/tags-input/namespace.js +1 -0
- package/dist/esm/components/tags-input/tags-input.js +47 -0
- package/dist/esm/components/text/index.js +10 -0
- package/dist/esm/components/textarea/index.js +1 -0
- package/dist/esm/components/textarea/textarea.js +13 -0
- package/dist/esm/components/theme.js +31 -0
- package/dist/esm/components/timeline/index.js +3 -0
- package/dist/esm/components/timeline/namespace.js +1 -0
- package/dist/esm/components/timeline/timeline.js +31 -0
- package/dist/esm/components/toast/index.js +4 -0
- package/dist/esm/components/toast/namespace.js +1 -0
- package/dist/esm/components/toast/toast.js +60 -0
- package/dist/esm/components/toggle/index.js +4 -0
- package/dist/esm/components/toggle/namespace.js +1 -0
- package/dist/esm/components/toggle/toggle.js +24 -0
- package/dist/esm/components/tooltip/index.js +4 -0
- package/dist/esm/components/tooltip/namespace.js +1 -0
- package/dist/esm/components/tooltip/tooltip.js +33 -0
- package/dist/esm/components/tree-view/index.js +4 -0
- package/dist/esm/components/tree-view/namespace.js +2 -0
- package/dist/esm/components/tree-view/tree-view.js +70 -0
- package/dist/esm/components/visually-hidden/index.js +1 -0
- package/dist/esm/components/visually-hidden/visually-hidden.js +20 -0
- package/dist/esm/components/wrap/index.js +1 -0
- package/dist/esm/components/wrap/wrap.js +47 -0
- package/dist/esm/create-context.js +33 -0
- package/dist/esm/hooks/index.js +14 -0
- package/dist/esm/hooks/use-breakpoint.js +44 -0
- package/dist/esm/hooks/use-callback-ref.js +14 -0
- package/dist/esm/hooks/use-const.js +12 -0
- package/dist/esm/hooks/use-controllable-state.js +39 -0
- package/dist/esm/hooks/use-disclosure.js +35 -0
- package/dist/esm/hooks/use-element-rect.js +24 -0
- package/dist/esm/hooks/use-force-update.js +8 -0
- package/dist/esm/hooks/use-list-collection.js +1 -0
- package/dist/esm/hooks/use-live-ref.js +10 -0
- package/dist/esm/hooks/use-media-query.js +54 -0
- package/dist/esm/hooks/use-overlay.js +156 -0
- package/dist/esm/hooks/use-previous.js +14 -0
- package/dist/esm/hooks/use-safe-layout-effect.js +6 -0
- package/dist/esm/hooks/use-update-effect.js +23 -0
- package/dist/esm/index.js +320 -0
- package/dist/esm/merge-props.js +34 -0
- package/dist/esm/merge-refs.js +48 -0
- package/dist/esm/preset-base.js +1098 -0
- package/dist/esm/preset.js +9 -0
- package/dist/esm/styled-system/breakpoints.js +112 -0
- package/dist/esm/styled-system/calc.js +42 -0
- package/dist/esm/styled-system/color-mix.js +32 -0
- package/dist/esm/styled-system/composition.js +1 -0
- package/dist/esm/styled-system/conditions.js +43 -0
- package/dist/esm/styled-system/config.js +24 -0
- package/dist/esm/styled-system/create-recipe-context.js +74 -0
- package/dist/esm/styled-system/create-slot-recipe-context.js +141 -0
- package/dist/esm/styled-system/css-var.js +18 -0
- package/dist/esm/styled-system/css.js +71 -0
- package/dist/esm/styled-system/css.types.js +1 -0
- package/dist/esm/styled-system/cva.js +124 -0
- package/dist/esm/styled-system/display-name.js +17 -0
- package/dist/esm/styled-system/empty.js +6 -0
- package/dist/esm/styled-system/esc.js +12 -0
- package/dist/esm/styled-system/expand-reference.js +133 -0
- package/dist/esm/styled-system/factory.js +240 -0
- package/dist/esm/styled-system/factory.types.js +1 -0
- package/dist/esm/styled-system/generated/conditions.gen.js +1 -0
- package/dist/esm/styled-system/generated/prop-types.gen.js +1 -0
- package/dist/esm/styled-system/generated/recipes.gen.js +1 -0
- package/dist/esm/styled-system/generated/system.gen.js +1 -0
- package/dist/esm/styled-system/generated/token.gen.js +1 -0
- package/dist/esm/styled-system/index.js +12 -0
- package/dist/esm/styled-system/layers.js +28 -0
- package/dist/esm/styled-system/map-to-json.js +13 -0
- package/dist/esm/styled-system/merge-config.js +42 -0
- package/dist/esm/styled-system/normalize.js +16 -0
- package/dist/esm/styled-system/preflight.js +165 -0
- package/dist/esm/styled-system/provider.js +15 -0
- package/dist/esm/styled-system/recipe-props.js +12 -0
- package/dist/esm/styled-system/recipe.types.js +1 -0
- package/dist/esm/styled-system/references.js +36 -0
- package/dist/esm/styled-system/resolve-token-value.js +25 -0
- package/dist/esm/styled-system/selectors.js +1 -0
- package/dist/esm/styled-system/serialize.js +69 -0
- package/dist/esm/styled-system/singleton.js +10 -0
- package/dist/esm/styled-system/sort-at-params.js +69 -0
- package/dist/esm/styled-system/sort-at-rules.js +33 -0
- package/dist/esm/styled-system/sva.js +84 -0
- package/dist/esm/styled-system/system.js +282 -0
- package/dist/esm/styled-system/token-dictionary.js +437 -0
- package/dist/esm/styled-system/token-middleware.js +146 -0
- package/dist/esm/styled-system/token-transforms.js +76 -0
- package/dist/esm/styled-system/types.js +1 -0
- package/dist/esm/styled-system/unit-conversion.js +53 -0
- package/dist/esm/styled-system/use-recipe.js +15 -0
- package/dist/esm/styled-system/use-resolved-props.js +65 -0
- package/dist/esm/styled-system/use-slot-recipe.js +15 -0
- package/dist/esm/styled-system/use-token.js +13 -0
- package/dist/esm/styled-system/utility.js +174 -0
- package/dist/esm/theme/breakpoints.js +9 -0
- package/dist/esm/theme/global-css.js +56 -0
- package/dist/esm/theme/index.js +149 -0
- package/dist/esm/theme/layer-styles.js +114 -0
- package/dist/esm/theme/motion-styles.js +52 -0
- package/dist/esm/theme/recipes/accordion.js +142 -0
- package/dist/esm/theme/recipes/action-bar.js +84 -0
- package/dist/esm/theme/recipes/alert.js +153 -0
- package/dist/esm/theme/recipes/avatar.js +140 -0
- package/dist/esm/theme/recipes/badge.js +71 -0
- package/dist/esm/theme/recipes/blockquote.js +80 -0
- package/dist/esm/theme/recipes/breadcrumb.js +97 -0
- package/dist/esm/theme/recipes/button.js +182 -0
- package/dist/esm/theme/recipes/card.js +100 -0
- package/dist/esm/theme/recipes/carousel.js +64 -0
- package/dist/esm/theme/recipes/checkbox-card.js +207 -0
- package/dist/esm/theme/recipes/checkbox.js +66 -0
- package/dist/esm/theme/recipes/checkmark.js +93 -0
- package/dist/esm/theme/recipes/code-block.js +225 -0
- package/dist/esm/theme/recipes/code.js +17 -0
- package/dist/esm/theme/recipes/collapsible.js +28 -0
- package/dist/esm/theme/recipes/color-picker.js +260 -0
- package/dist/esm/theme/recipes/color-swatch.js +41 -0
- package/dist/esm/theme/recipes/combobox.js +290 -0
- package/dist/esm/theme/recipes/container.js +28 -0
- package/dist/esm/theme/recipes/data-list.js +96 -0
- package/dist/esm/theme/recipes/date-picker.js +390 -0
- package/dist/esm/theme/recipes/dialog.js +230 -0
- package/dist/esm/theme/recipes/drawer.js +212 -0
- package/dist/esm/theme/recipes/editable.js +86 -0
- package/dist/esm/theme/recipes/empty-state.js +88 -0
- package/dist/esm/theme/recipes/field.js +68 -0
- package/dist/esm/theme/recipes/fieldset.js +62 -0
- package/dist/esm/theme/recipes/file-upload.js +109 -0
- package/dist/esm/theme/recipes/floating-panel.js +78 -0
- package/dist/esm/theme/recipes/heading.js +29 -0
- package/dist/esm/theme/recipes/hover-card.js +69 -0
- package/dist/esm/theme/recipes/icon.js +28 -0
- package/dist/esm/theme/recipes/input-addon.js +43 -0
- package/dist/esm/theme/recipes/input.js +101 -0
- package/dist/esm/theme/recipes/kbd.js +59 -0
- package/dist/esm/theme/recipes/link.js +37 -0
- package/dist/esm/theme/recipes/list.js +64 -0
- package/dist/esm/theme/recipes/listbox.js +130 -0
- package/dist/esm/theme/recipes/mark.js +28 -0
- package/dist/esm/theme/recipes/marquee.js +91 -0
- package/dist/esm/theme/recipes/menu.js +146 -0
- package/dist/esm/theme/recipes/native-select.js +154 -0
- package/dist/esm/theme/recipes/number-input.js +115 -0
- package/dist/esm/theme/recipes/pin-input.js +50 -0
- package/dist/esm/theme/recipes/popover.js +89 -0
- package/dist/esm/theme/recipes/progress-circle.js +94 -0
- package/dist/esm/theme/recipes/progress.js +125 -0
- package/dist/esm/theme/recipes/qr-code.js +62 -0
- package/dist/esm/theme/recipes/radio-card.js +217 -0
- package/dist/esm/theme/recipes/radio-group.js +64 -0
- package/dist/esm/theme/recipes/radiomark.js +104 -0
- package/dist/esm/theme/recipes/rating-group.js +87 -0
- package/dist/esm/theme/recipes/scroll-area.js +138 -0
- package/dist/esm/theme/recipes/segment-group.js +126 -0
- package/dist/esm/theme/recipes/select.js +294 -0
- package/dist/esm/theme/recipes/separator.js +51 -0
- package/dist/esm/theme/recipes/skeleton.js +52 -0
- package/dist/esm/theme/recipes/skip-nav-link.js +34 -0
- package/dist/esm/theme/recipes/slider.js +198 -0
- package/dist/esm/theme/recipes/spinner.js +34 -0
- package/dist/esm/theme/recipes/splitter.js +78 -0
- package/dist/esm/theme/recipes/stat.js +82 -0
- package/dist/esm/theme/recipes/status.js +46 -0
- package/dist/esm/theme/recipes/steps.js +217 -0
- package/dist/esm/theme/recipes/switch.js +162 -0
- package/dist/esm/theme/recipes/table.js +163 -0
- package/dist/esm/theme/recipes/tabs.js +273 -0
- package/dist/esm/theme/recipes/tag.js +128 -0
- package/dist/esm/theme/recipes/tags-input.js +237 -0
- package/dist/esm/theme/recipes/textarea.js +88 -0
- package/dist/esm/theme/recipes/timeline.js +157 -0
- package/dist/esm/theme/recipes/toast.js +100 -0
- package/dist/esm/theme/recipes/tooltip.js +42 -0
- package/dist/esm/theme/recipes/tree-view.js +166 -0
- package/dist/esm/theme/recipes.export.js +19 -0
- package/dist/esm/theme/recipes.js +43 -0
- package/dist/esm/theme/semantic-tokens/colors.js +353 -0
- package/dist/esm/theme/semantic-tokens/radii.js +9 -0
- package/dist/esm/theme/semantic-tokens/shadows.js +54 -0
- package/dist/esm/theme/slot-recipes.export.js +55 -0
- package/dist/esm/theme/slot-recipes.js +117 -0
- package/dist/esm/theme/text-styles.js +48 -0
- package/dist/esm/theme/tokens/animations.js +10 -0
- package/dist/esm/theme/tokens/aspect-ratios.js +12 -0
- package/dist/esm/theme/tokens/blurs.js +14 -0
- package/dist/esm/theme/tokens/borders.js +11 -0
- package/dist/esm/theme/tokens/colors.js +166 -0
- package/dist/esm/theme/tokens/cursor.js +14 -0
- package/dist/esm/theme/tokens/durations.js +13 -0
- package/dist/esm/theme/tokens/easings.js +10 -0
- package/dist/esm/theme/tokens/font-sizes.js +20 -0
- package/dist/esm/theme/tokens/font-weights.js +15 -0
- package/dist/esm/theme/tokens/fonts.js +16 -0
- package/dist/esm/theme/tokens/keyframes.js +169 -0
- package/dist/esm/theme/tokens/letter-spacing.js +11 -0
- package/dist/esm/theme/tokens/line-heights.js +11 -0
- package/dist/esm/theme/tokens/radius.js +17 -0
- package/dist/esm/theme/tokens/sizes.js +69 -0
- package/dist/esm/theme/tokens/spacing.js +40 -0
- package/dist/esm/theme/tokens/z-indices.js +19 -0
- package/dist/esm/utils/attr.js +3 -0
- package/dist/esm/utils/call-all.js +7 -0
- package/dist/esm/utils/clone.js +11 -0
- package/dist/esm/utils/compact.js +9 -0
- package/dist/esm/utils/create-props.js +3 -0
- package/dist/esm/utils/cx.js +14 -0
- package/dist/esm/utils/entries.js +10 -0
- package/dist/esm/utils/flatten.js +17 -0
- package/dist/esm/utils/index.js +18 -0
- package/dist/esm/utils/interop.js +5 -0
- package/dist/esm/utils/is.js +6 -0
- package/dist/esm/utils/memo.js +64 -0
- package/dist/esm/utils/merge.js +33 -0
- package/dist/esm/utils/omit.js +11 -0
- package/dist/esm/utils/ref.js +11 -0
- package/dist/esm/utils/split-props.js +26 -0
- package/dist/esm/utils/types.js +1 -0
- package/dist/esm/utils/uniq.js +9 -0
- package/dist/esm/utils/unit.js +8 -0
- package/dist/esm/utils/walk-object.js +37 -0
- package/dist/types/anatomy.d.ts +56 -0
- package/dist/types/collection.d.ts +2 -0
- package/dist/types/components/absolute-center/absolute-center.d.ts +15 -0
- package/dist/types/components/absolute-center/index.d.ts +2 -0
- package/dist/types/components/accordion/accordion.d.ts +37 -0
- package/dist/types/components/accordion/index.d.ts +5 -0
- package/dist/types/components/accordion/namespace.d.ts +2 -0
- package/dist/types/components/action-bar/action-bar.d.ts +35 -0
- package/dist/types/components/action-bar/index.d.ts +5 -0
- package/dist/types/components/action-bar/namespace.d.ts +3 -0
- package/dist/types/components/alert/alert.d.ts +25 -0
- package/dist/types/components/alert/index.d.ts +3 -0
- package/dist/types/components/alert/namespace.d.ts +2 -0
- package/dist/types/components/aspect-ratio/aspect-ratio.d.ts +10 -0
- package/dist/types/components/aspect-ratio/index.d.ts +2 -0
- package/dist/types/components/avatar/avatar.d.ts +37 -0
- package/dist/types/components/avatar/index.d.ts +5 -0
- package/dist/types/components/avatar/namespace.d.ts +2 -0
- package/dist/types/components/badge/badge.d.ts +8 -0
- package/dist/types/components/badge/index.d.ts +2 -0
- package/dist/types/components/bleed/bleed.d.ts +28 -0
- package/dist/types/components/bleed/index.d.ts +2 -0
- package/dist/types/components/blockquote/blockquote.d.ts +18 -0
- package/dist/types/components/blockquote/index.d.ts +3 -0
- package/dist/types/components/blockquote/namespace.d.ts +2 -0
- package/dist/types/components/box/index.d.ts +10 -0
- package/dist/types/components/breadcrumb/breadcrumb.d.ts +27 -0
- package/dist/types/components/breadcrumb/index.d.ts +3 -0
- package/dist/types/components/breadcrumb/namespace.d.ts +2 -0
- package/dist/types/components/button/button-group.d.ts +5 -0
- package/dist/types/components/button/button.d.ts +27 -0
- package/dist/types/components/button/close-button.d.ts +5 -0
- package/dist/types/components/button/icon-button.d.ts +4 -0
- package/dist/types/components/button/index.d.ts +8 -0
- package/dist/types/components/card/card.d.ts +24 -0
- package/dist/types/components/card/index.d.ts +3 -0
- package/dist/types/components/card/namespace.d.ts +2 -0
- package/dist/types/components/carousel/carousel.d.ts +58 -0
- package/dist/types/components/carousel/index.d.ts +5 -0
- package/dist/types/components/carousel/namespace.d.ts +2 -0
- package/dist/types/components/center/center.d.ts +12 -0
- package/dist/types/components/center/index.d.ts +2 -0
- package/dist/types/components/checkbox/checkbox.d.ts +35 -0
- package/dist/types/components/checkbox/index.d.ts +5 -0
- package/dist/types/components/checkbox/namespace.d.ts +2 -0
- package/dist/types/components/checkbox-card/checkbox-card.d.ts +38 -0
- package/dist/types/components/checkbox-card/index.d.ts +5 -0
- package/dist/types/components/checkbox-card/namespace.d.ts +2 -0
- package/dist/types/components/checkmark/checkmark.d.ts +16 -0
- package/dist/types/components/checkmark/index.d.ts +2 -0
- package/dist/types/components/circle/index.d.ts +4 -0
- package/dist/types/components/client-only/client-only.d.ts +14 -0
- package/dist/types/components/client-only/index.d.ts +2 -0
- package/dist/types/components/clipboard/clipboard.d.ts +38 -0
- package/dist/types/components/clipboard/index.d.ts +5 -0
- package/dist/types/components/clipboard/namespace.d.ts +2 -0
- package/dist/types/components/code/code.d.ts +7 -0
- package/dist/types/components/code/index.d.ts +2 -0
- package/dist/types/components/code-block/adapters.d.ts +33 -0
- package/dist/types/components/code-block/code-block-adapter-context.d.ts +4 -0
- package/dist/types/components/code-block/code-block-adapter-provider.d.ts +6 -0
- package/dist/types/components/code-block/code-block-context.d.ts +13 -0
- package/dist/types/components/code-block/code-block.d.ts +85 -0
- package/dist/types/components/code-block/index.d.ts +6 -0
- package/dist/types/components/code-block/namespace.d.ts +3 -0
- package/dist/types/components/code-block/types.d.ts +67 -0
- package/dist/types/components/code-block/use-code-highlight.d.ts +7 -0
- package/dist/types/components/collapsible/collapsible.d.ts +28 -0
- package/dist/types/components/collapsible/index.d.ts +5 -0
- package/dist/types/components/collapsible/namespace.d.ts +2 -0
- package/dist/types/components/color-picker/color-picker.d.ts +113 -0
- package/dist/types/components/color-picker/index.d.ts +5 -0
- package/dist/types/components/color-picker/namespace.d.ts +3 -0
- package/dist/types/components/color-swatch/index.d.ts +13 -0
- package/dist/types/components/combobox/combobox.d.ts +78 -0
- package/dist/types/components/combobox/index.d.ts +5 -0
- package/dist/types/components/combobox/namespace.d.ts +3 -0
- package/dist/types/components/container/container.d.ts +7 -0
- package/dist/types/components/container/index.d.ts +2 -0
- package/dist/types/components/data-list/data-list.d.ts +18 -0
- package/dist/types/components/data-list/index.d.ts +3 -0
- package/dist/types/components/data-list/namespace.d.ts +2 -0
- package/dist/types/components/date-picker/date-picker.d.ts +144 -0
- package/dist/types/components/date-picker/index.d.ts +5 -0
- package/dist/types/components/date-picker/namespace.d.ts +4 -0
- package/dist/types/components/dialog/dialog.d.ts +54 -0
- package/dist/types/components/dialog/index.d.ts +5 -0
- package/dist/types/components/dialog/namespace.d.ts +3 -0
- package/dist/types/components/download-trigger/index.d.ts +7 -0
- package/dist/types/components/drawer/drawer.d.ts +54 -0
- package/dist/types/components/drawer/index.d.ts +5 -0
- package/dist/types/components/drawer/namespace.d.ts +3 -0
- package/dist/types/components/editable/editable.d.ts +44 -0
- package/dist/types/components/editable/index.d.ts +5 -0
- package/dist/types/components/editable/namespace.d.ts +3 -0
- package/dist/types/components/em/index.d.ts +4 -0
- package/dist/types/components/empty-state/empty-state.d.ts +21 -0
- package/dist/types/components/empty-state/index.d.ts +3 -0
- package/dist/types/components/empty-state/namespace.d.ts +2 -0
- package/dist/types/components/environment/index.d.ts +2 -0
- package/dist/types/components/field/field.d.ts +27 -0
- package/dist/types/components/field/index.d.ts +5 -0
- package/dist/types/components/field/namespace.d.ts +4 -0
- package/dist/types/components/fieldset/fieldset.d.ts +22 -0
- package/dist/types/components/fieldset/index.d.ts +4 -0
- package/dist/types/components/fieldset/namespace.d.ts +2 -0
- package/dist/types/components/file-upload/file-upload.d.ts +78 -0
- package/dist/types/components/file-upload/index.d.ts +5 -0
- package/dist/types/components/file-upload/namespace.d.ts +3 -0
- package/dist/types/components/flex/flex.d.ts +14 -0
- package/dist/types/components/flex/index.d.ts +2 -0
- package/dist/types/components/float/float.d.ts +23 -0
- package/dist/types/components/float/index.d.ts +2 -0
- package/dist/types/components/floating-panel/floating-panel.d.ts +56 -0
- package/dist/types/components/floating-panel/index.d.ts +5 -0
- package/dist/types/components/floating-panel/namespace.d.ts +4 -0
- package/dist/types/components/focus-trap/focus-trap.d.ts +5 -0
- package/dist/types/components/focus-trap/index.d.ts +2 -0
- package/dist/types/components/for/for.d.ts +16 -0
- package/dist/types/components/for/index.d.ts +2 -0
- package/dist/types/components/format/index.d.ts +13 -0
- package/dist/types/components/grid/grid-item.d.ts +12 -0
- package/dist/types/components/grid/grid.d.ts +15 -0
- package/dist/types/components/grid/index.d.ts +4 -0
- package/dist/types/components/group/group.d.ts +28 -0
- package/dist/types/components/group/index.d.ts +1 -0
- package/dist/types/components/heading/index.d.ts +6 -0
- package/dist/types/components/highlight/highlight.d.ts +16 -0
- package/dist/types/components/highlight/index.d.ts +4 -0
- package/dist/types/components/hover-card/hover-card.d.ts +36 -0
- package/dist/types/components/hover-card/index.d.ts +5 -0
- package/dist/types/components/hover-card/namespace.d.ts +3 -0
- package/dist/types/components/icon/create-icon.d.ts +27 -0
- package/dist/types/components/icon/icon.d.ts +11 -0
- package/dist/types/components/icon/index.d.ts +3 -0
- package/dist/types/components/icons.d.ts +33 -0
- package/dist/types/components/image/image.d.ts +24 -0
- package/dist/types/components/image/index.d.ts +2 -0
- package/dist/types/components/index.d.ts +116 -0
- package/dist/types/components/input/index.d.ts +2 -0
- package/dist/types/components/input/input.d.ts +7 -0
- package/dist/types/components/input-addon/index.d.ts +2 -0
- package/dist/types/components/input-addon/input-addon.d.ts +4 -0
- package/dist/types/components/input-element/index.d.ts +2 -0
- package/dist/types/components/input-element/input-element.d.ts +6 -0
- package/dist/types/components/input-group/index.d.ts +2 -0
- package/dist/types/components/input-group/input-group.d.ts +50 -0
- package/dist/types/components/kbd/index.d.ts +2 -0
- package/dist/types/components/kbd/kbd.d.ts +7 -0
- package/dist/types/components/link/index.d.ts +4 -0
- package/dist/types/components/link/link-box.d.ts +12 -0
- package/dist/types/components/link/link.d.ts +7 -0
- package/dist/types/components/list/index.d.ts +3 -0
- package/dist/types/components/list/list.d.ts +15 -0
- package/dist/types/components/list/namespace.d.ts +2 -0
- package/dist/types/components/listbox/index.d.ts +5 -0
- package/dist/types/components/listbox/listbox.d.ts +59 -0
- package/dist/types/components/listbox/namespace.d.ts +3 -0
- package/dist/types/components/loader/index.d.ts +4 -0
- package/dist/types/components/loader/loader-overlay.d.ts +4 -0
- package/dist/types/components/loader/loader.d.ts +23 -0
- package/dist/types/components/locale/index.d.ts +2 -0
- package/dist/types/components/mark/index.d.ts +6 -0
- package/dist/types/components/marquee/index.d.ts +5 -0
- package/dist/types/components/marquee/marquee.d.ts +29 -0
- package/dist/types/components/marquee/namespace.d.ts +2 -0
- package/dist/types/components/menu/index.d.ts +5 -0
- package/dist/types/components/menu/menu.d.ts +80 -0
- package/dist/types/components/menu/namespace.d.ts +3 -0
- package/dist/types/components/native-select/index.d.ts +3 -0
- package/dist/types/components/native-select/namespace.d.ts +2 -0
- package/dist/types/components/native-select/native-select.d.ts +21 -0
- package/dist/types/components/number-input/index.d.ts +5 -0
- package/dist/types/components/number-input/namespace.d.ts +2 -0
- package/dist/types/components/number-input/number-input.d.ts +44 -0
- package/dist/types/components/pagination/index.d.ts +5 -0
- package/dist/types/components/pagination/namespace.d.ts +2 -0
- package/dist/types/components/pagination/pagination.d.ts +57 -0
- package/dist/types/components/pin-input/index.d.ts +5 -0
- package/dist/types/components/pin-input/namespace.d.ts +2 -0
- package/dist/types/components/pin-input/pin-input.d.ts +29 -0
- package/dist/types/components/popover/index.d.ts +5 -0
- package/dist/types/components/popover/namespace.d.ts +3 -0
- package/dist/types/components/popover/popover.d.ts +60 -0
- package/dist/types/components/portal/index.d.ts +1 -0
- package/dist/types/components/presence/index.d.ts +6 -0
- package/dist/types/components/progress/index.d.ts +5 -0
- package/dist/types/components/progress/namespace.d.ts +2 -0
- package/dist/types/components/progress/progress.d.ts +29 -0
- package/dist/types/components/progress-circle/index.d.ts +3 -0
- package/dist/types/components/progress-circle/namespace.d.ts +2 -0
- package/dist/types/components/progress-circle/progress-circle.d.ts +32 -0
- package/dist/types/components/qr-code/index.d.ts +5 -0
- package/dist/types/components/qr-code/namespace.d.ts +3 -0
- package/dist/types/components/qr-code/qr-code.d.ts +28 -0
- package/dist/types/components/quote/index.d.ts +4 -0
- package/dist/types/components/radio-card/index.d.ts +5 -0
- package/dist/types/components/radio-card/namespace.d.ts +2 -0
- package/dist/types/components/radio-card/radio-card.d.ts +53 -0
- package/dist/types/components/radio-group/index.d.ts +5 -0
- package/dist/types/components/radio-group/namespace.d.ts +2 -0
- package/dist/types/components/radio-group/radio-group.d.ts +43 -0
- package/dist/types/components/radiomark/index.d.ts +2 -0
- package/dist/types/components/radiomark/radiomark.d.ts +12 -0
- package/dist/types/components/rating-group/index.d.ts +5 -0
- package/dist/types/components/rating-group/namespace.d.ts +2 -0
- package/dist/types/components/rating-group/rating-group.d.ts +39 -0
- package/dist/types/components/scroll-area/index.d.ts +5 -0
- package/dist/types/components/scroll-area/namespace.d.ts +2 -0
- package/dist/types/components/scroll-area/scroll-area.d.ts +32 -0
- package/dist/types/components/segment-group/index.d.ts +5 -0
- package/dist/types/components/segment-group/namespace.d.ts +2 -0
- package/dist/types/components/segment-group/segment-group.d.ts +39 -0
- package/dist/types/components/select/index.d.ts +5 -0
- package/dist/types/components/select/namespace.d.ts +3 -0
- package/dist/types/components/select/select.d.ts +77 -0
- package/dist/types/components/separator/index.d.ts +2 -0
- package/dist/types/components/separator/separator.d.ts +7 -0
- package/dist/types/components/show/index.d.ts +2 -0
- package/dist/types/components/show/show.d.ts +16 -0
- package/dist/types/components/simple-grid/index.d.ts +2 -0
- package/dist/types/components/simple-grid/simple-grid.d.ts +26 -0
- package/dist/types/components/skeleton/index.d.ts +2 -0
- package/dist/types/components/skeleton/skeleton.d.ts +17 -0
- package/dist/types/components/skip-nav/index.d.ts +4 -0
- package/dist/types/components/skip-nav/skip-nav-content.d.ts +9 -0
- package/dist/types/components/skip-nav/skip-nav-link.d.ts +10 -0
- package/dist/types/components/slider/index.d.ts +5 -0
- package/dist/types/components/slider/namespace.d.ts +2 -0
- package/dist/types/components/slider/slider.d.ts +61 -0
- package/dist/types/components/spacer/index.d.ts +2 -0
- package/dist/types/components/spacer/spacer.d.ts +10 -0
- package/dist/types/components/span/index.d.ts +4 -0
- package/dist/types/components/spinner/index.d.ts +2 -0
- package/dist/types/components/spinner/spinner.d.ts +5 -0
- package/dist/types/components/splitter/index.d.ts +5 -0
- package/dist/types/components/splitter/namespace.d.ts +2 -0
- package/dist/types/components/splitter/splitter.d.ts +37 -0
- package/dist/types/components/square/index.d.ts +8 -0
- package/dist/types/components/stack/get-separator-style.d.ts +10 -0
- package/dist/types/components/stack/h-stack.d.ts +7 -0
- package/dist/types/components/stack/index.d.ts +6 -0
- package/dist/types/components/stack/stack-separator.d.ts +4 -0
- package/dist/types/components/stack/stack.d.ts +44 -0
- package/dist/types/components/stack/v-stack.d.ts +7 -0
- package/dist/types/components/stat/index.d.ts +3 -0
- package/dist/types/components/stat/namespace.d.ts +2 -0
- package/dist/types/components/stat/stat.d.ts +30 -0
- package/dist/types/components/status/index.d.ts +3 -0
- package/dist/types/components/status/namespace.d.ts +2 -0
- package/dist/types/components/status/status.d.ts +12 -0
- package/dist/types/components/steps/index.d.ts +5 -0
- package/dist/types/components/steps/namespace.d.ts +2 -0
- package/dist/types/components/steps/steps.d.ts +68 -0
- package/dist/types/components/sticky/index.d.ts +4 -0
- package/dist/types/components/strong/index.d.ts +4 -0
- package/dist/types/components/switch/index.d.ts +5 -0
- package/dist/types/components/switch/namespace.d.ts +2 -0
- package/dist/types/components/switch/switch.d.ts +37 -0
- package/dist/types/components/table/index.d.ts +3 -0
- package/dist/types/components/table/namespace.d.ts +2 -0
- package/dist/types/components/table/table.d.ts +43 -0
- package/dist/types/components/tabs/index.d.ts +5 -0
- package/dist/types/components/tabs/namespace.d.ts +4 -0
- package/dist/types/components/tabs/tabs.d.ts +31 -0
- package/dist/types/components/tag/index.d.ts +3 -0
- package/dist/types/components/tag/namespace.d.ts +2 -0
- package/dist/types/components/tag/tag.d.ts +21 -0
- package/dist/types/components/tags-input/index.d.ts +5 -0
- package/dist/types/components/tags-input/namespace.d.ts +2 -0
- package/dist/types/components/tags-input/tags-input.d.ts +53 -0
- package/dist/types/components/text/index.d.ts +6 -0
- package/dist/types/components/textarea/index.d.ts +2 -0
- package/dist/types/components/textarea/textarea.d.ts +8 -0
- package/dist/types/components/theme.d.ts +12 -0
- package/dist/types/components/timeline/index.d.ts +3 -0
- package/dist/types/components/timeline/namespace.d.ts +2 -0
- package/dist/types/components/timeline/timeline.d.ts +30 -0
- package/dist/types/components/toast/index.d.ts +6 -0
- package/dist/types/components/toast/namespace.d.ts +2 -0
- package/dist/types/components/toast/toast.d.ts +29 -0
- package/dist/types/components/toggle/index.d.ts +5 -0
- package/dist/types/components/toggle/namespace.d.ts +2 -0
- package/dist/types/components/toggle/toggle.d.ts +20 -0
- package/dist/types/components/tooltip/index.d.ts +5 -0
- package/dist/types/components/tooltip/namespace.d.ts +2 -0
- package/dist/types/components/tooltip/tooltip.d.ts +36 -0
- package/dist/types/components/tree-view/index.d.ts +5 -0
- package/dist/types/components/tree-view/namespace.d.ts +4 -0
- package/dist/types/components/tree-view/tree-view.d.ts +68 -0
- package/dist/types/components/visually-hidden/index.d.ts +1 -0
- package/dist/types/components/visually-hidden/visually-hidden.d.ts +18 -0
- package/dist/types/components/wrap/index.d.ts +2 -0
- package/dist/types/components/wrap/wrap.d.ts +12 -0
- package/dist/types/create-context.d.ts +14 -0
- package/dist/types/hooks/index.d.ts +14 -0
- package/dist/types/hooks/use-breakpoint.d.ts +32 -0
- package/dist/types/hooks/use-callback-ref.d.ts +5 -0
- package/dist/types/hooks/use-const.d.ts +3 -0
- package/dist/types/hooks/use-controllable-state.d.ts +18 -0
- package/dist/types/hooks/use-disclosure.d.ts +20 -0
- package/dist/types/hooks/use-element-rect.d.ts +4 -0
- package/dist/types/hooks/use-force-update.d.ts +1 -0
- package/dist/types/hooks/use-list-collection.d.ts +3 -0
- package/dist/types/hooks/use-live-ref.d.ts +1 -0
- package/dist/types/hooks/use-media-query.d.ts +6 -0
- package/dist/types/hooks/use-overlay.d.ts +46 -0
- package/dist/types/hooks/use-previous.d.ts +4 -0
- package/dist/types/hooks/use-safe-layout-effect.d.ts +2 -0
- package/dist/types/hooks/use-update-effect.d.ts +2 -0
- package/dist/types/index.d.mts +9 -0
- package/dist/types/index.d.ts +9 -0
- package/dist/types/merge-props.d.ts +7 -0
- package/dist/types/merge-refs.d.ts +6 -0
- package/dist/types/preset-base.d.ts +107 -0
- package/dist/types/preset.d.ts +3 -0
- package/dist/types/styled-system/breakpoints.d.ts +2 -0
- package/dist/types/styled-system/calc.d.ts +19 -0
- package/dist/types/styled-system/color-mix.d.ts +11 -0
- package/dist/types/styled-system/composition.d.ts +27 -0
- package/dist/types/styled-system/conditions.d.ts +2 -0
- package/dist/types/styled-system/config.d.ts +22 -0
- package/dist/types/styled-system/create-recipe-context.d.ts +17 -0
- package/dist/types/styled-system/create-slot-recipe-context.d.ts +36 -0
- package/dist/types/styled-system/css-var.d.ts +9 -0
- package/dist/types/styled-system/css.d.ts +9 -0
- package/dist/types/styled-system/css.types.d.ts +46 -0
- package/dist/types/styled-system/cva.d.ts +11 -0
- package/dist/types/styled-system/display-name.d.ts +11 -0
- package/dist/types/styled-system/empty.d.ts +3 -0
- package/dist/types/styled-system/esc.d.ts +1 -0
- package/dist/types/styled-system/expand-reference.d.ts +6 -0
- package/dist/types/styled-system/factory.d.ts +2 -0
- package/dist/types/styled-system/factory.types.d.ts +52 -0
- package/dist/types/styled-system/generated/conditions.gen.d.ts +262 -0
- package/dist/types/styled-system/generated/prop-types.gen.d.ts +217 -0
- package/dist/types/styled-system/generated/recipes.gen.d.ts +1062 -0
- package/dist/types/styled-system/generated/system.gen.d.ts +719 -0
- package/dist/types/styled-system/generated/token.gen.d.ts +44 -0
- package/dist/types/styled-system/index.d.ts +19 -0
- package/dist/types/styled-system/layers.d.ts +2 -0
- package/dist/types/styled-system/map-to-json.d.ts +4 -0
- package/dist/types/styled-system/merge-config.d.ts +2 -0
- package/dist/types/styled-system/normalize.d.ts +6 -0
- package/dist/types/styled-system/preflight.d.ts +3 -0
- package/dist/types/styled-system/provider.d.ts +8 -0
- package/dist/types/styled-system/recipe-props.d.ts +12 -0
- package/dist/types/styled-system/recipe.types.d.ts +122 -0
- package/dist/types/styled-system/references.d.ts +5 -0
- package/dist/types/styled-system/resolve-token-value.d.ts +2 -0
- package/dist/types/styled-system/selectors.d.ts +9 -0
- package/dist/types/styled-system/serialize.d.ts +3 -0
- package/dist/types/styled-system/singleton.d.ts +13 -0
- package/dist/types/styled-system/sort-at-params.d.ts +1 -0
- package/dist/types/styled-system/sort-at-rules.d.ts +2 -0
- package/dist/types/styled-system/sva.d.ts +11 -0
- package/dist/types/styled-system/system.d.ts +3 -0
- package/dist/types/styled-system/token-dictionary.d.ts +10 -0
- package/dist/types/styled-system/token-middleware.d.ts +6 -0
- package/dist/types/styled-system/token-transforms.d.ts +5 -0
- package/dist/types/styled-system/types.d.ts +284 -0
- package/dist/types/styled-system/unit-conversion.d.ts +4 -0
- package/dist/types/styled-system/use-recipe.d.ts +14 -0
- package/dist/types/styled-system/use-resolved-props.d.ts +7 -0
- package/dist/types/styled-system/use-slot-recipe.d.ts +15 -0
- package/dist/types/styled-system/use-token.d.ts +1 -0
- package/dist/types/styled-system/utility.d.ts +7 -0
- package/dist/types/theme/breakpoints.d.ts +7 -0
- package/dist/types/theme/global-css.d.ts +1 -0
- package/dist/types/theme/index.d.ts +1881 -0
- package/dist/types/theme/layer-styles.d.ts +1 -0
- package/dist/types/theme/motion-styles.d.ts +1 -0
- package/dist/types/theme/recipes/accordion.d.ts +75 -0
- package/dist/types/theme/recipes/action-bar.d.ts +24 -0
- package/dist/types/theme/recipes/alert.d.ts +119 -0
- package/dist/types/theme/recipes/avatar.d.ts +97 -0
- package/dist/types/theme/recipes/badge.d.ts +50 -0
- package/dist/types/theme/recipes/blockquote.d.ts +52 -0
- package/dist/types/theme/recipes/breadcrumb.d.ts +46 -0
- package/dist/types/theme/recipes/button.d.ts +143 -0
- package/dist/types/theme/recipes/card.d.ts +48 -0
- package/dist/types/theme/recipes/carousel.d.ts +1 -0
- package/dist/types/theme/recipes/checkbox-card.d.ts +188 -0
- package/dist/types/theme/recipes/checkbox.d.ts +80 -0
- package/dist/types/theme/recipes/checkmark.d.ts +59 -0
- package/dist/types/theme/recipes/code-block.d.ts +43 -0
- package/dist/types/theme/recipes/code.d.ts +50 -0
- package/dist/types/theme/recipes/collapsible.d.ts +1 -0
- package/dist/types/theme/recipes/color-picker.d.ts +172 -0
- package/dist/types/theme/recipes/color-swatch.d.ts +42 -0
- package/dist/types/theme/recipes/combobox.d.ts +128 -0
- package/dist/types/theme/recipes/container.d.ts +14 -0
- package/dist/types/theme/recipes/data-list.d.ts +70 -0
- package/dist/types/theme/recipes/date-picker.d.ts +110 -0
- package/dist/types/theme/recipes/dialog.d.ts +148 -0
- package/dist/types/theme/recipes/drawer.d.ts +117 -0
- package/dist/types/theme/recipes/editable.d.ts +37 -0
- package/dist/types/theme/recipes/empty-state.d.ts +49 -0
- package/dist/types/theme/recipes/field.d.ts +20 -0
- package/dist/types/theme/recipes/fieldset.d.ts +37 -0
- package/dist/types/theme/recipes/file-upload.d.ts +1 -0
- package/dist/types/theme/recipes/floating-panel.d.ts +1 -0
- package/dist/types/theme/recipes/heading.d.ts +37 -0
- package/dist/types/theme/recipes/hover-card.d.ts +24 -0
- package/dist/types/theme/recipes/icon.d.ts +23 -0
- package/dist/types/theme/recipes/input-addon.d.ts +58 -0
- package/dist/types/theme/recipes/input.d.ts +70 -0
- package/dist/types/theme/recipes/kbd.d.ts +36 -0
- package/dist/types/theme/recipes/link.d.ts +18 -0
- package/dist/types/theme/recipes/list.d.ts +37 -0
- package/dist/types/theme/recipes/listbox.d.ts +33 -0
- package/dist/types/theme/recipes/mark.d.ts +16 -0
- package/dist/types/theme/recipes/marquee.d.ts +1 -0
- package/dist/types/theme/recipes/menu.d.ts +47 -0
- package/dist/types/theme/recipes/native-select.d.ts +108 -0
- package/dist/types/theme/recipes/number-input.d.ts +137 -0
- package/dist/types/theme/recipes/pin-input.d.ts +329 -0
- package/dist/types/theme/recipes/popover.d.ts +24 -0
- package/dist/types/theme/recipes/progress-circle.d.ts +49 -0
- package/dist/types/theme/recipes/progress.d.ts +82 -0
- package/dist/types/theme/recipes/qr-code.d.ts +44 -0
- package/dist/types/theme/recipes/radio-card.d.ts +196 -0
- package/dist/types/theme/recipes/radio-group.d.ts +77 -0
- package/dist/types/theme/recipes/radiomark.d.ts +61 -0
- package/dist/types/theme/recipes/rating-group.d.ts +24 -0
- package/dist/types/theme/recipes/scroll-area.d.ts +41 -0
- package/dist/types/theme/recipes/segment-group.d.ts +36 -0
- package/dist/types/theme/recipes/select.d.ts +159 -0
- package/dist/types/theme/recipes/separator.d.ts +35 -0
- package/dist/types/theme/recipes/skeleton.d.ts +40 -0
- package/dist/types/theme/recipes/skip-nav-link.d.ts +1 -0
- package/dist/types/theme/recipes/slider.d.ts +121 -0
- package/dist/types/theme/recipes/spinner.d.ts +22 -0
- package/dist/types/theme/recipes/splitter.d.ts +1 -0
- package/dist/types/theme/recipes/stat.d.ts +19 -0
- package/dist/types/theme/recipes/status.d.ts +19 -0
- package/dist/types/theme/recipes/steps.d.ts +142 -0
- package/dist/types/theme/recipes/switch.d.ts +77 -0
- package/dist/types/theme/recipes/table.d.ts +120 -0
- package/dist/types/theme/recipes/tabs.d.ts +201 -0
- package/dist/types/theme/recipes/tag.d.ts +87 -0
- package/dist/types/theme/recipes/tags-input.d.ts +116 -0
- package/dist/types/theme/recipes/textarea.d.ts +59 -0
- package/dist/types/theme/recipes/timeline.d.ts +79 -0
- package/dist/types/theme/recipes/toast.d.ts +1 -0
- package/dist/types/theme/recipes/tooltip.d.ts +1 -0
- package/dist/types/theme/recipes/tree-view.d.ts +55 -0
- package/dist/types/theme/recipes.d.ts +836 -0
- package/dist/types/theme/recipes.export.d.ts +19 -0
- package/dist/types/theme/semantic-tokens/colors.d.ts +670 -0
- package/dist/types/theme/semantic-tokens/radii.d.ts +11 -0
- package/dist/types/theme/semantic-tokens/shadows.d.ts +50 -0
- package/dist/types/theme/slot-recipes.d.ts +4153 -0
- package/dist/types/theme/slot-recipes.export.d.ts +55 -0
- package/dist/types/theme/text-styles.d.ts +1 -0
- package/dist/types/theme/tokens/animations.d.ts +14 -0
- package/dist/types/theme/tokens/aspect-ratios.d.ts +20 -0
- package/dist/types/theme/tokens/blurs.d.ts +26 -0
- package/dist/types/theme/tokens/borders.d.ts +17 -0
- package/dist/types/theme/tokens/colors.d.ts +434 -0
- package/dist/types/theme/tokens/cursor.d.ts +26 -0
- package/dist/types/theme/tokens/durations.d.ts +23 -0
- package/dist/types/theme/tokens/easings.d.ts +14 -0
- package/dist/types/theme/tokens/font-sizes.d.ts +44 -0
- package/dist/types/theme/tokens/font-weights.d.ts +29 -0
- package/dist/types/theme/tokens/fonts.d.ts +11 -0
- package/dist/types/theme/tokens/keyframes.d.ts +1 -0
- package/dist/types/theme/tokens/letter-spacing.d.ts +17 -0
- package/dist/types/theme/tokens/line-heights.d.ts +17 -0
- package/dist/types/theme/tokens/radius.d.ts +35 -0
- package/dist/types/theme/tokens/sizes.d.ts +260 -0
- package/dist/types/theme/tokens/spacing.d.ts +104 -0
- package/dist/types/theme/tokens/z-indices.d.ts +41 -0
- package/dist/types/utils/attr.d.ts +3 -0
- package/dist/types/utils/call-all.d.ts +2 -0
- package/dist/types/utils/clone.d.ts +1 -0
- package/dist/types/utils/compact.d.ts +1 -0
- package/dist/types/utils/create-props.d.ts +3 -0
- package/dist/types/utils/cx.d.ts +1 -0
- package/dist/types/utils/entries.d.ts +5 -0
- package/dist/types/utils/flatten.d.ts +2 -0
- package/dist/types/utils/index.d.ts +19 -0
- package/dist/types/utils/interop.d.ts +1 -0
- package/dist/types/utils/is.d.ts +6 -0
- package/dist/types/utils/memo.d.ts +1 -0
- package/dist/types/utils/merge.d.ts +1 -0
- package/dist/types/utils/omit.d.ts +1 -0
- package/dist/types/utils/ref.d.ts +2 -0
- package/dist/types/utils/split-props.d.ts +9 -0
- package/dist/types/utils/types.d.ts +9 -0
- package/dist/types/utils/uniq.d.ts +1 -0
- package/dist/types/utils/unit.d.ts +1 -0
- package/dist/types/utils/walk-object.d.ts +12 -0
- package/package.json +146 -54
- package/LICENSE +0 -21
- package/dist/index.cjs +0 -6576
- package/dist/index.cjs.map +0 -1
- package/dist/index.css +0 -3826
- package/dist/index.css.map +0 -1
- package/dist/index.d.cts +0 -815
- package/dist/index.d.ts +0 -815
- package/dist/index.js +0 -6616
- package/dist/index.js.map +0 -1
|
@@ -0,0 +1,719 @@
|
|
|
1
|
+
import type { ConditionalValue, CssProperties } from "../css.types";
|
|
2
|
+
import type { UtilityValues } from "./prop-types.gen";
|
|
3
|
+
import type { Token } from "./token.gen";
|
|
4
|
+
type AnyString = string & {};
|
|
5
|
+
type AnyNumber = number & {};
|
|
6
|
+
type CssVars = `var(--${string})`;
|
|
7
|
+
type CssVarValue = ConditionalValue<Token | CssVars | AnyString | AnyNumber>;
|
|
8
|
+
type CssVarKey = `--${string}`;
|
|
9
|
+
export type CssVarProperties = {
|
|
10
|
+
[key in CssVarKey]?: CssVarValue | undefined;
|
|
11
|
+
};
|
|
12
|
+
export interface SystemProperties {
|
|
13
|
+
WebkitAppearance?: ConditionalValue<CssProperties["WebkitAppearance"] | undefined | AnyString> | undefined;
|
|
14
|
+
WebkitBorderBefore?: ConditionalValue<CssProperties["WebkitBorderBefore"] | undefined | AnyString> | undefined;
|
|
15
|
+
WebkitBorderBeforeColor?: ConditionalValue<CssProperties["WebkitBorderBeforeColor"] | undefined | AnyString> | undefined;
|
|
16
|
+
WebkitBorderBeforeStyle?: ConditionalValue<CssProperties["WebkitBorderBeforeStyle"] | undefined | AnyString> | undefined;
|
|
17
|
+
WebkitBorderBeforeWidth?: ConditionalValue<CssProperties["WebkitBorderBeforeWidth"] | undefined | AnyString> | undefined;
|
|
18
|
+
WebkitBoxReflect?: ConditionalValue<CssProperties["WebkitBoxReflect"] | undefined | AnyString> | undefined;
|
|
19
|
+
WebkitLineClamp?: ConditionalValue<CssProperties["WebkitLineClamp"] | undefined | AnyString> | undefined;
|
|
20
|
+
WebkitMask?: ConditionalValue<CssProperties["WebkitMask"] | undefined | AnyString> | undefined;
|
|
21
|
+
WebkitMaskAttachment?: ConditionalValue<CssProperties["WebkitMaskAttachment"] | undefined | AnyString> | undefined;
|
|
22
|
+
WebkitMaskClip?: ConditionalValue<CssProperties["WebkitMaskClip"] | undefined | AnyString> | undefined;
|
|
23
|
+
WebkitMaskComposite?: ConditionalValue<CssProperties["WebkitMaskComposite"] | undefined | AnyString> | undefined;
|
|
24
|
+
WebkitMaskImage?: ConditionalValue<CssProperties["WebkitMaskImage"] | undefined | AnyString> | undefined;
|
|
25
|
+
WebkitMaskOrigin?: ConditionalValue<CssProperties["WebkitMaskOrigin"] | undefined | AnyString> | undefined;
|
|
26
|
+
WebkitMaskPosition?: ConditionalValue<CssProperties["WebkitMaskPosition"] | undefined | AnyString> | undefined;
|
|
27
|
+
WebkitMaskPositionX?: ConditionalValue<CssProperties["WebkitMaskPositionX"] | undefined | AnyString> | undefined;
|
|
28
|
+
WebkitMaskPositionY?: ConditionalValue<CssProperties["WebkitMaskPositionY"] | undefined | AnyString> | undefined;
|
|
29
|
+
WebkitMaskRepeat?: ConditionalValue<CssProperties["WebkitMaskRepeat"] | undefined | AnyString> | undefined;
|
|
30
|
+
WebkitMaskRepeatX?: ConditionalValue<CssProperties["WebkitMaskRepeatX"] | undefined | AnyString> | undefined;
|
|
31
|
+
WebkitMaskRepeatY?: ConditionalValue<CssProperties["WebkitMaskRepeatY"] | undefined | AnyString> | undefined;
|
|
32
|
+
WebkitMaskSize?: ConditionalValue<CssProperties["WebkitMaskSize"] | undefined | AnyString> | undefined;
|
|
33
|
+
WebkitOverflowScrolling?: ConditionalValue<CssProperties["WebkitOverflowScrolling"] | undefined | AnyString> | undefined;
|
|
34
|
+
WebkitTapHighlightColor?: ConditionalValue<CssProperties["WebkitTapHighlightColor"] | undefined | AnyString> | undefined;
|
|
35
|
+
WebkitTextFillColor?: ConditionalValue<CssProperties["WebkitTextFillColor"] | undefined | AnyString> | undefined;
|
|
36
|
+
WebkitTextStroke?: ConditionalValue<CssProperties["WebkitTextStroke"] | undefined | AnyString> | undefined;
|
|
37
|
+
WebkitTextStrokeColor?: ConditionalValue<CssProperties["WebkitTextStrokeColor"] | undefined | AnyString> | undefined;
|
|
38
|
+
WebkitTextStrokeWidth?: ConditionalValue<CssProperties["WebkitTextStrokeWidth"] | undefined | AnyString> | undefined;
|
|
39
|
+
WebkitTouchCallout?: ConditionalValue<CssProperties["WebkitTouchCallout"] | undefined | AnyString> | undefined;
|
|
40
|
+
WebkitUserModify?: ConditionalValue<CssProperties["WebkitUserModify"] | undefined | AnyString> | undefined;
|
|
41
|
+
WebkitUserSelect?: ConditionalValue<CssProperties["WebkitUserSelect"] | undefined | AnyString> | undefined;
|
|
42
|
+
accentColor?: ConditionalValue<UtilityValues["accentColor"] | CssVars | CssProperties["accentColor"] | undefined | AnyString> | undefined;
|
|
43
|
+
alignContent?: ConditionalValue<CssProperties["alignContent"] | undefined | AnyString> | undefined;
|
|
44
|
+
alignItems?: ConditionalValue<CssProperties["alignItems"] | undefined | AnyString> | undefined;
|
|
45
|
+
alignSelf?: ConditionalValue<CssProperties["alignSelf"] | undefined | AnyString> | undefined;
|
|
46
|
+
alignTracks?: ConditionalValue<CssProperties["alignTracks"] | undefined | AnyString> | undefined;
|
|
47
|
+
all?: ConditionalValue<CssProperties["all"] | undefined | AnyString> | undefined;
|
|
48
|
+
anchorName?: ConditionalValue<CssProperties["anchorName"] | undefined | AnyString> | undefined;
|
|
49
|
+
anchorScope?: ConditionalValue<CssProperties["anchorScope"] | undefined | AnyString> | undefined;
|
|
50
|
+
animation?: ConditionalValue<UtilityValues["animation"] | CssVars | CssProperties["animation"] | undefined | AnyString> | undefined;
|
|
51
|
+
animationComposition?: ConditionalValue<CssProperties["animationComposition"] | undefined | AnyString> | undefined;
|
|
52
|
+
animationDelay?: ConditionalValue<UtilityValues["animationDelay"] | CssVars | CssProperties["animationDelay"] | undefined | AnyString> | undefined;
|
|
53
|
+
animationDirection?: ConditionalValue<CssProperties["animationDirection"] | undefined | AnyString> | undefined;
|
|
54
|
+
animationDuration?: ConditionalValue<UtilityValues["animationDuration"] | CssVars | CssProperties["animationDuration"] | undefined | AnyString> | undefined;
|
|
55
|
+
animationFillMode?: ConditionalValue<CssProperties["animationFillMode"] | undefined | AnyString> | undefined;
|
|
56
|
+
animationIterationCount?: ConditionalValue<CssProperties["animationIterationCount"] | undefined | AnyString> | undefined;
|
|
57
|
+
animationName?: ConditionalValue<UtilityValues["animationName"] | CssVars | CssProperties["animationName"] | undefined | AnyString> | undefined;
|
|
58
|
+
animationPlayState?: ConditionalValue<CssProperties["animationPlayState"] | undefined | AnyString> | undefined;
|
|
59
|
+
animationRange?: ConditionalValue<CssProperties["animationRange"] | undefined | AnyString> | undefined;
|
|
60
|
+
animationRangeEnd?: ConditionalValue<CssProperties["animationRangeEnd"] | undefined | AnyString> | undefined;
|
|
61
|
+
animationRangeStart?: ConditionalValue<CssProperties["animationRangeStart"] | undefined | AnyString> | undefined;
|
|
62
|
+
animationTimeline?: ConditionalValue<CssProperties["animationTimeline"] | undefined | AnyString> | undefined;
|
|
63
|
+
animationTimingFunction?: ConditionalValue<UtilityValues["animationTimingFunction"] | CssVars | CssProperties["animationTimingFunction"] | undefined | AnyString> | undefined;
|
|
64
|
+
appearance?: ConditionalValue<CssProperties["appearance"] | undefined | AnyString> | undefined;
|
|
65
|
+
aspectRatio?: ConditionalValue<UtilityValues["aspectRatio"] | CssVars | CssProperties["aspectRatio"] | undefined | AnyString> | undefined;
|
|
66
|
+
backdropFilter?: ConditionalValue<CssProperties["backdropFilter"] | undefined | AnyString> | undefined;
|
|
67
|
+
backfaceVisibility?: ConditionalValue<CssProperties["backfaceVisibility"] | undefined | AnyString> | undefined;
|
|
68
|
+
background?: ConditionalValue<UtilityValues["background"] | CssVars | CssProperties["background"] | undefined | AnyString> | undefined;
|
|
69
|
+
backgroundAttachment?: ConditionalValue<CssProperties["backgroundAttachment"] | undefined | AnyString> | undefined;
|
|
70
|
+
backgroundBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | undefined | AnyString> | undefined;
|
|
71
|
+
backgroundClip?: ConditionalValue<UtilityValues["backgroundClip"] | CssVars | CssProperties["backgroundClip"] | undefined | AnyString> | undefined;
|
|
72
|
+
backgroundColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssVars | CssProperties["backgroundColor"] | undefined | AnyString> | undefined;
|
|
73
|
+
backgroundImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | undefined | AnyString> | undefined;
|
|
74
|
+
backgroundOrigin?: ConditionalValue<CssProperties["backgroundOrigin"] | undefined | AnyString> | undefined;
|
|
75
|
+
backgroundPosition?: ConditionalValue<CssProperties["backgroundPosition"] | undefined | AnyString> | undefined;
|
|
76
|
+
backgroundPositionX?: ConditionalValue<CssProperties["backgroundPositionX"] | undefined | AnyString> | undefined;
|
|
77
|
+
backgroundPositionY?: ConditionalValue<CssProperties["backgroundPositionY"] | undefined | AnyString> | undefined;
|
|
78
|
+
backgroundRepeat?: ConditionalValue<CssProperties["backgroundRepeat"] | undefined | AnyString> | undefined;
|
|
79
|
+
backgroundSize?: ConditionalValue<CssProperties["backgroundSize"] | undefined | AnyString> | undefined;
|
|
80
|
+
blockSize?: ConditionalValue<UtilityValues["blockSize"] | CssVars | CssProperties["blockSize"] | undefined | AnyString> | undefined;
|
|
81
|
+
border?: ConditionalValue<UtilityValues["border"] | CssVars | CssProperties["border"] | undefined | AnyString> | undefined;
|
|
82
|
+
borderBlock?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssProperties["borderBlock"] | undefined | AnyString> | undefined;
|
|
83
|
+
borderBlockColor?: ConditionalValue<CssProperties["borderBlockColor"] | undefined | AnyString> | undefined;
|
|
84
|
+
borderBlockEnd?: ConditionalValue<UtilityValues["borderBlockEnd"] | CssVars | CssProperties["borderBlockEnd"] | undefined | AnyString> | undefined;
|
|
85
|
+
borderBlockEndColor?: ConditionalValue<UtilityValues["borderBlockEndColor"] | CssVars | CssProperties["borderBlockEndColor"] | undefined | AnyString> | undefined;
|
|
86
|
+
borderBlockEndStyle?: ConditionalValue<UtilityValues["borderBlockEndStyle"] | CssVars | CssProperties["borderBlockEndStyle"] | undefined | AnyString> | undefined;
|
|
87
|
+
borderBlockEndWidth?: ConditionalValue<UtilityValues["borderBlockEndWidth"] | CssVars | CssProperties["borderBlockEndWidth"] | undefined | AnyString> | undefined;
|
|
88
|
+
borderBlockStart?: ConditionalValue<UtilityValues["borderBlockStart"] | CssVars | CssProperties["borderBlockStart"] | undefined | AnyString> | undefined;
|
|
89
|
+
borderBlockStartColor?: ConditionalValue<UtilityValues["borderBlockStartColor"] | CssVars | CssProperties["borderBlockStartColor"] | undefined | AnyString> | undefined;
|
|
90
|
+
borderBlockStartStyle?: ConditionalValue<UtilityValues["borderBlockStartStyle"] | CssVars | CssProperties["borderBlockStartStyle"] | undefined | AnyString> | undefined;
|
|
91
|
+
borderBlockStartWidth?: ConditionalValue<UtilityValues["borderBlockStartWidth"] | CssVars | CssProperties["borderBlockStartWidth"] | undefined | AnyString> | undefined;
|
|
92
|
+
borderBlockStyle?: ConditionalValue<CssProperties["borderBlockStyle"] | undefined | AnyString> | undefined;
|
|
93
|
+
borderBlockWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | undefined | AnyString> | undefined;
|
|
94
|
+
borderBottom?: ConditionalValue<UtilityValues["borderBottom"] | CssVars | CssProperties["borderBottom"] | undefined | AnyString> | undefined;
|
|
95
|
+
borderBottomColor?: ConditionalValue<UtilityValues["borderBottomColor"] | CssVars | CssProperties["borderBottomColor"] | undefined | AnyString> | undefined;
|
|
96
|
+
borderBottomLeftRadius?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssVars | CssProperties["borderBottomLeftRadius"] | undefined | AnyString> | undefined;
|
|
97
|
+
borderBottomRightRadius?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssVars | CssProperties["borderBottomRightRadius"] | undefined | AnyString> | undefined;
|
|
98
|
+
borderBottomStyle?: ConditionalValue<UtilityValues["borderBottomStyle"] | CssVars | CssProperties["borderBottomStyle"] | undefined | AnyString> | undefined;
|
|
99
|
+
borderBottomWidth?: ConditionalValue<UtilityValues["borderBottomWidth"] | CssVars | CssProperties["borderBottomWidth"] | undefined | AnyString> | undefined;
|
|
100
|
+
borderCollapse?: ConditionalValue<CssProperties["borderCollapse"] | undefined | AnyString> | undefined;
|
|
101
|
+
borderColor?: ConditionalValue<UtilityValues["borderColor"] | CssVars | CssProperties["borderColor"] | undefined | AnyString> | undefined;
|
|
102
|
+
borderEndEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | undefined | AnyString> | undefined;
|
|
103
|
+
borderEndStartRadius?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | undefined | AnyString> | undefined;
|
|
104
|
+
borderImage?: ConditionalValue<CssProperties["borderImage"] | undefined | AnyString> | undefined;
|
|
105
|
+
borderImageOutset?: ConditionalValue<CssProperties["borderImageOutset"] | undefined | AnyString> | undefined;
|
|
106
|
+
borderImageRepeat?: ConditionalValue<CssProperties["borderImageRepeat"] | undefined | AnyString> | undefined;
|
|
107
|
+
borderImageSlice?: ConditionalValue<CssProperties["borderImageSlice"] | undefined | AnyString> | undefined;
|
|
108
|
+
borderImageSource?: ConditionalValue<CssProperties["borderImageSource"] | undefined | AnyString> | undefined;
|
|
109
|
+
borderImageWidth?: ConditionalValue<CssProperties["borderImageWidth"] | undefined | AnyString> | undefined;
|
|
110
|
+
borderInline?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperties["borderInline"] | undefined | AnyString> | undefined;
|
|
111
|
+
borderInlineColor?: ConditionalValue<CssProperties["borderInlineColor"] | undefined | AnyString> | undefined;
|
|
112
|
+
borderInlineEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssProperties["borderInlineEnd"] | undefined | AnyString> | undefined;
|
|
113
|
+
borderInlineEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVars | CssProperties["borderInlineEndColor"] | undefined | AnyString> | undefined;
|
|
114
|
+
borderInlineEndStyle?: ConditionalValue<UtilityValues["borderInlineEndStyle"] | CssVars | CssProperties["borderInlineEndStyle"] | undefined | AnyString> | undefined;
|
|
115
|
+
borderInlineEndWidth?: ConditionalValue<UtilityValues["borderInlineEndWidth"] | CssVars | CssProperties["borderInlineEndWidth"] | undefined | AnyString> | undefined;
|
|
116
|
+
borderInlineStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | CssProperties["borderInlineStart"] | undefined | AnyString> | undefined;
|
|
117
|
+
borderInlineStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssVars | CssProperties["borderInlineStartColor"] | undefined | AnyString> | undefined;
|
|
118
|
+
borderInlineStartStyle?: ConditionalValue<UtilityValues["borderInlineStartStyle"] | CssVars | CssProperties["borderInlineStartStyle"] | undefined | AnyString> | undefined;
|
|
119
|
+
borderInlineStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | undefined | AnyString> | undefined;
|
|
120
|
+
borderInlineStyle?: ConditionalValue<CssProperties["borderInlineStyle"] | undefined | AnyString> | undefined;
|
|
121
|
+
borderInlineWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | undefined | AnyString> | undefined;
|
|
122
|
+
borderLeft?: ConditionalValue<UtilityValues["borderLeft"] | CssVars | CssProperties["borderLeft"] | undefined | AnyString> | undefined;
|
|
123
|
+
borderLeftColor?: ConditionalValue<UtilityValues["borderLeftColor"] | CssVars | CssProperties["borderLeftColor"] | undefined | AnyString> | undefined;
|
|
124
|
+
borderLeftStyle?: ConditionalValue<UtilityValues["borderLeftStyle"] | CssVars | CssProperties["borderLeftStyle"] | undefined | AnyString> | undefined;
|
|
125
|
+
borderLeftWidth?: ConditionalValue<UtilityValues["borderLeftWidth"] | CssVars | CssProperties["borderLeftWidth"] | undefined | AnyString> | undefined;
|
|
126
|
+
borderRadius?: ConditionalValue<UtilityValues["borderRadius"] | CssVars | CssProperties["borderRadius"] | undefined | AnyString> | undefined;
|
|
127
|
+
borderRight?: ConditionalValue<UtilityValues["borderRight"] | CssVars | CssProperties["borderRight"] | undefined | AnyString> | undefined;
|
|
128
|
+
borderRightColor?: ConditionalValue<UtilityValues["borderRightColor"] | CssVars | CssProperties["borderRightColor"] | undefined | AnyString> | undefined;
|
|
129
|
+
borderRightStyle?: ConditionalValue<UtilityValues["borderRightStyle"] | CssVars | CssProperties["borderRightStyle"] | undefined | AnyString> | undefined;
|
|
130
|
+
borderRightWidth?: ConditionalValue<UtilityValues["borderRightWidth"] | CssVars | CssProperties["borderRightWidth"] | undefined | AnyString> | undefined;
|
|
131
|
+
borderSpacing?: ConditionalValue<UtilityValues["borderSpacing"] | CssVars | CssProperties["borderSpacing"] | undefined | AnyString> | undefined;
|
|
132
|
+
borderStartEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | undefined | AnyString> | undefined;
|
|
133
|
+
borderStartStartRadius?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | undefined | AnyString> | undefined;
|
|
134
|
+
borderStyle?: ConditionalValue<UtilityValues["borderStyle"] | CssVars | CssProperties["borderStyle"] | undefined | AnyString> | undefined;
|
|
135
|
+
borderTop?: ConditionalValue<UtilityValues["borderTop"] | CssVars | CssProperties["borderTop"] | undefined | AnyString> | undefined;
|
|
136
|
+
borderTopColor?: ConditionalValue<UtilityValues["borderTopColor"] | CssVars | CssProperties["borderTopColor"] | undefined | AnyString> | undefined;
|
|
137
|
+
borderTopLeftRadius?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssVars | CssProperties["borderTopLeftRadius"] | undefined | AnyString> | undefined;
|
|
138
|
+
borderTopRightRadius?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssVars | CssProperties["borderTopRightRadius"] | undefined | AnyString> | undefined;
|
|
139
|
+
borderTopStyle?: ConditionalValue<UtilityValues["borderTopStyle"] | CssVars | CssProperties["borderTopStyle"] | undefined | AnyString> | undefined;
|
|
140
|
+
borderTopWidth?: ConditionalValue<UtilityValues["borderTopWidth"] | CssVars | CssProperties["borderTopWidth"] | undefined | AnyString> | undefined;
|
|
141
|
+
borderWidth?: ConditionalValue<UtilityValues["borderWidth"] | CssVars | CssProperties["borderWidth"] | undefined | AnyString> | undefined;
|
|
142
|
+
bottom?: ConditionalValue<UtilityValues["bottom"] | CssVars | CssProperties["bottom"] | undefined | AnyString> | undefined;
|
|
143
|
+
boxAlign?: ConditionalValue<CssProperties["boxAlign"] | undefined | AnyString> | undefined;
|
|
144
|
+
boxDecorationBreak?: ConditionalValue<CssProperties["boxDecorationBreak"] | undefined | AnyString> | undefined;
|
|
145
|
+
boxDirection?: ConditionalValue<CssProperties["boxDirection"] | undefined | AnyString> | undefined;
|
|
146
|
+
boxFlex?: ConditionalValue<CssProperties["boxFlex"] | undefined | AnyString> | undefined;
|
|
147
|
+
boxFlexGroup?: ConditionalValue<CssProperties["boxFlexGroup"] | undefined | AnyString> | undefined;
|
|
148
|
+
boxLines?: ConditionalValue<CssProperties["boxLines"] | undefined | AnyString> | undefined;
|
|
149
|
+
boxOrdinalGroup?: ConditionalValue<CssProperties["boxOrdinalGroup"] | undefined | AnyString> | undefined;
|
|
150
|
+
boxOrient?: ConditionalValue<CssProperties["boxOrient"] | undefined | AnyString> | undefined;
|
|
151
|
+
boxPack?: ConditionalValue<CssProperties["boxPack"] | undefined | AnyString> | undefined;
|
|
152
|
+
boxShadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | undefined | AnyString> | undefined;
|
|
153
|
+
boxSizing?: ConditionalValue<CssProperties["boxSizing"] | undefined | AnyString> | undefined;
|
|
154
|
+
breakAfter?: ConditionalValue<CssProperties["breakAfter"] | undefined | AnyString> | undefined;
|
|
155
|
+
breakBefore?: ConditionalValue<CssProperties["breakBefore"] | undefined | AnyString> | undefined;
|
|
156
|
+
breakInside?: ConditionalValue<CssProperties["breakInside"] | undefined | AnyString> | undefined;
|
|
157
|
+
captionSide?: ConditionalValue<CssProperties["captionSide"] | undefined | AnyString> | undefined;
|
|
158
|
+
caret?: ConditionalValue<CssProperties["caret"] | undefined | AnyString> | undefined;
|
|
159
|
+
caretColor?: ConditionalValue<UtilityValues["caretColor"] | CssVars | CssProperties["caretColor"] | undefined | AnyString> | undefined;
|
|
160
|
+
caretShape?: ConditionalValue<CssProperties["caretShape"] | undefined | AnyString> | undefined;
|
|
161
|
+
clear?: ConditionalValue<CssProperties["clear"] | undefined | AnyString> | undefined;
|
|
162
|
+
clip?: ConditionalValue<CssProperties["clip"] | undefined | AnyString> | undefined;
|
|
163
|
+
clipPath?: ConditionalValue<CssProperties["clipPath"] | undefined | AnyString> | undefined;
|
|
164
|
+
clipRule?: ConditionalValue<CssProperties["clipRule"] | undefined | AnyString> | undefined;
|
|
165
|
+
color?: ConditionalValue<UtilityValues["color"] | CssVars | CssProperties["color"] | undefined | AnyString> | undefined;
|
|
166
|
+
colorInterpolationFilters?: ConditionalValue<CssProperties["colorInterpolationFilters"] | undefined | AnyString> | undefined;
|
|
167
|
+
colorScheme?: ConditionalValue<CssProperties["colorScheme"] | undefined | AnyString> | undefined;
|
|
168
|
+
columnCount?: ConditionalValue<CssProperties["columnCount"] | undefined | AnyString> | undefined;
|
|
169
|
+
columnFill?: ConditionalValue<CssProperties["columnFill"] | undefined | AnyString> | undefined;
|
|
170
|
+
columnGap?: ConditionalValue<UtilityValues["columnGap"] | CssVars | CssProperties["columnGap"] | undefined | AnyString> | undefined;
|
|
171
|
+
columnRule?: ConditionalValue<CssProperties["columnRule"] | undefined | AnyString> | undefined;
|
|
172
|
+
columnRuleColor?: ConditionalValue<CssProperties["columnRuleColor"] | undefined | AnyString> | undefined;
|
|
173
|
+
columnRuleStyle?: ConditionalValue<CssProperties["columnRuleStyle"] | undefined | AnyString> | undefined;
|
|
174
|
+
columnRuleWidth?: ConditionalValue<CssProperties["columnRuleWidth"] | undefined | AnyString> | undefined;
|
|
175
|
+
columnSpan?: ConditionalValue<CssProperties["columnSpan"] | undefined | AnyString> | undefined;
|
|
176
|
+
columnWidth?: ConditionalValue<CssProperties["columnWidth"] | undefined | AnyString> | undefined;
|
|
177
|
+
columns?: ConditionalValue<CssProperties["columns"] | undefined | AnyString> | undefined;
|
|
178
|
+
contain?: ConditionalValue<CssProperties["contain"] | undefined | AnyString> | undefined;
|
|
179
|
+
containIntrinsicBlockSize?: ConditionalValue<CssProperties["containIntrinsicBlockSize"] | undefined | AnyString> | undefined;
|
|
180
|
+
containIntrinsicHeight?: ConditionalValue<CssProperties["containIntrinsicHeight"] | undefined | AnyString> | undefined;
|
|
181
|
+
containIntrinsicInlineSize?: ConditionalValue<CssProperties["containIntrinsicInlineSize"] | undefined | AnyString> | undefined;
|
|
182
|
+
containIntrinsicSize?: ConditionalValue<CssProperties["containIntrinsicSize"] | undefined | AnyString> | undefined;
|
|
183
|
+
containIntrinsicWidth?: ConditionalValue<CssProperties["containIntrinsicWidth"] | undefined | AnyString> | undefined;
|
|
184
|
+
container?: ConditionalValue<CssProperties["container"] | undefined | AnyString> | undefined;
|
|
185
|
+
containerName?: ConditionalValue<CssProperties["containerName"] | undefined | AnyString> | undefined;
|
|
186
|
+
containerType?: ConditionalValue<CssProperties["containerType"] | undefined | AnyString> | undefined;
|
|
187
|
+
content?: ConditionalValue<CssProperties["content"] | undefined | AnyString> | undefined;
|
|
188
|
+
contentVisibility?: ConditionalValue<CssProperties["contentVisibility"] | undefined | AnyString> | undefined;
|
|
189
|
+
counterIncrement?: ConditionalValue<CssProperties["counterIncrement"] | undefined | AnyString> | undefined;
|
|
190
|
+
counterReset?: ConditionalValue<CssProperties["counterReset"] | undefined | AnyString> | undefined;
|
|
191
|
+
counterSet?: ConditionalValue<CssProperties["counterSet"] | undefined | AnyString> | undefined;
|
|
192
|
+
cursor?: ConditionalValue<UtilityValues["cursor"] | CssVars | CssProperties["cursor"] | undefined | AnyString> | undefined;
|
|
193
|
+
cx?: ConditionalValue<CssProperties["cx"] | undefined | AnyString> | undefined;
|
|
194
|
+
cy?: ConditionalValue<CssProperties["cy"] | undefined | AnyString> | undefined;
|
|
195
|
+
d?: ConditionalValue<CssProperties["d"] | undefined | AnyString> | undefined;
|
|
196
|
+
direction?: ConditionalValue<CssProperties["direction"] | undefined | AnyString> | undefined;
|
|
197
|
+
display?: ConditionalValue<CssProperties["display"] | undefined | AnyString> | undefined;
|
|
198
|
+
dominantBaseline?: ConditionalValue<CssProperties["dominantBaseline"] | undefined | AnyString> | undefined;
|
|
199
|
+
emptyCells?: ConditionalValue<CssProperties["emptyCells"] | undefined | AnyString> | undefined;
|
|
200
|
+
fieldSizing?: ConditionalValue<CssProperties["fieldSizing"] | undefined | AnyString> | undefined;
|
|
201
|
+
fill?: ConditionalValue<UtilityValues["fill"] | CssVars | CssProperties["fill"] | undefined | AnyString> | undefined;
|
|
202
|
+
fillOpacity?: ConditionalValue<CssProperties["fillOpacity"] | undefined | AnyString> | undefined;
|
|
203
|
+
fillRule?: ConditionalValue<CssProperties["fillRule"] | undefined | AnyString> | undefined;
|
|
204
|
+
filter?: ConditionalValue<CssProperties["filter"] | undefined | AnyString> | undefined;
|
|
205
|
+
flex?: ConditionalValue<CssProperties["flex"] | undefined | AnyString> | undefined;
|
|
206
|
+
flexBasis?: ConditionalValue<UtilityValues["flexBasis"] | CssVars | CssProperties["flexBasis"] | undefined | AnyString> | undefined;
|
|
207
|
+
flexDirection?: ConditionalValue<CssProperties["flexDirection"] | undefined | AnyString> | undefined;
|
|
208
|
+
flexFlow?: ConditionalValue<CssProperties["flexFlow"] | undefined | AnyString> | undefined;
|
|
209
|
+
flexGrow?: ConditionalValue<CssProperties["flexGrow"] | undefined | AnyString> | undefined;
|
|
210
|
+
flexShrink?: ConditionalValue<CssProperties["flexShrink"] | undefined | AnyString> | undefined;
|
|
211
|
+
flexWrap?: ConditionalValue<CssProperties["flexWrap"] | undefined | AnyString> | undefined;
|
|
212
|
+
float?: ConditionalValue<CssProperties["float"] | undefined | AnyString> | undefined;
|
|
213
|
+
floodColor?: ConditionalValue<CssProperties["floodColor"] | undefined | AnyString> | undefined;
|
|
214
|
+
floodOpacity?: ConditionalValue<CssProperties["floodOpacity"] | undefined | AnyString> | undefined;
|
|
215
|
+
font?: ConditionalValue<CssProperties["font"] | undefined | AnyString> | undefined;
|
|
216
|
+
fontFamily?: ConditionalValue<UtilityValues["fontFamily"] | CssVars | CssProperties["fontFamily"] | undefined | AnyString> | undefined;
|
|
217
|
+
fontFeatureSettings?: ConditionalValue<CssProperties["fontFeatureSettings"] | undefined | AnyString> | undefined;
|
|
218
|
+
fontKerning?: ConditionalValue<CssProperties["fontKerning"] | undefined | AnyString> | undefined;
|
|
219
|
+
fontLanguageOverride?: ConditionalValue<CssProperties["fontLanguageOverride"] | undefined | AnyString> | undefined;
|
|
220
|
+
fontOpticalSizing?: ConditionalValue<CssProperties["fontOpticalSizing"] | undefined | AnyString> | undefined;
|
|
221
|
+
fontPalette?: ConditionalValue<CssProperties["fontPalette"] | undefined | AnyString> | undefined;
|
|
222
|
+
fontSize?: ConditionalValue<UtilityValues["fontSize"] | CssVars | CssProperties["fontSize"] | undefined | AnyString> | undefined;
|
|
223
|
+
fontSizeAdjust?: ConditionalValue<CssProperties["fontSizeAdjust"] | undefined | AnyString> | undefined;
|
|
224
|
+
fontSmooth?: ConditionalValue<CssProperties["fontSmooth"] | undefined | AnyString> | undefined;
|
|
225
|
+
fontStretch?: ConditionalValue<CssProperties["fontStretch"] | undefined | AnyString> | undefined;
|
|
226
|
+
fontStyle?: ConditionalValue<CssProperties["fontStyle"] | undefined | AnyString> | undefined;
|
|
227
|
+
fontSynthesis?: ConditionalValue<CssProperties["fontSynthesis"] | undefined | AnyString> | undefined;
|
|
228
|
+
fontSynthesisPosition?: ConditionalValue<CssProperties["fontSynthesisPosition"] | undefined | AnyString> | undefined;
|
|
229
|
+
fontSynthesisSmallCaps?: ConditionalValue<CssProperties["fontSynthesisSmallCaps"] | undefined | AnyString> | undefined;
|
|
230
|
+
fontSynthesisStyle?: ConditionalValue<CssProperties["fontSynthesisStyle"] | undefined | AnyString> | undefined;
|
|
231
|
+
fontSynthesisWeight?: ConditionalValue<CssProperties["fontSynthesisWeight"] | undefined | AnyString> | undefined;
|
|
232
|
+
fontVariant?: ConditionalValue<CssProperties["fontVariant"] | undefined | AnyString> | undefined;
|
|
233
|
+
fontVariantAlternates?: ConditionalValue<CssProperties["fontVariantAlternates"] | undefined | AnyString> | undefined;
|
|
234
|
+
fontVariantCaps?: ConditionalValue<CssProperties["fontVariantCaps"] | undefined | AnyString> | undefined;
|
|
235
|
+
fontVariantEastAsian?: ConditionalValue<CssProperties["fontVariantEastAsian"] | undefined | AnyString> | undefined;
|
|
236
|
+
fontVariantEmoji?: ConditionalValue<CssProperties["fontVariantEmoji"] | undefined | AnyString> | undefined;
|
|
237
|
+
fontVariantLigatures?: ConditionalValue<CssProperties["fontVariantLigatures"] | undefined | AnyString> | undefined;
|
|
238
|
+
fontVariantNumeric?: ConditionalValue<CssProperties["fontVariantNumeric"] | undefined | AnyString> | undefined;
|
|
239
|
+
fontVariantPosition?: ConditionalValue<CssProperties["fontVariantPosition"] | undefined | AnyString> | undefined;
|
|
240
|
+
fontVariationSettings?: ConditionalValue<CssProperties["fontVariationSettings"] | undefined | AnyString> | undefined;
|
|
241
|
+
fontWeight?: ConditionalValue<UtilityValues["fontWeight"] | CssVars | CssProperties["fontWeight"] | undefined | AnyString> | undefined;
|
|
242
|
+
forcedColorAdjust?: ConditionalValue<CssProperties["forcedColorAdjust"] | undefined | AnyString> | undefined;
|
|
243
|
+
gap?: ConditionalValue<UtilityValues["gap"] | CssVars | CssProperties["gap"] | undefined | AnyString> | undefined;
|
|
244
|
+
grid?: ConditionalValue<CssProperties["grid"] | undefined | AnyString> | undefined;
|
|
245
|
+
gridArea?: ConditionalValue<CssProperties["gridArea"] | undefined | AnyString> | undefined;
|
|
246
|
+
gridAutoColumns?: ConditionalValue<CssProperties["gridAutoColumns"] | undefined | AnyString> | undefined;
|
|
247
|
+
gridAutoFlow?: ConditionalValue<CssProperties["gridAutoFlow"] | undefined | AnyString> | undefined;
|
|
248
|
+
gridAutoRows?: ConditionalValue<CssProperties["gridAutoRows"] | undefined | AnyString> | undefined;
|
|
249
|
+
gridColumn?: ConditionalValue<CssProperties["gridColumn"] | undefined | AnyString> | undefined;
|
|
250
|
+
gridColumnEnd?: ConditionalValue<CssProperties["gridColumnEnd"] | undefined | AnyString> | undefined;
|
|
251
|
+
gridColumnGap?: ConditionalValue<UtilityValues["gridColumnGap"] | CssVars | CssProperties["gridColumnGap"] | undefined | AnyString> | undefined;
|
|
252
|
+
gridColumnStart?: ConditionalValue<CssProperties["gridColumnStart"] | undefined | AnyString> | undefined;
|
|
253
|
+
gridGap?: ConditionalValue<UtilityValues["gridGap"] | CssVars | CssProperties["gridGap"] | undefined | AnyString> | undefined;
|
|
254
|
+
gridRow?: ConditionalValue<CssProperties["gridRow"] | undefined | AnyString> | undefined;
|
|
255
|
+
gridRowEnd?: ConditionalValue<CssProperties["gridRowEnd"] | undefined | AnyString> | undefined;
|
|
256
|
+
gridRowGap?: ConditionalValue<UtilityValues["gridRowGap"] | CssVars | CssProperties["gridRowGap"] | undefined | AnyString> | undefined;
|
|
257
|
+
gridRowStart?: ConditionalValue<CssProperties["gridRowStart"] | undefined | AnyString> | undefined;
|
|
258
|
+
gridTemplate?: ConditionalValue<CssProperties["gridTemplate"] | undefined | AnyString> | undefined;
|
|
259
|
+
gridTemplateAreas?: ConditionalValue<CssProperties["gridTemplateAreas"] | undefined | AnyString> | undefined;
|
|
260
|
+
gridTemplateColumns?: ConditionalValue<CssProperties["gridTemplateColumns"] | undefined | AnyString> | undefined;
|
|
261
|
+
gridTemplateRows?: ConditionalValue<CssProperties["gridTemplateRows"] | undefined | AnyString> | undefined;
|
|
262
|
+
hangingPunctuation?: ConditionalValue<CssProperties["hangingPunctuation"] | undefined | AnyString> | undefined;
|
|
263
|
+
height?: ConditionalValue<UtilityValues["height"] | CssVars | CssProperties["height"] | undefined | AnyString> | undefined;
|
|
264
|
+
hyphenateCharacter?: ConditionalValue<CssProperties["hyphenateCharacter"] | undefined | AnyString> | undefined;
|
|
265
|
+
hyphenateLimitChars?: ConditionalValue<CssProperties["hyphenateLimitChars"] | undefined | AnyString> | undefined;
|
|
266
|
+
hyphens?: ConditionalValue<CssProperties["hyphens"] | undefined | AnyString> | undefined;
|
|
267
|
+
imageOrientation?: ConditionalValue<CssProperties["imageOrientation"] | undefined | AnyString> | undefined;
|
|
268
|
+
imageRendering?: ConditionalValue<CssProperties["imageRendering"] | undefined | AnyString> | undefined;
|
|
269
|
+
imageResolution?: ConditionalValue<CssProperties["imageResolution"] | undefined | AnyString> | undefined;
|
|
270
|
+
imeMode?: ConditionalValue<CssProperties["imeMode"] | undefined | AnyString> | undefined;
|
|
271
|
+
initialLetter?: ConditionalValue<CssProperties["initialLetter"] | undefined | AnyString> | undefined;
|
|
272
|
+
initialLetterAlign?: ConditionalValue<CssProperties["initialLetterAlign"] | undefined | AnyString> | undefined;
|
|
273
|
+
inlineSize?: ConditionalValue<UtilityValues["inlineSize"] | CssVars | CssProperties["inlineSize"] | undefined | AnyString> | undefined;
|
|
274
|
+
inset?: ConditionalValue<UtilityValues["inset"] | CssVars | CssProperties["inset"] | undefined | AnyString> | undefined;
|
|
275
|
+
insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"] | undefined | AnyString> | undefined;
|
|
276
|
+
insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssVars | CssProperties["insetBlockEnd"] | undefined | AnyString> | undefined;
|
|
277
|
+
insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssVars | CssProperties["insetBlockStart"] | undefined | AnyString> | undefined;
|
|
278
|
+
insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"] | undefined | AnyString> | undefined;
|
|
279
|
+
insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | undefined | AnyString> | undefined;
|
|
280
|
+
insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | undefined | AnyString> | undefined;
|
|
281
|
+
interpolateSize?: ConditionalValue<CssProperties["interpolateSize"] | undefined | AnyString> | undefined;
|
|
282
|
+
isolation?: ConditionalValue<CssProperties["isolation"] | undefined | AnyString> | undefined;
|
|
283
|
+
justifyContent?: ConditionalValue<CssProperties["justifyContent"] | undefined | AnyString> | undefined;
|
|
284
|
+
justifyItems?: ConditionalValue<CssProperties["justifyItems"] | undefined | AnyString> | undefined;
|
|
285
|
+
justifySelf?: ConditionalValue<CssProperties["justifySelf"] | undefined | AnyString> | undefined;
|
|
286
|
+
justifyTracks?: ConditionalValue<CssProperties["justifyTracks"] | undefined | AnyString> | undefined;
|
|
287
|
+
left?: ConditionalValue<UtilityValues["left"] | CssVars | CssProperties["left"] | undefined | AnyString> | undefined;
|
|
288
|
+
letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssVars | CssProperties["letterSpacing"] | undefined | AnyString> | undefined;
|
|
289
|
+
lightingColor?: ConditionalValue<CssProperties["lightingColor"] | undefined | AnyString> | undefined;
|
|
290
|
+
lineBreak?: ConditionalValue<CssProperties["lineBreak"] | undefined | AnyString> | undefined;
|
|
291
|
+
lineClamp?: ConditionalValue<CssProperties["lineClamp"] | undefined | AnyString> | undefined;
|
|
292
|
+
lineHeight?: ConditionalValue<UtilityValues["lineHeight"] | CssVars | CssProperties["lineHeight"] | undefined | AnyString> | undefined;
|
|
293
|
+
lineHeightStep?: ConditionalValue<CssProperties["lineHeightStep"] | undefined | AnyString> | undefined;
|
|
294
|
+
listStyle?: ConditionalValue<CssProperties["listStyle"] | undefined | AnyString> | undefined;
|
|
295
|
+
listStyleImage?: ConditionalValue<UtilityValues["listStyleImage"] | CssVars | CssProperties["listStyleImage"] | undefined | AnyString> | undefined;
|
|
296
|
+
listStylePosition?: ConditionalValue<CssProperties["listStylePosition"] | undefined | AnyString> | undefined;
|
|
297
|
+
listStyleType?: ConditionalValue<CssProperties["listStyleType"] | undefined | AnyString> | undefined;
|
|
298
|
+
margin?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"] | undefined | AnyString> | undefined;
|
|
299
|
+
marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | undefined | AnyString> | undefined;
|
|
300
|
+
marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssVars | CssProperties["marginBlockEnd"] | undefined | AnyString> | undefined;
|
|
301
|
+
marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssVars | CssProperties["marginBlockStart"] | undefined | AnyString> | undefined;
|
|
302
|
+
marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"] | undefined | AnyString> | undefined;
|
|
303
|
+
marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | undefined | AnyString> | undefined;
|
|
304
|
+
marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | undefined | AnyString> | undefined;
|
|
305
|
+
marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | undefined | AnyString> | undefined;
|
|
306
|
+
marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"] | undefined | AnyString> | undefined;
|
|
307
|
+
marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"] | undefined | AnyString> | undefined;
|
|
308
|
+
marginTop?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"] | undefined | AnyString> | undefined;
|
|
309
|
+
marginTrim?: ConditionalValue<CssProperties["marginTrim"] | undefined | AnyString> | undefined;
|
|
310
|
+
marker?: ConditionalValue<CssProperties["marker"] | undefined | AnyString> | undefined;
|
|
311
|
+
markerEnd?: ConditionalValue<CssProperties["markerEnd"] | undefined | AnyString> | undefined;
|
|
312
|
+
markerMid?: ConditionalValue<CssProperties["markerMid"] | undefined | AnyString> | undefined;
|
|
313
|
+
markerStart?: ConditionalValue<CssProperties["markerStart"] | undefined | AnyString> | undefined;
|
|
314
|
+
mask?: ConditionalValue<CssProperties["mask"] | undefined | AnyString> | undefined;
|
|
315
|
+
maskBorder?: ConditionalValue<CssProperties["maskBorder"] | undefined | AnyString> | undefined;
|
|
316
|
+
maskBorderMode?: ConditionalValue<CssProperties["maskBorderMode"] | undefined | AnyString> | undefined;
|
|
317
|
+
maskBorderOutset?: ConditionalValue<CssProperties["maskBorderOutset"] | undefined | AnyString> | undefined;
|
|
318
|
+
maskBorderRepeat?: ConditionalValue<CssProperties["maskBorderRepeat"] | undefined | AnyString> | undefined;
|
|
319
|
+
maskBorderSlice?: ConditionalValue<CssProperties["maskBorderSlice"] | undefined | AnyString> | undefined;
|
|
320
|
+
maskBorderSource?: ConditionalValue<CssProperties["maskBorderSource"] | undefined | AnyString> | undefined;
|
|
321
|
+
maskBorderWidth?: ConditionalValue<CssProperties["maskBorderWidth"] | undefined | AnyString> | undefined;
|
|
322
|
+
maskClip?: ConditionalValue<CssProperties["maskClip"] | undefined | AnyString> | undefined;
|
|
323
|
+
maskComposite?: ConditionalValue<CssProperties["maskComposite"] | undefined | AnyString> | undefined;
|
|
324
|
+
maskImage?: ConditionalValue<CssProperties["maskImage"] | undefined | AnyString> | undefined;
|
|
325
|
+
maskMode?: ConditionalValue<CssProperties["maskMode"] | undefined | AnyString> | undefined;
|
|
326
|
+
maskOrigin?: ConditionalValue<CssProperties["maskOrigin"] | undefined | AnyString> | undefined;
|
|
327
|
+
maskPosition?: ConditionalValue<CssProperties["maskPosition"] | undefined | AnyString> | undefined;
|
|
328
|
+
maskRepeat?: ConditionalValue<CssProperties["maskRepeat"] | undefined | AnyString> | undefined;
|
|
329
|
+
maskSize?: ConditionalValue<CssProperties["maskSize"] | undefined | AnyString> | undefined;
|
|
330
|
+
maskType?: ConditionalValue<CssProperties["maskType"] | undefined | AnyString> | undefined;
|
|
331
|
+
masonryAutoFlow?: ConditionalValue<CssProperties["masonryAutoFlow"] | undefined | AnyString> | undefined;
|
|
332
|
+
mathDepth?: ConditionalValue<CssProperties["mathDepth"] | undefined | AnyString> | undefined;
|
|
333
|
+
mathShift?: ConditionalValue<CssProperties["mathShift"] | undefined | AnyString> | undefined;
|
|
334
|
+
mathStyle?: ConditionalValue<CssProperties["mathStyle"] | undefined | AnyString> | undefined;
|
|
335
|
+
maxBlockSize?: ConditionalValue<UtilityValues["maxBlockSize"] | CssVars | CssProperties["maxBlockSize"] | undefined | AnyString> | undefined;
|
|
336
|
+
maxHeight?: ConditionalValue<UtilityValues["maxHeight"] | CssVars | CssProperties["maxHeight"] | undefined | AnyString> | undefined;
|
|
337
|
+
maxInlineSize?: ConditionalValue<UtilityValues["maxInlineSize"] | CssVars | CssProperties["maxInlineSize"] | undefined | AnyString> | undefined;
|
|
338
|
+
maxLines?: ConditionalValue<CssProperties["maxLines"] | undefined | AnyString> | undefined;
|
|
339
|
+
maxWidth?: ConditionalValue<UtilityValues["maxWidth"] | CssVars | CssProperties["maxWidth"] | undefined | AnyString> | undefined;
|
|
340
|
+
minBlockSize?: ConditionalValue<UtilityValues["minBlockSize"] | CssVars | CssProperties["minBlockSize"] | undefined | AnyString> | undefined;
|
|
341
|
+
minHeight?: ConditionalValue<UtilityValues["minHeight"] | CssVars | CssProperties["minHeight"] | undefined | AnyString> | undefined;
|
|
342
|
+
minInlineSize?: ConditionalValue<UtilityValues["minInlineSize"] | CssVars | CssProperties["minInlineSize"] | undefined | AnyString> | undefined;
|
|
343
|
+
minWidth?: ConditionalValue<UtilityValues["minWidth"] | CssVars | CssProperties["minWidth"] | undefined | AnyString> | undefined;
|
|
344
|
+
mixBlendMode?: ConditionalValue<CssProperties["mixBlendMode"] | undefined | AnyString> | undefined;
|
|
345
|
+
objectFit?: ConditionalValue<CssProperties["objectFit"] | undefined | AnyString> | undefined;
|
|
346
|
+
objectPosition?: ConditionalValue<CssProperties["objectPosition"] | undefined | AnyString> | undefined;
|
|
347
|
+
offset?: ConditionalValue<CssProperties["offset"] | undefined | AnyString> | undefined;
|
|
348
|
+
offsetAnchor?: ConditionalValue<CssProperties["offsetAnchor"] | undefined | AnyString> | undefined;
|
|
349
|
+
offsetDistance?: ConditionalValue<CssProperties["offsetDistance"] | undefined | AnyString> | undefined;
|
|
350
|
+
offsetPath?: ConditionalValue<CssProperties["offsetPath"] | undefined | AnyString> | undefined;
|
|
351
|
+
offsetPosition?: ConditionalValue<CssProperties["offsetPosition"] | undefined | AnyString> | undefined;
|
|
352
|
+
offsetRotate?: ConditionalValue<CssProperties["offsetRotate"] | undefined | AnyString> | undefined;
|
|
353
|
+
opacity?: ConditionalValue<UtilityValues["opacity"] | CssVars | CssProperties["opacity"] | undefined | AnyString> | undefined;
|
|
354
|
+
order?: ConditionalValue<CssProperties["order"] | undefined | AnyString> | undefined;
|
|
355
|
+
orphans?: ConditionalValue<CssProperties["orphans"] | undefined | AnyString> | undefined;
|
|
356
|
+
outline?: ConditionalValue<CssProperties["outline"] | undefined | AnyString> | undefined;
|
|
357
|
+
outlineColor?: ConditionalValue<UtilityValues["outlineColor"] | CssVars | CssProperties["outlineColor"] | undefined | AnyString> | undefined;
|
|
358
|
+
outlineOffset?: ConditionalValue<CssProperties["outlineOffset"] | undefined | AnyString> | undefined;
|
|
359
|
+
outlineStyle?: ConditionalValue<CssProperties["outlineStyle"] | undefined | AnyString> | undefined;
|
|
360
|
+
outlineWidth?: ConditionalValue<CssProperties["outlineWidth"] | undefined | AnyString> | undefined;
|
|
361
|
+
overflow?: ConditionalValue<CssProperties["overflow"] | undefined | AnyString> | undefined;
|
|
362
|
+
overflowAnchor?: ConditionalValue<CssProperties["overflowAnchor"] | undefined | AnyString> | undefined;
|
|
363
|
+
overflowBlock?: ConditionalValue<CssProperties["overflowBlock"] | undefined | AnyString> | undefined;
|
|
364
|
+
overflowClipBox?: ConditionalValue<CssProperties["overflowClipBox"] | undefined | AnyString> | undefined;
|
|
365
|
+
overflowClipMargin?: ConditionalValue<CssProperties["overflowClipMargin"] | undefined | AnyString> | undefined;
|
|
366
|
+
overflowInline?: ConditionalValue<CssProperties["overflowInline"] | undefined | AnyString> | undefined;
|
|
367
|
+
overflowWrap?: ConditionalValue<CssProperties["overflowWrap"] | undefined | AnyString> | undefined;
|
|
368
|
+
overflowX?: ConditionalValue<CssProperties["overflowX"] | undefined | AnyString> | undefined;
|
|
369
|
+
overflowY?: ConditionalValue<CssProperties["overflowY"] | undefined | AnyString> | undefined;
|
|
370
|
+
overlay?: ConditionalValue<CssProperties["overlay"] | undefined | AnyString> | undefined;
|
|
371
|
+
overscrollBehavior?: ConditionalValue<CssProperties["overscrollBehavior"] | undefined | AnyString> | undefined;
|
|
372
|
+
overscrollBehaviorBlock?: ConditionalValue<CssProperties["overscrollBehaviorBlock"] | undefined | AnyString> | undefined;
|
|
373
|
+
overscrollBehaviorInline?: ConditionalValue<CssProperties["overscrollBehaviorInline"] | undefined | AnyString> | undefined;
|
|
374
|
+
overscrollBehaviorX?: ConditionalValue<CssProperties["overscrollBehaviorX"] | undefined | AnyString> | undefined;
|
|
375
|
+
overscrollBehaviorY?: ConditionalValue<CssProperties["overscrollBehaviorY"] | undefined | AnyString> | undefined;
|
|
376
|
+
padding?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"] | undefined | AnyString> | undefined;
|
|
377
|
+
paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | undefined | AnyString> | undefined;
|
|
378
|
+
paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssVars | CssProperties["paddingBlockEnd"] | undefined | AnyString> | undefined;
|
|
379
|
+
paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssVars | CssProperties["paddingBlockStart"] | undefined | AnyString> | undefined;
|
|
380
|
+
paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"] | undefined | AnyString> | undefined;
|
|
381
|
+
paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | undefined | AnyString> | undefined;
|
|
382
|
+
paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | undefined | AnyString> | undefined;
|
|
383
|
+
paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | undefined | AnyString> | undefined;
|
|
384
|
+
paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"] | undefined | AnyString> | undefined;
|
|
385
|
+
paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"] | undefined | AnyString> | undefined;
|
|
386
|
+
paddingTop?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"] | undefined | AnyString> | undefined;
|
|
387
|
+
page?: ConditionalValue<CssProperties["page"] | undefined | AnyString> | undefined;
|
|
388
|
+
pageBreakAfter?: ConditionalValue<CssProperties["pageBreakAfter"] | undefined | AnyString> | undefined;
|
|
389
|
+
pageBreakBefore?: ConditionalValue<CssProperties["pageBreakBefore"] | undefined | AnyString> | undefined;
|
|
390
|
+
pageBreakInside?: ConditionalValue<CssProperties["pageBreakInside"] | undefined | AnyString> | undefined;
|
|
391
|
+
paintOrder?: ConditionalValue<CssProperties["paintOrder"] | undefined | AnyString> | undefined;
|
|
392
|
+
perspective?: ConditionalValue<CssProperties["perspective"] | undefined | AnyString> | undefined;
|
|
393
|
+
perspectiveOrigin?: ConditionalValue<CssProperties["perspectiveOrigin"] | undefined | AnyString> | undefined;
|
|
394
|
+
placeContent?: ConditionalValue<CssProperties["placeContent"] | undefined | AnyString> | undefined;
|
|
395
|
+
placeItems?: ConditionalValue<CssProperties["placeItems"] | undefined | AnyString> | undefined;
|
|
396
|
+
placeSelf?: ConditionalValue<CssProperties["placeSelf"] | undefined | AnyString> | undefined;
|
|
397
|
+
pointerEvents?: ConditionalValue<CssProperties["pointerEvents"] | undefined | AnyString> | undefined;
|
|
398
|
+
position?: ConditionalValue<CssProperties["position"] | undefined | AnyString> | undefined;
|
|
399
|
+
positionAnchor?: ConditionalValue<CssProperties["positionAnchor"] | undefined | AnyString> | undefined;
|
|
400
|
+
positionArea?: ConditionalValue<CssProperties["positionArea"] | undefined | AnyString> | undefined;
|
|
401
|
+
positionTry?: ConditionalValue<CssProperties["positionTry"] | undefined | AnyString> | undefined;
|
|
402
|
+
positionTryFallbacks?: ConditionalValue<CssProperties["positionTryFallbacks"] | undefined | AnyString> | undefined;
|
|
403
|
+
positionTryOrder?: ConditionalValue<CssProperties["positionTryOrder"] | undefined | AnyString> | undefined;
|
|
404
|
+
positionVisibility?: ConditionalValue<CssProperties["positionVisibility"] | undefined | AnyString> | undefined;
|
|
405
|
+
printColorAdjust?: ConditionalValue<CssProperties["printColorAdjust"] | undefined | AnyString> | undefined;
|
|
406
|
+
quotes?: ConditionalValue<CssProperties["quotes"] | undefined | AnyString> | undefined;
|
|
407
|
+
r?: ConditionalValue<CssProperties["r"] | undefined | AnyString> | undefined;
|
|
408
|
+
resize?: ConditionalValue<CssProperties["resize"] | undefined | AnyString> | undefined;
|
|
409
|
+
right?: ConditionalValue<UtilityValues["right"] | CssVars | CssProperties["right"] | undefined | AnyString> | undefined;
|
|
410
|
+
rotate?: ConditionalValue<CssProperties["rotate"] | undefined | AnyString> | undefined;
|
|
411
|
+
rowGap?: ConditionalValue<UtilityValues["rowGap"] | CssVars | CssProperties["rowGap"] | undefined | AnyString> | undefined;
|
|
412
|
+
rubyAlign?: ConditionalValue<CssProperties["rubyAlign"] | undefined | AnyString> | undefined;
|
|
413
|
+
rubyMerge?: ConditionalValue<CssProperties["rubyMerge"] | undefined | AnyString> | undefined;
|
|
414
|
+
rubyPosition?: ConditionalValue<CssProperties["rubyPosition"] | undefined | AnyString> | undefined;
|
|
415
|
+
rx?: ConditionalValue<CssProperties["rx"] | undefined | AnyString> | undefined;
|
|
416
|
+
ry?: ConditionalValue<CssProperties["ry"] | undefined | AnyString> | undefined;
|
|
417
|
+
scale?: ConditionalValue<CssProperties["scale"] | undefined | AnyString> | undefined;
|
|
418
|
+
scrollBehavior?: ConditionalValue<CssProperties["scrollBehavior"] | undefined | AnyString> | undefined;
|
|
419
|
+
scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssVars | CssProperties["scrollMargin"] | undefined | AnyString> | undefined;
|
|
420
|
+
scrollMarginBlock?: ConditionalValue<CssProperties["scrollMarginBlock"] | undefined | AnyString> | undefined;
|
|
421
|
+
scrollMarginBlockEnd?: ConditionalValue<CssProperties["scrollMarginBlockEnd"] | undefined | AnyString> | undefined;
|
|
422
|
+
scrollMarginBlockStart?: ConditionalValue<CssProperties["scrollMarginBlockStart"] | undefined | AnyString> | undefined;
|
|
423
|
+
scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssVars | CssProperties["scrollMarginBottom"] | undefined | AnyString> | undefined;
|
|
424
|
+
scrollMarginInline?: ConditionalValue<CssProperties["scrollMarginInline"] | undefined | AnyString> | undefined;
|
|
425
|
+
scrollMarginInlineEnd?: ConditionalValue<CssProperties["scrollMarginInlineEnd"] | undefined | AnyString> | undefined;
|
|
426
|
+
scrollMarginInlineStart?: ConditionalValue<CssProperties["scrollMarginInlineStart"] | undefined | AnyString> | undefined;
|
|
427
|
+
scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssVars | CssProperties["scrollMarginLeft"] | undefined | AnyString> | undefined;
|
|
428
|
+
scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssVars | CssProperties["scrollMarginRight"] | undefined | AnyString> | undefined;
|
|
429
|
+
scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssVars | CssProperties["scrollMarginTop"] | undefined | AnyString> | undefined;
|
|
430
|
+
scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssVars | CssProperties["scrollPadding"] | undefined | AnyString> | undefined;
|
|
431
|
+
scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | undefined | AnyString> | undefined;
|
|
432
|
+
scrollPaddingBlockEnd?: ConditionalValue<CssProperties["scrollPaddingBlockEnd"] | undefined | AnyString> | undefined;
|
|
433
|
+
scrollPaddingBlockStart?: ConditionalValue<CssProperties["scrollPaddingBlockStart"] | undefined | AnyString> | undefined;
|
|
434
|
+
scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | CssVars | CssProperties["scrollPaddingBottom"] | undefined | AnyString> | undefined;
|
|
435
|
+
scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | undefined | AnyString> | undefined;
|
|
436
|
+
scrollPaddingInlineEnd?: ConditionalValue<CssProperties["scrollPaddingInlineEnd"] | undefined | AnyString> | undefined;
|
|
437
|
+
scrollPaddingInlineStart?: ConditionalValue<CssProperties["scrollPaddingInlineStart"] | undefined | AnyString> | undefined;
|
|
438
|
+
scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssVars | CssProperties["scrollPaddingLeft"] | undefined | AnyString> | undefined;
|
|
439
|
+
scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssVars | CssProperties["scrollPaddingRight"] | undefined | AnyString> | undefined;
|
|
440
|
+
scrollPaddingTop?: ConditionalValue<UtilityValues["scrollPaddingTop"] | CssVars | CssProperties["scrollPaddingTop"] | undefined | AnyString> | undefined;
|
|
441
|
+
scrollSnapAlign?: ConditionalValue<CssProperties["scrollSnapAlign"] | undefined | AnyString> | undefined;
|
|
442
|
+
scrollSnapCoordinate?: ConditionalValue<CssProperties["scrollSnapCoordinate"] | undefined | AnyString> | undefined;
|
|
443
|
+
scrollSnapDestination?: ConditionalValue<CssProperties["scrollSnapDestination"] | undefined | AnyString> | undefined;
|
|
444
|
+
scrollSnapPointsX?: ConditionalValue<CssProperties["scrollSnapPointsX"] | undefined | AnyString> | undefined;
|
|
445
|
+
scrollSnapPointsY?: ConditionalValue<CssProperties["scrollSnapPointsY"] | undefined | AnyString> | undefined;
|
|
446
|
+
scrollSnapStop?: ConditionalValue<CssProperties["scrollSnapStop"] | undefined | AnyString> | undefined;
|
|
447
|
+
scrollSnapType?: ConditionalValue<UtilityValues["scrollSnapType"] | CssVars | CssProperties["scrollSnapType"] | undefined | AnyString> | undefined;
|
|
448
|
+
scrollSnapTypeX?: ConditionalValue<CssProperties["scrollSnapTypeX"] | undefined | AnyString> | undefined;
|
|
449
|
+
scrollSnapTypeY?: ConditionalValue<CssProperties["scrollSnapTypeY"] | undefined | AnyString> | undefined;
|
|
450
|
+
scrollTimeline?: ConditionalValue<CssProperties["scrollTimeline"] | undefined | AnyString> | undefined;
|
|
451
|
+
scrollTimelineAxis?: ConditionalValue<CssProperties["scrollTimelineAxis"] | undefined | AnyString> | undefined;
|
|
452
|
+
scrollTimelineName?: ConditionalValue<CssProperties["scrollTimelineName"] | undefined | AnyString> | undefined;
|
|
453
|
+
scrollbarColor?: ConditionalValue<UtilityValues["scrollbarColor"] | CssVars | CssProperties["scrollbarColor"] | undefined | AnyString> | undefined;
|
|
454
|
+
scrollbarGutter?: ConditionalValue<UtilityValues["scrollbarGutter"] | CssVars | CssProperties["scrollbarGutter"] | undefined | AnyString> | undefined;
|
|
455
|
+
scrollbarWidth?: ConditionalValue<UtilityValues["scrollbarWidth"] | CssVars | CssProperties["scrollbarWidth"] | undefined | AnyString> | undefined;
|
|
456
|
+
shapeImageThreshold?: ConditionalValue<CssProperties["shapeImageThreshold"] | undefined | AnyString> | undefined;
|
|
457
|
+
shapeMargin?: ConditionalValue<CssProperties["shapeMargin"] | undefined | AnyString> | undefined;
|
|
458
|
+
shapeOutside?: ConditionalValue<CssProperties["shapeOutside"] | undefined | AnyString> | undefined;
|
|
459
|
+
shapeRendering?: ConditionalValue<CssProperties["shapeRendering"] | undefined | AnyString> | undefined;
|
|
460
|
+
stopColor?: ConditionalValue<CssProperties["stopColor"] | undefined | AnyString> | undefined;
|
|
461
|
+
stopOpacity?: ConditionalValue<CssProperties["stopOpacity"] | undefined | AnyString> | undefined;
|
|
462
|
+
stroke?: ConditionalValue<UtilityValues["stroke"] | CssVars | CssProperties["stroke"] | undefined | AnyString> | undefined;
|
|
463
|
+
strokeDasharray?: ConditionalValue<CssProperties["strokeDasharray"] | undefined | AnyString> | undefined;
|
|
464
|
+
strokeDashoffset?: ConditionalValue<CssProperties["strokeDashoffset"] | undefined | AnyString> | undefined;
|
|
465
|
+
strokeLinecap?: ConditionalValue<CssProperties["strokeLinecap"] | undefined | AnyString> | undefined;
|
|
466
|
+
strokeLinejoin?: ConditionalValue<CssProperties["strokeLinejoin"] | undefined | AnyString> | undefined;
|
|
467
|
+
strokeMiterlimit?: ConditionalValue<CssProperties["strokeMiterlimit"] | undefined | AnyString> | undefined;
|
|
468
|
+
strokeOpacity?: ConditionalValue<CssProperties["strokeOpacity"] | undefined | AnyString> | undefined;
|
|
469
|
+
strokeWidth?: ConditionalValue<CssProperties["strokeWidth"] | undefined | AnyString> | undefined;
|
|
470
|
+
tabSize?: ConditionalValue<CssProperties["tabSize"] | undefined | AnyString> | undefined;
|
|
471
|
+
tableLayout?: ConditionalValue<CssProperties["tableLayout"] | undefined | AnyString> | undefined;
|
|
472
|
+
textAlign?: ConditionalValue<CssProperties["textAlign"] | undefined | AnyString> | undefined;
|
|
473
|
+
textAlignLast?: ConditionalValue<CssProperties["textAlignLast"] | undefined | AnyString> | undefined;
|
|
474
|
+
textAnchor?: ConditionalValue<CssProperties["textAnchor"] | undefined | AnyString> | undefined;
|
|
475
|
+
textBox?: ConditionalValue<CssProperties["textBox"] | undefined | AnyString> | undefined;
|
|
476
|
+
textBoxEdge?: ConditionalValue<CssProperties["textBoxEdge"] | undefined | AnyString> | undefined;
|
|
477
|
+
textBoxTrim?: ConditionalValue<CssProperties["textBoxTrim"] | undefined | AnyString> | undefined;
|
|
478
|
+
textCombineUpright?: ConditionalValue<CssProperties["textCombineUpright"] | undefined | AnyString> | undefined;
|
|
479
|
+
textDecoration?: ConditionalValue<CssProperties["textDecoration"] | undefined | AnyString> | undefined;
|
|
480
|
+
textDecorationColor?: ConditionalValue<UtilityValues["textDecorationColor"] | CssVars | CssProperties["textDecorationColor"] | undefined | AnyString> | undefined;
|
|
481
|
+
textDecorationLine?: ConditionalValue<CssProperties["textDecorationLine"] | undefined | AnyString> | undefined;
|
|
482
|
+
textDecorationSkip?: ConditionalValue<CssProperties["textDecorationSkip"] | undefined | AnyString> | undefined;
|
|
483
|
+
textDecorationSkipInk?: ConditionalValue<CssProperties["textDecorationSkipInk"] | undefined | AnyString> | undefined;
|
|
484
|
+
textDecorationStyle?: ConditionalValue<CssProperties["textDecorationStyle"] | undefined | AnyString> | undefined;
|
|
485
|
+
textDecorationThickness?: ConditionalValue<CssProperties["textDecorationThickness"] | undefined | AnyString> | undefined;
|
|
486
|
+
textEmphasis?: ConditionalValue<CssProperties["textEmphasis"] | undefined | AnyString> | undefined;
|
|
487
|
+
textEmphasisColor?: ConditionalValue<CssProperties["textEmphasisColor"] | undefined | AnyString> | undefined;
|
|
488
|
+
textEmphasisPosition?: ConditionalValue<CssProperties["textEmphasisPosition"] | undefined | AnyString> | undefined;
|
|
489
|
+
textEmphasisStyle?: ConditionalValue<CssProperties["textEmphasisStyle"] | undefined | AnyString> | undefined;
|
|
490
|
+
textIndent?: ConditionalValue<UtilityValues["textIndent"] | CssVars | CssProperties["textIndent"] | undefined | AnyString> | undefined;
|
|
491
|
+
textJustify?: ConditionalValue<CssProperties["textJustify"] | undefined | AnyString> | undefined;
|
|
492
|
+
textOrientation?: ConditionalValue<CssProperties["textOrientation"] | undefined | AnyString> | undefined;
|
|
493
|
+
textOverflow?: ConditionalValue<CssProperties["textOverflow"] | undefined | AnyString> | undefined;
|
|
494
|
+
textRendering?: ConditionalValue<CssProperties["textRendering"] | undefined | AnyString> | undefined;
|
|
495
|
+
textShadow?: ConditionalValue<UtilityValues["textShadow"] | CssVars | CssProperties["textShadow"] | undefined | AnyString> | undefined;
|
|
496
|
+
textSizeAdjust?: ConditionalValue<CssProperties["textSizeAdjust"] | undefined | AnyString> | undefined;
|
|
497
|
+
textSpacingTrim?: ConditionalValue<CssProperties["textSpacingTrim"] | undefined | AnyString> | undefined;
|
|
498
|
+
textTransform?: ConditionalValue<CssProperties["textTransform"] | undefined | AnyString> | undefined;
|
|
499
|
+
textUnderlineOffset?: ConditionalValue<CssProperties["textUnderlineOffset"] | undefined | AnyString> | undefined;
|
|
500
|
+
textUnderlinePosition?: ConditionalValue<CssProperties["textUnderlinePosition"] | undefined | AnyString> | undefined;
|
|
501
|
+
textWrap?: ConditionalValue<CssProperties["textWrap"] | undefined | AnyString> | undefined;
|
|
502
|
+
textWrapMode?: ConditionalValue<CssProperties["textWrapMode"] | undefined | AnyString> | undefined;
|
|
503
|
+
textWrapStyle?: ConditionalValue<CssProperties["textWrapStyle"] | undefined | AnyString> | undefined;
|
|
504
|
+
timelineScope?: ConditionalValue<CssProperties["timelineScope"] | undefined | AnyString> | undefined;
|
|
505
|
+
top?: ConditionalValue<UtilityValues["top"] | CssVars | CssProperties["top"] | undefined | AnyString> | undefined;
|
|
506
|
+
touchAction?: ConditionalValue<CssProperties["touchAction"] | undefined | AnyString> | undefined;
|
|
507
|
+
transform?: ConditionalValue<CssProperties["transform"] | undefined | AnyString> | undefined;
|
|
508
|
+
transformBox?: ConditionalValue<CssProperties["transformBox"] | undefined | AnyString> | undefined;
|
|
509
|
+
transformOrigin?: ConditionalValue<CssProperties["transformOrigin"] | undefined | AnyString> | undefined;
|
|
510
|
+
transformStyle?: ConditionalValue<CssProperties["transformStyle"] | undefined | AnyString> | undefined;
|
|
511
|
+
transition?: ConditionalValue<UtilityValues["transition"] | CssVars | CssProperties["transition"] | undefined | AnyString> | undefined;
|
|
512
|
+
transitionBehavior?: ConditionalValue<CssProperties["transitionBehavior"] | undefined | AnyString> | undefined;
|
|
513
|
+
transitionDelay?: ConditionalValue<CssProperties["transitionDelay"] | undefined | AnyString> | undefined;
|
|
514
|
+
transitionDuration?: ConditionalValue<UtilityValues["transitionDuration"] | CssVars | CssProperties["transitionDuration"] | undefined | AnyString> | undefined;
|
|
515
|
+
transitionProperty?: ConditionalValue<UtilityValues["transitionProperty"] | CssVars | CssProperties["transitionProperty"] | undefined | AnyString> | undefined;
|
|
516
|
+
transitionTimingFunction?: ConditionalValue<UtilityValues["transitionTimingFunction"] | CssVars | CssProperties["transitionTimingFunction"] | undefined | AnyString> | undefined;
|
|
517
|
+
translate?: ConditionalValue<CssProperties["translate"] | undefined | AnyString> | undefined;
|
|
518
|
+
unicodeBidi?: ConditionalValue<CssProperties["unicodeBidi"] | undefined | AnyString> | undefined;
|
|
519
|
+
userSelect?: ConditionalValue<CssProperties["userSelect"] | undefined | AnyString> | undefined;
|
|
520
|
+
vectorEffect?: ConditionalValue<CssProperties["vectorEffect"] | undefined | AnyString> | undefined;
|
|
521
|
+
verticalAlign?: ConditionalValue<CssProperties["verticalAlign"] | undefined | AnyString> | undefined;
|
|
522
|
+
viewTimeline?: ConditionalValue<CssProperties["viewTimeline"] | undefined | AnyString> | undefined;
|
|
523
|
+
viewTimelineAxis?: ConditionalValue<CssProperties["viewTimelineAxis"] | undefined | AnyString> | undefined;
|
|
524
|
+
viewTimelineInset?: ConditionalValue<CssProperties["viewTimelineInset"] | undefined | AnyString> | undefined;
|
|
525
|
+
viewTimelineName?: ConditionalValue<CssProperties["viewTimelineName"] | undefined | AnyString> | undefined;
|
|
526
|
+
viewTransitionName?: ConditionalValue<CssProperties["viewTransitionName"] | undefined | AnyString> | undefined;
|
|
527
|
+
visibility?: ConditionalValue<CssProperties["visibility"] | undefined | AnyString> | undefined;
|
|
528
|
+
whiteSpace?: ConditionalValue<CssProperties["whiteSpace"] | undefined | AnyString> | undefined;
|
|
529
|
+
whiteSpaceCollapse?: ConditionalValue<CssProperties["whiteSpaceCollapse"] | undefined | AnyString> | undefined;
|
|
530
|
+
widows?: ConditionalValue<CssProperties["widows"] | undefined | AnyString> | undefined;
|
|
531
|
+
width?: ConditionalValue<UtilityValues["width"] | CssVars | CssProperties["width"] | undefined | AnyString> | undefined;
|
|
532
|
+
willChange?: ConditionalValue<CssProperties["willChange"] | undefined | AnyString> | undefined;
|
|
533
|
+
wordBreak?: ConditionalValue<CssProperties["wordBreak"] | undefined | AnyString> | undefined;
|
|
534
|
+
wordSpacing?: ConditionalValue<CssProperties["wordSpacing"] | undefined | AnyString> | undefined;
|
|
535
|
+
wordWrap?: ConditionalValue<CssProperties["wordWrap"] | undefined | AnyString> | undefined;
|
|
536
|
+
writingMode?: ConditionalValue<CssProperties["writingMode"] | undefined | AnyString> | undefined;
|
|
537
|
+
x?: ConditionalValue<CssProperties["x"] | undefined | AnyString> | undefined;
|
|
538
|
+
y?: ConditionalValue<CssProperties["y"] | undefined | AnyString> | undefined;
|
|
539
|
+
zIndex?: ConditionalValue<UtilityValues["zIndex"] | CssVars | CssProperties["zIndex"] | undefined | AnyString> | undefined;
|
|
540
|
+
zoom?: ConditionalValue<CssProperties["zoom"] | undefined | AnyString> | undefined;
|
|
541
|
+
alignmentBaseline?: ConditionalValue<CssProperties["alignmentBaseline"] | undefined | AnyString> | undefined;
|
|
542
|
+
baselineShift?: ConditionalValue<CssProperties["baselineShift"] | undefined | AnyString> | undefined;
|
|
543
|
+
colorInterpolation?: ConditionalValue<CssProperties["colorInterpolation"] | undefined | AnyString> | undefined;
|
|
544
|
+
colorRendering?: ConditionalValue<CssProperties["colorRendering"] | undefined | AnyString> | undefined;
|
|
545
|
+
glyphOrientationVertical?: ConditionalValue<CssProperties["glyphOrientationVertical"] | undefined | AnyString> | undefined;
|
|
546
|
+
bg?: ConditionalValue<UtilityValues["background"] | CssVars | CssProperties["background"] | undefined | AnyString> | undefined;
|
|
547
|
+
bgColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssVars | CssProperties["backgroundColor"] | undefined | AnyString> | undefined;
|
|
548
|
+
bgSize?: ConditionalValue<CssProperties["backgroundSize"] | undefined | AnyString> | undefined;
|
|
549
|
+
bgPos?: ConditionalValue<CssProperties["backgroundPosition"] | undefined | AnyString> | undefined;
|
|
550
|
+
bgRepeat?: ConditionalValue<CssProperties["backgroundRepeat"] | undefined | AnyString> | undefined;
|
|
551
|
+
bgAttachment?: ConditionalValue<CssProperties["backgroundAttachment"] | undefined | AnyString> | undefined;
|
|
552
|
+
bgClip?: ConditionalValue<UtilityValues["backgroundClip"] | CssVars | CssProperties["backgroundClip"] | undefined | AnyString> | undefined;
|
|
553
|
+
bgGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | undefined | AnyString> | undefined;
|
|
554
|
+
bgImg?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | undefined | AnyString> | undefined;
|
|
555
|
+
bgImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | undefined | AnyString> | undefined;
|
|
556
|
+
borderStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | CssProperties["borderInlineStart"] | undefined | AnyString> | undefined;
|
|
557
|
+
borderEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssProperties["borderInlineEnd"] | undefined | AnyString> | undefined;
|
|
558
|
+
borderX?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperties["borderInline"] | undefined | AnyString> | undefined;
|
|
559
|
+
borderY?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssProperties["borderBlock"] | undefined | AnyString> | undefined;
|
|
560
|
+
borderStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssVars | CssProperties["borderInlineStartColor"] | undefined | AnyString> | undefined;
|
|
561
|
+
borderEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVars | CssProperties["borderInlineEndColor"] | undefined | AnyString> | undefined;
|
|
562
|
+
borderStartStyle?: ConditionalValue<UtilityValues["borderInlineStartStyle"] | CssVars | CssProperties["borderInlineStartStyle"] | undefined | AnyString> | undefined;
|
|
563
|
+
borderEndStyle?: ConditionalValue<UtilityValues["borderInlineEndStyle"] | CssVars | CssProperties["borderInlineEndStyle"] | undefined | AnyString> | undefined;
|
|
564
|
+
rounded?: ConditionalValue<UtilityValues["borderRadius"] | CssVars | CssProperties["borderRadius"] | undefined | AnyString> | undefined;
|
|
565
|
+
roundedTopLeft?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssVars | CssProperties["borderTopLeftRadius"] | undefined | AnyString> | undefined;
|
|
566
|
+
roundedStartStart?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | undefined | AnyString> | undefined;
|
|
567
|
+
borderTopStartRadius?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | undefined | AnyString> | undefined;
|
|
568
|
+
roundedEndStart?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | undefined | AnyString> | undefined;
|
|
569
|
+
borderBottomStartRadius?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | undefined | AnyString> | undefined;
|
|
570
|
+
roundedTopRight?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssVars | CssProperties["borderTopRightRadius"] | undefined | AnyString> | undefined;
|
|
571
|
+
roundedStartEnd?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | undefined | AnyString> | undefined;
|
|
572
|
+
borderTopEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | undefined | AnyString> | undefined;
|
|
573
|
+
roundedEndEnd?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | undefined | AnyString> | undefined;
|
|
574
|
+
borderBottomEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | undefined | AnyString> | undefined;
|
|
575
|
+
roundedBottomLeft?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssVars | CssProperties["borderBottomLeftRadius"] | undefined | AnyString> | undefined;
|
|
576
|
+
roundedBottomRight?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssVars | CssProperties["borderBottomRightRadius"] | undefined | AnyString> | undefined;
|
|
577
|
+
roundedStart?: ConditionalValue<UtilityValues["borderInlineStartRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
578
|
+
borderStartRadius?: ConditionalValue<UtilityValues["borderInlineStartRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
579
|
+
roundedEnd?: ConditionalValue<UtilityValues["borderInlineEndRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
580
|
+
borderEndRadius?: ConditionalValue<UtilityValues["borderInlineEndRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
581
|
+
roundedTop?: ConditionalValue<UtilityValues["borderTopRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
582
|
+
roundedBottom?: ConditionalValue<UtilityValues["borderBottomRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
583
|
+
roundedLeft?: ConditionalValue<UtilityValues["borderLeftRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
584
|
+
roundedRight?: ConditionalValue<UtilityValues["borderRightRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
585
|
+
borderXWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | undefined | AnyString> | undefined;
|
|
586
|
+
borderStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | undefined | AnyString> | undefined;
|
|
587
|
+
borderEndWidth?: ConditionalValue<UtilityValues["borderInlineEndWidth"] | CssVars | CssProperties["borderInlineEndWidth"] | undefined | AnyString> | undefined;
|
|
588
|
+
borderYWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | undefined | AnyString> | undefined;
|
|
589
|
+
shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | undefined | AnyString> | undefined;
|
|
590
|
+
shadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | undefined | AnyString> | undefined;
|
|
591
|
+
blendMode?: ConditionalValue<CssProperties["mixBlendMode"] | undefined | AnyString> | undefined;
|
|
592
|
+
bgBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | undefined | AnyString> | undefined;
|
|
593
|
+
gapY?: ConditionalValue<UtilityValues["rowGap"] | CssVars | CssProperties["rowGap"] | undefined | AnyString> | undefined;
|
|
594
|
+
gapX?: ConditionalValue<UtilityValues["columnGap"] | CssVars | CssProperties["columnGap"] | undefined | AnyString> | undefined;
|
|
595
|
+
flexDir?: ConditionalValue<CssProperties["flexDirection"] | undefined | AnyString> | undefined;
|
|
596
|
+
w?: ConditionalValue<UtilityValues["width"] | CssVars | CssProperties["width"] | undefined | AnyString> | undefined;
|
|
597
|
+
h?: ConditionalValue<UtilityValues["height"] | CssVars | CssProperties["height"] | undefined | AnyString> | undefined;
|
|
598
|
+
minW?: ConditionalValue<UtilityValues["minWidth"] | CssVars | CssProperties["minWidth"] | undefined | AnyString> | undefined;
|
|
599
|
+
minH?: ConditionalValue<UtilityValues["minHeight"] | CssVars | CssProperties["minHeight"] | undefined | AnyString> | undefined;
|
|
600
|
+
maxW?: ConditionalValue<UtilityValues["maxWidth"] | CssVars | CssProperties["maxWidth"] | undefined | AnyString> | undefined;
|
|
601
|
+
maxH?: ConditionalValue<UtilityValues["maxHeight"] | CssVars | CssProperties["maxHeight"] | undefined | AnyString> | undefined;
|
|
602
|
+
overscroll?: ConditionalValue<CssProperties["overscrollBehavior"] | undefined | AnyString> | undefined;
|
|
603
|
+
overscrollX?: ConditionalValue<CssProperties["overscrollBehaviorX"] | undefined | AnyString> | undefined;
|
|
604
|
+
overscrollY?: ConditionalValue<CssProperties["overscrollBehaviorY"] | undefined | AnyString> | undefined;
|
|
605
|
+
scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | undefined | AnyString> | undefined;
|
|
606
|
+
scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | undefined | AnyString> | undefined;
|
|
607
|
+
listStylePos?: ConditionalValue<CssProperties["listStylePosition"] | undefined | AnyString> | undefined;
|
|
608
|
+
listStyleImg?: ConditionalValue<UtilityValues["listStyleImage"] | CssVars | CssProperties["listStyleImage"] | undefined | AnyString> | undefined;
|
|
609
|
+
pos?: ConditionalValue<CssProperties["position"] | undefined | AnyString> | undefined;
|
|
610
|
+
insetX?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"] | undefined | AnyString> | undefined;
|
|
611
|
+
insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"] | undefined | AnyString> | undefined;
|
|
612
|
+
insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | undefined | AnyString> | undefined;
|
|
613
|
+
insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | undefined | AnyString> | undefined;
|
|
614
|
+
m?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"] | undefined | AnyString> | undefined;
|
|
615
|
+
mt?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"] | undefined | AnyString> | undefined;
|
|
616
|
+
mr?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"] | undefined | AnyString> | undefined;
|
|
617
|
+
mb?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"] | undefined | AnyString> | undefined;
|
|
618
|
+
ml?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"] | undefined | AnyString> | undefined;
|
|
619
|
+
ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | undefined | AnyString> | undefined;
|
|
620
|
+
marginStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | undefined | AnyString> | undefined;
|
|
621
|
+
me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | undefined | AnyString> | undefined;
|
|
622
|
+
marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | undefined | AnyString> | undefined;
|
|
623
|
+
mx?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | undefined | AnyString> | undefined;
|
|
624
|
+
marginX?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | undefined | AnyString> | undefined;
|
|
625
|
+
my?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | undefined | AnyString> | undefined;
|
|
626
|
+
marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | undefined | AnyString> | undefined;
|
|
627
|
+
p?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"] | undefined | AnyString> | undefined;
|
|
628
|
+
pt?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"] | undefined | AnyString> | undefined;
|
|
629
|
+
pr?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"] | undefined | AnyString> | undefined;
|
|
630
|
+
pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"] | undefined | AnyString> | undefined;
|
|
631
|
+
pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"] | undefined | AnyString> | undefined;
|
|
632
|
+
ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | undefined | AnyString> | undefined;
|
|
633
|
+
paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | undefined | AnyString> | undefined;
|
|
634
|
+
pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | undefined | AnyString> | undefined;
|
|
635
|
+
paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | undefined | AnyString> | undefined;
|
|
636
|
+
px?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | undefined | AnyString> | undefined;
|
|
637
|
+
paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | undefined | AnyString> | undefined;
|
|
638
|
+
py?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | undefined | AnyString> | undefined;
|
|
639
|
+
paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | undefined | AnyString> | undefined;
|
|
640
|
+
textDecor?: ConditionalValue<CssProperties["textDecoration"] | undefined | AnyString> | undefined;
|
|
641
|
+
backgroundGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | undefined | AnyString> | undefined;
|
|
642
|
+
gradientFrom?: ConditionalValue<UtilityValues["gradientFrom"] | CssVars | undefined | AnyString> | undefined;
|
|
643
|
+
gradientTo?: ConditionalValue<UtilityValues["gradientTo"] | CssVars | undefined | AnyString> | undefined;
|
|
644
|
+
gradientVia?: ConditionalValue<UtilityValues["gradientVia"] | CssVars | undefined | AnyString> | undefined;
|
|
645
|
+
borderInlineStartRadius?: ConditionalValue<UtilityValues["borderInlineStartRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
646
|
+
borderInlineEndRadius?: ConditionalValue<UtilityValues["borderInlineEndRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
647
|
+
borderTopRadius?: ConditionalValue<UtilityValues["borderTopRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
648
|
+
borderBottomRadius?: ConditionalValue<UtilityValues["borderBottomRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
649
|
+
borderLeftRadius?: ConditionalValue<UtilityValues["borderLeftRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
650
|
+
borderRightRadius?: ConditionalValue<UtilityValues["borderRightRadius"] | CssVars | undefined | AnyString> | undefined;
|
|
651
|
+
divideX?: ConditionalValue<UtilityValues["divideX"] | CssVars | undefined | AnyString> | undefined;
|
|
652
|
+
divideY?: ConditionalValue<UtilityValues["divideY"] | CssVars | undefined | AnyString> | undefined;
|
|
653
|
+
divideColor?: ConditionalValue<UtilityValues["divideColor"] | CssVars | undefined | AnyString> | undefined;
|
|
654
|
+
divideStyle?: ConditionalValue<UtilityValues["divideStyle"] | CssVars | undefined | AnyString> | undefined;
|
|
655
|
+
boxShadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | undefined | AnyString> | undefined;
|
|
656
|
+
blur?: ConditionalValue<UtilityValues["blur"] | CssVars | undefined | AnyString> | undefined;
|
|
657
|
+
brightness?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
658
|
+
contrast?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
659
|
+
grayscale?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
660
|
+
hueRotate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
661
|
+
invert?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
662
|
+
saturate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
663
|
+
sepia?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
664
|
+
dropShadow?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
665
|
+
backdropBlur?: ConditionalValue<UtilityValues["backdropBlur"] | CssVars | undefined | AnyString> | undefined;
|
|
666
|
+
backdropBrightness?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
667
|
+
backdropContrast?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
668
|
+
backdropGrayscale?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
669
|
+
backdropHueRotate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
670
|
+
backdropInvert?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
671
|
+
backdropOpacity?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
672
|
+
backdropSaturate?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
673
|
+
backdropSepia?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
674
|
+
focusRing?: ConditionalValue<UtilityValues["focusRing"] | CssVars | undefined | AnyString> | undefined;
|
|
675
|
+
focusVisibleRing?: ConditionalValue<UtilityValues["focusVisibleRing"] | CssVars | undefined | AnyString> | undefined;
|
|
676
|
+
focusRingColor?: ConditionalValue<UtilityValues["focusRingColor"] | CssVars | undefined | AnyString> | undefined;
|
|
677
|
+
focusRingOffset?: ConditionalValue<UtilityValues["focusRingOffset"] | CssVars | undefined | AnyString> | undefined;
|
|
678
|
+
focusRingWidth?: ConditionalValue<UtilityValues["focusRingWidth"] | CssVars | undefined | AnyString> | undefined;
|
|
679
|
+
focusRingStyle?: ConditionalValue<UtilityValues["focusRingStyle"] | CssVars | undefined | AnyString> | undefined;
|
|
680
|
+
boxSize?: ConditionalValue<UtilityValues["boxSize"] | CssVars | undefined | AnyString> | undefined;
|
|
681
|
+
hideFrom?: ConditionalValue<UtilityValues["hideFrom"] | CssVars | undefined | AnyString> | undefined;
|
|
682
|
+
hideBelow?: ConditionalValue<UtilityValues["hideBelow"] | CssVars | undefined | AnyString> | undefined;
|
|
683
|
+
scrollbar?: ConditionalValue<UtilityValues["scrollbar"] | CssVars | undefined | AnyString> | undefined;
|
|
684
|
+
scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginX"] | CssVars | undefined | AnyString> | undefined;
|
|
685
|
+
scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginY"] | CssVars | undefined | AnyString> | undefined;
|
|
686
|
+
scrollSnapStrictness?: ConditionalValue<UtilityValues["scrollSnapStrictness"] | CssVars | undefined | AnyString> | undefined;
|
|
687
|
+
scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | CssVars | undefined | AnyString> | undefined;
|
|
688
|
+
scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | CssVars | undefined | AnyString> | undefined;
|
|
689
|
+
scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"] | CssVars | undefined | AnyString> | undefined;
|
|
690
|
+
scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] | CssVars | undefined | AnyString> | undefined;
|
|
691
|
+
scrollSnapMarginRight?: ConditionalValue<UtilityValues["scrollSnapMarginRight"] | CssVars | undefined | AnyString> | undefined;
|
|
692
|
+
ring?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
693
|
+
ringColor?: ConditionalValue<UtilityValues["ringColor"] | CssVars | undefined | AnyString> | undefined;
|
|
694
|
+
ringOffset?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
695
|
+
ringOffsetColor?: ConditionalValue<UtilityValues["ringOffsetColor"] | CssVars | undefined | AnyString> | undefined;
|
|
696
|
+
ringInset?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
697
|
+
skewX?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
698
|
+
skewY?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
699
|
+
scaleX?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
700
|
+
scaleY?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
701
|
+
spaceXReverse?: ConditionalValue<UtilityValues["spaceXReverse"] | CssVars | undefined | AnyString> | undefined;
|
|
702
|
+
spaceX?: ConditionalValue<UtilityValues["spaceX"] | CssVars | undefined | AnyString> | undefined;
|
|
703
|
+
spaceYReverse?: ConditionalValue<UtilityValues["spaceYReverse"] | CssVars | undefined | AnyString> | undefined;
|
|
704
|
+
spaceY?: ConditionalValue<UtilityValues["spaceY"] | CssVars | undefined | AnyString> | undefined;
|
|
705
|
+
rotateX?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
706
|
+
rotateY?: ConditionalValue<string | number | undefined | AnyString> | undefined;
|
|
707
|
+
translateX?: ConditionalValue<UtilityValues["translateX"] | CssVars | undefined | AnyString> | undefined;
|
|
708
|
+
translateY?: ConditionalValue<UtilityValues["translateY"] | CssVars | undefined | AnyString> | undefined;
|
|
709
|
+
truncate?: ConditionalValue<UtilityValues["truncate"] | CssVars | undefined | AnyString> | undefined;
|
|
710
|
+
borderSpacingX?: ConditionalValue<UtilityValues["borderSpacingX"] | CssVars | undefined | AnyString> | undefined;
|
|
711
|
+
borderSpacingY?: ConditionalValue<UtilityValues["borderSpacingY"] | CssVars | undefined | AnyString> | undefined;
|
|
712
|
+
srOnly?: ConditionalValue<UtilityValues["srOnly"] | CssVars | undefined | AnyString> | undefined;
|
|
713
|
+
debug?: ConditionalValue<UtilityValues["debug"] | CssVars | undefined | AnyString> | undefined;
|
|
714
|
+
colorPalette?: ConditionalValue<UtilityValues["colorPalette"] | CssVars | undefined | AnyString> | undefined;
|
|
715
|
+
textStyle?: ConditionalValue<UtilityValues["textStyle"] | CssVars | undefined | AnyString> | undefined;
|
|
716
|
+
layerStyle?: ConditionalValue<UtilityValues["layerStyle"] | CssVars | undefined | AnyString> | undefined;
|
|
717
|
+
animationStyle?: ConditionalValue<UtilityValues["animationStyle"] | CssVars | undefined | AnyString> | undefined;
|
|
718
|
+
}
|
|
719
|
+
export {};
|