@scaleflex/ui-tw 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +33 -0
- package/README.md +28 -0
- package/core/accordion/accordion.component.d.ts +3 -0
- package/core/accordion/accordion.component.js +50 -0
- package/core/accordion/accordion.props.d.ts +13 -0
- package/core/accordion/accordion.props.js +1 -0
- package/core/accordion/accordion.styles.d.ts +6 -0
- package/core/accordion/accordion.styles.js +12 -0
- package/core/accordion/index.d.ts +2 -0
- package/core/accordion/index.js +1 -0
- package/core/accordion-details/accordion-details.component.d.ts +3 -0
- package/core/accordion-details/accordion-details.component.js +16 -0
- package/core/accordion-details/accordion-details.props.d.ts +4 -0
- package/core/accordion-details/accordion-details.props.js +1 -0
- package/core/accordion-details/accordion-details.styles.d.ts +6 -0
- package/core/accordion-details/accordion-details.styles.js +12 -0
- package/core/accordion-details/index.d.ts +2 -0
- package/core/accordion-details/index.js +1 -0
- package/core/accordion-header/accordion-header.component.d.ts +3 -0
- package/core/accordion-header/accordion-header.component.js +48 -0
- package/core/accordion-header/accordion-header.props.d.ts +11 -0
- package/core/accordion-header/accordion-header.props.js +1 -0
- package/core/accordion-header/accordion-header.styles.d.ts +19 -0
- package/core/accordion-header/accordion-header.styles.js +44 -0
- package/core/accordion-header/index.d.ts +2 -0
- package/core/accordion-header/index.js +1 -0
- package/core/arrow/arrow.component.d.ts +3 -0
- package/core/arrow/arrow.component.js +23 -0
- package/core/arrow/arrow.mixin.d.ts +6 -0
- package/core/arrow/arrow.mixin.js +4 -0
- package/core/arrow/arrow.props.d.ts +14 -0
- package/core/arrow/arrow.props.js +6 -0
- package/core/arrow/arrow.styles.d.ts +9 -0
- package/core/arrow/arrow.styles.js +18 -0
- package/core/arrow/index.d.ts +2 -0
- package/core/arrow/index.js +1 -0
- package/core/arrow-tick/arrow-tick.component.d.ts +3 -0
- package/core/arrow-tick/arrow-tick.component.js +28 -0
- package/core/arrow-tick/arrow-tick.mixin.d.ts +6 -0
- package/core/arrow-tick/arrow-tick.mixin.js +4 -0
- package/core/arrow-tick/arrow-tick.props.d.ts +14 -0
- package/core/arrow-tick/arrow-tick.props.js +6 -0
- package/core/arrow-tick/arrow-tick.styles.d.ts +7 -0
- package/core/arrow-tick/arrow-tick.styles.js +18 -0
- package/core/arrow-tick/index.d.ts +2 -0
- package/core/arrow-tick/index.js +1 -0
- package/core/button/button.component.d.ts +9 -0
- package/core/button/button.component.js +71 -0
- package/core/button/button.types.d.ts +34 -0
- package/core/button/button.types.js +21 -0
- package/core/button/button.utils.d.ts +3 -0
- package/core/button/button.utils.js +18 -0
- package/core/button/components/end-icon.d.ts +12 -0
- package/core/button/components/end-icon.js +33 -0
- package/core/button/components/start-icon.d.ts +14 -0
- package/core/button/components/start-icon.js +40 -0
- package/core/button/index.d.ts +4 -0
- package/core/button/index.js +3 -0
- package/core/check-box/check-box.component.d.ts +3 -0
- package/core/check-box/check-box.component.js +62 -0
- package/core/check-box/check-box.mixin.d.ts +4 -0
- package/core/check-box/check-box.mixin.js +8 -0
- package/core/check-box/check-box.props.d.ts +15 -0
- package/core/check-box/check-box.props.js +1 -0
- package/core/check-box/check-box.styles.d.ts +19 -0
- package/core/check-box/check-box.styles.js +42 -0
- package/core/check-box/check-box.utils.d.ts +3 -0
- package/core/check-box/check-box.utils.js +21 -0
- package/core/check-box/index.d.ts +2 -0
- package/core/check-box/index.js +1 -0
- package/core/check-box/types/index.d.ts +2 -0
- package/core/check-box/types/index.js +2 -0
- package/core/check-box/types/size.d.ts +4 -0
- package/core/check-box/types/size.js +4 -0
- package/core/check-box/types/type.d.ts +4 -0
- package/core/check-box/types/type.js +4 -0
- package/core/check-box-group/check-box-group.component.d.ts +3 -0
- package/core/check-box-group/check-box-group.component.js +74 -0
- package/core/check-box-group/check-box-group.mixin.d.ts +5 -0
- package/core/check-box-group/check-box-group.mixin.js +10 -0
- package/core/check-box-group/check-box-group.props.d.ts +19 -0
- package/core/check-box-group/check-box-group.props.js +1 -0
- package/core/check-box-group/check-box-group.styles.d.ts +19 -0
- package/core/check-box-group/check-box-group.styles.js +33 -0
- package/core/check-box-group/index.d.ts +2 -0
- package/core/check-box-group/index.js +1 -0
- package/core/check-box-group/types/index.d.ts +1 -0
- package/core/check-box-group/types/index.js +1 -0
- package/core/check-box-group/types/label-position.d.ts +4 -0
- package/core/check-box-group/types/label-position.js +4 -0
- package/core/cross-button/cross-button.component.d.ts +3 -0
- package/core/cross-button/cross-button.component.js +35 -0
- package/core/cross-button/cross-button.props.d.ts +8 -0
- package/core/cross-button/cross-button.props.js +1 -0
- package/core/cross-button/cross-button.styles.d.ts +9 -0
- package/core/cross-button/cross-button.styles.js +21 -0
- package/core/cross-button/index.d.ts +2 -0
- package/core/cross-button/index.js +1 -0
- package/core/cross-button/types/index.d.ts +1 -0
- package/core/cross-button/types/index.js +1 -0
- package/core/cross-button/types/size.d.ts +6 -0
- package/core/cross-button/types/size.js +6 -0
- package/core/dot/dot.component.d.ts +3 -0
- package/core/dot/dot.component.js +17 -0
- package/core/dot/dot.props.d.ts +4 -0
- package/core/dot/dot.props.js +1 -0
- package/core/dot/dot.styles.d.ts +18 -0
- package/core/dot/dot.styles.js +32 -0
- package/core/dot/index.d.ts +2 -0
- package/core/dot/index.js +1 -0
- package/core/dots-navigation/dots-navigation.component.d.ts +3 -0
- package/core/dots-navigation/dots-navigation.component.js +24 -0
- package/core/dots-navigation/dots-navigation.props.d.ts +5 -0
- package/core/dots-navigation/dots-navigation.props.js +1 -0
- package/core/dots-navigation/dots-navigation.styles.d.ts +6 -0
- package/core/dots-navigation/dots-navigation.styles.js +15 -0
- package/core/dots-navigation/index.d.ts +2 -0
- package/core/dots-navigation/index.js +1 -0
- package/core/input/index.d.ts +2 -0
- package/core/input/index.js +1 -0
- package/core/input/input.component.d.ts +3 -0
- package/core/input/input.component.js +293 -0
- package/core/input/input.mixin.d.ts +18 -0
- package/core/input/input.mixin.js +25 -0
- package/core/input/input.props.d.ts +40 -0
- package/core/input/input.props.js +1 -0
- package/core/input/input.styles.d.ts +78 -0
- package/core/input/input.styles.js +148 -0
- package/core/input/input.utils.d.ts +4 -0
- package/core/input/input.utils.js +30 -0
- package/core/input/types/index.d.ts +1 -0
- package/core/input/types/index.js +1 -0
- package/core/input/types/type.d.ts +4 -0
- package/core/input/types/type.js +4 -0
- package/core/modal/index.d.ts +2 -0
- package/core/modal/index.js +1 -0
- package/core/modal/modal-menu-context.d.ts +5 -0
- package/core/modal/modal-menu-context.js +10 -0
- package/core/modal/modal.component.d.ts +3 -0
- package/core/modal/modal.component.js +97 -0
- package/core/modal/modal.mixin.d.ts +7 -0
- package/core/modal/modal.mixin.js +4 -0
- package/core/modal/modal.props.d.ts +16 -0
- package/core/modal/modal.props.js +1 -0
- package/core/modal/modal.styles.d.ts +22 -0
- package/core/modal/modal.styles.js +51 -0
- package/core/modal/modal.utils.d.ts +1 -0
- package/core/modal/modal.utils.js +4 -0
- package/core/modal/types/index.d.ts +1 -0
- package/core/modal/types/index.js +1 -0
- package/core/modal/types/size.d.ts +7 -0
- package/core/modal/types/size.js +7 -0
- package/core/modal-actions/index.d.ts +2 -0
- package/core/modal-actions/index.js +1 -0
- package/core/modal-actions/modal-actions.component.d.ts +3 -0
- package/core/modal-actions/modal-actions.component.js +18 -0
- package/core/modal-actions/modal-actions.props.d.ts +8 -0
- package/core/modal-actions/modal-actions.props.js +1 -0
- package/core/modal-actions/modal-actions.styles.d.ts +7 -0
- package/core/modal-actions/modal-actions.styles.js +17 -0
- package/core/modal-actions/types/align.d.ts +5 -0
- package/core/modal-actions/types/align.js +5 -0
- package/core/modal-actions/types/index.d.ts +1 -0
- package/core/modal-actions/types/index.js +1 -0
- package/core/modal-content/index.d.ts +2 -0
- package/core/modal-content/index.js +1 -0
- package/core/modal-content/modal-content.component.d.ts +3 -0
- package/core/modal-content/modal-content.component.js +15 -0
- package/core/modal-content/modal-content.props.d.ts +4 -0
- package/core/modal-content/modal-content.props.js +1 -0
- package/core/modal-content/modal-content.styles.d.ts +6 -0
- package/core/modal-content/modal-content.styles.js +12 -0
- package/core/modal-title/index.d.ts +2 -0
- package/core/modal-title/index.js +1 -0
- package/core/modal-title/modal-title.component.d.ts +6 -0
- package/core/modal-title/modal-title.component.js +37 -0
- package/core/modal-title/modal-title.props.d.ts +14 -0
- package/core/modal-title/modal-title.props.js +1 -0
- package/core/modal-title/modal-title.styles.d.ts +31 -0
- package/core/modal-title/modal-title.styles.js +64 -0
- package/core/modal-title/types/index.d.ts +1 -0
- package/core/modal-title/types/index.js +1 -0
- package/core/modal-title/types/variant.d.ts +4 -0
- package/core/modal-title/types/variant.js +4 -0
- package/core/pagination/index.d.ts +2 -0
- package/core/pagination/index.js +1 -0
- package/core/pagination/pagination.component.d.ts +3 -0
- package/core/pagination/pagination.component.js +81 -0
- package/core/pagination/pagination.props.d.ts +11 -0
- package/core/pagination/pagination.props.js +1 -0
- package/core/pagination/pagination.styles.d.ts +19 -0
- package/core/pagination/pagination.styles.js +36 -0
- package/core/popper/index.d.ts +2 -0
- package/core/popper/index.js +1 -0
- package/core/popper/popper.component.d.ts +3 -0
- package/core/popper/popper.component.js +150 -0
- package/core/popper/popper.mixin.d.ts +17 -0
- package/core/popper/popper.mixin.js +5 -0
- package/core/popper/popper.props.d.ts +41 -0
- package/core/popper/popper.props.js +1 -0
- package/core/popper/popper.styles.d.ts +25 -0
- package/core/popper/popper.styles.js +48 -0
- package/core/popper/popper.utils.d.ts +1 -0
- package/core/popper/popper.utils.js +10 -0
- package/core/popper/types/index.d.ts +3 -0
- package/core/popper/types/index.js +3 -0
- package/core/popper/types/phases.d.ts +11 -0
- package/core/popper/types/phases.js +11 -0
- package/core/popper/types/position.d.ts +17 -0
- package/core/popper/types/position.js +17 -0
- package/core/popper/types/strategy.d.ts +4 -0
- package/core/popper/types/strategy.js +4 -0
- package/core/radio/index.d.ts +3 -0
- package/core/radio/index.js +2 -0
- package/core/radio/radio.component.d.ts +3 -0
- package/core/radio/radio.component.js +38 -0
- package/core/radio/radio.mixin.d.ts +13 -0
- package/core/radio/radio.mixin.js +13 -0
- package/core/radio/radio.props.d.ts +13 -0
- package/core/radio/radio.props.js +1 -0
- package/core/radio/radio.styles.d.ts +19 -0
- package/core/radio/radio.styles.js +44 -0
- package/core/radio/size.d.ts +4 -0
- package/core/radio/size.js +4 -0
- package/core/radio-group/index.d.ts +2 -0
- package/core/radio-group/index.js +1 -0
- package/core/radio-group/radio-group.component.d.ts +3 -0
- package/core/radio-group/radio-group.component.js +48 -0
- package/core/radio-group/radio-group.props.d.ts +15 -0
- package/core/radio-group/radio-group.props.js +1 -0
- package/core/radio-group/radio-group.styles.d.ts +14 -0
- package/core/radio-group/radio-group.styles.js +30 -0
- package/core/switcher/index.d.ts +3 -0
- package/core/switcher/index.js +2 -0
- package/core/switcher/switcher-size.d.ts +5 -0
- package/core/switcher/switcher-size.js +5 -0
- package/core/switcher/switcher.component.d.ts +3 -0
- package/core/switcher/switcher.component.js +54 -0
- package/core/switcher/switcher.mixin.d.ts +21 -0
- package/core/switcher/switcher.mixin.js +17 -0
- package/core/switcher/switcher.props.d.ts +14 -0
- package/core/switcher/switcher.props.js +1 -0
- package/core/switcher/switcher.styles.d.ts +27 -0
- package/core/switcher/switcher.styles.js +54 -0
- package/core/switcher/switcher.utils.d.ts +4 -0
- package/core/switcher/switcher.utils.js +37 -0
- package/core/switcher-group/index.d.ts +2 -0
- package/core/switcher-group/index.js +1 -0
- package/core/switcher-group/switcher-group.component.d.ts +3 -0
- package/core/switcher-group/switcher-group.component.js +41 -0
- package/core/switcher-group/switcher-group.props.d.ts +13 -0
- package/core/switcher-group/switcher-group.props.js +1 -0
- package/core/switcher-group/switcher-group.styles.d.ts +10 -0
- package/core/switcher-group/switcher-group.styles.js +30 -0
- package/core/tab/index.d.ts +2 -0
- package/core/tab/index.js +1 -0
- package/core/tab/tab.component.d.ts +6 -0
- package/core/tab/tab.component.js +52 -0
- package/core/tab/tab.mixin.d.ts +11 -0
- package/core/tab/tab.mixin.js +15 -0
- package/core/tab/tab.props.d.ts +15 -0
- package/core/tab/tab.props.js +1 -0
- package/core/tab/tab.styles.d.ts +26 -0
- package/core/tab/tab.styles.js +61 -0
- package/core/tab/types/index.d.ts +1 -0
- package/core/tab/types/index.js +1 -0
- package/core/tab/types/size.d.ts +5 -0
- package/core/tab/types/size.js +5 -0
- package/core/tab-panel/index.d.ts +2 -0
- package/core/tab-panel/index.js +1 -0
- package/core/tab-panel/tab-panel.component.d.ts +3 -0
- package/core/tab-panel/tab-panel.component.js +18 -0
- package/core/tab-panel/tab-panel.props.d.ts +6 -0
- package/core/tab-panel/tab-panel.props.js +1 -0
- package/core/tab-panel/tab-panel.styles.d.ts +6 -0
- package/core/tab-panel/tab-panel.styles.js +12 -0
- package/core/upload-input/index.d.ts +2 -0
- package/core/upload-input/index.js +1 -0
- package/core/upload-input/upload-input.component.d.ts +3 -0
- package/core/upload-input/upload-input.component.js +68 -0
- package/core/upload-input/upload-input.props.d.ts +9 -0
- package/core/upload-input/upload-input.props.js +1 -0
- package/core/upload-input/upload-input.styles.d.ts +11 -0
- package/core/upload-input/upload-input.styles.js +53 -0
- package/hooks/README.md +26 -0
- package/hooks/use-controlled.d.ts +1 -0
- package/hooks/use-controlled.js +20 -0
- package/hooks/use-debounce.d.ts +2 -0
- package/hooks/use-debounce.js +19 -0
- package/hooks/use-drag.d.ts +5 -0
- package/hooks/use-drag.js +37 -0
- package/hooks/use-enhanced-effect.d.ts +3 -0
- package/hooks/use-enhanced-effect.js +3 -0
- package/hooks/use-event-callback.d.ts +4 -0
- package/hooks/use-event-callback.js +19 -0
- package/hooks/use-pagination.d.ts +3 -0
- package/hooks/use-pagination.js +106 -0
- package/hooks/use-portal.d.ts +14 -0
- package/hooks/use-portal.js +75 -0
- package/package.json +63 -0
- package/theme/README.md +46 -0
- package/theme/entity/index.d.ts +1 -0
- package/theme/entity/index.js +1 -0
- package/theme/entity/theme.d.ts +34 -0
- package/theme/hooks/index.d.ts +2 -0
- package/theme/hooks/index.js +2 -0
- package/theme/hooks/use-media-query.d.ts +1 -0
- package/theme/hooks/use-media-query.js +27 -0
- package/theme/hooks/use-theme.d.ts +2 -0
- package/theme/hooks/use-theme.js +4 -0
- package/theme/index.d.ts +3 -0
- package/theme/index.js +1 -0
- package/theme/roots/breakpoints/entity/breakpoints-map.d.ts +8 -0
- package/theme/roots/breakpoints/entity/breakpoints.d.ts +73 -0
- package/theme/roots/breakpoints/entity/create-breakpoints.d.ts +3 -0
- package/theme/roots/breakpoints/entity/create-breakpoints.js +65 -0
- package/theme/roots/breakpoints/entity/default-breakpoints.d.ts +26 -0
- package/theme/roots/breakpoints/entity/default-breakpoints.js +22 -0
- package/theme/roots/breakpoints/entity/index.d.ts +3 -0
- package/theme/roots/breakpoints/entity/index.js +2 -0
- package/theme/roots/breakpoints/index.d.ts +3 -0
- package/theme/roots/breakpoints/index.js +1 -0
- package/theme/roots/common-styles.d.ts +2 -0
- package/theme/roots/common-styles.js +6 -0
- package/theme/roots/index.d.ts +2 -0
- package/theme/roots/index.js +2 -0
- package/theme/roots/palette/entity/colors-map.d.ts +4 -0
- package/theme/roots/palette/entity/default-palette.d.ts +282 -0
- package/theme/roots/palette/entity/default-palette.js +22 -0
- package/theme/roots/palette/entity/index.d.ts +2 -0
- package/theme/roots/palette/entity/index.js +2 -0
- package/theme/roots/palette/index.d.ts +2 -0
- package/theme/roots/palette/index.js +1 -0
- package/theme/roots/shadows/entity/default-shadows.d.ts +16 -0
- package/theme/roots/shadows/entity/default-shadows.js +5 -0
- package/theme/roots/shadows/entity/index.d.ts +2 -0
- package/theme/roots/shadows/entity/index.js +2 -0
- package/theme/roots/shadows/entity/shadows-map.d.ts +4 -0
- package/theme/roots/shadows/index.d.ts +2 -0
- package/theme/roots/shadows/index.js +1 -0
- package/theme/roots/shape/index.d.ts +1 -0
- package/theme/roots/shape/index.js +1 -0
- package/theme/roots/shape/shape.props.d.ts +5 -0
- package/theme/roots/shape/shape.props.js +1 -0
- package/theme/roots/typography/entity/default-typography.d.ts +398 -0
- package/theme/roots/typography/entity/default-typography.js +237 -0
- package/theme/roots/typography/entity/index.d.ts +1 -0
- package/theme/roots/typography/entity/index.js +1 -0
- package/theme/roots/typography/index.d.ts +3 -0
- package/theme/roots/typography/index.js +2 -0
- package/theme/roots/typography/typography.component.d.ts +2 -0
- package/theme/roots/typography/typography.component.js +7 -0
- package/theme/roots/typography/typography.props.d.ts +15 -0
- package/theme/roots/typography/typography.props.js +1 -0
- package/theme/theme-provider/index.d.ts +2 -0
- package/theme/theme-provider/index.js +1 -0
- package/theme/theme-provider/theme-provider.context.d.ts +4 -0
- package/theme/theme-provider/theme-provider.context.js +48 -0
- package/theme/theme-provider/theme-provider.props.d.ts +6 -0
- package/theme/theme-provider/theme-provider.props.js +1 -0
- package/theme/theme.css +100 -0
- package/tsconfig.json +22 -0
- package/utils/README.md +11 -0
- package/utils/functions/apply-display-names.d.ts +6 -0
- package/utils/functions/apply-display-names.js +12 -0
- package/utils/functions/apply-polymorphic-function-prop.d.ts +6 -0
- package/utils/functions/apply-polymorphic-function-prop.js +11 -0
- package/utils/functions/color-picker/color-converters.d.ts +11 -0
- package/utils/functions/color-picker/color-converters.js +159 -0
- package/utils/functions/color-picker/map-number.d.ts +1 -0
- package/utils/functions/color-picker/map-number.js +3 -0
- package/utils/functions/color-picker/restrict-number.d.ts +1 -0
- package/utils/functions/color-picker/restrict-number.js +8 -0
- package/utils/functions/convert-to-string.d.ts +1 -0
- package/utils/functions/convert-to-string.js +3 -0
- package/utils/functions/escape-regexp.d.ts +1 -0
- package/utils/functions/escape-regexp.js +3 -0
- package/utils/functions/generate-class-names.d.ts +1 -0
- package/utils/functions/generate-class-names.js +22 -0
- package/utils/functions/get-elem-document-coords.d.ts +6 -0
- package/utils/functions/get-elem-document-coords.js +21 -0
- package/utils/functions/ignore-event.d.ts +1 -0
- package/utils/functions/ignore-event.js +9 -0
- package/utils/functions/index.d.ts +14 -0
- package/utils/functions/index.js +15 -0
- package/utils/functions/intrinsic-component.d.ts +0 -0
- package/utils/functions/intrinsic-component.js +28 -0
- package/utils/functions/object-keys.d.ts +6 -0
- package/utils/functions/object-keys.js +6 -0
- package/utils/functions/object-values.d.ts +7 -0
- package/utils/functions/object-values.js +6 -0
- package/utils/functions/on-click-by-mouse-down.d.ts +2 -0
- package/utils/functions/on-click-by-mouse-down.js +9 -0
- package/utils/functions/scrollbar.d.ts +2 -0
- package/utils/functions/scrollbar.js +6 -0
- package/utils/functions/set-ref.d.ts +8 -0
- package/utils/functions/set-ref.js +13 -0
- package/utils/functions/shadcn-utils.d.ts +2 -0
- package/utils/functions/shadcn-utils.js +8 -0
- package/utils/functions/slider/utils.d.ts +47 -0
- package/utils/functions/slider/utils.js +124 -0
- package/utils/functions/use-fork-ref.d.ts +2 -0
- package/utils/functions/use-fork-ref.js +18 -0
- package/utils/types/color/icon-button-color.d.ts +5 -0
- package/utils/types/color/icon-button-color.js +5 -0
- package/utils/types/color/index.d.ts +2 -0
- package/utils/types/color/index.js +2 -0
- package/utils/types/color/input-background-color.d.ts +4 -0
- package/utils/types/color/input-background-color.js +4 -0
- package/utils/types/css/align.d.ts +11 -0
- package/utils/types/css/align.js +11 -0
- package/utils/types/css/breakpoint.d.ts +18 -0
- package/utils/types/css/breakpoint.js +18 -0
- package/utils/types/css/direction.d.ts +8 -0
- package/utils/types/css/direction.js +4 -0
- package/utils/types/css/index.d.ts +4 -0
- package/utils/types/css/index.js +4 -0
- package/utils/types/css/position.d.ts +6 -0
- package/utils/types/css/position.js +6 -0
- package/utils/types/index.d.ts +8 -0
- package/utils/types/index.js +3 -0
- package/utils/types/intrinsic-component.d.ts +1 -0
- package/utils/types/keys.d.ts +4 -0
- package/utils/types/palette/color.d.ts +133 -0
- package/utils/types/palette/color.js +133 -0
- package/utils/types/palette/index.d.ts +1 -0
- package/utils/types/palette/index.js +1 -0
- package/utils/types/position/index.d.ts +1 -0
- package/utils/types/position/index.js +1 -0
- package/utils/types/position/position.d.ts +6 -0
- package/utils/types/position/position.js +6 -0
- package/utils/types/prop-types/index.d.ts +1 -0
- package/utils/types/prop-types/index.js +1 -0
- package/utils/types/prop-types/record.d.ts +1 -0
- package/utils/types/prop-types/record.js +6 -0
- package/utils/types/shadows/index.d.ts +1 -0
- package/utils/types/shadows/index.js +1 -0
- package/utils/types/shadows/shadows.d.ts +14 -0
- package/utils/types/shadows/shadows.js +14 -0
- package/utils/types/shape/border-radius-size.d.ts +5 -0
- package/utils/types/shape/border-radius-size.js +5 -0
- package/utils/types/shape/index.d.ts +1 -0
- package/utils/types/shape/index.js +1 -0
- package/utils/types/size/index.d.ts +1 -0
- package/utils/types/size/index.js +1 -0
- package/utils/types/size/input-size.d.ts +4 -0
- package/utils/types/size/input-size.js +4 -0
- package/utils/types/stylable-component.d.ts +7 -0
- package/utils/types/typography/font-variant.d.ts +58 -0
- package/utils/types/typography/font-variant.js +58 -0
- package/utils/types/typography/font-weight.d.ts +11 -0
- package/utils/types/typography/font-weight.js +11 -0
- package/utils/types/typography/index.d.ts +4 -0
- package/utils/types/typography/index.js +4 -0
- package/utils/types/typography/text-align.d.ts +5 -0
- package/utils/types/typography/text-align.js +5 -0
- package/utils/types/typography/text-decoration.d.ts +5 -0
- package/utils/types/typography/text-decoration.js +5 -0
- package/utils/types/values.d.ts +4 -0
- package/utils/types/with.d.ts +4 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './position';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './position';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './record';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './record';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const record: <T extends string, P>(keys: T[], valueType: P) => Record<T, P>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './shadows';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './shadows';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const Shadows: {
|
|
2
|
+
readonly ShadowSm: "shadow-sm";
|
|
3
|
+
readonly ShadowMd: "shadow-md";
|
|
4
|
+
readonly ShadowLg: "shadow-lg";
|
|
5
|
+
readonly ShadowXl: "shadow-xl";
|
|
6
|
+
readonly Label: "label";
|
|
7
|
+
readonly Header: "header";
|
|
8
|
+
readonly HeaderPopup: "header-popup";
|
|
9
|
+
readonly FooterPopup: "footer-popup";
|
|
10
|
+
readonly LeftPanelMd: "left-panel-md";
|
|
11
|
+
readonly RightPanelMd: "right-panel-md";
|
|
12
|
+
readonly LeftPanelSm: "left-panel-sm";
|
|
13
|
+
readonly RightPanelSm: "right-panel-sm";
|
|
14
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export var Shadows = {
|
|
2
|
+
ShadowSm: 'shadow-sm',
|
|
3
|
+
ShadowMd: 'shadow-md',
|
|
4
|
+
ShadowLg: 'shadow-lg',
|
|
5
|
+
ShadowXl: 'shadow-xl',
|
|
6
|
+
Label: 'label',
|
|
7
|
+
Header: 'header',
|
|
8
|
+
HeaderPopup: 'header-popup',
|
|
9
|
+
FooterPopup: 'footer-popup',
|
|
10
|
+
LeftPanelMd: 'left-panel-md',
|
|
11
|
+
RightPanelMd: 'right-panel-md',
|
|
12
|
+
LeftPanelSm: 'left-panel-sm',
|
|
13
|
+
RightPanelSm: 'right-panel-sm'
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './border-radius-size';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './border-radius-size';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { InputSize } from './input-size';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { InputSize } from './input-size';
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export declare const FontVariant: {
|
|
2
|
+
readonly TextExtraSmall: "text-extra-small";
|
|
3
|
+
readonly TextSmall: "text-small";
|
|
4
|
+
readonly TextSmallUp: "text-small-up";
|
|
5
|
+
readonly TextMedium: "text-medium";
|
|
6
|
+
readonly TextLarge: "text-large";
|
|
7
|
+
readonly TextExtraLarge: "text-extra-large";
|
|
8
|
+
readonly TextXExtraLarge: "text-x-extra-large";
|
|
9
|
+
readonly TitleH6: "title-h6";
|
|
10
|
+
readonly TitleH5: "title-h5";
|
|
11
|
+
readonly TitleH4: "title-h4";
|
|
12
|
+
readonly TitleH3: "title-h3";
|
|
13
|
+
readonly TitleH2: "title-h2";
|
|
14
|
+
readonly TitleH1: "title-h1";
|
|
15
|
+
readonly LabelExtraSmall: "label-extra-small";
|
|
16
|
+
readonly LabelExtraSmallEmphasis: "label-extra-small-emphasis";
|
|
17
|
+
readonly LabelExtraSmallUp: "label-extra-small-up";
|
|
18
|
+
readonly LabelSmall: "label-small";
|
|
19
|
+
readonly LabelSmallEmphasis: "label-small-emphasis";
|
|
20
|
+
readonly LabelSmallUp: "label-small-up";
|
|
21
|
+
readonly LabelSmallUpEmphasis: "label-small-up-emphasis";
|
|
22
|
+
readonly LabelMedium: "label-medium";
|
|
23
|
+
readonly LabelMediumEmphasis: "label-medium-emphasis";
|
|
24
|
+
readonly LabelLarge: "label-large";
|
|
25
|
+
readonly LabelLargeEmphasis: "label-large-emphasis";
|
|
26
|
+
readonly LabelLargeUp: "label-large-up";
|
|
27
|
+
readonly LabelExtraLargeEmphasis: "label-extra-large-emphasis";
|
|
28
|
+
readonly LabelExtraLarge: "label-extra-large";
|
|
29
|
+
readonly LabelXExtraLargeEmphasis: "label-x-extra-large-emphasis";
|
|
30
|
+
readonly LabelXExtraLarge: "label-x-extra-large";
|
|
31
|
+
readonly LabelXXExtraLargeEmphasis: "label-x-x-extra-large-emphasis";
|
|
32
|
+
readonly LabelXXExtraLarge: "label-x-x-extra-large";
|
|
33
|
+
readonly LabelXXXExtraLarge: "label-x-x-x-extra-large";
|
|
34
|
+
readonly ButtonSmEmphasis: "btn-sm-emphasis";
|
|
35
|
+
readonly ButtonSm: "btn-sm";
|
|
36
|
+
readonly ButtonSmUpEmphasis: "btn-sm-up-emphasis";
|
|
37
|
+
readonly ButtonSmUp: "btn-sm-up";
|
|
38
|
+
readonly ButtonMdEmphasis: "btn-md-emphasis";
|
|
39
|
+
readonly ButtonMd: "btn-md";
|
|
40
|
+
readonly ButtonLgEmphasis: "btn-lg-emphasis";
|
|
41
|
+
readonly ButtonLg: "btn-lg";
|
|
42
|
+
readonly ButtonLgUpEmphasis: "btn-lg-up-emphasis";
|
|
43
|
+
readonly ButtonLgUp: "btn-lg-up";
|
|
44
|
+
readonly LinkSmall: "link-small";
|
|
45
|
+
readonly LinkSmallEmphasis: "link-small-emphasis";
|
|
46
|
+
readonly LinkSmallUp: "link-small-up";
|
|
47
|
+
readonly LinkSmallUpEmphasis: "link-small-up-emphasis";
|
|
48
|
+
readonly LinkMedium: "link-medium";
|
|
49
|
+
readonly LinkMediumEmphasis: "link-medium-emphasis";
|
|
50
|
+
readonly LinkLarge: "link-large";
|
|
51
|
+
readonly LinkLargeEmphasis: "link-large-emphasis";
|
|
52
|
+
readonly LinkLargeUp: "link-large-up";
|
|
53
|
+
readonly LinkLargeUpEmphasis: "link-large-up-emphasis";
|
|
54
|
+
readonly InputSm: "input-sm";
|
|
55
|
+
readonly InputSmUp: "input-sm-up";
|
|
56
|
+
readonly InputMd: "input-md";
|
|
57
|
+
readonly InputLg: "input-lg";
|
|
58
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export var FontVariant = {
|
|
2
|
+
TextExtraSmall: 'text-extra-small',
|
|
3
|
+
TextSmall: 'text-small',
|
|
4
|
+
TextSmallUp: 'text-small-up',
|
|
5
|
+
TextMedium: 'text-medium',
|
|
6
|
+
TextLarge: 'text-large',
|
|
7
|
+
TextExtraLarge: 'text-extra-large',
|
|
8
|
+
TextXExtraLarge: 'text-x-extra-large',
|
|
9
|
+
TitleH6: 'title-h6',
|
|
10
|
+
TitleH5: 'title-h5',
|
|
11
|
+
TitleH4: 'title-h4',
|
|
12
|
+
TitleH3: 'title-h3',
|
|
13
|
+
TitleH2: 'title-h2',
|
|
14
|
+
TitleH1: 'title-h1',
|
|
15
|
+
LabelExtraSmall: 'label-extra-small',
|
|
16
|
+
LabelExtraSmallEmphasis: 'label-extra-small-emphasis',
|
|
17
|
+
LabelExtraSmallUp: 'label-extra-small-up',
|
|
18
|
+
LabelSmall: 'label-small',
|
|
19
|
+
LabelSmallEmphasis: 'label-small-emphasis',
|
|
20
|
+
LabelSmallUp: 'label-small-up',
|
|
21
|
+
LabelSmallUpEmphasis: 'label-small-up-emphasis',
|
|
22
|
+
LabelMedium: 'label-medium',
|
|
23
|
+
LabelMediumEmphasis: 'label-medium-emphasis',
|
|
24
|
+
LabelLarge: 'label-large',
|
|
25
|
+
LabelLargeEmphasis: 'label-large-emphasis',
|
|
26
|
+
LabelLargeUp: 'label-large-up',
|
|
27
|
+
LabelExtraLargeEmphasis: 'label-extra-large-emphasis',
|
|
28
|
+
LabelExtraLarge: 'label-extra-large',
|
|
29
|
+
LabelXExtraLargeEmphasis: 'label-x-extra-large-emphasis',
|
|
30
|
+
LabelXExtraLarge: 'label-x-extra-large',
|
|
31
|
+
LabelXXExtraLargeEmphasis: 'label-x-x-extra-large-emphasis',
|
|
32
|
+
LabelXXExtraLarge: 'label-x-x-extra-large',
|
|
33
|
+
LabelXXXExtraLarge: 'label-x-x-x-extra-large',
|
|
34
|
+
ButtonSmEmphasis: 'btn-sm-emphasis',
|
|
35
|
+
ButtonSm: 'btn-sm',
|
|
36
|
+
ButtonSmUpEmphasis: 'btn-sm-up-emphasis',
|
|
37
|
+
ButtonSmUp: 'btn-sm-up',
|
|
38
|
+
ButtonMdEmphasis: 'btn-md-emphasis',
|
|
39
|
+
ButtonMd: 'btn-md',
|
|
40
|
+
ButtonLgEmphasis: 'btn-lg-emphasis',
|
|
41
|
+
ButtonLg: 'btn-lg',
|
|
42
|
+
ButtonLgUpEmphasis: 'btn-lg-up-emphasis',
|
|
43
|
+
ButtonLgUp: 'btn-lg-up',
|
|
44
|
+
LinkSmall: 'link-small',
|
|
45
|
+
LinkSmallEmphasis: 'link-small-emphasis',
|
|
46
|
+
LinkSmallUp: 'link-small-up',
|
|
47
|
+
LinkSmallUpEmphasis: 'link-small-up-emphasis',
|
|
48
|
+
LinkMedium: 'link-medium',
|
|
49
|
+
LinkMediumEmphasis: 'link-medium-emphasis',
|
|
50
|
+
LinkLarge: 'link-large',
|
|
51
|
+
LinkLargeEmphasis: 'link-large-emphasis',
|
|
52
|
+
LinkLargeUp: 'link-large-up',
|
|
53
|
+
LinkLargeUpEmphasis: 'link-large-up-emphasis',
|
|
54
|
+
InputSm: 'input-sm',
|
|
55
|
+
InputSmUp: 'input-sm-up',
|
|
56
|
+
InputMd: 'input-md',
|
|
57
|
+
InputLg: 'input-lg'
|
|
58
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const FontWeight: {
|
|
2
|
+
readonly Thin: 100;
|
|
3
|
+
readonly ExtraLight: 200;
|
|
4
|
+
readonly Light: 300;
|
|
5
|
+
readonly Regular: 400;
|
|
6
|
+
readonly Medium: 500;
|
|
7
|
+
readonly SemiBold: 600;
|
|
8
|
+
readonly Bold: 700;
|
|
9
|
+
readonly ExtraBold: 800;
|
|
10
|
+
readonly Black: 900;
|
|
11
|
+
};
|