oxy-uni-ui 1.0.1

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