@wot-ui/ui 1.0.0 → 2.0.0-alpha.3

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