@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,472 @@
1
+ /* 基础颜色 */
2
+ $base-black: var(--wot-base-black, #000000FF) !default;
3
+ $base-transparent: var(--wot-base-transparent, transparent) !default;
4
+ $base-white: var(--wot-base-white, #FFFFFFFF) !default;
5
+
6
+ /* 蓝色系列 */
7
+ $blue-1: var(--wot-blue-1, #F5F8FFFF) !default;
8
+ $blue-2: var(--wot-blue-2, #E5EDFFFF) !default;
9
+ $blue-3: var(--wot-blue-3, #B8CFFFFF) !default;
10
+ $blue-4: var(--wot-blue-4, #7CA4FFFF) !default;
11
+ $blue-5: var(--wot-blue-5, #4480FFFF) !default;
12
+ $blue-6: var(--wot-blue-6, #1C64FDFF) !default;
13
+ $blue-7: var(--wot-blue-7, #164ED1FF) !default;
14
+ $blue-8: var(--wot-blue-8, #1341ADFF) !default;
15
+ $blue-9: var(--wot-blue-9, #0F3285FF) !default;
16
+ $blue-10: var(--wot-blue-10, #0A235CFF) !default;
17
+ $blue-opac: var(--wot-blue-opac, #1C64FD14) !default;
18
+
19
+ /* 亮蓝系列 */
20
+ $lightblue-1: var(--wot-lightblue-1, #E8FBFFFF) !default;
21
+ $lightblue-2: var(--wot-lightblue-2, #BFF2FFFF) !default;
22
+ $lightblue-3: var(--wot-lightblue-3, #96E7FFFF) !default;
23
+ $lightblue-4: var(--wot-lightblue-4, #6ED8FFFF) !default;
24
+ $lightblue-5: var(--wot-lightblue-5, #45C7FFFF) !default;
25
+ $lightblue-6: var(--wot-lightblue-6, #1CB2FDFF) !default;
26
+ $lightblue-7: var(--wot-lightblue-7, #0D8CD6FF) !default;
27
+ $lightblue-8: var(--wot-lightblue-8, #026AB0FF) !default;
28
+ $lightblue-9: var(--wot-lightblue-9, #004E8AFF) !default;
29
+ $lightblue-10: var(--wot-lightblue-10, #003563FF) !default;
30
+ $lightblue-opac: var(--wot-lightblue-opac, #1CB2FD14) !default;
31
+
32
+ /* 粉色系列 */
33
+ $pink-1: var(--wot-pink-1, #FFF0F6FF) !default;
34
+ $pink-2: var(--wot-pink-2, #FFDEEBFF) !default;
35
+ $pink-3: var(--wot-pink-3, #FCC2D7FF) !default;
36
+ $pink-4: var(--wot-pink-4, #FAA2C1FF) !default;
37
+ $pink-5: var(--wot-pink-5, #F783ACFF) !default;
38
+ $pink-6: var(--wot-pink-6, #FF357CFF) !default;
39
+ $pink-7: var(--wot-pink-7, #FF0A60FF) !default;
40
+ $pink-8: var(--wot-pink-8, #E0004FFF) !default;
41
+ $pink-9: var(--wot-pink-9, #B80040FF) !default;
42
+ $pink-10: var(--wot-pink-10, #8F0032FF) !default;
43
+ $pink-opac: var(--wot-pink-opac, #FF357C14) !default;
44
+
45
+ /* 红色系列 */
46
+ $red-1: var(--wot-red-1, #FFF5F5FF) !default;
47
+ $red-2: var(--wot-red-2, #FFE3E3FF) !default;
48
+ $red-3: var(--wot-red-3, #FFC9C9FF) !default;
49
+ $red-4: var(--wot-red-4, #FFA8A8FF) !default;
50
+ $red-5: var(--wot-red-5, #FB7C7CFF) !default;
51
+ $red-6: var(--wot-red-6, #F14646FF) !default;
52
+ $red-7: var(--wot-red-7, #DC2C2CFF) !default;
53
+ $red-8: var(--wot-red-8, #BC2626FF) !default;
54
+ $red-9: var(--wot-red-9, #A01515FF) !default;
55
+ $red-10: var(--wot-red-10, #790909FF) !default;
56
+ $red-opac: var(--wot-red-opac, #F1464614) !default;
57
+
58
+ /* 橘红色系列 */
59
+ $volcano-1: var(--wot-volcano-1, #FFF2E8FF) !default;
60
+ $volcano-2: var(--wot-volcano-2, #FFDABFFF) !default;
61
+ $volcano-3: var(--wot-volcano-3, #FFBF96FF) !default;
62
+ $volcano-4: var(--wot-volcano-4, #FFA16EFF) !default;
63
+ $volcano-5: var(--wot-volcano-5, #FF8045FF) !default;
64
+ $volcano-6: var(--wot-volcano-6, #FD5C1CFF) !default;
65
+ $volcano-7: var(--wot-volcano-7, #D63F0DFF) !default;
66
+ $volcano-8: var(--wot-volcano-8, #B02802FF) !default;
67
+ $volcano-9: var(--wot-volcano-9, #8A1900FF) !default;
68
+ $volcano-10: var(--wot-volcano-10, #630F00FF) !default;
69
+ $volcano-opac: var(--wot-volcano-opac, #FD5C1C14) !default;
70
+
71
+ /* 橙色系列 */
72
+ $orange-1: var(--wot-orange-1, #FFF6EBFF) !default;
73
+ $orange-2: var(--wot-orange-2, #FFE8CCFF) !default;
74
+ $orange-3: var(--wot-orange-3, #FFD8A8FF) !default;
75
+ $orange-4: var(--wot-orange-4, #FFC078FF) !default;
76
+ $orange-5: var(--wot-orange-5, #FFA94DFF) !default;
77
+ $orange-6: var(--wot-orange-6, #F57F00FF) !default;
78
+ $orange-7: var(--wot-orange-7, #D05706FF) !default;
79
+ $orange-8: var(--wot-orange-8, #A94605FF) !default;
80
+ $orange-9: var(--wot-orange-9, #813604FF) !default;
81
+ $orange-10: var(--wot-orange-10, #592503FF) !default;
82
+ $orange-opac: var(--wot-orange-opac, #F57F0014) !default;
83
+
84
+ /* 黄色系列 */
85
+ $yellow-1: var(--wot-yellow-1, #FFFAF1FF) !default;
86
+ $yellow-2: var(--wot-yellow-2, #FDE5B4FF) !default;
87
+ $yellow-3: var(--wot-yellow-3, #FDD78CFF) !default;
88
+ $yellow-4: var(--wot-yellow-4, #FCC964FF) !default;
89
+ $yellow-5: var(--wot-yellow-5, #FBBB3CFF) !default;
90
+ $yellow-6: var(--wot-yellow-6, #FAAD14FF) !default;
91
+ $yellow-7: var(--wot-yellow-7, #E19705FF) !default;
92
+ $yellow-8: var(--wot-yellow-8, #B97C04FF) !default;
93
+ $yellow-9: var(--wot-yellow-9, #916103FF) !default;
94
+ $yellow-10: var(--wot-yellow-10, #694702FF) !default;
95
+ $yellow-opac: var(--wot-yellow-opac, #FAAD1414) !default;
96
+
97
+ /* 绿色系列 */
98
+ $green-1: var(--wot-green-1, #F3FBF9FF) !default;
99
+ $green-2: var(--wot-green-2, #E7F8F3FF) !default;
100
+ $green-3: var(--wot-green-3, #B8EADBFF) !default;
101
+ $green-4: var(--wot-green-4, #88DBC3FF) !default;
102
+ $green-5: var(--wot-green-5, #59CDAAFF) !default;
103
+ $green-6: var(--wot-green-6, #12B886FF) !default;
104
+ $green-7: var(--wot-green-7, #0F956CFF) !default;
105
+ $green-8: var(--wot-green-8, #0B6F51FF) !default;
106
+ $green-9: var(--wot-green-9, #074A36FF) !default;
107
+ $green-10: var(--wot-green-10, #04251BFF) !default;
108
+ $green-opac: var(--wot-green-opac, #12B88614) !default;
109
+
110
+ /* 青色系列 */
111
+ $cyan-1: var(--wot-cyan-1, #F4FBFDFF) !default;
112
+ $cyan-2: var(--wot-cyan-2, #E9F8FAFF) !default;
113
+ $cyan-3: var(--wot-cyan-3, #BDEAF1FF) !default;
114
+ $cyan-4: var(--wot-cyan-4, #90DBE7FF) !default;
115
+ $cyan-5: var(--wot-cyan-5, #64CDDDFF) !default;
116
+ $cyan-6: var(--wot-cyan-6, #22B8CFFF) !default;
117
+ $cyan-7: var(--wot-cyan-7, #1C98ABFF) !default;
118
+ $cyan-8: var(--wot-cyan-8, #167988FF) !default;
119
+ $cyan-9: var(--wot-cyan-9, #115A65FF) !default;
120
+ $cyan-10: var(--wot-cyan-10, #0B3A42FF) !default;
121
+ $cyan-opac: var(--wot-cyan-opac, #22B8CF14) !default;
122
+
123
+ /* 紫色系列 */
124
+ $purple-1: var(--wot-purple-1, #F9F8FFFF) !default;
125
+ $purple-2: var(--wot-purple-2, #E5DBFFFF) !default;
126
+ $purple-3: var(--wot-purple-3, #D0BFFFFF) !default;
127
+ $purple-4: var(--wot-purple-4, #B197FCFF) !default;
128
+ $purple-5: var(--wot-purple-5, #9775FAFF) !default;
129
+ $purple-6: var(--wot-purple-6, #8059F3FF) !default;
130
+ $purple-7: var(--wot-purple-7, #5B29EFFF) !default;
131
+ $purple-8: var(--wot-purple-8, #4511DFFF) !default;
132
+ $purple-9: var(--wot-purple-9, #390EB9FF) !default;
133
+ $purple-10: var(--wot-purple-10, #2D0B93FF) !default;
134
+ $purple-opac: var(--wot-purple-opac, #8059F314) !default;
135
+
136
+ /* 靛色系列 */
137
+ $grape-1: var(--wot-grape-1, #FBF6FDFF) !default;
138
+ $grape-2: var(--wot-grape-2, #F3D9FAFF) !default;
139
+ $grape-3: var(--wot-grape-3, #EEBEFAFF) !default;
140
+ $grape-4: var(--wot-grape-4, #E599F7FF) !default;
141
+ $grape-5: var(--wot-grape-5, #DA77F2FF) !default;
142
+ $grape-6: var(--wot-grape-6, #AE3EC9FF) !default;
143
+ $grape-7: var(--wot-grape-7, #9731AFFF) !default;
144
+ $grape-8: var(--wot-grape-8, #7B288FFF) !default;
145
+ $grape-9: var(--wot-grape-9, #601F70FF) !default;
146
+ $grape-10: var(--wot-grape-10, #451650FF) !default;
147
+ $grape-opac: var(--wot-grape-opac, #AE3EC914) !default;
148
+
149
+ /* 冷灰系列 */
150
+ $coolgrey-1: var(--wot-coolgrey-1, #F7F8FAFF) !default;
151
+ $coolgrey-10: var(--wot-coolgrey-10, #1D1F29FF) !default;
152
+ $coolgrey-2: var(--wot-coolgrey-2, #F2F3F5FF) !default;
153
+ $coolgrey-3: var(--wot-coolgrey-3, #E5E6EBFF) !default;
154
+ $coolgrey-4: var(--wot-coolgrey-4, #C9CBD4FF) !default;
155
+ $coolgrey-5: var(--wot-coolgrey-5, #A9ACB8FF) !default;
156
+ $coolgrey-6: var(--wot-coolgrey-6, #868A9CFF) !default;
157
+ $coolgrey-7: var(--wot-coolgrey-7, #6B7085FF) !default;
158
+ $coolgrey-8: var(--wot-coolgrey-8, #4E5369FF) !default;
159
+ $coolgrey-9: var(--wot-coolgrey-9, #272B3BFF) !default;
160
+
161
+ /* 中性灰系列 */
162
+ $neutralgrey-1: var(--wot-neutralgrey-1, #FAFAFAFF) !default;
163
+ $neutralgrey-10: var(--wot-neutralgrey-10, #292929FF) !default;
164
+ $neutralgrey-2: var(--wot-neutralgrey-2, #F5F5F5FF) !default;
165
+ $neutralgrey-3: var(--wot-neutralgrey-3, #EBEBEBFF) !default;
166
+ $neutralgrey-4: var(--wot-neutralgrey-4, #D4D4D4FF) !default;
167
+ $neutralgrey-5: var(--wot-neutralgrey-5, #B8B8B8FF) !default;
168
+ $neutralgrey-6: var(--wot-neutralgrey-6, #9C9C9CFF) !default;
169
+ $neutralgrey-7: var(--wot-neutralgrey-7, #858585FF) !default;
170
+ $neutralgrey-8: var(--wot-neutralgrey-8, #696969FF) !default;
171
+ $neutralgrey-9: var(--wot-neutralgrey-9, #3D3D3DFF) !default;
172
+
173
+ /* 暖灰系列 */
174
+ $warmgrey-1: var(--wot-warmgrey-1, #FAF8F7FF) !default;
175
+ $warmgrey-10: var(--wot-warmgrey-10, #292321FF) !default;
176
+ $warmgrey-2: var(--wot-warmgrey-2, #F5F3F2FF) !default;
177
+ $warmgrey-3: var(--wot-warmgrey-3, #EBE7E5FF) !default;
178
+ $warmgrey-4: var(--wot-warmgrey-4, #D4CECCFF) !default;
179
+ $warmgrey-5: var(--wot-warmgrey-5, #B8B0ADFF) !default;
180
+ $warmgrey-6: var(--wot-warmgrey-6, #9C918CFF) !default;
181
+ $warmgrey-7: var(--wot-warmgrey-7, #857A75FF) !default;
182
+ $warmgrey-8: var(--wot-warmgrey-8, #695E5AFF) !default;
183
+ $warmgrey-9: var(--wot-warmgrey-9, #3B332FFF) !default;
184
+
185
+ /* 遮罩系列 */
186
+ $opac-1_02: var(--wot-opac-1_02, #00000005) !default;
187
+ $opac-2_04: var(--wot-opac-2_04, #0000000A) !default;
188
+ $opac-3_08: var(--wot-opac-3_08, #00000014) !default;
189
+ $opac-4_15: var(--wot-opac-4_15, #00000026) !default;
190
+ $opac-5_20: var(--wot-opac-5_20, #00000033) !default;
191
+ $opac-6_30: var(--wot-opac-6_30, #0000004D) !default;
192
+ $opac-7_45: var(--wot-opac-7_45, #00000073) !default;
193
+ $opac-7_55: var(--wot-opac-7_55, #0000008C) !default;
194
+ $opac-8_65: var(--wot-opac-8_65, #000000A6) !default;
195
+ $opac-9_75: var(--wot-opac-9_75, #000000BF) !default;
196
+ $opac-10_85: var(--wot-opac-10_85, #000000D9) !default;
197
+
198
+ /* 白遮罩系列 */
199
+ $opacwhite-1_02: var(--wot-opacwhite-1_02, #FFFFFF05) !default;
200
+ $opacwhite-2_04: var(--wot-opacwhite-2_04, #FFFFFF0A) !default;
201
+ $opacwhite-3_08: var(--wot-opacwhite-3_08, #FFFFFF14) !default;
202
+ $opacwhite-4_15: var(--wot-opacwhite-4_15, #FFFFFF26) !default;
203
+ $opacwhite-5_20: var(--wot-opacwhite-5_20, #FFFFFF33) !default;
204
+ $opacwhite-6_30: var(--wot-opacwhite-6_30, #FFFFFF4D) !default;
205
+ $opacwhite-7_45: var(--wot-opacwhite-7_45, #FFFFFF73) !default;
206
+ $opacwhite-7_55: var(--wot-opacwhite-7_55, #FFFFFF8C) !default;
207
+ $opacwhite-8_65: var(--wot-opacwhite-8_65, #FFFFFFA6) !default;
208
+ $opacwhite-9_75: var(--wot-opacwhite-9_75, #FFFFFFBF) !default;
209
+ $opacwhite-10_85: var(--wot-opacwhite-10_85, #FFFFFFD9) !default;
210
+
211
+ /* 透明度系列 */
212
+ $opacity-disabled: var(--wot-opacity-disabled, 0.4) !default;
213
+ $opacity-dimmer: var(--wot-opacity-dimmer, 0.6) !default;
214
+ $opacity-oveylay: var(--wot-opacity-oveylay, 0.75) !default;
215
+ $opacity-backdrop: var(--wot-opacity-backdrop, 0.3) !default;
216
+ $opacity-main: var(--wot-opacity-main, 1) !default;
217
+
218
+ /* 基础数字 */
219
+ $n-0: var(--wot-n-0, 0px) !default;
220
+ $n-1: var(--wot-n-1, 1px) !default;
221
+ $n-2: var(--wot-n-2, 2px) !default;
222
+ $n-3: var(--wot-n-3, 3px) !default;
223
+ $n-4: var(--wot-n-4, 4px) !default;
224
+ $n-05: var(--wot-n-05, 0.5px) !default;
225
+ $n-5: var(--wot-n-5, 5px) !default;
226
+ $n-6: var(--wot-n-6, 6px) !default;
227
+ $n-8: var(--wot-n-8, 8px) !default;
228
+ $n-9: var(--wot-n-9, 9px) !default;
229
+ $n-10: var(--wot-n-10, 10px) !default;
230
+ $n-11: var(--wot-n-11, 11px) !default;
231
+ $n-12: var(--wot-n-12, 12px) !default;
232
+ $n-14: var(--wot-n-14, 14px) !default;
233
+ $n-15: var(--wot-n-15, 15px) !default;
234
+ $n-16: var(--wot-n-16, 16px) !default;
235
+ $n-17: var(--wot-n-17, 17px) !default;
236
+ $n-18: var(--wot-n-18, 18px) !default;
237
+ $n-20: var(--wot-n-20, 20px) !default;
238
+ $n-22: var(--wot-n-22, 22px) !default;
239
+ $n-24: var(--wot-n-24, 24px) !default;
240
+ $n-26: var(--wot-n-26, 26px) !default;
241
+ $n-28: var(--wot-n-28, 28px) !default;
242
+ $n-32: var(--wot-n-32, 32px) !default;
243
+ $n-34: var(--wot-n-34, 34px) !default;
244
+ $n-36: var(--wot-n-36, 36px) !default;
245
+ $n-40: var(--wot-n-40, 40px) !default;
246
+ $n-44: var(--wot-n-44, 44px) !default;
247
+ $n-48: var(--wot-n-48, 48px) !default;
248
+ $n-50: var(--wot-n-50, 50px) !default;
249
+ $n-52: var(--wot-n-52, 52px) !default;
250
+ $n-56: var(--wot-n-56, 56px) !default;
251
+ $n-60: var(--wot-n-60, 60px) !default;
252
+ $n-64: var(--wot-n-64, 64px) !default;
253
+ $n-88: var(--wot-n-88, 88px) !default;
254
+ $n-98: var(--wot-n-98, 98px) !default;
255
+ $n-248: var(--wot-n-248, 248px) !default;
256
+ $n-375: var(--wot-n-375, 375px) !default;
257
+ $n-full: var(--wot-n-full, 9999px) !default;
258
+
259
+ /* 字重系列 */
260
+ $font-weight-ultra-light: var(--wot-font-weight-ultra-light, 100) !default;
261
+ $font-weight-thin: var(--wot-font-weight-thin, 200);
262
+ $font-weight-light: var(--wot-font-weight-light, 300) !default;
263
+ $font-weight-regular: var(--wot-font-weight-regular, 400) !default;
264
+ $font-weight-medium: var(--wot-font-weight-medium, 600) !default;
265
+ $font-weight-semibold: var(--wot-font-weight-semibold, 700) !default;
266
+ $font-weight-bold: var(--wot-font-weight-bold, 700) !default;
267
+
268
+
269
+ /* 排版系列 */
270
+ /* label */
271
+ $typography-label-font-family: var(--wot-typography-label-font-family, PingFang SC) !default;
272
+ $typography-label-size-small: var(--wot-typography-label-size-small, $n-11) !default;
273
+ $typography-label-size-main: var(--wot-typography-label-size-main, $n-12) !default;
274
+ $typography-label-size-large: var(--wot-typography-label-size-large, $n-14) !default;
275
+ $typography-label-font-weight-main: var(--wot-typography-label-font-weight-main, $font-weight-regular) !default;
276
+ $typography-label-font-weight-strong: var(--wot-typography-label-font-weight-strong, $font-weight-medium) !default;
277
+ $typography-label-line--height-size-extra-small: var(--wot-typography-label-line--height-size-extra-small, $n-16) !default;
278
+ $typography-label-line--height-size-large: var(--wot-typography-label-line--height-size-large, $n-18) !default;
279
+ $typography-label-line--height-size-main: var(--wot-typography-label-line--height-size-main, $n-18) !default;
280
+ $typography-label-line--height-size-small: var(--wot-typography-label-line--height-size-small, $n-16) !default;
281
+ $typography-label-line--height-size-super-small: var(--wot-typography-label-line--height-size-super-small, $n-14) !default;
282
+ $typography-label-size-extra-small: var(--wot-typography-label-size-extra-small, $n-10) !default;
283
+ $typography-label-size-super-small: var(--wot-typography-label-size-super-small, $n-9) !default;
284
+
285
+ /* body */
286
+ $typography-body-font-family: var(--wot-typography-body-font-family, PingFang SC) !default;
287
+ $typography-body-size-main: var(--wot-typography-body-size-main, $n-14) !default;
288
+ $typography-body-size-large: var(--wot-typography-body-size-large, $n-15) !default;
289
+ $typography-body-font-weight-main: var(--wot-typography-body-font-weight-main, $font-weight-regular) !default;
290
+ $typography-body-font-weight-strong: var(--wot-typography-body-font-weight-strong, $font-weight-medium) !default;
291
+ $typography-body-font-weight-extra-strong: var(--wot-typography-body-font-weight-extra-strong, $font-weight-semibold) !default;
292
+ $typography-body-line--height-size-extra-large: var(--wot-typography-body-line--height-size-extra-large, $n-24) !default;
293
+ $typography-body-line--height-size-large: var(--wot-typography-body-line--height-size-large, $n-22) !default;
294
+ $typography-body-line--height-size-main: var(--wot-typography-body-line--height-size-main, $n-20) !default;
295
+ $typography-body-line--height-size-super-large: var(--wot-typography-body-line--height-size-super-large, $n-24) !default;
296
+ $typography-body-line--height-size-ultra-large: var(--wot-typography-body-line--height-size-ultra-large, $n-26) !default;
297
+ $typography-body-size-extra-large: var(--wot-typography-body-size-extra-large, $n-16) !default;
298
+ $typography-body-size-super-large: var(--wot-typography-body-size-super-large, $n-17) !default;
299
+ $typography-body-size-ultra-large: var(--wot-typography-body-size-ultra-large, $n-18) !default;
300
+
301
+ /* title */
302
+ $typography-title-font-family: var(--wot-typography-title-font-family, PingFang SC) !default;
303
+ $typography-title-size-main: var(--wot-typography-title-size-main, $n-18) !default;
304
+ $typography-title-size-large: var(--wot-typography-title-size-large, $n-20) !default;
305
+ $typography-title-size-extra-large: var(--wot-typography-title-size-extra-large, $n-24) !default;
306
+ $typography-title-font-weight-light: var(--wot-typography-title-font-weight-light, $font-weight-regular) !default;
307
+ $typography-title-font-weight-main: var(--wot-typography-title-font-weight-main, $font-weight-medium) !default;
308
+ $typography-title-font-weight-strong: var(--wot-typography-title-font-weight-strong, $font-weight-semibold) !default;
309
+ $typography-title-line--height-size-main: var(--wot-typography-title-line--height-size-main, $n-26) !default;
310
+ $typography-title-line--height-size-large: var(--wot-typography-title-line--height-size-large, $n-28) !default;
311
+ $typography-title-line--height-size-extra-large: var(--wot-typography-title-line--height-size-extra-large, $n-34) !default;
312
+
313
+ /* 圆角系列 */
314
+ $radius-zero: var(--wot-radius-zero, $n-0) !default;
315
+ $radius-small: var(--wot-radius-small, $n-2) !default;
316
+ $radius-main: var(--wot-radius-main, $n-4) !default;
317
+ $radius-large: var(--wot-radius-large, $n-8) !default;
318
+ $radius-extra-large: var(--wot-radius-extra-large, $n-12) !default;
319
+ $radius-super-large: var(--wot-radius-super-large, $n-16) !default;
320
+ $radius-ultra-large: var(--wot-radius-ultra-large, $n-20) !default;
321
+ $radius-radius-full: var(--wot-radius-radius-full, $n-full) !default;
322
+
323
+ /* 内边距系列 */
324
+ $padding-zero: var(--wot-padding-zero, $n-0) !default;
325
+ $padding-ultra-tight: var(--wot-padding-ultra-tight, $n-2) !default;
326
+ $padding-super-tight: var(--wot-padding-super-tight, $n-4) !default;
327
+ $padding-extra-tight: var(--wot-padding-extra-tight, $n-6) !default;
328
+ $padding-tight: var(--wot-padding-tight, $n-8) !default;
329
+ $padding-main: var(--wot-padding-main, $n-10) !default;
330
+ $padding-loose: var(--wot-padding-loose, $n-12) !default;
331
+ $padding-extra-loose: var(--wot-padding-extra-loose, $n-16) !default;
332
+ $padding-super-loose: var(--wot-padding-super-loose, $n-20) !default;
333
+ $padding-ultra-loose: var(--wot-padding-ultra-loose, $n-24) !default;
334
+ $padding-spacious: var(--wot-padding-spacious, $n-28) !default;
335
+ $padding-extra-spacious: var(--wot-padding-extra-spacious, $n-32) !default;
336
+ $padding-super-spacious: var(--wot-padding-super-spacious, $n-40) !default;
337
+ $padding-ultra-spacious: var(--wot-padding-ultra-spacious, $n-48) !default;
338
+
339
+ /* 间距系列 */
340
+ $spacing-zero: var(--wot-spacing-zero, $n-0) !default;
341
+ $spacing-ultra-tight: var(--wot-spacing-ultra-tight, $n-2) !default;
342
+ $spacing-super-tight: var(--wot-spacing-super-tight, $n-4) !default;
343
+ $spacing-extra-tight: var(--wot-spacing-extra-tight, $n-6) !default;
344
+ $spacing-tight: var(--wot-spacing-tight, $n-8) !default;
345
+ $spacing-main: var(--wot-spacing-main, $n-10) !default;
346
+ $spacing-loose: var(--wot-spacing-loose, $n-12) !default;
347
+ $spacing-extra-loose: var(--wot-spacing-extra-loose, $n-16) !default;
348
+ $spacing-super-loose: var(--wot-spacing-super-loose, $n-20) !default;
349
+ $spacing-ultra-loose: var(--wot-spacing-ultra-loose, $n-24) !default;
350
+ $spacing-spacious: var(--wot-spacing-spacious, $n-28) !default;
351
+ $spacing-extra-spacious: var(--wot-spacing-extra-spacious, $n-32) !default;
352
+ $spacing-super-spacious: var(--wot-spacing-super-spacious, $n-40) !default;
353
+ $spacing-ultra-spacious: var(--wot-spacing-ultra-spacious, $n-48) !default;
354
+
355
+ /* 边框线系列 */
356
+ $stroke-zero: var(--wot-stroke-zero, $n-0) !default;
357
+ $stroke-light: var(--wot-stroke-light, $n-05) !default;
358
+ $stroke-main: var(--wot-stroke-main, $n-1) !default;
359
+ $stroke-blod: var(--wot-stroke-blod, $n-2) !default;
360
+
361
+
362
+ /* 语义变量(light) */
363
+ /* 主色系列 */
364
+ $primary-1: var(--wot-primary-1, $blue-1) !default;
365
+ $primary-2: var(--wot-primary-2, $blue-2) !default;
366
+ $primary-3: var(--wot-primary-3, $blue-3) !default;
367
+ $primary-4: var(--wot-primary-4, $blue-4) !default;
368
+ $primary-5: var(--wot-primary-5, $blue-5) !default;
369
+ $primary-6: var(--wot-primary-6, $blue-6) !default;
370
+ $primary-7: var(--wot-primary-7, $blue-7) !default;
371
+ $primary-8: var(--wot-primary-8, $blue-8) !default;
372
+ $primary-9: var(--wot-primary-9, $blue-9) !default;
373
+ $primary-10: var(--wot-primary-10, $blue-10) !default;
374
+
375
+ /* 危险色系列 */
376
+ $danger-clicked: var(--wot-danger-clicked, $red-7) !default;
377
+ $danger-disabled: var(--wot-danger-disabled, $red-3) !default;
378
+ $danger-hover: var(--wot-danger-hover, $red-5) !default;
379
+ $danger-main: var(--wot-danger-main, $red-6) !default;
380
+ $danger-particular: var(--wot-danger-particular, $red-2) !default;
381
+ $danger-surface: var(--wot-danger-surface, $red-1) !default;
382
+
383
+ /* 成功色系列 */
384
+ $success-clicked: var(--wot-success-clicked, $green-7) !default;
385
+ $success-disabled: var(--wot-success-disabled, $green-3) !default;
386
+ $success-hover: var(--wot-success-hover, $green-5) !default;
387
+ $success-main: var(--wot-success-main, $green-6) !default;
388
+ $success-particular: var(--wot-success-particular, $green-2) !default;
389
+ $success-surface: var(--wot-success-surface, $green-1) !default;
390
+
391
+ /* 警告色系列 */
392
+ $warning-clicked: var(--wot-warning-clicked, $orange-7) !default;
393
+ $warning-disabled: var(--wot-warning-disabled, $orange-3) !default;
394
+ $warning-hover: var(--wot-warning-hover, $orange-5) !default;
395
+ $warning-main: var(--wot-warning-main, $orange-6) !default;
396
+ $warning-particular: var(--wot-warning-particular, $orange-2) !default;
397
+ $warning-surface: var(--wot-warning-surface, $orange-1) !default;
398
+
399
+ /* 文字色系列 */
400
+ $text-main: var(--wot-text-main, $coolgrey-10) !default;
401
+ $text-secondary: var(--wot-text-secondary, $coolgrey-8) !default;
402
+ $text-auxiliary: var(--wot-text-auxiliary, $coolgrey-6) !default;
403
+ $text-disabled: var(--wot-text-disabled, $coolgrey-4) !default;
404
+ $text-placeholder: var(--wot-text-placeholder, $coolgrey-5) !default;
405
+ $text-white: var(--wot-text-white, $base-white) !default;
406
+
407
+ /* 图标色系列 */
408
+ /* 图标 */
409
+ $icon-main: var(--wot-icon-main, $coolgrey-10) !default;
410
+ $icon-secondary: var(--wot-icon-secondary, $coolgrey-8) !default;
411
+ $icon-auxiliary: var(--wot-icon-auxiliary, $coolgrey-6) !default;
412
+ $icon-disabled: var(--wot-icon-disabled, $coolgrey-4) !default;
413
+ $icon-placeholder: var(--wot-icon-placeholder, $coolgrey-5) !default;
414
+ $icon-white: var(--wot-icon-white, $base-white) !default;
415
+
416
+ /* 边框色系列 */
417
+ $border-extra-strong: var(--wot-border-extra-strong, $coolgrey-6) !default;
418
+ $border-strong: var(--wot-border-strong, $coolgrey-4) !default;
419
+ $border-main: var(--wot-border-main, $coolgrey-3) !default;
420
+ $border-light: var(--wot-border-light, $coolgrey-2) !default;
421
+ $border-white: var(--wot-border-white, $base-white) !default;
422
+ $border-zero: var(--wot-border-zero, $base-transparent) !default;
423
+
424
+ /* 填充色系列 */
425
+ $filled-extra-strong: var(--wot-filled-extra-strong, $coolgrey-4) !default;
426
+ $filled-strong: var(--wot-filled-strong, $coolgrey-3) !default;
427
+ $filled-content: var(--wot-filled-content, $coolgrey-2) !default;
428
+ $filled-bottom: var(--wot-filled-bottom, $coolgrey-1) !default;
429
+ $filled-oppo: var(--wot-filled-oppo, $base-white) !default;
430
+ $filled-zero: var(--wot-filled-zero, $base-transparent) !default;
431
+
432
+ /* 分割线系列 */
433
+ $divider-main: var(--wot-divider-main, $opac-3_08) !default;
434
+ $divider-light: var(--wot-divider-light, $opac-2_04) !default;
435
+ $divider-strong: var(--wot-divider-strong, $opac-4_15) !default;
436
+ $divider-white: var(--wot-divider-white, $base-white) !default;
437
+
438
+ /* 反馈色系列 */
439
+ $feedback-accent: var(--wot-feedback-accent, $blue-opac) !default;
440
+ $feedback-active: var(--wot-feedback-active, $opac-3_08) !default;
441
+ $feedback-hover: var(--wot-feedback-hover, $opac-2_04) !default;
442
+
443
+ /* 透明度填充 */
444
+ $opacfilled-light-cover: var(--wot-opacfilled-light-cover, $opac-6_30) !default;
445
+ $opacfilled-main-cover: var(--wot-opacfilled-main-cover, $opac-7_55) !default;
446
+ $opacfilled-tooltip-toast-cover: var(--wot-opacfilled-tooltip-toast-cover, $opac-9_75) !default;
447
+
448
+ /* 分类色系列 */
449
+ /* 黄色 */
450
+ $classifyapplication-yellow-background: var(--wot-classifyapplication-yellow-background, $yellow-1) !default;
451
+ $classifyapplication-yellow-border: var(--wot-classifyapplication-yellow-border, $yellow-3) !default;
452
+ $classifyapplication-yellow-content: var(--wot-classifyapplication-yellow-content, $yellow-6) !default;
453
+
454
+ /* 蓝色 */
455
+ $classifyapplication-cyan-background: var(--wot-classifyapplication-cyan-background, $cyan-1) !default;
456
+ $classifyapplication-cyan-border: var(--wot-classifyapplication-cyan-border, $cyan-3) !default;
457
+ $classifyapplication-cyan-content: var(--wot-classifyapplication-cyan-content, $cyan-6) !default;
458
+
459
+ /* 紫色 */
460
+ $classifyapplication-purple-background: var(--wot-classifyapplication-purple-background, $purple-1) !default;
461
+ $classifyapplication-purple-border: var(--wot-classifyapplication-purple-border, $purple-3) !default;
462
+ $classifyapplication-purple-content: var(--wot-classifyapplication-purple-content, $purple-6) !default;
463
+
464
+ /* 靛色 */
465
+ $classifyapplication-grape-background: var(--wot-classifyapplication-grape-background, $grape-1) !default;
466
+ $classifyapplication-grape-border: var(--wot-classifyapplication-grape-border, $grape-3) !default;
467
+ $classifyapplication-grape-content: var(--wot-classifyapplication-grape-content, $grape-6) !default;
468
+
469
+ /* 粉色 */
470
+ $classifyapplication-pink-background: var(--wot-classifyapplication-pink-background, $pink-1) !default;
471
+ $classifyapplication-pink-border: var(--wot-classifyapplication-pink-border, $pink-3) !default;
472
+ $classifyapplication-pink-content: var(--wot-classifyapplication-pink-content, $pink-6) !default;
package/tags.json ADDED
@@ -0,0 +1 @@
1
+ {"wd-action-sheet":{"attributes":["v-model","actions","panels","title","cancel-text","close-on-click-action","close-on-click-modal","duration","z-index","lazy-render","safe-area-inset-bottom","root-portal","custom-title-class","custom-class","custom-style","select","enter","after-enter","leave","after-leave","close","click-modal","cancel"],"description":"从底部弹出的动作菜单面板。\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#actionsheet)"},"wd-avatar":{"attributes":["src","text","icon","size","shape","bg-color","color","alt","mode","custom-class","custom-style","click","error"],"description":"用来代表用户或事物,支持图片、文本或图标展示。\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar)"},"wd-avatar-group":{"attributes":["max-count","cascading","shape","size","collapse-avatar","vertical","custom-class","custom-style"],"description":"用来代表用户或事物,支持图片、文本或图标展示。\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatargroup)"},"wd-backtop":{"attributes":["scroll-top","text","top","duration","z-index","icon-style","shape","bottom","right","custom-style","custom-class"],"description":"用于返回页面顶部的操作按钮。\n\n[Docs](https://wot-ui.cn/component/backtop.html#backtop)"},"wd-badge":{"attributes":["value","max","top","right","is-dot","hidden","type","bg-color","show-zero","shape","border","custom-class","custom-style"],"description":"出现在按钮、图标旁的数字或状态标记。\n\n[Docs](https://wot-ui.cn/component/badge.html#badge)"},"wd-button":{"attributes":["type","variant","size","round","disabled","hairline","block","loading","text","icon","class-prefix","loading-props","open-type","hover-stop-propagation","hover-start-time","hover-stay-time","lang","session-from","send-message-title","send-message-path","send-message-img","app-parameter","show-message-card","button-id","scope","loading-color","custom-class","custom-style","click","getuserinfo","contact","getphonenumber","getrealtimephonenumber","error","launchapp","opensetting","chooseavatar","agreeprivacyauthorization"],"description":"按钮用于触发一个操作,如提交表单或打开链接。\n\n[Docs](https://wot-ui.cn/component/button.html#button)"},"wd-calendar-view":{"attributes":["v-model","type","min-date","max-date","first-day-of-week","formatter","max-range","range-prompt","allow-same-day","show-panel-title","default-time","panel-height","time-filter","time-item-height","time-visible-item-count","hide-second","immediate-change","switch-mode","custom-class","custom-style","change","pickstart","pickend"],"description":"提供单选、多选、范围、周/月、日期时间等日历选择能力,可作为业务日历选择器的底层面板组件。\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#calendarview)"},"wd-calendar":{"attributes":["v-model","v-model:visible","type","min-date","max-date","first-day-of-week","formatter","max-range","range-prompt","allow-same-day","default-time","time-filter","hide-second","title","close-on-click-modal","z-index","show-confirm","confirm-text","inner-display-format","ellipsis","show-type-switch","shortcuts","on-shortcuts-click","safe-area-inset-bottom","before-confirm","custom-view-class","immediate-change","root-portal","panel-height","show-panel-title","switch-mode","duration","custom-class","custom-style","confirm","change","cancel","open"],"description":"提供单选、多选、范围、周/月、日期时间等日历选择能力。\n\n[Docs](https://wot-ui.cn/component/calendar.html#calendar)"},"wd-card":{"attributes":["title","type","custom-title-class","custom-content-class","custom-footer-class","custom-class","custom-style"],"description":"用于展示商品的图片、价格等信息。\n\n[Docs](https://wot-ui.cn/component/card.html#card)"},"wd-cascader":{"attributes":["v-model","v-model:visible","options","title","before-confirm","check-strictly","confirm-text","value-key","text-key","children-key","tip-key","is-leaf-key","lazy-load","close-on-click-modal","z-index","safe-area-inset-bottom","line-width","line-height","line-theme","root-portal","custom-class","custom-style","confirm","close"],"description":"用于处理树形结构数据的分级选择,支持静态数据与异步加载两种模式。\n\n[Docs](https://wot-ui.cn/component/cascader.html#cascader)"},"wd-cell-group":{"attributes":["title","value","border","insert","center","size","title-width","layout","value-align","custom-class","custom-style"],"description":"单元格用于信息展示与轻交互,可独立使用,也可通过 `wd-cell-group` 统一管理布局与样式。\n\n[Docs](https://wot-ui.cn/component/cell.html#cellgroup)"},"wd-cell":{"attributes":["title","value","placeholder","label","prefix-icon","suffix-icon","icon-size","icon-prefix","to","replace","clickable","is-link","arrow-direction","size","border","title-width","center","layout","value-align","required","asterisk-position","hide-asterisk","ellipsis","use-title-slot","custom-class","custom-style","custom-prefix-class","custom-suffix-class","custom-label-class","custom-value-class","custom-title-class","click"],"description":"单元格用于信息展示与轻交互,可独立使用,也可通过 `wd-cell-group` 统一管理布局与样式。\n\n[Docs](https://wot-ui.cn/component/cell.html#cell)"},"wd-checkbox":{"attributes":["v-model","name","type","checked-color","unchecked-color","disabled","readonly","indeterminate","true-value","false-value","size","placement","direction","max-width","custom-label-class","custom-class","custom-style","change"],"description":"用于在一组备选项中进行多选,支持普通样式、按钮样式、自定义图标及全选控制。\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox)"},"wd-checkbox-group":{"attributes":["v-model","type","checked-color","unchecked-color","disabled","readonly","min","max","size","placement","direction","custom-class","custom-style","change"],"description":"用于在一组备选项中进行多选,支持普通样式、按钮样式、自定义图标及全选控制。\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup)"},"wd-circle":{"attributes":["v-model","size","color","layer-color","fill","speed","text","stroke-width","stroke-linecap","clockwise","custom-class","custom-style"],"description":"圆环形进度条组件,支持颜色定制、渐变色、方向控制和插槽内容。\n\n[Docs](https://wot-ui.cn/component/circle.html#circle)"},"wd-collapse-item":{"attributes":["name","title","disabled","before-expend","border","custom-body-class","custom-body-style","custom-class","custom-style"],"description":"将一组内容放置在多个折叠面板中,点击面板标题可展开或收起内容。\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapseitem)"},"wd-collapse":{"attributes":["change"],"description":"将一组内容放置在多个折叠面板中,点击面板标题可展开或收起内容。\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse)"},"wd-config-provider":{"attributes":["theme","theme-vars","custom-class","custom-style"],"description":"用于为 `Wot` 组件提供主题模式和主题变量配置,支持深色模式、主题定制和跨组件树共享配置。\n\n[Docs](https://wot-ui.cn/component/config-provider.html#configprovider)"},"wd-count-down":{"attributes":["time","millisecond","format","auto-start","custom-class","custom-style","change","finish"],"description":"用于实时展示倒计时数值,支持毫秒级渲染与手动控制。\n\n[Docs](https://wot-ui.cn/component/count-down.html#countdown)"},"wd-count-to":{"attributes":["color","type","start-val","end-val","duration","auto-start","decimals","decimal","separator","prefix","suffix","use-easing","custom-class","custom-style","mounted","finish"],"description":"用于数字滚动展示,支持主题、前后缀、小数精度与手动控制。\n\n[Docs](https://wot-ui.cn/component/count-to.html#countto)"},"wd-curtain":{"attributes":["v-model","value","src","width","to","close-position","close-on-click-modal","hide-when-close","z-index","custom-close-class","custom-close-style","root-portal","show-menu-by-longpress","close-on-click","custom-class","custom-style","click","close","closed","click-modal","beforeenter","enter","afterenter","beforeleave","leave","afterleave","load","error"],"description":"一般用于公告类图片弹窗展示。\n\n[Docs](https://wot-ui.cn/component/curtain.html#curtain)"},"wd-datetime-picker-view":{"attributes":["v-model","type","item-height","visible-item-count","value-key","label-key","formatter","filter","column-formatter","min-date","max-date","min-hour","max-hour","min-minute","max-minute","use-second","min-second","max-second","immediate-change","boundary-min-date","boundary-max-date","custom-class","custom-style","change","pickstart","pickend"],"description":"用于构建日期时间滚筒选项的基础视图组件。\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#datetimepickerview)"},"wd-datetime-picker":{"attributes":["v-model","v-model:visible","type","title","cancel-button-text","confirm-button-text","close-on-click-modal","safe-area-inset-bottom","item-height","visible-item-count","value-key","label-key","min-date","max-date","min-hour","max-hour","min-minute","max-minute","use-second","min-second","max-second","formatter","filter","before-confirm","display-format-tab-label","z-index","immediate-change","root-portal","custom-class","custom-style","custom-view-class","open","cancel","confirm","change","toggle"],"description":"对 `DatetimePickerView` 的封装组件,内置日期时间列构建与弹窗交互。\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#datetimepicker)"},"wd-dialog":{"description":"弹出对话框,常用于消息提示、操作确认和输入收集,支持函数式调用。\n\n[Docs](https://wot-ui.cn/component/dialog.html#dialog)"},"wd-divider":{"attributes":["color","content-position","dashed","vertical","hairline","custom-class","custom-style"],"description":"用于将内容分隔为多个区域。\n\n[Docs](https://wot-ui.cn/component/divider.html#divider)"},"wd-drop-menu":{"attributes":["z-index","direction","modal","close-on-click-modal","duration","custom-class","custom-style"],"description":"向下或向上弹出的菜单列表。\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenu)"},"wd-drop-menu-item":{"attributes":["v-model","disabled","options","icon-name","title","icon","icon-size","before-toggle","value-key","label-key","tip-key","custom-popup-class","custom-popup-style","popup-height","root-portal","custom-class","custom-style","change","open","opened","close","closed"],"description":"向下或向上弹出的菜单列表。\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem)"},"wd-empty":{"attributes":["icon","icon-size","tip"],"description":"一般用于兜底占位展示。\n\n[Docs](https://wot-ui.cn/component/empty.html#empty)"},"wd-fab":{"attributes":["v-model:active","type","position","draggable","direction","disabled","inactive-icon","active-icon","z-index","gap","expandable","custom-class","custom-style","click"],"description":"悬浮动作按钮组件,按下可显示一组动作按钮。\n\n[Docs](https://wot-ui.cn/component/fab.html#fab)"},"wd-floating-panel":{"attributes":["v-model:height","anchors","duration","content-draggable","safe-area-inset-bottom","show-scrollbar","custom-class","custom-style"],"description":"浮动在页面底部的面板,用户可以通过上下拖动秒板来浏览内容,从而在不离开当前视图的情况下访问更多信息,常用于地图导航。\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#floatingpanel)"},"wd-form-item":{"attributes":["click"],"description":"用于数据录入、校验,支持输入框、单选框、复选框、文件上传等类型。\n\n[Docs](https://wot-ui.cn/component/form.html#formitem)"},"wd-form":{"attributes":["model","schema","validate-trigger","reset-on-change","error-type","border","center","size","title-width","layout","value-align","asterisk-position","hide-asterisk","ellipsis"],"description":"用于数据录入、校验,支持输入框、单选框、复选框、文件上传等类型。\n\n[Docs](https://wot-ui.cn/component/form.html#form)"},"wd-gap":{"attributes":["height","bg-color","safe-area-bottom","custom-class","custom-style"],"description":"用于页面布局中的间距占位,可替代 `margin` 或 `padding`,也可作为底部占位元素。\n\n[Docs](https://wot-ui.cn/component/gap.html#gap)"},"wd-grid":{"attributes":["column","border","gutter","square","clickable","bg-color","hover-class","center","direction","reverse","icon-size","custom-class","custom-style"],"description":"宫格可以在水平方向上把页面分隔成等宽度的区块,用于展示内容或进行页面导航。\n\n[Docs](https://wot-ui.cn/component/grid.html#grid)"},"wd-grid-item":{"attributes":["text","ellipsis","icon","icon-color","icon-prefix","is-dot","value","max","badge-props","url","link-type","custom-class","custom-style"],"description":"宫格可以在水平方向上把页面分隔成等宽度的区块,用于展示内容或进行页面导航。\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem)"},"wd-icon":{"attributes":["name","color","size","class-prefix","css-icon","custom-style","custom-class","click"],"description":"基于字体的图标集。\n\n[Docs](https://wot-ui.cn/component/icon.html#icon)"},"wd-image-preview":{"attributes":["selector","images","start-position","show-index","loop","closeable","close-icon","close-icon-position","close-on-click","show-menu-by-longpress","z-index","open","close","change","long-press"],"description":"图片预览组件,支持多图预览、滑动切换和函数式调用。\n\n[Docs](https://wot-ui.cn/component/image-preview.html#imagepreview)"},"wd-img-cropper":{"attributes":["v-model","img-src","img-width","img-height","disabled-rotate","export-scale","max-scale","cancel-button-text","confirm-button-text","quality","file-type","aspect-ratio","confirm","cancel","imgloaderror","imgloaded"],"description":"图片剪裁组件,用于图片裁剪,支持拖拽、缩放、旋转等操作。\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#imgcropper)"},"wd-img":{"attributes":["src","preview-src","width","height","mode","round","radius","lazy-load","enable-preview","show-menu-by-longpress","show-loading","show-error","custom-class","custom-style","custom-image","click","load","error"],"description":"增强版图片组件,支持填充模式、懒加载、加载态/失败态插槽,以及点击预览。\n\n[Docs](https://wot-ui.cn/component/img.html#img)"},"wd-index-anchor":{"attributes":["index","custom-style","custom-class"],"description":"用于列表的索引分类显示和快速定位。\n\n[Docs](https://wot-ui.cn/component/index-bar.html#indexanchor)"},"wd-index-bar":{"attributes":["sticky"],"description":"用于列表的索引分类显示和快速定位。\n\n[Docs](https://wot-ui.cn/component/index-bar.html#indexbar)"},"wd-input-number":{"attributes":["v-model","min","max","step","step-strictly","precision","disabled","disable-input","disable-minus","disable-plus","without-input","input-width","allow-null","placeholder","adjust-position","before-change","long-press","immediate-change","update-on-init","input-type","theme","round","custom-class","custom-style","change","focus","blur","update:modelValue"],"description":"由增加按钮、减少按钮和输入框组成,用于在一定范围内输入或调整数字。\n\n[Docs](https://wot-ui.cn/component/input-number.html#inputnumber)"},"wd-input":{"attributes":["v-model","type","placeholder","placeholder-style","placeholder-class","maxlength","disabled","readonly","clearable","clear-trigger","focus-when-clear","show-password","prefix-icon","suffix-icon","show-word-limit","error","align-right","compact","focus","cursor-spacing","cursor","selection-start","selection-end","adjust-position","hold-keyboard","confirm-type","confirm-hold","always-embed","ignore-composition-event","inputmode","enable-native","custom-input-class","custom-class","custom-style","input","focus","blur","clear","confirm","keyboardheightchange","clickprefixicon","clicksuffixicon","click"],"description":"用户可以在文本框中输入内容。\n\n[Docs](https://wot-ui.cn/component/input.html#input)"},"wd-keyboard":{"attributes":["v-model:visible","v-model","title","mode","z-index","maxlength","show-delete-key","random-key-order","close-text","delete-text","close-button-loading","modal","hide-on-click-outside","lock-scroll","safe-area-inset-bottom","extra-key","root-portal","v-model:car","auto-switch-lang","custom-class","custom-style","input","delete","close","update:visible","update:modelValue","update:carLang"],"description":"虚拟数字键盘,用于输入数字、密码、身份证或车牌号等场景。\n\n[Docs](https://wot-ui.cn/component/keyboard.html#keyboard)"},"wd-row":{"attributes":["gutter","justify","align","custom-class","custom-style"],"description":"用于快速进行布局。\n\n[Docs](https://wot-ui.cn/component/layout.html#row)"},"wd-col":{"attributes":["span","offset","custom-class","custom-style"],"description":"用于快速进行布局。\n\n[Docs](https://wot-ui.cn/component/layout.html#col)"},"wd-loading":{"attributes":["type","color","size","text","direction","inherit-color","custom-class","custom-style","custom-spinner-class"],"description":"加载动画,用于表示加载中的过渡状态。\n\n[Docs](https://wot-ui.cn/component/loading.html#loading)"},"wd-loadmore":{"attributes":["state","loading-text","finished-text","error-text","loading-props","custom-class","custom-style","reload"],"description":"用于在列表底部展示加载状态。\n\n[Docs](https://wot-ui.cn/component/loadmore.html#loadmore)"},"wd-navbar-capsule":{"attributes":["custom-class","custom-style","back","back-home"],"description":"为页面提供导航功能,常用于页面顶部。\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbarcapsule)"},"wd-navbar":{"attributes":["title","left-text","right-text","left-arrow","bordered","fixed","placeholder","z-index","safe-area-inset-top","left-disabled","right-disabled","custom-class","custom-style","click-left","click-right"],"description":"为页面提供导航功能,常用于页面顶部。\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar)"},"wd-notice-bar":{"attributes":["text","type","prefix","scrollable","delay","speed","closable","wrapable","color","background-color","direction","custom-class","custom-style","close","next","click"],"description":"通知栏组件,用于在页面顶部展示通知提醒。\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#noticebar)"},"wd-notify":{"attributes":["type","message","duration","visible","position","color","background","z-index","safe-height","selector","root-portal","closable","variant","custom-class","custom-style"],"description":"通知类组件,用于在页面顶部展示通知信息。\n\n[Docs](https://wot-ui.cn/component/notify.html#notify)"},"wd-overlay":{"attributes":["show","duration","lock-scroll","z-index","custom-style","custom-class","click","before-enter","enter","after-enter","before-leave","leave","after-leave"],"description":"创建一个遮罩层,用于强调特定的页面元素,并阻止用户进行其他操作。\n\n[Docs](https://wot-ui.cn/component/overlay.html#overlay)"},"wd-pagination":{"attributes":["v-model","total-page","total","page-size","prev-text","next-text","show-icon","show-message","button-variant","hide-if-one-page","custom-class","custom-style","change","update:modelValue"],"description":"当数据量过多时,使用分页分解数据。\n\n[Docs](https://wot-ui.cn/component/pagination.html#pagination)"},"wd-password-input":{"attributes":["v-model","mask","info","error-info","gutter","length","focused","custom-class","custom-style","focus"],"description":"带网格的密码输入组件,适用于支付密码、短信验证码等场景,通常与 [Keyboard 键盘]\n\n[Docs](https://wot-ui.cn/component/password-input.html#passwordinput)"},"wd-picker-view":{"attributes":["v-model","columns","item-height","visible-item-count","value-key","label-key","immediate-change","cascade","children-key","custom-class","custom-style","change","pickstart","pickend","update:modelValue"],"description":"选择器视图,用于从一组数据中选择单个或多个值。\n\n[Docs](https://wot-ui.cn/component/picker-view.html#pickerview)"},"wd-picker":{"attributes":["v-model","v-model:visible","columns","cascade","title","cancel-button-text","confirm-button-text","value-key","label-key","children-key","item-height","visible-item-count","before-confirm","close-on-click-modal","z-index","safe-area-inset-bottom","immediate-change","root-portal","custom-class","custom-style","custom-view-class","confirm","cancel","open"],"description":"Picker 包含了一个弹出层(`wd-popup`)与一个选择器视图(`wd-picker-view`),不包含外层的触发元素(如 Input、Cell 等)。通常需要结合 `wd-cell` 或表单相关组件来触发显示。\n\n[Docs](https://wot-ui.cn/component/picker.html#picker)"},"wd-popover":{"attributes":["v-model","content","mode","placement","offset","visible-arrow","disabled","show-close","custom-class","custom-style","custom-arrow","custom-pop","open","close","change","menuclick"],"description":"常用于展示提示信息或菜单操作。\n\n[Docs](https://wot-ui.cn/component/popover.html#popover)"},"wd-popup":{"attributes":["v-model","transition","closable","position","close-on-click-modal","duration","modal","z-index","hide-when-close","modal-style","safe-area-inset-bottom","lazy-render","lock-scroll","root-portal","round","custom-class","custom-style","close","click-modal","before-enter","enter","after-enter","before-leave","leave","after-leave"],"description":"弹出层组件,用于展示弹窗、信息提示等内容。\n\n[Docs](https://wot-ui.cn/component/popup.html#popup)"},"wd-progress":{"attributes":["percentage","hide-text","color","status","duration","percent-position","custom-class","custom-style"],"description":"用于展示操作的当前进度。\n\n[Docs](https://wot-ui.cn/component/progress.html#progress)"},"wd-radio-group":{"attributes":["v-model","type","checked-color","unchecked-color","disabled","readonly","placement","direction","allow-uncheck","custom-class","custom-style","change"],"description":"单选框用于在一组备选项中进行单选。\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup)"},"wd-radio":{"description":"单选框用于在一组备选项中进行单选。\n\n[Docs](https://wot-ui.cn/component/radio.html#radio)"},"wd-rate":{"attributes":["v-model","num","readonly","size","space","color","active-color","icon","active-icon","disabled","allow-half","clearable","block","custom-class","custom-style","change"],"description":"用于快速评价,或展示评分结果。\n\n[Docs](https://wot-ui.cn/component/rate.html#rate)"},"wd-resize":{"attributes":["custom-style","custom-class","custom-container-class","resize"],"description":"当组件包裹的文档流尺寸发生变化时,触发 `resize` 事件。一般用于监听内容更新引起的尺寸和位置信息变化,再据此重新进行布局计算。\n\n[Docs](https://wot-ui.cn/component/resize.html#resize)"},"wd-root-portal":{"description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题,主要用于制作弹窗、弹出层等。\n\n[Docs](https://wot-ui.cn/component/root-portal.html#root-portal)"},"wd-search":{"attributes":["v-model","custom-input-class","placeholder","cancel-txt","variant","hide-cancel","disabled","maxlength","placeholder-left","focus","focus-when-clear","placeholder-style","placeholder-class","custom-class","custom-style","focus","blur","search","clear","cancel","change","click"],"description":"搜索框组件,支持输入框聚焦、失焦、输入、搜索、取消、清空事件。\n\n[Docs](https://wot-ui.cn/component/search.html#search)"},"wd-segmented":{"attributes":["v-model:value","disabled","options","theme","vibrate-short","custom-class","custom-style","change","click"],"description":"分段器用于展示多个选项并允许用户选择其中单个选项。\n\n[Docs](https://wot-ui.cn/component/segmented.html#segmented)"},"wd-select-picker":{"attributes":["v-model","v-model:visible","title","checked-color","min","max","select-size","loading","loading-color","close-on-click-modal","columns","type","value-key","label-key","confirm-button-text","before-confirm","z-index","safe-area-inset-bottom","filterable","filter-placeholder","scroll-into-view","custom-content-class","show-confirm","root-portal","custom-class","custom-style","change","cancel","confirm","open","close"],"description":"用于从一组选项中进行单选或多选,通常配合外部单元格或按钮控制弹层显示。\n\n[Docs](https://wot-ui.cn/component/select-picker.html#selectpicker)"},"wd-sidebar":{"attributes":["v-model","before-change","custom-class","custom-style","change"],"description":"垂直展示的导航栏,用于在不同内容区域之间进行切换。\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebar)"},"wd-sidebar-item":{"attributes":["label","value","badge","badge-props","icon","is-dot","max","disabled","custom-class","custom-style"],"description":"垂直展示的导航栏,用于在不同内容区域之间进行切换。\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem)"},"wd-signature":{"attributes":["pen-color","line-width","confirm-text","clear-text","revoke-text","restore-text","file-type","quality","export-scale","disabled","height","width","background-color","disable-scroll","enable-history","step","undo-text","redo-text","pressure","max-width","min-width","min-speed","custom-class","custom-style","start","end","signing","confirm","clear"],"description":"用于签名场景,基于 Canvas 实现的签名组件,支持导出图片、历史记录、笔锋效果、自定义底部操作等能力。\n\n[Docs](https://wot-ui.cn/component/signature.html#signature)"},"wd-skeleton":{"attributes":["theme","row-col","loading","animation","custom-class","custom-style"],"description":"[Docs](https://wot-ui.cn/component/skeleton.html#skeleton)"},"wd-slide-verify":{"attributes":["tolerance","text","success-text","disabled","background-color","active-background-color","icon","success-icon","icon-size","success-icon-size","success","fail"],"description":"滑动验证组件,用于人机验证场景。\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#slideverify)"},"wd-slider":{"attributes":["v-model","min","max","step","range","vertical","theme","disabled","show-extreme-value","popover-visible","marks","active-color","inactive-color","custom-class","custom-style","dragstart","dragmove","dragend","change"],"description":"支持单向滑块和双向滑块,可用于在范围内选择一个值或一段区间。\n\n[Docs](https://wot-ui.cn/component/slider.html#slider)"},"wd-sort-button":{"attributes":["v-model","title","allow-reset","desc-first","line","custom-class","custom-style","change"],"description":"用于展示排序按钮,支持升序、降序、重置三种状态。\n\n[Docs](https://wot-ui.cn/component/sort-button.html#sortbutton)"},"wd-steps":{"attributes":["active","vertical","dot","space","align-center","custom-class","custom-style"],"description":"用于引导用户按照流程完成任务,或向用户展示当前所处的步骤状态。\n\n[Docs](https://wot-ui.cn/component/steps.html#steps)"},"wd-step":{"attributes":["title","description","icon","status","custom-class","custom-style"],"description":"用于引导用户按照流程完成任务,或向用户展示当前所处的步骤状态。\n\n[Docs](https://wot-ui.cn/component/steps.html#step)"},"wd-sticky":{"attributes":["z-index","offset-top","custom-class","custom-style"],"description":"粘性布局组件,用于在页面滚动时将元素固定在指定位置。\n\n[Docs](https://wot-ui.cn/component/sticky.html#sticky)"},"wd-sticky-box":{"description":"粘性布局组件,用于在页面滚动时将元素固定在指定位置。\n\n[Docs](https://wot-ui.cn/component/sticky.html#sticky-box)"},"wd-swipe-action":{"attributes":["v-model","disabled","before-close","custom-class","custom-style","click","update:modelValue"],"description":"常用于单元格左右滑删除等手势操作。\n\n[Docs](https://wot-ui.cn/component/swipe-action.html#swipeaction)"},"wd-swiper-indicator":{"attributes":["current","direction","min-show-num","indicator-position","show-controls","total","type"],"description":"用于创建轮播,支持水平和垂直方向滑动、自定义指示器、图片和视频资源展示,以及基于对象数据渲染标题。\n\n[Docs](https://wot-ui.cn/component/swiper.html#swiperindicator)"},"wd-swiper":{"attributes":["autoplay","v-model:current","direction","display-multiple-items","duration","easing-function","height","interval","list","loop","video-loop","muted","next-margin","indicator-position","previous-margin","radius","snap-to-edge","indicator","image-mode","show-menu-by-longpress","value-key","text-key","autoplay-video","stop-previous-video","stop-autoplay-when-video-play","adjust-height","adjust-vertical-height","custom-indicator-class","custom-image-class","custom-prev-image-class","custom-next-image-class","custom-item-class","custom-prev-class","custom-next-class","custom-text-class","custom-text-style","custom-class","custom-style","click","change","animationfinish","update:current"],"description":"用于创建轮播,支持水平和垂直方向滑动、自定义指示器、图片和视频资源展示,以及基于对象数据渲染标题。\n\n[Docs](https://wot-ui.cn/component/swiper.html#swiper)"},"wd-switch":{"attributes":["v-model","disabled","inactive-action-icon","active-action-icon","active-icon","inactive-icon","active-text","inactive-text","active-value","inactive-value","active-color","inactive-color","size","shape","loading","loading-props","before-change","class-prefix","custom-class","custom-style","change"],"description":"用来打开或关闭选项。\n\n[Docs](https://wot-ui.cn/component/switch.html#switch)"},"wd-tabbar":{"attributes":["change"],"description":"底部导航栏,用于在不同页面之间进行切换。\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbar)"},"wd-tabbar-item":{"attributes":["title","name","icon","value","is-dot","max","badge-props","custom-class","custom-style"],"description":"底部导航栏,用于在不同页面之间进行切换。\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem)"},"wd-table":{"attributes":["data","border","stripe","height","show-header","ellipsis","index","fixed-header","span-method","virtual","row-height","buffer","custom-class","custom-style","sort-method","row-click"],"description":"用于展示多条结构类似的数据,支持固定列、排序、合并单元格与虚拟滚动等能力。\n\n[Docs](https://wot-ui.cn/component/table.html#table)"},"wd-table-column":{"attributes":["prop","label","width","sortable","fixed","align"],"description":"用于展示多条结构类似的数据,支持固定列、排序、合并单元格与虚拟滚动等能力。\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn)"},"wd-tabs":{"attributes":["v-model","slidable-num","map-num","map-title","sticky","offset-top","swipeable","line-theme","line-width","line-height","color","inactive-color","animated","duration","slidable","show-scrollbar","custom-class","custom-style","change","click","disabled","update:modelValue"],"description":"标签页组件,用于在不同内容区域之间进行切换。\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs)"},"wd-tab":{"attributes":["name","title","disabled","lazy","badge-props","custom-class","custom-style"],"description":"标签页组件,用于在不同内容区域之间进行切换。\n\n[Docs](https://wot-ui.cn/component/tabs.html#tab)"},"wd-tag":{"attributes":["size","type","icon","closable","dynamic","color","bg-color","round","mark","variant","custom-class","custom-style","click","close","confirm"],"description":"用于标记状态或者概括主要内容。\n\n[Docs](https://wot-ui.cn/component/tag.html#tag)"},"wd-text":{"attributes":["type","text","size","mode","decoration","call","bold","format","color","prefix","suffix","lines","line-height","custom-class","custom-style","click"],"description":"文本组件,用于展示文本信息。\n\n[Docs](https://wot-ui.cn/component/text.html#text)"},"wd-textarea":{"attributes":["v-model","placeholder","placeholder-style","placeholder-class","disabled","readonly","maxlength","clearable","show-word-limit","clear-trigger","focus-when-clear","error","focus","auto-focus","auto-height","fixed","cursor-spacing","cursor","confirm-type","confirm-hold","show-confirm-bar","selection-start","selection-end","adjust-position","disable-default-padding","hold-keyboard","ignore-composition-event","inputmode","enable-native","compact","custom-textarea-class","custom-class","custom-style","input","focus","blur","clear","linechange","confirm","keyboardheightchange"],"description":"用于输入多行文本信息,支持清空、字数统计、高度自适应与紧凑布局。\n\n[Docs](https://wot-ui.cn/component/textarea.html#textarea)"},"wd-toast":{"attributes":["selector","msg","direction","icon-name","icon-size","loading-type","loading-color","loading-size","icon-color","position","z-index","cover","icon-class","class-prefix","opened","closed","custom-class","custom-style"],"description":"轻提示组件,用于消息通知、加载提示和操作结果反馈,支持组件挂载点配合 `useToast\n\n[Docs](https://wot-ui.cn/component/toast.html#toast)"},"wd-tooltip":{"attributes":["model-value","content","placement","offset","visible-arrow","disabled","show-close","custom-arrow","custom-pop","custom-class","custom-style","open","close","change","update:modelValue"],"description":"用于展示简短提示信息,支持多方向定位、受控显隐、自定义内容和动态更新位置。\n\n[Docs](https://wot-ui.cn/component/tooltip.html#tooltip)"},"wd-tour":{"attributes":["model-value","steps","current","mask","mask-color","offset","duration","border-radius","padding","prev-text","next-text","skip-text","finish-text","bottom-safety-offset","top-safety-offset","custom-nav","click-mask-next","highlight-style","z-index","show-tour-buttons","scope","missing-strategy","custom-class","custom-style","change","prev","next","finish","skip","error","update:modelValue","update:current"],"description":"用于分步骤引导用户了解页面功能,可高亮目标元素并在其附近展示说明面板。\n\n[Docs](https://wot-ui.cn/component/tour.html#tour)"},"wd-tour-step":{"attributes":["element","content","padding","offset","placement"],"description":"用于分步骤引导用户了解页面功能,可高亮目标元素并在其附近展示说明面板。\n\n[Docs](https://wot-ui.cn/component/tour.html#tourstep)"},"wd-transition":{"attributes":["show","duration","lazy-render","name","destroy","enter-class","enter-active-class","enter-to-class","leave-class","leave-active-class","leave-to-class","disable-touch-move","custom-style","custom-class","before-enter","enter","after-enter","before-leave","leave","after-leave","click"],"description":"用于在元素进入或离开时应用过渡效果。\n\n[Docs](https://wot-ui.cn/component/transition.html#transition)"},"wd-upload":{"attributes":["v-model:file","action","header","multiple","disabled","limit","show-limit-num","max-size","source-type","size-type","name","form-data","on-preview-fail","before-upload","before-choose","before-remove","before-preview","build-form-data","loading-type","loading-color","loading-size","accept","status-key","compressed","max-duration","camera","image-mode","success-status","custom-evoke-class","custom-preview-class","auto-upload","reupload","upload-method","extension","custom-class","custom-style","success","fail","progress","oversize","chooseerror","change","remove","update:fileList"],"description":"图片、视频和文件上传组件。\n\n[Docs](https://wot-ui.cn/component/upload.html#upload)"},"wd-video-preview":{"attributes":["selector","z-index","on-open","on-close","custom-style","custom-class","open","close"],"description":"视频预览组件,支持通过组件实例或 `useVideoPreview` 函数式调用打开全屏视频预览层。`useVideoPreview` 的独立用法与 API 说明见 [useVideoPreview]\n\n[Docs](https://wot-ui.cn/component/video-preview.html#videopreview)"},"wd-watermark":{"attributes":["content","image","image-height","image-width","gutter-x","gutter-y","width","height","full-screen","color","size","font-style","font-weight","font-family","rotate","z-index","opacity","layout","custom-style","custom-class"],"description":"在页面或组件上添加指定的图片或文字,可用于版权保护、品牌宣传等场景。\n\n[Docs](https://wot-ui.cn/component/watermark.html#watermark)"}}