@wot-ui/ui 1.0.0 → 2.0.0-alpha.4
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 +21 -0
- package/README.md +134 -0
- package/attributes.json +1 -0
- package/changelog.md +63 -0
- package/common/AbortablePromise.ts +28 -0
- package/common/canvasHelper.ts +49 -0
- package/common/clickoutside.ts +25 -0
- package/common/event.ts +8 -0
- package/common/formatDate.ts +68 -0
- package/common/interceptor.ts +43 -0
- package/common/props.ts +53 -0
- package/common/util.ts +836 -0
- package/components/wd-action-sheet/index.scss +232 -0
- package/components/wd-action-sheet/types.ts +155 -0
- package/components/wd-action-sheet/wd-action-sheet.vue +176 -0
- package/components/wd-avatar/index.scss +150 -0
- package/components/wd-avatar/types.ts +98 -0
- package/components/wd-avatar/wd-avatar.vue +184 -0
- package/components/wd-avatar-group/index.scss +11 -0
- package/components/wd-avatar-group/types.ts +61 -0
- package/components/wd-avatar-group/wd-avatar-group.vue +115 -0
- package/components/wd-backtop/index.scss +67 -0
- package/components/wd-backtop/types.ts +66 -0
- package/components/wd-backtop/wd-backtop.vue +57 -0
- package/components/wd-badge/index.scss +116 -0
- package/components/wd-badge/types.ts +94 -0
- package/components/wd-badge/wd-badge.vue +78 -0
- package/components/wd-button/index.scss +436 -0
- package/components/wd-button/types.ts +204 -0
- package/components/wd-button/wd-button.vue +210 -0
- package/components/wd-calendar/index.scss +97 -0
- package/components/wd-calendar/types.ts +221 -0
- package/components/wd-calendar/wd-calendar.vue +339 -0
- package/components/wd-calendar-view/index.scss +41 -0
- package/components/wd-calendar-view/month/index.scss +144 -0
- package/components/wd-calendar-view/month/month.vue +389 -0
- package/components/wd-calendar-view/month/types.ts +70 -0
- package/components/wd-calendar-view/monthPanel/index.scss +84 -0
- package/components/wd-calendar-view/monthPanel/month-panel.vue +541 -0
- package/components/wd-calendar-view/monthPanel/types.ts +151 -0
- package/components/wd-calendar-view/types.ts +166 -0
- package/components/wd-calendar-view/utils.ts +318 -0
- package/components/wd-calendar-view/wd-calendar-view.vue +117 -0
- package/components/wd-calendar-view/year/index.scss +148 -0
- package/components/wd-calendar-view/year/types.ts +74 -0
- package/components/wd-calendar-view/year/year.vue +206 -0
- package/components/wd-calendar-view/yearPanel/index.scss +42 -0
- package/components/wd-calendar-view/yearPanel/types.ts +96 -0
- package/components/wd-calendar-view/yearPanel/year-panel.vue +249 -0
- package/components/wd-card/index.scss +104 -0
- package/components/wd-card/types.ts +47 -0
- package/components/wd-card/wd-card.vue +38 -0
- package/components/wd-cascader/index.scss +154 -0
- package/components/wd-cascader/types.ts +191 -0
- package/components/wd-cascader/wd-cascader.vue +589 -0
- package/components/wd-cell/index.scss +244 -0
- package/components/wd-cell/types.ts +205 -0
- package/components/wd-cell/wd-cell.vue +172 -0
- package/components/wd-cell-group/index.scss +53 -0
- package/components/wd-cell-group/types.ts +97 -0
- package/components/wd-cell-group/wd-cell-group.vue +48 -0
- package/components/wd-checkbox/index.scss +166 -0
- package/components/wd-checkbox/types.ts +118 -0
- package/components/wd-checkbox/wd-checkbox.vue +216 -0
- package/components/wd-checkbox-group/index.scss +5 -0
- package/components/wd-checkbox-group/types.ts +93 -0
- package/components/wd-checkbox-group/wd-checkbox-group.vue +148 -0
- package/components/wd-circle/index.scss +28 -0
- package/components/wd-circle/types.ts +54 -0
- package/components/wd-circle/wd-circle.vue +306 -0
- package/components/wd-col/index.scss +5 -0
- package/components/wd-col/types.ts +16 -0
- package/components/wd-col/wd-col.vue +83 -0
- package/components/wd-collapse/index.scss +71 -0
- package/components/wd-collapse/types.ts +68 -0
- package/components/wd-collapse/wd-collapse.vue +165 -0
- package/components/wd-collapse-item/index.scss +86 -0
- package/components/wd-collapse-item/types.ts +62 -0
- package/components/wd-collapse-item/wd-collapse-item.vue +184 -0
- package/components/wd-config-provider/index.scss +10 -0
- package/components/wd-config-provider/types.ts +2061 -0
- package/components/wd-config-provider/wd-config-provider.vue +61 -0
- package/components/wd-count-down/index.scss +16 -0
- package/components/wd-count-down/types.ts +58 -0
- package/components/wd-count-down/utils.ts +52 -0
- package/components/wd-count-down/wd-count-down.vue +62 -0
- package/components/wd-count-to/index.scss +25 -0
- package/components/wd-count-to/types.ts +121 -0
- package/components/wd-count-to/wd-count-to.vue +126 -0
- package/components/wd-curtain/index.scss +96 -0
- package/components/wd-curtain/types.ts +82 -0
- package/components/wd-curtain/wd-curtain.vue +172 -0
- package/components/wd-datetime-picker/index.scss +133 -0
- package/components/wd-datetime-picker/types.ts +198 -0
- package/components/wd-datetime-picker/wd-datetime-picker.vue +526 -0
- package/components/wd-datetime-picker-view/types.ts +171 -0
- package/components/wd-datetime-picker-view/util.ts +30 -0
- package/components/wd-datetime-picker-view/wd-datetime-picker-view.vue +402 -0
- package/components/wd-dialog/index.scss +281 -0
- package/components/wd-dialog/index.ts +168 -0
- package/components/wd-dialog/types.ts +452 -0
- package/components/wd-dialog/wd-dialog.vue +586 -0
- package/components/wd-divider/index.scss +122 -0
- package/components/wd-divider/types.ts +50 -0
- package/components/wd-divider/wd-divider.vue +54 -0
- package/components/wd-drop-menu/index.scss +90 -0
- package/components/wd-drop-menu/types.ts +38 -0
- package/components/wd-drop-menu/wd-drop-menu.vue +168 -0
- package/components/wd-drop-menu-item/index.scss +96 -0
- package/components/wd-drop-menu-item/types.ts +93 -0
- package/components/wd-drop-menu-item/wd-drop-menu-item.vue +205 -0
- package/components/wd-empty/index.scss +46 -0
- package/components/wd-empty/types.ts +37 -0
- package/components/wd-empty/wd-empty.vue +47 -0
- package/components/wd-fab/index.scss +124 -0
- package/components/wd-fab/types.ts +119 -0
- package/components/wd-fab/wd-fab.vue +322 -0
- package/components/wd-floating-panel/index.scss +73 -0
- package/components/wd-floating-panel/type.ts +32 -0
- package/components/wd-floating-panel/wd-floating-panel.vue +142 -0
- package/components/wd-form/adapters/zod.ts +56 -0
- package/components/wd-form/index.ts +2 -0
- package/components/wd-form/types.ts +133 -0
- package/components/wd-form/wd-form.vue +121 -0
- package/components/wd-form-item/index.scss +26 -0
- package/components/wd-form-item/types.ts +134 -0
- package/components/wd-form-item/wd-form-item.vue +182 -0
- package/components/wd-gap/index.scss +9 -0
- package/components/wd-gap/types.ts +26 -0
- package/components/wd-gap/wd-gap.vue +38 -0
- package/components/wd-grid/index.scss +11 -0
- package/components/wd-grid/types.ts +97 -0
- package/components/wd-grid/wd-grid.vue +48 -0
- package/components/wd-grid-item/index.scss +187 -0
- package/components/wd-grid-item/types.ts +98 -0
- package/components/wd-grid-item/wd-grid-item.vue +295 -0
- package/components/wd-icon/index.scss +46 -0
- package/components/wd-icon/types.ts +44 -0
- package/components/wd-icon/wd-icon.vue +66 -0
- package/components/wd-image-preview/index.scss +94 -0
- package/components/wd-image-preview/index.ts +95 -0
- package/components/wd-image-preview/types.ts +165 -0
- package/components/wd-image-preview/wd-image-preview.vue +233 -0
- package/components/wd-img/index.scss +82 -0
- package/components/wd-img/types.ts +96 -0
- package/components/wd-img/wd-img.vue +91 -0
- package/components/wd-img-cropper/index.scss +259 -0
- package/components/wd-img-cropper/types.ts +101 -0
- package/components/wd-img-cropper/wd-img-cropper.vue +653 -0
- package/components/wd-index-anchor/index.scss +34 -0
- package/components/wd-index-anchor/type.ts +9 -0
- package/components/wd-index-anchor/wd-index-anchor.vue +55 -0
- package/components/wd-index-bar/index.scss +68 -0
- package/components/wd-index-bar/type.ts +23 -0
- package/components/wd-index-bar/wd-index-bar.vue +157 -0
- package/components/wd-input/index.scss +129 -0
- package/components/wd-input/types.ts +165 -0
- package/components/wd-input/wd-input.vue +237 -0
- package/components/wd-input-number/index.scss +233 -0
- package/components/wd-input-number/types.ts +131 -0
- package/components/wd-input-number/wd-input-number.vue +473 -0
- package/components/wd-keyboard/constants.ts +81 -0
- package/components/wd-keyboard/index.scss +104 -0
- package/components/wd-keyboard/key/index.scss +103 -0
- package/components/wd-keyboard/key/index.vue +84 -0
- package/components/wd-keyboard/key/types.ts +44 -0
- package/components/wd-keyboard/types.ts +138 -0
- package/components/wd-keyboard/wd-keyboard.vue +236 -0
- package/components/wd-loading/index.scss +205 -0
- package/components/wd-loading/types.ts +61 -0
- package/components/wd-loading/wd-loading.vue +70 -0
- package/components/wd-loadmore/index.scss +62 -0
- package/components/wd-loadmore/types.ts +42 -0
- package/components/wd-loadmore/wd-loadmore.vue +68 -0
- package/components/wd-navbar/index.scss +96 -0
- package/components/wd-navbar/types.ts +74 -0
- package/components/wd-navbar/wd-navbar.vue +136 -0
- package/components/wd-navbar-capsule/index.scss +70 -0
- package/components/wd-navbar-capsule/types.ts +11 -0
- package/components/wd-navbar-capsule/wd-navbar-capsule.vue +48 -0
- package/components/wd-notice-bar/index.scss +94 -0
- package/components/wd-notice-bar/types.ts +97 -0
- package/components/wd-notice-bar/wd-notice-bar.vue +270 -0
- package/components/wd-notify/index.scss +114 -0
- package/components/wd-notify/index.ts +63 -0
- package/components/wd-notify/types.ts +130 -0
- package/components/wd-notify/wd-notify.vue +162 -0
- package/components/wd-overlay/index.scss +14 -0
- package/components/wd-overlay/types.ts +42 -0
- package/components/wd-overlay/wd-overlay.vue +55 -0
- package/components/wd-pagination/index.scss +71 -0
- package/components/wd-pagination/types.ts +69 -0
- package/components/wd-pagination/wd-pagination.vue +118 -0
- package/components/wd-password-input/index.scss +134 -0
- package/components/wd-password-input/types.ts +42 -0
- package/components/wd-password-input/wd-password-input.vue +51 -0
- package/components/wd-picker/index.scss +72 -0
- package/components/wd-picker/types.ts +141 -0
- package/components/wd-picker/wd-picker.vue +220 -0
- package/components/wd-picker-view/index.scss +93 -0
- package/components/wd-picker-view/types.ts +145 -0
- package/components/wd-picker-view/useSelection.ts +385 -0
- package/components/wd-picker-view/wd-picker-view.vue +227 -0
- package/components/wd-popover/index.scss +117 -0
- package/components/wd-popover/types.ts +106 -0
- package/components/wd-popover/wd-popover.vue +212 -0
- package/components/wd-popup/index.scss +89 -0
- package/components/wd-popup/types.ts +110 -0
- package/components/wd-popup/wd-popup.vue +174 -0
- package/components/wd-progress/index.scss +155 -0
- package/components/wd-progress/types.ts +94 -0
- package/components/wd-progress/wd-progress.vue +249 -0
- package/components/wd-radio/index.scss +189 -0
- package/components/wd-radio/types.ts +64 -0
- package/components/wd-radio/wd-radio.vue +164 -0
- package/components/wd-radio-group/index.scss +5 -0
- package/components/wd-radio-group/types.ts +70 -0
- package/components/wd-radio-group/wd-radio-group.vue +53 -0
- package/components/wd-rate/index.scss +57 -0
- package/components/wd-rate/types.ts +86 -0
- package/components/wd-rate/wd-rate.vue +168 -0
- package/components/wd-resize/index.scss +31 -0
- package/components/wd-resize/types.ts +14 -0
- package/components/wd-resize/wd-resize.vue +157 -0
- package/components/wd-root-portal/wd-root-portal.vue +77 -0
- package/components/wd-row/index.scss +6 -0
- package/components/wd-row/types.ts +36 -0
- package/components/wd-row/wd-row.vue +88 -0
- package/components/wd-search/index.scss +171 -0
- package/components/wd-search/types.ts +107 -0
- package/components/wd-search/wd-search.vue +198 -0
- package/components/wd-segmented/index.scss +155 -0
- package/components/wd-segmented/types.ts +81 -0
- package/components/wd-segmented/wd-segmented.vue +169 -0
- package/components/wd-select-picker/index.scss +72 -0
- package/components/wd-select-picker/types.ts +72 -0
- package/components/wd-select-picker/wd-select-picker.vue +371 -0
- package/components/wd-sidebar/index.scss +25 -0
- package/components/wd-sidebar/types.ts +34 -0
- package/components/wd-sidebar/wd-sidebar.vue +57 -0
- package/components/wd-sidebar-item/index.scss +91 -0
- package/components/wd-sidebar-item/types.ts +28 -0
- package/components/wd-sidebar-item/wd-sidebar-item.vue +118 -0
- package/components/wd-signature/index.scss +42 -0
- package/components/wd-signature/types.ts +295 -0
- package/components/wd-signature/wd-signature.vue +664 -0
- package/components/wd-skeleton/index.scss +112 -0
- package/components/wd-skeleton/types.ts +124 -0
- package/components/wd-skeleton/wd-skeleton.vue +110 -0
- package/components/wd-slide-verify/index.scss +112 -0
- package/components/wd-slide-verify/types.ts +98 -0
- package/components/wd-slide-verify/wd-slide-verify.vue +222 -0
- package/components/wd-slider/index.scss +485 -0
- package/components/wd-slider/types.ts +166 -0
- package/components/wd-slider/wd-slider.vue +529 -0
- package/components/wd-sort-button/index.scss +126 -0
- package/components/wd-sort-button/types.ts +68 -0
- package/components/wd-sort-button/wd-sort-button.vue +67 -0
- package/components/wd-step/index.scss +366 -0
- package/components/wd-step/types.ts +43 -0
- package/components/wd-step/wd-step.vue +181 -0
- package/components/wd-steps/index.scss +7 -0
- package/components/wd-steps/types.ts +50 -0
- package/components/wd-steps/wd-steps.vue +39 -0
- package/components/wd-sticky/index.scss +9 -0
- package/components/wd-sticky/types.ts +13 -0
- package/components/wd-sticky/wd-sticky.vue +192 -0
- package/components/wd-sticky-box/index.scss +6 -0
- package/components/wd-sticky-box/types.ts +20 -0
- package/components/wd-sticky-box/wd-sticky-box.vue +157 -0
- package/components/wd-swipe-action/index.scss +22 -0
- package/components/wd-swipe-action/types.ts +87 -0
- package/components/wd-swipe-action/wd-swipe-action.vue +320 -0
- package/components/wd-swiper/index.scss +69 -0
- package/components/wd-swiper/types.ts +275 -0
- package/components/wd-swiper/wd-swiper.vue +332 -0
- package/components/wd-swiper-nav/index.scss +179 -0
- package/components/wd-swiper-nav/types.ts +42 -0
- package/components/wd-swiper-nav/wd-swiper-nav.vue +42 -0
- package/components/wd-switch/index.scss +177 -0
- package/components/wd-switch/types.ts +93 -0
- package/components/wd-switch/wd-switch.vue +107 -0
- package/components/wd-tab/index.scss +16 -0
- package/components/wd-tab/types.ts +45 -0
- package/components/wd-tab/wd-tab.vue +99 -0
- package/components/wd-tabbar/index.scss +71 -0
- package/components/wd-tabbar/types.ts +79 -0
- package/components/wd-tabbar/wd-tabbar.vue +109 -0
- package/components/wd-tabbar-item/index.scss +50 -0
- package/components/wd-tabbar-item/types.ts +45 -0
- package/components/wd-tabbar-item/wd-tabbar-item.vue +101 -0
- package/components/wd-table/index.scss +128 -0
- package/components/wd-table/types.ts +160 -0
- package/components/wd-table/wd-table.vue +331 -0
- package/components/wd-table-column/index.scss +15 -0
- package/components/wd-table-column/types.ts +81 -0
- package/components/wd-table-column/wd-table-column.vue +198 -0
- package/components/wd-tabs/index.scss +332 -0
- package/components/wd-tabs/types.ts +155 -0
- package/components/wd-tabs/wd-tabs.vue +508 -0
- package/components/wd-tag/index.scss +325 -0
- package/components/wd-tag/types.ts +90 -0
- package/components/wd-tag/wd-tag.vue +158 -0
- package/components/wd-text/index.scss +52 -0
- package/components/wd-text/types.ts +107 -0
- package/components/wd-text/wd-text.vue +141 -0
- package/components/wd-textarea/index.scss +112 -0
- package/components/wd-textarea/types.ts +151 -0
- package/components/wd-textarea/wd-textarea.vue +212 -0
- package/components/wd-toast/index.scss +92 -0
- package/components/wd-toast/index.ts +97 -0
- package/components/wd-toast/types.ts +190 -0
- package/components/wd-toast/wd-toast.vue +158 -0
- package/components/wd-tooltip/index.scss +77 -0
- package/components/wd-tooltip/types.ts +105 -0
- package/components/wd-tooltip/wd-tooltip.vue +169 -0
- package/components/wd-tour/index.scss +106 -0
- package/components/wd-tour/types.ts +268 -0
- package/components/wd-tour/wd-tour.vue +518 -0
- package/components/wd-transition/index.scss +67 -0
- package/components/wd-transition/types.ts +106 -0
- package/components/wd-transition/wd-transition.vue +238 -0
- package/components/wd-upload/index.scss +204 -0
- package/components/wd-upload/types.ts +390 -0
- package/components/wd-upload/wd-upload.vue +565 -0
- package/components/wd-video-preview/index.scss +54 -0
- package/components/wd-video-preview/index.ts +64 -0
- package/components/wd-video-preview/types.ts +66 -0
- package/components/wd-video-preview/wd-video-preview.vue +141 -0
- package/components/wd-watermark/index.scss +21 -0
- package/components/wd-watermark/types.ts +130 -0
- package/components/wd-watermark/wd-watermark.vue +718 -0
- package/components/wot-ui/wot-ui.vue +5 -0
- package/composables/index.ts +16 -0
- package/composables/useCell.ts +34 -0
- package/composables/useChildren.ts +120 -0
- package/composables/useConfigProvider.ts +45 -0
- package/composables/useCountDown.ts +138 -0
- package/composables/useDeviceInfo.ts +136 -0
- package/composables/useLockScroll.ts +37 -0
- package/composables/useParent.ts +51 -0
- package/composables/usePopover.ts +212 -0
- package/composables/useQueue.ts +52 -0
- package/composables/useRaf.ts +37 -0
- package/composables/useTouch.ts +43 -0
- package/composables/useTranslate.ts +12 -0
- package/composables/useUpload.ts +366 -0
- package/global.d.ts +106 -0
- package/index.ts +6 -0
- package/locale/index.ts +32 -0
- package/locale/lang/ar-SA.ts +150 -0
- package/locale/lang/de-DE.ts +150 -0
- package/locale/lang/en-US.ts +150 -0
- package/locale/lang/es-ES.ts +150 -0
- package/locale/lang/fr-FR.ts +150 -0
- package/locale/lang/ja-JP.ts +150 -0
- package/locale/lang/ko-KR.ts +150 -0
- package/locale/lang/pt-PT.ts +150 -0
- package/locale/lang/ru-RU.ts +150 -0
- package/locale/lang/th-TH.ts +150 -0
- package/locale/lang/tr-TR.ts +155 -0
- package/locale/lang/ug-CN.ts +154 -0
- package/locale/lang/vi-VN.ts +89 -0
- package/locale/lang/zh-CN.ts +154 -0
- package/locale/lang/zh-HK.ts +78 -0
- package/locale/lang/zh-TW.ts +78 -0
- package/package.json +1 -11
- package/styles/iconfont/iconfont.scss +1243 -0
- package/styles/mixin/_config.scss +7 -0
- package/styles/mixin/_function.scss +44 -0
- package/styles/mixin/_mixin.scss +473 -0
- package/styles/theme/base/color.scss +210 -0
- package/styles/theme/base/font.scss +13 -0
- package/styles/theme/base/index.scss +8 -0
- package/styles/theme/base/insets.scss +32 -0
- package/styles/theme/base/number.scss +36 -0
- package/styles/theme/base/opacity.scss +9 -0
- package/styles/theme/base/radius.scss +13 -0
- package/styles/theme/base/stroke.scss +9 -0
- package/styles/theme/base/typography.scss +44 -0
- package/styles/theme/dark.scss +101 -0
- package/styles/theme/index.scss +16 -0
- package/styles/theme/light.scss +101 -0
- package/styles/variable.scss +472 -0
- package/tags.json +1 -0
- package/web-types.json +1 -0
|
@@ -0,0 +1,2061 @@
|
|
|
1
|
+
import type { ExtractPropTypes, PropType, InjectionKey, ComputedRef } from 'vue'
|
|
2
|
+
import { makeStringProp, baseProps } from '../../common/props'
|
|
3
|
+
|
|
4
|
+
export const configProviderProps = {
|
|
5
|
+
...baseProps,
|
|
6
|
+
/**
|
|
7
|
+
* 主题风格,设置为 dark 来开启深色模式,全局生效
|
|
8
|
+
*/
|
|
9
|
+
theme: makeStringProp('light'),
|
|
10
|
+
/**
|
|
11
|
+
* 自定义主题变量
|
|
12
|
+
*/
|
|
13
|
+
themeVars: {
|
|
14
|
+
type: Object as PropType<ConfigProviderThemeVars>,
|
|
15
|
+
default: () => ({})
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export type ConfigProviderProps = ExtractPropTypes<typeof configProviderProps>
|
|
20
|
+
|
|
21
|
+
export type ConfigProviderProvide = {
|
|
22
|
+
themeStyle: ComputedRef<string>
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export const CONFIG_PROVIDER_KEY: InjectionKey<ConfigProviderProvide> = Symbol('wd-config-provider')
|
|
26
|
+
|
|
27
|
+
export type baseThemeVars = {
|
|
28
|
+
baseBlack?: string
|
|
29
|
+
baseTransparent?: string
|
|
30
|
+
baseWhite?: string
|
|
31
|
+
blue1?: string
|
|
32
|
+
blue10?: string
|
|
33
|
+
blue2?: string
|
|
34
|
+
blue3?: string
|
|
35
|
+
blue4?: string
|
|
36
|
+
blue5?: string
|
|
37
|
+
blue6?: string
|
|
38
|
+
blue7?: string
|
|
39
|
+
blue8?: string
|
|
40
|
+
blue9?: string
|
|
41
|
+
blueOpac?: string
|
|
42
|
+
borderExtraStrong?: string
|
|
43
|
+
borderLight?: string
|
|
44
|
+
borderMain?: string
|
|
45
|
+
borderStrong?: string
|
|
46
|
+
borderWhite?: string
|
|
47
|
+
borderZero?: string
|
|
48
|
+
classifyapplicationCyanBackground?: string
|
|
49
|
+
classifyapplicationCyanBorder?: string
|
|
50
|
+
classifyapplicationCyanContent?: string
|
|
51
|
+
classifyapplicationGrapeBackground?: string
|
|
52
|
+
classifyapplicationGrapeBorder?: string
|
|
53
|
+
classifyapplicationGrapeContent?: string
|
|
54
|
+
classifyapplicationPinkBackground?: string
|
|
55
|
+
classifyapplicationPinkBorder?: string
|
|
56
|
+
classifyapplicationPinkContent?: string
|
|
57
|
+
classifyapplicationPurpleBackground?: string
|
|
58
|
+
classifyapplicationPurpleBorder?: string
|
|
59
|
+
classifyapplicationPurpleContent?: string
|
|
60
|
+
classifyapplicationYellowBackground?: string
|
|
61
|
+
classifyapplicationYellowBorder?: string
|
|
62
|
+
classifyapplicationYellowContent?: string
|
|
63
|
+
coolgrey1?: string
|
|
64
|
+
coolgrey10?: string
|
|
65
|
+
coolgrey2?: string
|
|
66
|
+
coolgrey3?: string
|
|
67
|
+
coolgrey4?: string
|
|
68
|
+
coolgrey5?: string
|
|
69
|
+
coolgrey6?: string
|
|
70
|
+
coolgrey7?: string
|
|
71
|
+
coolgrey8?: string
|
|
72
|
+
coolgrey9?: string
|
|
73
|
+
cyan1?: string
|
|
74
|
+
cyan10?: string
|
|
75
|
+
cyan2?: string
|
|
76
|
+
cyan3?: string
|
|
77
|
+
cyan4?: string
|
|
78
|
+
cyan5?: string
|
|
79
|
+
cyan6?: string
|
|
80
|
+
cyan7?: string
|
|
81
|
+
cyan8?: string
|
|
82
|
+
cyan9?: string
|
|
83
|
+
cyanOpac?: string
|
|
84
|
+
dangerClicked?: string
|
|
85
|
+
dangerDisabled?: string
|
|
86
|
+
dangerHover?: string
|
|
87
|
+
dangerMain?: string
|
|
88
|
+
dangerParticular?: string
|
|
89
|
+
dangerSurface?: string
|
|
90
|
+
dividerLight?: string
|
|
91
|
+
dividerMain?: string
|
|
92
|
+
dividerStrong?: string
|
|
93
|
+
dividerWhite?: string
|
|
94
|
+
feedbackAccent?: string
|
|
95
|
+
feedbackActive?: string
|
|
96
|
+
feedbackHover?: string
|
|
97
|
+
filledBottom?: string
|
|
98
|
+
filledContent?: string
|
|
99
|
+
filledExtraStrong?: string
|
|
100
|
+
filledOppo?: string
|
|
101
|
+
filledStrong?: string
|
|
102
|
+
filledZero?: string
|
|
103
|
+
fontWeightBold?: string
|
|
104
|
+
fontWeightLight?: string
|
|
105
|
+
fontWeightMedium?: string
|
|
106
|
+
fontWeightRegular?: string
|
|
107
|
+
fontWeightSemibold?: string
|
|
108
|
+
fontWeightUltraLight?: string
|
|
109
|
+
grape1?: string
|
|
110
|
+
grape10?: string
|
|
111
|
+
grape2?: string
|
|
112
|
+
grape3?: string
|
|
113
|
+
grape4?: string
|
|
114
|
+
grape5?: string
|
|
115
|
+
grape6?: string
|
|
116
|
+
grape7?: string
|
|
117
|
+
grape8?: string
|
|
118
|
+
grape9?: string
|
|
119
|
+
grapeOpac?: string
|
|
120
|
+
green1?: string
|
|
121
|
+
green10?: string
|
|
122
|
+
green2?: string
|
|
123
|
+
green3?: string
|
|
124
|
+
green4?: string
|
|
125
|
+
green5?: string
|
|
126
|
+
green6?: string
|
|
127
|
+
green7?: string
|
|
128
|
+
green8?: string
|
|
129
|
+
green9?: string
|
|
130
|
+
greenOpac?: string
|
|
131
|
+
iconAuxiliary?: string
|
|
132
|
+
iconDisabled?: string
|
|
133
|
+
iconMain?: string
|
|
134
|
+
iconPlaceholder?: string
|
|
135
|
+
iconSecondary?: string
|
|
136
|
+
iconWhite?: string
|
|
137
|
+
lightblue1?: string
|
|
138
|
+
lightblue10?: string
|
|
139
|
+
lightblue2?: string
|
|
140
|
+
lightblue3?: string
|
|
141
|
+
lightblue4?: string
|
|
142
|
+
lightblue5?: string
|
|
143
|
+
lightblue6?: string
|
|
144
|
+
lightblue7?: string
|
|
145
|
+
lightblue8?: string
|
|
146
|
+
lightblue9?: string
|
|
147
|
+
lightblueOpac?: string
|
|
148
|
+
n0?: string
|
|
149
|
+
n05?: string
|
|
150
|
+
n1?: string
|
|
151
|
+
n10?: string
|
|
152
|
+
n11?: string
|
|
153
|
+
n12?: string
|
|
154
|
+
n14?: string
|
|
155
|
+
n15?: string
|
|
156
|
+
n16?: string
|
|
157
|
+
n17?: string
|
|
158
|
+
n18?: string
|
|
159
|
+
n2?: string
|
|
160
|
+
n20?: string
|
|
161
|
+
n22?: string
|
|
162
|
+
n24?: string
|
|
163
|
+
n248?: string
|
|
164
|
+
n26?: string
|
|
165
|
+
n28?: string
|
|
166
|
+
n3?: string
|
|
167
|
+
n32?: string
|
|
168
|
+
n34?: string
|
|
169
|
+
n36?: string
|
|
170
|
+
n375?: string
|
|
171
|
+
n4?: string
|
|
172
|
+
n40?: string
|
|
173
|
+
n44?: string
|
|
174
|
+
n48?: string
|
|
175
|
+
n5?: string
|
|
176
|
+
n50?: string
|
|
177
|
+
n52?: string
|
|
178
|
+
n56?: string
|
|
179
|
+
n6?: string
|
|
180
|
+
n60?: string
|
|
181
|
+
n64?: string
|
|
182
|
+
n8?: string
|
|
183
|
+
n88?: string
|
|
184
|
+
n9?: string
|
|
185
|
+
n98?: string
|
|
186
|
+
neutralgrey1?: string
|
|
187
|
+
neutralgrey10?: string
|
|
188
|
+
neutralgrey2?: string
|
|
189
|
+
neutralgrey3?: string
|
|
190
|
+
neutralgrey4?: string
|
|
191
|
+
neutralgrey5?: string
|
|
192
|
+
neutralgrey6?: string
|
|
193
|
+
neutralgrey7?: string
|
|
194
|
+
neutralgrey8?: string
|
|
195
|
+
neutralgrey9?: string
|
|
196
|
+
nFull?: string
|
|
197
|
+
opac1_02?: string
|
|
198
|
+
opac10_85?: string
|
|
199
|
+
opac2_04?: string
|
|
200
|
+
opac3_08?: string
|
|
201
|
+
opac4_15?: string
|
|
202
|
+
opac5_20?: string
|
|
203
|
+
opac6_30?: string
|
|
204
|
+
opac7_45?: string
|
|
205
|
+
opac7_55?: string
|
|
206
|
+
opac8_65?: string
|
|
207
|
+
opac9_75?: string
|
|
208
|
+
opacfilledLightCover?: string
|
|
209
|
+
opacfilledMainCover?: string
|
|
210
|
+
opacfilledTooltipToastCover?: string
|
|
211
|
+
opacityBackdrop?: string
|
|
212
|
+
opacityDimmer?: string
|
|
213
|
+
opacityDisabled?: string
|
|
214
|
+
opacityMain?: string
|
|
215
|
+
opacityOveylay?: string
|
|
216
|
+
opacwhite1_02?: string
|
|
217
|
+
opacwhite10_85?: string
|
|
218
|
+
opacwhite2_04?: string
|
|
219
|
+
opacwhite3_08?: string
|
|
220
|
+
opacwhite4_15?: string
|
|
221
|
+
opacwhite5_20?: string
|
|
222
|
+
opacwhite6_30?: string
|
|
223
|
+
opacwhite7_45?: string
|
|
224
|
+
opacwhite7_55?: string
|
|
225
|
+
opacwhite8_65?: string
|
|
226
|
+
opacwhite9_75?: string
|
|
227
|
+
orange1?: string
|
|
228
|
+
orange10?: string
|
|
229
|
+
orange2?: string
|
|
230
|
+
orange3?: string
|
|
231
|
+
orange4?: string
|
|
232
|
+
orange5?: string
|
|
233
|
+
orange6?: string
|
|
234
|
+
orange7?: string
|
|
235
|
+
orange8?: string
|
|
236
|
+
orange9?: string
|
|
237
|
+
orangeOpac?: string
|
|
238
|
+
paddingExtraLoose?: string
|
|
239
|
+
paddingExtraSpacious?: string
|
|
240
|
+
paddingExtraTight?: string
|
|
241
|
+
paddingLoose?: string
|
|
242
|
+
paddingMain?: string
|
|
243
|
+
paddingSpacious?: string
|
|
244
|
+
paddingSuperLoose?: string
|
|
245
|
+
paddingSuperSpacious?: string
|
|
246
|
+
paddingSuperTight?: string
|
|
247
|
+
paddingTight?: string
|
|
248
|
+
paddingUltraLoose?: string
|
|
249
|
+
paddingUltraSpacious?: string
|
|
250
|
+
paddingUltraTight?: string
|
|
251
|
+
paddingZero?: string
|
|
252
|
+
pink1?: string
|
|
253
|
+
pink10?: string
|
|
254
|
+
pink2?: string
|
|
255
|
+
pink3?: string
|
|
256
|
+
pink4?: string
|
|
257
|
+
pink5?: string
|
|
258
|
+
pink6?: string
|
|
259
|
+
pink7?: string
|
|
260
|
+
pink8?: string
|
|
261
|
+
pink9?: string
|
|
262
|
+
pinkOpac?: string
|
|
263
|
+
primary1?: string
|
|
264
|
+
primary10?: string
|
|
265
|
+
primary2?: string
|
|
266
|
+
primary3?: string
|
|
267
|
+
primary4?: string
|
|
268
|
+
primary5?: string
|
|
269
|
+
primary6?: string
|
|
270
|
+
primary7?: string
|
|
271
|
+
primary8?: string
|
|
272
|
+
primary9?: string
|
|
273
|
+
purple1?: string
|
|
274
|
+
purple10?: string
|
|
275
|
+
purple2?: string
|
|
276
|
+
purple3?: string
|
|
277
|
+
purple4?: string
|
|
278
|
+
purple5?: string
|
|
279
|
+
purple6?: string
|
|
280
|
+
purple7?: string
|
|
281
|
+
purple8?: string
|
|
282
|
+
purple9?: string
|
|
283
|
+
purpleOpac?: string
|
|
284
|
+
radiusExtraLarge?: string
|
|
285
|
+
radiusLarge?: string
|
|
286
|
+
radiusMain?: string
|
|
287
|
+
radiusRadiusFull?: string
|
|
288
|
+
radiusSmall?: string
|
|
289
|
+
radiusSuperLarge?: string
|
|
290
|
+
radiusUltraLarge?: string
|
|
291
|
+
radiusZero?: string
|
|
292
|
+
red1?: string
|
|
293
|
+
red10?: string
|
|
294
|
+
red2?: string
|
|
295
|
+
red3?: string
|
|
296
|
+
red4?: string
|
|
297
|
+
red5?: string
|
|
298
|
+
red6?: string
|
|
299
|
+
red7?: string
|
|
300
|
+
red8?: string
|
|
301
|
+
red9?: string
|
|
302
|
+
redOpac?: string
|
|
303
|
+
spacingExtraLoose?: string
|
|
304
|
+
spacingExtraSpacious?: string
|
|
305
|
+
spacingExtraTight?: string
|
|
306
|
+
spacingLoose?: string
|
|
307
|
+
spacingMain?: string
|
|
308
|
+
spacingSpacious?: string
|
|
309
|
+
spacingSuperLoose?: string
|
|
310
|
+
spacingSuperSpacious?: string
|
|
311
|
+
spacingSuperTight?: string
|
|
312
|
+
spacingTight?: string
|
|
313
|
+
spacingUltraLoose?: string
|
|
314
|
+
spacingUltraSpacious?: string
|
|
315
|
+
spacingUltraTight?: string
|
|
316
|
+
spacingZero?: string
|
|
317
|
+
strokeBlod?: string
|
|
318
|
+
strokeLight?: string
|
|
319
|
+
strokeMain?: string
|
|
320
|
+
strokeZero?: string
|
|
321
|
+
successClicked?: string
|
|
322
|
+
successDisabled?: string
|
|
323
|
+
successHover?: string
|
|
324
|
+
successMain?: string
|
|
325
|
+
successParticular?: string
|
|
326
|
+
successSurface?: string
|
|
327
|
+
textAuxiliary?: string
|
|
328
|
+
textDisabled?: string
|
|
329
|
+
textMain?: string
|
|
330
|
+
textPlaceholder?: string
|
|
331
|
+
textSecondary?: string
|
|
332
|
+
textWhite?: string
|
|
333
|
+
typographyBodyFontFamily?: string
|
|
334
|
+
typographyBodyFontWeightExtraStrong?: string
|
|
335
|
+
typographyBodyFontWeightMain?: string
|
|
336
|
+
typographyBodyFontWeightStrong?: string
|
|
337
|
+
typographyBodyLineHeightSizeExtraLarge?: string
|
|
338
|
+
typographyBodyLineHeightSizeLarge?: string
|
|
339
|
+
typographyBodyLineHeightSizeMain?: string
|
|
340
|
+
typographyBodyLineHeightSizeSuperLarge?: string
|
|
341
|
+
typographyBodyLineHeightSizeUltraLarge?: string
|
|
342
|
+
typographyBodySizeExtraLarge?: string
|
|
343
|
+
typographyBodySizeLarge?: string
|
|
344
|
+
typographyBodySizeMain?: string
|
|
345
|
+
typographyBodySizeSuperLarge?: string
|
|
346
|
+
typographyBodySizeUltraLarge?: string
|
|
347
|
+
typographyLabelFontFamily?: string
|
|
348
|
+
typographyLabelFontWeightMain?: string
|
|
349
|
+
typographyLabelFontWeightStrong?: string
|
|
350
|
+
typographyLabelLineHeightSizeExtraSmall?: string
|
|
351
|
+
typographyLabelLineHeightSizeLarge?: string
|
|
352
|
+
typographyLabelLineHeightSizeMain?: string
|
|
353
|
+
typographyLabelLineHeightSizeSmall?: string
|
|
354
|
+
typographyLabelLineHeightSizeSuperSmall?: string
|
|
355
|
+
typographyLabelSizeExtraSmall?: string
|
|
356
|
+
typographyLabelSizeLarge?: string
|
|
357
|
+
typographyLabelSizeMain?: string
|
|
358
|
+
typographyLabelSizeSmall?: string
|
|
359
|
+
typographyLabelSizeSuperSmall?: string
|
|
360
|
+
typographyTitleFontFamily?: string
|
|
361
|
+
typographyTitleFontWeightLight?: string
|
|
362
|
+
typographyTitleFontWeightMain?: string
|
|
363
|
+
typographyTitleFontWeightStrong?: string
|
|
364
|
+
typographyTitleLineHeightSizeExtraLarge?: string
|
|
365
|
+
typographyTitleLineHeightSizeLarge?: string
|
|
366
|
+
typographyTitleLineHeightSizeMain?: string
|
|
367
|
+
typographyTitleSizeExtraLarge?: string
|
|
368
|
+
typographyTitleSizeLarge?: string
|
|
369
|
+
typographyTitleSizeMain?: string
|
|
370
|
+
volcano1?: string
|
|
371
|
+
volcano10?: string
|
|
372
|
+
volcano2?: string
|
|
373
|
+
volcano3?: string
|
|
374
|
+
volcano4?: string
|
|
375
|
+
volcano5?: string
|
|
376
|
+
volcano6?: string
|
|
377
|
+
volcano7?: string
|
|
378
|
+
volcano8?: string
|
|
379
|
+
volcano9?: string
|
|
380
|
+
volcanoOpac?: string
|
|
381
|
+
warmgrey1?: string
|
|
382
|
+
warmgrey10?: string
|
|
383
|
+
warmgrey2?: string
|
|
384
|
+
warmgrey3?: string
|
|
385
|
+
warmgrey4?: string
|
|
386
|
+
warmgrey5?: string
|
|
387
|
+
warmgrey6?: string
|
|
388
|
+
warmgrey7?: string
|
|
389
|
+
warmgrey8?: string
|
|
390
|
+
warmgrey9?: string
|
|
391
|
+
warningClicked?: string
|
|
392
|
+
warningDisabled?: string
|
|
393
|
+
warningHover?: string
|
|
394
|
+
warningMain?: string
|
|
395
|
+
warningParticular?: string
|
|
396
|
+
warningSurface?: string
|
|
397
|
+
yellow1?: string
|
|
398
|
+
yellow10?: string
|
|
399
|
+
yellow2?: string
|
|
400
|
+
yellow3?: string
|
|
401
|
+
yellow4?: string
|
|
402
|
+
yellow5?: string
|
|
403
|
+
yellow6?: string
|
|
404
|
+
yellow7?: string
|
|
405
|
+
yellow8?: string
|
|
406
|
+
yellow9?: string
|
|
407
|
+
yellowOpac?: string
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export type actionSheetThemeVars = {
|
|
411
|
+
actionSheetActionBg?: string // 操作项背景色
|
|
412
|
+
actionSheetActionColor?: string // 操作项文字颜色
|
|
413
|
+
actionSheetActionFontSize?: string // 操作项字体大小
|
|
414
|
+
actionSheetActionLineHeight?: string // 操作项行高
|
|
415
|
+
actionSheetActionPadding?: string // 操作项内边距
|
|
416
|
+
actionSheetActiveBg?: string // 激活态背景色
|
|
417
|
+
actionSheetBg?: string // 底部弹层背景色
|
|
418
|
+
actionSheetCancelBg?: string // 取消按钮背景色
|
|
419
|
+
actionSheetCancelColor?: string // 取消按钮文字颜色
|
|
420
|
+
actionSheetCancelFontSize?: string // 取消按钮字体大小
|
|
421
|
+
actionSheetCancelLineHeight?: string // 取消按钮行高
|
|
422
|
+
actionSheetCancelPadding?: string // 取消按钮内边距
|
|
423
|
+
actionSheetCloseColor?: string // 关闭图标颜色
|
|
424
|
+
actionSheetCloseFontSize?: string // 关闭图标尺寸
|
|
425
|
+
actionSheetCloseRight?: string // 关闭图标右侧偏移
|
|
426
|
+
actionSheetDescriptionColor?: string // 描述文本颜色
|
|
427
|
+
actionSheetDescriptionFontSize?: string // 描述文本字体大小
|
|
428
|
+
actionSheetDescriptionLineHeight?: string // 描述文本行高
|
|
429
|
+
actionSheetDescriptionMarginTop?: string // 描述文本顶部外边距
|
|
430
|
+
actionSheetDisabledColor?: string // 禁用态文字颜色
|
|
431
|
+
actionSheetGapBg?: string // 取消按钮与操作项的间隔背景色
|
|
432
|
+
actionSheetGapHeight?: string // 取消按钮顶部外边距
|
|
433
|
+
actionSheetLoadingSize?: string // 加载图标尺寸
|
|
434
|
+
actionSheetPanelBg?: string // 面板区域背景色
|
|
435
|
+
actionSheetPanelImgRadius?: string // 面板图片圆角
|
|
436
|
+
actionSheetPanelImgSize?: string // 面板图片尺寸
|
|
437
|
+
actionSheetPanelImgSpacing?: string // 面板图片外边距
|
|
438
|
+
actionSheetPanelPadding?: string // 单个面板内边距
|
|
439
|
+
actionSheetPanelsPadding?: string // 面板列表内边距
|
|
440
|
+
actionSheetPanelsWrapPadding?: string // 面板容器内边距
|
|
441
|
+
actionSheetPanelTitleColor?: string // 面板标题颜色
|
|
442
|
+
actionSheetPanelTitleFontSize?: string // 面板标题字体大小
|
|
443
|
+
actionSheetPanelTitleLineHeight?: string // 面板标题行高
|
|
444
|
+
actionSheetPanelWidth?: string // 单个面板宽度
|
|
445
|
+
actionSheetRadius?: string // 底部弹层圆角
|
|
446
|
+
actionSheetTitleBg?: string // 标题背景色
|
|
447
|
+
actionSheetTitleColor?: string // 标题文字颜色
|
|
448
|
+
actionSheetTitleFontSize?: string // 标题字体大小
|
|
449
|
+
actionSheetTitleFontWeight?: string // 标题字重
|
|
450
|
+
actionSheetTitleHeight?: string // 标题区域高度
|
|
451
|
+
actionSheetTitleLineHeight?: string // 标题行高
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
export type avatarThemeVars = {
|
|
455
|
+
avatarBg?: string // 头像背景颜色
|
|
456
|
+
avatarBorderRadius?: string // 默认圆角
|
|
457
|
+
avatarBorderRadiusFull?: string // 全圆角
|
|
458
|
+
avatarColor?: string // 文本颜色
|
|
459
|
+
avatarFontSize?: string // 默认文字字号
|
|
460
|
+
avatarFontSizeLarge?: string // 大尺寸文字字号
|
|
461
|
+
avatarFontSizeMedium?: string // 中尺寸文字字号
|
|
462
|
+
avatarFontSizeSmall?: string // 小尺寸文字字号
|
|
463
|
+
avatarFontWeight?: string // 头像文字字重
|
|
464
|
+
avatarIconColor?: string // 图标颜色
|
|
465
|
+
avatarLineHeight?: string // 默认文字行高
|
|
466
|
+
avatarLineHeightLarge?: string // 大尺寸文字行高
|
|
467
|
+
avatarLineHeightMedium?: string // 中尺寸文字行高
|
|
468
|
+
avatarLineHeightSmall?: string // 小尺寸文字行高
|
|
469
|
+
avatarOverlap?: string // 头像重叠距离
|
|
470
|
+
avatarSizeLarge?: string // 大尺寸
|
|
471
|
+
avatarSizeMedium?: string // 中尺寸
|
|
472
|
+
avatarSizeNormal?: string // 默认尺寸
|
|
473
|
+
avatarSizeSmall?: string // 小尺寸
|
|
474
|
+
avatarTextColor?: string // 头像文字颜色
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export type backtopThemeVars = {
|
|
478
|
+
backtopBg?: string // 背景色
|
|
479
|
+
backtopBorderColor?: string // 边框颜色
|
|
480
|
+
backtopColor?: string // 按钮图标颜色
|
|
481
|
+
backtopHeight?: string // 按钮高度
|
|
482
|
+
backtopIconSize?: string // 按钮图标尺寸
|
|
483
|
+
backtopRadius?: string // 方形模式圆角
|
|
484
|
+
backtopRadiusCircle?: string // 圆形模式圆角
|
|
485
|
+
backtopTextColor?: string // 文本颜色
|
|
486
|
+
backtopTextFontSize?: string // 文本字号
|
|
487
|
+
backtopTextLineHeight?: string // 文本行高
|
|
488
|
+
backtopWidth?: string // 按钮宽度
|
|
489
|
+
backtopZIndex?: string // 组件层级
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
export type badgeThemeVars = {
|
|
493
|
+
badgeBorderColor?: string // 徽标边框颜色
|
|
494
|
+
badgeBorderRadius?: string // 默认圆角
|
|
495
|
+
badgeBubbleBorderRadius?: string // 气泡圆角
|
|
496
|
+
badgeColor?: string // 徽标文本颜色
|
|
497
|
+
badgeDangerBg?: string // 危险类型背景色
|
|
498
|
+
badgeDotSize?: string // 圆点尺寸
|
|
499
|
+
badgeFontSize?: string // 徽标文本字号
|
|
500
|
+
badgeFontWeight?: string // 徽标文本字重
|
|
501
|
+
badgeHeight?: string // 徽标高度
|
|
502
|
+
badgeInfoBg?: string // 信息类型背景色
|
|
503
|
+
badgeInfoColor?: string // 信息类型文本颜色
|
|
504
|
+
badgeLineHeight?: string // 徽标文本行高
|
|
505
|
+
badgeMinWidth?: string // 徽标最小宽度
|
|
506
|
+
badgePadding?: string // 徽标内边距
|
|
507
|
+
badgePrimaryBg?: string // 主类型背景色
|
|
508
|
+
badgeSquareBorderRadius?: string // 方形圆角
|
|
509
|
+
badgeSuccessBg?: string // 成功类型背景色
|
|
510
|
+
badgeTransform?: string // 固定定位偏移
|
|
511
|
+
badgeWarningBg?: string // 警告类型背景色
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
export type buttonThemeVars = {
|
|
515
|
+
buttonDangerBg?: string // 危险类型背景色
|
|
516
|
+
buttonDangerBgActive?: string // 危险类型背景激活色
|
|
517
|
+
buttonDangerColor?: string // 危险类型文本色
|
|
518
|
+
buttonDangerColorActive?: string // 危险类型文本激活色
|
|
519
|
+
buttonDangerPlainBg?: string // 危险类型 plain 背景色
|
|
520
|
+
buttonDangerPlainBgActive?: string // 危险类型 plain 背景激活色
|
|
521
|
+
buttonDangerPlainBorder?: string // 危险类型 plain 边框色
|
|
522
|
+
buttonDangerPlainBorderActive?: string // 危险类型 plain 边框激活色
|
|
523
|
+
buttonDisabled?: string // 禁用态透明度
|
|
524
|
+
buttonFontSizeLarge?: string // large 尺寸文字字号
|
|
525
|
+
buttonFontSizeMedium?: string // medium 尺寸文字字号
|
|
526
|
+
buttonFontSizeMini?: string // mini 尺寸文字字号
|
|
527
|
+
buttonFontSizeSmall?: string // small 尺寸文字字号
|
|
528
|
+
buttonInfoBg?: string // 信息类型背景色
|
|
529
|
+
buttonInfoBgActive?: string // 信息类型背景激活色
|
|
530
|
+
buttonInfoColor?: string // 信息类型文本色
|
|
531
|
+
buttonInfoColorActive?: string // 信息类型文本激活色
|
|
532
|
+
buttonInfoPlainBg?: string // 信息类型 plain 背景色
|
|
533
|
+
buttonInfoPlainBgActive?: string // 信息类型 plain 背景激活色
|
|
534
|
+
buttonInfoPlainBorder?: string // 信息类型 plain 边框色
|
|
535
|
+
buttonInfoPlainBorderActive?: string // 信息类型 plain 边框激活色
|
|
536
|
+
buttonLeftRightPaddingLarge?: string // large 尺寸左右内边距
|
|
537
|
+
buttonLeftRightPaddingMedium?: string // medium 尺寸左右内边距
|
|
538
|
+
buttonLeftRightPaddingMini?: string // mini 尺寸左右内边距
|
|
539
|
+
buttonLeftRightPaddingSmall?: string // small 尺寸左右内边距
|
|
540
|
+
buttonLineHeightLarge?: string // large 尺寸文字行高
|
|
541
|
+
buttonLineHeightMedium?: string // medium 尺寸文字行高
|
|
542
|
+
buttonLineHeightMini?: string // mini 尺寸文字行高
|
|
543
|
+
buttonLineHeightSmall?: string // small 尺寸文字行高
|
|
544
|
+
buttonLoadingSize?: string // 加载图标尺寸
|
|
545
|
+
buttonLoadingSpacing?: string // 加载图标与文字间距
|
|
546
|
+
buttonMainColor?: string // 实心按钮默认文本色
|
|
547
|
+
buttonOnlyIconPaddingLarge?: string // large 尺寸仅图标按钮内边距
|
|
548
|
+
buttonOnlyIconPaddingMedium?: string // medium 尺寸仅图标按钮内边距
|
|
549
|
+
buttonOnlyIconPaddingMini?: string // mini 尺寸仅图标按钮内边距
|
|
550
|
+
buttonOnlyIconPaddingSmall?: string // small 尺寸仅图标按钮内边距
|
|
551
|
+
buttonPrimaryBg?: string // 主类型背景色
|
|
552
|
+
buttonPrimaryBgActive?: string // 主类型背景激活色
|
|
553
|
+
buttonPrimaryColor?: string // 主类型文本色
|
|
554
|
+
buttonPrimaryColorActive?: string // 主类型文本激活色
|
|
555
|
+
buttonPrimaryPlainBg?: string // 主类型 plain 背景色
|
|
556
|
+
buttonPrimaryPlainBgActive?: string // 主类型 plain 背景激活色
|
|
557
|
+
buttonPrimaryPlainBorder?: string // 主类型 plain 边框色
|
|
558
|
+
buttonPrimaryPlainBorderActive?: string // 主类型 plain 边框激活色
|
|
559
|
+
buttonRadiusFull?: string // 圆形圆角
|
|
560
|
+
buttonRadiusMain?: string // 默认圆角
|
|
561
|
+
buttonSizeIconLarge?: string // large 尺寸图标字号
|
|
562
|
+
buttonSizeIconMedium?: string // medium 尺寸图标字号
|
|
563
|
+
buttonSizeIconMini?: string // mini 尺寸图标字号
|
|
564
|
+
buttonSizeIconSmall?: string // small 尺寸图标字号
|
|
565
|
+
buttonSpacingBlock?: string // 块级按钮纵向间距
|
|
566
|
+
buttonSpacingLarge?: string // large 尺寸图标与文字间距
|
|
567
|
+
buttonSpacingMedium?: string // medium 尺寸图标与文字间距
|
|
568
|
+
buttonSpacingMini?: string // mini 尺寸图标与文字间距
|
|
569
|
+
buttonSpacingSmall?: string // small 尺寸图标与文字间距
|
|
570
|
+
buttonSuccessBg?: string // 成功类型背景色
|
|
571
|
+
buttonSuccessBgActive?: string // 成功类型背景激活色
|
|
572
|
+
buttonSuccessColor?: string // 成功类型文本色
|
|
573
|
+
buttonSuccessColorActive?: string // 成功类型文本激活色
|
|
574
|
+
buttonSuccessPlainBg?: string // 成功类型 plain 背景色
|
|
575
|
+
buttonSuccessPlainBgActive?: string // 成功类型 plain 背景激活色
|
|
576
|
+
buttonSuccessPlainBorder?: string // 成功类型 plain 边框色
|
|
577
|
+
buttonSuccessPlainBorderActive?: string // 成功类型 plain 边框激活色
|
|
578
|
+
buttonUpDownPaddingLarge?: string // large 尺寸上下内边距
|
|
579
|
+
buttonUpDownPaddingMedium?: string // medium 尺寸上下内边距
|
|
580
|
+
buttonUpDownPaddingMini?: string // mini 尺寸上下内边距
|
|
581
|
+
buttonUpDownPaddingSmall?: string // small 尺寸上下内边距
|
|
582
|
+
buttonWarningBg?: string // 警告类型背景色
|
|
583
|
+
buttonWarningBgActive?: string // 警告类型背景激活色
|
|
584
|
+
buttonWarningColor?: string // 警告类型文本色
|
|
585
|
+
buttonWarningColorActive?: string // 警告类型文本激活色
|
|
586
|
+
buttonWarningPlainBg?: string // 警告类型 plain 背景色
|
|
587
|
+
buttonWarningPlainBgActive?: string // 警告类型 plain 背景激活色
|
|
588
|
+
buttonWarningPlainBorder?: string // 警告类型 plain 边框色
|
|
589
|
+
buttonWarningPlainBorderActive?: string // 警告类型 plain 边框激活色
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export type calendarThemeVars = {
|
|
593
|
+
calendarBg?: string // 日历弹层背景色
|
|
594
|
+
calendarConfirmBorderColor?: string // 确认区域上边框颜色
|
|
595
|
+
calendarConfirmPadding?: string // 确认区域内边距
|
|
596
|
+
calendarRangeFontSize?: string // 范围标签字号
|
|
597
|
+
calendarRangeItemColor?: string // 范围标签项颜色
|
|
598
|
+
calendarRangeItemColorPlaceholder?: string // 占位符颜色
|
|
599
|
+
calendarRangeItemFontSize?: string // 范围标签项字号
|
|
600
|
+
calendarRangeItemFontWeight?: string // 范围标签项字重
|
|
601
|
+
calendarRangeItemLineColor?: string // 范围标签项下划线颜色
|
|
602
|
+
calendarRangeItemLineColorPlaceholder?: string // 范围标签项下划线占位符颜色
|
|
603
|
+
calendarRangeItemLineHeight?: string // 范围标签项行高
|
|
604
|
+
calendarRangeItemPadding?: string // 范围标签项内边距
|
|
605
|
+
calendarRangePadding?: string // 范围标签内边距
|
|
606
|
+
calendarRangeSeparatorColor?: string // 分隔符颜色
|
|
607
|
+
calendarRangeSeparatorHeight?: string // 分隔符高度
|
|
608
|
+
calendarRangeSeparatorMargin?: string // 分隔符水平间距
|
|
609
|
+
calendarRangeSeparatorWidth?: string // 分隔符宽度
|
|
610
|
+
calendarShortcutsPadding?: string // 快捷选项内边距
|
|
611
|
+
calendarTabsPadding?: string // Tabs 内边距
|
|
612
|
+
calendarTabsWidth?: string // Tabs 宽度
|
|
613
|
+
calendarTagSpacingRight?: string // 标签右间距
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
export type calendarViewThemeVars = {
|
|
617
|
+
calendarViewBorderRadiusActive?: string // 激活态圆角
|
|
618
|
+
calendarViewColorActive?: string // 激活态颜色
|
|
619
|
+
calendarViewColorDisabled?: string // 禁用态文字颜色
|
|
620
|
+
calendarViewColorSelected?: string // 选中态文字颜色
|
|
621
|
+
calendarViewControlColorDisabled?: string // 控制栏禁用图标颜色
|
|
622
|
+
calendarViewControlIconColor?: string // 控制栏图标颜色
|
|
623
|
+
calendarViewControlIconSize?: string // 控制栏图标尺寸
|
|
624
|
+
calendarViewControlIconSpacing?: string // 控制栏图标间距
|
|
625
|
+
calendarViewControlsPadding?: string // 面板控制栏内边距
|
|
626
|
+
calendarViewDayColor?: string // 日期单元文字颜色
|
|
627
|
+
calendarViewDayFontSize?: string // 日期单元字号
|
|
628
|
+
calendarViewDayFontWeight?: string // 日期单元字重
|
|
629
|
+
calendarViewDayHeight?: string // 日期单元高度
|
|
630
|
+
calendarViewInfoFontSize?: string // 顶部/底部辅助信息字号
|
|
631
|
+
calendarViewInfoLineHeight?: string // 顶部/底部辅助信息行高
|
|
632
|
+
calendarViewInfoPosition?: string // 顶部/底部辅助信息偏移位置
|
|
633
|
+
calendarViewItemMarginBottom?: string // 日期/月份单元底部间距
|
|
634
|
+
calendarViewItemPadding?: string // 日期/月份容器内边距
|
|
635
|
+
calendarViewMonthFontWeight?: string // 月份单元字重
|
|
636
|
+
calendarViewMonthHeight?: string // 月份单元高度
|
|
637
|
+
calendarViewMonthWidth?: string // 月份单元宽度
|
|
638
|
+
calendarViewPanelTitleColor?: string // 面板标题文字颜色
|
|
639
|
+
calendarViewPanelTitleFontSize?: string // 面板标题字号
|
|
640
|
+
calendarViewPanelTitleFontWeight?: string // 面板标题字重
|
|
641
|
+
calendarViewPanelTitleLineHeight?: string // 面板标题行高
|
|
642
|
+
calendarViewPanelTitleMargin?: string // 面板标题外边距
|
|
643
|
+
calendarViewPanelTitlePadding?: string // 面板标题内边距
|
|
644
|
+
calendarViewRangeBg?: string // 区间态背景色
|
|
645
|
+
calendarViewRangeColor?: string // 区间态文字颜色
|
|
646
|
+
calendarViewTimeBoxShadow?: string // 时间选择区域阴影
|
|
647
|
+
calendarViewTimeLabelBorder?: string // 时间标签分隔边框
|
|
648
|
+
calendarViewTimeLabelHeight?: string // 时间标签高度
|
|
649
|
+
calendarViewTimePickerBg?: string // 时间选择器背景色
|
|
650
|
+
calendarViewTimePickerColor?: string // 时间选择器文字颜色
|
|
651
|
+
calendarViewTimePickerFontSize?: string // 时间选择器字号
|
|
652
|
+
calendarViewWeekColor?: string // 星期文字颜色
|
|
653
|
+
calendarViewWeekFontSize?: string // 星期文字字号
|
|
654
|
+
calendarViewWeekLineHeight?: string // 星期文字行高
|
|
655
|
+
calendarViewWeeksPadding?: string // 星期栏内边距
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
export type cardThemeVars = {
|
|
659
|
+
cardBg?: string // 卡片背景色
|
|
660
|
+
cardBorderColor?: string // 卡片边框颜色
|
|
661
|
+
cardContentBorderColor?: string // 内容区域边框颜色
|
|
662
|
+
cardContentColor?: string // 内容文字颜色
|
|
663
|
+
cardContentFontSize?: string // 内容字号
|
|
664
|
+
cardContentLineHeight?: string // 内容行高
|
|
665
|
+
cardContentPadding?: string // 内容内边距
|
|
666
|
+
cardFooterBorderColor?: string // 底部分割线颜色
|
|
667
|
+
cardFooterPadding?: string // 底部内边距
|
|
668
|
+
cardMarginBottom?: string // 卡片底部间距
|
|
669
|
+
cardMarginHorizontal?: string // 卡片水平方向外边距
|
|
670
|
+
cardRadius?: string // 卡片圆角
|
|
671
|
+
cardShadow?: string // 卡片阴影
|
|
672
|
+
cardShadowHover?: string // 卡片悬浮阴影
|
|
673
|
+
cardTitleColor?: string // 标题颜色
|
|
674
|
+
cardTitleFontSize?: string // 标题字号
|
|
675
|
+
cardTitleFontWeight?: string // 标题字重
|
|
676
|
+
cardTitleLineHeight?: string // 标题行高
|
|
677
|
+
cardTitlePadding?: string // 标题内间距
|
|
678
|
+
cardTransition?: string // 过渡动画
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
export type cascaderThemeVars = {
|
|
682
|
+
cascaderActionRight?: string // 关闭图标右侧偏移
|
|
683
|
+
cascaderBg?: string // 级联选择器弹层背景色
|
|
684
|
+
cascaderConfirmColor?: string // checkStrictly模式确认按钮颜色
|
|
685
|
+
cascaderConfirmFontSize?: string // checkStrictly模式确认按钮字号
|
|
686
|
+
cascaderConfirmFontWeight?: string // checkStrictly模式确认按钮字重
|
|
687
|
+
cascaderConfirmLineHeight?: string // checkStrictly模式确认按钮行高
|
|
688
|
+
cascaderConfirmOpacityDisabled?: string // checkStrictly模式确认按钮禁用透明度
|
|
689
|
+
cascaderListCheckedIconSize?: string // 选中图标尺寸
|
|
690
|
+
cascaderListCheckedIconSpacing?: string // 选中图标与文字间距
|
|
691
|
+
cascaderListHeight?: string // 选项列表高度
|
|
692
|
+
cascaderListItemColor?: string // 选项文字颜色
|
|
693
|
+
cascaderListItemColorChecked?: string // 选项选中态文字颜色
|
|
694
|
+
cascaderListItemFontSize?: string // 选项文字字号
|
|
695
|
+
cascaderListItemFontWeightChecked?: string // 选项选中态文字字重
|
|
696
|
+
cascaderListItemLineHeight?: string // 选项文字行高
|
|
697
|
+
cascaderListItemOpacityDisabled?: string // 选项禁用态透明度
|
|
698
|
+
cascaderListItemPadding?: string // 选项内边距
|
|
699
|
+
cascaderListTipColor?: string // 选项提示文字颜色
|
|
700
|
+
cascaderListTipFontSize?: string // 选项提示文字字号
|
|
701
|
+
cascaderListTipLineHeight?: string // 选项提示文字行高
|
|
702
|
+
cascaderListTipMarginTop?: string // 选项提示顶部外边距
|
|
703
|
+
cascaderLoadingIconSize?: string // loading 图标尺寸
|
|
704
|
+
cascaderLoadingOpacity?: string // loading 状态下选项区透明度
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
export type cellGroupThemeVars = {
|
|
708
|
+
cellGroupBg?: string // 单元格组背景色
|
|
709
|
+
cellGroupFontWeight?: string // 标题文字字重
|
|
710
|
+
cellGroupInsertMargin?: string // 插入模式外边距
|
|
711
|
+
cellGroupInsertRadius?: string // 插入模式圆角
|
|
712
|
+
cellGroupPadding?: string // 标题区域内边距
|
|
713
|
+
cellGroupTitleColor?: string // 标题文字颜色
|
|
714
|
+
cellGroupTitleFontSize?: string // 标题文字字号
|
|
715
|
+
cellGroupValueColor?: string // 右侧辅助文字颜色
|
|
716
|
+
cellGroupValueFontSize?: string // 右侧辅助文字字号
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
export type cellThemeVars = {
|
|
720
|
+
cellArrowColor?: string // 箭头颜色
|
|
721
|
+
cellArrowMarginLeft?: string // 箭头左侧间距
|
|
722
|
+
cellArrowSize?: string // 箭头图标尺寸
|
|
723
|
+
cellBg?: string // 单元格背景色
|
|
724
|
+
cellBgActive?: string // 单元格激活态背景色
|
|
725
|
+
cellBorderColor?: string // 边框颜色
|
|
726
|
+
cellClearColor?: string // 清除图标颜色
|
|
727
|
+
cellIconColor?: string // 图标颜色
|
|
728
|
+
cellIconSize?: string // 图标尺寸
|
|
729
|
+
cellIconSpacingRight?: string // 前缀图标右侧间距
|
|
730
|
+
cellLabelColor?: string // 标签文字颜色
|
|
731
|
+
cellLabelFontSize?: string // 标签字号
|
|
732
|
+
cellLabelFontSizeLarge?: string // 大尺寸标签字号
|
|
733
|
+
cellLabelLineHeight?: string // 标签行高
|
|
734
|
+
cellLabelLineHeightLarge?: string // 大尺寸标签行高
|
|
735
|
+
cellLabelMarginTop?: string // 标签顶部间距
|
|
736
|
+
cellMarginHorizontal?: string // 水平布局左右区域间距
|
|
737
|
+
cellPadding?: string // 单元格内边距
|
|
738
|
+
cellPaddingLarge?: string // 大尺寸单元格内边距
|
|
739
|
+
cellPlaceholderColor?: string // 占位符颜色
|
|
740
|
+
cellPlaceholderFontSize?: string // 占位符字号
|
|
741
|
+
cellPlaceholderLineHeight?: string // 占位符行高
|
|
742
|
+
cellRequiredColor?: string // 必填标记颜色
|
|
743
|
+
cellRequiredFontSize?: string // 必填标记字号
|
|
744
|
+
cellRequiredLineHeight?: string // 必填标记行高
|
|
745
|
+
cellRequiredMargin?: string // 必填标记外边距
|
|
746
|
+
cellTapBg?: string // 点击态背景色
|
|
747
|
+
cellThemeColor?: string // 主题色
|
|
748
|
+
cellTitleColor?: string // 标题文字颜色
|
|
749
|
+
cellTitleFontSize?: string // 标题字号
|
|
750
|
+
cellTitleFontSizeLarge?: string // 大尺寸标题字号
|
|
751
|
+
cellTitleLineHeight?: string // 标题行高
|
|
752
|
+
cellTitleLineHeightLarge?: string // 大尺寸标题行高
|
|
753
|
+
cellValueColor?: string // 值文字颜色
|
|
754
|
+
cellValueFontSize?: string // 值字号
|
|
755
|
+
cellValueFontSizeLarge?: string // 大尺寸值字号
|
|
756
|
+
cellValueLineHeight?: string // 值行高
|
|
757
|
+
cellValueLineHeightLarge?: string // 大尺寸值行高
|
|
758
|
+
cellVerticalPaddingTop?: string // 纵向布局右侧顶部内边距
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
export type checkboxThemeVars = {
|
|
762
|
+
checkboxButtonBg?: string // 按钮模式背景颜色
|
|
763
|
+
checkboxButtonBgChecked?: string // 按钮模式选中状态背景颜色
|
|
764
|
+
checkboxButtonBorderRadius?: string // 按钮圆角大小
|
|
765
|
+
checkboxButtonBorderWidth?: string // 边框宽度
|
|
766
|
+
checkboxButtonFontSize?: string // 按钮模式字号
|
|
767
|
+
checkboxButtonIconColor?: string // 按钮模式图标颜色
|
|
768
|
+
checkboxButtonIconLeft?: string // 按钮模式图标左侧偏移
|
|
769
|
+
checkboxButtonIconRight?: string // 按钮模式图标右侧偏移
|
|
770
|
+
checkboxButtonIconSize?: string // 按钮模式图标尺寸
|
|
771
|
+
checkboxButtonIconTop?: string // 按钮模式图标顶部偏移
|
|
772
|
+
checkboxButtonLineHeight?: string // 按钮模式行高
|
|
773
|
+
checkboxButtonMargin?: string // 按钮模式多个单选框距离
|
|
774
|
+
checkboxButtonMaxWidth?: string // 按钮模式最大宽
|
|
775
|
+
checkboxButtonMinWidth?: string // 按钮模式最小宽
|
|
776
|
+
checkboxButtonPadding?: string // 按钮模式内边距
|
|
777
|
+
checkboxButtonShapeBorderRadius?: string // 按钮模式图标圆角大小
|
|
778
|
+
checkboxButtonShapeLeft?: string // 按钮模式勾角左侧偏移
|
|
779
|
+
checkboxButtonShapeRight?: string // 按钮模式勾角右侧偏移
|
|
780
|
+
checkboxButtonShapeSize?: string // 按钮模式图标容器大小
|
|
781
|
+
checkboxButtonShapeTop?: string // 按钮模式勾角顶部偏移
|
|
782
|
+
checkboxColorChecked?: string // 选中颜色
|
|
783
|
+
checkboxHorizontalMargin?: string // 水平模式多个单选框距离
|
|
784
|
+
checkboxIconSize?: string // 图标尺寸
|
|
785
|
+
checkboxLabelColor?: string // 文字颜色
|
|
786
|
+
checkboxLabelFontSize?: string // 文字字号
|
|
787
|
+
checkboxLabelLineHeight?: string // 文字行高
|
|
788
|
+
checkboxLabelMargin?: string // 文字与图标距离
|
|
789
|
+
checkboxOpacityDisabled?: string // 禁用态透明度
|
|
790
|
+
checkboxUncheckedColor?: string // 未选中图标颜色
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
export type circleThemeVars = {
|
|
794
|
+
circleTextColor?: string // 圆环文字颜色
|
|
795
|
+
circleTextFontSize?: string // 圆环文字字号
|
|
796
|
+
circleTextLineHeight?: string // 圆环文字行高
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
export type collapseItemThemeVars = {
|
|
800
|
+
collapseItemArrowColor?: string // 折叠项箭头颜色
|
|
801
|
+
collapseItemArrowSize?: string // 折叠项箭头尺寸
|
|
802
|
+
collapseItemBodyColor?: string // 折叠项内容文字颜色
|
|
803
|
+
collapseItemBodyFontSize?: string // 折叠项内容文字字号
|
|
804
|
+
collapseItemBodyLineHeight?: string // 折叠项内容文字行高
|
|
805
|
+
collapseItemBodyPadding?: string // 折叠项内容区域内边距
|
|
806
|
+
collapseItemHeaderPadding?: string // 折叠项头部内边距
|
|
807
|
+
collapseItemTitleColor?: string // 折叠项标题文字颜色
|
|
808
|
+
collapseItemTitleFontSize?: string // 折叠项标题文字字号
|
|
809
|
+
collapseItemTitleLineHeight?: string // 折叠项标题文字行高
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
export type collapseThemeVars = {
|
|
813
|
+
collapseArrowColor?: string // 折叠箭头颜色
|
|
814
|
+
collapseArrowSize?: string // 折叠箭头尺寸
|
|
815
|
+
collapseBg?: string // 折叠面板背景颜色
|
|
816
|
+
collapseBodyColor?: string // 折叠内容文字颜色
|
|
817
|
+
collapseBodyFontSize?: string // 折叠内容文字字号
|
|
818
|
+
collapseBodyPadding?: string // 折叠内容区域内边距
|
|
819
|
+
collapseMoreColor?: string // 更多按钮文字颜色
|
|
820
|
+
collapseMoreFontSize?: string // 更多按钮文字字号
|
|
821
|
+
collapseMoreMarginTop?: string // 更多按钮上边距
|
|
822
|
+
collapseMoreTextMarginRight?: string // 更多按钮文字右侧间距
|
|
823
|
+
collapsePadding?: string // 折叠容器左右内边距
|
|
824
|
+
collapseTitleColor?: string // 折叠标题文字颜色
|
|
825
|
+
collapseTitleFontSize?: string // 折叠标题文字字号
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
export type countDownThemeVars = {
|
|
829
|
+
countDownFontSize?: string // 倒计时文本字号
|
|
830
|
+
countDownLineHeight?: string // 倒计时文本行高
|
|
831
|
+
countDownTextColor?: string // 倒计时文本颜色
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
export type countToThemeVars = {
|
|
835
|
+
countToSeparatorTextFontSize?: string // 分隔文本字号
|
|
836
|
+
countToSeparatorTextLineHeight?: string // 分隔文本行高
|
|
837
|
+
countToTextFontSize?: string // 数字主体文本字号
|
|
838
|
+
countToTextLineHeight?: string // 数字主体文本行高
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
export type curtainThemeVars = {
|
|
842
|
+
curtainContentCloseColor?: string // 幕帘关闭图标颜色
|
|
843
|
+
curtainContentCloseInset?: string // 幕帘关闭图标偏移
|
|
844
|
+
curtainContentCloseSize?: string // 幕帘关闭图标尺寸
|
|
845
|
+
curtainContentRadius?: string // 幕帘内容圆角
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
export type datetimePickerThemeVars = {
|
|
849
|
+
datetimePickerActionColor?: string // 操作按钮文字颜色
|
|
850
|
+
datetimePickerActionFontSize?: string // 操作按钮字号
|
|
851
|
+
datetimePickerActionLineHeight?: string // 操作按钮行高
|
|
852
|
+
datetimePickerPopupRadius?: string // 日期时间选择器弹窗圆角
|
|
853
|
+
datetimePickerRangeFontSize?: string // 范围标签字号
|
|
854
|
+
datetimePickerRangeItemColor?: string // 范围标签项颜色
|
|
855
|
+
datetimePickerRangeItemFontSize?: string // 范围标签项字号
|
|
856
|
+
datetimePickerRangeItemFontWeight?: string // 范围标签项字重
|
|
857
|
+
datetimePickerRangeItemLineColor?: string // 范围标签项下划线颜色
|
|
858
|
+
datetimePickerRangeItemLineHeight?: string // 范围标签项行高
|
|
859
|
+
datetimePickerRangeItemLinePlaceholderColor?: string // 范围标签项下划线占位符颜色
|
|
860
|
+
datetimePickerRangeItemPadding?: string // 范围标签项内边距
|
|
861
|
+
datetimePickerRangeItemPlaceholderColor?: string // 占位符颜色
|
|
862
|
+
datetimePickerRangePadding?: string // 范围标签内边距
|
|
863
|
+
datetimePickerRangeSeparatorColor?: string // 分隔符颜色
|
|
864
|
+
datetimePickerRangeSeparatorHeight?: string // 分隔符高度
|
|
865
|
+
datetimePickerRangeSeparatorMargin?: string // 分隔符水平间距
|
|
866
|
+
datetimePickerRangeSeparatorWidth?: string // 分隔符宽度
|
|
867
|
+
datetimePickerTitleColor?: string // 标题文字颜色
|
|
868
|
+
datetimePickerTitleFontSize?: string // 标题文字字号
|
|
869
|
+
datetimePickerTitleFontWeight?: string // 标题文字字重
|
|
870
|
+
datetimePickerTitleHeight?: string // 标题区域高度
|
|
871
|
+
datetimePickerTitleLineHeight?: string // 标题文字行高
|
|
872
|
+
datetimePickerTitlePadding?: string // 标题区域内边距
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
export type dialogThemeVars = {
|
|
876
|
+
dialogActionsConfirmFontWeight?: string // 确认按钮字重
|
|
877
|
+
dialogActionsPadding?: string // 操作区内边距
|
|
878
|
+
dialogActionsPaddingVertical?: string // 垂直操作区内边距
|
|
879
|
+
dialogActionsSpacing?: string // 操作按钮水平间距
|
|
880
|
+
dialogActionsSpacingVertical?: string // 操作按钮垂直间距
|
|
881
|
+
dialogActionTextBorder?: string // 文本按钮边框宽度
|
|
882
|
+
dialogActionTextBorderColor?: string // 文本按钮边框颜色
|
|
883
|
+
dialogActionTextButtonPadding?: string // 文本按钮内边距
|
|
884
|
+
dialogBg?: string // 对话框背景色
|
|
885
|
+
dialogBodyElementSpacing?: string // 主体元素间距
|
|
886
|
+
dialogBodyElementSpacingLarge?: string // 主体大间距
|
|
887
|
+
dialogBodyPadding?: string // 对话框主体内边距
|
|
888
|
+
dialogCloseIconColor?: string // 关闭图标颜色
|
|
889
|
+
dialogCloseIconRight?: string // 关闭图标右侧偏移
|
|
890
|
+
dialogCloseIconSize?: string // 关闭图标尺寸
|
|
891
|
+
dialogCloseIconTop?: string // 关闭图标顶部偏移
|
|
892
|
+
dialogContentColor?: string // 内容文字颜色
|
|
893
|
+
dialogContentFontSize?: string // 内容文字字号
|
|
894
|
+
dialogContentInputBg?: string // 输入框背景色
|
|
895
|
+
dialogContentInputErrorColor?: string // 输入错误文字颜色
|
|
896
|
+
dialogContentInputFontSize?: string // 输入错误文字字号
|
|
897
|
+
dialogContentInputLineHeight?: string // 输入错误文字行高
|
|
898
|
+
dialogContentInputPaddingTop?: string // 输入提示顶部内边距
|
|
899
|
+
dialogContentLineHeight?: string // 内容文字行高
|
|
900
|
+
dialogContentMaxHeight?: string // 内容区最大高度
|
|
901
|
+
dialogContentPadding?: string // 内容区内边距
|
|
902
|
+
dialogErrorColor?: string // 危险图标颜色
|
|
903
|
+
dialogIconMarginBottom?: string // 图标底部外边距
|
|
904
|
+
dialogIconSize?: string // 图标尺寸
|
|
905
|
+
dialogImgBorderRadius?: string // 图片圆角
|
|
906
|
+
dialogPrimaryColor?: string // 默认图标颜色
|
|
907
|
+
dialogRadius?: string // 对话框圆角
|
|
908
|
+
dialogScrollbarColor?: string // 滚动条颜色
|
|
909
|
+
dialogScrollbarRadius?: string // 滚动条圆角
|
|
910
|
+
dialogScrollbarWidth?: string // 滚动条宽度
|
|
911
|
+
dialogSuccessColor?: string // 成功图标颜色
|
|
912
|
+
dialogTitleColor?: string // 标题文字颜色
|
|
913
|
+
dialogTitleFontSize?: string // 标题文字字号
|
|
914
|
+
dialogTitleFontWeight?: string // 标题文字字重
|
|
915
|
+
dialogTitleLineHeight?: string // 标题文字行高
|
|
916
|
+
dialogTitleMarginBottom?: string // 标题底部外边距
|
|
917
|
+
dialogWarningColor?: string // 警告图标颜色
|
|
918
|
+
dialogWidth?: string // 对话框宽度
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
export type dividerThemeVars = {
|
|
922
|
+
dividerColorDefault?: string // 默认文字颜色
|
|
923
|
+
dividerColorLine?: string // 分割线颜色
|
|
924
|
+
dividerFontSizeDefault?: string // 默认文字字号
|
|
925
|
+
dividerLineHeight?: string // 分割线厚度
|
|
926
|
+
dividerMargin?: string // 组件垂直外边距
|
|
927
|
+
dividerMarginContentLeft?: string // 内容左侧间距
|
|
928
|
+
dividerMarginContentRight?: string // 内容右侧间距
|
|
929
|
+
dividerMarginDefault?: string // 默认外边距
|
|
930
|
+
dividerMarginVerticalContent?: string // 纵向模式内容间距
|
|
931
|
+
dividerPadding?: string // 组件水平内边距
|
|
932
|
+
dividerPaddingDefault?: string // 默认内边距
|
|
933
|
+
dividerSizeContentLeftWidth?: string // 左对齐模式左侧线段宽度
|
|
934
|
+
dividerSizeContentRightWidth?: string // 右对齐模式右侧线段宽度
|
|
935
|
+
dividerSizeLineHeight?: string // 内容文字行高
|
|
936
|
+
dividerSizeVerticalHeight?: string // 纵向分割线高度
|
|
937
|
+
dividerSizeVerticalLineWidth?: string // 纵向分割线宽度
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
export type dropMenuItemThemeVars = {
|
|
941
|
+
dropItemIconColor?: string // 勾选图标颜色
|
|
942
|
+
dropItemIconSize?: string // 勾选图标尺寸
|
|
943
|
+
dropItemModalBg?: string // 遮罩层背景色
|
|
944
|
+
dropItemOptionPadding?: string // 选项内边距
|
|
945
|
+
dropItemPopupBorderTop?: string // 弹层顶部边线样式
|
|
946
|
+
dropItemTextColor?: string // 选项文字颜色
|
|
947
|
+
dropItemTextColorActive?: string // 选中项文字颜色
|
|
948
|
+
dropItemTextFontSize?: string // 选项文字字号
|
|
949
|
+
dropItemTextLineHeight?: string // 选项文字行高
|
|
950
|
+
dropItemTipColor?: string // 提示文字颜色
|
|
951
|
+
dropItemTipColorActive?: string // 选中项提示文字颜色
|
|
952
|
+
dropItemTipFontSize?: string // 提示文字字号
|
|
953
|
+
dropItemTipLineHeight?: string // 提示文字行高
|
|
954
|
+
dropItemTipSpacing?: string // 提示文字间距
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
export type dropMenuThemeVars = {
|
|
958
|
+
dropMenuArrowColor?: string // 箭头图标颜色
|
|
959
|
+
dropMenuArrowColorActive?: string // 箭头图标激活态颜色
|
|
960
|
+
dropMenuArrowSize?: string // 箭头图标大小
|
|
961
|
+
dropMenuArrowSpacing?: string // 箭头图标间距
|
|
962
|
+
dropMenuHeight?: string // 菜单项高度
|
|
963
|
+
dropMenuListBg?: string // 菜单列表背景色
|
|
964
|
+
dropMenuOptionOpacityDisabled?: string // 菜单项禁用态透明度
|
|
965
|
+
dropMenuOptionPadding?: string // 菜单项内边距
|
|
966
|
+
dropMenuOptionPaddingHorizontal?: string // 菜单项水平内边距
|
|
967
|
+
dropMenuTextColor?: string // 菜单文字颜色
|
|
968
|
+
dropMenuTextColorActive?: string // 菜单激活态文字颜色
|
|
969
|
+
dropMenuTextFontSize?: string // 菜单文字字号
|
|
970
|
+
dropMenuTextFontWeightActive?: string // 菜单激活态字重
|
|
971
|
+
dropMenuTextLineHeight?: string // 菜单文字行高
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
export type emptyThemeVars = {
|
|
975
|
+
emptyIconColor?: string // 图标颜色
|
|
976
|
+
emptyIconSize?: string // 图标尺寸
|
|
977
|
+
emptyPaddingBottom?: string // 组件底部内边距
|
|
978
|
+
emptyTextColor?: string // 文案颜色
|
|
979
|
+
emptyTextFontSize?: string // 文案字号
|
|
980
|
+
emptyTextFontWeight?: string // 文案字重
|
|
981
|
+
emptyTextLineHeight?: string // 文案行高
|
|
982
|
+
emptyTextMarginTop?: string // 文案顶部间距
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
export type fabThemeVars = {
|
|
986
|
+
fabActionsPadding?: string // 动作列表主轴内边距
|
|
987
|
+
fabTransitionOffset?: string // 动作按钮展开/收起动画偏移距离
|
|
988
|
+
fabTriggerHeight?: string // 浮动按钮触发器高度
|
|
989
|
+
fabTriggerIconSize?: string // 浮动按钮触发器图标大小
|
|
990
|
+
fabTriggerWidth?: string // 浮动按钮触发器宽度
|
|
991
|
+
fabZIndex?: string // 浮动按钮层级
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
export type floatingPanelThemeVars = {
|
|
995
|
+
floatingPanelBarBg?: string // 拖拽条背景色
|
|
996
|
+
floatingPanelBarHeight?: string // 拖拽条高度
|
|
997
|
+
floatingPanelBarRadius?: string // 拖拽条圆角
|
|
998
|
+
floatingPanelBarWidth?: string // 拖拽条宽度
|
|
999
|
+
floatingPanelBg?: string // 面板背景色
|
|
1000
|
+
floatingPanelContentBg?: string // 内容区域背景色
|
|
1001
|
+
floatingPanelHeaderHeight?: string // 头部高度
|
|
1002
|
+
floatingPanelRadius?: string // 面板圆角
|
|
1003
|
+
floatingPanelZIndex?: string // 面板 z-index
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
export type formItemThemeVars = {
|
|
1007
|
+
formItemErrorMessageColor?: string // 错误提示文字颜色
|
|
1008
|
+
formItemErrorMessageFontSize?: string // 错误提示文字字号
|
|
1009
|
+
formItemErrorMessageLineHeight?: string // 错误提示文字行高
|
|
1010
|
+
formItemErrorMessageMarginTop?: string // 错误提示顶部外边距
|
|
1011
|
+
formItemPlaceholderColor?: string // 占位符文字颜色
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
export type gridItemThemeVars = {
|
|
1015
|
+
gridItemBg?: string // 网格项背景色
|
|
1016
|
+
gridItemBorderColor?: string // 网格项边框颜色
|
|
1017
|
+
gridItemBorderWidth?: string // 网格项边框宽度
|
|
1018
|
+
gridItemFontSize?: string // 网格项文字字号
|
|
1019
|
+
gridItemHoverBg?: string // 网格项悬浮背景色
|
|
1020
|
+
gridItemIconColor?: string // 网格项图标颜色
|
|
1021
|
+
gridItemIconSize?: string // 网格项图标尺寸
|
|
1022
|
+
gridItemLineHeight?: string // 网格项文字行高
|
|
1023
|
+
gridItemPadding?: string // 网格项内容内边距
|
|
1024
|
+
gridItemTextColor?: string // 网格项文字颜色
|
|
1025
|
+
gridItemTextSpacing?: string // 网格项文字间距
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
export type iconThemeVars = {
|
|
1029
|
+
iconFontSize?: string // 图标字号
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
export type imagePreviewThemeVars = {
|
|
1033
|
+
imagePreviewBg?: string // 预览蒙层背景色
|
|
1034
|
+
imagePreviewCloseColor?: string // 关闭图标颜色
|
|
1035
|
+
imagePreviewCloseMargin?: string // 关闭按钮边距
|
|
1036
|
+
imagePreviewCloseSize?: string // 关闭图标尺寸
|
|
1037
|
+
imagePreviewIndexColor?: string // 页码文字颜色
|
|
1038
|
+
imagePreviewIndexFontSize?: string // 页码文字字号
|
|
1039
|
+
imagePreviewIndexFontWeight?: string // 页码文字字重
|
|
1040
|
+
imagePreviewIndexLineHeight?: string // 页码文字行高
|
|
1041
|
+
imagePreviewIndexMargin?: string // 页码顶部间距
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
export type imgCropperThemeVars = {
|
|
1045
|
+
imgCropperBg?: string // 组件背景色
|
|
1046
|
+
imgCropperCancelColor?: string // 取消按钮文字颜色
|
|
1047
|
+
imgCropperCancelFontSize?: string // 取消按钮字号
|
|
1048
|
+
imgCropperCanvasBg?: string // 画布背景色
|
|
1049
|
+
imgCropperCanvasZIndex?: string // 画布层级
|
|
1050
|
+
imgCropperCornerColor?: string // 角标颜色
|
|
1051
|
+
imgCropperCornerLength?: string // 角标长度
|
|
1052
|
+
imgCropperCornerSize?: string // 角标粗细
|
|
1053
|
+
imgCropperCutBorderColor?: string // 裁剪框边框颜色
|
|
1054
|
+
imgCropperCutZIndex?: string // 裁剪框层级
|
|
1055
|
+
imgCropperFooterBtnMargin?: string // 底部按钮向上边距
|
|
1056
|
+
imgCropperFooterPadding?: string // 底部操作栏内边距
|
|
1057
|
+
imgCropperFooterZIndex?: string // 底部操作栏层级
|
|
1058
|
+
imgCropperGridlineBorderColor?: string // 网格线边框颜色
|
|
1059
|
+
imgCropperIconColor?: string // 旋转图标颜色
|
|
1060
|
+
imgCropperIconSize?: string // 旋转图标大小
|
|
1061
|
+
imgCropperImgZIndex?: string // 图片层级
|
|
1062
|
+
imgCropperOverlayBg?: string // 裁剪区遮罩背景色
|
|
1063
|
+
imgCropperOverlayBgHighlight?: string // 裁剪区遮罩高亮背景色
|
|
1064
|
+
imgCropperOverlayTransitionDuration?: string // 遮罩过渡时长
|
|
1065
|
+
imgCropperWrapperBg?: string // 包裹器蒙层背景色
|
|
1066
|
+
imgCropperZIndex?: string // 组件层级
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
export type imgThemeVars = {
|
|
1070
|
+
imgBorderRadius?: string // 圆形模式圆角
|
|
1071
|
+
imgErrorBg?: string // 失败态背景色
|
|
1072
|
+
imgErrorColor?: string // 失败态文字颜色
|
|
1073
|
+
imgErrorFontSize?: string // 失败态文字字号
|
|
1074
|
+
imgErrorIconColor?: string // 失败态图标颜色
|
|
1075
|
+
imgErrorIconSize?: string // 失败态图标尺寸
|
|
1076
|
+
imgLoadingBg?: string // 加载态背景色
|
|
1077
|
+
imgLoadingColor?: string // 加载态文字颜色
|
|
1078
|
+
imgLoadingFontSize?: string // 加载态文字字号
|
|
1079
|
+
imgLoadingIconColor?: string // 加载态图标颜色
|
|
1080
|
+
imgLoadingIconSize?: string // 加载态图标尺寸
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
export type indexAnchorThemeVars = {
|
|
1084
|
+
indexAnchorBg?: string
|
|
1085
|
+
indexAnchorColor?: string
|
|
1086
|
+
indexAnchorFontSize?: string
|
|
1087
|
+
indexAnchorPadding?: string
|
|
1088
|
+
indexAnchorZIndex?: string
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
export type indexBarThemeVars = {
|
|
1092
|
+
indexBarCurrentIndexBg?: string
|
|
1093
|
+
indexBarCurrentIndexColor?: string
|
|
1094
|
+
indexBarCurrentIndexFontSize?: string
|
|
1095
|
+
indexBarCurrentIndexSize?: string
|
|
1096
|
+
indexBarCurrentIndexZIndex?: string
|
|
1097
|
+
indexBarIndexBgActive?: string
|
|
1098
|
+
indexBarIndexBorderRadius?: string
|
|
1099
|
+
indexBarIndexColor?: string
|
|
1100
|
+
indexBarIndexColorActive?: string
|
|
1101
|
+
indexBarIndexFontSize?: string
|
|
1102
|
+
indexBarIndexFontWeight?: string
|
|
1103
|
+
indexBarIndexHeight?: string
|
|
1104
|
+
indexBarIndexWidth?: string
|
|
1105
|
+
indexBarSidebarRight?: string
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
export type inputNumberThemeVars = {
|
|
1109
|
+
inputNumberActionBg?: string // 操作按钮背景色
|
|
1110
|
+
inputNumberActionBorderRadius?: string // 操作按钮圆角
|
|
1111
|
+
inputNumberActionBorderRadiusFull?: string // 圆角模式操作按钮圆角
|
|
1112
|
+
inputNumberActionColor?: string // 操作按钮颜色
|
|
1113
|
+
inputNumberActionDisabledColor?: string // 操作按钮禁用颜色
|
|
1114
|
+
inputNumberActionDividerBg?: string // 操作按钮分割线颜色
|
|
1115
|
+
inputNumberActionDividerSplitBg?: string // 分离模式分割线颜色
|
|
1116
|
+
inputNumberActionDividerSplitHeight?: string // 分离模式分割线高度
|
|
1117
|
+
inputNumberActionDividerWidth?: string // 操作按钮分割线宽度
|
|
1118
|
+
inputNumberActionPrimaryBg?: string // primary 主题主按钮背景色
|
|
1119
|
+
inputNumberActionPrimaryColor?: string // primary 主题主按钮颜色
|
|
1120
|
+
inputNumberActionPrimarySubColor?: string // primary 主题次按钮颜色
|
|
1121
|
+
inputNumberActionSize?: string // 操作按钮尺寸
|
|
1122
|
+
inputNumberBorderColor?: string // 主题边框颜色
|
|
1123
|
+
inputNumberDisabledOpacity?: string // 禁用态透明度
|
|
1124
|
+
inputNumberFontSize?: string // 输入框文字字号
|
|
1125
|
+
inputNumberIconSize?: string // 图标尺寸
|
|
1126
|
+
inputNumberIconWeight?: string // 图标线宽
|
|
1127
|
+
inputNumberInputBg?: string // 输入框背景色
|
|
1128
|
+
inputNumberInputColor?: string // 输入框文字颜色
|
|
1129
|
+
inputNumberInputHeight?: string // 输入框高度
|
|
1130
|
+
inputNumberInputPadding?: string // 输入框内边距
|
|
1131
|
+
inputNumberInputWidth?: string // 输入框宽度
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
export type keyboardThemeVars = {
|
|
1135
|
+
keyboardBg?: string // 键盘背景色
|
|
1136
|
+
keyboardCloseColor?: string // 关闭按钮文字颜色
|
|
1137
|
+
keyboardCloseFontSize?: string // 关闭按钮字号
|
|
1138
|
+
keyboardCloseOpacityHover?: string // 关闭按钮悬浮透明度
|
|
1139
|
+
keyboardClosePadding?: string // 关闭按钮内边距
|
|
1140
|
+
keyboardColor?: string // 键盘文字颜色
|
|
1141
|
+
keyboardHeaderHeight?: string // 键盘头部高度
|
|
1142
|
+
keyboardPadding?: string // 键盘内容间距
|
|
1143
|
+
keyboardTitleColor?: string // 键盘标题颜色
|
|
1144
|
+
keyboardTitleFontSize?: string // 键盘标题字号
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
export type loadingThemeVars = {
|
|
1148
|
+
loadingColorMain?: string // 主色模式颜色
|
|
1149
|
+
loadingColorNormal?: string // 常规模式颜色
|
|
1150
|
+
loadingColorText?: string // 文本颜色
|
|
1151
|
+
loadingColorWhite?: string // 白色模式颜色
|
|
1152
|
+
loadingSize?: string // 组件基准尺寸
|
|
1153
|
+
loadingSizeHeight?: string // 容器高度
|
|
1154
|
+
loadingSizeWidth?: string // 容器宽度
|
|
1155
|
+
loadingSpinnerAnimationDuration?: string // 旋转动画时长
|
|
1156
|
+
loadingSpinnerCircleRadius?: string // 圆形加载器圆角
|
|
1157
|
+
loadingSpinnerCircleStrokeWidth?: string // 圆形加载器描边宽度
|
|
1158
|
+
loadingSpinnerDotHeight?: string // 条状点高度
|
|
1159
|
+
loadingSpinnerDotRadius?: string // 条状点圆角
|
|
1160
|
+
loadingSpinnerDotsDotRadius?: string // 点状加载器单点圆角
|
|
1161
|
+
loadingSpinnerDotsDotSize?: string // 点状加载器单点尺寸
|
|
1162
|
+
loadingSpinnerDotWidth?: string // 条状点宽度
|
|
1163
|
+
loadingSpinnerPadding?: string // 加载器内边距
|
|
1164
|
+
loadingTextFontSize?: string // 文本字号
|
|
1165
|
+
loadingTextLineHeight?: string // 文本行高
|
|
1166
|
+
loadingTextSpacing?: string // 文本与加载器间距
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
export type loadmoreThemeVars = {
|
|
1170
|
+
loadmoreColor?: string // 默认文字颜色
|
|
1171
|
+
loadmoreFontSize?: string // 默认文字字号
|
|
1172
|
+
loadmoreHeight?: string // 组件最小高度
|
|
1173
|
+
loadmoreLineHeight?: string // 默认文字行高
|
|
1174
|
+
loadmoreLoadingSize?: string // 加载图标尺寸
|
|
1175
|
+
loadmoreLoadingSpacing?: string // 加载图标与文字间距
|
|
1176
|
+
loadmorePadding?: string // 组件内边距
|
|
1177
|
+
loadmoreRefreshColor?: string // 刷新态文字颜色
|
|
1178
|
+
loadmoreRefreshFontSize?: string // 刷新图标字号
|
|
1179
|
+
loadmoreRefreshLineHeight?: string // 刷新图标行高
|
|
1180
|
+
loadmoreRetrySpacing?: string // 重试文案与图标间距
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
export type navbarCapsuleThemeVars = {
|
|
1184
|
+
navbarCapsuleBorderColor?: string // 胶囊边框颜色
|
|
1185
|
+
navbarCapsuleBorderWidth?: string // 胶囊边框宽度
|
|
1186
|
+
navbarCapsuleHeight?: string // 胶囊高度
|
|
1187
|
+
navbarCapsuleIconColor?: string // 胶囊图标颜色
|
|
1188
|
+
navbarCapsuleIconSize?: string // 胶囊图标大小
|
|
1189
|
+
navbarCapsuleRadius?: string // 胶囊圆角
|
|
1190
|
+
navbarCapsuleSperatorColor?: string // 分割线颜色
|
|
1191
|
+
navbarCapsuleSperatorHeight?: string // 分割线高度
|
|
1192
|
+
navbarCapsuleSperatorWidth?: string // 分割线宽度
|
|
1193
|
+
navbarCapsuleWidth?: string // 胶囊宽度
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
export type navbarThemeVars = {
|
|
1197
|
+
navbarArrowSize?: string // 箭头图标大小
|
|
1198
|
+
navbarBg?: string // 导航栏背景色
|
|
1199
|
+
navbarColor?: string // 标题文字颜色
|
|
1200
|
+
navbarDescColor?: string // 描述区域文字颜色
|
|
1201
|
+
navbarDescFontSize?: string // 描述区域字号
|
|
1202
|
+
navbarHeight?: string // 导航栏高度
|
|
1203
|
+
navbarLeftPadding?: string // 左侧内边距
|
|
1204
|
+
navbarOpacityDisabled?: string // 禁用态透明度
|
|
1205
|
+
navbarTitleFontSize?: string // 标题字号
|
|
1206
|
+
navbarTitleFontWeight?: string // 标题字重
|
|
1207
|
+
navbarZIndex?: string // 固定定位层级
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
export type noticeBarThemeVars = {
|
|
1211
|
+
noticeBarDangerBg?: string // 危险态背景色
|
|
1212
|
+
noticeBarDangerColor?: string // 危险态文字颜色
|
|
1213
|
+
noticeBarFontSize?: string // 公告栏文字字号
|
|
1214
|
+
noticeBarInfoBg?: string // 信息态背景色
|
|
1215
|
+
noticeBarInfoColor?: string // 信息态文字颜色
|
|
1216
|
+
noticeBarLineHeight?: string // 公告栏文字行高
|
|
1217
|
+
noticeBarPadding?: string // 公告栏内边距
|
|
1218
|
+
noticeBarPrefixMarginRight?: string // 前缀图标右侧间距
|
|
1219
|
+
noticeBarPrefixSize?: string // 前缀图标大小
|
|
1220
|
+
noticeBarRadius?: string // 公告栏圆角
|
|
1221
|
+
noticeBarSuffixColor?: string // 后缀图标颜色
|
|
1222
|
+
noticeBarSuffixMarginLeft?: string // 后缀图标左侧间距
|
|
1223
|
+
noticeBarSuffixSize?: string // 后缀图标大小
|
|
1224
|
+
noticeBarWarningBg?: string // 警告态背景色
|
|
1225
|
+
noticeBarWarningColor?: string // 警告态文字颜色
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
export type notifyThemeVars = {
|
|
1229
|
+
notifyDangerBg?: string // 危险态背景色
|
|
1230
|
+
notifyDangerColor?: string // 危险态文字颜色
|
|
1231
|
+
notifyFloatingBg?: string // floating 变体背景色
|
|
1232
|
+
notifyFloatingColor?: string // floating 变体文字颜色
|
|
1233
|
+
notifyFloatingMarginHorizontal?: string // floating 变体左右间距
|
|
1234
|
+
notifyFloatingMarginVertical?: string // floating 变体上下间距
|
|
1235
|
+
notifyFloatingRadius?: string // floating 变体圆角
|
|
1236
|
+
notifyFontSize?: string // 通知文字字号
|
|
1237
|
+
notifyIconSize?: string // 图标尺寸
|
|
1238
|
+
notifyIconSpacing?: string // 图标间距
|
|
1239
|
+
notifyLineHeight?: string // 通知文字行高
|
|
1240
|
+
notifyPadding?: string // 通知内边距
|
|
1241
|
+
notifyPrimaryBg?: string // 主色态背景色
|
|
1242
|
+
notifyPrimaryColor?: string // 主色态文字颜色
|
|
1243
|
+
notifySuccessBg?: string // 成功态背景色
|
|
1244
|
+
notifySuccessColor?: string // 成功态文字颜色
|
|
1245
|
+
notifyTextColor?: string // 通知文字颜色
|
|
1246
|
+
notifyWarningBg?: string // 警告态背景色
|
|
1247
|
+
notifyWarningColor?: string // 警告态文字颜色
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
export type overlayThemeVars = {
|
|
1251
|
+
overlayBg?: string // 遮罩层背景色
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
export type paginationThemeVars = {
|
|
1255
|
+
paginationBg?: string // 分页背景色
|
|
1256
|
+
paginationIconSize?: string // 分页图标尺寸
|
|
1257
|
+
paginationMessageColor?: string // 辅助文案颜色
|
|
1258
|
+
paginationMessageFontSize?: string // 辅助文案字号
|
|
1259
|
+
paginationMessageLineHeight?: string // 辅助文案行高
|
|
1260
|
+
paginationMessageMarginTop?: string // 辅助文案顶部间距
|
|
1261
|
+
paginationNavWidth?: string // 翻页按钮最小宽度
|
|
1262
|
+
paginationPadding?: string // 分页内边距
|
|
1263
|
+
paginationSizeColor?: string // 页码颜色
|
|
1264
|
+
paginationSizeCurrentColor?: string // 当前页码颜色
|
|
1265
|
+
paginationSizeFontSize?: string // 页码字号
|
|
1266
|
+
paginationSizeLineHeight?: string // 页码行高
|
|
1267
|
+
paginationSizeSeparatorMargin?: string // 分隔符外边距
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
export type passwordInputThemeVars = {
|
|
1271
|
+
passwordInputBg?: string // 输入格背景色
|
|
1272
|
+
passwordInputBorderColor?: string // 边框颜色
|
|
1273
|
+
passwordInputBorderWidth?: string // 边框宽度
|
|
1274
|
+
passwordInputCursorColor?: string // 光标颜色
|
|
1275
|
+
passwordInputCursorDuration?: string // 光标闪烁周期
|
|
1276
|
+
passwordInputCursorHeight?: string // 光标高度
|
|
1277
|
+
passwordInputCursorWidth?: string // 光标宽度
|
|
1278
|
+
passwordInputDotColor?: string // 密码点颜色
|
|
1279
|
+
passwordInputDotRadius?: string // 密码点圆角
|
|
1280
|
+
passwordInputDotSize?: string // 密码点尺寸
|
|
1281
|
+
passwordInputErrorInfoColor?: string // 错误提示颜色
|
|
1282
|
+
passwordInputFontSize?: string // 输入字号
|
|
1283
|
+
passwordInputHeight?: string // 输入区域高度
|
|
1284
|
+
passwordInputInfoColor?: string // 提示信息颜色
|
|
1285
|
+
passwordInputInfoFontSize?: string // 提示信息字号
|
|
1286
|
+
passwordInputLineHeight?: string // 输入行高
|
|
1287
|
+
passwordInputMargin?: string // 组件外边距
|
|
1288
|
+
passwordInputRadius?: string // 输入格圆角
|
|
1289
|
+
passwordInputTextColor?: string // 输入文本颜色
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
export type pickerThemeVars = {
|
|
1293
|
+
pickerActionColorCancel?: string // 取消按钮文字颜色
|
|
1294
|
+
pickerActionColorConfirm?: string // 确认按钮文字颜色
|
|
1295
|
+
pickerActionDisabledColor?: string // 操作按钮禁用颜色
|
|
1296
|
+
pickerActionFontSize?: string // 操作按钮字号
|
|
1297
|
+
pickerBg?: string // 选择器背景色
|
|
1298
|
+
pickerRadius?: string // 弹窗圆角
|
|
1299
|
+
pickerTitleColor?: string // 标题文字颜色
|
|
1300
|
+
pickerTitleFontSize?: string // 标题文字字号
|
|
1301
|
+
pickerTitleFontWeight?: string // 标题文字字重
|
|
1302
|
+
pickerTitleLineHeight?: string // 标题文字行高
|
|
1303
|
+
pickerToolbarHeight?: string // 选择器工具栏高度
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
export type pickerViewThemeVars = {
|
|
1307
|
+
pickerViewBg?: string // 选择器视图背景色
|
|
1308
|
+
pickerViewColumnItemColor?: string // 列项文字颜色
|
|
1309
|
+
pickerViewColumnItemDisabledColor?: string // 列项禁用文字颜色
|
|
1310
|
+
pickerViewColumnItemFontSize?: string // 列项字号
|
|
1311
|
+
pickerViewColumnItemFontWeightActive?: string // 列项激活字重
|
|
1312
|
+
pickerViewColumnItemHeight?: string // 列项高度
|
|
1313
|
+
pickerViewColumnItemPadding?: string // 列项内边距
|
|
1314
|
+
pickerViewDisabledOpacity?: string // 禁用态透明度
|
|
1315
|
+
pickerViewMaskBg?: string // 遮罩背景渐变
|
|
1316
|
+
pickerViewMaskEndColor?: string // 遮罩渐变结束色
|
|
1317
|
+
pickerViewMaskStartColor?: string // 遮罩渐变起始色
|
|
1318
|
+
pickerViewPadding?: string // 选择器视图内边距
|
|
1319
|
+
pickerViewRollerBg?: string // 滚轮背景色
|
|
1320
|
+
pickerViewRollerBorderRadius?: string // 滚轮圆角
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
export type popoverThemeVars = {
|
|
1324
|
+
popoverArrowBoxShadow?: string // 箭头阴影
|
|
1325
|
+
popoverArrowSize?: string // 箭头尺寸
|
|
1326
|
+
popoverBg?: string // 浮层背景色
|
|
1327
|
+
popoverBorderColor?: string // 浮层边框颜色
|
|
1328
|
+
popoverBoxShadow?: string // 浮层阴影
|
|
1329
|
+
popoverCloseIconColor?: string // 关闭图标颜色
|
|
1330
|
+
popoverCloseIconPadding?: string // 关闭图标内边距
|
|
1331
|
+
popoverCloseIconSize?: string // 关闭图标尺寸
|
|
1332
|
+
popoverColor?: string // 浮层文字颜色
|
|
1333
|
+
popoverFontSize?: string // 浮层字号
|
|
1334
|
+
popoverLineHeight?: string // 浮层行高
|
|
1335
|
+
popoverMenuIconMarginRight?: string // 菜单图标右侧间距
|
|
1336
|
+
popoverMenuIconSize?: string // 菜单图标大小
|
|
1337
|
+
popoverPadding?: string // 浮层内边距
|
|
1338
|
+
popoverRadius?: string // 浮层圆角
|
|
1339
|
+
popoverZIndex?: string // 浮层层级
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
export type popupThemeVars = {
|
|
1343
|
+
popupBg?: string // 弹窗背景色
|
|
1344
|
+
popupCloseColor?: string // 关闭图标颜色
|
|
1345
|
+
popupCloseMargin?: string // 关闭图标外边距
|
|
1346
|
+
popupCloseSize?: string // 关闭图标尺寸
|
|
1347
|
+
popupRadius?: string // 弹窗圆角:根据弹出位置自动适配
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
export type progressThemeVars = {
|
|
1351
|
+
progressBarHeight?: string // 外部文案模式进度条高度
|
|
1352
|
+
progressBg?: string // 进度条底色
|
|
1353
|
+
progressColor?: string // 默认进度色
|
|
1354
|
+
progressDangerColor?: string // danger 进度色
|
|
1355
|
+
progressHeight?: string // 内部文案模式组件高度
|
|
1356
|
+
progressIconSize?: string // 图标字号
|
|
1357
|
+
progressInnerLabelColor?: string // 内部文案颜色
|
|
1358
|
+
progressInnerPadding?: string // 内部文案内边距
|
|
1359
|
+
progressInnerZeroBg?: string // 内部 zero 态背景色
|
|
1360
|
+
progressInnerZeroColor?: string // 内部 zero 态文字颜色
|
|
1361
|
+
progressLabelColor?: string // 外部文案颜色
|
|
1362
|
+
progressLabelFontSize?: string // 文案字号
|
|
1363
|
+
progressLabelLineHeight?: string // 文案行高
|
|
1364
|
+
progressLabelMarginLeft?: string // 外部文案左侧间距
|
|
1365
|
+
progressLabelWidth?: string // 外部文案宽度
|
|
1366
|
+
progressRadius?: string // 进度条圆角
|
|
1367
|
+
progressSuccessColor?: string // success 进度色
|
|
1368
|
+
progressWarningColor?: string // warning 进度色
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
export type radioThemeVars = {
|
|
1372
|
+
radioButtonBg?: string // 按钮模式背景色
|
|
1373
|
+
radioButtonBorderRadius?: string // 按钮模式圆角
|
|
1374
|
+
radioButtonBorderWidth?: string // 按钮模式边框宽度
|
|
1375
|
+
radioButtonCheckedBg?: string // 按钮模式选中背景色
|
|
1376
|
+
radioButtonFontSize?: string // 按钮模式字号
|
|
1377
|
+
radioButtonIconColor?: string // 按钮模式图标颜色
|
|
1378
|
+
radioButtonIconLeft?: string // 按钮模式图标左侧偏移
|
|
1379
|
+
radioButtonIconRight?: string // 按钮模式图标右侧偏移
|
|
1380
|
+
radioButtonIconSize?: string // 按钮模式图标尺寸
|
|
1381
|
+
radioButtonIconTop?: string // 按钮模式图标顶部偏移
|
|
1382
|
+
radioButtonLineHeight?: string // 按钮模式行高
|
|
1383
|
+
radioButtonMargin?: string // 按钮模式项间距
|
|
1384
|
+
radioButtonMaxWidth?: string // 按钮模式最大宽度
|
|
1385
|
+
radioButtonMinWidth?: string // 按钮模式最小宽度
|
|
1386
|
+
radioButtonPadding?: string // 按钮模式内边距
|
|
1387
|
+
radioButtonShapeBorderRadius?: string // 按钮模式标记圆角
|
|
1388
|
+
radioButtonShapeLeft?: string // 按钮模式标记左侧偏移
|
|
1389
|
+
radioButtonShapeRight?: string // 按钮模式标记右侧偏移
|
|
1390
|
+
radioButtonShapeSize?: string // 按钮模式标记尺寸
|
|
1391
|
+
radioButtonShapeTop?: string // 按钮模式标记顶部偏移
|
|
1392
|
+
radioCheckedColor?: string // 选中颜色
|
|
1393
|
+
radioDisabled?: string // 禁用态透明度
|
|
1394
|
+
radioHorizontalMargin?: string // 水平模式间距
|
|
1395
|
+
radioIconSize?: string // 图标尺寸
|
|
1396
|
+
radioLabelColor?: string // 文案颜色
|
|
1397
|
+
radioLabelFontSize?: string // 文案字号
|
|
1398
|
+
radioLabelLineHeight?: string // 文案行高
|
|
1399
|
+
radioLabelMargin?: string // 文案与图标间距
|
|
1400
|
+
radioUncheckedColor?: string // 未选中图标颜色
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
export type rateThemeVars = {
|
|
1404
|
+
rateActiveColor?: string // 激活图标颜色
|
|
1405
|
+
rateColor?: string // 未激活图标颜色
|
|
1406
|
+
rateDisabledOpacity?: string // 禁用态透明度
|
|
1407
|
+
rateItemSpace?: string // 图标间距
|
|
1408
|
+
rateSize?: string // 图标尺寸
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
export type resizeThemeVars = {
|
|
1412
|
+
resizeContainerMinSize?: string // 容器最小宽高
|
|
1413
|
+
resizeWrapperZIndex?: string // wrapper 层级
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
export type searchThemeVars = {
|
|
1417
|
+
searchBg?: string // 组件容器背景色 (filled)
|
|
1418
|
+
searchBlockMarginRight?: string // block 向右间距
|
|
1419
|
+
searchCancelColor?: string // 取消按钮颜色
|
|
1420
|
+
searchCancelFontSize?: string // 取消按钮字号
|
|
1421
|
+
searchCancelLineHeight?: string // 取消按钮行高
|
|
1422
|
+
searchClearIconColor?: string // 清除图标颜色
|
|
1423
|
+
searchClearIconMarginLeft?: string // 清除图标向右间距
|
|
1424
|
+
searchClearIconSize?: string // 清除图标大小
|
|
1425
|
+
searchCoverBg?: string // 组件覆盖层背景色 (filled)
|
|
1426
|
+
searchFieldPadding?: string // 输入框内边距
|
|
1427
|
+
searchIconColor?: string // 搜索图标颜色
|
|
1428
|
+
searchIconSize?: string // 搜索图标大小
|
|
1429
|
+
searchInputBg?: string // 输入框背景色 (filled)
|
|
1430
|
+
searchInputColor?: string // 输入框文字颜色
|
|
1431
|
+
searchInputFontSize?: string // 输入框字号
|
|
1432
|
+
searchInputHeight?: string // 输入框高度
|
|
1433
|
+
searchInputLineHeight?: string // 输入框文字行高
|
|
1434
|
+
searchInputRadius?: string // 输入框圆角
|
|
1435
|
+
searchLeftIconMarginRight?: string // 输入框左侧搜索图标向右间距
|
|
1436
|
+
searchLightBg?: string // light 模式容器背景色
|
|
1437
|
+
searchLightBlockBg?: string // light 模式内容块背景色
|
|
1438
|
+
searchLightCoverBg?: string // light 模式覆盖层背景色
|
|
1439
|
+
searchPadding?: string // 组件整体内边距
|
|
1440
|
+
searchPlaceholderColor?: string // 占位符颜色
|
|
1441
|
+
searchPlaceholderFontSize?: string // 占位符字号
|
|
1442
|
+
searchPlaceholderLineHeight?: string // 占位符行高
|
|
1443
|
+
searchPlainBg?: string // plain 模式容器背景色
|
|
1444
|
+
searchPlainBlockBg?: string // plain 模式内容块背景色
|
|
1445
|
+
searchPlainBlockBorderColor?: string // plain 模式内容块边框
|
|
1446
|
+
searchPlainCoverBg?: string // plain 模式覆盖层背景色
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
export type segmentedThemeVars = {
|
|
1450
|
+
segmentedBg?: string // 组件背景色
|
|
1451
|
+
segmentedBorderWidth?: string // 组件边框宽度
|
|
1452
|
+
segmentedItemBgActive?: string // 选项激活背景色
|
|
1453
|
+
segmentedItemColor?: string // 选项文字颜色
|
|
1454
|
+
segmentedItemColorActive?: string // 选项激活文字颜色
|
|
1455
|
+
segmentedItemDisabledOpacity?: string // 选项禁用透明度
|
|
1456
|
+
segmentedItemFontSize?: string // 选项文字字号
|
|
1457
|
+
segmentedItemFontWeight?: string // 选项文字字重
|
|
1458
|
+
segmentedItemFontWeightActive?: string // 选项激活字重
|
|
1459
|
+
segmentedItemLineHeight?: string // 选项文字行高
|
|
1460
|
+
segmentedItemPadding?: string // 选项内边距
|
|
1461
|
+
segmentedOutlineBg?: string // 轮廓模式背景色
|
|
1462
|
+
segmentedOutlineBorderColor?: string // 轮廓模式边框颜色
|
|
1463
|
+
segmentedOutlineItemBgActive?: string // 轮廓模式选项激活背景色
|
|
1464
|
+
segmentedOutlineItemBgActiveDisabled?: string // 轮廓模式选项激活禁用背景色
|
|
1465
|
+
segmentedOutlineItemColor?: string // 轮廓模式选项文字颜色
|
|
1466
|
+
segmentedOutlineItemColorActive?: string // 轮廓模式选项激活文字颜色
|
|
1467
|
+
segmentedOutlineItemDisabledColor?: string // 轮廓模式选项禁用文字颜色
|
|
1468
|
+
segmentedOutlineItemPadding?: string // 轮廓模式选项内边距
|
|
1469
|
+
segmentedOutlinePadding?: string // 轮廓模式内边距
|
|
1470
|
+
segmentedOutlineRadius?: string // 轮廓模式圆角
|
|
1471
|
+
segmentedPadding?: string // 组件内边距
|
|
1472
|
+
segmentedRadius?: string // 组件圆角
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
export type selectPickerThemeVars = {
|
|
1476
|
+
selectPickerBg?: string // 选择器背景色
|
|
1477
|
+
selectPickerFooterBorderColor?: string // 确认区域上边框颜色
|
|
1478
|
+
selectPickerFooterPadding?: string // 底部内边距
|
|
1479
|
+
selectPickerLoadingIconSize?: string // loading 图标尺寸
|
|
1480
|
+
selectPickerLoadingOpacity?: string // loading 状态下透明度
|
|
1481
|
+
selectPickerTextActiveColor?: string // 选中态文字颜色
|
|
1482
|
+
selectPickerWrapperMaxHeight?: string // 内容区最大高度
|
|
1483
|
+
selectPickerWrapperPaddingHorizontal?: string // 内容区水平内边距
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
export type sidebarItemThemeVars = {
|
|
1487
|
+
sidebarItemBg?: string // 选项背景色
|
|
1488
|
+
sidebarItemBgActive?: string // 激活项背景色
|
|
1489
|
+
sidebarItemBgHover?: string // 选项点击态背景色
|
|
1490
|
+
sidebarItemBorderRadius?: string // 圆角大小
|
|
1491
|
+
sidebarItemColor?: string // 选项文字颜色
|
|
1492
|
+
sidebarItemColorActive?: string // 激活项文字颜色
|
|
1493
|
+
sidebarItemColorDisabled?: string // 禁用状态文字颜色
|
|
1494
|
+
sidebarItemFontSize?: string // 选项字号
|
|
1495
|
+
sidebarItemFontWeightActive?: string // 激活项字重
|
|
1496
|
+
sidebarItemIconMarginRight?: string // 图标右边距
|
|
1497
|
+
sidebarItemIconSize?: string // 图标大小
|
|
1498
|
+
sidebarItemIndicatorHeight?: string // 激活指示条高度
|
|
1499
|
+
sidebarItemIndicatorWidth?: string // 激活指示条宽度
|
|
1500
|
+
sidebarItemLineHeight?: string // 选项行高
|
|
1501
|
+
sidebarItemMinHeight?: string // 选项最小高度
|
|
1502
|
+
sidebarItemPadding?: string // 选项内边距
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
export type sidebarThemeVars = {
|
|
1506
|
+
sidebarBg?: string // 侧边栏背景色
|
|
1507
|
+
sidebarHeight?: string // 侧边栏高度
|
|
1508
|
+
sidebarPaddingBg?: string // 内容区背景色
|
|
1509
|
+
sidebarWidth?: string // 侧边栏宽度
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
export type signatureThemeVars = {
|
|
1513
|
+
signatureBg?: string // 签名区域背景色
|
|
1514
|
+
signatureBorder?: string // 签名区域边框
|
|
1515
|
+
signatureButtonMarginLeft?: string // 底部按钮左间距
|
|
1516
|
+
signatureFooterMarginTop?: string // 底部操作区上间距
|
|
1517
|
+
signatureRadius?: string // 签名区域圆角
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
export type skeletonThemeVars = {
|
|
1521
|
+
skeletonAnimationFlashed?: string // 闪烁动画高亮色
|
|
1522
|
+
skeletonAnimationFlashedOpacity?: string // 闪烁动画透明度
|
|
1523
|
+
skeletonAnimationGradient?: string // 渐变动画高亮色
|
|
1524
|
+
skeletonCircleBorderRadius?: string // 圆形占位圆角
|
|
1525
|
+
skeletonCircleHeight?: string // 圆形占位尺寸
|
|
1526
|
+
skeletonColBg?: string // 占位块背景色
|
|
1527
|
+
skeletonRectBorderRadius?: string // 矩形占位圆角
|
|
1528
|
+
skeletonRectHeight?: string // 矩形占位高度
|
|
1529
|
+
skeletonRowMarginBottom?: string // 行间距
|
|
1530
|
+
skeletonTextBorderRadius?: string // 文本占位圆角
|
|
1531
|
+
skeletonTextHeight?: string // 文本占位高度
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export type sliderThemeVars = {
|
|
1535
|
+
sliderBarBg?: string
|
|
1536
|
+
sliderBarHeight?: string
|
|
1537
|
+
sliderBarHeightCapsule?: string
|
|
1538
|
+
sliderBarHeightVertical?: string
|
|
1539
|
+
sliderBarRadius?: string
|
|
1540
|
+
sliderCapsuleTrackInset?: string
|
|
1541
|
+
sliderDotBg?: string
|
|
1542
|
+
sliderDotPopoverArrowHeight?: string
|
|
1543
|
+
sliderDotPopoverArrowWidth?: string
|
|
1544
|
+
sliderDotPopoverBg?: string
|
|
1545
|
+
sliderDotPopoverColor?: string
|
|
1546
|
+
sliderDotPopoverDurationEnter?: string
|
|
1547
|
+
sliderDotPopoverDurationExit?: string
|
|
1548
|
+
sliderDotPopoverEasingEnter?: string
|
|
1549
|
+
sliderDotPopoverEasingExit?: string
|
|
1550
|
+
sliderDotPopoverFontSize?: string
|
|
1551
|
+
sliderDotPopoverGap?: string
|
|
1552
|
+
sliderDotPopoverLineHeight?: string
|
|
1553
|
+
sliderDotPopoverPadding?: string
|
|
1554
|
+
sliderDotPopoverRadius?: string
|
|
1555
|
+
sliderDotShadow?: string
|
|
1556
|
+
sliderDotSize?: string
|
|
1557
|
+
sliderExtremeSpacing?: string
|
|
1558
|
+
sliderLineBg?: string
|
|
1559
|
+
sliderLineHeight?: string
|
|
1560
|
+
sliderLineHeightCapsule?: string
|
|
1561
|
+
sliderMarksDescCapsuleSpacing?: string
|
|
1562
|
+
sliderMarksDescSpacing?: string
|
|
1563
|
+
sliderMarksExtraCapsulePadding?: string
|
|
1564
|
+
sliderMarksExtraPadding?: string
|
|
1565
|
+
sliderOpacityDisabled?: string
|
|
1566
|
+
sliderScaleBg?: string
|
|
1567
|
+
sliderScaleBgActive?: string
|
|
1568
|
+
sliderScaleBorderRadius?: string
|
|
1569
|
+
sliderScaleCapsuleBg?: string
|
|
1570
|
+
sliderScaleCapsuleBorderRadius?: string
|
|
1571
|
+
sliderScaleCapsuleWidth?: string
|
|
1572
|
+
sliderScaleDescColor?: string
|
|
1573
|
+
sliderScaleDescFontSize?: string
|
|
1574
|
+
sliderScaleDescLineHeight?: string
|
|
1575
|
+
sliderScaleDescSpacing?: string
|
|
1576
|
+
sliderScaleSize?: string
|
|
1577
|
+
sliderValueColor?: string
|
|
1578
|
+
sliderValueFontSize?: string
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
export type slideVerifyThemeVars = {
|
|
1582
|
+
slideVerifyBg?: string // 组件背景色
|
|
1583
|
+
slideVerifyButtonBg?: string // 滑块背景色
|
|
1584
|
+
slideVerifyButtonBorderColor?: string // 滑块边框颜色
|
|
1585
|
+
slideVerifyButtonColor?: string // 滑块图标颜色
|
|
1586
|
+
slideVerifyButtonShadow?: string // 滑块阴影色
|
|
1587
|
+
slideVerifyButtonSize?: string // 滑块尺寸
|
|
1588
|
+
slideVerifyButtonSuccessColor?: string // 滑块图标成功态颜色
|
|
1589
|
+
slideVerifyDisabledOpacity?: string // 禁用态透明度
|
|
1590
|
+
slideVerifyHeight?: string // 组件高度
|
|
1591
|
+
slideVerifyRadius?: string // 圆角
|
|
1592
|
+
slideVerifySuccessIconSize?: string // 滑块图标尺寸
|
|
1593
|
+
slideVerifySuccessTextColor?: string // 成功态文字颜色
|
|
1594
|
+
slideVerifyTextColor?: string // 提示文字颜色
|
|
1595
|
+
slideVerifyTextFontSize?: string // 提示文字字号
|
|
1596
|
+
slideVerifyTextLineHeight?: string // 提示文字行高
|
|
1597
|
+
slideVerifyTrackBg?: string // 成功态track背景色
|
|
1598
|
+
slideVerifyWidth?: string // 组件宽度
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
export type sortButtonThemeVars = {
|
|
1602
|
+
sortButtonArrowIconSize?: string // 箭头图标尺寸
|
|
1603
|
+
sortButtonColor?: string // 文字颜色
|
|
1604
|
+
sortButtonColorActive?: string // 文字激活颜色
|
|
1605
|
+
sortButtonFontWeightActive?: string // 文字激活字重
|
|
1606
|
+
sortButtonHeight?: string // 组件高度
|
|
1607
|
+
sortButtonIconColor?: string // 图标颜色
|
|
1608
|
+
sortButtonIconColorActive?: string // 图标激活颜色
|
|
1609
|
+
sortButtonLineBottom?: string // 下划线底部距离
|
|
1610
|
+
sortButtonLineColor?: string // 下划线颜色
|
|
1611
|
+
sortButtonLineHeight?: string // 下划线高度
|
|
1612
|
+
sortButtonLineWidth?: string // 下划线宽度
|
|
1613
|
+
sortButtonRightSize?: string // 右侧区域尺寸
|
|
1614
|
+
sortButtonRightSpacingLeft?: string // 右侧区域左间距
|
|
1615
|
+
sortButtonSortSpacing?: string // 排序图标纵向间距
|
|
1616
|
+
sortButtonTextFontSize?: string // 文字字号
|
|
1617
|
+
sortButtonTextLineHeight?: string // 文字行高
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
export type stepThemeVars = {
|
|
1621
|
+
stepCircleBg?: string // 等待 (wait) 状态下圆形指示器的背景色
|
|
1622
|
+
stepCircleBorderRadius?: string // 圆形指示器的圆角大小
|
|
1623
|
+
stepCircleIconSize?: string // 圆形指示器内置状态图标 (如完成时的对号或错误时的叉号) 的字号大小
|
|
1624
|
+
stepCircleTextColor?: string // 等待状态或默认状态下圆形指示器内文本颜色
|
|
1625
|
+
stepCircleTextFinishedColor?: string // 已完成状态下圆形指示器内文本颜色
|
|
1626
|
+
stepCircleTextFontSize?: string // 圆形指示器内部文本的字号
|
|
1627
|
+
stepCircleTextFontWeight?: string // 圆形指示器内部文本的字重
|
|
1628
|
+
stepCircleTextLineHeight?: string // 圆形指示器内部文本的行高
|
|
1629
|
+
stepCircleTextProcessColor?: string // 进行中状态下圆形指示器内文本颜色
|
|
1630
|
+
stepContentMarginTop?: string // 内容区距头部的顶部外边距
|
|
1631
|
+
stepDescriptionColor?: string // 描述文本颜色
|
|
1632
|
+
stepDescriptionFontSize?: string // 描述文本字号大小
|
|
1633
|
+
stepDescriptionFontWeight?: string // 描述文本字重
|
|
1634
|
+
stepDescriptionLineHeight?: string // 描述文本行高
|
|
1635
|
+
stepDescriptionMarginTop?: string // 描述文本距标题的距离
|
|
1636
|
+
stepDescriptionPadding?: string // 描述文本的内边距
|
|
1637
|
+
stepDotErrorBg?: string // 错误 (error) 状态下点状指示器的背景色
|
|
1638
|
+
stepDotFinishedBg?: string // 已完成 (finished) 状态下点状指示器的背景色
|
|
1639
|
+
stepDotFinishedBorderColor?: string // 已完成 (finished) 状态下点状指示器的描边颜色
|
|
1640
|
+
stepDotProcessBg?: string // 进行中 (process) 状态下点状指示器的背景色
|
|
1641
|
+
stepDotProcessBorderColor?: string // 进行中 (process) 状态下点状指示器的描边颜色
|
|
1642
|
+
stepDotSize?: string // 点状指示器的宽高尺寸
|
|
1643
|
+
stepDotWaitBg?: string // 等待 (wait) 状态下点状指示器的背景色
|
|
1644
|
+
stepErrorBg?: string // 错误 (error) 状态下圆形指示器的背景色
|
|
1645
|
+
stepErrorColor?: string // 错误状态整体的主色调(纯白文本场景下等使用)
|
|
1646
|
+
stepFinishedBg?: string // 已完成 (finished) 状态下圆形指示器的背景色
|
|
1647
|
+
stepIconColor?: string // 等待或默认状态下图标的颜色
|
|
1648
|
+
stepIconColorActive?: string // 激活 (如 process 或 finished) 状态下图标的颜色
|
|
1649
|
+
stepIconErrorColor?: string // 错误 (error) 状态下图标的颜色
|
|
1650
|
+
stepIconSize?: string // 外部自定义传入的图标 (通过 icon 属性) 的字号大小
|
|
1651
|
+
stepInactiveColor?: string // 未激活部分的占位文本颜色
|
|
1652
|
+
stepIndicatorSize?: string // 圆形指示器的宽高尺寸
|
|
1653
|
+
stepLineActiveColor?: string // 激活 (完成状态) 下连接线的颜色
|
|
1654
|
+
stepLineColor?: string // 连接线的默认底色 (对应未激活的线段)
|
|
1655
|
+
stepLineSpacing?: string // 连接线与两侧指示器之间的间距
|
|
1656
|
+
stepProcessBg?: string // 进行中 (process) 状态下圆形指示器的背景色
|
|
1657
|
+
stepTitleColor?: string // 等待与完成状态下标题的颜色
|
|
1658
|
+
stepTitleColorActive?: string // 进行中状态下标题的激活颜色
|
|
1659
|
+
stepTitleErrorColor?: string // 错误状态下标题的颜色
|
|
1660
|
+
stepTitleFontSize?: string // 标题文本字号大小
|
|
1661
|
+
stepTitleFontWeight?: string // 标题文本字重
|
|
1662
|
+
stepTitleLineHeight?: string // 标题文本行高
|
|
1663
|
+
stepVerticalContentMarginLeft?: string // 垂直布局时内容区的左外边距
|
|
1664
|
+
stepVerticalContentPaddingBottom?: string // 垂直布局时内容区的底部内边距
|
|
1665
|
+
stepVerticalHeaderDotTop?: string // 垂直布局且为点状指示器时,头部的顶部绝对定位距离
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
export type swiperNavThemeVars = {
|
|
1669
|
+
swiperNavBtnBg?: string // 按钮背景色
|
|
1670
|
+
swiperNavBtnBorderRadius?: string // 按钮圆角
|
|
1671
|
+
swiperNavBtnColor?: string // 按钮图标颜色
|
|
1672
|
+
swiperNavBtnIconSize?: string // 按钮图标尺寸
|
|
1673
|
+
swiperNavBtnSize?: string // 按钮尺寸
|
|
1674
|
+
swiperNavBtnSpacing?: string // 按钮水平间距
|
|
1675
|
+
swiperNavDotBorderRadius?: string // dot 圆角
|
|
1676
|
+
swiperNavDotColor?: string // dot 颜色
|
|
1677
|
+
swiperNavDotColorActive?: string // dot 激活颜色
|
|
1678
|
+
swiperNavDotMargin?: string // dot 间距
|
|
1679
|
+
swiperNavDotsBarWidthActive?: string // dots-bar 激活宽度
|
|
1680
|
+
swiperNavDotSize?: string // dot 尺寸
|
|
1681
|
+
swiperNavFractionBg?: string // 分数模式背景色
|
|
1682
|
+
swiperNavFractionBorderRadius?: string // 分数模式圆角
|
|
1683
|
+
swiperNavFractionColor?: string // 分数模式文字颜色
|
|
1684
|
+
swiperNavFractionFontSize?: string // 分数模式字号
|
|
1685
|
+
swiperNavFractionLineHeight?: string // 分数模式行高
|
|
1686
|
+
swiperNavFractionPadding?: string // 分数模式内边距
|
|
1687
|
+
swiperNavSpacing?: string // 导航定位间距
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
export type swiperThemeVars = {
|
|
1691
|
+
swiperBorderRadius?: string // 轮播容器圆角
|
|
1692
|
+
swiperItemPadding?: string // 轮播项内边距
|
|
1693
|
+
swiperItemTextColor?: string // 轮播文案颜色
|
|
1694
|
+
swiperItemTextFontSize?: string // 轮播文案字号
|
|
1695
|
+
swiperItemTextSpacing?: string // 轮播文案定位间距
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
export type switchThemeVars = {
|
|
1699
|
+
switchColorActionBg?: string // 操作块背景色
|
|
1700
|
+
switchColorActionIcon?: string // 操作块图标颜色
|
|
1701
|
+
switchColorActiveBg?: string // 激活态背景色
|
|
1702
|
+
switchColorActiveIcon?: string // 内部图标激活态颜色
|
|
1703
|
+
switchColorInactiveBg?: string // 非激活态背景色
|
|
1704
|
+
switchColorInactiveIcon?: string // 非激活态图标颜色
|
|
1705
|
+
switchColorInnerActiveText?: string // 内部文案激活态颜色
|
|
1706
|
+
switchColorInnerInactiveText?: string // 内部文案非激活态颜色
|
|
1707
|
+
switchDisabled?: string // 禁用态透明度
|
|
1708
|
+
switchInnerFontSize?: string // 内部文案字号
|
|
1709
|
+
switchLeftRightPadding?: string // 水平内边距
|
|
1710
|
+
switchRadius?: string // 方角模式圆角
|
|
1711
|
+
switchRadiusAction?: string // 方角模式操作块圆角
|
|
1712
|
+
switchRadiusActionFull?: string // 圆角模式操作块圆角
|
|
1713
|
+
switchRadiusFull?: string // 圆角模式圆角
|
|
1714
|
+
switchSize?: string // 组件尺寸
|
|
1715
|
+
switchSizeActionHeight?: string // 操作块高度
|
|
1716
|
+
switchSizeActionIcon?: string // 操作块图标尺寸
|
|
1717
|
+
switchSizeActionWidth?: string // 操作块宽度
|
|
1718
|
+
switchSizeIcon?: string // 内部图标尺寸
|
|
1719
|
+
switchSizeInnerHeight?: string // 内部容器高度
|
|
1720
|
+
switchSizeInnerMinWidth?: string // 内部容器最小宽度
|
|
1721
|
+
switchSpacing?: string // 图标与文案间距
|
|
1722
|
+
switchTopBottomPadding?: string // 垂直内边距
|
|
1723
|
+
switchTransitionDuration?: string // 过渡时长
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
export type tabbarItemThemeVars = {
|
|
1727
|
+
tabbarItemColorActive?: string // 激活态颜色(文字和图标)
|
|
1728
|
+
tabbarItemColorInactive?: string // 非激活态颜色(文字和图标)
|
|
1729
|
+
tabbarItemIconSize?: string // 图标大小
|
|
1730
|
+
tabbarItemTitleFontSize?: string // 标题文字大小
|
|
1731
|
+
tabbarItemTitleLineHeight?: string // 标题文字行高
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
export type tabbarThemeVars = {
|
|
1735
|
+
tabbarBg?: string // 背景色
|
|
1736
|
+
tabbarHeight?: string // 高度
|
|
1737
|
+
tabbarRoundMarginHorizontal?: string // round 变体水平外边距
|
|
1738
|
+
tabbarRoundRadius?: string // round 变体圆角
|
|
1739
|
+
tabbarZIndex?: string // 固定定位层级
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
export type tableThemeVars = {
|
|
1743
|
+
tableBg?: string // 表格背景色
|
|
1744
|
+
tableBorderColor?: string // 边框颜色
|
|
1745
|
+
tableBorderWidth?: string // 边框宽度
|
|
1746
|
+
tableCellFontSize?: string // 单元格字号
|
|
1747
|
+
tableCellLineHeight?: string // 单元格行高
|
|
1748
|
+
tableCellPadding?: string // 单元格内边距
|
|
1749
|
+
tableColor?: string // 表格文字颜色
|
|
1750
|
+
tableShadowGradient?: string // 固定列阴影渐变背景
|
|
1751
|
+
tableSortButtonHeight?: string // 排序按钮高度
|
|
1752
|
+
tableStripeBg?: string // 斑马纹背景色
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
export type tabsThemeVars = {
|
|
1756
|
+
tabsDuration?: string // 过渡时长
|
|
1757
|
+
tabsMapArrowColor?: string // 地图模式箭头颜色
|
|
1758
|
+
tabsMapArrowSize?: string // 地图模式箭头尺寸
|
|
1759
|
+
tabsMapBodyBg?: string // 地图模式内容背景色
|
|
1760
|
+
tabsMapBodyPadding?: string // 地图模式内容内边距
|
|
1761
|
+
tabsMapBtnBeforeBg?: string // 地图模式按钮前景渐变背景
|
|
1762
|
+
tabsMapBtnHeight?: string // 地图模式按钮高度
|
|
1763
|
+
tabsMapBtnWidth?: string // 地图模式按钮宽度
|
|
1764
|
+
tabsMapColor?: string // 地图模式通用文字颜色
|
|
1765
|
+
tabsMapHeaderFontSize?: string // 地图模式头部字号
|
|
1766
|
+
tabsMapHeaderLineHeight?: string // 地图模式头部行高
|
|
1767
|
+
tabsMapHeaderPadding?: string // 地图模式头部内边距
|
|
1768
|
+
tabsMapModalBg?: string // 地图模式遮罩背景
|
|
1769
|
+
tabsMapNavBtnBg?: string // 地图模式导航按钮背景
|
|
1770
|
+
tabsMapNavBtnColor?: string // 地图模式导航按钮文字颜色
|
|
1771
|
+
tabsMapNavBtnDisabledOpacity?: string // 地图模式导航按钮禁用透明度
|
|
1772
|
+
tabsMapNavBtnFontSize?: string // 地图模式导航按钮字号
|
|
1773
|
+
tabsMapNavBtnGap?: string // 地图模式导航按钮间距
|
|
1774
|
+
tabsMapNavBtnLineHeight?: string // 地图模式导航按钮行高
|
|
1775
|
+
tabsMapNavBtnPadding?: string // 地图模式导航按钮内边距
|
|
1776
|
+
tabsMapNavBtnRadius?: string // 地图模式导航按钮圆角
|
|
1777
|
+
tabsNavBg?: string // 导航背景色
|
|
1778
|
+
tabsNavColor?: string // 导航文字颜色
|
|
1779
|
+
tabsNavColorActive?: string // 导航激活文字颜色
|
|
1780
|
+
tabsNavColorDisabled?: string // 导航禁用文字颜色
|
|
1781
|
+
tabsNavFontWeightActive?: string // 导航激活文字字重
|
|
1782
|
+
tabsNavItemFontSize?: string // 导航项字号
|
|
1783
|
+
tabsNavItemLineHeight?: string // 导航项行高
|
|
1784
|
+
tabsNavItemPadding?: string // 导航项内边距
|
|
1785
|
+
tabsNavLineBg?: string // 导航线背景色
|
|
1786
|
+
tabsNavLineBottom?: string // 导航线底部偏移
|
|
1787
|
+
tabsNavLineHeight?: string // 导航线高度
|
|
1788
|
+
tabsNavLineWidth?: string // 导航线宽度
|
|
1789
|
+
tabsNavStickyWidth?: string // 导航吸顶宽度
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
export type tagThemeVars = {
|
|
1793
|
+
tagColor?: string // 基础文字颜色
|
|
1794
|
+
tagCyanBg?: string // 青色背景
|
|
1795
|
+
tagCyanColor?: string // 青色文字颜色
|
|
1796
|
+
tagCyanLightBg?: string // 青色浅色背景
|
|
1797
|
+
tagDangerBg?: string // 危险色背景
|
|
1798
|
+
tagDangerColor?: string // 危险色文字颜色
|
|
1799
|
+
tagDangerLightBg?: string // 危险色浅色背景
|
|
1800
|
+
tagDefaultFontSize?: string // 默认尺寸字号
|
|
1801
|
+
tagDefaultIconSize?: string // 默认尺寸图标尺寸
|
|
1802
|
+
tagDefaultLineHeight?: string // 默认尺寸行高
|
|
1803
|
+
tagDefaultPadding?: string // 默认尺寸内边距
|
|
1804
|
+
tagDefaultRoundPadding?: string // 默认尺寸圆角态内边距
|
|
1805
|
+
tagExtraLargeFontSize?: string // 超大尺寸字号
|
|
1806
|
+
tagExtraLargeIconSize?: string // 超大尺寸图标尺寸
|
|
1807
|
+
tagExtraLargeLineHeight?: string // 超大尺寸行高
|
|
1808
|
+
tagExtraLargePadding?: string // 超大尺寸内边距
|
|
1809
|
+
tagExtraLargeRoundPadding?: string // 超大尺寸圆角态内边距
|
|
1810
|
+
tagFontSize?: string // 基础字号
|
|
1811
|
+
tagIconSpacing?: string // 图标间距
|
|
1812
|
+
tagInfoBg?: string // 默认信息色背景
|
|
1813
|
+
tagInfoColor?: string // 默认信息色文字颜色
|
|
1814
|
+
tagInfoLightBg?: string // 默认信息色浅色背景
|
|
1815
|
+
tagInputWidth?: string // 输入态宽度
|
|
1816
|
+
tagLargeFontSize?: string // 大尺寸字号
|
|
1817
|
+
tagLargeIconSize?: string // 大尺寸图标尺寸
|
|
1818
|
+
tagLargeLineHeight?: string // 大尺寸行高
|
|
1819
|
+
tagLargePadding?: string // 大尺寸内边距
|
|
1820
|
+
tagLargeRoundPadding?: string // 大尺寸圆角态内边距
|
|
1821
|
+
tagLightblueBg?: string // 亮蓝色背景
|
|
1822
|
+
tagLightblueColor?: string // 亮蓝色文字颜色
|
|
1823
|
+
tagLightblueLightBg?: string // 亮蓝色浅色背景
|
|
1824
|
+
tagMarkRadius?: string // 标记标签圆角
|
|
1825
|
+
tagMediumFontSize?: string // 中尺寸字号
|
|
1826
|
+
tagMediumIconSize?: string // 中尺寸图标尺寸
|
|
1827
|
+
tagMediumLineHeight?: string // 中尺寸行高
|
|
1828
|
+
tagMediumPadding?: string // 中尺寸内边距
|
|
1829
|
+
tagMediumRoundPadding?: string // 中尺寸圆角态内边距
|
|
1830
|
+
tagPinkBg?: string // 粉色背景
|
|
1831
|
+
tagPinkColor?: string // 粉色文字颜色
|
|
1832
|
+
tagPinkLightBg?: string // 粉色浅色背景
|
|
1833
|
+
tagPrimaryBg?: string // 主色背景
|
|
1834
|
+
tagPrimaryColor?: string // 主色文字颜色
|
|
1835
|
+
tagPrimaryLightBg?: string // 主色浅色背景
|
|
1836
|
+
tagPurpleBg?: string // 紫色背景
|
|
1837
|
+
tagPurpleColor?: string // 紫色文字颜色
|
|
1838
|
+
tagPurpleLightBg?: string // 紫色浅色背景
|
|
1839
|
+
tagRadius?: string // 默认圆角
|
|
1840
|
+
tagRoundRadius?: string // 圆角标签圆角
|
|
1841
|
+
tagSmallFontSize?: string // 小尺寸字号
|
|
1842
|
+
tagSmallIconSize?: string // 小尺寸图标尺寸
|
|
1843
|
+
tagSmallLineHeight?: string // 小尺寸行高
|
|
1844
|
+
tagSmallPadding?: string // 小尺寸内边距
|
|
1845
|
+
tagSmallRoundPadding?: string // 小尺寸圆角态内边距
|
|
1846
|
+
tagSuccessBg?: string // 成功色背景
|
|
1847
|
+
tagSuccessColor?: string // 成功色文字颜色
|
|
1848
|
+
tagSuccessLightBg?: string // 成功色浅色背景
|
|
1849
|
+
tagVolcanoBg?: string // 橘火色背景
|
|
1850
|
+
tagVolcanoColor?: string // 橘火色文字颜色
|
|
1851
|
+
tagVolcanoLightBg?: string // 橘火色浅色背景
|
|
1852
|
+
tagWarningBg?: string // 警告色背景
|
|
1853
|
+
tagWarningColor?: string // 警告色文字颜色
|
|
1854
|
+
tagWarningLightBg?: string // 警告色浅色背景
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
export type textareaThemeVars = {
|
|
1858
|
+
textareaBg?: string // 文本域背景色
|
|
1859
|
+
textareaCountColor?: string // 字数统计颜色
|
|
1860
|
+
textareaCountFontSize?: string // 字数统计字号
|
|
1861
|
+
textareaCountLineHeight?: string // 字数统计行高
|
|
1862
|
+
textareaDisabledColor?: string // 禁用态颜色
|
|
1863
|
+
textareaErrorColor?: string // 错误颜色
|
|
1864
|
+
textareaIconColor?: string // 图标颜色
|
|
1865
|
+
textareaIconFontSize?: string // 图标字号
|
|
1866
|
+
textareaIconMargin?: string // 图标间距
|
|
1867
|
+
textareaInnerColor?: string // 文本域文字颜色
|
|
1868
|
+
textareaInnerFontSize?: string // 文本域字号
|
|
1869
|
+
textareaInnerLineHeight?: string // 文本域行高
|
|
1870
|
+
textareaInnerMinHeight?: string // 文本域最小高度
|
|
1871
|
+
textareaInnerPlaceholderColor?: string // 占位符颜色
|
|
1872
|
+
textareaPadding?: string // 文本域内边距
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
export type textThemeVars = {
|
|
1876
|
+
textDefaultColor?: string // 默认文字颜色
|
|
1877
|
+
textErrorColor?: string // 错误文字颜色
|
|
1878
|
+
textFontSize?: string // 默认文字字号
|
|
1879
|
+
textLineHeight?: string // 默认文字行高
|
|
1880
|
+
textPrimaryColor?: string // 主色文字颜色
|
|
1881
|
+
textSuccessColor?: string // 成功文字颜色
|
|
1882
|
+
textWarningColor?: string // 警告文字颜色
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
export type toastThemeVars = {
|
|
1886
|
+
toastBg?: string // 背景色
|
|
1887
|
+
toastBorderRadius?: string // 圆角大小
|
|
1888
|
+
toastColor?: string // 文字颜色
|
|
1889
|
+
toastFontSize?: string // 字号
|
|
1890
|
+
toastIconMarginBottom?: string // 图标下边距
|
|
1891
|
+
toastIconSize?: string // 图标大小
|
|
1892
|
+
toastLineHeight?: string // 行高
|
|
1893
|
+
toastLoadingMarginBottom?: string // loading 动画的 margin-bottom
|
|
1894
|
+
toastLoadingPadding?: string // loading 状态下的 padding
|
|
1895
|
+
toastMaxWidth?: string // 最大宽度
|
|
1896
|
+
toastMsgMarginLeft?: string // 消息内容左边距
|
|
1897
|
+
toastPadding?: string // 内边距
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
export type tooltipThemeVars = {
|
|
1901
|
+
tooltipArrowBoxShadow?: string // 箭头阴影效果
|
|
1902
|
+
tooltipArrowSize?: string // 箭头大小
|
|
1903
|
+
tooltipBg?: string // 背景色
|
|
1904
|
+
tooltipBoxShadow?: string // 阴影效果
|
|
1905
|
+
tooltipCloseIconColor?: string // 关闭按钮颜色
|
|
1906
|
+
tooltipCloseIconPadding?: string // 关闭按钮内边距
|
|
1907
|
+
tooltipCloseIconSize?: string // 关闭按钮大小
|
|
1908
|
+
tooltipColor?: string // 文字颜色
|
|
1909
|
+
tooltipFontSize?: string // 字号
|
|
1910
|
+
tooltipLineHeight?: string // 行高
|
|
1911
|
+
tooltipPadding?: string // 内边距
|
|
1912
|
+
tooltipRadius?: string // 圆角大小
|
|
1913
|
+
tooltipZIndex?: string // 层级
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
export type tourThemeVars = {
|
|
1917
|
+
tourAnimationDuration?: string // 动画时长
|
|
1918
|
+
tourButtonsMarginTop?: string // 操作区域上边距
|
|
1919
|
+
tourHighlightAnimationTiming?: string // 高亮动画时间函数
|
|
1920
|
+
tourHighlightShadowColor?: string // 高亮区域阴影颜色
|
|
1921
|
+
tourInfoColor?: string // 信息框文字颜色
|
|
1922
|
+
tourInfoFontSize?: string // 信息框字号
|
|
1923
|
+
tourInfoLineHeight?: string // 信息框行高
|
|
1924
|
+
tourPopoverBg?: string // 弹层背景色
|
|
1925
|
+
tourPopoverMaxWidth?: string // 弹层最大宽度
|
|
1926
|
+
tourPopoverMinWidth?: string // 弹层最小宽度
|
|
1927
|
+
tourPopoverPadding?: string // 弹层内边距
|
|
1928
|
+
tourPopoverRadius?: string // 弹层圆角
|
|
1929
|
+
tourPopoverZIndex?: string // 弹层层级
|
|
1930
|
+
tourZIndex?: string // 层级
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
export type uploadThemeVars = {
|
|
1934
|
+
uploadBorderColor?: string // 上传项边框颜色
|
|
1935
|
+
uploadCloseBg?: string // 关闭按钮背景色
|
|
1936
|
+
uploadCloseIconColor?: string // 关闭按钮图标颜色
|
|
1937
|
+
uploadCloseIconSize?: string // 关闭按钮图标尺寸
|
|
1938
|
+
uploadClosePadding?: string // 关闭按钮内边距
|
|
1939
|
+
uploadCloseRadius?: string // 关闭按钮圆角
|
|
1940
|
+
uploadCoverIconSize?: string // 视频/文件图标尺寸
|
|
1941
|
+
uploadEvokeBg?: string // 唤起项背景色
|
|
1942
|
+
uploadEvokeColor?: string // 唤起项文字颜色
|
|
1943
|
+
uploadEvokeColorDisabled?: string // 唤起项禁用文字颜色
|
|
1944
|
+
uploadEvokeFontSize?: string // 唤起项文字大小
|
|
1945
|
+
uploadEvokeIconColor?: string // 唤起项图标颜色
|
|
1946
|
+
uploadEvokeIconColorDisabled?: string // 唤起项禁用图标颜色
|
|
1947
|
+
uploadEvokeIconSize?: string // 唤起项的图标大小
|
|
1948
|
+
uploadEvokeLineHeight?: string // 唤起项文字行高
|
|
1949
|
+
uploadFileColor?: string // 文件名文字颜色
|
|
1950
|
+
uploadFileFontSize?: string // 文件名文字字号
|
|
1951
|
+
uploadFileLineHeight?: string // 文件名文字行高
|
|
1952
|
+
uploadFilePadding?: string // 文件/视频名称内边距
|
|
1953
|
+
uploadMaskBg?: string // 遮罩层背景色
|
|
1954
|
+
uploadPreviewIconColor?: string // 预览态内部图标颜色
|
|
1955
|
+
uploadPreviewIconSize?: string // 预览态内部图标尺寸
|
|
1956
|
+
uploadPreviewMargin?: string // 预览项外边距
|
|
1957
|
+
uploadProgressColor?: string // 进度文字颜色
|
|
1958
|
+
uploadProgressFontSize?: string // 进度文字字号
|
|
1959
|
+
uploadProgressLineHeight?: string // 进度文字行高
|
|
1960
|
+
uploadRadius?: string // 上传项圆角
|
|
1961
|
+
uploadRowSpacing?: string // 上传项行间距
|
|
1962
|
+
uploadSize?: string // 上传项尺寸
|
|
1963
|
+
uploadVideoIconColor?: string // 视频播放图标颜色
|
|
1964
|
+
uploadVideoIconSize?: string // 视频图标尺寸
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
export type videoPreviewThemeVars = {
|
|
1968
|
+
videoPreviewBg?: string // 预览背景色
|
|
1969
|
+
videoPreviewCloseColor?: string // 关闭图标颜色
|
|
1970
|
+
videoPreviewCloseMargin?: string // 关闭按钮外边距
|
|
1971
|
+
videoPreviewCloseSize?: string // 关闭图标尺寸
|
|
1972
|
+
videoPreviewCloseZIndex?: string // 关闭按钮层级
|
|
1973
|
+
videoPreviewVideoHeight?: string // 视频预览区域高度
|
|
1974
|
+
videoPreviewZIndex?: string // 预览层级
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
export type watermarkThemeVars = {
|
|
1978
|
+
watermarkOpacity?: string // 水印透明度
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
export type ConfigProviderThemeVars = baseThemeVars &
|
|
1982
|
+
actionSheetThemeVars &
|
|
1983
|
+
avatarThemeVars &
|
|
1984
|
+
backtopThemeVars &
|
|
1985
|
+
badgeThemeVars &
|
|
1986
|
+
buttonThemeVars &
|
|
1987
|
+
calendarThemeVars &
|
|
1988
|
+
calendarViewThemeVars &
|
|
1989
|
+
cardThemeVars &
|
|
1990
|
+
cascaderThemeVars &
|
|
1991
|
+
cellGroupThemeVars &
|
|
1992
|
+
cellThemeVars &
|
|
1993
|
+
checkboxThemeVars &
|
|
1994
|
+
circleThemeVars &
|
|
1995
|
+
collapseItemThemeVars &
|
|
1996
|
+
collapseThemeVars &
|
|
1997
|
+
countDownThemeVars &
|
|
1998
|
+
countToThemeVars &
|
|
1999
|
+
curtainThemeVars &
|
|
2000
|
+
datetimePickerThemeVars &
|
|
2001
|
+
dialogThemeVars &
|
|
2002
|
+
dividerThemeVars &
|
|
2003
|
+
dropMenuItemThemeVars &
|
|
2004
|
+
dropMenuThemeVars &
|
|
2005
|
+
emptyThemeVars &
|
|
2006
|
+
fabThemeVars &
|
|
2007
|
+
floatingPanelThemeVars &
|
|
2008
|
+
formItemThemeVars &
|
|
2009
|
+
gridItemThemeVars &
|
|
2010
|
+
iconThemeVars &
|
|
2011
|
+
imagePreviewThemeVars &
|
|
2012
|
+
imgCropperThemeVars &
|
|
2013
|
+
imgThemeVars &
|
|
2014
|
+
indexAnchorThemeVars &
|
|
2015
|
+
indexBarThemeVars &
|
|
2016
|
+
inputNumberThemeVars &
|
|
2017
|
+
keyboardThemeVars &
|
|
2018
|
+
loadingThemeVars &
|
|
2019
|
+
loadmoreThemeVars &
|
|
2020
|
+
navbarCapsuleThemeVars &
|
|
2021
|
+
navbarThemeVars &
|
|
2022
|
+
noticeBarThemeVars &
|
|
2023
|
+
notifyThemeVars &
|
|
2024
|
+
overlayThemeVars &
|
|
2025
|
+
paginationThemeVars &
|
|
2026
|
+
passwordInputThemeVars &
|
|
2027
|
+
pickerThemeVars &
|
|
2028
|
+
pickerViewThemeVars &
|
|
2029
|
+
popoverThemeVars &
|
|
2030
|
+
popupThemeVars &
|
|
2031
|
+
progressThemeVars &
|
|
2032
|
+
radioThemeVars &
|
|
2033
|
+
rateThemeVars &
|
|
2034
|
+
resizeThemeVars &
|
|
2035
|
+
searchThemeVars &
|
|
2036
|
+
segmentedThemeVars &
|
|
2037
|
+
selectPickerThemeVars &
|
|
2038
|
+
sidebarItemThemeVars &
|
|
2039
|
+
sidebarThemeVars &
|
|
2040
|
+
signatureThemeVars &
|
|
2041
|
+
skeletonThemeVars &
|
|
2042
|
+
sliderThemeVars &
|
|
2043
|
+
slideVerifyThemeVars &
|
|
2044
|
+
sortButtonThemeVars &
|
|
2045
|
+
stepThemeVars &
|
|
2046
|
+
swiperNavThemeVars &
|
|
2047
|
+
swiperThemeVars &
|
|
2048
|
+
switchThemeVars &
|
|
2049
|
+
tabbarItemThemeVars &
|
|
2050
|
+
tabbarThemeVars &
|
|
2051
|
+
tableThemeVars &
|
|
2052
|
+
tabsThemeVars &
|
|
2053
|
+
tagThemeVars &
|
|
2054
|
+
textareaThemeVars &
|
|
2055
|
+
textThemeVars &
|
|
2056
|
+
toastThemeVars &
|
|
2057
|
+
tooltipThemeVars &
|
|
2058
|
+
tourThemeVars &
|
|
2059
|
+
uploadThemeVars &
|
|
2060
|
+
videoPreviewThemeVars &
|
|
2061
|
+
watermarkThemeVars
|