@tplc/wot 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (328) hide show
  1. package/components/common/AbortablePromise.ts +36 -0
  2. package/components/common/abstracts/_config.scss +7 -0
  3. package/components/common/abstracts/_function.scss +76 -0
  4. package/components/common/abstracts/_mixin.scss +339 -0
  5. package/components/common/abstracts/variable.scss +1346 -0
  6. package/components/common/base64.ts +30 -0
  7. package/components/common/canvasHelper.ts +49 -0
  8. package/components/common/clickoutside.ts +34 -0
  9. package/components/common/dayjs.ts +157 -0
  10. package/components/common/event.ts +8 -0
  11. package/components/common/props.ts +51 -0
  12. package/components/common/util.ts +751 -0
  13. package/components/composables/useCell.ts +13 -0
  14. package/components/composables/useChildren.ts +122 -0
  15. package/components/composables/useCountDown.ts +138 -0
  16. package/components/composables/useLockScroll.ts +39 -0
  17. package/components/composables/useParent.ts +41 -0
  18. package/components/composables/usePopover.ts +193 -0
  19. package/components/composables/useQueue.ts +52 -0
  20. package/components/composables/useRaf.ts +37 -0
  21. package/components/composables/useTouch.ts +44 -0
  22. package/components/composables/useTranslate.ts +22 -0
  23. package/components/wd-action-sheet/index.scss +204 -0
  24. package/components/wd-action-sheet/types.ts +128 -0
  25. package/components/wd-action-sheet/wd-action-sheet.vue +174 -0
  26. package/components/wd-backtop/index.scss +25 -0
  27. package/components/wd-backtop/types.ts +37 -0
  28. package/components/wd-backtop/wd-backtop.vue +48 -0
  29. package/components/wd-badge/index.scss +59 -0
  30. package/components/wd-badge/types.ts +53 -0
  31. package/components/wd-badge/wd-badge.vue +69 -0
  32. package/components/wd-button/index.scss +340 -0
  33. package/components/wd-button/types.ts +112 -0
  34. package/components/wd-button/wd-button.vue +176 -0
  35. package/components/wd-calendar/index.scss +244 -0
  36. package/components/wd-calendar/types.ts +235 -0
  37. package/components/wd-calendar/wd-calendar.vue +456 -0
  38. package/components/wd-calendar-view/index.scss +9 -0
  39. package/components/wd-calendar-view/month/index.scss +151 -0
  40. package/components/wd-calendar-view/month/month.vue +391 -0
  41. package/components/wd-calendar-view/month/types.ts +19 -0
  42. package/components/wd-calendar-view/monthPanel/index.scss +89 -0
  43. package/components/wd-calendar-view/monthPanel/month-panel.vue +388 -0
  44. package/components/wd-calendar-view/monthPanel/types.ts +48 -0
  45. package/components/wd-calendar-view/types.ts +134 -0
  46. package/components/wd-calendar-view/utils.ts +451 -0
  47. package/components/wd-calendar-view/wd-calendar-view.vue +111 -0
  48. package/components/wd-calendar-view/year/index.scss +148 -0
  49. package/components/wd-calendar-view/year/types.ts +19 -0
  50. package/components/wd-calendar-view/year/year.vue +220 -0
  51. package/components/wd-calendar-view/yearPanel/index.scss +24 -0
  52. package/components/wd-calendar-view/yearPanel/types.ts +38 -0
  53. package/components/wd-calendar-view/yearPanel/year-panel.vue +140 -0
  54. package/components/wd-card/index.scss +70 -0
  55. package/components/wd-card/types.ts +30 -0
  56. package/components/wd-card/wd-card.vue +40 -0
  57. package/components/wd-cell/index.scss +189 -0
  58. package/components/wd-cell/types.ts +96 -0
  59. package/components/wd-cell/wd-cell.vue +135 -0
  60. package/components/wd-cell-group/index.scss +55 -0
  61. package/components/wd-cell-group/types.ts +41 -0
  62. package/components/wd-cell-group/wd-cell-group.vue +45 -0
  63. package/components/wd-checkbox/index.scss +285 -0
  64. package/components/wd-checkbox/types.ts +68 -0
  65. package/components/wd-checkbox/wd-checkbox.vue +185 -0
  66. package/components/wd-checkbox-group/index.scss +20 -0
  67. package/components/wd-checkbox-group/types.ts +59 -0
  68. package/components/wd-checkbox-group/wd-checkbox-group.vue +103 -0
  69. package/components/wd-circle/index.scss +18 -0
  70. package/components/wd-circle/types.ts +54 -0
  71. package/components/wd-circle/wd-circle.vue +318 -0
  72. package/components/wd-col/index.scss +19 -0
  73. package/components/wd-col/types.ts +15 -0
  74. package/components/wd-col/wd-col.vue +91 -0
  75. package/components/wd-col-picker/index.scss +241 -0
  76. package/components/wd-col-picker/types.ts +170 -0
  77. package/components/wd-col-picker/wd-col-picker.vue +550 -0
  78. package/components/wd-collapse/index.scss +55 -0
  79. package/components/wd-collapse/types.ts +63 -0
  80. package/components/wd-collapse/wd-collapse.vue +160 -0
  81. package/components/wd-collapse-item/index.scss +79 -0
  82. package/components/wd-collapse-item/types.ts +36 -0
  83. package/components/wd-collapse-item/wd-collapse-item.vue +182 -0
  84. package/components/wd-config-provider/types.ts +1023 -0
  85. package/components/wd-config-provider/wd-config-provider.vue +82 -0
  86. package/components/wd-count-down/index.scss +14 -0
  87. package/components/wd-count-down/types.ts +41 -0
  88. package/components/wd-count-down/utils.ts +52 -0
  89. package/components/wd-count-down/wd-count-down.vue +60 -0
  90. package/components/wd-count-to/index.scss +6 -0
  91. package/components/wd-count-to/types.ts +110 -0
  92. package/components/wd-count-to/wd-count-to.vue +134 -0
  93. package/components/wd-curtain/index.scss +80 -0
  94. package/components/wd-curtain/types.ts +45 -0
  95. package/components/wd-curtain/wd-curtain.vue +174 -0
  96. package/components/wd-datetime-picker/index.scss +243 -0
  97. package/components/wd-datetime-picker/types.ts +225 -0
  98. package/components/wd-datetime-picker/wd-datetime-picker.vue +827 -0
  99. package/components/wd-datetime-picker-view/index.scss +0 -0
  100. package/components/wd-datetime-picker-view/types.ts +137 -0
  101. package/components/wd-datetime-picker-view/wd-datetime-picker-view.vue +514 -0
  102. package/components/wd-divider/index.scss +32 -0
  103. package/components/wd-divider/types.ts +12 -0
  104. package/components/wd-divider/wd-divider.vue +29 -0
  105. package/components/wd-drop-menu/index.scss +89 -0
  106. package/components/wd-drop-menu/types.ts +38 -0
  107. package/components/wd-drop-menu/wd-drop-menu.vue +128 -0
  108. package/components/wd-drop-menu-item/index.scss +66 -0
  109. package/components/wd-drop-menu-item/types.ts +78 -0
  110. package/components/wd-drop-menu-item/wd-drop-menu-item.vue +230 -0
  111. package/components/wd-fab/index.scss +115 -0
  112. package/components/wd-fab/types.ts +61 -0
  113. package/components/wd-fab/wd-fab.vue +257 -0
  114. package/components/wd-form/index.scss +10 -0
  115. package/components/wd-form/types.ts +93 -0
  116. package/components/wd-form/wd-form.vue +185 -0
  117. package/components/wd-form-item/index.scss +17 -0
  118. package/components/wd-form-item/types.ts +22 -0
  119. package/components/wd-form-item/wd-form-item.vue +65 -0
  120. package/components/wd-gap/index.scss +9 -0
  121. package/components/wd-gap/types.ts +23 -0
  122. package/components/wd-gap/wd-gap.vue +39 -0
  123. package/components/wd-grid/index.scss +9 -0
  124. package/components/wd-grid/types.ts +54 -0
  125. package/components/wd-grid/wd-grid.vue +107 -0
  126. package/components/wd-grid-item/index.scss +137 -0
  127. package/components/wd-grid-item/types.ts +74 -0
  128. package/components/wd-grid-item/wd-grid-item.vue +181 -0
  129. package/components/wd-icon/index.scss +1222 -0
  130. package/components/wd-icon/types.ts +21 -0
  131. package/components/wd-icon/wd-icon.vue +53 -0
  132. package/components/wd-icon/wd-icons.ttf +0 -0
  133. package/components/wd-img/index.scss +19 -0
  134. package/components/wd-img/types.ts +53 -0
  135. package/components/wd-img/wd-img.vue +76 -0
  136. package/components/wd-img-cropper/index.scss +227 -0
  137. package/components/wd-img-cropper/types.ts +87 -0
  138. package/components/wd-img-cropper/wd-img-cropper.vue +659 -0
  139. package/components/wd-index-anchor/index.scss +34 -0
  140. package/components/wd-index-anchor/type.ts +9 -0
  141. package/components/wd-index-anchor/wd-index-anchor.vue +57 -0
  142. package/components/wd-index-bar/index.scss +39 -0
  143. package/components/wd-index-bar/type.ts +28 -0
  144. package/components/wd-index-bar/wd-index-bar.vue +158 -0
  145. package/components/wd-input/index.scss +326 -0
  146. package/components/wd-input/types.ts +182 -0
  147. package/components/wd-input/wd-input.vue +327 -0
  148. package/components/wd-input-number/index.scss +132 -0
  149. package/components/wd-input-number/types.ts +78 -0
  150. package/components/wd-input-number/wd-input-number.vue +221 -0
  151. package/components/wd-loading/index.scss +34 -0
  152. package/components/wd-loading/types.ts +31 -0
  153. package/components/wd-loading/wd-loading.vue +90 -0
  154. package/components/wd-loadmore/index.scss +39 -0
  155. package/components/wd-loadmore/types.ts +24 -0
  156. package/components/wd-loadmore/wd-loadmore.vue +53 -0
  157. package/components/wd-message-box/index.scss +121 -0
  158. package/components/wd-message-box/index.ts +95 -0
  159. package/components/wd-message-box/types.ts +116 -0
  160. package/components/wd-message-box/wd-message-box.vue +326 -0
  161. package/components/wd-navbar/index.scss +103 -0
  162. package/components/wd-navbar/types.ts +52 -0
  163. package/components/wd-navbar/wd-navbar.vue +142 -0
  164. package/components/wd-navbar-capsule/index.scss +65 -0
  165. package/components/wd-navbar-capsule/types.ts +0 -0
  166. package/components/wd-navbar-capsule/wd-navbar-capsule.vue +31 -0
  167. package/components/wd-notice-bar/index.scss +86 -0
  168. package/components/wd-notice-bar/types.ts +56 -0
  169. package/components/wd-notice-bar/wd-notice-bar.vue +223 -0
  170. package/components/wd-notify/index.scss +34 -0
  171. package/components/wd-notify/index.ts +59 -0
  172. package/components/wd-notify/types.ts +62 -0
  173. package/components/wd-notify/wd-notify.vue +83 -0
  174. package/components/wd-number-keyboard/index.scss +78 -0
  175. package/components/wd-number-keyboard/key/index.scss +79 -0
  176. package/components/wd-number-keyboard/key/index.vue +76 -0
  177. package/components/wd-number-keyboard/key/types.ts +11 -0
  178. package/components/wd-number-keyboard/types.ts +79 -0
  179. package/components/wd-number-keyboard/wd-number-keyboard.vue +173 -0
  180. package/components/wd-overlay/index.scss +17 -0
  181. package/components/wd-overlay/types.ts +25 -0
  182. package/components/wd-overlay/wd-overlay.vue +46 -0
  183. package/components/wd-pagination/index.scss +57 -0
  184. package/components/wd-pagination/types.ts +41 -0
  185. package/components/wd-pagination/wd-pagination.vue +121 -0
  186. package/components/wd-password-input/index.scss +123 -0
  187. package/components/wd-password-input/types.ts +48 -0
  188. package/components/wd-password-input/wd-password-input.vue +58 -0
  189. package/components/wd-picker/index.scss +216 -0
  190. package/components/wd-picker/types.ts +186 -0
  191. package/components/wd-picker/wd-picker.vue +409 -0
  192. package/components/wd-picker-view/index.scss +91 -0
  193. package/components/wd-picker-view/types.ts +162 -0
  194. package/components/wd-picker-view/wd-picker-view.vue +361 -0
  195. package/components/wd-popover/index.scss +123 -0
  196. package/components/wd-popover/types.ts +69 -0
  197. package/components/wd-popover/wd-popover.vue +216 -0
  198. package/components/wd-popup/index.scss +112 -0
  199. package/components/wd-popup/types.ts +68 -0
  200. package/components/wd-popup/wd-popup.vue +227 -0
  201. package/components/wd-progress/index.scss +62 -0
  202. package/components/wd-progress/types.ts +40 -0
  203. package/components/wd-progress/wd-progress.vue +201 -0
  204. package/components/wd-radio/index.scss +300 -0
  205. package/components/wd-radio/types.ts +42 -0
  206. package/components/wd-radio/wd-radio.vue +136 -0
  207. package/components/wd-radio-group/index.scss +23 -0
  208. package/components/wd-radio-group/types.ts +36 -0
  209. package/components/wd-radio-group/wd-radio-group.vue +54 -0
  210. package/components/wd-rate/index.scss +24 -0
  211. package/components/wd-rate/types.ts +91 -0
  212. package/components/wd-rate/wd-rate.vue +131 -0
  213. package/components/wd-resize/index.scss +26 -0
  214. package/components/wd-resize/types.ts +6 -0
  215. package/components/wd-resize/wd-resize.vue +155 -0
  216. package/components/wd-row/index.scss +10 -0
  217. package/components/wd-row/types.ts +16 -0
  218. package/components/wd-row/wd-row.vue +63 -0
  219. package/components/wd-search/index.scss +148 -0
  220. package/components/wd-search/types.ts +83 -0
  221. package/components/wd-search/wd-search.vue +237 -0
  222. package/components/wd-segmented/index.scss +97 -0
  223. package/components/wd-segmented/types.ts +68 -0
  224. package/components/wd-segmented/wd-segmented.vue +143 -0
  225. package/components/wd-select-picker/index.scss +177 -0
  226. package/components/wd-select-picker/types.ts +116 -0
  227. package/components/wd-select-picker/wd-select-picker.vue +486 -0
  228. package/components/wd-sidebar/index.scss +25 -0
  229. package/components/wd-sidebar/types.ts +28 -0
  230. package/components/wd-sidebar/wd-sidebar.vue +41 -0
  231. package/components/wd-sidebar-item/index.scss +93 -0
  232. package/components/wd-sidebar-item/types.ts +31 -0
  233. package/components/wd-sidebar-item/wd-sidebar-item.vue +114 -0
  234. package/components/wd-skeleton/index.scss +101 -0
  235. package/components/wd-skeleton/index.ts +1 -0
  236. package/components/wd-skeleton/types.ts +69 -0
  237. package/components/wd-skeleton/wd-skeleton.vue +135 -0
  238. package/components/wd-slider/index.scss +91 -0
  239. package/components/wd-slider/types.ts +104 -0
  240. package/components/wd-slider/wd-slider.vue +377 -0
  241. package/components/wd-sort-button/index.scss +86 -0
  242. package/components/wd-sort-button/types.ts +43 -0
  243. package/components/wd-sort-button/wd-sort-button.vue +76 -0
  244. package/components/wd-status-tip/index.scss +37 -0
  245. package/components/wd-status-tip/types.ts +59 -0
  246. package/components/wd-status-tip/wd-status-tip.vue +94 -0
  247. package/components/wd-step/index.scss +236 -0
  248. package/components/wd-step/types.ts +33 -0
  249. package/components/wd-step/wd-step.vue +151 -0
  250. package/components/wd-steps/index.scss +10 -0
  251. package/components/wd-steps/types.ts +59 -0
  252. package/components/wd-steps/wd-steps.vue +37 -0
  253. package/components/wd-sticky/index.scss +9 -0
  254. package/components/wd-sticky/types.ts +13 -0
  255. package/components/wd-sticky/wd-sticky.vue +190 -0
  256. package/components/wd-sticky-box/index.scss +6 -0
  257. package/components/wd-sticky-box/types.ts +20 -0
  258. package/components/wd-sticky-box/wd-sticky-box.vue +154 -0
  259. package/components/wd-swipe-action/index.scss +22 -0
  260. package/components/wd-swipe-action/types.ts +43 -0
  261. package/components/wd-swipe-action/wd-swipe-action.vue +307 -0
  262. package/components/wd-swiper/index.scss +23 -0
  263. package/components/wd-swiper/types.ts +189 -0
  264. package/components/wd-swiper/wd-swiper.vue +202 -0
  265. package/components/wd-swiper-nav/index.scss +153 -0
  266. package/components/wd-swiper-nav/types.ts +42 -0
  267. package/components/wd-swiper-nav/wd-swiper-nav.vue +37 -0
  268. package/components/wd-switch/index.scss +58 -0
  269. package/components/wd-switch/types.ts +56 -0
  270. package/components/wd-switch/wd-switch.vue +83 -0
  271. package/components/wd-tab/index.scss +8 -0
  272. package/components/wd-tab/types.ts +20 -0
  273. package/components/wd-tab/wd-tab.vue +100 -0
  274. package/components/wd-tabbar/index.scss +57 -0
  275. package/components/wd-tabbar/types.ts +88 -0
  276. package/components/wd-tabbar/wd-tabbar.vue +104 -0
  277. package/components/wd-tabbar-item/index.scss +52 -0
  278. package/components/wd-tabbar-item/types.ts +51 -0
  279. package/components/wd-tabbar-item/wd-tabbar-item.vue +101 -0
  280. package/components/wd-table/index.scss +132 -0
  281. package/components/wd-table/types.ts +69 -0
  282. package/components/wd-table/wd-table.vue +255 -0
  283. package/components/wd-table-col/index.scss +44 -0
  284. package/components/wd-table-col/types.ts +54 -0
  285. package/components/wd-table-col/wd-table-col.vue +149 -0
  286. package/components/wd-tabs/index.scss +280 -0
  287. package/components/wd-tabs/types.ts +71 -0
  288. package/components/wd-tabs/wd-tabs.vue +528 -0
  289. package/components/wd-tag/index.scss +115 -0
  290. package/components/wd-tag/types.ts +81 -0
  291. package/components/wd-tag/wd-tag.vue +154 -0
  292. package/components/wd-text/index.scss +34 -0
  293. package/components/wd-text/types.ts +98 -0
  294. package/components/wd-text/wd-text.vue +138 -0
  295. package/components/wd-textarea/index.scss +343 -0
  296. package/components/wd-textarea/types.ts +298 -0
  297. package/components/wd-textarea/wd-textarea.vue +303 -0
  298. package/components/wd-toast/index.scss +66 -0
  299. package/components/wd-toast/index.ts +109 -0
  300. package/components/wd-toast/types.ts +76 -0
  301. package/components/wd-toast/wd-toast.vue +212 -0
  302. package/components/wd-tooltip/index.scss +61 -0
  303. package/components/wd-tooltip/types.ts +102 -0
  304. package/components/wd-tooltip/wd-tooltip.vue +167 -0
  305. package/components/wd-transition/index.scss +91 -0
  306. package/components/wd-transition/types.ts +89 -0
  307. package/components/wd-transition/wd-transition.vue +221 -0
  308. package/components/wd-upload/index.scss +173 -0
  309. package/components/wd-upload/types.ts +378 -0
  310. package/components/wd-upload/utils.ts +152 -0
  311. package/components/wd-upload/wd-upload.vue +737 -0
  312. package/components/wd-video-preview/index.scss +34 -0
  313. package/components/wd-video-preview/types.ts +32 -0
  314. package/components/wd-video-preview/wd-video-preview.vue +76 -0
  315. package/components/wd-watermark/index.scss +18 -0
  316. package/components/wd-watermark/types.ts +82 -0
  317. package/components/wd-watermark/wd-watermark.vue +592 -0
  318. package/components/wot-design-uni/wot-design-uni.vue +14 -0
  319. package/global.d.ts +108 -0
  320. package/index.ts +30 -0
  321. package/locale/index.ts +41 -0
  322. package/locale/lang/en-US.ts +128 -0
  323. package/locale/lang/th-TH.ts +127 -0
  324. package/locale/lang/vi-VN.ts +89 -0
  325. package/locale/lang/zh-CN.ts +127 -0
  326. package/locale/lang/zh-HK.ts +84 -0
  327. package/locale/lang/zh-TW.ts +84 -0
  328. package/package.json +20 -0
@@ -0,0 +1,1023 @@
1
+ import type { ExtractPropTypes, PropType } from 'vue'
2
+ import { makeStringProp, baseProps } from '../common/props'
3
+
4
+ export type ConfigProviderTheme = 'light' | 'dark'
5
+
6
+ export const configProviderProps = {
7
+ ...baseProps,
8
+ /**
9
+ * 主题风格,设置为 dark 来开启深色模式,全局生效
10
+ */
11
+ theme: makeStringProp<ConfigProviderTheme>('light'),
12
+ /**
13
+ * 自定义主题变量
14
+ */
15
+ themeVars: {
16
+ type: Object as PropType<ConfigProviderThemeVars>,
17
+ default: () => ({}),
18
+ },
19
+ }
20
+
21
+ export type ConfigProviderProps = ExtractPropTypes<typeof configProviderProps>
22
+
23
+ export type baseThemeVars = {
24
+ colorTheme?: string // 主题色
25
+ colorWhite?: string // 用于mix的白色
26
+ colorBlack?: string // 用于mix的黑色
27
+ colorSuccess?: string // 成功色
28
+ colorWarning?: string // 警告色
29
+ colorDanger?: string // 危险出错色
30
+ colorPurple?: string // 紫色
31
+ colorYellow?: string // 黄色
32
+ colorBlue?: string // 蓝色
33
+ colorInfo?: string // 信息色
34
+ colorGray1?: string // 灰色1
35
+ colorGray2?: string // 灰色2
36
+ colorGray3?: string // 灰色3
37
+ colorGray4?: string // 灰色4
38
+ colorGray5?: string // 灰色5
39
+ colorGray6?: string // 灰色6
40
+ colorGray7?: string // 灰色7
41
+ colorGray8?: string // 灰色8
42
+ fontGray1?: string // 字体灰色1
43
+ fontGray2?: string // 字体灰色2
44
+ fontGray3?: string // 字体灰色3
45
+ fontGray4?: string // 字体灰色4
46
+ fontWhite1?: string // 字体白色1
47
+ fontWhite2?: string // 字体白色2
48
+ fontWhite3?: string // 字体白色3
49
+ fontWhite4?: string // 字体白色4
50
+ colorTitle?: string // 模块标题/重要正文
51
+ colorContent?: string // 普通正文
52
+ colorSecondary?: string // 次要信息,注释/补充/正文
53
+ colorAid?: string // 辅助文字字号,弱化信息,引导性/不可点文字
54
+ colorTip?: string // 失效、默认提示文字
55
+ colorBorder?: string // 控件边框线
56
+ colorBorderLight?: string // 分割线颜色
57
+ colorBg?: string // 背景色、禁用填充色
58
+ darkBackground?: string // 深色背景1
59
+ darkBackground2?: string // 深色背景2
60
+ darkBackground3?: string // 深色背景3
61
+ darkBackground4?: string // 深色背景4
62
+ darkBackground5?: string // 深色背景5
63
+ darkBackground6?: string // 深色背景6
64
+ darkBackground7?: string // 深色背景7
65
+ darkColor?: string // 深色字体1
66
+ darkColor2?: string // 深色字体2
67
+ darkColor3?: string // 深色字体3
68
+ darkColorGray?: string // 深色灰色
69
+ darkBorderColor?: string // 深色边框颜色
70
+ colorIcon?: string // icon颜色
71
+ colorIconActive?: string // icon颜色hover
72
+ colorIconDisabled?: string // icon颜色disabled
73
+ fsBig?: string // 大型标题字号
74
+ fsImportant?: string // 重要数据字号
75
+ fsTitle?: string // 标题字号/重要正文字号
76
+ fsContent?: string // 普通正文字号
77
+ fsSecondary?: string // 次要信息字号
78
+ fsAid?: string // 辅助文字字号
79
+ fwMedium?: string // 字重500
80
+ fwSemibold?: string // 字重600
81
+ sizeSidePadding?: string // 屏幕两边留白padding
82
+ }
83
+
84
+ export type actionSheetThemeVars = {
85
+ actionSheetWeight?: string
86
+ actionSheetRadius?: string
87
+ actionSheetLoadingSize?: string
88
+ actionSheetActionHeight?: string
89
+ actionSheetColor?: string
90
+ actionSheetFs?: string
91
+ actionSheetActiveColor?: string
92
+ actionSheetSubnameFs?: string
93
+ actionSheetSubnameColor?: string
94
+ actionSheetDisabledColor?: string
95
+ actionSheetBg?: string
96
+ actionSheetTitleHeight?: string
97
+ actionSheetTitleFs?: string
98
+ actionSheetCloseFs?: string
99
+ actionSheetCloseColor?: string
100
+ actionSheetCloseTop?: string
101
+ actionSheetCloseRight?: string
102
+ actionSheetCancelColor?: string
103
+ actionSheetCancelHeight?: string
104
+ actionSheetCancelBg?: string
105
+ actionSheetCancelRadius?: string
106
+ actionSheetPanelPadding?: string
107
+ actionSheetPanelImgFs?: string
108
+ actionSheetPanelImgRadius?: string
109
+ }
110
+
111
+ export type badgeThemeVars = {
112
+ badgeBg?: string
113
+ badgeColor?: string
114
+ badgeFs?: string
115
+ badgePadding?: string
116
+ badgeHeight?: string
117
+ badgePrimary?: string
118
+ badgeSuccess?: string
119
+ badgeWarning?: string
120
+ badgeDanger?: string
121
+ badgeInfo?: string
122
+ badgeDotSize?: string
123
+ badgeBorder?: string
124
+ }
125
+
126
+ export type buttonThemeVars = {
127
+ buttonDisabledOpacity?: string
128
+
129
+ buttonSmallHeight?: string
130
+ buttonSmallPadding?: string
131
+ buttonSmallFs?: string
132
+ buttonSmallRadius?: string
133
+ buttonSmallLoading?: string
134
+
135
+ buttonMediumHeight?: string
136
+ buttonMediumPadding?: string
137
+ buttonMediumFs?: string
138
+ buttonMediumRadius?: string
139
+ buttonMediumLoading?: string
140
+ buttonMediumBoxShadowSize?: string
141
+
142
+ buttonLargeHeight?: string
143
+ buttonLargePadding?: string
144
+ buttonLargeFs?: string
145
+ buttonLargeRadius?: string
146
+ buttonLargeLoading?: string
147
+ buttonLargeBoxShadowSize?: string
148
+
149
+ buttonIconFs?: string
150
+ buttonIconSize?: string
151
+ buttonIconColor?: string
152
+ buttonIconDisabledColor?: string
153
+
154
+ buttonNormalColor?: string
155
+ buttonNormalDisabledColor?: string
156
+
157
+ buttonPlainBgColor?: string
158
+
159
+ buttonPrimaryColor?: string
160
+ buttonPrimaryBgColor?: string
161
+ buttonPrimaryBoxShadowColor?: string
162
+
163
+ buttonSuccessColor?: string
164
+ buttonSuccessBgColor?: string
165
+ buttonSuccessBoxShadowColor?: string
166
+
167
+ buttonInfoColor?: string
168
+ buttonInfoBgColor?: string
169
+ buttonInfoPlainBorderColor?: string
170
+ buttonInfoPlainNormalColor?: string
171
+
172
+ buttonWarningColor?: string
173
+ buttonWarningBgColor?: string
174
+ buttonWarningBoxShadowColor?: string
175
+
176
+ buttonErrorColor?: string
177
+ buttonErrorBgColor?: string
178
+ buttonErrorBoxShadowColor?: string
179
+
180
+ buttonTextHoverOpacity?: string
181
+ }
182
+
183
+ export type cellThemeVars = {
184
+ cellPadding?: string
185
+ cellLineHeight?: string
186
+
187
+ cellGroupTitleFs?: string
188
+ cellGroupPadding?: string
189
+ cellGroupTitleColor?: string
190
+ cellGroupValueFs?: string
191
+ cellGroupValueColor?: string
192
+
193
+ cellWrapperPadding?: string
194
+ cellWrapperPaddingLarge?: string
195
+
196
+ cellWrapperPaddingWithLabel?: string
197
+ cellIconRight?: string
198
+ cellIconSize?: string
199
+ cellTitleFs?: string
200
+ cellTitleColor?: string
201
+ cellLabelFs?: string
202
+ cellLabelColor?: string
203
+ cellValueFs?: string
204
+ cellValueColor?: string
205
+ cellArrowSize?: string
206
+ cellArrowColor?: string
207
+ cellTapBg?: string
208
+
209
+ cellTitleFsLarge?: string
210
+ cellLabelFsLarge?: string
211
+ cellIconSizeLarge?: string
212
+
213
+ cellRequiredColor?: string
214
+ cellRequiredSize?: string
215
+ cellVerticalTop?: string
216
+ }
217
+
218
+ export type calendarThemeVars = {
219
+ calendarFs?: string
220
+ calendarPanelPadding?: string
221
+ calendarPanelTitleFs?: string
222
+ calendarPanelTitleColor?: string
223
+ calendarWeekColor?: string
224
+ calendarWeekHeight?: string
225
+ calendarWeekFs?: string
226
+ calendarDayFs?: string
227
+ calendarDayColor?: string
228
+ calendarDayFw?: string
229
+ calendarDayHeight?: string
230
+ calendarMonthWidth?: string
231
+ calendarActiveColor?: string
232
+ calendarDisabledColor?: string
233
+ calendarRangeColor?: string
234
+ calendarActiveBorder?: string
235
+ calendarInfoFs?: string
236
+ }
237
+
238
+ export type checkboxThemeVars = {
239
+ checkboxMargin?: string
240
+ checkboxBg?: string
241
+ checkboxLabelMargin?: string
242
+ checkboxSize?: string
243
+ checkboxIconSize?: string
244
+ checkboxBorderColor?: string
245
+ checkboxCheckColor?: string
246
+ checkboxLabelFs?: string
247
+ checkboxLabelColor?: string
248
+ checkboxCheckedColor?: string
249
+
250
+ checkboxDisabledColor?: string
251
+ checkboxDisabledLabelColor?: string
252
+ checkboxDisabledCheckColor?: string
253
+ checkboxDisabledCheckBg?: string
254
+ checkboxSquareRadius?: string
255
+
256
+ checkboxLargeSize?: string
257
+ checkboxLargeLabelFs?: string
258
+
259
+ checkboxButtonHeight?: string
260
+ checkboxButtonMinWidth?: string
261
+ checkboxButtonRadius?: string
262
+ checkboxButtonBg?: string
263
+ checkboxButtonFontSize?: string
264
+ checkboxButtonBorder?: string
265
+ checkboxButtonDisabledBorder?: string
266
+ }
267
+
268
+ export type collapseThemeVars = {
269
+ collapseSidePadding?: string
270
+ collapseBodyPadding?: string
271
+ collapseHeaderPadding?: string
272
+ collapseTitleColor?: string
273
+ collapseTitleFs?: string
274
+ collapseArrowSize?: string
275
+ collapseArrowColor?: string
276
+ collapseBodyFs?: string
277
+ collapseBodyColor?: string
278
+ collapseDisabledColor?: string
279
+ collapseRetractFs?: string
280
+ collapseMoreColor?: string
281
+ }
282
+
283
+ export type dividerThemeVars = {
284
+ dividerPadding?: string
285
+ dividerColor?: string
286
+ dividerLineColor?: string
287
+ dividerFs?: string
288
+ }
289
+
290
+ export type dropMenuThemeVars = {
291
+ dropMenuHeight?: string
292
+ dropMenuColor?: string
293
+ dropMenuFs?: string
294
+ dropMenuArrowFs?: string
295
+
296
+ dropMenuSidePadding?: string
297
+ dropMenuDisabledColor?: string
298
+ dropMenuItemHeight?: string
299
+ dropMenuItemColor?: string
300
+ dropMenuItemFs?: string
301
+ dropMenuItemColorActive?: string
302
+ dropMenuItemColorTip?: string
303
+ dropMenuItemFsTip?: string
304
+ dropMenuOptionCheckSize?: string
305
+ dropMenuLineColor?: string
306
+ dropMenuLineHeight?: string
307
+ }
308
+
309
+ export type inputNumberThemeVars = {
310
+ inputNumberColor?: string
311
+ inputNumberBorderColor?: string
312
+ inputNumberDisabledColor?: string
313
+ inputNumberHeight?: string
314
+ inputNumberBtnWidth?: string
315
+ inputNumberInputWidth?: string
316
+ inputNumberRadius?: string
317
+ inputNumberFs?: string
318
+ inputNumberIconSize?: string
319
+ inputNumberIconColor?: string
320
+ }
321
+
322
+ export type inputThemeVars = {
323
+ inputPadding?: string
324
+ inputBorderColor?: string
325
+ inputNotEmptyBorderColor?: string
326
+ inputFs?: string
327
+ inputFsLarge?: string
328
+ inputIconMargin?: string
329
+ inputColor?: string
330
+ inputPlaceholderColor?: string
331
+ inputDisabledColor?: string
332
+ inputErrorColor?: string
333
+ inputIconColor?: string
334
+ inputClearColor?: string
335
+ inputCountColor?: string
336
+ inputCountCurrentColor?: string
337
+ inputBg?: string
338
+
339
+ inputCellBg?: string
340
+ inputCellBorderColor?: string
341
+ inputCellPadding?: string
342
+ inputCellPaddingLarge?: string
343
+ inputCellHeight?: string
344
+ inputCellLabelWidth?: string
345
+ inputInnerHeight?: string
346
+ inputInnerHeightNoBorder?: string
347
+ inputCountFs?: string
348
+ inputCountFsLarge?: string
349
+ inputIconSize?: string
350
+ inputIconSizeLarge?: string
351
+ }
352
+
353
+ export type textareaThemeVars = {
354
+ textareaPadding?: string
355
+ textareaBorderColor?: string
356
+ textareaNotEmptyBorderColor?: string
357
+ textareaFs?: string
358
+ textareaFsLarge?: string
359
+ textareaIconMargin?: string
360
+ textareaColor?: string
361
+ textareaIconColor?: string
362
+ textareaClearColor?: string
363
+ textareaCountColor?: string
364
+ textareaCountCurrentColor?: string
365
+ textareaBg?: string
366
+ textareaCellBorderColor?: string
367
+ textareaCellPadding?: string
368
+ textareaCellPaddingLarge?: string
369
+ textareaCellHeight?: string
370
+ textareaCountFs?: string
371
+ textareaCountFsLarge?: string
372
+ textareaIconSize?: string
373
+ textareaIconSizeLarge?: string
374
+ }
375
+
376
+ export type loadmoreThemeVars = {
377
+ loadmoreHeight?: string
378
+ loadmoreColor?: string
379
+ loadmoreFs?: string
380
+ loadmoreErrorColor?: string
381
+ loadmoreRefreshFs?: string
382
+ loadmoreLoadingSize?: string
383
+ }
384
+
385
+ export type messageBoxThemeVars = {
386
+ messageBoxWidth?: string
387
+ messageBoxBg?: string
388
+ messageBoxRadius?: string
389
+ messageBoxPadding?: string
390
+ messageBoxTitleFs?: string
391
+ messageBoxTitleColor?: string
392
+ messageBoxContentFs?: string
393
+ messageBoxContentColor?: string
394
+ messageBoxContentMaxHeight?: string
395
+ messageBoxContentScrollbarWidth?: string
396
+ messageBoxContentScrollbarColor?: string
397
+ messageBoxInputErrorColor?: string
398
+ }
399
+
400
+ export type noticeBarThemeVars = {
401
+ noticeBarFs?: string
402
+ noticeBarLineHeight?: string
403
+ noticeBarBorderRadius?: string
404
+ noticeBarPadding?: string
405
+ noticeBarWarningBg?: string
406
+ noticeBarInfoBg?: string
407
+ noticeBarDangerBg?: string
408
+ noticeBarWarningColor?: string
409
+ noticeBarInfoColor?: string
410
+ noticeBarDangerColor?: string
411
+ noticeBarPrefixSize?: string
412
+ noticeBarCloseBg?: string
413
+ noticeBarCloseSize?: string
414
+ noticeBarCloseColor?: string
415
+ noticeBarWrapPadding?: string
416
+ }
417
+
418
+ export type paginationThemeVars = {
419
+ paginationContentPadding?: string
420
+ paginationMessagePadding?: string
421
+ paginationMessageFs?: string
422
+ paginationMessageColor?: string
423
+ paginationNavBorder?: string
424
+ paginationNavBorderRadius?: string
425
+ paginationNavFs?: string
426
+ paginationNavWidth?: string
427
+ paginationNavColor?: string
428
+ paginationNavContentFs?: string
429
+ paginationNavSepatatorPadding?: string
430
+ paginationNavCurrentColor?: string
431
+ paginationIconSize?: string
432
+ }
433
+
434
+ export type pickerThemeVars = {
435
+ pickerToolbarHeight?: string
436
+ pickerActionHeight?: string
437
+ pickerToolbarFinishColor?: string
438
+ pickerToolbarCancelColor?: string
439
+ pickerToolbarFs?: string
440
+ pickerToolbarTitleColor?: string
441
+ pickerColumnFs?: string
442
+ pickerBg?: string
443
+ pickerColumnActiveFs?: string
444
+ pickerColumnColor?: string
445
+ pickerColumnHeight?: string
446
+ pickerColumnItemHeight?: string
447
+ pickerColumnSelectBg?: string
448
+ pickerLoadingButtonColor?: string
449
+ pickerColumnPadding?: string
450
+
451
+ pickerColumnDisabledColor?: string
452
+ pickerMask?: string
453
+ pickerLoadingBg?: string
454
+ pickerRegionSeparatorColor?: string
455
+ pickerCellArrowSizeLarge?: string
456
+
457
+ pickerRegionColor?: string
458
+ pickerRegionBgActiveColor?: string
459
+
460
+ pickerRegionFs?: string
461
+ }
462
+
463
+ export type colPickerThemeVars = {
464
+ colPickerSelectedHeight?: string
465
+ colPickerSelectedPadding?: string
466
+ colPickerSelectedFs?: string
467
+ colPickerSelectedColor?: string
468
+ colPickerSelectedFw?: string
469
+ colPickerLineWidth?: string
470
+ colPickerLineHeight?: string
471
+ colPickerLineColor?: string
472
+ colPickerLineBoxShadow?: string
473
+ colPickerListHeight?: string
474
+ colPickerListPaddingBottom?: string
475
+ colPickerListColor?: string
476
+ colPickerListColorDisabled?: string
477
+ colPickerListColorTip?: string
478
+ colPickerListFs?: string
479
+ colPickerListFsTip?: string
480
+ colPickerListItemPadding?: string
481
+ colPickerListCheckedIconSize?: string
482
+ colPickerListColorChecked?: string
483
+ }
484
+
485
+ export type overlayThemeVars = {
486
+ overlayBg?: string
487
+ overlayBgDark?: string
488
+ }
489
+
490
+ export type popupThemeVars = {
491
+ popupCloseSize?: string
492
+ popupCloseColor?: string
493
+ }
494
+
495
+ export type progressThemeVars = {
496
+ progressPadding?: string
497
+ progressBg?: string
498
+ progressDangerColor?: string
499
+ progressSuccessColor?: string
500
+ progressColor?: string
501
+ progressLinearSuccessColor?: string
502
+ progressLinearDangerColor?: string
503
+ progressHeight?: string
504
+ progressLabelColor?: string
505
+ progressLabelFs?: string
506
+ progressIconFs?: string
507
+ }
508
+
509
+ export type radioThemeVars = {
510
+ radioMargin?: string
511
+ radioLabelMargin?: string
512
+ radioSize?: string
513
+ radioBg?: string
514
+ radioLabelFs?: string
515
+ radioLabelColor?: string
516
+ radioCheckedColor?: string
517
+ radioDisabledColor?: string
518
+ radioDisabledLabelColor?: string
519
+
520
+ radioLargeSize?: string
521
+ radioLargeLabelFs?: string
522
+
523
+ radioButtonHeight?: string
524
+ radioButtonMinWidth?: string
525
+ radioButtonMaxWidth?: string
526
+ radioButtonRadius?: string
527
+ radioButtonBg?: string
528
+ radioButtonFs?: string
529
+ radioButtonBorder?: string
530
+ radioButtonDisabledBorder?: string
531
+
532
+ radioDotSize?: string
533
+ radioDotLargeSize?: string
534
+ radioDotCheckedBg?: string
535
+ radioDotCheckedBorderColor?: string
536
+ radioDotBorderColor?: string
537
+ radioDotDisabledBorder?: string
538
+ radioDotDisabledBg?: string
539
+ }
540
+
541
+ export type searchThemeVars = {
542
+ searchSidePadding?: string
543
+ searchPadding?: string
544
+ searchInputRadius?: string
545
+ searchInputBg?: string
546
+ searchInputHeight?: string
547
+ searchInputPadding?: string
548
+ searchInputFs?: string
549
+ searchInputColor?: string
550
+ searchIconColor?: string
551
+ searchIconSize?: string
552
+ searchClearIconSize?: string
553
+ searchPlaceholderColor?: string
554
+ searchCancelPadding?: string
555
+ searchCancelFs?: string
556
+ searchCancelColor?: string
557
+ searchLightBg?: string
558
+ }
559
+
560
+ export type sliderThemeVars = {
561
+ sliderFs?: string
562
+ sliderHandleRadius?: string
563
+ sliderHandleBg?: string
564
+ sliderAxieHeight?: string
565
+ sliderColor?: string
566
+ sliderAxieBg?: string
567
+ sliderLineColor?: string
568
+ sliderDisabledColor?: string
569
+ }
570
+
571
+ export type sortButtonThemeVars = {
572
+ sortButtonFs?: string
573
+ sortButtonColor?: string
574
+ sortButtonHeight?: string
575
+ sortButtonLineHeight?: string
576
+ sortButtonLineColor?: string
577
+ }
578
+
579
+ export type stepsThemeVars = {
580
+ stepsIconSize?: string
581
+ stepsInactiveColor?: string
582
+ stepsFinishedColor?: string
583
+ stepsIconTextFs?: string
584
+ stepsErrorColor?: string
585
+ stepsTitleFs?: string
586
+ stepsTitleFw?: string
587
+ stepsLabelFs?: string
588
+ stepsDescriptionColor?: string
589
+ stepsIsIconWidth?: string
590
+ stepsLineColor?: string
591
+ stepsDotSize?: string
592
+ stepsDotActiveSize?: string
593
+ }
594
+
595
+ export type switchThemeVars = {
596
+ switchSize?: string
597
+ switchWidth?: string
598
+ switchHeight?: string
599
+ switchCircleSize?: string
600
+ switchBorderColor?: string
601
+ switchActiveColor?: string
602
+ switchActiveShadowColor?: string
603
+ switchInactiveColor?: string
604
+ switchInactiveShadowColor?: string
605
+ }
606
+
607
+ export type tabsThemeVars = {
608
+ tabsNavArrowFs?: string
609
+ tabsNavArrowOpenFs?: string
610
+ tabsNavWidth?: string
611
+ tabsNavHeight?: string
612
+ tabsNavFs?: string
613
+ tabsNavColor?: string
614
+ tabsNavBg?: string
615
+ tabsNavActiveColor?: string
616
+ tabsNavDisabledColor?: string
617
+ tabsNavLineHeight?: string
618
+ tabsNavLineWidth?: string
619
+ tabsNavLineBgColor?: string
620
+ tabsNavMapFs?: string
621
+ tabsNavMapColor?: string
622
+ tabsNavMapArrowColor?: string
623
+ tabsNavMapBtnBeforeBg?: string
624
+ tabsNavMapButtonBackColor?: string
625
+ tabsNavMapButtonRadius?: string
626
+ tabsNavMapModalBg?: string
627
+ }
628
+
629
+ export type tagThemeVars = {
630
+ tagFs?: string
631
+ tagColor?: string
632
+ tagSmallFs?: string
633
+ tagInfoColor?: string
634
+ tagPrimaryColor?: string
635
+ tagDangerColor?: string
636
+ tagWarningColor?: string
637
+ tagSuccessColor?: string
638
+ tagInfoBg?: string
639
+ tagPrimaryBg?: string
640
+ tagDangerBg?: string
641
+ tagWarningBg?: string
642
+ tagSuccessBg?: string
643
+ tagRoundColor?: string
644
+ tagRoundBorderColor?: string
645
+ tagRoundRadius?: string
646
+ tagMarkRadius?: string
647
+ tagCloseSize?: string
648
+ tagCloseColor?: string
649
+ tagCloseActiveColor?: string
650
+ }
651
+
652
+ export type toastThemeVars = {
653
+ toastPadding?: string
654
+ toastMaxWidth?: string
655
+ toastRadius?: string
656
+ toastBg?: string
657
+ toastFs?: string
658
+ toastWithIconMinWidth?: string
659
+ toastIconSize?: string
660
+ toastIconMarginRight?: string
661
+ toastLoadingPadding?: string
662
+ toastBoxShadow?: string
663
+ }
664
+
665
+ export type loadingThemeVars = {
666
+ loadingSize?: string
667
+ }
668
+
669
+ export type tooltipThemeVars = {
670
+ tooltipBg?: string
671
+ tooltipColor?: string
672
+ tooltipRadius?: string
673
+ tooltipArrowSize?: string
674
+ tooltipFs?: string
675
+ tooltipBlur?: string
676
+ tooltipPadding?: string
677
+ tooltipCloseSize?: string
678
+ tooltipZIndex?: string
679
+ tooltipLineHeight?: string
680
+ }
681
+
682
+ export type popoverThemeVars = {
683
+ popoverBg?: string
684
+ popoverColor?: string
685
+ popoverBoxShadow?: string
686
+ popoverArrowBoxShadow?: string
687
+ popoverBorderColor?: string
688
+ popoverRadius?: string
689
+ popoverArrowSize?: string
690
+ popoverFs?: string
691
+ popoverPadding?: string
692
+ popoverLineHeight?: string
693
+ popoverZIndex?: string
694
+ }
695
+
696
+ export type gridItemThemeVars = {
697
+ gridItemFs?: string
698
+ gridItemBg?: string
699
+ gridItemPadding?: string
700
+ gridItemBorderColor?: string
701
+ }
702
+
703
+ export type statustipThemeVars = {
704
+ statustipFs?: string
705
+ statustipColor?: string
706
+ statustipLineHeight?: string
707
+ statustipPadding?: string
708
+ }
709
+
710
+ export type cardThemeVars = {
711
+ cardBg?: string
712
+ cardFs?: string
713
+ cardPadding?: string
714
+ cardFooterPadding?: string
715
+ cardShadowColor?: string
716
+ cardRadius?: string
717
+ cardLineHeight?: string
718
+ cardMargin?: string
719
+ cardTitleColor?: string
720
+ cardTitleFs?: string
721
+ cardContentBorderColor?: string
722
+ cardRectangleTitlePadding?: string
723
+ cardRectangleContentPadding?: string
724
+ cardRectangleFooterPadding?: string
725
+ cardContentColor?: string
726
+ cardContentLineHeight?: string
727
+ cardContentMargin?: string
728
+ cardContentRectangleMargin?: string
729
+ }
730
+
731
+ export type uploadThemeVars = {
732
+ uploadSize?: string
733
+ uploadEvokeIconSize?: string
734
+ uploadEvokeBg?: string
735
+ uploadEvokeColor?: string
736
+ uploadEvokeDisabledColor?: string
737
+ uploadCloseIconSize?: string
738
+ uploadCloseIconColor?: string
739
+ uploadProgressFs?: string
740
+ uploadFileFs?: string
741
+ uploadFileColor?: string
742
+ uploadPreviewNameFs?: string
743
+ uploadPreviewIconSize?: string
744
+ uploadPreviewNameBg?: string
745
+ uploadPreviewNameHeight?: string
746
+ uploadCoverIconSize?: string
747
+ }
748
+
749
+ export type curtainThemeVars = {
750
+ curtainContentRadius?: string
751
+ curtainContentCloseColor?: string
752
+ curtainContentCloseFs?: string
753
+ }
754
+
755
+ export type notifyThemeVars = {
756
+ notifyTextColor?: string
757
+ notifyPadding?: string
758
+ notifyFontSize?: string
759
+ notifyLineHeight?: string
760
+ notifyPrimaryBackground?: string
761
+ notifySuccessBackground?: string
762
+ notifyDangerBackground?: string
763
+ notifyWarningBackground?: string
764
+ }
765
+
766
+ export type skeletonThemeVars = {
767
+ skeletonBackgroundColor?: string
768
+ skeletonAnimationGradient?: string
769
+ skeletonAnimationFlashed?: string
770
+ skeletonTextHeightDefault?: string
771
+ skeletonRectHeightDefault?: string
772
+ skeletonCircleHeightDefault?: string
773
+ skeletonRowMarginBottom?: string
774
+ skeletonBorderRadiusText?: string
775
+ skeletonBorderRadiusRect?: string
776
+ skeletonBorderRadiusCircle?: string
777
+ }
778
+
779
+ export type circleThemeVars = {
780
+ circleTextColor?: string
781
+ }
782
+
783
+ export type swiperThemeVars = {
784
+ swiperRadius?: string
785
+ swiperItemPadding?: string
786
+ }
787
+
788
+ export type swiperNavThemeVars = {
789
+ // dot & dots-bar
790
+ swiperNavDotColor?: string
791
+ swiperNavDotActiveColor?: string
792
+ swiperNavDotSize?: string
793
+ swiperNavDotsBarActiveWidth?: string
794
+ // fraction
795
+ swiperNavFractionColor?: string
796
+ swiperNavFractionBgColor?: string
797
+ swiperNavFractionHeight?: string
798
+ swiperNavFractionFontSize?: string
799
+ // button
800
+ swiperNavBtnColor?: string
801
+ swiperNavBtnBgColor?: string
802
+ swiperNavBtnSize?: string
803
+ }
804
+
805
+ export type segmentedThemeVars = {
806
+ segmentedPadding?: string
807
+ segmentedItemBgColor?: string
808
+ segmentedItemColor?: string
809
+ segmentedItemAcitveBg?: string
810
+ segmentedItemDisabledColor?: string
811
+ }
812
+
813
+ export type tabbarThemeVars = {
814
+ tabbarHeight?: string
815
+ tabbarBoxShadow?: string
816
+ }
817
+
818
+ export type tabbarItemThemeVars = {
819
+ tabbarItemTitleFontSize?: string
820
+ tabbarItemTitleLineHeight?: string
821
+ tabbarInactiveColor?: string
822
+ tabbarActiveColor?: string
823
+ tabbarItemIconSize?: string
824
+ }
825
+
826
+ export type navbarThemeVars = {
827
+ navbarHeight?: string
828
+ navbarColor?: string
829
+ navbarBackground?: string
830
+ navbarArrowSize?: string
831
+ navbarDescFontSize?: string
832
+ navbarDescFontColor?: string
833
+ navbarTitleFontSize?: string
834
+ navbarTitleFontWeight?: string
835
+ navbarDisabledOpacity?: string
836
+ navbarHoverColor?: string
837
+ }
838
+
839
+ export type navbarCapsuleThemeVars = {
840
+ navbarCapsuleBorderColor?: string
841
+ navbarCapsuleBorderRadius?: string
842
+ navbarCapsuleWidth?: string
843
+ navbarCapsuleHeight?: string
844
+ navbarCapsuleIconSize?: string
845
+ }
846
+
847
+ export type tableThemeVars = {
848
+ tableColor?: string
849
+ tableBg?: string
850
+ tableStripeBg?: string
851
+ tableBorderColor?: string
852
+ tableFontSize?: string
853
+ }
854
+
855
+ export type sidebarThemeVars = {
856
+ sidebarBg?: string
857
+ sidebarWidth?: string
858
+ sidebarHeight?: string
859
+ }
860
+
861
+ export type sidebarItemThemeVars = {
862
+ sidebarColor?: string
863
+ sidebarItemHeight?: string
864
+ sidebarItemLineHeight?: string
865
+ sidebarDisabledColor?: string
866
+ sidebarActiveColor?: string
867
+ sidebarActiveBg?: string
868
+ sidebarHoverBg?: string
869
+ sidebarBorderRadius?: string
870
+ sidebarFontSize?: string
871
+ sidebarIconSize?: string
872
+ sidebarActiveBorderWidth?: string
873
+ sidebarActiveBorderHeight?: string
874
+ }
875
+
876
+ export type fabThemeVars = {
877
+ fabTriggerHeight?: string
878
+ fabTriggerWidth?: string
879
+ fabActionsPadding?: string
880
+ fabIconFs?: string
881
+ }
882
+
883
+ export type countDownThemeVars = {
884
+ countDownTextColor?: string
885
+ countDownFontSize?: string
886
+ countDownLineHeight?: string
887
+ }
888
+
889
+ export type numberKeyboardThemeVars = {
890
+ numberKeyboardKeyHeight?: string
891
+ numberKeyboardKeyFontSize?: string
892
+ numberKeyboardKeyBackground?: string
893
+ numberKeyboardKeyBorderRadius?: string
894
+ numberKeyboardDeleteFontSize?: string
895
+ numberKeyboardKeyActiveColor?: string
896
+ numberKeyboardButtonTextColor?: string
897
+ numberKeyboardButtonBackground?: string
898
+ numberKeyboardButtonActiveOpacity?: string
899
+ numberKeyboardBackground?: string
900
+ numberKeyboardTitleHeight?: string
901
+ numberKeyboardTitleColor?: string
902
+ numberKeyboardTitleFontSize?: string
903
+ numberKeyboardClosePadding?: string
904
+ numberKeyboardCloseColor?: string
905
+ numberKeyboardCloseFontSize?: string
906
+ numberKeyboardIconSize?: string
907
+ }
908
+
909
+ export type passwodInputThemeVars = {
910
+ passwordInputHeight?: string
911
+ passwordInputMargin?: string
912
+ passwordInputFontSize?: string
913
+ passwordInputRadius?: string
914
+ passwordInputBackground?: string
915
+ passwordInputInfoColor?: string
916
+ passwordInputInfoFontSize?: string
917
+ passwordInputBorderColor?: string
918
+ passwordInputErrorInfoColor?: string
919
+ passwordInputDotSize?: string
920
+ passwordInputDotColor?: string
921
+ passwordInputTextColor?: string
922
+ passwordInputCursorColor?: string
923
+ passwordInputCursorWidth?: string
924
+ passwordInputCursorHeight?: string
925
+ passwordInputCursorDuration?: string
926
+ }
927
+
928
+ export type formItemThemeVars = {
929
+ formItemErrorMessageColor?: string
930
+ formItemErrorMessageFontSize?: string
931
+ formItemErrorMessageLineHeight?: string
932
+ }
933
+
934
+ export type backtopThemeVars = {
935
+ backtopBg?: string
936
+ backtopIconSize?: string
937
+ }
938
+
939
+ export type indexBarThemeVars = {
940
+ indexBarIndexFontSize?: string
941
+ }
942
+
943
+ export type textThemeVars = {
944
+ textInfoColor?: string
945
+ textPrimaryColor?: string
946
+ textErrorColor?: string
947
+ textWarningColor?: string
948
+ textSuccessColor?: string
949
+ }
950
+
951
+ export type videoPreviewThemeVars = {
952
+ videoPreviewBg?: string
953
+ videoPreviewCloseColor?: string
954
+ videoPreviewCloseFontSize?: string
955
+ }
956
+
957
+ export type imgCropperThemeVars = {
958
+ imgCropperIconSize?: string
959
+ imgCropperIconColor?: string
960
+ }
961
+
962
+ export type ConfigProviderThemeVars = baseThemeVars &
963
+ actionSheetThemeVars &
964
+ badgeThemeVars &
965
+ buttonThemeVars &
966
+ cellThemeVars &
967
+ calendarThemeVars &
968
+ checkboxThemeVars &
969
+ collapseThemeVars &
970
+ dividerThemeVars &
971
+ dropMenuThemeVars &
972
+ inputNumberThemeVars &
973
+ inputThemeVars &
974
+ textareaThemeVars &
975
+ loadmoreThemeVars &
976
+ messageBoxThemeVars &
977
+ noticeBarThemeVars &
978
+ paginationThemeVars &
979
+ pickerThemeVars &
980
+ colPickerThemeVars &
981
+ overlayThemeVars &
982
+ popupThemeVars &
983
+ progressThemeVars &
984
+ radioThemeVars &
985
+ searchThemeVars &
986
+ sliderThemeVars &
987
+ sortButtonThemeVars &
988
+ stepsThemeVars &
989
+ switchThemeVars &
990
+ tabsThemeVars &
991
+ tagThemeVars &
992
+ toastThemeVars &
993
+ loadingThemeVars &
994
+ tooltipThemeVars &
995
+ popoverThemeVars &
996
+ gridItemThemeVars &
997
+ statustipThemeVars &
998
+ cardThemeVars &
999
+ uploadThemeVars &
1000
+ curtainThemeVars &
1001
+ notifyThemeVars &
1002
+ skeletonThemeVars &
1003
+ circleThemeVars &
1004
+ swiperThemeVars &
1005
+ swiperNavThemeVars &
1006
+ segmentedThemeVars &
1007
+ tabbarThemeVars &
1008
+ tabbarItemThemeVars &
1009
+ navbarThemeVars &
1010
+ navbarCapsuleThemeVars &
1011
+ tableThemeVars &
1012
+ sidebarThemeVars &
1013
+ sidebarItemThemeVars &
1014
+ fabThemeVars &
1015
+ countDownThemeVars &
1016
+ numberKeyboardThemeVars &
1017
+ passwodInputThemeVars &
1018
+ formItemThemeVars &
1019
+ backtopThemeVars &
1020
+ indexBarThemeVars &
1021
+ textThemeVars &
1022
+ videoPreviewThemeVars &
1023
+ imgCropperThemeVars