@web_xiaobai/ui 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/README.md +5 -0
- package/dist/_constant/base.d.ts +3 -0
- package/dist/_extendThemeOverrides/Alert.d.ts +3 -0
- package/dist/_extendThemeOverrides/Cascader.d.ts +10 -0
- package/dist/_extendThemeOverrides/InputGroupLabel.d.ts +5 -0
- package/dist/_extendThemeOverrides/InputNumber.d.ts +53 -0
- package/dist/_extendThemeOverrides/Layout.d.ts +8 -0
- package/dist/_extendThemeOverrides/Menu.d.ts +7 -0
- package/dist/_extendThemeOverrides/Pagination.d.ts +19 -0
- package/dist/_extendThemeOverrides/Popconfirm.d.ts +9 -0
- package/dist/_extendThemeOverrides/Progress.d.ts +37 -0
- package/dist/_extendThemeOverrides/Radio.d.ts +7 -0
- package/dist/_extendThemeOverrides/Select.d.ts +5 -0
- package/dist/_extendThemeOverrides/Slider.d.ts +12 -0
- package/dist/_extendThemeOverrides/Steps.d.ts +10 -0
- package/dist/_extendThemeOverrides/Switch.d.ts +9 -0
- package/dist/_extendThemeOverrides/Tabs.d.ts +68 -0
- package/dist/_extendThemeOverrides/Tag.d.ts +6 -0
- package/dist/_extendThemeOverrides/Transfer.d.ts +9 -0
- package/dist/_hooks/boden-use-config-provide-context.d.ts +12 -0
- package/dist/_hooks/boden-use-theme.d.ts +3 -0
- package/dist/_hooks/index.d.ts +1 -0
- package/dist/_mixins/use-theme.d.ts +3 -0
- package/dist/_themeOverrides/InternalSelectMenu/_common.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelectMenu/dark.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelectMenu/index.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelectMenu/light.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelection/_common.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelection/dark.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelection/index.d.ts +2 -0
- package/dist/_themeOverrides/InternalSelection/light.d.ts +2 -0
- package/dist/_themeOverrides/Scrollbar/_common.d.ts +2 -0
- package/dist/_themeOverrides/Scrollbar/dark.d.ts +2 -0
- package/dist/_themeOverrides/Scrollbar/index.d.ts +2 -0
- package/dist/_themeOverrides/Scrollbar/light.d.ts +2 -0
- package/dist/_themes/index.d.ts +7 -0
- package/dist/_themes/multi-themes/enum.d.ts +4 -0
- package/dist/_themes/multi-themes/index.d.ts +4 -0
- package/dist/_themes/multi-themes/theme-dark.d.ts +2 -0
- package/dist/_themes/multi-themes/theme-light.d.ts +2 -0
- package/dist/_themes/multi-themes/type.d.ts +12 -0
- package/dist/_themes/tailwind-theme/index.d.ts +2 -0
- package/dist/_themes/tailwind-theme/type.d.ts +10 -0
- package/dist/_types/_extendTheme.d.ts +36 -0
- package/dist/_types/_internal.d.ts +94 -0
- package/dist/_types/index.d.ts +3 -0
- package/dist/_utils/call.d.ts +7 -0
- package/dist/_utils/cssr.d.ts +4 -0
- package/dist/_utils/cssrScrollbar.d.ts +4 -0
- package/dist/_utils/index.d.ts +1 -0
- package/dist/_utils/resolve-slot.d.ts +3 -0
- package/dist/boden-ui.es.js +35032 -0
- package/dist/boden-ui.umd.js +4202 -0
- package/dist/components/Alert/index.d.ts +4 -0
- package/dist/components/Alert/src/Alert.d.ts +453 -0
- package/dist/components/Alert/src/props.d.ts +226 -0
- package/dist/components/Alert/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Alert/src/types.d.ts +3 -0
- package/dist/components/Alert/src/useCssVars.d.ts +7 -0
- package/dist/components/Alert/styles/_common.d.ts +4 -0
- package/dist/components/Alert/styles/dark.d.ts +4 -0
- package/dist/components/Alert/styles/index.d.ts +2 -0
- package/dist/components/Alert/styles/light.d.ts +4 -0
- package/dist/components/AppProvider/index.d.ts +1 -0
- package/dist/components/AppProvider/src/AppProvider.vue.d.ts +17 -0
- package/dist/components/Breadcrumb/index.d.ts +4 -0
- package/dist/components/Breadcrumb/src/Breadcrumb.d.ts +94 -0
- package/dist/components/Breadcrumb/src/props.d.ts +45 -0
- package/dist/components/Breadcrumb/src/types.d.ts +3 -0
- package/dist/components/Breadcrumb/styles/_common.d.ts +2 -0
- package/dist/components/Breadcrumb/styles/dark.d.ts +2 -0
- package/dist/components/Breadcrumb/styles/index.d.ts +2 -0
- package/dist/components/Breadcrumb/styles/light.d.ts +2 -0
- package/dist/components/Button/index.d.ts +4 -0
- package/dist/components/Button/src/Button.d.ts +1369 -0
- package/dist/components/Button/src/props.d.ts +674 -0
- package/dist/components/Button/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Button/src/types.d.ts +3 -0
- package/dist/components/Button/src/useCssVars.d.ts +7 -0
- package/dist/components/Button/styles/_common.d.ts +2 -0
- package/dist/components/Button/styles/dark.d.ts +2 -0
- package/dist/components/Button/styles/index.d.ts +2 -0
- package/dist/components/Button/styles/light.d.ts +2 -0
- package/dist/components/Card/index.d.ts +4 -0
- package/dist/components/Card/src/Card.d.ts +309 -0
- package/dist/components/Card/src/props.d.ts +149 -0
- package/dist/components/Card/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Card/src/types.d.ts +3 -0
- package/dist/components/Card/styles/_common.d.ts +2 -0
- package/dist/components/Card/styles/dark.d.ts +2 -0
- package/dist/components/Card/styles/index.d.ts +2 -0
- package/dist/components/Card/styles/light.d.ts +2 -0
- package/dist/components/Cascader/index.d.ts +4 -0
- package/dist/components/Cascader/src/Cascader.vue.d.ts +4817 -0
- package/dist/components/Cascader/src/props.d.ts +795 -0
- package/dist/components/Cascader/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Cascader/src/types.d.ts +5 -0
- package/dist/components/Cascader/src/useCssVars.d.ts +14 -0
- package/dist/components/Cascader/styles/_common.d.ts +4 -0
- package/dist/components/Cascader/styles/dark.d.ts +4 -0
- package/dist/components/Cascader/styles/index.d.ts +2 -0
- package/dist/components/Cascader/styles/light.d.ts +4 -0
- package/dist/components/Checkbox/index.d.ts +4 -0
- package/dist/components/Checkbox/src/Checkbox.vue.d.ts +750 -0
- package/dist/components/Checkbox/src/props.d.ts +128 -0
- package/dist/components/Checkbox/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Checkbox/src/types.d.ts +5 -0
- package/dist/components/Checkbox/styles/_common.d.ts +2 -0
- package/dist/components/Checkbox/styles/dark.d.ts +2 -0
- package/dist/components/Checkbox/styles/index.d.ts +2 -0
- package/dist/components/Checkbox/styles/light.d.ts +2 -0
- package/dist/components/CheckboxGroup/index.d.ts +3 -0
- package/dist/components/CheckboxGroup/src/CheckboxGroup.vue.d.ts +1267 -0
- package/dist/components/CheckboxGroup/src/props.d.ts +60 -0
- package/dist/components/CheckboxGroup/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/CheckboxGroup/src/types.d.ts +3 -0
- package/dist/components/ConfigProvider/ConfigProvider.d.ts +96 -0
- package/dist/components/ConfigProvider/index.d.ts +3 -0
- package/dist/components/ConfigProvider/props.d.ts +43 -0
- package/dist/components/ConfigProvider/types.d.ts +3 -0
- package/dist/components/ConfirmTip/index.d.ts +7 -0
- package/dist/components/DataTable/index.d.ts +4 -0
- package/dist/components/DataTable/src/DataTable.d.ts +14548 -0
- package/dist/components/DataTable/src/props.d.ts +2867 -0
- package/dist/components/DataTable/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/DataTable/src/types.d.ts +8 -0
- package/dist/components/DataTable/src/useCssVars.d.ts +8 -0
- package/dist/components/DataTable/styles/_common.d.ts +2 -0
- package/dist/components/DataTable/styles/dark.d.ts +2 -0
- package/dist/components/DataTable/styles/index.d.ts +2 -0
- package/dist/components/DataTable/styles/light.d.ts +2 -0
- package/dist/components/Dialog/index.d.ts +1 -0
- package/dist/components/Dialog/styles/_common.d.ts +2 -0
- package/dist/components/Dialog/styles/dark.d.ts +2 -0
- package/dist/components/Dialog/styles/index.d.ts +2 -0
- package/dist/components/Dialog/styles/light.d.ts +2 -0
- package/dist/components/Dropdown/index.d.ts +4 -0
- package/dist/components/Dropdown/src/DropDown.d.ts +787 -0
- package/dist/components/Dropdown/src/props.d.ts +377 -0
- package/dist/components/Dropdown/src/types.d.ts +1 -0
- package/dist/components/Dropdown/styles/_common.d.ts +2 -0
- package/dist/components/Dropdown/styles/dark.d.ts +2 -0
- package/dist/components/Dropdown/styles/index.d.ts +2 -0
- package/dist/components/Dropdown/styles/light.d.ts +2 -0
- package/dist/components/IconButton/index.d.ts +2 -0
- package/dist/components/IconButton/src/index.vue.d.ts +6 -0
- package/dist/components/IconButton/src/props.d.ts +7 -0
- package/dist/components/Input/index.d.ts +4 -0
- package/dist/components/Input/src/Input.d.ts +1073 -0
- package/dist/components/Input/src/props.d.ts +323 -0
- package/dist/components/Input/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Input/src/types.d.ts +5 -0
- package/dist/components/Input/styles/_common.d.ts +2 -0
- package/dist/components/Input/styles/dark.d.ts +2 -0
- package/dist/components/Input/styles/index.d.ts +2 -0
- package/dist/components/Input/styles/light.d.ts +2 -0
- package/dist/components/InputGroupLabel/index.d.ts +4 -0
- package/dist/components/InputGroupLabel/src/InputGroupLabel.d.ts +487 -0
- package/dist/components/InputGroupLabel/src/props.d.ts +242 -0
- package/dist/components/InputGroupLabel/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/InputGroupLabel/src/types.d.ts +3 -0
- package/dist/components/InputGroupLabel/src/useCssVars.d.ts +9 -0
- package/dist/components/InputGroupLabel/styles/_common.d.ts +2 -0
- package/dist/components/InputGroupLabel/styles/dark.d.ts +4 -0
- package/dist/components/InputGroupLabel/styles/index.d.ts +2 -0
- package/dist/components/InputGroupLabel/styles/light.d.ts +4 -0
- package/dist/components/InputNumber/index.d.ts +4 -0
- package/dist/components/InputNumber/src/InputNumber.vue.d.ts +7093 -0
- package/dist/components/InputNumber/src/props.d.ts +932 -0
- package/dist/components/InputNumber/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/InputNumber/src/types.d.ts +5 -0
- package/dist/components/InputNumber/src/useCssVars.d.ts +55 -0
- package/dist/components/InputNumber/styles/_common.d.ts +2 -0
- package/dist/components/InputNumber/styles/dark.d.ts +4 -0
- package/dist/components/InputNumber/styles/index.d.ts +2 -0
- package/dist/components/InputNumber/styles/light.d.ts +4 -0
- package/dist/components/Layout/index.d.ts +4 -0
- package/dist/components/Layout/src/Layout.vue.d.ts +49 -0
- package/dist/components/Layout/src/WrapContent.vue.d.ts +22 -0
- package/dist/components/Layout/src/WrapFooter.vue.d.ts +24 -0
- package/dist/components/Layout/src/WrapHeader.vue.d.ts +24 -0
- package/dist/components/Layout/src/WrapSidebar.vue.d.ts +24 -0
- package/dist/components/Layout/src/WrapTab.vue.d.ts +24 -0
- package/dist/components/Layout/src/layoutCssVar.d.ts +2 -0
- package/dist/components/Layout/src/options.d.ts +3 -0
- package/dist/components/Layout/src/styles/index.cssr.d.ts +5 -0
- package/dist/components/Layout/src/type.d.ts +57 -0
- package/dist/components/Layout/src/useCssVars.d.ts +12 -0
- package/dist/components/Layout/styles/_common.d.ts +2 -0
- package/dist/components/Layout/styles/dark.d.ts +2 -0
- package/dist/components/Layout/styles/index.d.ts +2 -0
- package/dist/components/Layout/styles/light.d.ts +2 -0
- package/dist/components/Menu/index.d.ts +4 -0
- package/dist/components/Menu/src/Menu.d.ts +2386 -0
- package/dist/components/Menu/src/props.d.ts +693 -0
- package/dist/components/Menu/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Menu/src/types.d.ts +3 -0
- package/dist/components/Menu/src/useCssVars.d.ts +11 -0
- package/dist/components/Menu/styles/_common.d.ts +4 -0
- package/dist/components/Menu/styles/dark.d.ts +4 -0
- package/dist/components/Menu/styles/index.d.ts +2 -0
- package/dist/components/Menu/styles/light.d.ts +4 -0
- package/dist/components/Modal/index.d.ts +4 -0
- package/dist/components/Modal/src/Dialog.d.ts +3464 -0
- package/dist/components/Modal/src/props.d.ts +1073 -0
- package/dist/components/Modal/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Modal/src/types.d.ts +9 -0
- package/dist/components/Modal/styles/_common.d.ts +2 -0
- package/dist/components/Modal/styles/dark.d.ts +2 -0
- package/dist/components/Modal/styles/index.d.ts +2 -0
- package/dist/components/Modal/styles/light.d.ts +2 -0
- package/dist/components/Pagination/index.d.ts +4 -0
- package/dist/components/Pagination/src/Pagination.d.ts +12665 -0
- package/dist/components/Pagination/src/props.d.ts +1272 -0
- package/dist/components/Pagination/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Pagination/src/types.d.ts +7 -0
- package/dist/components/Pagination/src/useCssVars.d.ts +14 -0
- package/dist/components/Pagination/styles/_common.d.ts +4 -0
- package/dist/components/Pagination/styles/dark.d.ts +4 -0
- package/dist/components/Pagination/styles/index.d.ts +2 -0
- package/dist/components/Pagination/styles/light.d.ts +4 -0
- package/dist/components/Popconfirm/index.d.ts +4 -0
- package/dist/components/Popconfirm/src/Popconfirm.d.ts +3056 -0
- package/dist/components/Popconfirm/src/props.d.ts +872 -0
- package/dist/components/Popconfirm/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Popconfirm/src/types.d.ts +5 -0
- package/dist/components/Popconfirm/src/useCssVars.d.ts +11 -0
- package/dist/components/Popconfirm/styles/_common.d.ts +4 -0
- package/dist/components/Popconfirm/styles/dark.d.ts +4 -0
- package/dist/components/Popconfirm/styles/index.d.ts +2 -0
- package/dist/components/Popconfirm/styles/light.d.ts +4 -0
- package/dist/components/Popover/index.d.ts +4 -0
- package/dist/components/Popover/src/Popover.d.ts +386 -0
- package/dist/components/Popover/src/props.d.ts +179 -0
- package/dist/components/Popover/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Popover/src/types.d.ts +5 -0
- package/dist/components/Popover/styles/_common.d.ts +2 -0
- package/dist/components/Popover/styles/dark.d.ts +2 -0
- package/dist/components/Popover/styles/index.d.ts +2 -0
- package/dist/components/Popover/styles/light.d.ts +2 -0
- package/dist/components/Progress/index.d.ts +4 -0
- package/dist/components/Progress/src/Progress.d.ts +473 -0
- package/dist/components/Progress/src/ProgressCircle.d.ts +7 -0
- package/dist/components/Progress/src/ProgressCommon.d.ts +5 -0
- package/dist/components/Progress/src/ProgressDashboard.d.ts +4 -0
- package/dist/components/Progress/src/ProgressLine.d.ts +4 -0
- package/dist/components/Progress/src/props.d.ts +150 -0
- package/dist/components/Progress/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Progress/src/types.d.ts +8 -0
- package/dist/components/Progress/src/useCssVars.d.ts +21 -0
- package/dist/components/Progress/styles/_common.d.ts +4 -0
- package/dist/components/Progress/styles/dark.d.ts +4 -0
- package/dist/components/Progress/styles/index.d.ts +2 -0
- package/dist/components/Progress/styles/light.d.ts +4 -0
- package/dist/components/Radio/index.d.ts +4 -0
- package/dist/components/Radio/src/Radio.vue.d.ts +835 -0
- package/dist/components/Radio/src/props.d.ts +163 -0
- package/dist/components/Radio/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Radio/src/types.d.ts +3 -0
- package/dist/components/Radio/src/useCssVars.d.ts +10 -0
- package/dist/components/Radio/styles/_common.d.ts +4 -0
- package/dist/components/Radio/styles/dark.d.ts +4 -0
- package/dist/components/Radio/styles/index.d.ts +2 -0
- package/dist/components/Radio/styles/light.d.ts +4 -0
- package/dist/components/RadioGroup/index.d.ts +3 -0
- package/dist/components/RadioGroup/src/RadioGroup.vue.d.ts +1933 -0
- package/dist/components/RadioGroup/src/props.d.ts +173 -0
- package/dist/components/RadioGroup/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/RadioGroup/src/types.d.ts +3 -0
- package/dist/components/Slider/index.d.ts +4 -0
- package/dist/components/Slider/src/Slider.vue.d.ts +7960 -0
- package/dist/components/Slider/src/props.d.ts +158 -0
- package/dist/components/Slider/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Slider/src/types.d.ts +3 -0
- package/dist/components/Slider/src/useCssVars.d.ts +13 -0
- package/dist/components/Slider/styles/_common.d.ts +4 -0
- package/dist/components/Slider/styles/dark.d.ts +4 -0
- package/dist/components/Slider/styles/index.d.ts +2 -0
- package/dist/components/Slider/styles/light.d.ts +4 -0
- package/dist/components/Steps/index.d.ts +4 -0
- package/dist/components/Steps/src/Steps.d.ts +262 -0
- package/dist/components/Steps/src/props.d.ts +130 -0
- package/dist/components/Steps/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Steps/src/types.d.ts +3 -0
- package/dist/components/Steps/src/useCssVars.d.ts +11 -0
- package/dist/components/Steps/styles/_common.d.ts +4 -0
- package/dist/components/Steps/styles/dark.d.ts +4 -0
- package/dist/components/Steps/styles/index.d.ts +2 -0
- package/dist/components/Steps/styles/light.d.ts +4 -0
- package/dist/components/SvgIcon/index.d.ts +5 -0
- package/dist/components/SvgIcon/src/SvgIcon.vue.d.ts +8 -0
- package/dist/components/SvgIcon/src/hook.d.ts +6 -0
- package/dist/components/SvgIcon/src/props.d.ts +7 -0
- package/dist/components/SvgIcon/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/SvgIcon/src/types.d.ts +5 -0
- package/dist/components/SvgIcon/types.d.ts +11 -0
- package/dist/components/Switch/index.d.ts +4 -0
- package/dist/components/Switch/src/Switch.vue.d.ts +854 -0
- package/dist/components/Switch/src/props.d.ts +174 -0
- package/dist/components/Switch/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Switch/src/types.d.ts +3 -0
- package/dist/components/Switch/src/useCssVars.d.ts +10 -0
- package/dist/components/Switch/styles/_common.d.ts +4 -0
- package/dist/components/Switch/styles/dark.d.ts +4 -0
- package/dist/components/Switch/styles/index.d.ts +2 -0
- package/dist/components/Switch/styles/light.d.ts +4 -0
- package/dist/components/Tabs/index.d.ts +4 -0
- package/dist/components/Tabs/src/Tabs.vue.d.ts +1898 -0
- package/dist/components/Tabs/src/props.d.ts +327 -0
- package/dist/components/Tabs/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Tabs/src/types.d.ts +5 -0
- package/dist/components/Tabs/src/useCssVars.d.ts +49 -0
- package/dist/components/Tabs/styles/_common.d.ts +4 -0
- package/dist/components/Tabs/styles/dark.d.ts +4 -0
- package/dist/components/Tabs/styles/index.d.ts +2 -0
- package/dist/components/Tabs/styles/light.d.ts +4 -0
- package/dist/components/Tag/index.d.ts +4 -0
- package/dist/components/Tag/src/Tag.vue.d.ts +1685 -0
- package/dist/components/Tag/src/props.d.ts +310 -0
- package/dist/components/Tag/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Tag/src/types.d.ts +3 -0
- package/dist/components/Tag/src/useCssVars.d.ts +8 -0
- package/dist/components/Tag/styles/_common.d.ts +4 -0
- package/dist/components/Tag/styles/dark.d.ts +4 -0
- package/dist/components/Tag/styles/index.d.ts +2 -0
- package/dist/components/Tag/styles/light.d.ts +4 -0
- package/dist/components/Tooltip/index.d.ts +4 -0
- package/dist/components/Tooltip/src/Tooltip.d.ts +430 -0
- package/dist/components/Tooltip/src/props.d.ts +201 -0
- package/dist/components/Tooltip/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Tooltip/src/types.d.ts +5 -0
- package/dist/components/Tooltip/styles/_common.d.ts +2 -0
- package/dist/components/Tooltip/styles/dark.d.ts +2 -0
- package/dist/components/Tooltip/styles/index.d.ts +2 -0
- package/dist/components/Tooltip/styles/light.d.ts +2 -0
- package/dist/components/Transfer/index.d.ts +4 -0
- package/dist/components/Transfer/src/Transfer.d.ts +2367 -0
- package/dist/components/Transfer/src/Transfer1.d.ts +2367 -0
- package/dist/components/Transfer/src/props.d.ts +1180 -0
- package/dist/components/Transfer/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Transfer/src/styles/index.cssr1.d.ts +2 -0
- package/dist/components/Transfer/src/types.d.ts +3 -0
- package/dist/components/Transfer/src/useCssVars.d.ts +12 -0
- package/dist/components/Transfer/styles/_common.d.ts +4 -0
- package/dist/components/Transfer/styles/dark.d.ts +4 -0
- package/dist/components/Transfer/styles/index.d.ts +2 -0
- package/dist/components/Transfer/styles/light.d.ts +4 -0
- package/dist/components/Tree/index.d.ts +4 -0
- package/dist/components/Tree/src/Tree.d.ts +767 -0
- package/dist/components/Tree/src/props.d.ts +362 -0
- package/dist/components/Tree/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/Tree/src/types.d.ts +5 -0
- package/dist/components/Tree/styles/_common.d.ts +2 -0
- package/dist/components/Tree/styles/dark.d.ts +2 -0
- package/dist/components/Tree/styles/index.d.ts +2 -0
- package/dist/components/Tree/styles/light.d.ts +2 -0
- package/dist/components/TreeSelect/index.d.ts +4 -0
- package/dist/components/TreeSelect/src/TreeSelect.d.ts +1378 -0
- package/dist/components/TreeSelect/src/props.d.ts +673 -0
- package/dist/components/TreeSelect/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/TreeSelect/src/types.d.ts +5 -0
- package/dist/components/TreeSelect/styles/_common.d.ts +2 -0
- package/dist/components/TreeSelect/styles/dark.d.ts +2 -0
- package/dist/components/TreeSelect/styles/index.d.ts +2 -0
- package/dist/components/TreeSelect/styles/light.d.ts +2 -0
- package/dist/components/index.d.ts +37 -0
- package/dist/components/select/index.d.ts +4 -0
- package/dist/components/select/src/Select.d.ts +2717 -0
- package/dist/components/select/src/props.d.ts +593 -0
- package/dist/components/select/src/styles/index.cssr.d.ts +2 -0
- package/dist/components/select/src/types.d.ts +5 -0
- package/dist/components/select/src/useCssVars.d.ts +13 -0
- package/dist/components/select/styles/_common.d.ts +4 -0
- package/dist/components/select/styles/dark.d.ts +4 -0
- package/dist/components/select/styles/index.d.ts +2 -0
- package/dist/components/select/styles/light.d.ts +4 -0
- package/dist/config/index.d.ts +2 -0
- package/dist/config/themes/dark.d.ts +2 -0
- package/dist/config/themes/index.d.ts +2 -0
- package/dist/config/themes/light.d.ts +2 -0
- package/dist/config/themesExtend/dark.d.ts +2 -0
- package/dist/config/themesExtend/index.d.ts +2 -0
- package/dist/config/themesExtend/light.d.ts +2 -0
- package/dist/index.d.ts +10 -0
- package/dist/styles/index.d.ts +1 -0
- package/dist/styles/vars/Base/dark.d.ts +3 -0
- package/dist/styles/vars/Base/index.d.ts +3 -0
- package/dist/styles/vars/Base/light.d.ts +59 -0
- package/dist/styles/vars/colors/dark.d.ts +3 -0
- package/dist/styles/vars/colors/index.d.ts +3 -0
- package/dist/styles/vars/colors/light.d.ts +26 -0
- package/dist/styles/vars/index.d.ts +2 -0
- package/package.json +69 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface CascaderExtendThemeOverrides {
|
|
2
|
+
columnPadding?: string;
|
|
3
|
+
arrowColorDisabled?: string;
|
|
4
|
+
arrowColorActive?: string;
|
|
5
|
+
arrowColorHover?: string;
|
|
6
|
+
optionTextColorHover?: string;
|
|
7
|
+
optionTextColorActive?: string;
|
|
8
|
+
optionBorderRadius?: string;
|
|
9
|
+
borderDisabled?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export interface InputNumberExtendThemeOverrides {
|
|
2
|
+
innerControlsFontSizeLarge?: string;
|
|
3
|
+
innerControlsFontSizeMedium?: string;
|
|
4
|
+
innerControlsFontSizeSmall?: string;
|
|
5
|
+
innerControlsFontSizeTiny?: string;
|
|
6
|
+
innerControlsIconSizeLarge?: string;
|
|
7
|
+
innerControlsIconSizeMedium?: string;
|
|
8
|
+
innerControlsIconSizeSmall?: string;
|
|
9
|
+
innerControlsIconSizeTiny?: string;
|
|
10
|
+
innerControlsWidthLarge?: string;
|
|
11
|
+
innerControlsWidthMedium?: string;
|
|
12
|
+
innerControlsWidthSmall?: string;
|
|
13
|
+
innerControlsWidthTiny?: string;
|
|
14
|
+
innerControlsHeightLarge?: string;
|
|
15
|
+
innerControlsHeightMedium?: string;
|
|
16
|
+
innerControlsHeightSmall?: string;
|
|
17
|
+
innerControlsHeightTiny?: string;
|
|
18
|
+
innerControlsBorderRadiusLarge?: string;
|
|
19
|
+
innerControlsBorderRadiusMedium?: string;
|
|
20
|
+
innerControlsBorderRadiusSmall?: string;
|
|
21
|
+
innerControlsBorderRadiusTiny?: string;
|
|
22
|
+
innerControlsColor?: string;
|
|
23
|
+
innerControlsColorDisabled?: string;
|
|
24
|
+
innerControlsTextColor?: string;
|
|
25
|
+
innerControlsTextColorDisabled?: string;
|
|
26
|
+
outerControlsColor?: string;
|
|
27
|
+
outerControlsColorDisabled?: string;
|
|
28
|
+
outerControlsTextColor?: string;
|
|
29
|
+
outerControlsTextColorDisabled?: string;
|
|
30
|
+
outerControlsBorder?: string;
|
|
31
|
+
outerControlsColorHover?: string;
|
|
32
|
+
outerControlsBorderDisabled?: string;
|
|
33
|
+
outerControlsBorderRadiusLarge?: string;
|
|
34
|
+
outerControlsBorderRadiusMedium?: string;
|
|
35
|
+
outerControlsBorderRadiusSmall?: string;
|
|
36
|
+
outerControlsBorderRadiusTiny?: string;
|
|
37
|
+
outerControlsMarginLarge?: string;
|
|
38
|
+
outerControlsMarginMedium?: string;
|
|
39
|
+
outerControlsMarginSmall?: string;
|
|
40
|
+
outerControlsMarginTiny?: string;
|
|
41
|
+
outerControlsWidthLarge?: string;
|
|
42
|
+
outerControlsWidthMedium?: string;
|
|
43
|
+
outerControlsWidthSmall?: string;
|
|
44
|
+
outerControlsWidthTiny?: string;
|
|
45
|
+
outerControlsFontSizeLarge?: string;
|
|
46
|
+
outerControlsFontSizeMedium?: string;
|
|
47
|
+
outerControlsFontSizeSmall?: string;
|
|
48
|
+
outerControlsFontSizeTiny?: string;
|
|
49
|
+
outerControlsIconSizeLarge?: string;
|
|
50
|
+
outerControlsIconSizeMedium?: string;
|
|
51
|
+
outerControlsIconSizeSmall?: string;
|
|
52
|
+
outerControlsIconSizeTiny?: string;
|
|
53
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface PaginationExtendThemeOverrides {
|
|
2
|
+
quickJumperHeightSmall?: string;
|
|
3
|
+
quickJumperHeightMedium?: string;
|
|
4
|
+
quickJumperHeightLarge?: string;
|
|
5
|
+
quickJumperPaddingSmall?: string;
|
|
6
|
+
quickJumperPaddingMedium?: string;
|
|
7
|
+
quickJumperPaddingLarge?: string;
|
|
8
|
+
quickJumperMarginSmall?: string;
|
|
9
|
+
quickJumperMarginMedium?: string;
|
|
10
|
+
quickJumperMarginLarge?: string;
|
|
11
|
+
quickJumperBorderRadiusSmall?: string;
|
|
12
|
+
quickJumperBorderRadiusMedium?: string;
|
|
13
|
+
quickJumperBorderRadiusLarge?: string;
|
|
14
|
+
quickJumperFontSizeSmall?: string;
|
|
15
|
+
quickJumperFontSizeMedium?: string;
|
|
16
|
+
quickJumperFontSizeLarge?: string;
|
|
17
|
+
quickJumperTextColor?: string;
|
|
18
|
+
quickJumperColor?: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export interface ProgressExtendThemeOverrides {
|
|
2
|
+
fontSizeLineSmallOutside?: string;
|
|
3
|
+
fontSizeLineMediumOutside?: string;
|
|
4
|
+
fontSizeLineLargeOutside?: string;
|
|
5
|
+
fontSizeLineSmallInside?: string;
|
|
6
|
+
fontSizeLineMediumInside?: string;
|
|
7
|
+
fontSizeLineLargeInside?: string;
|
|
8
|
+
iconSizeLineSmallOutside?: string;
|
|
9
|
+
iconSizeLineMediumOutside?: string;
|
|
10
|
+
iconSizeLineLargeOutside?: string;
|
|
11
|
+
iconSizeLineSmallInside?: string;
|
|
12
|
+
iconSizeLineMediumInside?: string;
|
|
13
|
+
iconSizeLineLargeInside?: string;
|
|
14
|
+
fontWeightLine?: string;
|
|
15
|
+
fontWeightLineStatus?: string;
|
|
16
|
+
railHeightLineSmallOutside?: string;
|
|
17
|
+
railHeightLineMediumOutside?: string;
|
|
18
|
+
railHeightLineLargeOutside?: string;
|
|
19
|
+
railHeightLineSmallInside?: string;
|
|
20
|
+
railHeightLineMediumInside?: string;
|
|
21
|
+
railHeightLineLargeInside?: string;
|
|
22
|
+
circleWidthSmall?: string;
|
|
23
|
+
circleWidthMedium?: string;
|
|
24
|
+
circleWidthLarge?: string;
|
|
25
|
+
dashboardIconSizeSmall?: string;
|
|
26
|
+
dashboardIconSizeMedium?: string;
|
|
27
|
+
dashboardIconSizeLarge?: string;
|
|
28
|
+
dashboardIconColor?: string;
|
|
29
|
+
dashboardTextSizeSmall?: string;
|
|
30
|
+
dashboardTextSizeMedium?: string;
|
|
31
|
+
dashboardTextSizeLarge?: string;
|
|
32
|
+
dashboardTextColor?: string;
|
|
33
|
+
dashboardTipSizeSmall?: string;
|
|
34
|
+
dashboardTipSizeMedium?: string;
|
|
35
|
+
dashboardTipSizeLarge?: string;
|
|
36
|
+
dashboardTipColor?: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface SliderExtendThemeOverrides {
|
|
2
|
+
extendTextTextColor?: string;
|
|
3
|
+
extendTextFontSizeSmall?: string;
|
|
4
|
+
extendTextFontSizeMedium?: string;
|
|
5
|
+
inputWidthSmall?: string;
|
|
6
|
+
inputWidthMedium?: string;
|
|
7
|
+
inputMarginSmall?: string;
|
|
8
|
+
inputMarginMedium?: string;
|
|
9
|
+
inputGapSmall?: string;
|
|
10
|
+
inputGapMedium?: string;
|
|
11
|
+
inputDividerColor?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface StepsExtendThemeOverrides {
|
|
2
|
+
stepDescriptionFontSizeSmall?: string;
|
|
3
|
+
stepDescriptionFontSizeMedium?: string;
|
|
4
|
+
stepGapSmall?: string;
|
|
5
|
+
stepGapMedium?: string;
|
|
6
|
+
splitorWidthSmall?: string;
|
|
7
|
+
splitorWidthMedium?: string;
|
|
8
|
+
borderWidthSmall?: string;
|
|
9
|
+
borderWidthMedium?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface SwitchExtendThemeOverrides {
|
|
2
|
+
textMarginSmall?: string;
|
|
3
|
+
textMarginMedium?: string;
|
|
4
|
+
textMarginLarge?: string;
|
|
5
|
+
railColorDisabled?: string;
|
|
6
|
+
railColorActiveDisabled?: string;
|
|
7
|
+
buttonColorDisabled?: string;
|
|
8
|
+
buttonColorActiveDisabled?: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export interface TabsExtendThemeOverrides {
|
|
2
|
+
tabBarActiveHeightSmall?: string;
|
|
3
|
+
tabBarActiveHeightMedium?: string;
|
|
4
|
+
tabBarActiveHeightLarge?: string;
|
|
5
|
+
tabBarActiveBorderRadiusSmall?: string;
|
|
6
|
+
tabBarActiveBorderRadiusMedium?: string;
|
|
7
|
+
tabBarActiveBorderRadiusLarge?: string;
|
|
8
|
+
tabBorderRadiusSmallBodenCard?: string;
|
|
9
|
+
tabBorderRadiusMediumBodenCard?: string;
|
|
10
|
+
tabBorderRadiusLargeBodenCard?: string;
|
|
11
|
+
tabGapSmallBodenCard?: string;
|
|
12
|
+
tabGapMediumBodenCard?: string;
|
|
13
|
+
tabGapLargeBodenCard?: string;
|
|
14
|
+
tabGapSmallBodenCardVertical?: string;
|
|
15
|
+
tabGapMediumBodenCardVertical?: string;
|
|
16
|
+
tabGapLargeBodenCardVertical?: string;
|
|
17
|
+
tabPaddingSmallBodenCard?: string;
|
|
18
|
+
tabPaddingMediumBodenCard?: string;
|
|
19
|
+
tabPaddingLargeBodenCard?: string;
|
|
20
|
+
tabPaddingSmallBodenCardVertical?: string;
|
|
21
|
+
tabPaddingMediumBodenCardVertical?: string;
|
|
22
|
+
tabPaddingLargeBodenCardVertical?: string;
|
|
23
|
+
tabBorderBodenCard?: string;
|
|
24
|
+
tabBorderDisabledBodenCard?: string;
|
|
25
|
+
tabBorderHoverBodenCard?: string;
|
|
26
|
+
tabBorderActiveBodenCard?: string;
|
|
27
|
+
tabBorderActiveDisabledBodenCard?: string;
|
|
28
|
+
tabColorBodenCard?: string;
|
|
29
|
+
tabColorDisabledBodenCard?: string;
|
|
30
|
+
tabColorHoverBodenCard?: string;
|
|
31
|
+
tabColorActiveBodenCard?: string;
|
|
32
|
+
tabColorActiveDisabledBodenCard?: string;
|
|
33
|
+
tabTextColorBodenCard?: string;
|
|
34
|
+
tabTextColorDisabledBodenCard?: string;
|
|
35
|
+
tabTextColorHoverBodenCard?: string;
|
|
36
|
+
tabTextColorActiveBodenCard?: string;
|
|
37
|
+
tabTextColorActiveDisabledBodenCard?: string;
|
|
38
|
+
tabBorderRadiusSmallBodenCardRound?: string;
|
|
39
|
+
tabBorderRadiusMediumBodenCardRound?: string;
|
|
40
|
+
tabBorderRadiusLargeBodenCardRound?: string;
|
|
41
|
+
tabGapSmallBodenCardRound?: string;
|
|
42
|
+
tabGapMediumBodenCardRound?: string;
|
|
43
|
+
tabGapLargeBodenCardRound?: string;
|
|
44
|
+
tabGapSmallBodenCardRoundVertical?: string;
|
|
45
|
+
tabGapMediumBodenCardRoundVertical?: string;
|
|
46
|
+
tabGapLargeBodenCardRoundVertical?: string;
|
|
47
|
+
tabPaddingSmallBodenCardRound?: string;
|
|
48
|
+
tabPaddingMediumBodenCardRound?: string;
|
|
49
|
+
tabPaddingLargeBodenCardRound?: string;
|
|
50
|
+
tabPaddingSmallBodenCardRoundVertical?: string;
|
|
51
|
+
tabPaddingMediumBodenCardRoundVertical?: string;
|
|
52
|
+
tabPaddingLargeBodenCardRoundVertical?: string;
|
|
53
|
+
tabBorderBodenCardRound?: string;
|
|
54
|
+
tabBorderDisabledBodenCardRound?: string;
|
|
55
|
+
tabBorderHoverBodenCardRound?: string;
|
|
56
|
+
tabBorderActiveBodenCardRound?: string;
|
|
57
|
+
tabBorderActiveDisabledBodenCardRound?: string;
|
|
58
|
+
tabColorBodenCardRound?: string;
|
|
59
|
+
tabColorDisabledBodenCardRound?: string;
|
|
60
|
+
tabColorHoverBodenCardRound?: string;
|
|
61
|
+
tabColorActiveBodenCardRound?: string;
|
|
62
|
+
tabColorActiveDisabledBodenCardRound?: string;
|
|
63
|
+
tabTextColorBodenCardRound?: string;
|
|
64
|
+
tabTextColorDisabledBodenCardRound?: string;
|
|
65
|
+
tabTextColorHoverBodenCardRound?: string;
|
|
66
|
+
tabTextColorActiveBodenCardRound?: string;
|
|
67
|
+
tabTextColorActiveDisabledBodenCardRound?: string;
|
|
68
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { ConfigProviderProps } from 'naive-ui';
|
|
3
|
+
import { BodenExtendThemeOverrides } from '../_types/_extendTheme';
|
|
4
|
+
type NaiveConfigProvideContext = {
|
|
5
|
+
mergedThemeOverridesRef: Ref<ConfigProviderProps['themeOverrides']>;
|
|
6
|
+
};
|
|
7
|
+
type BodenConfigProvideContext = {
|
|
8
|
+
mergedExtendThemeOverridesRef: Ref<BodenExtendThemeOverrides>;
|
|
9
|
+
};
|
|
10
|
+
declare function useNaiveConfigProvideContext(): NaiveConfigProvideContext;
|
|
11
|
+
declare function useBodenConfigProvideContext(): BodenConfigProvideContext;
|
|
12
|
+
export { useNaiveConfigProvideContext, useBodenConfigProvideContext };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as BodenUseTheme } from './boden-use-theme';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './multi-themes/index';
|
|
2
|
+
export * from './multi-themes/enum';
|
|
3
|
+
export * from './multi-themes/theme-dark';
|
|
4
|
+
export * from './multi-themes/theme-light';
|
|
5
|
+
export * from './multi-themes/type';
|
|
6
|
+
export * from './tailwind-theme/index';
|
|
7
|
+
export * from './tailwind-theme/type';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { THEME_ENUM } from './enum';
|
|
2
|
+
import { BodenColorsCommonVars, BodenBaseColorsCommonVars } from '../../styles/index';
|
|
3
|
+
import { prefix } from '../../_constant/base';
|
|
4
|
+
import { CamelToKebab } from '../../_types';
|
|
5
|
+
type GenerateCSSVariables<T extends Record<string, string>> = {
|
|
6
|
+
[K in keyof T & string as `--${typeof prefix}-${CamelToKebab<K>}`]: string;
|
|
7
|
+
};
|
|
8
|
+
type BodenThemeColorKeys = GenerateCSSVariables<BodenColorsCommonVars>;
|
|
9
|
+
type BodenThemeBaseColorKeys = GenerateCSSVariables<BodenBaseColorsCommonVars>;
|
|
10
|
+
export type BodenThemeConfig = BodenThemeColorKeys & BodenThemeBaseColorKeys;
|
|
11
|
+
export type ThemeStyle = Record<THEME_ENUM, BodenThemeConfig>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CamelToKebab } from '../../_types';
|
|
2
|
+
import { prefix } from '../../_constant/base';
|
|
3
|
+
import { BodenColorsCommonVars, BodenBaseColorsCommonVars } from '../../styles/index';
|
|
4
|
+
type GenerateTailwindKey<T extends Record<string, string>> = {
|
|
5
|
+
[K in keyof T & string as `${CamelToKebab<K>}`]: `var(--${typeof prefix}-${CamelToKebab<K>})`;
|
|
6
|
+
};
|
|
7
|
+
export type TailwindColorConfig = GenerateTailwindKey<BodenColorsCommonVars>;
|
|
8
|
+
export type TailwindBaseColorConfig = GenerateTailwindKey<BodenBaseColorsCommonVars>;
|
|
9
|
+
export type TailwindConfig = TailwindColorConfig & TailwindBaseColorConfig;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { AlertExtendThemeOverrides } from '../_extendThemeOverrides/Alert';
|
|
2
|
+
import { CascaderExtendThemeOverrides } from '../_extendThemeOverrides/Cascader';
|
|
3
|
+
import { InputGroupLabelExtendThemeOverrides } from '../_extendThemeOverrides/InputGroupLabel';
|
|
4
|
+
import { InputNumberExtendThemeOverrides } from '../_extendThemeOverrides/InputNumber';
|
|
5
|
+
import { LayoutExtendThemeOverrides } from '../_extendThemeOverrides/Layout';
|
|
6
|
+
import { MenuExtendThemeOverrides } from '../_extendThemeOverrides/Menu';
|
|
7
|
+
import { PaginationExtendThemeOverrides } from '../_extendThemeOverrides/Pagination';
|
|
8
|
+
import { PopconfirmExtendThemeOverrides } from '../_extendThemeOverrides/Popconfirm';
|
|
9
|
+
import { ProgressExtendThemeOverrides } from '../_extendThemeOverrides/Progress';
|
|
10
|
+
import { RadioExtendThemeOverrides } from '../_extendThemeOverrides/Radio';
|
|
11
|
+
import { SelectExtendThemeOverrides } from '../_extendThemeOverrides/Select';
|
|
12
|
+
import { SliderExtendThemeOverrides } from '../_extendThemeOverrides/Slider';
|
|
13
|
+
import { StepsExtendThemeOverrides } from '../_extendThemeOverrides/Steps';
|
|
14
|
+
import { SwitchExtendThemeOverrides } from '../_extendThemeOverrides/Switch';
|
|
15
|
+
import { TabsExtendThemeOverrides } from '../_extendThemeOverrides/Tabs';
|
|
16
|
+
import { TagExtendThemeOverrides } from '../_extendThemeOverrides/Tag';
|
|
17
|
+
import { TransferExtendThemeOverrides } from '../_extendThemeOverrides/Transfer';
|
|
18
|
+
export type BodenExtendThemeOverrides = {
|
|
19
|
+
Alert?: AlertExtendThemeOverrides;
|
|
20
|
+
Cascader?: CascaderExtendThemeOverrides;
|
|
21
|
+
InputGroupLabel?: InputGroupLabelExtendThemeOverrides;
|
|
22
|
+
InputNumber?: InputNumberExtendThemeOverrides;
|
|
23
|
+
Layout?: LayoutExtendThemeOverrides;
|
|
24
|
+
Menu?: MenuExtendThemeOverrides;
|
|
25
|
+
Pagination?: PaginationExtendThemeOverrides;
|
|
26
|
+
Popconfirm?: PopconfirmExtendThemeOverrides;
|
|
27
|
+
Progress?: ProgressExtendThemeOverrides;
|
|
28
|
+
Radio?: RadioExtendThemeOverrides;
|
|
29
|
+
Select?: SelectExtendThemeOverrides;
|
|
30
|
+
Slider?: SliderExtendThemeOverrides;
|
|
31
|
+
Steps?: StepsExtendThemeOverrides;
|
|
32
|
+
Switch?: SwitchExtendThemeOverrides;
|
|
33
|
+
Tabs?: TabsExtendThemeOverrides;
|
|
34
|
+
Tag?: TagExtendThemeOverrides;
|
|
35
|
+
Transfer?: TransferExtendThemeOverrides;
|
|
36
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
export interface PartialInternalSelection {
|
|
2
|
+
fontSizeTiny?: string;
|
|
3
|
+
fontSizeSmall?: string;
|
|
4
|
+
fontSizeMedium?: string;
|
|
5
|
+
fontSizeLarge?: string;
|
|
6
|
+
heightTiny?: string;
|
|
7
|
+
heightSmall?: string;
|
|
8
|
+
heightMedium?: string;
|
|
9
|
+
heightLarge?: string;
|
|
10
|
+
borderRadius?: string;
|
|
11
|
+
fontWeight?: string;
|
|
12
|
+
textColor?: string;
|
|
13
|
+
textColorDisabled?: string;
|
|
14
|
+
placeholderColor?: string;
|
|
15
|
+
placeholderColorDisabled?: string;
|
|
16
|
+
color?: string;
|
|
17
|
+
colorDisabled?: string;
|
|
18
|
+
colorActive?: string;
|
|
19
|
+
border?: string;
|
|
20
|
+
borderHover?: string;
|
|
21
|
+
borderActive?: string;
|
|
22
|
+
borderFocus?: string;
|
|
23
|
+
boxShadowHover?: string;
|
|
24
|
+
boxShadowActive?: string;
|
|
25
|
+
boxShadowFocus?: string;
|
|
26
|
+
caretColor?: string;
|
|
27
|
+
arrowColor?: string;
|
|
28
|
+
arrowColorDisabled?: string;
|
|
29
|
+
loadingColor?: string;
|
|
30
|
+
borderWarning?: string;
|
|
31
|
+
borderHoverWarning?: string;
|
|
32
|
+
borderActiveWarning?: string;
|
|
33
|
+
borderFocusWarning?: string;
|
|
34
|
+
boxShadowHoverWarning?: string;
|
|
35
|
+
boxShadowActiveWarning?: string;
|
|
36
|
+
boxShadowFocusWarning?: string;
|
|
37
|
+
colorActiveWarning?: string;
|
|
38
|
+
caretColorWarning?: string;
|
|
39
|
+
borderError?: string;
|
|
40
|
+
borderHoverError?: string;
|
|
41
|
+
borderActiveError?: string;
|
|
42
|
+
borderFocusError?: string;
|
|
43
|
+
boxShadowHoverError?: string;
|
|
44
|
+
boxShadowActiveError?: string;
|
|
45
|
+
boxShadowFocusError?: string;
|
|
46
|
+
colorActiveError?: string;
|
|
47
|
+
caretColorError?: string;
|
|
48
|
+
clearColor?: string;
|
|
49
|
+
clearColorHover?: string;
|
|
50
|
+
clearColorPressed?: string;
|
|
51
|
+
paddingSingle?: string;
|
|
52
|
+
paddingMultiple?: string;
|
|
53
|
+
clearSize?: string;
|
|
54
|
+
arrowSize?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface PartialInternalSelectMenu {
|
|
57
|
+
optionFontSizeTiny?: string;
|
|
58
|
+
optionFontSizeSmall?: string;
|
|
59
|
+
optionFontSizeMedium?: string;
|
|
60
|
+
optionFontSizeLarge?: string;
|
|
61
|
+
optionFontSizeHuge?: string;
|
|
62
|
+
optionHeightTiny?: string;
|
|
63
|
+
optionHeightSmall?: string;
|
|
64
|
+
optionHeightMedium?: string;
|
|
65
|
+
optionHeightLarge?: string;
|
|
66
|
+
optionHeightHuge?: string;
|
|
67
|
+
borderRadius?: string;
|
|
68
|
+
color?: string;
|
|
69
|
+
groupHeaderTextColor?: string;
|
|
70
|
+
actionDividerColor?: string;
|
|
71
|
+
optionTextColor?: string;
|
|
72
|
+
optionTextColorPressed?: string;
|
|
73
|
+
optionTextColorDisabled?: string;
|
|
74
|
+
optionTextColorActive?: string;
|
|
75
|
+
optionOpacityDisabled?: string;
|
|
76
|
+
optionCheckColor?: string;
|
|
77
|
+
optionColorPending?: string;
|
|
78
|
+
optionColorActive?: string;
|
|
79
|
+
optionColorActivePending?: string;
|
|
80
|
+
actionTextColor?: string;
|
|
81
|
+
loadingColor?: string;
|
|
82
|
+
height?: string;
|
|
83
|
+
paddingTiny?: string;
|
|
84
|
+
paddingSmall?: string;
|
|
85
|
+
paddingMedium?: string;
|
|
86
|
+
paddingLarge?: string;
|
|
87
|
+
paddingHuge?: string;
|
|
88
|
+
optionPaddingTiny?: string;
|
|
89
|
+
optionPaddingSmall?: string;
|
|
90
|
+
optionPaddingMedium?: string;
|
|
91
|
+
optionPaddingLarge?: string;
|
|
92
|
+
optionPaddingHuge?: string;
|
|
93
|
+
loadingSize?: string;
|
|
94
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { UnwrapRef } from 'vue';
|
|
2
|
+
export type CamelToKebab<S extends string> = S extends `${infer First}${infer Rest}` ? First extends Lowercase<First> ? `${First}${CamelToKebab<Rest>}` : `-${Lowercase<First>}${CamelToKebab<Rest>}` : S;
|
|
3
|
+
export type ExtractWrappedRef<T> = T extends UnwrapRef<infer R> ? R : never;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare function call(funcs: MaybeArray<() => void>): void;
|
|
2
|
+
declare function call<A1>(funcs: MaybeArray<(a1: A1) => void>, a1: A1): void;
|
|
3
|
+
declare function call<A1, A2>(funcs: MaybeArray<(a1: A1, a2: A2) => void>, a1: A1, a2: A2): void;
|
|
4
|
+
declare function call<A1, A2, A3>(funcs: MaybeArray<(a1: A1, a2: A2, a3: A3) => void>, a1: A1, a2: A2, a3: A3): void;
|
|
5
|
+
declare function call<A1, A2, A3, A4>(funcs: MaybeArray<(a1: A1, a2: A2, a3: A3, a4: A4) => void>, a1: A1, a2: A2, a3: A3, a4: A4): void;
|
|
6
|
+
export { call };
|
|
7
|
+
export type MaybeArray<T> = T | T[];
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const c: import('css-render').createCNode<import('css-render').CSelector>;
|
|
2
|
+
declare const cB: import('css-render').createCNode<string | import('css-render').CLazySelector<string>>, cM: import('css-render').createCNode<string | import('css-render').CLazySelector<string>>, cE: import('css-render').createCNode<string | import('css-render').CLazySelector<string>>;
|
|
3
|
+
declare function createKey<P extends string, S extends string>(prefix: P, suffix: S): S extends "default" ? P : `${P}${Capitalize<S>}`;
|
|
4
|
+
export { c, cB, cM, cE, createKey };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './resolve-slot';
|