@sdata/web-vue 1.2.0 → 1.3.0

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 (1380) hide show
  1. package/es/_components/feedback-icon.vue.d.ts +486 -0
  2. package/es/_components/icon-hover.vue.d.ts +34 -0
  3. package/es/_components/input-label/input-label.d.ts +4 -4
  4. package/es/_components/picker/input-range.vue.d.ts +753 -0
  5. package/es/_components/picker/input.vue.d.ts +729 -0
  6. package/es/_components/resize-trigger.vue.d.ts +274 -0
  7. package/es/_components/select-view/select-view.d.ts +9 -9
  8. package/es/_components/transition/expand-transition.vue.d.ts +10 -0
  9. package/es/_components/virtual-list/filler.vue.d.ts +35 -0
  10. package/es/_components/virtual-list/virtual-list.vue.d.ts +133 -0
  11. package/es/_components/virtual-list-v2/index.d.ts +1 -1
  12. package/es/_components/virtual-list-v2/virtual-list.vue.d.ts +151 -0
  13. package/es/_hooks/use-component-ref.d.ts +1 -1
  14. package/es/_hooks/use-pure-prop.d.ts +2 -0
  15. package/es/_hooks/use-trigger.d.ts +1 -1
  16. package/es/_utils/style.d.ts +1 -1
  17. package/es/affix/affix.vue.d.ts +58 -0
  18. package/es/affix/index.d.ts +1 -1
  19. package/es/alert/alert.vue.d.ts +690 -0
  20. package/es/alert/index.d.ts +1187 -17
  21. package/es/anchor/anchor-link.vue.d.ts +17 -0
  22. package/es/anchor/anchor.vue.d.ts +66 -0
  23. package/es/anchor/index.d.ts +11 -11
  24. package/es/auto-complete/auto-complete.d.ts +3 -3
  25. package/es/auto-complete/auto-complete.js +8 -8
  26. package/es/auto-complete/index.d.ts +9 -9
  27. package/es/avatar/avatar.vue.d.ts +324 -0
  28. package/es/avatar/index.d.ts +476 -8
  29. package/es/back-top/back-top.vue.d.ts +163 -0
  30. package/es/back-top/index.d.ts +237 -3
  31. package/es/badge/badge.d.ts +1 -1
  32. package/es/badge/index.d.ts +3 -3
  33. package/es/button/button-group.vue.d.ts +42 -0
  34. package/es/button/button.vue.d.ts +208 -0
  35. package/es/button/index.d.ts +244 -10
  36. package/es/calendar/calendar.d.ts +5 -5
  37. package/es/calendar/calendar.js +2 -2
  38. package/es/calendar/header.d.ts +1 -1
  39. package/es/calendar/index.d.ts +15 -15
  40. package/es/calendar/month.d.ts +1 -1
  41. package/es/calendar/week.d.ts +1 -1
  42. package/es/calendar/year.d.ts +1 -1
  43. package/es/card/card-grid.vue.d.ts +19 -0
  44. package/es/card/card.d.ts +2 -2
  45. package/es/card/index.d.ts +7 -7
  46. package/es/carousel/carousel-arrow.vue.d.ts +507 -0
  47. package/es/carousel/carousel-indicator.vue.d.ts +69 -0
  48. package/es/carousel/carousel-item.vue.d.ts +14 -0
  49. package/es/carousel/carousel.d.ts +4 -4
  50. package/es/carousel/carousel.js +1 -1
  51. package/es/carousel/index.d.ts +13 -13
  52. package/es/cascader/cascader-option.d.ts +1 -1
  53. package/es/cascader/cascader-panel.vue.d.ts +249 -0
  54. package/es/cascader/cascader-panel.vue_vue_type_script_lang.js +1 -1
  55. package/es/cascader/cascader.vue.d.ts +1171 -0
  56. package/es/cascader/cascader.vue_vue_type_script_lang.js +7 -7
  57. package/es/cascader/index.d.ts +129 -129
  58. package/es/checkbox/checkbox-group.d.ts +2 -2
  59. package/es/checkbox/checkbox-group.js +1 -1
  60. package/es/checkbox/checkbox.d.ts +3 -3
  61. package/es/checkbox/checkbox.js +1 -1
  62. package/es/checkbox/index.d.ts +5 -5
  63. package/es/collapse/collapse-item.d.ts +238 -4
  64. package/es/collapse/collapse.vue.d.ts +83 -0
  65. package/es/collapse/collapse.vue_vue_type_script_lang.js +1 -1
  66. package/es/collapse/index.d.ts +243 -9
  67. package/es/color-picker/color-picker.d.ts +4 -4
  68. package/es/color-picker/color-picker.js +1 -1
  69. package/es/color-picker/index.d.ts +12 -12
  70. package/es/color-picker/panel.d.ts +1 -1
  71. package/es/comment/comment.vue.d.ts +48 -0
  72. package/es/comment/index.d.ts +4 -4
  73. package/es/config-provider/config-provider.vue.d.ts +75 -0
  74. package/es/config-provider/index.d.ts +7 -7
  75. package/es/date-picker/hooks/use-format.d.ts +2 -2
  76. package/es/date-picker/index.d.ts +5213 -299
  77. package/es/date-picker/panels/body.vue.d.ts +90 -0
  78. package/es/date-picker/panels/date/index.vue.d.ts +1803 -0
  79. package/es/date-picker/panels/footer.vue.d.ts +1058 -0
  80. package/es/date-picker/panels/header.vue.d.ts +574 -0
  81. package/es/date-picker/panels/month/index.vue.d.ts +741 -0
  82. package/es/date-picker/panels/quarter/index.vue.d.ts +729 -0
  83. package/es/date-picker/panels/shortcuts.vue.d.ts +481 -0
  84. package/es/date-picker/panels/week/index.vue.d.ts +1820 -0
  85. package/es/date-picker/panels/week-list.vue.d.ts +24 -0
  86. package/es/date-picker/panels/year/index.vue.d.ts +727 -0
  87. package/es/date-picker/picker-panel.vue.d.ts +7545 -0
  88. package/es/date-picker/picker.vue.d.ts +9305 -0
  89. package/es/date-picker/picker.vue_vue_type_script_lang.js +4 -4
  90. package/es/date-picker/range-picker-panel.vue.d.ts +7578 -0
  91. package/es/date-picker/range-picker.vue.d.ts +9470 -0
  92. package/es/date-picker/range-picker.vue_vue_type_script_lang.js +4 -4
  93. package/es/descriptions/descriptions-item.vue.d.ts +19 -0
  94. package/es/descriptions/descriptions.d.ts +5 -5
  95. package/es/descriptions/index.d.ts +16 -16
  96. package/es/divider/divider.d.ts +1 -1
  97. package/es/divider/index.d.ts +3 -3
  98. package/es/drawer/drawer.vue.d.ts +822 -0
  99. package/es/drawer/drawer.vue_vue_type_script_lang.js +6 -6
  100. package/es/drawer/index.d.ts +751 -49
  101. package/es/dropdown/dropdown-button.vue.d.ts +1741 -0
  102. package/es/dropdown/dropdown-button.vue_vue_type_script_lang.js +3 -3
  103. package/es/dropdown/dropdown-group.vue.d.ts +9 -0
  104. package/es/dropdown/dropdown-option.vue.d.ts +38 -0
  105. package/es/dropdown/dropdown-panel.vue.d.ts +409 -0
  106. package/es/dropdown/dropdown-submenu.vue.d.ts +1195 -0
  107. package/es/dropdown/dropdown-submenu.vue_vue_type_script_lang.js +1 -1
  108. package/es/dropdown/dropdown.vue.d.ts +1048 -0
  109. package/es/dropdown/dropdown.vue_vue_type_script_lang.js +2 -2
  110. package/es/dropdown/index.d.ts +677 -209
  111. package/es/empty/empty.d.ts +2 -2
  112. package/es/empty/index.d.ts +6 -6
  113. package/es/form/form-item-label.vue.d.ts +1500 -0
  114. package/es/form/form-item-message.vue.d.ts +20 -0
  115. package/es/form/form-item.vue.d.ts +1865 -0
  116. package/es/form/form.vue.d.ts +158 -0
  117. package/es/form/index.d.ts +197 -80
  118. package/es/grid/grid-col.vue.d.ts +107 -0
  119. package/es/grid/grid-item.vue.d.ts +50 -0
  120. package/es/grid/grid-row.vue.d.ts +61 -0
  121. package/es/grid/grid.vue.d.ts +59 -0
  122. package/es/grid/grid.vue_vue_type_script_lang.js +1 -1
  123. package/es/grid/index.d.ts +9 -9
  124. package/es/icon/icon-align-center/icon-align-center.vue.d.ts +59 -0
  125. package/es/icon/icon-align-center/index.d.ts +3 -3
  126. package/es/icon/icon-align-left/icon-align-left.vue.d.ts +59 -0
  127. package/es/icon/icon-align-left/index.d.ts +3 -3
  128. package/es/icon/icon-align-right/icon-align-right.vue.d.ts +59 -0
  129. package/es/icon/icon-align-right/index.d.ts +3 -3
  130. package/es/icon/icon-alipay-circle/icon-alipay-circle.vue.d.ts +59 -0
  131. package/es/icon/icon-alipay-circle/index.d.ts +3 -3
  132. package/es/icon/icon-apps/icon-apps.vue.d.ts +59 -0
  133. package/es/icon/icon-apps/index.d.ts +3 -3
  134. package/es/icon/icon-archive/icon-archive.vue.d.ts +59 -0
  135. package/es/icon/icon-archive/index.d.ts +3 -3
  136. package/es/icon/icon-arrow-down/icon-arrow-down.vue.d.ts +59 -0
  137. package/es/icon/icon-arrow-down/index.d.ts +3 -3
  138. package/es/icon/icon-arrow-fall/icon-arrow-fall.vue.d.ts +59 -0
  139. package/es/icon/icon-arrow-fall/index.d.ts +3 -3
  140. package/es/icon/icon-arrow-left/icon-arrow-left.vue.d.ts +59 -0
  141. package/es/icon/icon-arrow-left/index.d.ts +3 -3
  142. package/es/icon/icon-arrow-right/icon-arrow-right.vue.d.ts +59 -0
  143. package/es/icon/icon-arrow-right/index.d.ts +3 -3
  144. package/es/icon/icon-arrow-rise/icon-arrow-rise.vue.d.ts +59 -0
  145. package/es/icon/icon-arrow-rise/index.d.ts +3 -3
  146. package/es/icon/icon-arrow-up/icon-arrow-up.vue.d.ts +59 -0
  147. package/es/icon/icon-arrow-up/index.d.ts +3 -3
  148. package/es/icon/icon-at/icon-at.vue.d.ts +59 -0
  149. package/es/icon/icon-at/index.d.ts +3 -3
  150. package/es/icon/icon-attachment/icon-attachment.vue.d.ts +59 -0
  151. package/es/icon/icon-attachment/index.d.ts +3 -3
  152. package/es/icon/icon-backward/icon-backward.vue.d.ts +59 -0
  153. package/es/icon/icon-backward/index.d.ts +3 -3
  154. package/es/icon/icon-bar-chart/icon-bar-chart.vue.d.ts +59 -0
  155. package/es/icon/icon-bar-chart/index.d.ts +3 -3
  156. package/es/icon/icon-bg-colors/icon-bg-colors.vue.d.ts +59 -0
  157. package/es/icon/icon-bg-colors/index.d.ts +3 -3
  158. package/es/icon/icon-bold/icon-bold.vue.d.ts +59 -0
  159. package/es/icon/icon-bold/index.d.ts +3 -3
  160. package/es/icon/icon-book/icon-book.vue.d.ts +59 -0
  161. package/es/icon/icon-book/index.d.ts +3 -3
  162. package/es/icon/icon-bookmark/icon-bookmark.vue.d.ts +59 -0
  163. package/es/icon/icon-bookmark/index.d.ts +3 -3
  164. package/es/icon/icon-branch/icon-branch.vue.d.ts +59 -0
  165. package/es/icon/icon-branch/index.d.ts +3 -3
  166. package/es/icon/icon-brush/icon-brush.vue.d.ts +59 -0
  167. package/es/icon/icon-brush/index.d.ts +3 -3
  168. package/es/icon/icon-bug/icon-bug.vue.d.ts +59 -0
  169. package/es/icon/icon-bug/index.d.ts +3 -3
  170. package/es/icon/icon-bulb/icon-bulb.vue.d.ts +59 -0
  171. package/es/icon/icon-bulb/index.d.ts +3 -3
  172. package/es/icon/icon-bytedance-color/icon-bytedance-color.vue.d.ts +59 -0
  173. package/es/icon/icon-bytedance-color/index.d.ts +3 -3
  174. package/es/icon/icon-calendar/icon-calendar.vue.d.ts +59 -0
  175. package/es/icon/icon-calendar/index.d.ts +3 -3
  176. package/es/icon/icon-calendar-clock/icon-calendar-clock.vue.d.ts +59 -0
  177. package/es/icon/icon-calendar-clock/index.d.ts +3 -3
  178. package/es/icon/icon-camera/icon-camera.vue.d.ts +59 -0
  179. package/es/icon/icon-camera/index.d.ts +3 -3
  180. package/es/icon/icon-caret-down/icon-caret-down.vue.d.ts +59 -0
  181. package/es/icon/icon-caret-down/index.d.ts +3 -3
  182. package/es/icon/icon-caret-left/icon-caret-left.vue.d.ts +59 -0
  183. package/es/icon/icon-caret-left/index.d.ts +3 -3
  184. package/es/icon/icon-caret-right/icon-caret-right.vue.d.ts +59 -0
  185. package/es/icon/icon-caret-right/index.d.ts +3 -3
  186. package/es/icon/icon-caret-up/icon-caret-up.vue.d.ts +59 -0
  187. package/es/icon/icon-caret-up/index.d.ts +3 -3
  188. package/es/icon/icon-check/icon-check.vue.d.ts +59 -0
  189. package/es/icon/icon-check/index.d.ts +3 -3
  190. package/es/icon/icon-check-circle/icon-check-circle.vue.d.ts +59 -0
  191. package/es/icon/icon-check-circle/index.d.ts +3 -3
  192. package/es/icon/icon-check-circle-fill/icon-check-circle-fill.vue.d.ts +59 -0
  193. package/es/icon/icon-check-circle-fill/index.d.ts +3 -3
  194. package/es/icon/icon-check-square/icon-check-square.vue.d.ts +59 -0
  195. package/es/icon/icon-check-square/index.d.ts +3 -3
  196. package/es/icon/icon-chinese-fill/icon-chinese-fill.vue.d.ts +59 -0
  197. package/es/icon/icon-chinese-fill/index.d.ts +3 -3
  198. package/es/icon/icon-clock-circle/icon-clock-circle.vue.d.ts +59 -0
  199. package/es/icon/icon-clock-circle/index.d.ts +3 -3
  200. package/es/icon/icon-close/icon-close.vue.d.ts +59 -0
  201. package/es/icon/icon-close/index.d.ts +3 -3
  202. package/es/icon/icon-close-circle/icon-close-circle.vue.d.ts +59 -0
  203. package/es/icon/icon-close-circle/index.d.ts +3 -3
  204. package/es/icon/icon-close-circle-fill/icon-close-circle-fill.vue.d.ts +59 -0
  205. package/es/icon/icon-close-circle-fill/index.d.ts +3 -3
  206. package/es/icon/icon-cloud/icon-cloud.vue.d.ts +59 -0
  207. package/es/icon/icon-cloud/index.d.ts +3 -3
  208. package/es/icon/icon-cloud-download/icon-cloud-download.vue.d.ts +59 -0
  209. package/es/icon/icon-cloud-download/index.d.ts +3 -3
  210. package/es/icon/icon-code/icon-code.vue.d.ts +59 -0
  211. package/es/icon/icon-code/index.d.ts +3 -3
  212. package/es/icon/icon-code-block/icon-code-block.vue.d.ts +59 -0
  213. package/es/icon/icon-code-block/index.d.ts +3 -3
  214. package/es/icon/icon-code-sandbox/icon-code-sandbox.vue.d.ts +59 -0
  215. package/es/icon/icon-code-sandbox/index.d.ts +3 -3
  216. package/es/icon/icon-code-square/icon-code-square.vue.d.ts +59 -0
  217. package/es/icon/icon-code-square/index.d.ts +3 -3
  218. package/es/icon/icon-codepen/icon-codepen.vue.d.ts +59 -0
  219. package/es/icon/icon-codepen/index.d.ts +3 -3
  220. package/es/icon/icon-command/icon-command.vue.d.ts +59 -0
  221. package/es/icon/icon-command/index.d.ts +3 -3
  222. package/es/icon/icon-common/icon-common.vue.d.ts +59 -0
  223. package/es/icon/icon-common/index.d.ts +3 -3
  224. package/es/icon/icon-compass/icon-compass.vue.d.ts +59 -0
  225. package/es/icon/icon-compass/index.d.ts +3 -3
  226. package/es/icon/icon-computer/icon-computer.vue.d.ts +59 -0
  227. package/es/icon/icon-computer/index.d.ts +3 -3
  228. package/es/icon/icon-copy/icon-copy.vue.d.ts +59 -0
  229. package/es/icon/icon-copy/index.d.ts +3 -3
  230. package/es/icon/icon-copyright/icon-copyright.vue.d.ts +59 -0
  231. package/es/icon/icon-copyright/index.d.ts +3 -3
  232. package/es/icon/icon-customer-service/icon-customer-service.vue.d.ts +59 -0
  233. package/es/icon/icon-customer-service/index.d.ts +3 -3
  234. package/es/icon/icon-dashboard/icon-dashboard.vue.d.ts +59 -0
  235. package/es/icon/icon-dashboard/index.d.ts +3 -3
  236. package/es/icon/icon-delete/icon-delete.vue.d.ts +59 -0
  237. package/es/icon/icon-delete/index.d.ts +3 -3
  238. package/es/icon/icon-desktop/icon-desktop.vue.d.ts +59 -0
  239. package/es/icon/icon-desktop/index.d.ts +3 -3
  240. package/es/icon/icon-dice/icon-dice.vue.d.ts +59 -0
  241. package/es/icon/icon-dice/index.d.ts +3 -3
  242. package/es/icon/icon-double-down/icon-double-down.vue.d.ts +59 -0
  243. package/es/icon/icon-double-down/index.d.ts +3 -3
  244. package/es/icon/icon-double-left/icon-double-left.vue.d.ts +59 -0
  245. package/es/icon/icon-double-left/index.d.ts +3 -3
  246. package/es/icon/icon-double-right/icon-double-right.vue.d.ts +59 -0
  247. package/es/icon/icon-double-right/index.d.ts +3 -3
  248. package/es/icon/icon-double-up/icon-double-up.vue.d.ts +59 -0
  249. package/es/icon/icon-double-up/index.d.ts +3 -3
  250. package/es/icon/icon-down/icon-down.vue.d.ts +59 -0
  251. package/es/icon/icon-down/index.d.ts +3 -3
  252. package/es/icon/icon-down-circle/icon-down-circle.vue.d.ts +59 -0
  253. package/es/icon/icon-down-circle/index.d.ts +3 -3
  254. package/es/icon/icon-download/icon-download.vue.d.ts +59 -0
  255. package/es/icon/icon-download/index.d.ts +3 -3
  256. package/es/icon/icon-drag-arrow/icon-drag-arrow.vue.d.ts +59 -0
  257. package/es/icon/icon-drag-arrow/index.d.ts +3 -3
  258. package/es/icon/icon-drag-dot/icon-drag-dot.vue.d.ts +59 -0
  259. package/es/icon/icon-drag-dot/index.d.ts +3 -3
  260. package/es/icon/icon-drag-dot-vertical/icon-drag-dot-vertical.vue.d.ts +59 -0
  261. package/es/icon/icon-drag-dot-vertical/index.d.ts +3 -3
  262. package/es/icon/icon-drive-file/icon-drive-file.vue.d.ts +59 -0
  263. package/es/icon/icon-drive-file/index.d.ts +3 -3
  264. package/es/icon/icon-ear/icon-ear.vue.d.ts +59 -0
  265. package/es/icon/icon-ear/index.d.ts +3 -3
  266. package/es/icon/icon-edit/icon-edit.vue.d.ts +59 -0
  267. package/es/icon/icon-edit/index.d.ts +3 -3
  268. package/es/icon/icon-email/icon-email.vue.d.ts +59 -0
  269. package/es/icon/icon-email/index.d.ts +3 -3
  270. package/es/icon/icon-empty/icon-empty.vue.d.ts +59 -0
  271. package/es/icon/icon-empty/index.d.ts +3 -3
  272. package/es/icon/icon-english-fill/icon-english-fill.vue.d.ts +59 -0
  273. package/es/icon/icon-english-fill/index.d.ts +3 -3
  274. package/es/icon/icon-eraser/icon-eraser.vue.d.ts +59 -0
  275. package/es/icon/icon-eraser/index.d.ts +3 -3
  276. package/es/icon/icon-exclamation/icon-exclamation.vue.d.ts +59 -0
  277. package/es/icon/icon-exclamation/index.d.ts +3 -3
  278. package/es/icon/icon-exclamation-circle/icon-exclamation-circle.vue.d.ts +59 -0
  279. package/es/icon/icon-exclamation-circle/index.d.ts +3 -3
  280. package/es/icon/icon-exclamation-circle-fill/icon-exclamation-circle-fill.vue.d.ts +59 -0
  281. package/es/icon/icon-exclamation-circle-fill/index.d.ts +3 -3
  282. package/es/icon/icon-exclamation-polygon-fill/icon-exclamation-polygon-fill.vue.d.ts +59 -0
  283. package/es/icon/icon-exclamation-polygon-fill/index.d.ts +3 -3
  284. package/es/icon/icon-expand/icon-expand.vue.d.ts +59 -0
  285. package/es/icon/icon-expand/index.d.ts +3 -3
  286. package/es/icon/icon-experiment/icon-experiment.vue.d.ts +59 -0
  287. package/es/icon/icon-experiment/index.d.ts +3 -3
  288. package/es/icon/icon-export/icon-export.vue.d.ts +59 -0
  289. package/es/icon/icon-export/index.d.ts +3 -3
  290. package/es/icon/icon-eye/icon-eye.vue.d.ts +59 -0
  291. package/es/icon/icon-eye/index.d.ts +3 -3
  292. package/es/icon/icon-eye-invisible/icon-eye-invisible.vue.d.ts +59 -0
  293. package/es/icon/icon-eye-invisible/index.d.ts +3 -3
  294. package/es/icon/icon-face-frown-fill/icon-face-frown-fill.vue.d.ts +59 -0
  295. package/es/icon/icon-face-frown-fill/index.d.ts +3 -3
  296. package/es/icon/icon-face-meh-fill/icon-face-meh-fill.vue.d.ts +59 -0
  297. package/es/icon/icon-face-meh-fill/index.d.ts +3 -3
  298. package/es/icon/icon-face-smile-fill/icon-face-smile-fill.vue.d.ts +59 -0
  299. package/es/icon/icon-face-smile-fill/index.d.ts +3 -3
  300. package/es/icon/icon-faceBook-circle-fill/icon-faceBook-circle-fill.vue.d.ts +59 -0
  301. package/es/icon/icon-faceBook-circle-fill/index.d.ts +3 -3
  302. package/es/icon/icon-facebook/icon-facebook.vue.d.ts +59 -0
  303. package/es/icon/icon-facebook/index.d.ts +3 -3
  304. package/es/icon/icon-facebook-square-fill/icon-facebook-square-fill.vue.d.ts +59 -0
  305. package/es/icon/icon-facebook-square-fill/index.d.ts +3 -3
  306. package/es/icon/icon-file/icon-file.vue.d.ts +59 -0
  307. package/es/icon/icon-file/index.d.ts +3 -3
  308. package/es/icon/icon-file-audio/icon-file-audio.vue.d.ts +59 -0
  309. package/es/icon/icon-file-audio/index.d.ts +3 -3
  310. package/es/icon/icon-file-image/icon-file-image.vue.d.ts +59 -0
  311. package/es/icon/icon-file-image/index.d.ts +3 -3
  312. package/es/icon/icon-file-pdf/icon-file-pdf.vue.d.ts +59 -0
  313. package/es/icon/icon-file-pdf/index.d.ts +3 -3
  314. package/es/icon/icon-file-video/icon-file-video.vue.d.ts +59 -0
  315. package/es/icon/icon-file-video/index.d.ts +3 -3
  316. package/es/icon/icon-filter/icon-filter.vue.d.ts +59 -0
  317. package/es/icon/icon-filter/index.d.ts +3 -3
  318. package/es/icon/icon-find-replace/icon-find-replace.vue.d.ts +59 -0
  319. package/es/icon/icon-find-replace/index.d.ts +3 -3
  320. package/es/icon/icon-fire/icon-fire.vue.d.ts +59 -0
  321. package/es/icon/icon-fire/index.d.ts +3 -3
  322. package/es/icon/icon-folder/icon-folder.vue.d.ts +59 -0
  323. package/es/icon/icon-folder/index.d.ts +3 -3
  324. package/es/icon/icon-folder-add/icon-folder-add.vue.d.ts +59 -0
  325. package/es/icon/icon-folder-add/index.d.ts +3 -3
  326. package/es/icon/icon-folder-delete/icon-folder-delete.vue.d.ts +59 -0
  327. package/es/icon/icon-folder-delete/index.d.ts +3 -3
  328. package/es/icon/icon-font-colors/icon-font-colors.vue.d.ts +59 -0
  329. package/es/icon/icon-font-colors/index.d.ts +3 -3
  330. package/es/icon/icon-formula/icon-formula.vue.d.ts +59 -0
  331. package/es/icon/icon-formula/index.d.ts +3 -3
  332. package/es/icon/icon-forward/icon-forward.vue.d.ts +59 -0
  333. package/es/icon/icon-forward/index.d.ts +3 -3
  334. package/es/icon/icon-fullscreen/icon-fullscreen.vue.d.ts +59 -0
  335. package/es/icon/icon-fullscreen/index.d.ts +3 -3
  336. package/es/icon/icon-fullscreen-exit/icon-fullscreen-exit.vue.d.ts +59 -0
  337. package/es/icon/icon-fullscreen-exit/index.d.ts +3 -3
  338. package/es/icon/icon-gift/icon-gift.vue.d.ts +59 -0
  339. package/es/icon/icon-gift/index.d.ts +3 -3
  340. package/es/icon/icon-github/icon-github.vue.d.ts +59 -0
  341. package/es/icon/icon-github/index.d.ts +3 -3
  342. package/es/icon/icon-gitlab/icon-gitlab.vue.d.ts +59 -0
  343. package/es/icon/icon-gitlab/index.d.ts +3 -3
  344. package/es/icon/icon-google/icon-google.vue.d.ts +59 -0
  345. package/es/icon/icon-google/index.d.ts +3 -3
  346. package/es/icon/icon-google-circle-fill/icon-google-circle-fill.vue.d.ts +59 -0
  347. package/es/icon/icon-google-circle-fill/index.d.ts +3 -3
  348. package/es/icon/icon-h1/icon-h1.vue.d.ts +59 -0
  349. package/es/icon/icon-h1/index.d.ts +3 -3
  350. package/es/icon/icon-h2/icon-h2.vue.d.ts +59 -0
  351. package/es/icon/icon-h2/index.d.ts +3 -3
  352. package/es/icon/icon-h3/icon-h3.vue.d.ts +59 -0
  353. package/es/icon/icon-h3/index.d.ts +3 -3
  354. package/es/icon/icon-h4/icon-h4.vue.d.ts +59 -0
  355. package/es/icon/icon-h4/index.d.ts +3 -3
  356. package/es/icon/icon-h5/icon-h5.vue.d.ts +59 -0
  357. package/es/icon/icon-h5/index.d.ts +3 -3
  358. package/es/icon/icon-h6/icon-h6.vue.d.ts +59 -0
  359. package/es/icon/icon-h6/index.d.ts +3 -3
  360. package/es/icon/icon-h7/icon-h7.vue.d.ts +59 -0
  361. package/es/icon/icon-h7/index.d.ts +3 -3
  362. package/es/icon/icon-heart/icon-heart.vue.d.ts +59 -0
  363. package/es/icon/icon-heart/index.d.ts +3 -3
  364. package/es/icon/icon-heart-fill/icon-heart-fill.vue.d.ts +59 -0
  365. package/es/icon/icon-heart-fill/index.d.ts +3 -3
  366. package/es/icon/icon-highlight/icon-highlight.vue.d.ts +59 -0
  367. package/es/icon/icon-highlight/index.d.ts +3 -3
  368. package/es/icon/icon-history/icon-history.vue.d.ts +59 -0
  369. package/es/icon/icon-history/index.d.ts +3 -3
  370. package/es/icon/icon-home/icon-home.vue.d.ts +59 -0
  371. package/es/icon/icon-home/index.d.ts +3 -3
  372. package/es/icon/icon-idcard/icon-idcard.vue.d.ts +59 -0
  373. package/es/icon/icon-idcard/index.d.ts +3 -3
  374. package/es/icon/icon-image/icon-image.vue.d.ts +59 -0
  375. package/es/icon/icon-image/index.d.ts +3 -3
  376. package/es/icon/icon-image-close/icon-image-close.vue.d.ts +59 -0
  377. package/es/icon/icon-image-close/index.d.ts +3 -3
  378. package/es/icon/icon-import/icon-import.vue.d.ts +59 -0
  379. package/es/icon/icon-import/index.d.ts +3 -3
  380. package/es/icon/icon-info/icon-info.vue.d.ts +59 -0
  381. package/es/icon/icon-info/index.d.ts +3 -3
  382. package/es/icon/icon-info-circle/icon-info-circle.vue.d.ts +59 -0
  383. package/es/icon/icon-info-circle/index.d.ts +3 -3
  384. package/es/icon/icon-info-circle-fill/icon-info-circle-fill.vue.d.ts +59 -0
  385. package/es/icon/icon-info-circle-fill/index.d.ts +3 -3
  386. package/es/icon/icon-interaction/icon-interaction.vue.d.ts +59 -0
  387. package/es/icon/icon-interaction/index.d.ts +3 -3
  388. package/es/icon/icon-italic/icon-italic.vue.d.ts +59 -0
  389. package/es/icon/icon-italic/index.d.ts +3 -3
  390. package/es/icon/icon-language/icon-language.vue.d.ts +59 -0
  391. package/es/icon/icon-language/index.d.ts +3 -3
  392. package/es/icon/icon-lark-color/icon-lark-color.vue.d.ts +59 -0
  393. package/es/icon/icon-lark-color/index.d.ts +3 -3
  394. package/es/icon/icon-launch/icon-launch.vue.d.ts +59 -0
  395. package/es/icon/icon-launch/index.d.ts +3 -3
  396. package/es/icon/icon-layers/icon-layers.vue.d.ts +59 -0
  397. package/es/icon/icon-layers/index.d.ts +3 -3
  398. package/es/icon/icon-layout/icon-layout.vue.d.ts +59 -0
  399. package/es/icon/icon-layout/index.d.ts +3 -3
  400. package/es/icon/icon-left/icon-left.vue.d.ts +59 -0
  401. package/es/icon/icon-left/index.d.ts +3 -3
  402. package/es/icon/icon-left-circle/icon-left-circle.vue.d.ts +59 -0
  403. package/es/icon/icon-left-circle/index.d.ts +3 -3
  404. package/es/icon/icon-line-height/icon-line-height.vue.d.ts +59 -0
  405. package/es/icon/icon-line-height/index.d.ts +3 -3
  406. package/es/icon/icon-link/icon-link.vue.d.ts +59 -0
  407. package/es/icon/icon-link/index.d.ts +3 -3
  408. package/es/icon/icon-list/icon-list.vue.d.ts +59 -0
  409. package/es/icon/icon-list/index.d.ts +3 -3
  410. package/es/icon/icon-live-broadcast/icon-live-broadcast.vue.d.ts +59 -0
  411. package/es/icon/icon-live-broadcast/index.d.ts +3 -3
  412. package/es/icon/icon-loading/icon-loading.vue.d.ts +59 -0
  413. package/es/icon/icon-loading/index.d.ts +3 -3
  414. package/es/icon/icon-location/icon-location.vue.d.ts +59 -0
  415. package/es/icon/icon-location/index.d.ts +3 -3
  416. package/es/icon/icon-lock/icon-lock.vue.d.ts +59 -0
  417. package/es/icon/icon-lock/index.d.ts +3 -3
  418. package/es/icon/icon-loop/icon-loop.vue.d.ts +59 -0
  419. package/es/icon/icon-loop/index.d.ts +3 -3
  420. package/es/icon/icon-man/icon-man.vue.d.ts +59 -0
  421. package/es/icon/icon-man/index.d.ts +3 -3
  422. package/es/icon/icon-menu/icon-menu.vue.d.ts +59 -0
  423. package/es/icon/icon-menu/index.d.ts +3 -3
  424. package/es/icon/icon-menu-fold/icon-menu-fold.vue.d.ts +59 -0
  425. package/es/icon/icon-menu-fold/index.d.ts +3 -3
  426. package/es/icon/icon-menu-unfold/icon-menu-unfold.vue.d.ts +59 -0
  427. package/es/icon/icon-menu-unfold/index.d.ts +3 -3
  428. package/es/icon/icon-message/icon-message.vue.d.ts +59 -0
  429. package/es/icon/icon-message/index.d.ts +3 -3
  430. package/es/icon/icon-message-banned/icon-message-banned.vue.d.ts +59 -0
  431. package/es/icon/icon-message-banned/index.d.ts +3 -3
  432. package/es/icon/icon-mind-mapping/icon-mind-mapping.vue.d.ts +59 -0
  433. package/es/icon/icon-mind-mapping/index.d.ts +3 -3
  434. package/es/icon/icon-minus/icon-minus.vue.d.ts +59 -0
  435. package/es/icon/icon-minus/index.d.ts +3 -3
  436. package/es/icon/icon-minus-circle/icon-minus-circle.vue.d.ts +59 -0
  437. package/es/icon/icon-minus-circle/index.d.ts +3 -3
  438. package/es/icon/icon-minus-circle-fill/icon-minus-circle-fill.vue.d.ts +59 -0
  439. package/es/icon/icon-minus-circle-fill/index.d.ts +3 -3
  440. package/es/icon/icon-mobile/icon-mobile.vue.d.ts +59 -0
  441. package/es/icon/icon-mobile/index.d.ts +3 -3
  442. package/es/icon/icon-moon/icon-moon.vue.d.ts +59 -0
  443. package/es/icon/icon-moon/index.d.ts +3 -3
  444. package/es/icon/icon-moon-fill/icon-moon-fill.vue.d.ts +59 -0
  445. package/es/icon/icon-moon-fill/index.d.ts +3 -3
  446. package/es/icon/icon-more/icon-more.vue.d.ts +59 -0
  447. package/es/icon/icon-more/index.d.ts +3 -3
  448. package/es/icon/icon-more-vertical/icon-more-vertical.vue.d.ts +59 -0
  449. package/es/icon/icon-more-vertical/index.d.ts +3 -3
  450. package/es/icon/icon-mosaic/icon-mosaic.vue.d.ts +59 -0
  451. package/es/icon/icon-mosaic/index.d.ts +3 -3
  452. package/es/icon/icon-music/icon-music.vue.d.ts +59 -0
  453. package/es/icon/icon-music/index.d.ts +3 -3
  454. package/es/icon/icon-mute/icon-mute.vue.d.ts +59 -0
  455. package/es/icon/icon-mute/index.d.ts +3 -3
  456. package/es/icon/icon-mute-fill/icon-mute-fill.vue.d.ts +59 -0
  457. package/es/icon/icon-mute-fill/index.d.ts +3 -3
  458. package/es/icon/icon-nav/icon-nav.vue.d.ts +59 -0
  459. package/es/icon/icon-nav/index.d.ts +3 -3
  460. package/es/icon/icon-notification/icon-notification.vue.d.ts +59 -0
  461. package/es/icon/icon-notification/index.d.ts +3 -3
  462. package/es/icon/icon-notification-close/icon-notification-close.vue.d.ts +59 -0
  463. package/es/icon/icon-notification-close/index.d.ts +3 -3
  464. package/es/icon/icon-oblique-line/icon-oblique-line.vue.d.ts +59 -0
  465. package/es/icon/icon-oblique-line/index.d.ts +3 -3
  466. package/es/icon/icon-ordered-list/icon-ordered-list.vue.d.ts +59 -0
  467. package/es/icon/icon-ordered-list/index.d.ts +3 -3
  468. package/es/icon/icon-original-size/icon-original-size.vue.d.ts +59 -0
  469. package/es/icon/icon-original-size/index.d.ts +3 -3
  470. package/es/icon/icon-palette/icon-palette.vue.d.ts +59 -0
  471. package/es/icon/icon-palette/index.d.ts +3 -3
  472. package/es/icon/icon-paste/icon-paste.vue.d.ts +59 -0
  473. package/es/icon/icon-paste/index.d.ts +3 -3
  474. package/es/icon/icon-pause/icon-pause.vue.d.ts +59 -0
  475. package/es/icon/icon-pause/index.d.ts +3 -3
  476. package/es/icon/icon-pause-circle/icon-pause-circle.vue.d.ts +59 -0
  477. package/es/icon/icon-pause-circle/index.d.ts +3 -3
  478. package/es/icon/icon-pause-circle-fill/icon-pause-circle-fill.vue.d.ts +59 -0
  479. package/es/icon/icon-pause-circle-fill/index.d.ts +3 -3
  480. package/es/icon/icon-pen/icon-pen.vue.d.ts +59 -0
  481. package/es/icon/icon-pen/index.d.ts +3 -3
  482. package/es/icon/icon-pen-fill/icon-pen-fill.vue.d.ts +59 -0
  483. package/es/icon/icon-pen-fill/index.d.ts +3 -3
  484. package/es/icon/icon-phone/icon-phone.vue.d.ts +59 -0
  485. package/es/icon/icon-phone/index.d.ts +3 -3
  486. package/es/icon/icon-play-arrow/icon-play-arrow.vue.d.ts +59 -0
  487. package/es/icon/icon-play-arrow/index.d.ts +3 -3
  488. package/es/icon/icon-play-arrow-fill/icon-play-arrow-fill.vue.d.ts +59 -0
  489. package/es/icon/icon-play-arrow-fill/index.d.ts +3 -3
  490. package/es/icon/icon-play-circle/icon-play-circle.vue.d.ts +59 -0
  491. package/es/icon/icon-play-circle/index.d.ts +3 -3
  492. package/es/icon/icon-play-circle-fill/icon-play-circle-fill.vue.d.ts +59 -0
  493. package/es/icon/icon-play-circle-fill/index.d.ts +3 -3
  494. package/es/icon/icon-plus/icon-plus.vue.d.ts +59 -0
  495. package/es/icon/icon-plus/index.d.ts +3 -3
  496. package/es/icon/icon-plus-circle/icon-plus-circle.vue.d.ts +59 -0
  497. package/es/icon/icon-plus-circle/index.d.ts +3 -3
  498. package/es/icon/icon-plus-circle-fill/icon-plus-circle-fill.vue.d.ts +59 -0
  499. package/es/icon/icon-plus-circle-fill/index.d.ts +3 -3
  500. package/es/icon/icon-poweroff/icon-poweroff.vue.d.ts +59 -0
  501. package/es/icon/icon-poweroff/index.d.ts +3 -3
  502. package/es/icon/icon-printer/icon-printer.vue.d.ts +59 -0
  503. package/es/icon/icon-printer/index.d.ts +3 -3
  504. package/es/icon/icon-public/icon-public.vue.d.ts +59 -0
  505. package/es/icon/icon-public/index.d.ts +3 -3
  506. package/es/icon/icon-pushpin/icon-pushpin.vue.d.ts +59 -0
  507. package/es/icon/icon-pushpin/index.d.ts +3 -3
  508. package/es/icon/icon-qq/icon-qq.vue.d.ts +59 -0
  509. package/es/icon/icon-qq/index.d.ts +3 -3
  510. package/es/icon/icon-qq-circle-fill/icon-qq-circle-fill.vue.d.ts +59 -0
  511. package/es/icon/icon-qq-circle-fill/index.d.ts +3 -3
  512. package/es/icon/icon-qq-zone/icon-qq-zone.vue.d.ts +59 -0
  513. package/es/icon/icon-qq-zone/index.d.ts +3 -3
  514. package/es/icon/icon-qrcode/icon-qrcode.vue.d.ts +59 -0
  515. package/es/icon/icon-qrcode/index.d.ts +3 -3
  516. package/es/icon/icon-question/icon-question.vue.d.ts +59 -0
  517. package/es/icon/icon-question/index.d.ts +3 -3
  518. package/es/icon/icon-question-circle/icon-question-circle.vue.d.ts +59 -0
  519. package/es/icon/icon-question-circle/index.d.ts +3 -3
  520. package/es/icon/icon-question-circle-fill/icon-question-circle-fill.vue.d.ts +59 -0
  521. package/es/icon/icon-question-circle-fill/index.d.ts +3 -3
  522. package/es/icon/icon-quote/icon-quote.vue.d.ts +59 -0
  523. package/es/icon/icon-quote/index.d.ts +3 -3
  524. package/es/icon/icon-record/icon-record.vue.d.ts +59 -0
  525. package/es/icon/icon-record/index.d.ts +3 -3
  526. package/es/icon/icon-record-stop/icon-record-stop.vue.d.ts +59 -0
  527. package/es/icon/icon-record-stop/index.d.ts +3 -3
  528. package/es/icon/icon-redo/icon-redo.vue.d.ts +59 -0
  529. package/es/icon/icon-redo/index.d.ts +3 -3
  530. package/es/icon/icon-refresh/icon-refresh.vue.d.ts +59 -0
  531. package/es/icon/icon-refresh/index.d.ts +3 -3
  532. package/es/icon/icon-relation/icon-relation.vue.d.ts +59 -0
  533. package/es/icon/icon-relation/index.d.ts +3 -3
  534. package/es/icon/icon-reply/icon-reply.vue.d.ts +59 -0
  535. package/es/icon/icon-reply/index.d.ts +3 -3
  536. package/es/icon/icon-right/icon-right.vue.d.ts +59 -0
  537. package/es/icon/icon-right/index.d.ts +3 -3
  538. package/es/icon/icon-right-circle/icon-right-circle.vue.d.ts +59 -0
  539. package/es/icon/icon-right-circle/index.d.ts +3 -3
  540. package/es/icon/icon-robot/icon-robot.vue.d.ts +59 -0
  541. package/es/icon/icon-robot/index.d.ts +3 -3
  542. package/es/icon/icon-robot-add/icon-robot-add.vue.d.ts +59 -0
  543. package/es/icon/icon-robot-add/index.d.ts +3 -3
  544. package/es/icon/icon-rotate-left/icon-rotate-left.vue.d.ts +59 -0
  545. package/es/icon/icon-rotate-left/index.d.ts +3 -3
  546. package/es/icon/icon-rotate-right/icon-rotate-right.vue.d.ts +59 -0
  547. package/es/icon/icon-rotate-right/index.d.ts +3 -3
  548. package/es/icon/icon-safe/icon-safe.vue.d.ts +59 -0
  549. package/es/icon/icon-safe/index.d.ts +3 -3
  550. package/es/icon/icon-save/icon-save.vue.d.ts +59 -0
  551. package/es/icon/icon-save/index.d.ts +3 -3
  552. package/es/icon/icon-scan/icon-scan.vue.d.ts +59 -0
  553. package/es/icon/icon-scan/index.d.ts +3 -3
  554. package/es/icon/icon-schedule/icon-schedule.vue.d.ts +59 -0
  555. package/es/icon/icon-schedule/index.d.ts +3 -3
  556. package/es/icon/icon-scissor/icon-scissor.vue.d.ts +59 -0
  557. package/es/icon/icon-scissor/index.d.ts +3 -3
  558. package/es/icon/icon-search/icon-search.vue.d.ts +59 -0
  559. package/es/icon/icon-search/index.d.ts +3 -3
  560. package/es/icon/icon-select-all/icon-select-all.vue.d.ts +59 -0
  561. package/es/icon/icon-select-all/index.d.ts +3 -3
  562. package/es/icon/icon-send/icon-send.vue.d.ts +59 -0
  563. package/es/icon/icon-send/index.d.ts +3 -3
  564. package/es/icon/icon-settings/icon-settings.vue.d.ts +59 -0
  565. package/es/icon/icon-settings/index.d.ts +3 -3
  566. package/es/icon/icon-shake/icon-shake.vue.d.ts +59 -0
  567. package/es/icon/icon-shake/index.d.ts +3 -3
  568. package/es/icon/icon-share-alt/icon-share-alt.vue.d.ts +59 -0
  569. package/es/icon/icon-share-alt/index.d.ts +3 -3
  570. package/es/icon/icon-share-external/icon-share-external.vue.d.ts +59 -0
  571. package/es/icon/icon-share-external/index.d.ts +3 -3
  572. package/es/icon/icon-share-internal/icon-share-internal.vue.d.ts +59 -0
  573. package/es/icon/icon-share-internal/index.d.ts +3 -3
  574. package/es/icon/icon-shrink/icon-shrink.vue.d.ts +59 -0
  575. package/es/icon/icon-shrink/index.d.ts +3 -3
  576. package/es/icon/icon-skin/icon-skin.vue.d.ts +59 -0
  577. package/es/icon/icon-skin/index.d.ts +3 -3
  578. package/es/icon/icon-skip-next/icon-skip-next.vue.d.ts +59 -0
  579. package/es/icon/icon-skip-next/index.d.ts +3 -3
  580. package/es/icon/icon-skip-next-fill/icon-skip-next-fill.vue.d.ts +59 -0
  581. package/es/icon/icon-skip-next-fill/index.d.ts +3 -3
  582. package/es/icon/icon-skip-previous/icon-skip-previous.vue.d.ts +59 -0
  583. package/es/icon/icon-skip-previous/index.d.ts +3 -3
  584. package/es/icon/icon-skip-previous-fill/icon-skip-previous-fill.vue.d.ts +59 -0
  585. package/es/icon/icon-skip-previous-fill/index.d.ts +3 -3
  586. package/es/icon/icon-sort/icon-sort.vue.d.ts +59 -0
  587. package/es/icon/icon-sort/index.d.ts +3 -3
  588. package/es/icon/icon-sort-ascending/icon-sort-ascending.vue.d.ts +59 -0
  589. package/es/icon/icon-sort-ascending/index.d.ts +3 -3
  590. package/es/icon/icon-sort-descending/icon-sort-descending.vue.d.ts +59 -0
  591. package/es/icon/icon-sort-descending/index.d.ts +3 -3
  592. package/es/icon/icon-sound/icon-sound.vue.d.ts +59 -0
  593. package/es/icon/icon-sound/index.d.ts +3 -3
  594. package/es/icon/icon-sound-fill/icon-sound-fill.vue.d.ts +59 -0
  595. package/es/icon/icon-sound-fill/index.d.ts +3 -3
  596. package/es/icon/icon-stamp/icon-stamp.vue.d.ts +59 -0
  597. package/es/icon/icon-stamp/index.d.ts +3 -3
  598. package/es/icon/icon-star/icon-star.vue.d.ts +59 -0
  599. package/es/icon/icon-star/index.d.ts +3 -3
  600. package/es/icon/icon-star-fill/icon-star-fill.vue.d.ts +59 -0
  601. package/es/icon/icon-star-fill/index.d.ts +3 -3
  602. package/es/icon/icon-stop/icon-stop.vue.d.ts +59 -0
  603. package/es/icon/icon-stop/index.d.ts +3 -3
  604. package/es/icon/icon-storage/icon-storage.vue.d.ts +59 -0
  605. package/es/icon/icon-storage/index.d.ts +3 -3
  606. package/es/icon/icon-strikethrough/icon-strikethrough.vue.d.ts +59 -0
  607. package/es/icon/icon-strikethrough/index.d.ts +3 -3
  608. package/es/icon/icon-subscribe/icon-subscribe.vue.d.ts +59 -0
  609. package/es/icon/icon-subscribe/index.d.ts +3 -3
  610. package/es/icon/icon-subscribe-add/icon-subscribe-add.vue.d.ts +59 -0
  611. package/es/icon/icon-subscribe-add/index.d.ts +3 -3
  612. package/es/icon/icon-subscribed/icon-subscribed.vue.d.ts +59 -0
  613. package/es/icon/icon-subscribed/index.d.ts +3 -3
  614. package/es/icon/icon-sun/icon-sun.vue.d.ts +59 -0
  615. package/es/icon/icon-sun/index.d.ts +3 -3
  616. package/es/icon/icon-sun-fill/icon-sun-fill.vue.d.ts +59 -0
  617. package/es/icon/icon-sun-fill/index.d.ts +3 -3
  618. package/es/icon/icon-swap/icon-swap.vue.d.ts +59 -0
  619. package/es/icon/icon-swap/index.d.ts +3 -3
  620. package/es/icon/icon-sync/icon-sync.vue.d.ts +59 -0
  621. package/es/icon/icon-sync/index.d.ts +3 -3
  622. package/es/icon/icon-tag/icon-tag.vue.d.ts +59 -0
  623. package/es/icon/icon-tag/index.d.ts +3 -3
  624. package/es/icon/icon-tags/icon-tags.vue.d.ts +59 -0
  625. package/es/icon/icon-tags/index.d.ts +3 -3
  626. package/es/icon/icon-thumb-down/icon-thumb-down.vue.d.ts +59 -0
  627. package/es/icon/icon-thumb-down/index.d.ts +3 -3
  628. package/es/icon/icon-thumb-down-fill/icon-thumb-down-fill.vue.d.ts +59 -0
  629. package/es/icon/icon-thumb-down-fill/index.d.ts +3 -3
  630. package/es/icon/icon-thumb-up/icon-thumb-up.vue.d.ts +59 -0
  631. package/es/icon/icon-thumb-up/index.d.ts +3 -3
  632. package/es/icon/icon-thumb-up-fill/icon-thumb-up-fill.vue.d.ts +59 -0
  633. package/es/icon/icon-thumb-up-fill/index.d.ts +3 -3
  634. package/es/icon/icon-thunderbolt/icon-thunderbolt.vue.d.ts +59 -0
  635. package/es/icon/icon-thunderbolt/index.d.ts +3 -3
  636. package/es/icon/icon-tiktok-color/icon-tiktok-color.vue.d.ts +59 -0
  637. package/es/icon/icon-tiktok-color/index.d.ts +3 -3
  638. package/es/icon/icon-to-bottom/icon-to-bottom.vue.d.ts +59 -0
  639. package/es/icon/icon-to-bottom/index.d.ts +3 -3
  640. package/es/icon/icon-to-left/icon-to-left.vue.d.ts +59 -0
  641. package/es/icon/icon-to-left/index.d.ts +3 -3
  642. package/es/icon/icon-to-right/icon-to-right.vue.d.ts +59 -0
  643. package/es/icon/icon-to-right/index.d.ts +3 -3
  644. package/es/icon/icon-to-top/icon-to-top.vue.d.ts +59 -0
  645. package/es/icon/icon-to-top/index.d.ts +3 -3
  646. package/es/icon/icon-tool/icon-tool.vue.d.ts +59 -0
  647. package/es/icon/icon-tool/index.d.ts +3 -3
  648. package/es/icon/icon-translate/icon-translate.vue.d.ts +59 -0
  649. package/es/icon/icon-translate/index.d.ts +3 -3
  650. package/es/icon/icon-trophy/icon-trophy.vue.d.ts +59 -0
  651. package/es/icon/icon-trophy/index.d.ts +3 -3
  652. package/es/icon/icon-twitter/icon-twitter.vue.d.ts +59 -0
  653. package/es/icon/icon-twitter/index.d.ts +3 -3
  654. package/es/icon/icon-twitter-circle-fill/icon-twitter-circle-fill.vue.d.ts +59 -0
  655. package/es/icon/icon-twitter-circle-fill/index.d.ts +3 -3
  656. package/es/icon/icon-underline/icon-underline.vue.d.ts +59 -0
  657. package/es/icon/icon-underline/index.d.ts +3 -3
  658. package/es/icon/icon-undo/icon-undo.vue.d.ts +59 -0
  659. package/es/icon/icon-undo/index.d.ts +3 -3
  660. package/es/icon/icon-unlock/icon-unlock.vue.d.ts +59 -0
  661. package/es/icon/icon-unlock/index.d.ts +3 -3
  662. package/es/icon/icon-unordered-list/icon-unordered-list.vue.d.ts +59 -0
  663. package/es/icon/icon-unordered-list/index.d.ts +3 -3
  664. package/es/icon/icon-up/icon-up.vue.d.ts +59 -0
  665. package/es/icon/icon-up/index.d.ts +3 -3
  666. package/es/icon/icon-up-circle/icon-up-circle.vue.d.ts +59 -0
  667. package/es/icon/icon-up-circle/index.d.ts +3 -3
  668. package/es/icon/icon-upload/icon-upload.vue.d.ts +59 -0
  669. package/es/icon/icon-upload/index.d.ts +3 -3
  670. package/es/icon/icon-user/icon-user.vue.d.ts +59 -0
  671. package/es/icon/icon-user/index.d.ts +3 -3
  672. package/es/icon/icon-user-add/icon-user-add.vue.d.ts +59 -0
  673. package/es/icon/icon-user-add/index.d.ts +3 -3
  674. package/es/icon/icon-user-group/icon-user-group.vue.d.ts +59 -0
  675. package/es/icon/icon-user-group/index.d.ts +3 -3
  676. package/es/icon/icon-video-camera/icon-video-camera.vue.d.ts +59 -0
  677. package/es/icon/icon-video-camera/index.d.ts +3 -3
  678. package/es/icon/icon-voice/icon-voice.vue.d.ts +59 -0
  679. package/es/icon/icon-voice/index.d.ts +3 -3
  680. package/es/icon/icon-wechat/icon-wechat.vue.d.ts +59 -0
  681. package/es/icon/icon-wechat/index.d.ts +3 -3
  682. package/es/icon/icon-wechatpay/icon-wechatpay.vue.d.ts +59 -0
  683. package/es/icon/icon-wechatpay/index.d.ts +3 -3
  684. package/es/icon/icon-weibo/icon-weibo.vue.d.ts +59 -0
  685. package/es/icon/icon-weibo/index.d.ts +3 -3
  686. package/es/icon/icon-weibo-circle-fill/icon-weibo-circle-fill.vue.d.ts +59 -0
  687. package/es/icon/icon-weibo-circle-fill/index.d.ts +3 -3
  688. package/es/icon/icon-wifi/icon-wifi.vue.d.ts +59 -0
  689. package/es/icon/icon-wifi/index.d.ts +3 -3
  690. package/es/icon/icon-woman/icon-woman.vue.d.ts +59 -0
  691. package/es/icon/icon-woman/index.d.ts +3 -3
  692. package/es/icon/icon-xigua-color/icon-xigua-color.vue.d.ts +59 -0
  693. package/es/icon/icon-xigua-color/index.d.ts +3 -3
  694. package/es/icon/icon-zoom-in/icon-zoom-in.vue.d.ts +59 -0
  695. package/es/icon/icon-zoom-in/index.d.ts +3 -3
  696. package/es/icon/icon-zoom-out/icon-zoom-out.vue.d.ts +59 -0
  697. package/es/icon/icon-zoom-out/index.d.ts +3 -3
  698. package/es/icon-component/icon.vue.d.ts +21 -0
  699. package/es/icon-component/index.d.ts +1 -1
  700. package/es/image/image-footer.vue.d.ts +19 -0
  701. package/es/image/image.vue.d.ts +2444 -0
  702. package/es/image/index.d.ts +17 -0
  703. package/es/image/preview-action.d.ts +63 -63
  704. package/es/image/preview-arrow.vue.d.ts +256 -0
  705. package/es/image/preview-group.vue.d.ts +2153 -0
  706. package/es/image/preview-toolbar.vue.d.ts +1382 -0
  707. package/es/image/preview.vue.d.ts +2043 -0
  708. package/es/index.js +2 -2
  709. package/es/input/index.d.ts +263 -29
  710. package/es/input/input-group.vue.d.ts +5 -0
  711. package/es/input/input-password.vue.d.ts +449 -0
  712. package/es/input/input-search.d.ts +1 -1
  713. package/es/input/input.d.ts +6 -6
  714. package/es/input/input.js +6 -6
  715. package/es/input-number/index.d.ts +18 -18
  716. package/es/input-number/input-number.d.ts +6 -6
  717. package/es/input-number/input-number.js +7 -7
  718. package/es/input-tag/index.d.ts +36 -36
  719. package/es/input-tag/input-tag.d.ts +12 -12
  720. package/es/input-tag/input-tag.js +7 -7
  721. package/es/layout/content.vue.d.ts +5 -0
  722. package/es/layout/footer.vue.d.ts +5 -0
  723. package/es/layout/header.vue.d.ts +5 -0
  724. package/es/layout/index.d.ts +743 -41
  725. package/es/layout/layout.vue.d.ts +17 -0
  726. package/es/layout/sider.vue.d.ts +1046 -0
  727. package/es/link/index.d.ts +476 -8
  728. package/es/link/link.vue.d.ts +285 -0
  729. package/es/list/index.d.ts +10 -10
  730. package/es/list/list-item-meta.vue.d.ts +12 -0
  731. package/es/list/list.d.ts +3 -3
  732. package/es/mention/index.d.ts +9 -9
  733. package/es/mention/mention.d.ts +3 -3
  734. package/es/mention/mention.js +6 -6
  735. package/es/menu/base-menu.vue.d.ts +444 -0
  736. package/es/menu/indent.vue.d.ts +18 -0
  737. package/es/menu/index.d.ts +18 -0
  738. package/es/menu/index.js +3 -3
  739. package/es/menu/item-group.vue.d.ts +32 -0
  740. package/es/menu/item.d.ts +1 -1
  741. package/es/menu/menu.d.ts +244 -10
  742. package/es/menu/overflow-wrap.js +2 -2
  743. package/es/menu/sub-menu-inline.vue.d.ts +52 -0
  744. package/es/menu/sub-menu-pop.vue.d.ts +1096 -0
  745. package/es/menu/sub-menu.d.ts +3 -0
  746. package/es/menu/sub-menu.js +2 -2
  747. package/es/message/message-list.d.ts +1 -1
  748. package/es/message/message.vue.d.ts +808 -0
  749. package/es/modal/index.d.ts +2043 -405
  750. package/es/modal/modal.vue.d.ts +1369 -0
  751. package/es/modal/modal.vue_vue_type_script_lang.js +6 -6
  752. package/es/notification/notification.vue.d.ts +679 -0
  753. package/es/overflow-list/index.d.ts +3 -3
  754. package/es/overflow-list/overflow-list.d.ts +1 -1
  755. package/es/page-header/index.d.ts +237 -3
  756. package/es/page-header/page-header.vue.d.ts +176 -0
  757. package/es/pagination/index.d.ts +6 -6
  758. package/es/pagination/page-item-ellipsis.vue.d.ts +156 -0
  759. package/es/pagination/page-item-step.vue.d.ts +294 -0
  760. package/es/pagination/page-item.vue.d.ts +49 -0
  761. package/es/pagination/page-jumper.vue.d.ts +342 -0
  762. package/es/pagination/page-options.vue.d.ts +2333 -0
  763. package/es/pagination/pagination.d.ts +2 -2
  764. package/es/pagination/pagination.js +2 -2
  765. package/es/popconfirm/index.d.ts +1565 -161
  766. package/es/popconfirm/popconfirm.vue.d.ts +1608 -0
  767. package/es/popconfirm/popconfirm.vue_vue_type_script_lang.js +3 -3
  768. package/es/popover/index.d.ts +67 -67
  769. package/es/popover/popover.vue.d.ts +654 -0
  770. package/es/popover/popover.vue_vue_type_script_lang.js +1 -1
  771. package/es/progress/circle.vue.d.ts +330 -0
  772. package/es/progress/index.d.ts +970 -34
  773. package/es/progress/line.vue.d.ts +220 -0
  774. package/es/progress/progress.vue.d.ts +827 -0
  775. package/es/progress/steps.vue.d.ts +189 -0
  776. package/es/radio/index.d.ts +5 -5
  777. package/es/radio/radio-group.d.ts +2 -2
  778. package/es/radio/radio-group.js +1 -1
  779. package/es/radio/radio.d.ts +1 -1
  780. package/es/radio/radio.js +1 -1
  781. package/es/rate/index.d.ts +9 -9
  782. package/es/rate/rate.d.ts +3 -3
  783. package/es/rate/rate.js +3 -3
  784. package/es/resize-box/index.d.ts +500 -32
  785. package/es/resize-box/resize-box.vue.d.ts +345 -0
  786. package/es/resize-box/resize-box.vue_vue_type_script_lang.js +3 -3
  787. package/es/result/index.d.ts +951 -15
  788. package/es/result/result.vue.d.ts +502 -0
  789. package/es/scrollbar/index.d.ts +9 -9
  790. package/es/scrollbar/scrollbar.vue.d.ts +144 -0
  791. package/es/scrollbar/thumb.vue.d.ts +58 -0
  792. package/es/sd-vue.d.ts +13 -0
  793. package/es/sd-vue.js +2 -2
  794. package/es/select/index.d.ts +147 -147
  795. package/es/select/optgroup.vue.d.ts +13 -0
  796. package/es/select/option.vue.d.ts +299 -0
  797. package/es/select/select-dropdown.vue.d.ts +493 -0
  798. package/es/select/select.d.ts +68 -68
  799. package/es/select/select.js +15 -15
  800. package/es/skeleton/index.d.ts +4 -4
  801. package/es/skeleton/line.vue.d.ts +46 -0
  802. package/es/skeleton/shape.vue.d.ts +28 -0
  803. package/es/skeleton/skeleton.vue.d.ts +29 -0
  804. package/es/slider/index.d.ts +171 -171
  805. package/es/slider/slider-button.vue.d.ts +1393 -0
  806. package/es/slider/slider-dots.vue.d.ts +52 -0
  807. package/es/slider/slider-input.vue.d.ts +330 -0
  808. package/es/slider/slider-marks.vue.d.ts +50 -0
  809. package/es/slider/slider-ticks.vue.d.ts +56 -0
  810. package/es/slider/slider.vue.d.ts +2013 -0
  811. package/es/slider/slider.vue_vue_type_script_lang.js +1 -1
  812. package/es/space/index.d.ts +3 -3
  813. package/es/space/space.d.ts +1 -1
  814. package/es/split/index.d.ts +473 -5
  815. package/es/split/split.vue.d.ts +320 -0
  816. package/es/split/split.vue_vue_type_script_lang.js +3 -3
  817. package/es/statistic/countdown.vue.d.ts +58 -0
  818. package/es/statistic/index.d.ts +6 -6
  819. package/es/statistic/statistic.vue.d.ts +108 -0
  820. package/es/steps/index.d.ts +241 -7
  821. package/es/steps/step.vue.d.ts +276 -0
  822. package/es/steps/steps.vue.d.ts +100 -0
  823. package/es/steps/steps.vue_vue_type_script_lang.js +1 -1
  824. package/es/style/color/get-rgb-str.d.ts +1 -0
  825. package/es/style/color/palette-dark.d.ts +1 -0
  826. package/es/style/color/palette.d.ts +1 -0
  827. package/es/switch/index.d.ts +246 -12
  828. package/es/switch/switch.vue.d.ts +253 -0
  829. package/es/switch/switch.vue_vue_type_script_lang.js +3 -3
  830. package/es/table/hooks/use-expand.d.ts +2 -2
  831. package/es/table/hooks/use-row-selection.d.ts +3 -3
  832. package/es/table/index.d.ts +38 -38
  833. package/es/table/table-col-group.vue.d.ts +39 -0
  834. package/es/table/table-column.d.ts +2 -2
  835. package/es/table/table-operation-td.d.ts +249 -15
  836. package/es/table/table-td.d.ts +3 -3
  837. package/es/table/table-th.d.ts +2 -2
  838. package/es/table/table-tr.d.ts +1 -1
  839. package/es/table/table.d.ts +12 -12
  840. package/es/table/table.js +20 -20
  841. package/es/tabs/index.d.ts +23 -23
  842. package/es/tabs/tab-pane.vue.d.ts +40 -0
  843. package/es/tabs/tabs-nav-ink.vue.d.ts +33 -0
  844. package/es/tabs/tabs-tab.vue.d.ts +189 -0
  845. package/es/tabs/tabs.d.ts +7 -7
  846. package/es/tabs/tabs.js +4 -4
  847. package/es/tag/index.d.ts +482 -14
  848. package/es/tag/tag.vue.d.ts +388 -0
  849. package/es/tag/tag.vue_vue_type_script_lang.js +2 -2
  850. package/es/textarea/index.d.ts +252 -18
  851. package/es/textarea/textarea.vue.d.ts +307 -0
  852. package/es/textarea/textarea.vue_vue_type_script_lang.js +5 -5
  853. package/es/time-picker/index.d.ts +3836 -326
  854. package/es/time-picker/panel.vue.d.ts +730 -0
  855. package/es/time-picker/range-panel.d.ts +246 -12
  856. package/es/time-picker/time-column.vue.d.ts +44 -0
  857. package/es/time-picker/time-picker.vue.d.ts +3865 -0
  858. package/es/time-picker/time-picker.vue_vue_type_script_lang.js +3 -3
  859. package/es/timeline/index.d.ts +4 -4
  860. package/es/timeline/item.vue.d.ts +64 -0
  861. package/es/timeline/timeline.d.ts +1 -1
  862. package/es/tooltip/index.d.ts +64 -64
  863. package/es/tooltip/tooltip.vue.d.ts +669 -0
  864. package/es/tooltip/tooltip.vue_vue_type_script_lang.js +1 -1
  865. package/es/transfer/index.d.ts +1263 -93
  866. package/es/transfer/transfer-list-item.d.ts +1 -1
  867. package/es/transfer/transfer-view.vue.d.ts +1150 -0
  868. package/es/transfer/transfer.vue.d.ts +1967 -0
  869. package/es/transfer/transfer.vue_vue_type_script_lang.js +3 -3
  870. package/es/tree/base-node.vue.d.ts +718 -0
  871. package/es/tree/expand-transition.vue.d.ts +15 -0
  872. package/es/tree/hooks/use-tree-data.d.ts +4 -4
  873. package/es/tree/index.d.ts +167 -167
  874. package/es/tree/node-switcher.vue.d.ts +192 -0
  875. package/es/tree/transition-node-list.vue.d.ts +750 -0
  876. package/es/tree/tree.vue.d.ts +711 -0
  877. package/es/tree/tree.vue_vue_type_script_lang.js +8 -8
  878. package/es/tree-select/index.d.ts +458 -458
  879. package/es/tree-select/panel.d.ts +297 -297
  880. package/es/tree-select/tree-select.vue.d.ts +2796 -0
  881. package/es/tree-select/tree-select.vue_vue_type_script_lang.js +4 -4
  882. package/es/trigger/index.d.ts +36 -36
  883. package/es/trigger/trigger.d.ts +13 -13
  884. package/es/trigger/trigger.js +4 -4
  885. package/es/typography/base.d.ts +4 -4
  886. package/es/typography/base.js +8 -8
  887. package/es/typography/edit-content.vue.d.ts +2344 -0
  888. package/es/typography/index.d.ts +3 -3
  889. package/es/typography/operations.vue.d.ts +1717 -0
  890. package/es/typography/paragraph.d.ts +1 -1
  891. package/es/typography/title.d.ts +1 -1
  892. package/es/typography/typography.vue.d.ts +5 -0
  893. package/es/upload/index.d.ts +18 -18
  894. package/es/upload/upload-button.d.ts +1 -1
  895. package/es/upload/upload.d.ts +6 -6
  896. package/es/upload/upload.js +6 -6
  897. package/es/verification-code/index.d.ts +9 -9
  898. package/es/verification-code/verification-code.d.ts +3 -3
  899. package/es/verification-code/verification-code.js +3 -3
  900. package/es/watermark/index.d.ts +6 -6
  901. package/es/watermark/watermark.d.ts +2 -2
  902. package/json/vetur-attributes.json +1634 -1634
  903. package/json/vetur-tags.json +556 -556
  904. package/json/web-types.json +3579 -3579
  905. package/lib/auto-complete/auto-complete.js +8 -8
  906. package/lib/calendar/calendar.js +2 -2
  907. package/lib/carousel/carousel.js +1 -1
  908. package/lib/cascader/cascader-panel.vue_vue_type_script_lang.js +1 -1
  909. package/lib/cascader/cascader.vue_vue_type_script_lang.js +7 -7
  910. package/lib/checkbox/checkbox-group.js +1 -1
  911. package/lib/checkbox/checkbox.js +1 -1
  912. package/lib/collapse/collapse.vue_vue_type_script_lang.js +1 -1
  913. package/lib/color-picker/color-picker.js +1 -1
  914. package/lib/date-picker/picker.vue_vue_type_script_lang.js +4 -4
  915. package/lib/date-picker/range-picker.vue_vue_type_script_lang.js +4 -4
  916. package/lib/drawer/drawer.vue_vue_type_script_lang.js +6 -6
  917. package/lib/dropdown/dropdown-button.vue_vue_type_script_lang.js +3 -3
  918. package/lib/dropdown/dropdown-submenu.vue_vue_type_script_lang.js +1 -1
  919. package/lib/dropdown/dropdown.vue_vue_type_script_lang.js +2 -2
  920. package/lib/grid/grid.vue_vue_type_script_lang.js +1 -1
  921. package/lib/input/input.js +6 -6
  922. package/lib/input-number/input-number.js +7 -7
  923. package/lib/input-tag/input-tag.js +7 -7
  924. package/lib/mention/mention.js +6 -6
  925. package/lib/menu/sub-menu.js +2 -2
  926. package/lib/modal/modal.vue_vue_type_script_lang.js +6 -6
  927. package/lib/pagination/pagination.js +2 -2
  928. package/lib/popconfirm/popconfirm.vue_vue_type_script_lang.js +3 -3
  929. package/lib/popover/popover.vue_vue_type_script_lang.js +1 -1
  930. package/lib/radio/radio-group.js +1 -1
  931. package/lib/radio/radio.js +1 -1
  932. package/lib/rate/rate.js +3 -3
  933. package/lib/resize-box/resize-box.vue_vue_type_script_lang.js +3 -3
  934. package/lib/select/select.js +15 -15
  935. package/lib/slider/slider.vue_vue_type_script_lang.js +1 -1
  936. package/lib/split/split.vue_vue_type_script_lang.js +3 -3
  937. package/lib/steps/steps.vue_vue_type_script_lang.js +1 -1
  938. package/lib/switch/switch.vue_vue_type_script_lang.js +3 -3
  939. package/lib/table/table.js +20 -20
  940. package/lib/tabs/tabs.js +4 -4
  941. package/lib/tag/tag.vue_vue_type_script_lang.js +2 -2
  942. package/lib/textarea/textarea.vue_vue_type_script_lang.js +5 -5
  943. package/lib/time-picker/time-picker.vue_vue_type_script_lang.js +3 -3
  944. package/lib/tooltip/tooltip.vue_vue_type_script_lang.js +1 -1
  945. package/lib/transfer/transfer.vue_vue_type_script_lang.js +3 -3
  946. package/lib/tree/tree.vue_vue_type_script_lang.js +8 -8
  947. package/lib/tree-select/tree-select.vue_vue_type_script_lang.js +4 -4
  948. package/lib/trigger/trigger.js +4 -4
  949. package/lib/typography/base.js +8 -8
  950. package/lib/upload/upload.js +6 -6
  951. package/lib/verification-code/verification-code.js +3 -3
  952. package/package.json +28 -22
  953. package/dist/sd-vue-icon.js +0 -26855
  954. package/dist/sd-vue-icon.js.map +0 -1
  955. package/dist/sd-vue-icon.min.js +0 -21375
  956. package/dist/sd-vue-icon.min.js.map +0 -1
  957. package/dist/sd-vue.js +0 -44209
  958. package/dist/sd-vue.js.map +0 -1
  959. package/dist/sd-vue.min.js +0 -33820
  960. package/dist/sd-vue.min.js.map +0 -1
  961. package/es/_components/feedback-icon.d.ts +0 -17
  962. package/es/_components/icon-hover.d.ts +0 -33
  963. package/es/_components/picker/input-range.d.ts +0 -167
  964. package/es/_components/picker/input.d.ts +0 -143
  965. package/es/_components/resize-trigger.d.ts +0 -39
  966. package/es/_components/transition/expand-transition.d.ts +0 -9
  967. package/es/_components/virtual-list/filler.d.ts +0 -34
  968. package/es/_components/virtual-list/virtual-list.d.ts +0 -132
  969. package/es/_components/virtual-list-v2/virtual-list.d.ts +0 -150
  970. package/es/affix/affix.d.ts +0 -57
  971. package/es/alert/alert.d.ts +0 -104
  972. package/es/anchor/anchor-link.d.ts +0 -16
  973. package/es/anchor/anchor.d.ts +0 -65
  974. package/es/avatar/avatar.d.ts +0 -89
  975. package/es/back-top/back-top.d.ts +0 -45
  976. package/es/button/button-group.d.ts +0 -41
  977. package/es/button/button.d.ts +0 -90
  978. package/es/card/card-grid.d.ts +0 -18
  979. package/es/carousel/carousel-arrow.d.ts +0 -38
  980. package/es/carousel/carousel-indicator.d.ts +0 -68
  981. package/es/carousel/carousel-item.d.ts +0 -13
  982. package/es/cascader/cascader-panel.d.ts +0 -248
  983. package/es/cascader/cascader.d.ts +0 -1170
  984. package/es/collapse/collapse.d.ts +0 -82
  985. package/es/comment/comment.d.ts +0 -47
  986. package/es/config-provider/config-provider.d.ts +0 -74
  987. package/es/date-picker/panels/body.d.ts +0 -89
  988. package/es/date-picker/panels/date/index.d.ts +0 -866
  989. package/es/date-picker/panels/footer.d.ts +0 -355
  990. package/es/date-picker/panels/header.d.ts +0 -105
  991. package/es/date-picker/panels/month/index.d.ts +0 -272
  992. package/es/date-picker/panels/quarter/index.d.ts +0 -260
  993. package/es/date-picker/panels/shortcuts.d.ts +0 -246
  994. package/es/date-picker/panels/week/index.d.ts +0 -883
  995. package/es/date-picker/panels/week-list.d.ts +0 -23
  996. package/es/date-picker/panels/year/index.d.ts +0 -258
  997. package/es/date-picker/picker-panel.d.ts +0 -3332
  998. package/es/date-picker/picker.d.ts +0 -4390
  999. package/es/date-picker/range-picker-panel.d.ts +0 -3365
  1000. package/es/date-picker/range-picker.d.ts +0 -4555
  1001. package/es/descriptions/descriptions-item.d.ts +0 -18
  1002. package/es/drawer/drawer.d.ts +0 -470
  1003. package/es/dropdown/dropdown-button.d.ts +0 -1389
  1004. package/es/dropdown/dropdown-group.d.ts +0 -8
  1005. package/es/dropdown/dropdown-option.d.ts +0 -37
  1006. package/es/dropdown/dropdown-panel.d.ts +0 -408
  1007. package/es/dropdown/dropdown-submenu.d.ts +0 -1077
  1008. package/es/dropdown/dropdown.d.ts +0 -1047
  1009. package/es/form/form-item-label.d.ts +0 -1382
  1010. package/es/form/form-item-message.d.ts +0 -19
  1011. package/es/form/form-item.d.ts +0 -1747
  1012. package/es/form/form.d.ts +0 -157
  1013. package/es/grid/grid-col.d.ts +0 -106
  1014. package/es/grid/grid-item.d.ts +0 -49
  1015. package/es/grid/grid-row.d.ts +0 -60
  1016. package/es/grid/grid.d.ts +0 -58
  1017. package/es/icon/icon-align-center/icon-align-center.d.ts +0 -58
  1018. package/es/icon/icon-align-left/icon-align-left.d.ts +0 -58
  1019. package/es/icon/icon-align-right/icon-align-right.d.ts +0 -58
  1020. package/es/icon/icon-alipay-circle/icon-alipay-circle.d.ts +0 -58
  1021. package/es/icon/icon-apps/icon-apps.d.ts +0 -58
  1022. package/es/icon/icon-archive/icon-archive.d.ts +0 -58
  1023. package/es/icon/icon-arrow-down/icon-arrow-down.d.ts +0 -58
  1024. package/es/icon/icon-arrow-fall/icon-arrow-fall.d.ts +0 -58
  1025. package/es/icon/icon-arrow-left/icon-arrow-left.d.ts +0 -58
  1026. package/es/icon/icon-arrow-right/icon-arrow-right.d.ts +0 -58
  1027. package/es/icon/icon-arrow-rise/icon-arrow-rise.d.ts +0 -58
  1028. package/es/icon/icon-arrow-up/icon-arrow-up.d.ts +0 -58
  1029. package/es/icon/icon-at/icon-at.d.ts +0 -58
  1030. package/es/icon/icon-attachment/icon-attachment.d.ts +0 -58
  1031. package/es/icon/icon-backward/icon-backward.d.ts +0 -58
  1032. package/es/icon/icon-bar-chart/icon-bar-chart.d.ts +0 -58
  1033. package/es/icon/icon-bg-colors/icon-bg-colors.d.ts +0 -58
  1034. package/es/icon/icon-bold/icon-bold.d.ts +0 -58
  1035. package/es/icon/icon-book/icon-book.d.ts +0 -58
  1036. package/es/icon/icon-bookmark/icon-bookmark.d.ts +0 -58
  1037. package/es/icon/icon-branch/icon-branch.d.ts +0 -58
  1038. package/es/icon/icon-brush/icon-brush.d.ts +0 -58
  1039. package/es/icon/icon-bug/icon-bug.d.ts +0 -58
  1040. package/es/icon/icon-bulb/icon-bulb.d.ts +0 -58
  1041. package/es/icon/icon-bytedance-color/icon-bytedance-color.d.ts +0 -58
  1042. package/es/icon/icon-calendar/icon-calendar.d.ts +0 -58
  1043. package/es/icon/icon-calendar-clock/icon-calendar-clock.d.ts +0 -58
  1044. package/es/icon/icon-camera/icon-camera.d.ts +0 -58
  1045. package/es/icon/icon-caret-down/icon-caret-down.d.ts +0 -58
  1046. package/es/icon/icon-caret-left/icon-caret-left.d.ts +0 -58
  1047. package/es/icon/icon-caret-right/icon-caret-right.d.ts +0 -58
  1048. package/es/icon/icon-caret-up/icon-caret-up.d.ts +0 -58
  1049. package/es/icon/icon-check/icon-check.d.ts +0 -58
  1050. package/es/icon/icon-check-circle/icon-check-circle.d.ts +0 -58
  1051. package/es/icon/icon-check-circle-fill/icon-check-circle-fill.d.ts +0 -58
  1052. package/es/icon/icon-check-square/icon-check-square.d.ts +0 -58
  1053. package/es/icon/icon-chinese-fill/icon-chinese-fill.d.ts +0 -58
  1054. package/es/icon/icon-clock-circle/icon-clock-circle.d.ts +0 -58
  1055. package/es/icon/icon-close/icon-close.d.ts +0 -58
  1056. package/es/icon/icon-close-circle/icon-close-circle.d.ts +0 -58
  1057. package/es/icon/icon-close-circle-fill/icon-close-circle-fill.d.ts +0 -58
  1058. package/es/icon/icon-cloud/icon-cloud.d.ts +0 -58
  1059. package/es/icon/icon-cloud-download/icon-cloud-download.d.ts +0 -58
  1060. package/es/icon/icon-code/icon-code.d.ts +0 -58
  1061. package/es/icon/icon-code-block/icon-code-block.d.ts +0 -58
  1062. package/es/icon/icon-code-sandbox/icon-code-sandbox.d.ts +0 -58
  1063. package/es/icon/icon-code-square/icon-code-square.d.ts +0 -58
  1064. package/es/icon/icon-codepen/icon-codepen.d.ts +0 -58
  1065. package/es/icon/icon-command/icon-command.d.ts +0 -58
  1066. package/es/icon/icon-common/icon-common.d.ts +0 -58
  1067. package/es/icon/icon-compass/icon-compass.d.ts +0 -58
  1068. package/es/icon/icon-computer/icon-computer.d.ts +0 -58
  1069. package/es/icon/icon-copy/icon-copy.d.ts +0 -58
  1070. package/es/icon/icon-copyright/icon-copyright.d.ts +0 -58
  1071. package/es/icon/icon-customer-service/icon-customer-service.d.ts +0 -58
  1072. package/es/icon/icon-dashboard/icon-dashboard.d.ts +0 -58
  1073. package/es/icon/icon-delete/icon-delete.d.ts +0 -58
  1074. package/es/icon/icon-desktop/icon-desktop.d.ts +0 -58
  1075. package/es/icon/icon-dice/icon-dice.d.ts +0 -58
  1076. package/es/icon/icon-double-down/icon-double-down.d.ts +0 -58
  1077. package/es/icon/icon-double-left/icon-double-left.d.ts +0 -58
  1078. package/es/icon/icon-double-right/icon-double-right.d.ts +0 -58
  1079. package/es/icon/icon-double-up/icon-double-up.d.ts +0 -58
  1080. package/es/icon/icon-down/icon-down.d.ts +0 -58
  1081. package/es/icon/icon-down-circle/icon-down-circle.d.ts +0 -58
  1082. package/es/icon/icon-download/icon-download.d.ts +0 -58
  1083. package/es/icon/icon-drag-arrow/icon-drag-arrow.d.ts +0 -58
  1084. package/es/icon/icon-drag-dot/icon-drag-dot.d.ts +0 -58
  1085. package/es/icon/icon-drag-dot-vertical/icon-drag-dot-vertical.d.ts +0 -58
  1086. package/es/icon/icon-drive-file/icon-drive-file.d.ts +0 -58
  1087. package/es/icon/icon-ear/icon-ear.d.ts +0 -58
  1088. package/es/icon/icon-edit/icon-edit.d.ts +0 -58
  1089. package/es/icon/icon-email/icon-email.d.ts +0 -58
  1090. package/es/icon/icon-empty/icon-empty.d.ts +0 -58
  1091. package/es/icon/icon-english-fill/icon-english-fill.d.ts +0 -58
  1092. package/es/icon/icon-eraser/icon-eraser.d.ts +0 -58
  1093. package/es/icon/icon-exclamation/icon-exclamation.d.ts +0 -58
  1094. package/es/icon/icon-exclamation-circle/icon-exclamation-circle.d.ts +0 -58
  1095. package/es/icon/icon-exclamation-circle-fill/icon-exclamation-circle-fill.d.ts +0 -58
  1096. package/es/icon/icon-exclamation-polygon-fill/icon-exclamation-polygon-fill.d.ts +0 -58
  1097. package/es/icon/icon-expand/icon-expand.d.ts +0 -58
  1098. package/es/icon/icon-experiment/icon-experiment.d.ts +0 -58
  1099. package/es/icon/icon-export/icon-export.d.ts +0 -58
  1100. package/es/icon/icon-eye/icon-eye.d.ts +0 -58
  1101. package/es/icon/icon-eye-invisible/icon-eye-invisible.d.ts +0 -58
  1102. package/es/icon/icon-face-frown-fill/icon-face-frown-fill.d.ts +0 -58
  1103. package/es/icon/icon-face-meh-fill/icon-face-meh-fill.d.ts +0 -58
  1104. package/es/icon/icon-face-smile-fill/icon-face-smile-fill.d.ts +0 -58
  1105. package/es/icon/icon-faceBook-circle-fill/icon-faceBook-circle-fill.d.ts +0 -58
  1106. package/es/icon/icon-facebook/icon-facebook.d.ts +0 -58
  1107. package/es/icon/icon-facebook-square-fill/icon-facebook-square-fill.d.ts +0 -58
  1108. package/es/icon/icon-file/icon-file.d.ts +0 -58
  1109. package/es/icon/icon-file-audio/icon-file-audio.d.ts +0 -58
  1110. package/es/icon/icon-file-image/icon-file-image.d.ts +0 -58
  1111. package/es/icon/icon-file-pdf/icon-file-pdf.d.ts +0 -58
  1112. package/es/icon/icon-file-video/icon-file-video.d.ts +0 -58
  1113. package/es/icon/icon-filter/icon-filter.d.ts +0 -58
  1114. package/es/icon/icon-find-replace/icon-find-replace.d.ts +0 -58
  1115. package/es/icon/icon-fire/icon-fire.d.ts +0 -58
  1116. package/es/icon/icon-folder/icon-folder.d.ts +0 -58
  1117. package/es/icon/icon-folder-add/icon-folder-add.d.ts +0 -58
  1118. package/es/icon/icon-folder-delete/icon-folder-delete.d.ts +0 -58
  1119. package/es/icon/icon-font-colors/icon-font-colors.d.ts +0 -58
  1120. package/es/icon/icon-formula/icon-formula.d.ts +0 -58
  1121. package/es/icon/icon-forward/icon-forward.d.ts +0 -58
  1122. package/es/icon/icon-fullscreen/icon-fullscreen.d.ts +0 -58
  1123. package/es/icon/icon-fullscreen-exit/icon-fullscreen-exit.d.ts +0 -58
  1124. package/es/icon/icon-gift/icon-gift.d.ts +0 -58
  1125. package/es/icon/icon-github/icon-github.d.ts +0 -58
  1126. package/es/icon/icon-gitlab/icon-gitlab.d.ts +0 -58
  1127. package/es/icon/icon-google/icon-google.d.ts +0 -58
  1128. package/es/icon/icon-google-circle-fill/icon-google-circle-fill.d.ts +0 -58
  1129. package/es/icon/icon-h1/icon-h1.d.ts +0 -58
  1130. package/es/icon/icon-h2/icon-h2.d.ts +0 -58
  1131. package/es/icon/icon-h3/icon-h3.d.ts +0 -58
  1132. package/es/icon/icon-h4/icon-h4.d.ts +0 -58
  1133. package/es/icon/icon-h5/icon-h5.d.ts +0 -58
  1134. package/es/icon/icon-h6/icon-h6.d.ts +0 -58
  1135. package/es/icon/icon-h7/icon-h7.d.ts +0 -58
  1136. package/es/icon/icon-heart/icon-heart.d.ts +0 -58
  1137. package/es/icon/icon-heart-fill/icon-heart-fill.d.ts +0 -58
  1138. package/es/icon/icon-highlight/icon-highlight.d.ts +0 -58
  1139. package/es/icon/icon-history/icon-history.d.ts +0 -58
  1140. package/es/icon/icon-home/icon-home.d.ts +0 -58
  1141. package/es/icon/icon-idcard/icon-idcard.d.ts +0 -58
  1142. package/es/icon/icon-image/icon-image.d.ts +0 -58
  1143. package/es/icon/icon-image-close/icon-image-close.d.ts +0 -58
  1144. package/es/icon/icon-import/icon-import.d.ts +0 -58
  1145. package/es/icon/icon-info/icon-info.d.ts +0 -58
  1146. package/es/icon/icon-info-circle/icon-info-circle.d.ts +0 -58
  1147. package/es/icon/icon-info-circle-fill/icon-info-circle-fill.d.ts +0 -58
  1148. package/es/icon/icon-interaction/icon-interaction.d.ts +0 -58
  1149. package/es/icon/icon-italic/icon-italic.d.ts +0 -58
  1150. package/es/icon/icon-language/icon-language.d.ts +0 -58
  1151. package/es/icon/icon-lark-color/icon-lark-color.d.ts +0 -58
  1152. package/es/icon/icon-launch/icon-launch.d.ts +0 -58
  1153. package/es/icon/icon-layers/icon-layers.d.ts +0 -58
  1154. package/es/icon/icon-layout/icon-layout.d.ts +0 -58
  1155. package/es/icon/icon-left/icon-left.d.ts +0 -58
  1156. package/es/icon/icon-left-circle/icon-left-circle.d.ts +0 -58
  1157. package/es/icon/icon-line-height/icon-line-height.d.ts +0 -58
  1158. package/es/icon/icon-link/icon-link.d.ts +0 -58
  1159. package/es/icon/icon-list/icon-list.d.ts +0 -58
  1160. package/es/icon/icon-live-broadcast/icon-live-broadcast.d.ts +0 -58
  1161. package/es/icon/icon-loading/icon-loading.d.ts +0 -58
  1162. package/es/icon/icon-location/icon-location.d.ts +0 -58
  1163. package/es/icon/icon-lock/icon-lock.d.ts +0 -58
  1164. package/es/icon/icon-loop/icon-loop.d.ts +0 -58
  1165. package/es/icon/icon-man/icon-man.d.ts +0 -58
  1166. package/es/icon/icon-menu/icon-menu.d.ts +0 -58
  1167. package/es/icon/icon-menu-fold/icon-menu-fold.d.ts +0 -58
  1168. package/es/icon/icon-menu-unfold/icon-menu-unfold.d.ts +0 -58
  1169. package/es/icon/icon-message/icon-message.d.ts +0 -58
  1170. package/es/icon/icon-message-banned/icon-message-banned.d.ts +0 -58
  1171. package/es/icon/icon-mind-mapping/icon-mind-mapping.d.ts +0 -58
  1172. package/es/icon/icon-minus/icon-minus.d.ts +0 -58
  1173. package/es/icon/icon-minus-circle/icon-minus-circle.d.ts +0 -58
  1174. package/es/icon/icon-minus-circle-fill/icon-minus-circle-fill.d.ts +0 -58
  1175. package/es/icon/icon-mobile/icon-mobile.d.ts +0 -58
  1176. package/es/icon/icon-moon/icon-moon.d.ts +0 -58
  1177. package/es/icon/icon-moon-fill/icon-moon-fill.d.ts +0 -58
  1178. package/es/icon/icon-more/icon-more.d.ts +0 -58
  1179. package/es/icon/icon-more-vertical/icon-more-vertical.d.ts +0 -58
  1180. package/es/icon/icon-mosaic/icon-mosaic.d.ts +0 -58
  1181. package/es/icon/icon-music/icon-music.d.ts +0 -58
  1182. package/es/icon/icon-mute/icon-mute.d.ts +0 -58
  1183. package/es/icon/icon-mute-fill/icon-mute-fill.d.ts +0 -58
  1184. package/es/icon/icon-nav/icon-nav.d.ts +0 -58
  1185. package/es/icon/icon-notification/icon-notification.d.ts +0 -58
  1186. package/es/icon/icon-notification-close/icon-notification-close.d.ts +0 -58
  1187. package/es/icon/icon-oblique-line/icon-oblique-line.d.ts +0 -58
  1188. package/es/icon/icon-ordered-list/icon-ordered-list.d.ts +0 -58
  1189. package/es/icon/icon-original-size/icon-original-size.d.ts +0 -58
  1190. package/es/icon/icon-palette/icon-palette.d.ts +0 -58
  1191. package/es/icon/icon-paste/icon-paste.d.ts +0 -58
  1192. package/es/icon/icon-pause/icon-pause.d.ts +0 -58
  1193. package/es/icon/icon-pause-circle/icon-pause-circle.d.ts +0 -58
  1194. package/es/icon/icon-pause-circle-fill/icon-pause-circle-fill.d.ts +0 -58
  1195. package/es/icon/icon-pen/icon-pen.d.ts +0 -58
  1196. package/es/icon/icon-pen-fill/icon-pen-fill.d.ts +0 -58
  1197. package/es/icon/icon-phone/icon-phone.d.ts +0 -58
  1198. package/es/icon/icon-play-arrow/icon-play-arrow.d.ts +0 -58
  1199. package/es/icon/icon-play-arrow-fill/icon-play-arrow-fill.d.ts +0 -58
  1200. package/es/icon/icon-play-circle/icon-play-circle.d.ts +0 -58
  1201. package/es/icon/icon-play-circle-fill/icon-play-circle-fill.d.ts +0 -58
  1202. package/es/icon/icon-plus/icon-plus.d.ts +0 -58
  1203. package/es/icon/icon-plus-circle/icon-plus-circle.d.ts +0 -58
  1204. package/es/icon/icon-plus-circle-fill/icon-plus-circle-fill.d.ts +0 -58
  1205. package/es/icon/icon-poweroff/icon-poweroff.d.ts +0 -58
  1206. package/es/icon/icon-printer/icon-printer.d.ts +0 -58
  1207. package/es/icon/icon-public/icon-public.d.ts +0 -58
  1208. package/es/icon/icon-pushpin/icon-pushpin.d.ts +0 -58
  1209. package/es/icon/icon-qq/icon-qq.d.ts +0 -58
  1210. package/es/icon/icon-qq-circle-fill/icon-qq-circle-fill.d.ts +0 -58
  1211. package/es/icon/icon-qq-zone/icon-qq-zone.d.ts +0 -58
  1212. package/es/icon/icon-qrcode/icon-qrcode.d.ts +0 -58
  1213. package/es/icon/icon-question/icon-question.d.ts +0 -58
  1214. package/es/icon/icon-question-circle/icon-question-circle.d.ts +0 -58
  1215. package/es/icon/icon-question-circle-fill/icon-question-circle-fill.d.ts +0 -58
  1216. package/es/icon/icon-quote/icon-quote.d.ts +0 -58
  1217. package/es/icon/icon-record/icon-record.d.ts +0 -58
  1218. package/es/icon/icon-record-stop/icon-record-stop.d.ts +0 -58
  1219. package/es/icon/icon-redo/icon-redo.d.ts +0 -58
  1220. package/es/icon/icon-refresh/icon-refresh.d.ts +0 -58
  1221. package/es/icon/icon-relation/icon-relation.d.ts +0 -58
  1222. package/es/icon/icon-reply/icon-reply.d.ts +0 -58
  1223. package/es/icon/icon-right/icon-right.d.ts +0 -58
  1224. package/es/icon/icon-right-circle/icon-right-circle.d.ts +0 -58
  1225. package/es/icon/icon-robot/icon-robot.d.ts +0 -58
  1226. package/es/icon/icon-robot-add/icon-robot-add.d.ts +0 -58
  1227. package/es/icon/icon-rotate-left/icon-rotate-left.d.ts +0 -58
  1228. package/es/icon/icon-rotate-right/icon-rotate-right.d.ts +0 -58
  1229. package/es/icon/icon-safe/icon-safe.d.ts +0 -58
  1230. package/es/icon/icon-save/icon-save.d.ts +0 -58
  1231. package/es/icon/icon-scan/icon-scan.d.ts +0 -58
  1232. package/es/icon/icon-schedule/icon-schedule.d.ts +0 -58
  1233. package/es/icon/icon-scissor/icon-scissor.d.ts +0 -58
  1234. package/es/icon/icon-search/icon-search.d.ts +0 -58
  1235. package/es/icon/icon-select-all/icon-select-all.d.ts +0 -58
  1236. package/es/icon/icon-send/icon-send.d.ts +0 -58
  1237. package/es/icon/icon-settings/icon-settings.d.ts +0 -58
  1238. package/es/icon/icon-shake/icon-shake.d.ts +0 -58
  1239. package/es/icon/icon-share-alt/icon-share-alt.d.ts +0 -58
  1240. package/es/icon/icon-share-external/icon-share-external.d.ts +0 -58
  1241. package/es/icon/icon-share-internal/icon-share-internal.d.ts +0 -58
  1242. package/es/icon/icon-shrink/icon-shrink.d.ts +0 -58
  1243. package/es/icon/icon-skin/icon-skin.d.ts +0 -58
  1244. package/es/icon/icon-skip-next/icon-skip-next.d.ts +0 -58
  1245. package/es/icon/icon-skip-next-fill/icon-skip-next-fill.d.ts +0 -58
  1246. package/es/icon/icon-skip-previous/icon-skip-previous.d.ts +0 -58
  1247. package/es/icon/icon-skip-previous-fill/icon-skip-previous-fill.d.ts +0 -58
  1248. package/es/icon/icon-sort/icon-sort.d.ts +0 -58
  1249. package/es/icon/icon-sort-ascending/icon-sort-ascending.d.ts +0 -58
  1250. package/es/icon/icon-sort-descending/icon-sort-descending.d.ts +0 -58
  1251. package/es/icon/icon-sound/icon-sound.d.ts +0 -58
  1252. package/es/icon/icon-sound-fill/icon-sound-fill.d.ts +0 -58
  1253. package/es/icon/icon-stamp/icon-stamp.d.ts +0 -58
  1254. package/es/icon/icon-star/icon-star.d.ts +0 -58
  1255. package/es/icon/icon-star-fill/icon-star-fill.d.ts +0 -58
  1256. package/es/icon/icon-stop/icon-stop.d.ts +0 -58
  1257. package/es/icon/icon-storage/icon-storage.d.ts +0 -58
  1258. package/es/icon/icon-strikethrough/icon-strikethrough.d.ts +0 -58
  1259. package/es/icon/icon-subscribe/icon-subscribe.d.ts +0 -58
  1260. package/es/icon/icon-subscribe-add/icon-subscribe-add.d.ts +0 -58
  1261. package/es/icon/icon-subscribed/icon-subscribed.d.ts +0 -58
  1262. package/es/icon/icon-sun/icon-sun.d.ts +0 -58
  1263. package/es/icon/icon-sun-fill/icon-sun-fill.d.ts +0 -58
  1264. package/es/icon/icon-swap/icon-swap.d.ts +0 -58
  1265. package/es/icon/icon-sync/icon-sync.d.ts +0 -58
  1266. package/es/icon/icon-tag/icon-tag.d.ts +0 -58
  1267. package/es/icon/icon-tags/icon-tags.d.ts +0 -58
  1268. package/es/icon/icon-thumb-down/icon-thumb-down.d.ts +0 -58
  1269. package/es/icon/icon-thumb-down-fill/icon-thumb-down-fill.d.ts +0 -58
  1270. package/es/icon/icon-thumb-up/icon-thumb-up.d.ts +0 -58
  1271. package/es/icon/icon-thumb-up-fill/icon-thumb-up-fill.d.ts +0 -58
  1272. package/es/icon/icon-thunderbolt/icon-thunderbolt.d.ts +0 -58
  1273. package/es/icon/icon-tiktok-color/icon-tiktok-color.d.ts +0 -58
  1274. package/es/icon/icon-to-bottom/icon-to-bottom.d.ts +0 -58
  1275. package/es/icon/icon-to-left/icon-to-left.d.ts +0 -58
  1276. package/es/icon/icon-to-right/icon-to-right.d.ts +0 -58
  1277. package/es/icon/icon-to-top/icon-to-top.d.ts +0 -58
  1278. package/es/icon/icon-tool/icon-tool.d.ts +0 -58
  1279. package/es/icon/icon-translate/icon-translate.d.ts +0 -58
  1280. package/es/icon/icon-trophy/icon-trophy.d.ts +0 -58
  1281. package/es/icon/icon-twitter/icon-twitter.d.ts +0 -58
  1282. package/es/icon/icon-twitter-circle-fill/icon-twitter-circle-fill.d.ts +0 -58
  1283. package/es/icon/icon-underline/icon-underline.d.ts +0 -58
  1284. package/es/icon/icon-undo/icon-undo.d.ts +0 -58
  1285. package/es/icon/icon-unlock/icon-unlock.d.ts +0 -58
  1286. package/es/icon/icon-unordered-list/icon-unordered-list.d.ts +0 -58
  1287. package/es/icon/icon-up/icon-up.d.ts +0 -58
  1288. package/es/icon/icon-up-circle/icon-up-circle.d.ts +0 -58
  1289. package/es/icon/icon-upload/icon-upload.d.ts +0 -58
  1290. package/es/icon/icon-user/icon-user.d.ts +0 -58
  1291. package/es/icon/icon-user-add/icon-user-add.d.ts +0 -58
  1292. package/es/icon/icon-user-group/icon-user-group.d.ts +0 -58
  1293. package/es/icon/icon-video-camera/icon-video-camera.d.ts +0 -58
  1294. package/es/icon/icon-voice/icon-voice.d.ts +0 -58
  1295. package/es/icon/icon-wechat/icon-wechat.d.ts +0 -58
  1296. package/es/icon/icon-wechatpay/icon-wechatpay.d.ts +0 -58
  1297. package/es/icon/icon-weibo/icon-weibo.d.ts +0 -58
  1298. package/es/icon/icon-weibo-circle-fill/icon-weibo-circle-fill.d.ts +0 -58
  1299. package/es/icon/icon-wifi/icon-wifi.d.ts +0 -58
  1300. package/es/icon/icon-woman/icon-woman.d.ts +0 -58
  1301. package/es/icon/icon-xigua-color/icon-xigua-color.d.ts +0 -58
  1302. package/es/icon/icon-zoom-in/icon-zoom-in.d.ts +0 -58
  1303. package/es/icon/icon-zoom-out/icon-zoom-out.d.ts +0 -58
  1304. package/es/icon-component/icon.d.ts +0 -20
  1305. package/es/image/image-footer.d.ts +0 -18
  1306. package/es/image/preview-arrow.d.ts +0 -21
  1307. package/es/image/preview-toolbar.d.ts +0 -1381
  1308. package/es/input/input-group.d.ts +0 -4
  1309. package/es/input/input-password.d.ts +0 -214
  1310. package/es/layout/content.d.ts +0 -4
  1311. package/es/layout/footer.d.ts +0 -4
  1312. package/es/layout/header.d.ts +0 -4
  1313. package/es/layout/layout.d.ts +0 -16
  1314. package/es/layout/sider.d.ts +0 -343
  1315. package/es/link/link.d.ts +0 -50
  1316. package/es/list/list-item-meta.d.ts +0 -11
  1317. package/es/menu/base-menu.d.ts +0 -209
  1318. package/es/menu/indent.d.ts +0 -17
  1319. package/es/menu/item-group.d.ts +0 -31
  1320. package/es/menu/sub-menu-inline.d.ts +0 -51
  1321. package/es/menu/sub-menu-pop.d.ts +0 -861
  1322. package/es/message/message.d.ts +0 -105
  1323. package/es/modal/modal.d.ts +0 -549
  1324. package/es/notification/notification.d.ts +0 -93
  1325. package/es/page-header/page-header.d.ts +0 -58
  1326. package/es/pagination/page-item-ellipsis.d.ts +0 -38
  1327. package/es/pagination/page-item-step.d.ts +0 -59
  1328. package/es/pagination/page-item.d.ts +0 -48
  1329. package/es/pagination/page-jumper.d.ts +0 -341
  1330. package/es/pagination/page-options.d.ts +0 -2332
  1331. package/es/popconfirm/popconfirm.d.ts +0 -905
  1332. package/es/popover/popover.d.ts +0 -653
  1333. package/es/progress/circle.d.ts +0 -95
  1334. package/es/progress/line.d.ts +0 -102
  1335. package/es/progress/progress.d.ts +0 -358
  1336. package/es/progress/steps.d.ts +0 -71
  1337. package/es/resize-box/resize-box.d.ts +0 -110
  1338. package/es/result/result.d.ts +0 -33
  1339. package/es/scrollbar/scrollbar.d.ts +0 -143
  1340. package/es/scrollbar/thumb.d.ts +0 -57
  1341. package/es/select/optgroup.d.ts +0 -12
  1342. package/es/select/option.d.ts +0 -298
  1343. package/es/select/select-dropdown.d.ts +0 -492
  1344. package/es/skeleton/line.d.ts +0 -45
  1345. package/es/skeleton/shape.d.ts +0 -27
  1346. package/es/skeleton/skeleton.d.ts +0 -28
  1347. package/es/slider/slider-button.d.ts +0 -1392
  1348. package/es/slider/slider-dots.d.ts +0 -51
  1349. package/es/slider/slider-input.d.ts +0 -329
  1350. package/es/slider/slider-marks.d.ts +0 -49
  1351. package/es/slider/slider-ticks.d.ts +0 -55
  1352. package/es/slider/slider.d.ts +0 -2012
  1353. package/es/split/split.d.ts +0 -85
  1354. package/es/statistic/countdown.d.ts +0 -57
  1355. package/es/statistic/statistic.d.ts +0 -107
  1356. package/es/steps/step.d.ts +0 -41
  1357. package/es/steps/steps.d.ts +0 -99
  1358. package/es/switch/switch.d.ts +0 -135
  1359. package/es/table/table-col-group.d.ts +0 -38
  1360. package/es/tabs/tab-pane.d.ts +0 -39
  1361. package/es/tabs/tabs-nav-ink.d.ts +0 -32
  1362. package/es/tabs/tabs-tab.d.ts +0 -71
  1363. package/es/tag/tag.d.ts +0 -153
  1364. package/es/textarea/textarea.d.ts +0 -189
  1365. package/es/time-picker/panel.d.ts +0 -495
  1366. package/es/time-picker/time-column.d.ts +0 -43
  1367. package/es/time-picker/time-picker.d.ts +0 -2109
  1368. package/es/timeline/item.d.ts +0 -63
  1369. package/es/tooltip/tooltip.d.ts +0 -668
  1370. package/es/transfer/transfer-view.d.ts +0 -1032
  1371. package/es/transfer/transfer.d.ts +0 -1381
  1372. package/es/tree/base-node.d.ts +0 -483
  1373. package/es/tree/expand-transition.d.ts +0 -14
  1374. package/es/tree/node-switcher.d.ts +0 -74
  1375. package/es/tree/transition-node-list.d.ts +0 -515
  1376. package/es/tree/tree.d.ts +0 -710
  1377. package/es/tree-select/tree-select.d.ts +0 -2795
  1378. package/es/typography/edit-content.d.ts +0 -1641
  1379. package/es/typography/operations.d.ts +0 -1365
  1380. package/es/typography/typography.d.ts +0 -4
@@ -45,6 +45,38 @@
45
45
  "description": "Whether the content is displayed in the center",
46
46
  "type": "boolean"
47
47
  },
48
+ "a-anchor/select": {
49
+ "description": "Triggered when the user clicks on the link"
50
+ },
51
+ "a-anchor/change": {
52
+ "description": "Triggered when the link changes"
53
+ },
54
+ "a-anchor/boundary": {
55
+ "description": "Scrolling boundary value. After setting the value to a number, it will stop scrolling when the distance is `boundary` from the scrolling container."
56
+ },
57
+ "a-anchor/line-less": {
58
+ "description": "Whether to show the left axis",
59
+ "type": "boolean"
60
+ },
61
+ "a-anchor/scroll-container": {
62
+ "description": "Scroll container"
63
+ },
64
+ "a-anchor/change-hash": {
65
+ "description": "Whether to change the hash. When set to `false`, clicking on the anchor will not change the hash of the page",
66
+ "type": "boolean"
67
+ },
68
+ "a-anchor/smooth": {
69
+ "description": "Whether to use smooth scrolling",
70
+ "type": "boolean"
71
+ },
72
+ "a-anchor-link/title": {
73
+ "description": "The text content of the anchor link",
74
+ "type": "string"
75
+ },
76
+ "a-anchor-link/href": {
77
+ "description": "The address of the anchor link",
78
+ "type": "string"
79
+ },
48
80
  "a-auto-complete/change": {
49
81
  "description": "Emitted when the value changes"
50
82
  },
@@ -98,82 +130,6 @@
98
130
  "a-auto-complete/virtual-list-props": {
99
131
  "description": "Pass the virtual list attribute, pass in this parameter to turn on virtual scrolling [VirtualListProps](#VirtualListProps)"
100
132
  },
101
- "a-badge/text": {
102
- "description": "Set the display text of the status dot",
103
- "type": "string"
104
- },
105
- "a-badge/dot": {
106
- "description": "Whether to display a red dot instead of `count`",
107
- "type": "boolean"
108
- },
109
- "a-badge/dot-style": {
110
- "description": "Customize badge dot style",
111
- "type": "object"
112
- },
113
- "a-badge/max-count": {
114
- "description": "Max count to show. If count is larger than this value, it will be displayed as `${maxCount}+`",
115
- "type": "number"
116
- },
117
- "a-badge/offset": {
118
- "description": "Set offset of the badge dot"
119
- },
120
- "a-badge/color": {
121
- "description": "Customize dot color"
122
- },
123
- "a-badge/status": {
124
- "description": "Badge status"
125
- },
126
- "a-badge/count": {
127
- "description": "Number to show in badge",
128
- "type": "number"
129
- },
130
- "a-anchor/select": {
131
- "description": "Triggered when the user clicks on the link"
132
- },
133
- "a-anchor/change": {
134
- "description": "Triggered when the link changes"
135
- },
136
- "a-anchor/boundary": {
137
- "description": "Scrolling boundary value. After setting the value to a number, it will stop scrolling when the distance is `boundary` from the scrolling container."
138
- },
139
- "a-anchor/line-less": {
140
- "description": "Whether to show the left axis",
141
- "type": "boolean"
142
- },
143
- "a-anchor/scroll-container": {
144
- "description": "Scroll container"
145
- },
146
- "a-anchor/change-hash": {
147
- "description": "Whether to change the hash. When set to `false`, clicking on the anchor will not change the hash of the page",
148
- "type": "boolean"
149
- },
150
- "a-anchor/smooth": {
151
- "description": "Whether to use smooth scrolling",
152
- "type": "boolean"
153
- },
154
- "a-anchor-link/title": {
155
- "description": "The text content of the anchor link",
156
- "type": "string"
157
- },
158
- "a-anchor-link/href": {
159
- "description": "The address of the anchor link",
160
- "type": "string"
161
- },
162
- "a-back-top/visible-height": {
163
- "description": "Display the trigger scroll height of the back to top button",
164
- "type": "number"
165
- },
166
- "a-back-top/target-container": {
167
- "description": "Scroll event listener container"
168
- },
169
- "a-back-top/easing": {
170
- "description": "Easing mode of scrolling animation, refer to [BTween](https://github.com/PengJiyuan/b-tween) for optional values",
171
- "type": "string"
172
- },
173
- "a-back-top/duration": {
174
- "description": "Duration of scroll animation",
175
- "type": "number"
176
- },
177
133
  "a-avatar/click": {
178
134
  "description": "Callback when clicked"
179
135
  },
@@ -232,6 +188,50 @@
232
188
  "a-avatar-group/max-popover-trigger-props": {
233
189
  "description": "TriggerProps for popover around +x."
234
190
  },
191
+ "a-back-top/visible-height": {
192
+ "description": "Display the trigger scroll height of the back to top button",
193
+ "type": "number"
194
+ },
195
+ "a-back-top/target-container": {
196
+ "description": "Scroll event listener container"
197
+ },
198
+ "a-back-top/easing": {
199
+ "description": "Easing mode of scrolling animation, refer to [BTween](https://github.com/PengJiyuan/b-tween) for optional values",
200
+ "type": "string"
201
+ },
202
+ "a-back-top/duration": {
203
+ "description": "Duration of scroll animation",
204
+ "type": "number"
205
+ },
206
+ "a-badge/text": {
207
+ "description": "Set the display text of the status dot",
208
+ "type": "string"
209
+ },
210
+ "a-badge/dot": {
211
+ "description": "Whether to display a red dot instead of `count`",
212
+ "type": "boolean"
213
+ },
214
+ "a-badge/dot-style": {
215
+ "description": "Customize badge dot style",
216
+ "type": "object"
217
+ },
218
+ "a-badge/max-count": {
219
+ "description": "Max count to show. If count is larger than this value, it will be displayed as `${maxCount}+`",
220
+ "type": "number"
221
+ },
222
+ "a-badge/offset": {
223
+ "description": "Set offset of the badge dot"
224
+ },
225
+ "a-badge/color": {
226
+ "description": "Customize dot color"
227
+ },
228
+ "a-badge/status": {
229
+ "description": "Badge status"
230
+ },
231
+ "a-badge/count": {
232
+ "description": "Number to show in badge",
233
+ "type": "number"
234
+ },
235
235
  "a-breadcrumb/max-count": {
236
236
  "description": "Maximum number of breadcrumbs displayed (0 means no limit)",
237
237
  "type": "number"
@@ -310,55 +310,6 @@
310
310
  "description": "All children whether the button is disabled",
311
311
  "type": "boolean"
312
312
  },
313
- "a-carousel/change": {
314
- "description": "Callback when slide changes"
315
- },
316
- "a-carousel/current": {
317
- "description": "The index of current slide which starts from 1",
318
- "type": "number"
319
- },
320
- "a-carousel/default-current": {
321
- "description": "Default index of current slide",
322
- "type": "number"
323
- },
324
- "a-carousel/auto-play": {
325
- "description": "* Whether to automatically loop the display, or pass in `{ interval: the time interval for switching (default: 3000),\nhoverToPause: whether to pause switching while hover (default: true) }` for configuration (object is supported from `2.14.0`)"
326
- },
327
- "a-carousel/move-speed": {
328
- "description": "The duration of the slide movement(ms)",
329
- "type": "number"
330
- },
331
- "a-carousel/animation-name": {
332
- "description": "The animation of the slide movement",
333
- "type": "string"
334
- },
335
- "a-carousel/trigger": {
336
- "description": "How to trigger the slide switch, click/hover the indicator"
337
- },
338
- "a-carousel/direction": {
339
- "description": "The direction of the slide movement"
340
- },
341
- "a-carousel/show-arrow": {
342
- "description": "When to show the arrow used to switch"
343
- },
344
- "a-carousel/arrow-class": {
345
- "description": "The additional css class to arrow used to switch",
346
- "type": "string"
347
- },
348
- "a-carousel/indicator-type": {
349
- "description": "Type of indicator"
350
- },
351
- "a-carousel/indicator-position": {
352
- "description": "Position of indication"
353
- },
354
- "a-carousel/indicator-class": {
355
- "description": "The additional css class to indicator",
356
- "type": "string"
357
- },
358
- "a-carousel/transition-timing-function": {
359
- "description": "How intermediate values are calculated for CSS properties being affected by a transition effect.\n[transition-timing-function](https://developer.mozilla.org/zh-CN/docs/Web/CSS/transition-timing-function)",
360
- "type": "string"
361
- },
362
313
  "a-calendar/change": {
363
314
  "description": "Emitted when the button is clicked"
364
315
  },
@@ -382,168 +333,37 @@
382
333
  "a-calendar/modes": {
383
334
  "description": "Displayed mode"
384
335
  },
385
- "a-card/bordered": {
386
- "description": "Whether to render the border",
387
- "type": "boolean"
388
- },
389
- "a-card/loading": {
390
- "description": "Loading status",
391
- "type": "boolean"
392
- },
393
- "a-card/hoverable": {
394
- "description": "Can be hovered",
395
- "type": "boolean"
336
+ "a-cascader/change": {
337
+ "description": "Triggered when the selected value changes"
396
338
  },
397
- "a-card/size": {
398
- "description": "Size of card",
399
- "type": "string"
339
+ "a-cascader/input-value-change": {
340
+ "description": "Triggered when the input value changes"
400
341
  },
401
- "a-card/header-style": {
402
- "description": "The additional css style to apply to card head"
342
+ "a-cascader/clear": {
343
+ "description": "Triggered when the clear button is clicked"
403
344
  },
404
- "a-card/body-style": {
405
- "description": "The additional css style to apply to card content"
345
+ "a-cascader/search": {
346
+ "description": "Triggered when the user searches"
406
347
  },
407
- "a-card/title": {
408
- "description": "Title of card",
409
- "type": "string"
348
+ "a-cascader/popup-visible-change": {
349
+ "description": "Triggered when the display state of the dropdown changes"
410
350
  },
411
- "a-card/extra": {
412
- "description": "Content to render in the top-right corner of the card",
413
- "type": "string"
351
+ "a-cascader/focus": {
352
+ "description": "Triggered when focus"
414
353
  },
415
- "a-card-meta/title": {
416
- "description": "Title of card",
417
- "type": "string"
354
+ "a-cascader/blur": {
355
+ "description": "Triggered when blur"
418
356
  },
419
- "a-card-meta/description": {
420
- "description": "Description of card",
421
- "type": "string"
357
+ "a-cascader/path-mode": {
358
+ "description": "Whether the value is a path",
359
+ "type": "boolean"
422
360
  },
423
- "a-card-grid/hoverable": {
424
- "description": "Whether to hover",
361
+ "a-cascader/multiple": {
362
+ "description": "Whether it is a multi-selection state (The search is turned on by default in the multi-select mode)",
425
363
  "type": "boolean"
426
364
  },
427
- "a-checkbox/change": {
428
- "description": "Trigger when the value changes"
429
- },
430
- "a-checkbox/model-value": {
431
- "description": "Value"
432
- },
433
- "a-checkbox/default-checked": {
434
- "description": "Whether checked by default (uncontrolled state)",
435
- "type": "boolean"
436
- },
437
- "a-checkbox/value": {
438
- "description": "The `value` of the option",
439
- "type": "string|number|boolean"
440
- },
441
- "a-checkbox/disabled": {
442
- "description": "Whether to disable",
443
- "type": "boolean"
444
- },
445
- "a-checkbox/indeterminate": {
446
- "description": "Whether it is half-selected",
447
- "type": "boolean"
448
- },
449
- "a-checkbox-group/change": {
450
- "description": "Trigger when the value changes"
451
- },
452
- "a-checkbox-group/model-value": {
453
- "description": "Value"
454
- },
455
- "a-checkbox-group/default-value": {
456
- "description": "Default value (uncontrolled state)"
457
- },
458
- "a-checkbox-group/max": {
459
- "description": "Support the maximum number of selections",
460
- "type": "number"
461
- },
462
- "a-checkbox-group/options": {
463
- "description": "Options"
464
- },
465
- "a-checkbox-group/direction": {
466
- "description": "Arrangement direction of checkboxes"
467
- },
468
- "a-checkbox-group/disabled": {
469
- "description": "Whether to disable",
470
- "type": "boolean"
471
- },
472
- "a-collapse/change": {
473
- "description": "Emitted when the expanded panel changes"
474
- },
475
- "a-collapse/active-key": {
476
- "description": "The `key` of the currently expanded panel"
477
- },
478
- "a-collapse/default-active-key": {
479
- "description": "The `key` of the panel expanded by default (uncontrolled mode)"
480
- },
481
- "a-collapse/accordion": {
482
- "description": "Whether to enable accordion mode",
483
- "type": "boolean"
484
- },
485
- "a-collapse/show-expand-icon": {
486
- "description": "Whether to show the expand icon",
487
- "type": "boolean"
488
- },
489
- "a-collapse/expand-icon-position": {
490
- "description": "The location where the expand icon is displayed"
491
- },
492
- "a-collapse/bordered": {
493
- "description": "Whether to show the border",
494
- "type": "boolean"
495
- },
496
- "a-collapse/destroy-on-hide": {
497
- "description": "Whether to destroy content when hidden",
498
- "type": "boolean"
499
- },
500
- "a-collapse-item/header": {
501
- "description": "The title of the panel",
502
- "type": "string"
503
- },
504
- "a-collapse-item/disabled": {
505
- "description": "Whether to disable",
506
- "type": "boolean"
507
- },
508
- "a-collapse-item/show-expand-icon": {
509
- "description": "Whether to show the expand icon",
510
- "type": "boolean"
511
- },
512
- "a-collapse-item/destroy-on-hide": {
513
- "description": "Whether to destroy content when hidden",
514
- "type": "boolean"
515
- },
516
- "a-cascader/change": {
517
- "description": "Triggered when the selected value changes"
518
- },
519
- "a-cascader/input-value-change": {
520
- "description": "Triggered when the input value changes"
521
- },
522
- "a-cascader/clear": {
523
- "description": "Triggered when the clear button is clicked"
524
- },
525
- "a-cascader/search": {
526
- "description": "Triggered when the user searches"
527
- },
528
- "a-cascader/popup-visible-change": {
529
- "description": "Triggered when the display state of the dropdown changes"
530
- },
531
- "a-cascader/focus": {
532
- "description": "Triggered when focus"
533
- },
534
- "a-cascader/blur": {
535
- "description": "Triggered when blur"
536
- },
537
- "a-cascader/path-mode": {
538
- "description": "Whether the value is a path",
539
- "type": "boolean"
540
- },
541
- "a-cascader/multiple": {
542
- "description": "Whether it is a multi-selection state (The search is turned on by default in the multi-select mode)",
543
- "type": "boolean"
544
- },
545
- "a-cascader/model-value": {
546
- "description": "Value"
365
+ "a-cascader/model-value": {
366
+ "description": "Value"
547
367
  },
548
368
  "a-cascader/default-value": {
549
369
  "description": "Default value (uncontrolled state)"
@@ -692,100 +512,306 @@
692
512
  "description": "whether to expand the submenu",
693
513
  "type": "boolean"
694
514
  },
695
- "a-color-picker/change": {
696
- "description": "Triggered when the color value changes"
515
+ "a-carousel/change": {
516
+ "description": "Callback when slide changes"
697
517
  },
698
- "a-color-picker/popup-visible-change": {
699
- "description": "Triggered when the color panel is expanded and collapsed"
518
+ "a-carousel/current": {
519
+ "description": "The index of current slide which starts from 1",
520
+ "type": "number"
700
521
  },
701
- "a-color-picker/model-value": {
702
- "description": "Value",
703
- "type": "string"
522
+ "a-carousel/default-current": {
523
+ "description": "Default index of current slide",
524
+ "type": "number"
704
525
  },
705
- "a-color-picker/default-value": {
706
- "description": "Default value (uncontrolled state)",
526
+ "a-carousel/auto-play": {
527
+ "description": "* Whether to automatically loop the display, or pass in `{ interval: the time interval for switching (default: 3000),\nhoverToPause: whether to pause switching while hover (default: true) }` for configuration (object is supported from `2.14.0`)"
528
+ },
529
+ "a-carousel/move-speed": {
530
+ "description": "The duration of the slide movement(ms)",
531
+ "type": "number"
532
+ },
533
+ "a-carousel/animation-name": {
534
+ "description": "The animation of the slide movement",
707
535
  "type": "string"
708
536
  },
709
- "a-color-picker/format": {
710
- "description": "Color value format",
537
+ "a-carousel/trigger": {
538
+ "description": "How to trigger the slide switch, click/hover the indicator"
539
+ },
540
+ "a-carousel/direction": {
541
+ "description": "The direction of the slide movement"
542
+ },
543
+ "a-carousel/show-arrow": {
544
+ "description": "When to show the arrow used to switch"
545
+ },
546
+ "a-carousel/arrow-class": {
547
+ "description": "The additional css class to arrow used to switch",
711
548
  "type": "string"
712
549
  },
713
- "a-color-picker/size": {
714
- "description": "Size"
550
+ "a-carousel/indicator-type": {
551
+ "description": "Type of indicator"
715
552
  },
716
- "a-color-picker/show-text": {
717
- "description": "Show color value",
718
- "type": "boolean"
553
+ "a-carousel/indicator-position": {
554
+ "description": "Position of indication"
719
555
  },
720
- "a-color-picker/show-history": {
721
- "description": "Show history colors",
722
- "type": "boolean"
556
+ "a-carousel/indicator-class": {
557
+ "description": "The additional css class to indicator",
558
+ "type": "string"
723
559
  },
724
- "a-color-picker/show-preset": {
725
- "description": "Show preset colors",
726
- "type": "boolean"
560
+ "a-carousel/transition-timing-function": {
561
+ "description": "How intermediate values are calculated for CSS properties being affected by a transition effect.\n[transition-timing-function](https://developer.mozilla.org/zh-CN/docs/Web/CSS/transition-timing-function)",
562
+ "type": "string"
727
563
  },
728
- "a-color-picker/disabled": {
729
- "description": "disabled",
564
+ "a-card/bordered": {
565
+ "description": "Whether to render the border",
730
566
  "type": "boolean"
731
567
  },
732
- "a-color-picker/disabled-alpha": {
733
- "description": "Disable transparency channel",
568
+ "a-card/loading": {
569
+ "description": "Loading status",
734
570
  "type": "boolean"
735
571
  },
736
- "a-color-picker/hide-trigger": {
737
- "description": "There is no trigger element, only the color panel is displayed",
572
+ "a-card/hoverable": {
573
+ "description": "Can be hovered",
738
574
  "type": "boolean"
739
575
  },
740
- "a-color-picker/trigger-props": {
741
- "description": "Can accept Props of all [Trigger](/vue/component/trigger) components"
576
+ "a-card/size": {
577
+ "description": "Size of card",
578
+ "type": "string"
742
579
  },
743
- "a-color-picker/history-colors": {
744
- "description": "Color array of historical colors"
580
+ "a-card/header-style": {
581
+ "description": "The additional css style to apply to card head"
745
582
  },
746
- "a-color-picker/preset-colors": {
747
- "description": "Color array of preset colors"
583
+ "a-card/body-style": {
584
+ "description": "The additional css style to apply to card content"
748
585
  },
749
- "a-comment/author": {
750
- "description": "Display as the comment author",
586
+ "a-card/title": {
587
+ "description": "Title of card",
751
588
  "type": "string"
752
589
  },
753
- "a-comment/avatar": {
754
- "description": "Display as the comment avatar",
590
+ "a-card/extra": {
591
+ "description": "Content to render in the top-right corner of the card",
755
592
  "type": "string"
756
593
  },
757
- "a-comment/content": {
758
- "description": "The content of the comment",
594
+ "a-card-meta/title": {
595
+ "description": "Title of card",
759
596
  "type": "string"
760
597
  },
761
- "a-comment/datetime": {
762
- "description": "Display as the comment datetime",
598
+ "a-card-meta/description": {
599
+ "description": "Description of card",
763
600
  "type": "string"
764
601
  },
765
- "a-comment/align": {
766
- "description": "Alignment of `datetime` and `actions`",
767
- "type": "string|object"
768
- },
769
- "a-range-picker/change": {
770
- "description": "The component value changes"
602
+ "a-card-grid/hoverable": {
603
+ "description": "Whether to hover",
604
+ "type": "boolean"
771
605
  },
772
- "a-range-picker/select": {
773
- "description": "The selected date has changed but the component value has not changed"
606
+ "a-checkbox/change": {
607
+ "description": "Trigger when the value changes"
774
608
  },
775
- "a-range-picker/popup-visible-change": {
776
- "description": "Open or close the pop-up box"
609
+ "a-checkbox/model-value": {
610
+ "description": "Value"
777
611
  },
778
- "a-range-picker/ok": {
779
- "description": "Click the confirm button"
612
+ "a-checkbox/default-checked": {
613
+ "description": "Whether checked by default (uncontrolled state)",
614
+ "type": "boolean"
780
615
  },
781
- "a-range-picker/clear": {
782
- "description": "Click the clear button"
616
+ "a-checkbox/value": {
617
+ "description": "The `value` of the option",
618
+ "type": "string|number|boolean"
783
619
  },
784
- "a-range-picker/select-shortcut": {
785
- "description": "Click on the shortcut option"
620
+ "a-checkbox/disabled": {
621
+ "description": "Whether to disable",
622
+ "type": "boolean"
786
623
  },
787
- "a-range-picker/picker-value-change": {
788
- "description": "Panel date change"
624
+ "a-checkbox/indeterminate": {
625
+ "description": "Whether it is half-selected",
626
+ "type": "boolean"
627
+ },
628
+ "a-checkbox-group/change": {
629
+ "description": "Trigger when the value changes"
630
+ },
631
+ "a-checkbox-group/model-value": {
632
+ "description": "Value"
633
+ },
634
+ "a-checkbox-group/default-value": {
635
+ "description": "Default value (uncontrolled state)"
636
+ },
637
+ "a-checkbox-group/max": {
638
+ "description": "Support the maximum number of selections",
639
+ "type": "number"
640
+ },
641
+ "a-checkbox-group/options": {
642
+ "description": "Options"
643
+ },
644
+ "a-checkbox-group/direction": {
645
+ "description": "Arrangement direction of checkboxes"
646
+ },
647
+ "a-checkbox-group/disabled": {
648
+ "description": "Whether to disable",
649
+ "type": "boolean"
650
+ },
651
+ "a-collapse/change": {
652
+ "description": "Emitted when the expanded panel changes"
653
+ },
654
+ "a-collapse/active-key": {
655
+ "description": "The `key` of the currently expanded panel"
656
+ },
657
+ "a-collapse/default-active-key": {
658
+ "description": "The `key` of the panel expanded by default (uncontrolled mode)"
659
+ },
660
+ "a-collapse/accordion": {
661
+ "description": "Whether to enable accordion mode",
662
+ "type": "boolean"
663
+ },
664
+ "a-collapse/show-expand-icon": {
665
+ "description": "Whether to show the expand icon",
666
+ "type": "boolean"
667
+ },
668
+ "a-collapse/expand-icon-position": {
669
+ "description": "The location where the expand icon is displayed"
670
+ },
671
+ "a-collapse/bordered": {
672
+ "description": "Whether to show the border",
673
+ "type": "boolean"
674
+ },
675
+ "a-collapse/destroy-on-hide": {
676
+ "description": "Whether to destroy content when hidden",
677
+ "type": "boolean"
678
+ },
679
+ "a-collapse-item/header": {
680
+ "description": "The title of the panel",
681
+ "type": "string"
682
+ },
683
+ "a-collapse-item/disabled": {
684
+ "description": "Whether to disable",
685
+ "type": "boolean"
686
+ },
687
+ "a-collapse-item/show-expand-icon": {
688
+ "description": "Whether to show the expand icon",
689
+ "type": "boolean"
690
+ },
691
+ "a-collapse-item/destroy-on-hide": {
692
+ "description": "Whether to destroy content when hidden",
693
+ "type": "boolean"
694
+ },
695
+ "a-color-picker/change": {
696
+ "description": "Triggered when the color value changes"
697
+ },
698
+ "a-color-picker/popup-visible-change": {
699
+ "description": "Triggered when the color panel is expanded and collapsed"
700
+ },
701
+ "a-color-picker/model-value": {
702
+ "description": "Value",
703
+ "type": "string"
704
+ },
705
+ "a-color-picker/default-value": {
706
+ "description": "Default value (uncontrolled state)",
707
+ "type": "string"
708
+ },
709
+ "a-color-picker/format": {
710
+ "description": "Color value format",
711
+ "type": "string"
712
+ },
713
+ "a-color-picker/size": {
714
+ "description": "Size"
715
+ },
716
+ "a-color-picker/show-text": {
717
+ "description": "Show color value",
718
+ "type": "boolean"
719
+ },
720
+ "a-color-picker/show-history": {
721
+ "description": "Show history colors",
722
+ "type": "boolean"
723
+ },
724
+ "a-color-picker/show-preset": {
725
+ "description": "Show preset colors",
726
+ "type": "boolean"
727
+ },
728
+ "a-color-picker/disabled": {
729
+ "description": "disabled",
730
+ "type": "boolean"
731
+ },
732
+ "a-color-picker/disabled-alpha": {
733
+ "description": "Disable transparency channel",
734
+ "type": "boolean"
735
+ },
736
+ "a-color-picker/hide-trigger": {
737
+ "description": "There is no trigger element, only the color panel is displayed",
738
+ "type": "boolean"
739
+ },
740
+ "a-color-picker/trigger-props": {
741
+ "description": "Can accept Props of all [Trigger](/vue/component/trigger) components"
742
+ },
743
+ "a-color-picker/history-colors": {
744
+ "description": "Color array of historical colors"
745
+ },
746
+ "a-color-picker/preset-colors": {
747
+ "description": "Color array of preset colors"
748
+ },
749
+ "a-comment/author": {
750
+ "description": "Display as the comment author",
751
+ "type": "string"
752
+ },
753
+ "a-comment/avatar": {
754
+ "description": "Display as the comment avatar",
755
+ "type": "string"
756
+ },
757
+ "a-comment/content": {
758
+ "description": "The content of the comment",
759
+ "type": "string"
760
+ },
761
+ "a-comment/datetime": {
762
+ "description": "Display as the comment datetime",
763
+ "type": "string"
764
+ },
765
+ "a-comment/align": {
766
+ "description": "Alignment of `datetime` and `actions`",
767
+ "type": "string|object"
768
+ },
769
+ "a-config-provider/prefix-cls": {
770
+ "description": "Component classname prefix",
771
+ "type": "string"
772
+ },
773
+ "a-config-provider/locale": {
774
+ "description": "Configure language pack"
775
+ },
776
+ "a-config-provider/size": {
777
+ "description": "Size"
778
+ },
779
+ "a-config-provider/global": {
780
+ "description": "Is global effect",
781
+ "type": "boolean"
782
+ },
783
+ "a-config-provider/scroll-to-close": {
784
+ "description": "Whether to close the popover when scrolling",
785
+ "type": "boolean"
786
+ },
787
+ "a-config-provider/exchange-time": {
788
+ "description": "Whether to exchange time",
789
+ "type": "boolean"
790
+ },
791
+ "a-config-provider/rtl": {
792
+ "description": "View starts from the right and ends on the left",
793
+ "type": "boolean"
794
+ },
795
+ "a-range-picker/change": {
796
+ "description": "The component value changes"
797
+ },
798
+ "a-range-picker/select": {
799
+ "description": "The selected date has changed but the component value has not changed"
800
+ },
801
+ "a-range-picker/popup-visible-change": {
802
+ "description": "Open or close the pop-up box"
803
+ },
804
+ "a-range-picker/ok": {
805
+ "description": "Click the confirm button"
806
+ },
807
+ "a-range-picker/clear": {
808
+ "description": "Click the clear button"
809
+ },
810
+ "a-range-picker/select-shortcut": {
811
+ "description": "Click on the shortcut option"
812
+ },
813
+ "a-range-picker/picker-value-change": {
814
+ "description": "Panel date change"
789
815
  },
790
816
  "a-range-picker/mode": {
791
817
  "description": "Type of range selector",
@@ -848,32 +874,6 @@
848
874
  "description": "Whether to enable abbreviation",
849
875
  "type": "boolean"
850
876
  },
851
- "a-config-provider/prefix-cls": {
852
- "description": "Component classname prefix",
853
- "type": "string"
854
- },
855
- "a-config-provider/locale": {
856
- "description": "Configure language pack"
857
- },
858
- "a-config-provider/size": {
859
- "description": "Size"
860
- },
861
- "a-config-provider/global": {
862
- "description": "Is global effect",
863
- "type": "boolean"
864
- },
865
- "a-config-provider/scroll-to-close": {
866
- "description": "Whether to close the popover when scrolling",
867
- "type": "boolean"
868
- },
869
- "a-config-provider/exchange-time": {
870
- "description": "Whether to exchange time",
871
- "type": "boolean"
872
- },
873
- "a-config-provider/rtl": {
874
- "description": "View starts from the right and ends on the left",
875
- "type": "boolean"
876
- },
877
877
  "a-descriptions/data": {
878
878
  "description": "Data for descriptions"
879
879
  },
@@ -916,6 +916,25 @@
916
916
  "description": "Label",
917
917
  "type": "string"
918
918
  },
919
+ "a-divider/direction": {
920
+ "description": "The direction of the dividing line. Can be horizontal or vertical"
921
+ },
922
+ "a-divider/orientation": {
923
+ "description": "The position of the dividing line text",
924
+ "type": "string"
925
+ },
926
+ "a-divider/type": {
927
+ "description": "Dividing line style type",
928
+ "type": "string"
929
+ },
930
+ "a-divider/size": {
931
+ "description": "The wide/height of the dividing line",
932
+ "type": "number"
933
+ },
934
+ "a-divider/margin": {
935
+ "description": "Margin up and down the split line (left and right margin in vertical direction)",
936
+ "type": "number | string"
937
+ },
919
938
  "a-drawer/ok": {
920
939
  "description": "Triggered when the OK button is clicked"
921
940
  },
@@ -1029,25 +1048,6 @@
1029
1048
  "description": "Whether to hide the cancel button",
1030
1049
  "type": "boolean"
1031
1050
  },
1032
- "a-divider/direction": {
1033
- "description": "The direction of the dividing line. Can be horizontal or vertical"
1034
- },
1035
- "a-divider/orientation": {
1036
- "description": "The position of the dividing line text",
1037
- "type": "string"
1038
- },
1039
- "a-divider/type": {
1040
- "description": "Dividing line style type",
1041
- "type": "string"
1042
- },
1043
- "a-divider/size": {
1044
- "description": "The wide/height of the dividing line",
1045
- "type": "number"
1046
- },
1047
- "a-divider/margin": {
1048
- "description": "Margin up and down the split line (left and right margin in vertical direction)",
1049
- "type": "number | string"
1050
- },
1051
1051
  "a-dropdown/popup-visible-change": {
1052
1052
  "description": "Triggered when the display status of the drop-down box changes"
1053
1053
  },
@@ -1181,87 +1181,8 @@
1181
1181
  "description": "Whether to use in ConfigProvider",
1182
1182
  "type": "boolean"
1183
1183
  },
1184
- "a-row/gutter": {
1185
- "description": "Grid interval in `px`. Pass in the responsive object like {xs: 4, sm: 6, md: 12}. Pass in the array [horizontal spacing, vertical spacing] to set two directions."
1186
- },
1187
- "a-row/justify": {
1188
- "description": "Horizontal alignment (`justify-content`)",
1189
- "type": "string"
1190
- },
1191
- "a-row/align": {
1192
- "description": "Vertical alignment (`align-items`)",
1193
- "type": "string"
1194
- },
1195
- "a-row/div": {
1196
- "description": "Enabling this option `Row` and `Col` will be treated as divs without any Grid-related classes and styles",
1197
- "type": "boolean"
1198
- },
1199
- "a-row/wrap": {
1200
- "description": "Whether `Col` can wrap onto multiple lines",
1201
- "type": "boolean"
1202
- },
1203
- "a-col/span": {
1204
- "description": "Number of grid space",
1205
- "type": "number"
1206
- },
1207
- "a-col/offset": {
1208
- "description": "The number of grids on the left side of the grid. There can be no grids in the grid.",
1209
- "type": "number"
1210
- },
1211
- "a-col/order": {
1212
- "description": "Sort elements",
1213
- "type": "number"
1214
- },
1215
- "a-col/xs": {
1216
- "description": "<576px responsive grid"
1217
- },
1218
- "a-col/sm": {
1219
- "description": ">= 576px responsive grid"
1220
- },
1221
- "a-col/md": {
1222
- "description": ">= 768px responsive grid"
1223
- },
1224
- "a-col/lg": {
1225
- "description": ">= 992px responsive grid"
1226
- },
1227
- "a-col/xl": {
1228
- "description": ">= 1200px responsive grid"
1229
- },
1230
- "a-col/xxl": {
1231
- "description": ">= 1600px responsive grid"
1232
- },
1233
- "a-col/flex": {
1234
- "description": "Set flex layout properties"
1235
- },
1236
- "a-grid/cols": {
1237
- "description": "Number of columns displayed in each row"
1238
- },
1239
- "a-grid/row-gap": {
1240
- "description": "The space in row-to-row"
1241
- },
1242
- "a-grid/col-gap": {
1243
- "description": "The space in column-to-column"
1244
- },
1245
- "a-grid/collapsed": {
1246
- "description": "Whether to collapsed",
1247
- "type": "boolean"
1248
- },
1249
- "a-grid/collapsed-rows": {
1250
- "description": "Number of rows displayed when collapsed",
1251
- "type": "number"
1252
- },
1253
- "a-grid-item/span": {
1254
- "description": "Number of grids spanned"
1255
- },
1256
- "a-grid-item/offset": {
1257
- "description": "Number of grids on the left"
1258
- },
1259
- "a-grid-item/suffix": {
1260
- "description": "Is it a suffix element",
1261
- "type": "boolean"
1262
- },
1263
- "a-form/submit": {
1264
- "description": "Triggered when the form is submitted"
1184
+ "a-form/submit": {
1185
+ "description": "Triggered when the form is submitted"
1265
1186
  },
1266
1187
  "a-form/submit-success": {
1267
1188
  "description": "Triggered when verification is successful"
@@ -1417,151 +1338,257 @@
1417
1338
  "description": "Attributes of the form item element",
1418
1339
  "type": "object"
1419
1340
  },
1420
- "a-input-number/change": {
1421
- "description": "Triggered when the value changes"
1341
+ "a-row/gutter": {
1342
+ "description": "Grid interval in `px`. Pass in the responsive object like {xs: 4, sm: 6, md: 12}. Pass in the array [horizontal spacing, vertical spacing] to set two directions."
1422
1343
  },
1423
- "a-input-number/focus": {
1424
- "description": "Triggered when the input gets focus"
1344
+ "a-row/justify": {
1345
+ "description": "Horizontal alignment (`justify-content`)",
1346
+ "type": "string"
1425
1347
  },
1426
- "a-input-number/blur": {
1427
- "description": "Triggered when the input box loses focus"
1348
+ "a-row/align": {
1349
+ "description": "Vertical alignment (`align-items`)",
1350
+ "type": "string"
1428
1351
  },
1429
- "a-input-number/clear": {
1430
- "description": "Triggered when the user clicks the clear button"
1352
+ "a-row/div": {
1353
+ "description": "Enabling this option `Row` and `Col` will be treated as divs without any Grid-related classes and styles",
1354
+ "type": "boolean"
1431
1355
  },
1432
- "a-input-number/input": {
1433
- "description": "Triggered on input"
1356
+ "a-row/wrap": {
1357
+ "description": "Whether `Col` can wrap onto multiple lines",
1358
+ "type": "boolean"
1434
1359
  },
1435
- "a-input-number/keydown": {
1436
- "description": "Triggered on keydown"
1360
+ "a-col/span": {
1361
+ "description": "Number of grid space",
1362
+ "type": "number"
1437
1363
  },
1438
- "a-input-number/model-value": {
1439
- "description": "Value",
1364
+ "a-col/offset": {
1365
+ "description": "The number of grids on the left side of the grid. There can be no grids in the grid.",
1440
1366
  "type": "number"
1441
1367
  },
1442
- "a-input-number/default-value": {
1443
- "description": "Default value (uncontrolled mode)",
1368
+ "a-col/order": {
1369
+ "description": "Sort elements",
1444
1370
  "type": "number"
1445
1371
  },
1446
- "a-input-number/mode": {
1447
- "description": "Mode (`embed`: button embedded mode, `button`: left and right button mode)",
1448
- "type": "string"
1372
+ "a-col/xs": {
1373
+ "description": "<576px responsive grid"
1449
1374
  },
1450
- "a-input-number/precision": {
1451
- "description": "Precision",
1452
- "type": "number"
1375
+ "a-col/sm": {
1376
+ "description": ">= 576px responsive grid"
1453
1377
  },
1454
- "a-input-number/step": {
1455
- "description": "Number change step",
1456
- "type": "number"
1378
+ "a-col/md": {
1379
+ "description": ">= 768px responsive grid"
1457
1380
  },
1458
- "a-input-number/disabled": {
1459
- "description": "Whether to disable",
1460
- "type": "boolean"
1381
+ "a-col/lg": {
1382
+ "description": ">= 992px responsive grid"
1461
1383
  },
1462
- "a-input-number/error": {
1463
- "description": "Whether it is an error state",
1464
- "type": "boolean"
1384
+ "a-col/xl": {
1385
+ "description": ">= 1200px responsive grid"
1465
1386
  },
1466
- "a-input-number/max": {
1467
- "description": "Max",
1468
- "type": "number"
1387
+ "a-col/xxl": {
1388
+ "description": ">= 1600px responsive grid"
1469
1389
  },
1470
- "a-input-number/min": {
1471
- "description": "Min",
1472
- "type": "number"
1390
+ "a-col/flex": {
1391
+ "description": "Set flex layout properties"
1473
1392
  },
1474
- "a-input-number/formatter": {
1475
- "description": "Define the display value of the input"
1393
+ "a-grid/cols": {
1394
+ "description": "Number of columns displayed in each row"
1476
1395
  },
1477
- "a-input-number/parser": {
1478
- "description": "Convert from `formatter` to number, and use with `formatter`"
1396
+ "a-grid/row-gap": {
1397
+ "description": "The space in row-to-row"
1479
1398
  },
1480
- "a-input-number/placeholder": {
1481
- "description": "Input prompt text",
1482
- "type": "string"
1399
+ "a-grid/col-gap": {
1400
+ "description": "The space in column-to-column"
1483
1401
  },
1484
- "a-input-number/hide-button": {
1485
- "description": "Whether to hide the button",
1402
+ "a-grid/collapsed": {
1403
+ "description": "Whether to collapsed",
1486
1404
  "type": "boolean"
1487
1405
  },
1488
- "a-input-number/size": {
1489
- "description": "Input size"
1406
+ "a-grid/collapsed-rows": {
1407
+ "description": "Number of rows displayed when collapsed",
1408
+ "type": "number"
1490
1409
  },
1491
- "a-input-number/allow-clear": {
1492
- "description": "Whether to allow the input to be cleared",
1493
- "type": "boolean"
1410
+ "a-grid-item/span": {
1411
+ "description": "Number of grids spanned"
1494
1412
  },
1495
- "a-input-number/model-event": {
1496
- "description": "Trigger event for `v-model`",
1497
- "type": "string"
1413
+ "a-grid-item/offset": {
1414
+ "description": "Number of grids on the left"
1498
1415
  },
1499
- "a-input-number/read-only": {
1500
- "description": "Readonly",
1416
+ "a-grid-item/suffix": {
1417
+ "description": "Is it a suffix element",
1501
1418
  "type": "boolean"
1502
1419
  },
1503
- "a-input-number/input-attrs": {
1504
- "description": "Attributes of inner input elements",
1505
- "type": "object"
1506
- },
1507
- "a-image/preview-visible-change": {
1508
- "description": "Preview opening and closing events"
1420
+ "a-input/input": {
1421
+ "description": "Triggered when the user enters"
1509
1422
  },
1510
- "a-image/src": {
1511
- "description": "Image src",
1512
- "type": "string"
1423
+ "a-input/change": {
1424
+ "description": "Only triggered when the input box is out of focus or when you press Enter"
1513
1425
  },
1514
- "a-image/width": {
1515
- "description": "Image width",
1516
- "type": "string | number"
1426
+ "a-input/press-enter": {
1427
+ "description": "Triggered when the user presses enter"
1517
1428
  },
1518
- "a-image/height": {
1519
- "description": "Image height",
1520
- "type": "string | number"
1429
+ "a-input/clear": {
1430
+ "description": "Triggered when the user clicks the clear button"
1521
1431
  },
1522
- "a-image/title": {
1523
- "description": "Title",
1524
- "type": "string"
1432
+ "a-input/focus": {
1433
+ "description": "Triggered when the input box gets focus"
1525
1434
  },
1526
- "a-image/description": {
1527
- "description": "Description, will be displayed at the bottom. if alt has no value, it will be set to alt",
1528
- "type": "string"
1435
+ "a-input/blur": {
1436
+ "description": "Triggered when the input box loses focus"
1529
1437
  },
1530
- "a-image/fit": {
1531
- "description": "indicate how the image should be resized to fit its container",
1438
+ "a-input/model-value": {
1439
+ "description": "Value",
1532
1440
  "type": "string"
1533
1441
  },
1534
- "a-image/alt": {
1535
- "description": "Text description of the image",
1442
+ "a-input/default-value": {
1443
+ "description": "Default value (uncontrolled state)",
1536
1444
  "type": "string"
1537
1445
  },
1538
- "a-image/hide-footer": {
1539
- "description": "Whether to hide footer (Version 2.36.0 supports the 'never' parameter, which supports displaying bottom content when loading errors)"
1540
- },
1541
- "a-image/footer-position": {
1542
- "description": "The position shown at the bottom",
1543
- "type": "string"
1446
+ "a-input/size": {
1447
+ "description": "Input size"
1544
1448
  },
1545
- "a-image/show-loader": {
1546
- "description": "Whether to show the loading effect",
1449
+ "a-input/allow-clear": {
1450
+ "description": "Whether to allow the input to be cleared",
1547
1451
  "type": "boolean"
1548
1452
  },
1549
- "a-image/preview": {
1550
- "description": "Whether to enable preview",
1453
+ "a-input/disabled": {
1454
+ "description": "Whether to disable",
1551
1455
  "type": "boolean"
1552
1456
  },
1553
- "a-image/preview-visible": {
1554
- "description": "Control the open state of the preview, can be used in conjunction with previewVisibleChange",
1457
+ "a-input/readonly": {
1458
+ "description": "Whether it is read-only",
1555
1459
  "type": "boolean"
1556
1460
  },
1557
- "a-image/default-preview-visible": {
1558
- "description": "The default open state of the preview",
1461
+ "a-input/error": {
1462
+ "description": "Whether it is an error state",
1559
1463
  "type": "boolean"
1560
1464
  },
1561
- "a-image/preview-props": {
1562
- "description": "Preview configuration items (all options are optional) [ImagePreviewProps](#image-preview%20Props)"
1563
- },
1564
- "a-image/footer-class": {
1465
+ "a-input/placeholder": {
1466
+ "description": "Prompt text",
1467
+ "type": "string"
1468
+ },
1469
+ "a-input/max-length": {
1470
+ "description": "Enter the maximum length of the value, the errorOnly attribute was added in version 2.12.0"
1471
+ },
1472
+ "a-input/show-word-limit": {
1473
+ "description": "Whether to display word count",
1474
+ "type": "boolean"
1475
+ },
1476
+ "a-input/word-length": {
1477
+ "description": "Calculation method of word length"
1478
+ },
1479
+ "a-input/word-slice": {
1480
+ "description": "Character interception method, used together with wordLength"
1481
+ },
1482
+ "a-input/input-attrs": {
1483
+ "description": "Attributes of inner input elements",
1484
+ "type": "object"
1485
+ },
1486
+ "a-input/prepend": {
1487
+ "description": "Prepend",
1488
+ "type": "string"
1489
+ },
1490
+ "a-input/append": {
1491
+ "description": "Append",
1492
+ "type": "string"
1493
+ },
1494
+ "a-input-password/visibility-change": {
1495
+ "description": "Callback when visibility changes"
1496
+ },
1497
+ "a-input-password/visibility": {
1498
+ "description": "Whether is visible",
1499
+ "type": "boolean"
1500
+ },
1501
+ "a-input-password/default-visibility": {
1502
+ "description": "Default visibility",
1503
+ "type": "boolean"
1504
+ },
1505
+ "a-input-password/invisible-button": {
1506
+ "description": "Whether to show visible buttons",
1507
+ "type": "boolean"
1508
+ },
1509
+ "a-input-search/search": {
1510
+ "description": "Triggered when the search button is clicked"
1511
+ },
1512
+ "a-input-search/search-button": {
1513
+ "description": "Whether it is the rear button mode",
1514
+ "type": "boolean"
1515
+ },
1516
+ "a-input-search/loading": {
1517
+ "description": "Whether it is loading state",
1518
+ "type": "boolean"
1519
+ },
1520
+ "a-input-search/disabled": {
1521
+ "description": "Whether to disable",
1522
+ "type": "boolean"
1523
+ },
1524
+ "a-input-search/size": {
1525
+ "description": "Input size"
1526
+ },
1527
+ "a-input-search/button-text": {
1528
+ "description": "The text of the search button will replace the original icon after use",
1529
+ "type": "string"
1530
+ },
1531
+ "a-input-search/button-props": {
1532
+ "description": "Button props"
1533
+ },
1534
+ "a-image/preview-visible-change": {
1535
+ "description": "Preview opening and closing events"
1536
+ },
1537
+ "a-image/src": {
1538
+ "description": "Image src",
1539
+ "type": "string"
1540
+ },
1541
+ "a-image/width": {
1542
+ "description": "Image width",
1543
+ "type": "string | number"
1544
+ },
1545
+ "a-image/height": {
1546
+ "description": "Image height",
1547
+ "type": "string | number"
1548
+ },
1549
+ "a-image/title": {
1550
+ "description": "Title",
1551
+ "type": "string"
1552
+ },
1553
+ "a-image/description": {
1554
+ "description": "Description, will be displayed at the bottom. if alt has no value, it will be set to alt",
1555
+ "type": "string"
1556
+ },
1557
+ "a-image/fit": {
1558
+ "description": "indicate how the image should be resized to fit its container",
1559
+ "type": "string"
1560
+ },
1561
+ "a-image/alt": {
1562
+ "description": "Text description of the image",
1563
+ "type": "string"
1564
+ },
1565
+ "a-image/hide-footer": {
1566
+ "description": "Whether to hide footer (Version 2.36.0 supports the 'never' parameter, which supports displaying bottom content when loading errors)"
1567
+ },
1568
+ "a-image/footer-position": {
1569
+ "description": "The position shown at the bottom",
1570
+ "type": "string"
1571
+ },
1572
+ "a-image/show-loader": {
1573
+ "description": "Whether to show the loading effect",
1574
+ "type": "boolean"
1575
+ },
1576
+ "a-image/preview": {
1577
+ "description": "Whether to enable preview",
1578
+ "type": "boolean"
1579
+ },
1580
+ "a-image/preview-visible": {
1581
+ "description": "Control the open state of the preview, can be used in conjunction with previewVisibleChange",
1582
+ "type": "boolean"
1583
+ },
1584
+ "a-image/default-preview-visible": {
1585
+ "description": "The default open state of the preview",
1586
+ "type": "boolean"
1587
+ },
1588
+ "a-image/preview-props": {
1589
+ "description": "Preview configuration items (all options are optional) [ImagePreviewProps](#image-preview%20Props)"
1590
+ },
1591
+ "a-image/footer-class": {
1565
1592
  "description": "The class name of the bottom display area",
1566
1593
  "type": "string|array|object"
1567
1594
  },
@@ -1665,77 +1692,93 @@
1665
1692
  "description": "Whether to disable the action",
1666
1693
  "type": "boolean"
1667
1694
  },
1668
- "a-layout/has-sider": {
1669
- "description": "Indicates that there is a Sider in the sub-element, which generally does not need to be specified. Used to avoid style flicker when rendering on the server side.",
1670
- "type": "boolean"
1695
+ "a-input-number/change": {
1696
+ "description": "Triggered when the value changes"
1671
1697
  },
1672
- "a-layout-sider/collapse": {
1673
- "description": "Events on expand/collapse. There are two ways to trigger click trigger and responsive feedback"
1698
+ "a-input-number/focus": {
1699
+ "description": "Triggered when the input gets focus"
1674
1700
  },
1675
- "a-layout-sider/breakpoint": {
1676
- "description": "Events when a responsive layout breakpoint is triggered"
1701
+ "a-input-number/blur": {
1702
+ "description": "Triggered when the input box loses focus"
1677
1703
  },
1678
- "a-layout-sider/theme": {
1679
- "description": "Theme",
1680
- "type": "string"
1704
+ "a-input-number/clear": {
1705
+ "description": "Triggered when the user clicks the clear button"
1681
1706
  },
1682
- "a-layout-sider/collapsed": {
1683
- "description": "Current collapsed state",
1684
- "type": "boolean"
1707
+ "a-input-number/input": {
1708
+ "description": "Triggered on input"
1685
1709
  },
1686
- "a-layout-sider/default-collapsed": {
1687
- "description": "The default collapsed state",
1688
- "type": "boolean"
1710
+ "a-input-number/keydown": {
1711
+ "description": "Triggered on keydown"
1689
1712
  },
1690
- "a-layout-sider/collapsible": {
1691
- "description": "Whether is collapsible",
1692
- "type": "boolean"
1713
+ "a-input-number/model-value": {
1714
+ "description": "Value",
1715
+ "type": "number"
1693
1716
  },
1694
- "a-layout-sider/width": {
1695
- "description": "Width",
1717
+ "a-input-number/default-value": {
1718
+ "description": "Default value (uncontrolled mode)",
1696
1719
  "type": "number"
1697
1720
  },
1698
- "a-layout-sider/collapsed-width": {
1699
- "description": "Collapsed width",
1721
+ "a-input-number/mode": {
1722
+ "description": "Mode (`embed`: button embedded mode, `button`: left and right button mode)",
1723
+ "type": "string"
1724
+ },
1725
+ "a-input-number/precision": {
1726
+ "description": "Precision",
1700
1727
  "type": "number"
1701
1728
  },
1702
- "a-layout-sider/reverse-arrow": {
1703
- "description": "Flip and fold the direction of the hint arrow, which can be used when Sider is on the right",
1704
- "type": "boolean"
1729
+ "a-input-number/step": {
1730
+ "description": "Number change step",
1731
+ "type": "number"
1705
1732
  },
1706
- "a-layout-sider/resize-directions": {
1707
- "description": "Can replace the native `aside` tag with ResizeBox. This is the `directions` parameter of ResizeBox. For details, please see [ResizeBox](/vue/component/resize-box)"
1733
+ "a-input-number/disabled": {
1734
+ "description": "Whether to disable",
1735
+ "type": "boolean"
1708
1736
  },
1709
- "a-layout-sider/hide-trigger": {
1710
- "description": "Whether to hide the bottom fold trigger",
1737
+ "a-input-number/error": {
1738
+ "description": "Whether it is an error state",
1711
1739
  "type": "boolean"
1712
1740
  },
1713
- "a-link/click": {
1714
- "description": "Emitted when the link is clicked"
1741
+ "a-input-number/max": {
1742
+ "description": "Max",
1743
+ "type": "number"
1715
1744
  },
1716
- "a-link/href": {
1717
- "description": "Link address",
1718
- "type": "string"
1745
+ "a-input-number/min": {
1746
+ "description": "Min",
1747
+ "type": "number"
1719
1748
  },
1720
- "a-link/status": {
1721
- "description": "Link status"
1749
+ "a-input-number/formatter": {
1750
+ "description": "Define the display value of the input"
1722
1751
  },
1723
- "a-link/hoverable": {
1724
- "description": "Whether to hide background when hover",
1725
- "type": "boolean"
1752
+ "a-input-number/parser": {
1753
+ "description": "Convert from `formatter` to number, and use with `formatter`"
1726
1754
  },
1727
- "a-link/icon": {
1728
- "description": "icon",
1755
+ "a-input-number/placeholder": {
1756
+ "description": "Input prompt text",
1757
+ "type": "string"
1758
+ },
1759
+ "a-input-number/hide-button": {
1760
+ "description": "Whether to hide the button",
1729
1761
  "type": "boolean"
1730
1762
  },
1731
- "a-link/loading": {
1732
- "description": "Whether the link is in the loading state",
1763
+ "a-input-number/size": {
1764
+ "description": "Input size"
1765
+ },
1766
+ "a-input-number/allow-clear": {
1767
+ "description": "Whether to allow the input to be cleared",
1733
1768
  "type": "boolean"
1734
1769
  },
1735
- "a-link/disabled": {
1736
- "description": "Whether the link is disabled",
1770
+ "a-input-number/model-event": {
1771
+ "description": "Trigger event for `v-model`",
1772
+ "type": "string"
1773
+ },
1774
+ "a-input-number/read-only": {
1775
+ "description": "Readonly",
1737
1776
  "type": "boolean"
1738
1777
  },
1778
+ "a-input-number/input-attrs": {
1779
+ "description": "Attributes of inner input elements",
1780
+ "type": "object"
1781
+ },
1739
1782
  "a-input-tag/change": {
1740
1783
  "description": "Triggered when the value changes"
1741
1784
  },
@@ -1815,20 +1858,91 @@
1815
1858
  "description": "Tag content does not wrap",
1816
1859
  "type": "boolean"
1817
1860
  },
1818
- "a-list/scroll": {
1819
- "description": "Triggered when the list scrolls"
1820
- },
1821
- "a-list/reach-bottom": {
1822
- "description": "Triggered when the list reaches the bottom"
1861
+ "a-layout/has-sider": {
1862
+ "description": "Indicates that there is a Sider in the sub-element, which generally does not need to be specified. Used to avoid style flicker when rendering on the server side.",
1863
+ "type": "boolean"
1823
1864
  },
1824
- "a-list/page-change": {
1825
- "description": "Triggered when the table pagination changes"
1865
+ "a-layout-sider/collapse": {
1866
+ "description": "Events on expand/collapse. There are two ways to trigger click trigger and responsive feedback"
1826
1867
  },
1827
- "a-list/page-size-change": {
1828
- "description": "Triggered when the number of data per page of the table changes"
1868
+ "a-layout-sider/breakpoint": {
1869
+ "description": "Events when a responsive layout breakpoint is triggered"
1829
1870
  },
1830
- "a-list/data": {
1831
- "description": "List data, need to be used with `item` slot at the same time"
1871
+ "a-layout-sider/theme": {
1872
+ "description": "Theme",
1873
+ "type": "string"
1874
+ },
1875
+ "a-layout-sider/collapsed": {
1876
+ "description": "Current collapsed state",
1877
+ "type": "boolean"
1878
+ },
1879
+ "a-layout-sider/default-collapsed": {
1880
+ "description": "The default collapsed state",
1881
+ "type": "boolean"
1882
+ },
1883
+ "a-layout-sider/collapsible": {
1884
+ "description": "Whether is collapsible",
1885
+ "type": "boolean"
1886
+ },
1887
+ "a-layout-sider/width": {
1888
+ "description": "Width",
1889
+ "type": "number"
1890
+ },
1891
+ "a-layout-sider/collapsed-width": {
1892
+ "description": "Collapsed width",
1893
+ "type": "number"
1894
+ },
1895
+ "a-layout-sider/reverse-arrow": {
1896
+ "description": "Flip and fold the direction of the hint arrow, which can be used when Sider is on the right",
1897
+ "type": "boolean"
1898
+ },
1899
+ "a-layout-sider/resize-directions": {
1900
+ "description": "Can replace the native `aside` tag with ResizeBox. This is the `directions` parameter of ResizeBox. For details, please see [ResizeBox](/vue/component/resize-box)"
1901
+ },
1902
+ "a-layout-sider/hide-trigger": {
1903
+ "description": "Whether to hide the bottom fold trigger",
1904
+ "type": "boolean"
1905
+ },
1906
+ "a-link/click": {
1907
+ "description": "Emitted when the link is clicked"
1908
+ },
1909
+ "a-link/href": {
1910
+ "description": "Link address",
1911
+ "type": "string"
1912
+ },
1913
+ "a-link/status": {
1914
+ "description": "Link status"
1915
+ },
1916
+ "a-link/hoverable": {
1917
+ "description": "Whether to hide background when hover",
1918
+ "type": "boolean"
1919
+ },
1920
+ "a-link/icon": {
1921
+ "description": "icon",
1922
+ "type": "boolean"
1923
+ },
1924
+ "a-link/loading": {
1925
+ "description": "Whether the link is in the loading state",
1926
+ "type": "boolean"
1927
+ },
1928
+ "a-link/disabled": {
1929
+ "description": "Whether the link is disabled",
1930
+ "type": "boolean"
1931
+ },
1932
+ "a-list/scroll": {
1933
+ "description": "Triggered when the list scrolls"
1934
+ },
1935
+ "a-list/reach-bottom": {
1936
+ "description": "Triggered when the list reaches the bottom"
1937
+ },
1938
+ "a-list/page-change": {
1939
+ "description": "Triggered when the table pagination changes"
1940
+ },
1941
+ "a-list/page-size-change": {
1942
+ "description": "Triggered when the number of data per page of the table changes"
1943
+ },
1944
+ "a-list/data": {
1945
+ "description": "List data, need to be used with `item` slot at the same time"
1832
1946
  },
1833
1947
  "a-list/size": {
1834
1948
  "description": "List size",
@@ -1882,168 +1996,6 @@
1882
1996
  "description": "Description",
1883
1997
  "type": "string"
1884
1998
  },
1885
- "a-mention/change": {
1886
- "description": "Triggered when the value changes"
1887
- },
1888
- "a-mention/search": {
1889
- "description": "Trigger on dynamic search prefix, version 2.47.0 adds prefix param"
1890
- },
1891
- "a-mention/select": {
1892
- "description": "Triggered when the drop-down option is selected"
1893
- },
1894
- "a-mention/clear": {
1895
- "description": "Triggered when the user clicks the clear button"
1896
- },
1897
- "a-mention/focus": {
1898
- "description": "Emitted when the text box gets focus"
1899
- },
1900
- "a-mention/blur": {
1901
- "description": "Emitted when the text box loses focus"
1902
- },
1903
- "a-mention/model-value": {
1904
- "description": "Value",
1905
- "type": "string"
1906
- },
1907
- "a-mention/default-value": {
1908
- "description": "Default value (uncontrolled state)",
1909
- "type": "string"
1910
- },
1911
- "a-mention/data": {
1912
- "description": "Data for automatic completion"
1913
- },
1914
- "a-mention/prefix": {
1915
- "description": "Keywords that trigger auto-completion"
1916
- },
1917
- "a-mention/split": {
1918
- "description": "Before and after the selected item separator",
1919
- "type": "string"
1920
- },
1921
- "a-mention/type": {
1922
- "description": "default input or textarea",
1923
- "type": "string"
1924
- },
1925
- "a-mention/disabled": {
1926
- "description": "Whether to disable",
1927
- "type": "boolean"
1928
- },
1929
- "a-mention/allow-clear": {
1930
- "description": "Whether to allow the input to be cleared",
1931
- "type": "boolean"
1932
- },
1933
- "a-input/input": {
1934
- "description": "Triggered when the user enters"
1935
- },
1936
- "a-input/change": {
1937
- "description": "Only triggered when the input box is out of focus or when you press Enter"
1938
- },
1939
- "a-input/press-enter": {
1940
- "description": "Triggered when the user presses enter"
1941
- },
1942
- "a-input/clear": {
1943
- "description": "Triggered when the user clicks the clear button"
1944
- },
1945
- "a-input/focus": {
1946
- "description": "Triggered when the input box gets focus"
1947
- },
1948
- "a-input/blur": {
1949
- "description": "Triggered when the input box loses focus"
1950
- },
1951
- "a-input/model-value": {
1952
- "description": "Value",
1953
- "type": "string"
1954
- },
1955
- "a-input/default-value": {
1956
- "description": "Default value (uncontrolled state)",
1957
- "type": "string"
1958
- },
1959
- "a-input/size": {
1960
- "description": "Input size"
1961
- },
1962
- "a-input/allow-clear": {
1963
- "description": "Whether to allow the input to be cleared",
1964
- "type": "boolean"
1965
- },
1966
- "a-input/disabled": {
1967
- "description": "Whether to disable",
1968
- "type": "boolean"
1969
- },
1970
- "a-input/readonly": {
1971
- "description": "Whether it is read-only",
1972
- "type": "boolean"
1973
- },
1974
- "a-input/error": {
1975
- "description": "Whether it is an error state",
1976
- "type": "boolean"
1977
- },
1978
- "a-input/placeholder": {
1979
- "description": "Prompt text",
1980
- "type": "string"
1981
- },
1982
- "a-input/max-length": {
1983
- "description": "Enter the maximum length of the value, the errorOnly attribute was added in version 2.12.0"
1984
- },
1985
- "a-input/show-word-limit": {
1986
- "description": "Whether to display word count",
1987
- "type": "boolean"
1988
- },
1989
- "a-input/word-length": {
1990
- "description": "Calculation method of word length"
1991
- },
1992
- "a-input/word-slice": {
1993
- "description": "Character interception method, used together with wordLength"
1994
- },
1995
- "a-input/input-attrs": {
1996
- "description": "Attributes of inner input elements",
1997
- "type": "object"
1998
- },
1999
- "a-input/prepend": {
2000
- "description": "Prepend",
2001
- "type": "string"
2002
- },
2003
- "a-input/append": {
2004
- "description": "Append",
2005
- "type": "string"
2006
- },
2007
- "a-input-password/visibility-change": {
2008
- "description": "Callback when visibility changes"
2009
- },
2010
- "a-input-password/visibility": {
2011
- "description": "Whether is visible",
2012
- "type": "boolean"
2013
- },
2014
- "a-input-password/default-visibility": {
2015
- "description": "Default visibility",
2016
- "type": "boolean"
2017
- },
2018
- "a-input-password/invisible-button": {
2019
- "description": "Whether to show visible buttons",
2020
- "type": "boolean"
2021
- },
2022
- "a-input-search/search": {
2023
- "description": "Triggered when the search button is clicked"
2024
- },
2025
- "a-input-search/search-button": {
2026
- "description": "Whether it is the rear button mode",
2027
- "type": "boolean"
2028
- },
2029
- "a-input-search/loading": {
2030
- "description": "Whether it is loading state",
2031
- "type": "boolean"
2032
- },
2033
- "a-input-search/disabled": {
2034
- "description": "Whether to disable",
2035
- "type": "boolean"
2036
- },
2037
- "a-input-search/size": {
2038
- "description": "Input size"
2039
- },
2040
- "a-input-search/button-text": {
2041
- "description": "The text of the search button will replace the original icon after use",
2042
- "type": "string"
2043
- },
2044
- "a-input-search/button-props": {
2045
- "description": "Button props"
2046
- },
2047
1999
  "a-menu/collapse": {
2048
2000
  "description": "Triggered when the collapsed state changes"
2049
2001
  },
@@ -2150,23 +2102,56 @@
2150
2102
  "description": "Whether to disable",
2151
2103
  "type": "boolean"
2152
2104
  },
2153
- "a-overflow-list/change": {
2154
- "description": "Triggered when the overflow quantity changes"
2155
- },
2156
- "a-overflow-list/min": {
2157
- "description": "Minimum number of elements to display",
2158
- "type": "number"
2105
+ "a-mention/change": {
2106
+ "description": "Triggered when the value changes"
2159
2107
  },
2160
- "a-overflow-list/margin": {
2161
- "description": "Item Margin",
2162
- "type": "number"
2108
+ "a-mention/search": {
2109
+ "description": "Trigger on dynamic search prefix, version 2.47.0 adds prefix param"
2163
2110
  },
2164
- "a-overflow-list/from": {
2165
- "description": "Overflow From",
2166
- "type": "string"
2111
+ "a-mention/select": {
2112
+ "description": "Triggered when the drop-down option is selected"
2167
2113
  },
2168
- "a-modal/ok": {
2169
- "description": "Triggered when the OK button is clicked"
2114
+ "a-mention/clear": {
2115
+ "description": "Triggered when the user clicks the clear button"
2116
+ },
2117
+ "a-mention/focus": {
2118
+ "description": "Emitted when the text box gets focus"
2119
+ },
2120
+ "a-mention/blur": {
2121
+ "description": "Emitted when the text box loses focus"
2122
+ },
2123
+ "a-mention/model-value": {
2124
+ "description": "Value",
2125
+ "type": "string"
2126
+ },
2127
+ "a-mention/default-value": {
2128
+ "description": "Default value (uncontrolled state)",
2129
+ "type": "string"
2130
+ },
2131
+ "a-mention/data": {
2132
+ "description": "Data for automatic completion"
2133
+ },
2134
+ "a-mention/prefix": {
2135
+ "description": "Keywords that trigger auto-completion"
2136
+ },
2137
+ "a-mention/split": {
2138
+ "description": "Before and after the selected item separator",
2139
+ "type": "string"
2140
+ },
2141
+ "a-mention/type": {
2142
+ "description": "default input or textarea",
2143
+ "type": "string"
2144
+ },
2145
+ "a-mention/disabled": {
2146
+ "description": "Whether to disable",
2147
+ "type": "boolean"
2148
+ },
2149
+ "a-mention/allow-clear": {
2150
+ "description": "Whether to allow the input to be cleared",
2151
+ "type": "boolean"
2152
+ },
2153
+ "a-modal/ok": {
2154
+ "description": "Triggered when the OK button is clicked"
2170
2155
  },
2171
2156
  "a-modal/cancel": {
2172
2157
  "description": "Triggered when the cancel/close button is clicked"
@@ -2309,6 +2294,21 @@
2309
2294
  "description": "Whether to hide the title",
2310
2295
  "type": "boolean"
2311
2296
  },
2297
+ "a-overflow-list/change": {
2298
+ "description": "Triggered when the overflow quantity changes"
2299
+ },
2300
+ "a-overflow-list/min": {
2301
+ "description": "Minimum number of elements to display",
2302
+ "type": "number"
2303
+ },
2304
+ "a-overflow-list/margin": {
2305
+ "description": "Item Margin",
2306
+ "type": "number"
2307
+ },
2308
+ "a-overflow-list/from": {
2309
+ "description": "Overflow From",
2310
+ "type": "string"
2311
+ },
2312
2312
  "a-page-header/back": {
2313
2313
  "description": "Emitted when the back button is clicked"
2314
2314
  },
@@ -2666,6 +2666,20 @@
2666
2666
  "a-resize-box/directions": {
2667
2667
  "description": "Can be stretched side, there are up, down, left and right can be used"
2668
2668
  },
2669
+ "a-scrollbar/scroll": {
2670
+ "description": "Triggered when scroll"
2671
+ },
2672
+ "a-scrollbar/type": {
2673
+ "description": "Type",
2674
+ "type": "string"
2675
+ },
2676
+ "a-scrollbar/outer-class": {
2677
+ "description": "Outer class",
2678
+ "type": "string|object|array"
2679
+ },
2680
+ "a-scrollbar/outer-style": {
2681
+ "description": "Outer style"
2682
+ },
2669
2683
  "a-result/status": {
2670
2684
  "description": "The status displayed on the result page"
2671
2685
  },
@@ -2677,6 +2691,37 @@
2677
2691
  "description": "Subtitle",
2678
2692
  "type": "string"
2679
2693
  },
2694
+ "a-skeleton/loading": {
2695
+ "description": "Whether to display the skeleton screen (loading state)",
2696
+ "type": "boolean"
2697
+ },
2698
+ "a-skeleton/animation": {
2699
+ "description": "Whether to enable skeleton screen animation",
2700
+ "type": "boolean"
2701
+ },
2702
+ "a-skeleton-line/rows": {
2703
+ "description": "Number of rows displayed",
2704
+ "type": "number"
2705
+ },
2706
+ "a-skeleton-line/widths": {
2707
+ "description": "The width of the line skeleton"
2708
+ },
2709
+ "a-skeleton-line/line-height": {
2710
+ "description": "Line height of the line skeleton",
2711
+ "type": "number"
2712
+ },
2713
+ "a-skeleton-line/line-spacing": {
2714
+ "description": "Line spacing of line skeleton",
2715
+ "type": "number"
2716
+ },
2717
+ "a-skeleton-shape/shape": {
2718
+ "description": "The shape of the shape skeleton",
2719
+ "type": "string"
2720
+ },
2721
+ "a-skeleton-shape/size": {
2722
+ "description": "The size of the shape skeleton",
2723
+ "type": "string"
2724
+ },
2680
2725
  "a-select/change": {
2681
2726
  "description": "Triggered when the value changes"
2682
2727
  },
@@ -2858,37 +2903,6 @@
2858
2903
  "description": "Title of option group",
2859
2904
  "type": "string"
2860
2905
  },
2861
- "a-skeleton/loading": {
2862
- "description": "Whether to display the skeleton screen (loading state)",
2863
- "type": "boolean"
2864
- },
2865
- "a-skeleton/animation": {
2866
- "description": "Whether to enable skeleton screen animation",
2867
- "type": "boolean"
2868
- },
2869
- "a-skeleton-line/rows": {
2870
- "description": "Number of rows displayed",
2871
- "type": "number"
2872
- },
2873
- "a-skeleton-line/widths": {
2874
- "description": "The width of the line skeleton"
2875
- },
2876
- "a-skeleton-line/line-height": {
2877
- "description": "Line height of the line skeleton",
2878
- "type": "number"
2879
- },
2880
- "a-skeleton-line/line-spacing": {
2881
- "description": "Line spacing of line skeleton",
2882
- "type": "number"
2883
- },
2884
- "a-skeleton-shape/shape": {
2885
- "description": "The shape of the shape skeleton",
2886
- "type": "string"
2887
- },
2888
- "a-skeleton-shape/size": {
2889
- "description": "The size of the shape skeleton",
2890
- "type": "string"
2891
- },
2892
2906
  "a-slider/change": {
2893
2907
  "description": "Trigger when the value changes"
2894
2908
  },
@@ -2955,20 +2969,6 @@
2955
2969
  "description": "fill the block",
2956
2970
  "type": "boolean"
2957
2971
  },
2958
- "a-scrollbar/scroll": {
2959
- "description": "Triggered when scroll"
2960
- },
2961
- "a-scrollbar/type": {
2962
- "description": "Type",
2963
- "type": "string"
2964
- },
2965
- "a-scrollbar/outer-class": {
2966
- "description": "Outer class",
2967
- "type": "string|object|array"
2968
- },
2969
- "a-scrollbar/outer-style": {
2970
- "description": "Outer style"
2971
- },
2972
2972
  "a-spin/size": {
2973
2973
  "description": "Size",
2974
2974
  "type": "number"
@@ -3152,276 +3152,77 @@
3152
3152
  "a-countdown/value-style": {
3153
3153
  "description": "Custom value style"
3154
3154
  },
3155
- "a-switch/change": {
3156
- "description": "Trigger when the value changes"
3155
+ "a-table/expand": {
3156
+ "description": "Triggered when a row is clicked to expand"
3157
3157
  },
3158
- "a-switch/focus": {
3159
- "description": "Triggered when the component gets focus"
3158
+ "a-table/expanded-change": {
3159
+ "description": "Triggered when the expanded data row changes"
3160
3160
  },
3161
- "a-switch/blur": {
3162
- "description": "Fired when the component loses focus"
3161
+ "a-table/select": {
3162
+ "description": "Triggered when the row selector is clicked"
3163
3163
  },
3164
- "a-switch/model-value": {
3165
- "description": "Value",
3166
- "type": "string|number|boolean"
3164
+ "a-table/select-all": {
3165
+ "description": "Triggered when the select all selector is clicked"
3167
3166
  },
3168
- "a-switch/default-checked": {
3169
- "description": "Default selected state (uncontrolled state)",
3170
- "type": "boolean"
3167
+ "a-table/selection-change": {
3168
+ "description": "Triggered when the selected data row changes"
3171
3169
  },
3172
- "a-switch/disabled": {
3173
- "description": "Whether to disable",
3174
- "type": "boolean"
3170
+ "a-table/sorter-change": {
3171
+ "description": "Triggered when the collation changes"
3175
3172
  },
3176
- "a-switch/loading": {
3177
- "description": "Whether it is loading state",
3178
- "type": "boolean"
3173
+ "a-table/filter-change": {
3174
+ "description": "Triggered when the filter options are changed"
3179
3175
  },
3180
- "a-switch/type": {
3181
- "description": "Type of switch",
3182
- "type": "string"
3176
+ "a-table/page-change": {
3177
+ "description": "Triggered when the table pagination changes"
3183
3178
  },
3184
- "a-switch/size": {
3185
- "description": "Size of switch",
3186
- "type": "string"
3179
+ "a-table/page-size-change": {
3180
+ "description": "Triggered when the number of data per page of the table changes"
3187
3181
  },
3188
- "a-switch/checked-value": {
3189
- "description": "Value when checked",
3190
- "type": "string|number|boolean"
3182
+ "a-table/change": {
3183
+ "description": "Triggered when table data changes"
3191
3184
  },
3192
- "a-switch/unchecked-value": {
3193
- "description": "Value when unchecked",
3194
- "type": "string|number|boolean"
3185
+ "a-table/cell-mouse-enter": {
3186
+ "description": "Triggered when hovering into a cell"
3195
3187
  },
3196
- "a-switch/checked-color": {
3197
- "description": "The color of the switch when checked",
3198
- "type": "string"
3188
+ "a-table/cell-mouse-leave": {
3189
+ "description": "Triggered when hovering out of a cell"
3199
3190
  },
3200
- "a-switch/unchecked-color": {
3201
- "description": "The color of the switch when unchecked",
3202
- "type": "string"
3191
+ "a-table/cell-click": {
3192
+ "description": "Triggered when a cell is clicked"
3203
3193
  },
3204
- "a-switch/before-change": {
3205
- "description": "before-change hook before the switch state changes. If false is returned or a Promise is returned and then is rejected, will stop switching"
3194
+ "a-table/row-click": {
3195
+ "description": "Triggered when row data is clicked"
3206
3196
  },
3207
- "a-switch/checked-text": {
3208
- "description": "Copywriting when opened (not effective when `type='line'` and `size='small'`)",
3209
- "type": "string"
3197
+ "a-table/header-click": {
3198
+ "description": "Triggered when the header data is clicked"
3210
3199
  },
3211
- "a-switch/unchecked-text": {
3212
- "description": "Copywriting when closed (not effective when `type='line'` and `size='small'`)",
3213
- "type": "string"
3200
+ "a-table/column-resize": {
3201
+ "description": "Triggered when column width is adjusted"
3214
3202
  },
3215
- "a-tag/close": {
3216
- "description": "Emitted when the close button is clicked"
3203
+ "a-table/row-dblclick": {
3204
+ "description": "Triggered when row data is double clicked"
3217
3205
  },
3218
- "a-tag/check": {
3219
- "description": "Emitted when the user check (emit only in the checkable mode)"
3206
+ "a-table/cell-dblclick": {
3207
+ "description": "Triggered when a cell is double clicked"
3220
3208
  },
3221
- "a-tag/color": {
3222
- "description": "Label color"
3209
+ "a-table/row-contextmenu": {
3210
+ "description": "Triggered when row data is right clicked"
3223
3211
  },
3224
- "a-tag/size": {
3225
- "description": "Label size",
3226
- "type": "string"
3212
+ "a-table/cell-contextmenu": {
3213
+ "description": "Triggered when a cell is right clicked"
3227
3214
  },
3228
- "a-tag/bordered": {
3229
- "description": "Whether the tag is bordered",
3230
- "type": "boolean"
3215
+ "a-table/columns": {
3216
+ "description": "Column info of the table"
3231
3217
  },
3232
- "a-tag/visible": {
3233
- "description": "Whether the tag is visible",
3234
- "type": "boolean"
3218
+ "a-table/data": {
3219
+ "description": "Table data"
3235
3220
  },
3236
- "a-tag/default-visible": {
3237
- "description": "Whether the tag is visible by default",
3238
- "type": "boolean"
3221
+ "a-table/bordered": {
3222
+ "description": "Whether to show the border"
3239
3223
  },
3240
- "a-tag/loading": {
3241
- "description": "Whether the tag is loading state",
3242
- "type": "boolean"
3243
- },
3244
- "a-tag/closable": {
3245
- "description": "Whether the tag can be closed",
3246
- "type": "boolean"
3247
- },
3248
- "a-tag/checkable": {
3249
- "description": "Whether the tag can be checked",
3250
- "type": "boolean"
3251
- },
3252
- "a-tag/checked": {
3253
- "description": "Whether the tag is checked (available when the tag is checkable)",
3254
- "type": "boolean"
3255
- },
3256
- "a-tag/default-checked": {
3257
- "description": "Whether the tag is checked by default (available when the tag is checkable)",
3258
- "type": "boolean"
3259
- },
3260
- "a-tag/nowrap": {
3261
- "description": "Tag content does not wrap",
3262
- "type": "boolean"
3263
- },
3264
- "a-tabs/change": {
3265
- "description": "Triggered when the current tag value changes"
3266
- },
3267
- "a-tabs/tab-click": {
3268
- "description": "Triggered when the user clicks on the tab"
3269
- },
3270
- "a-tabs/add": {
3271
- "description": "Triggered when the user clicks the add button"
3272
- },
3273
- "a-tabs/delete": {
3274
- "description": "Triggered when the user clicks the delete button"
3275
- },
3276
- "a-tabs/active-key": {
3277
- "description": "The `key` of the currently selected label",
3278
- "type": "string|number"
3279
- },
3280
- "a-tabs/default-active-key": {
3281
- "description": "The `key` of the tab selected by default (uncontrolled state, select the first tab page when it is empty)",
3282
- "type": "string|number"
3283
- },
3284
- "a-tabs/position": {
3285
- "description": "Position of the tab"
3286
- },
3287
- "a-tabs/size": {
3288
- "description": "The size of the tab"
3289
- },
3290
- "a-tabs/type": {
3291
- "description": "The type of tab"
3292
- },
3293
- "a-tabs/direction": {
3294
- "description": "The direction of tab"
3295
- },
3296
- "a-tabs/editable": {
3297
- "description": "Whether to enable editable mode",
3298
- "type": "boolean"
3299
- },
3300
- "a-tabs/show-add-button": {
3301
- "description": "Whether to display the add button (only available in editable mode)",
3302
- "type": "boolean"
3303
- },
3304
- "a-tabs/destroy-on-hide": {
3305
- "description": "Whether to destroy the content when the label is not displayed",
3306
- "type": "boolean"
3307
- },
3308
- "a-tabs/lazy-load": {
3309
- "description": "Whether to mount the content when the label is first displayed",
3310
- "type": "boolean"
3311
- },
3312
- "a-tabs/justify": {
3313
- "description": "The height of the container is fully supported, and it only takes effect in horizontal mode.",
3314
- "type": "boolean"
3315
- },
3316
- "a-tabs/animation": {
3317
- "description": "Whether to enable option content transition animation",
3318
- "type": "boolean"
3319
- },
3320
- "a-tabs/header-padding": {
3321
- "description": "Whether there is a horizontal margin on the header of the tab. Only valid for tabs with `type` equal to `line` and `text` type",
3322
- "type": "boolean"
3323
- },
3324
- "a-tabs/auto-switch": {
3325
- "description": "Whether to switch to a new tab after creating a tab (the last one)",
3326
- "type": "boolean"
3327
- },
3328
- "a-tabs/hide-content": {
3329
- "description": "Whether to hide content",
3330
- "type": "boolean"
3331
- },
3332
- "a-tabs/trigger": {
3333
- "description": "Trigger method"
3334
- },
3335
- "a-tabs/scroll-position": {
3336
- "description": "The scroll position of the selected tab, the default auto will scroll the activeTab to the visible area, but will not adjust the position intentionally"
3337
- },
3338
- "a-tab-pane/title": {
3339
- "description": "Title of the tab",
3340
- "type": "string"
3341
- },
3342
- "a-tab-pane/disabled": {
3343
- "description": "Whether to disable",
3344
- "type": "boolean"
3345
- },
3346
- "a-tab-pane/closable": {
3347
- "description": "Whether to allow this tab to be closed (only effective in editable mode)",
3348
- "type": "boolean"
3349
- },
3350
- "a-tab-pane/destroy-on-hide": {
3351
- "description": "Whether to destroy the content when the label is not displayed",
3352
- "type": "boolean"
3353
- },
3354
- "a-table/expand": {
3355
- "description": "Triggered when a row is clicked to expand"
3356
- },
3357
- "a-table/expanded-change": {
3358
- "description": "Triggered when the expanded data row changes"
3359
- },
3360
- "a-table/select": {
3361
- "description": "Triggered when the row selector is clicked"
3362
- },
3363
- "a-table/select-all": {
3364
- "description": "Triggered when the select all selector is clicked"
3365
- },
3366
- "a-table/selection-change": {
3367
- "description": "Triggered when the selected data row changes"
3368
- },
3369
- "a-table/sorter-change": {
3370
- "description": "Triggered when the collation changes"
3371
- },
3372
- "a-table/filter-change": {
3373
- "description": "Triggered when the filter options are changed"
3374
- },
3375
- "a-table/page-change": {
3376
- "description": "Triggered when the table pagination changes"
3377
- },
3378
- "a-table/page-size-change": {
3379
- "description": "Triggered when the number of data per page of the table changes"
3380
- },
3381
- "a-table/change": {
3382
- "description": "Triggered when table data changes"
3383
- },
3384
- "a-table/cell-mouse-enter": {
3385
- "description": "Triggered when hovering into a cell"
3386
- },
3387
- "a-table/cell-mouse-leave": {
3388
- "description": "Triggered when hovering out of a cell"
3389
- },
3390
- "a-table/cell-click": {
3391
- "description": "Triggered when a cell is clicked"
3392
- },
3393
- "a-table/row-click": {
3394
- "description": "Triggered when row data is clicked"
3395
- },
3396
- "a-table/header-click": {
3397
- "description": "Triggered when the header data is clicked"
3398
- },
3399
- "a-table/column-resize": {
3400
- "description": "Triggered when column width is adjusted"
3401
- },
3402
- "a-table/row-dblclick": {
3403
- "description": "Triggered when row data is double clicked"
3404
- },
3405
- "a-table/cell-dblclick": {
3406
- "description": "Triggered when a cell is double clicked"
3407
- },
3408
- "a-table/row-contextmenu": {
3409
- "description": "Triggered when row data is right clicked"
3410
- },
3411
- "a-table/cell-contextmenu": {
3412
- "description": "Triggered when a cell is right clicked"
3413
- },
3414
- "a-table/columns": {
3415
- "description": "Column info of the table"
3416
- },
3417
- "a-table/data": {
3418
- "description": "Table data"
3419
- },
3420
- "a-table/bordered": {
3421
- "description": "Whether to show the border"
3422
- },
3423
- "a-table/hoverable": {
3424
- "description": "Whether to show the hover effect",
3224
+ "a-table/hoverable": {
3225
+ "description": "Whether to show the hover effect",
3425
3226
  "type": "boolean"
3426
3227
  },
3427
3228
  "a-table/stripe": {
@@ -3598,63 +3399,262 @@
3598
3399
  "description": "Whether to show text hints when omitted",
3599
3400
  "type": "boolean|object"
3600
3401
  },
3601
- "a-textarea/input": {
3602
- "description": "Emitted when the user enters"
3603
- },
3604
- "a-textarea/change": {
3605
- "description": "Only emitted when the textarea is out of focus"
3606
- },
3607
- "a-textarea/clear": {
3608
- "description": "Emitted when the clear button is clicked"
3402
+ "a-switch/change": {
3403
+ "description": "Trigger when the value changes"
3609
3404
  },
3610
- "a-textarea/focus": {
3611
- "description": "Emitted when the textarea gets focus"
3405
+ "a-switch/focus": {
3406
+ "description": "Triggered when the component gets focus"
3612
3407
  },
3613
- "a-textarea/blur": {
3614
- "description": "Emitted when the textarea loses focus"
3408
+ "a-switch/blur": {
3409
+ "description": "Fired when the component loses focus"
3615
3410
  },
3616
- "a-textarea/model-value": {
3411
+ "a-switch/model-value": {
3617
3412
  "description": "Value",
3618
- "type": "string"
3619
- },
3620
- "a-textarea/default-value": {
3621
- "description": "Default value (uncontrolled state)",
3622
- "type": "string"
3413
+ "type": "string|number|boolean"
3623
3414
  },
3624
- "a-textarea/placeholder": {
3625
- "description": "Placeholder",
3626
- "type": "string"
3415
+ "a-switch/default-checked": {
3416
+ "description": "Default selected state (uncontrolled state)",
3417
+ "type": "boolean"
3627
3418
  },
3628
- "a-textarea/disabled": {
3419
+ "a-switch/disabled": {
3629
3420
  "description": "Whether to disable",
3630
3421
  "type": "boolean"
3631
3422
  },
3632
- "a-textarea/error": {
3633
- "description": "Whether it is an error state",
3423
+ "a-switch/loading": {
3424
+ "description": "Whether it is loading state",
3634
3425
  "type": "boolean"
3635
3426
  },
3636
- "a-textarea/max-length": {
3637
- "description": "Maximum length of input value, the errorOnly attribute was added in version 2.12.0"
3638
- },
3639
- "a-textarea/show-word-limit": {
3640
- "description": "Whether to display word count",
3641
- "type": "boolean"
3427
+ "a-switch/type": {
3428
+ "description": "Type of switch",
3429
+ "type": "string"
3642
3430
  },
3643
- "a-textarea/allow-clear": {
3644
- "description": "Whether to allow clearing the text",
3645
- "type": "boolean"
3431
+ "a-switch/size": {
3432
+ "description": "Size of switch",
3433
+ "type": "string"
3646
3434
  },
3647
- "a-textarea/auto-size": {
3648
- "description": "Whether to make the textarea adapt to the height of the content"
3435
+ "a-switch/checked-value": {
3436
+ "description": "Value when checked",
3437
+ "type": "string|number|boolean"
3649
3438
  },
3650
- "a-textarea/word-length": {
3651
- "description": "Calculation method of word length"
3439
+ "a-switch/unchecked-value": {
3440
+ "description": "Value when unchecked",
3441
+ "type": "string|number|boolean"
3652
3442
  },
3653
- "a-textarea/word-slice": {
3654
- "description": "Character interception method, used together with wordLength"
3443
+ "a-switch/checked-color": {
3444
+ "description": "The color of the switch when checked",
3445
+ "type": "string"
3655
3446
  },
3656
- "a-textarea/textarea-attrs": {
3657
- "description": "Attributes passed to textarea"
3447
+ "a-switch/unchecked-color": {
3448
+ "description": "The color of the switch when unchecked",
3449
+ "type": "string"
3450
+ },
3451
+ "a-switch/before-change": {
3452
+ "description": "before-change hook before the switch state changes. If false is returned or a Promise is returned and then is rejected, will stop switching"
3453
+ },
3454
+ "a-switch/checked-text": {
3455
+ "description": "Copywriting when opened (not effective when `type='line'` and `size='small'`)",
3456
+ "type": "string"
3457
+ },
3458
+ "a-switch/unchecked-text": {
3459
+ "description": "Copywriting when closed (not effective when `type='line'` and `size='small'`)",
3460
+ "type": "string"
3461
+ },
3462
+ "a-tabs/change": {
3463
+ "description": "Triggered when the current tag value changes"
3464
+ },
3465
+ "a-tabs/tab-click": {
3466
+ "description": "Triggered when the user clicks on the tab"
3467
+ },
3468
+ "a-tabs/add": {
3469
+ "description": "Triggered when the user clicks the add button"
3470
+ },
3471
+ "a-tabs/delete": {
3472
+ "description": "Triggered when the user clicks the delete button"
3473
+ },
3474
+ "a-tabs/active-key": {
3475
+ "description": "The `key` of the currently selected label",
3476
+ "type": "string|number"
3477
+ },
3478
+ "a-tabs/default-active-key": {
3479
+ "description": "The `key` of the tab selected by default (uncontrolled state, select the first tab page when it is empty)",
3480
+ "type": "string|number"
3481
+ },
3482
+ "a-tabs/position": {
3483
+ "description": "Position of the tab"
3484
+ },
3485
+ "a-tabs/size": {
3486
+ "description": "The size of the tab"
3487
+ },
3488
+ "a-tabs/type": {
3489
+ "description": "The type of tab"
3490
+ },
3491
+ "a-tabs/direction": {
3492
+ "description": "The direction of tab"
3493
+ },
3494
+ "a-tabs/editable": {
3495
+ "description": "Whether to enable editable mode",
3496
+ "type": "boolean"
3497
+ },
3498
+ "a-tabs/show-add-button": {
3499
+ "description": "Whether to display the add button (only available in editable mode)",
3500
+ "type": "boolean"
3501
+ },
3502
+ "a-tabs/destroy-on-hide": {
3503
+ "description": "Whether to destroy the content when the label is not displayed",
3504
+ "type": "boolean"
3505
+ },
3506
+ "a-tabs/lazy-load": {
3507
+ "description": "Whether to mount the content when the label is first displayed",
3508
+ "type": "boolean"
3509
+ },
3510
+ "a-tabs/justify": {
3511
+ "description": "The height of the container is fully supported, and it only takes effect in horizontal mode.",
3512
+ "type": "boolean"
3513
+ },
3514
+ "a-tabs/animation": {
3515
+ "description": "Whether to enable option content transition animation",
3516
+ "type": "boolean"
3517
+ },
3518
+ "a-tabs/header-padding": {
3519
+ "description": "Whether there is a horizontal margin on the header of the tab. Only valid for tabs with `type` equal to `line` and `text` type",
3520
+ "type": "boolean"
3521
+ },
3522
+ "a-tabs/auto-switch": {
3523
+ "description": "Whether to switch to a new tab after creating a tab (the last one)",
3524
+ "type": "boolean"
3525
+ },
3526
+ "a-tabs/hide-content": {
3527
+ "description": "Whether to hide content",
3528
+ "type": "boolean"
3529
+ },
3530
+ "a-tabs/trigger": {
3531
+ "description": "Trigger method"
3532
+ },
3533
+ "a-tabs/scroll-position": {
3534
+ "description": "The scroll position of the selected tab, the default auto will scroll the activeTab to the visible area, but will not adjust the position intentionally"
3535
+ },
3536
+ "a-tab-pane/title": {
3537
+ "description": "Title of the tab",
3538
+ "type": "string"
3539
+ },
3540
+ "a-tab-pane/disabled": {
3541
+ "description": "Whether to disable",
3542
+ "type": "boolean"
3543
+ },
3544
+ "a-tab-pane/closable": {
3545
+ "description": "Whether to allow this tab to be closed (only effective in editable mode)",
3546
+ "type": "boolean"
3547
+ },
3548
+ "a-tab-pane/destroy-on-hide": {
3549
+ "description": "Whether to destroy the content when the label is not displayed",
3550
+ "type": "boolean"
3551
+ },
3552
+ "a-tag/close": {
3553
+ "description": "Emitted when the close button is clicked"
3554
+ },
3555
+ "a-tag/check": {
3556
+ "description": "Emitted when the user check (emit only in the checkable mode)"
3557
+ },
3558
+ "a-tag/color": {
3559
+ "description": "Label color"
3560
+ },
3561
+ "a-tag/size": {
3562
+ "description": "Label size",
3563
+ "type": "string"
3564
+ },
3565
+ "a-tag/bordered": {
3566
+ "description": "Whether the tag is bordered",
3567
+ "type": "boolean"
3568
+ },
3569
+ "a-tag/visible": {
3570
+ "description": "Whether the tag is visible",
3571
+ "type": "boolean"
3572
+ },
3573
+ "a-tag/default-visible": {
3574
+ "description": "Whether the tag is visible by default",
3575
+ "type": "boolean"
3576
+ },
3577
+ "a-tag/loading": {
3578
+ "description": "Whether the tag is loading state",
3579
+ "type": "boolean"
3580
+ },
3581
+ "a-tag/closable": {
3582
+ "description": "Whether the tag can be closed",
3583
+ "type": "boolean"
3584
+ },
3585
+ "a-tag/checkable": {
3586
+ "description": "Whether the tag can be checked",
3587
+ "type": "boolean"
3588
+ },
3589
+ "a-tag/checked": {
3590
+ "description": "Whether the tag is checked (available when the tag is checkable)",
3591
+ "type": "boolean"
3592
+ },
3593
+ "a-tag/default-checked": {
3594
+ "description": "Whether the tag is checked by default (available when the tag is checkable)",
3595
+ "type": "boolean"
3596
+ },
3597
+ "a-tag/nowrap": {
3598
+ "description": "Tag content does not wrap",
3599
+ "type": "boolean"
3600
+ },
3601
+ "a-textarea/input": {
3602
+ "description": "Emitted when the user enters"
3603
+ },
3604
+ "a-textarea/change": {
3605
+ "description": "Only emitted when the textarea is out of focus"
3606
+ },
3607
+ "a-textarea/clear": {
3608
+ "description": "Emitted when the clear button is clicked"
3609
+ },
3610
+ "a-textarea/focus": {
3611
+ "description": "Emitted when the textarea gets focus"
3612
+ },
3613
+ "a-textarea/blur": {
3614
+ "description": "Emitted when the textarea loses focus"
3615
+ },
3616
+ "a-textarea/model-value": {
3617
+ "description": "Value",
3618
+ "type": "string"
3619
+ },
3620
+ "a-textarea/default-value": {
3621
+ "description": "Default value (uncontrolled state)",
3622
+ "type": "string"
3623
+ },
3624
+ "a-textarea/placeholder": {
3625
+ "description": "Placeholder",
3626
+ "type": "string"
3627
+ },
3628
+ "a-textarea/disabled": {
3629
+ "description": "Whether to disable",
3630
+ "type": "boolean"
3631
+ },
3632
+ "a-textarea/error": {
3633
+ "description": "Whether it is an error state",
3634
+ "type": "boolean"
3635
+ },
3636
+ "a-textarea/max-length": {
3637
+ "description": "Maximum length of input value, the errorOnly attribute was added in version 2.12.0"
3638
+ },
3639
+ "a-textarea/show-word-limit": {
3640
+ "description": "Whether to display word count",
3641
+ "type": "boolean"
3642
+ },
3643
+ "a-textarea/allow-clear": {
3644
+ "description": "Whether to allow clearing the text",
3645
+ "type": "boolean"
3646
+ },
3647
+ "a-textarea/auto-size": {
3648
+ "description": "Whether to make the textarea adapt to the height of the content"
3649
+ },
3650
+ "a-textarea/word-length": {
3651
+ "description": "Calculation method of word length"
3652
+ },
3653
+ "a-textarea/word-slice": {
3654
+ "description": "Character interception method, used together with wordLength"
3655
+ },
3656
+ "a-textarea/textarea-attrs": {
3657
+ "description": "Attributes passed to textarea"
3658
3658
  },
3659
3659
  "a-time-picker/change": {
3660
3660
  "description": "The component value changes"
@@ -3788,51 +3788,6 @@
3788
3788
  "a-timeline-item/position": {
3789
3789
  "description": "Item position"
3790
3790
  },
3791
- "a-tooltip/popup-visible-change": {
3792
- "description": "Emitted when the tooltip display status changes"
3793
- },
3794
- "a-tooltip/popup-visible": {
3795
- "description": "Whether the tooltip is visible",
3796
- "type": "boolean"
3797
- },
3798
- "a-tooltip/default-popup-visible": {
3799
- "description": "Whether the tooltip is visible by default (uncontrolled mode)",
3800
- "type": "boolean"
3801
- },
3802
- "a-tooltip/disabled": {
3803
- "description": "Whether to disable the tooltip",
3804
- "type": "boolean"
3805
- },
3806
- "a-tooltip/content": {
3807
- "description": "Tooltip content",
3808
- "type": "string"
3809
- },
3810
- "a-tooltip/position": {
3811
- "description": "Popup position"
3812
- },
3813
- "a-tooltip/mini": {
3814
- "description": "Whether to display as a mini size",
3815
- "type": "boolean"
3816
- },
3817
- "a-tooltip/background-color": {
3818
- "description": "Background color of the popover",
3819
- "type": "string"
3820
- },
3821
- "a-tooltip/content-class": {
3822
- "description": "The class name of the popup content"
3823
- },
3824
- "a-tooltip/content-style": {
3825
- "description": "The style of the popup content"
3826
- },
3827
- "a-tooltip/arrow-class": {
3828
- "description": "The class name of the popup arrow"
3829
- },
3830
- "a-tooltip/arrow-style": {
3831
- "description": "The style of the popup arrow"
3832
- },
3833
- "a-tooltip/popup-container": {
3834
- "description": "Mount container for popup"
3835
- },
3836
3791
  "a-transfer/change": {
3837
3792
  "description": "Triggered when the value of the target selection box changes"
3838
3793
  },
@@ -3888,144 +3843,50 @@
3888
3843
  "description": "Search box configuration for target selection box",
3889
3844
  "type": "object"
3890
3845
  },
3891
- "a-tree-select/change": {
3892
- "description": "Trigger when the value changes"
3893
- },
3894
- "a-tree-select/popup-visible-change": {
3895
- "description": "Triggered when the status of the drop-down box changes"
3896
- },
3897
- "a-tree-select/search": {
3898
- "description": "Triggered when the search value changes"
3899
- },
3900
- "a-tree-select/clear": {
3901
- "description": "Triggered when clear is clicked"
3902
- },
3903
- "a-tree-select/input-value-change": {
3904
- "description": "Triggered when the value of the input changes"
3905
- },
3906
- "a-tree-select/disabled": {
3907
- "description": "Whether to disable",
3908
- "type": "boolean"
3909
- },
3910
- "a-tree-select/loading": {
3911
- "description": "Whether it is loading state",
3912
- "type": "boolean"
3846
+ "a-tooltip/popup-visible-change": {
3847
+ "description": "Emitted when the tooltip display status changes"
3913
3848
  },
3914
- "a-tree-select/error": {
3915
- "description": "Whether it is an error state",
3849
+ "a-tooltip/popup-visible": {
3850
+ "description": "Whether the tooltip is visible",
3916
3851
  "type": "boolean"
3917
3852
  },
3918
- "a-tree-select/size": {
3919
- "description": "The size of the selection box."
3920
- },
3921
- "a-tree-select/border": {
3922
- "description": "Whether to show the border",
3853
+ "a-tooltip/default-popup-visible": {
3854
+ "description": "Whether the tooltip is visible by default (uncontrolled mode)",
3923
3855
  "type": "boolean"
3924
3856
  },
3925
- "a-tree-select/allow-search": {
3926
- "description": "Whether to allow searching"
3927
- },
3928
- "a-tree-select/allow-clear": {
3929
- "description": "Whether to allow clear",
3857
+ "a-tooltip/disabled": {
3858
+ "description": "Whether to disable the tooltip",
3930
3859
  "type": "boolean"
3931
3860
  },
3932
- "a-tree-select/placeholder": {
3933
- "description": "Prompt copy",
3861
+ "a-tooltip/content": {
3862
+ "description": "Tooltip content",
3934
3863
  "type": "string"
3935
3864
  },
3936
- "a-tree-select/max-tag-count": {
3937
- "description": "The maximum number of labels displayed, only valid in multi-select mode",
3938
- "type": "number"
3939
- },
3940
- "a-tree-select/multiple": {
3941
- "description": "Whether to support multiple selection",
3942
- "type": "boolean"
3943
- },
3944
- "a-tree-select/default-value": {
3945
- "description": "Default value"
3946
- },
3947
- "a-tree-select/model-value": {
3948
- "description": "Value"
3949
- },
3950
- "a-tree-select/field-names": {
3951
- "description": "Specify the field name in the node data"
3952
- },
3953
- "a-tree-select/data": {
3954
- "description": "Data"
3955
- },
3956
- "a-tree-select/label-in-value": {
3957
- "description": "Set the value format. The default is string, when set to true, the value format is: {label: string, value: string}",
3958
- "type": "boolean"
3959
- },
3960
- "a-tree-select/tree-checkable": {
3961
- "description": "Whether to show checkbox",
3962
- "type": "boolean"
3865
+ "a-tooltip/position": {
3866
+ "description": "Popup position"
3963
3867
  },
3964
- "a-tree-select/tree-check-strictly": {
3965
- "description": "Whether the parent and child nodes are related",
3868
+ "a-tooltip/mini": {
3869
+ "description": "Whether to display as a mini size",
3966
3870
  "type": "boolean"
3967
3871
  },
3968
- "a-tree-select/tree-checked-strategy": {
3969
- "description": "Customized echo method",
3872
+ "a-tooltip/background-color": {
3873
+ "description": "Background color of the popover",
3970
3874
  "type": "string"
3971
3875
  },
3972
- "a-tree-select/tree-props": {
3973
- "description": "Can accept Props of all [Tree](/vue/component/tree) components"
3974
- },
3975
- "a-tree-select/trigger-props": {
3976
- "description": "Can accept Props of all [Trigger](/vue/component/trigger) components"
3977
- },
3978
- "a-tree-select/popup-visible": {
3979
- "description": "Whether the pop-up box is visible",
3980
- "type": "boolean"
3981
- },
3982
- "a-tree-select/default-popup-visible": {
3983
- "description": "Whether the default pop-up box is visible",
3984
- "type": "boolean"
3985
- },
3986
- "a-tree-select/dropdown-style": {
3987
- "description": "Drop-down box style"
3988
- },
3989
- "a-tree-select/dropdown-class-name": {
3990
- "description": "Drop-down box style class"
3991
- },
3992
- "a-tree-select/filter-tree-node": {
3993
- "description": "Custom node filter function"
3994
- },
3995
- "a-tree-select/load-more": {
3996
- "description": "Load data dynamically"
3997
- },
3998
- "a-tree-select/disable-filter": {
3999
- "description": "Disable internal filtering logic",
4000
- "type": "boolean"
4001
- },
4002
- "a-tree-select/popup-container": {
4003
- "description": "Mount container for pop-up box"
4004
- },
4005
- "a-tree-select/fallback-option": {
4006
- "description": "Customize node data for keys that do not match options"
4007
- },
4008
- "a-tree-select/selectable": {
4009
- "description": "Set the nodes that can be selected, all can be selected by default"
4010
- },
4011
- "a-tree-select/scrollbar": {
4012
- "description": "Whether to enable virtual scroll bar"
3876
+ "a-tooltip/content-class": {
3877
+ "description": "The class name of the popup content"
4013
3878
  },
4014
- "a-tree-select/show-header-on-empty": {
4015
- "description": "Whether to display the header in the empty state",
4016
- "type": "boolean"
3879
+ "a-tooltip/content-style": {
3880
+ "description": "The style of the popup content"
4017
3881
  },
4018
- "a-tree-select/show-footer-on-empty": {
4019
- "description": "Whether to display the footer in the empty state",
4020
- "type": "boolean"
3882
+ "a-tooltip/arrow-class": {
3883
+ "description": "The class name of the popup arrow"
4021
3884
  },
4022
- "a-tree-select/input-value": {
4023
- "description": "The value of the input",
4024
- "type": "string"
3885
+ "a-tooltip/arrow-style": {
3886
+ "description": "The style of the popup arrow"
4025
3887
  },
4026
- "a-tree-select/default-input-value": {
4027
- "description": "The default value of the input (uncontrolled mode)",
4028
- "type": "string"
3888
+ "a-tooltip/popup-container": {
3889
+ "description": "Mount container for popup"
4029
3890
  },
4030
3891
  "a-tree/select": {
4031
3892
  "description": "Triggered when the tree node is clicked"
@@ -4148,261 +4009,145 @@
4148
4009
  "a-tree/action-on-node-click": {
4149
4010
  "description": "The action triggered when the node is clicked"
4150
4011
  },
4151
- "a-typography-title/edit-start": {
4152
- "description": "Edit start"
4153
- },
4154
- "a-typography-title/change": {
4155
- "description": "Edit content change"
4012
+ "a-tree-select/change": {
4013
+ "description": "Trigger when the value changes"
4156
4014
  },
4157
- "a-typography-title/edit-end": {
4158
- "description": "Edit end"
4015
+ "a-tree-select/popup-visible-change": {
4016
+ "description": "Triggered when the status of the drop-down box changes"
4159
4017
  },
4160
- "a-typography-title/copy": {
4161
- "description": "Copy"
4018
+ "a-tree-select/search": {
4019
+ "description": "Triggered when the search value changes"
4162
4020
  },
4163
- "a-typography-title/ellipsis": {
4164
- "description": "Ellipsis change"
4021
+ "a-tree-select/clear": {
4022
+ "description": "Triggered when clear is clicked"
4165
4023
  },
4166
- "a-typography-title/expand": {
4167
- "description": "Expand collapse event"
4024
+ "a-tree-select/input-value-change": {
4025
+ "description": "Triggered when the value of the input changes"
4168
4026
  },
4169
- "a-typography-title/heading": {
4170
- "description": "Heading level, equivalent to `h1` `h2` `h3` `h4` `h5` `h6`",
4171
- "type": "string"
4027
+ "a-tree-select/disabled": {
4028
+ "description": "Whether to disable",
4029
+ "type": "boolean"
4172
4030
  },
4173
- "a-typography-title/type": {
4174
- "description": "Text type",
4175
- "type": "string"
4031
+ "a-tree-select/loading": {
4032
+ "description": "Whether it is loading state",
4033
+ "type": "boolean"
4176
4034
  },
4177
- "a-typography-title/bold": {
4178
- "description": "Whether enable bold style",
4035
+ "a-tree-select/error": {
4036
+ "description": "Whether it is an error state",
4179
4037
  "type": "boolean"
4180
4038
  },
4181
- "a-typography-title/mark": {
4182
- "description": "Mark style"
4039
+ "a-tree-select/size": {
4040
+ "description": "The size of the selection box."
4183
4041
  },
4184
- "a-typography-title/underline": {
4185
- "description": "Whether enable underline style",
4042
+ "a-tree-select/border": {
4043
+ "description": "Whether to show the border",
4186
4044
  "type": "boolean"
4187
4045
  },
4188
- "a-typography-title/delete": {
4189
- "description": "Whether enable delete style",
4190
- "type": "boolean"
4046
+ "a-tree-select/allow-search": {
4047
+ "description": "Whether to allow searching"
4191
4048
  },
4192
- "a-typography-title/code": {
4193
- "description": "Whether enable code style",
4049
+ "a-tree-select/allow-clear": {
4050
+ "description": "Whether to allow clear",
4194
4051
  "type": "boolean"
4195
4052
  },
4196
- "a-typography-title/disabled": {
4197
- "description": "Whether disabled",
4198
- "type": "boolean"
4053
+ "a-tree-select/placeholder": {
4054
+ "description": "Prompt copy",
4055
+ "type": "string"
4199
4056
  },
4200
- "a-typography-title/editable": {
4201
- "description": "Whether it's editable",
4202
- "type": "boolean"
4057
+ "a-tree-select/max-tag-count": {
4058
+ "description": "The maximum number of labels displayed, only valid in multi-select mode",
4059
+ "type": "number"
4203
4060
  },
4204
- "a-typography-title/editing": {
4205
- "description": "Whether it's editing",
4061
+ "a-tree-select/multiple": {
4062
+ "description": "Whether to support multiple selection",
4206
4063
  "type": "boolean"
4207
4064
  },
4208
- "a-typography-title/default-editing": {
4209
- "description": "Default editing state",
4065
+ "a-tree-select/default-value": {
4066
+ "description": "Default value"
4067
+ },
4068
+ "a-tree-select/model-value": {
4069
+ "description": "Value"
4070
+ },
4071
+ "a-tree-select/field-names": {
4072
+ "description": "Specify the field name in the node data"
4073
+ },
4074
+ "a-tree-select/data": {
4075
+ "description": "Data"
4076
+ },
4077
+ "a-tree-select/label-in-value": {
4078
+ "description": "Set the value format. The default is string, when set to true, the value format is: {label: string, value: string}",
4210
4079
  "type": "boolean"
4211
4080
  },
4212
- "a-typography-title/edit-text": {
4213
- "description": "Edit text",
4214
- "type": "string"
4081
+ "a-tree-select/tree-checkable": {
4082
+ "description": "Whether to show checkbox",
4083
+ "type": "boolean"
4215
4084
  },
4216
- "a-typography-title/copyable": {
4217
- "description": "Whether turn on copy functionality",
4085
+ "a-tree-select/tree-check-strictly": {
4086
+ "description": "Whether the parent and child nodes are related",
4218
4087
  "type": "boolean"
4219
4088
  },
4220
- "a-typography-title/copy-text": {
4221
- "description": "Copied text",
4089
+ "a-tree-select/tree-checked-strategy": {
4090
+ "description": "Customized echo method",
4222
4091
  "type": "string"
4223
4092
  },
4224
- "a-typography-title/copy-delay": {
4225
- "description": "After the copy is successful, the delay time for the copy button to return to the clickable state, in milliseconds",
4226
- "type": "number"
4093
+ "a-tree-select/tree-props": {
4094
+ "description": "Can accept Props of all [Tree](/vue/component/tree) components"
4227
4095
  },
4228
- "a-typography-title/edit-tooltip-props": {
4229
- "description": "Edit button question prompt configuration",
4230
- "type": "object"
4096
+ "a-tree-select/trigger-props": {
4097
+ "description": "Can accept Props of all [Trigger](/vue/component/trigger) components"
4231
4098
  },
4232
- "a-typography-title/copy-tooltip-props": {
4233
- "description": "Copy button question prompt configuration",
4234
- "type": "object"
4235
- },
4236
- "a-typography-paragraph/edit-start": {
4237
- "description": "Edit start"
4238
- },
4239
- "a-typography-paragraph/change": {
4240
- "description": "Edit content change"
4241
- },
4242
- "a-typography-paragraph/edit-end": {
4243
- "description": "Edit end"
4244
- },
4245
- "a-typography-paragraph/copy": {
4246
- "description": "Copy"
4247
- },
4248
- "a-typography-paragraph/ellipsis": {
4249
- "description": "Ellipsis change"
4250
- },
4251
- "a-typography-paragraph/expand": {
4252
- "description": "Expand collapse event"
4253
- },
4254
- "a-typography-paragraph/blockquote": {
4255
- "description": "Whether enable blockquote",
4256
- "type": "boolean"
4257
- },
4258
- "a-typography-paragraph/spacing": {
4259
- "description": "The line height of the paragraph, the default line height is recommended for long text (more than 5 lines). `close` line height is recommended for short text (less than or equal to 3 lines).",
4260
- "type": "string"
4261
- },
4262
- "a-typography-paragraph/type": {
4263
- "description": "Text type",
4264
- "type": "string"
4265
- },
4266
- "a-typography-paragraph/bold": {
4267
- "description": "Whether enable bold style",
4268
- "type": "boolean"
4269
- },
4270
- "a-typography-paragraph/mark": {
4271
- "description": "Mark style"
4272
- },
4273
- "a-typography-paragraph/underline": {
4274
- "description": "Whether enable underline style",
4275
- "type": "boolean"
4276
- },
4277
- "a-typography-paragraph/delete": {
4278
- "description": "Whether enable delete style",
4279
- "type": "boolean"
4280
- },
4281
- "a-typography-paragraph/code": {
4282
- "description": "Whether enable code style",
4283
- "type": "boolean"
4284
- },
4285
- "a-typography-paragraph/disabled": {
4286
- "description": "Whether disabled",
4287
- "type": "boolean"
4288
- },
4289
- "a-typography-paragraph/editable": {
4290
- "description": "Whether it's editable",
4291
- "type": "boolean"
4292
- },
4293
- "a-typography-paragraph/editing": {
4294
- "description": "Whether it's editing",
4295
- "type": "boolean"
4296
- },
4297
- "a-typography-paragraph/default-editing": {
4298
- "description": "Default editing state",
4099
+ "a-tree-select/popup-visible": {
4100
+ "description": "Whether the pop-up box is visible",
4299
4101
  "type": "boolean"
4300
4102
  },
4301
- "a-typography-paragraph/edit-text": {
4302
- "description": "Edit text",
4303
- "type": "string"
4304
- },
4305
- "a-typography-paragraph/copyable": {
4306
- "description": "Whether turn on copy functionality",
4103
+ "a-tree-select/default-popup-visible": {
4104
+ "description": "Whether the default pop-up box is visible",
4307
4105
  "type": "boolean"
4308
4106
  },
4309
- "a-typography-paragraph/copy-text": {
4310
- "description": "Copied text",
4311
- "type": "string"
4312
- },
4313
- "a-typography-paragraph/copy-delay": {
4314
- "description": "After the copy is successful, the delay time for the copy button to return to the clickable state, in milliseconds",
4315
- "type": "number"
4316
- },
4317
- "a-typography-paragraph/edit-tooltip-props": {
4318
- "description": "Edit button question prompt configuration",
4319
- "type": "object"
4320
- },
4321
- "a-typography-paragraph/copy-tooltip-props": {
4322
- "description": "Copy button question prompt configuration",
4323
- "type": "object"
4324
- },
4325
- "a-typography-text/edit-start": {
4326
- "description": "Edit start"
4327
- },
4328
- "a-typography-text/change": {
4329
- "description": "Edit content change"
4330
- },
4331
- "a-typography-text/edit-end": {
4332
- "description": "Edit end"
4333
- },
4334
- "a-typography-text/copy": {
4335
- "description": "Copy"
4336
- },
4337
- "a-typography-text/ellipsis": {
4338
- "description": "Ellipsis change"
4339
- },
4340
- "a-typography-text/expand": {
4341
- "description": "Expand collapse event"
4107
+ "a-tree-select/dropdown-style": {
4108
+ "description": "Drop-down box style"
4342
4109
  },
4343
- "a-typography-text/type": {
4344
- "description": "Text type",
4345
- "type": "string"
4110
+ "a-tree-select/dropdown-class-name": {
4111
+ "description": "Drop-down box style class"
4346
4112
  },
4347
- "a-typography-text/bold": {
4348
- "description": "Whether enable bold style",
4349
- "type": "boolean"
4113
+ "a-tree-select/filter-tree-node": {
4114
+ "description": "Custom node filter function"
4350
4115
  },
4351
- "a-typography-text/mark": {
4352
- "description": "Mark style"
4116
+ "a-tree-select/load-more": {
4117
+ "description": "Load data dynamically"
4353
4118
  },
4354
- "a-typography-text/underline": {
4355
- "description": "Whether enable underline style",
4119
+ "a-tree-select/disable-filter": {
4120
+ "description": "Disable internal filtering logic",
4356
4121
  "type": "boolean"
4357
4122
  },
4358
- "a-typography-text/delete": {
4359
- "description": "Whether enable delete style",
4360
- "type": "boolean"
4123
+ "a-tree-select/popup-container": {
4124
+ "description": "Mount container for pop-up box"
4361
4125
  },
4362
- "a-typography-text/code": {
4363
- "description": "Whether enable code style",
4364
- "type": "boolean"
4126
+ "a-tree-select/fallback-option": {
4127
+ "description": "Customize node data for keys that do not match options"
4365
4128
  },
4366
- "a-typography-text/disabled": {
4367
- "description": "Whether disabled",
4368
- "type": "boolean"
4129
+ "a-tree-select/selectable": {
4130
+ "description": "Set the nodes that can be selected, all can be selected by default"
4369
4131
  },
4370
- "a-typography-text/editable": {
4371
- "description": "Whether it's editable",
4372
- "type": "boolean"
4132
+ "a-tree-select/scrollbar": {
4133
+ "description": "Whether to enable virtual scroll bar"
4373
4134
  },
4374
- "a-typography-text/editing": {
4375
- "description": "Whether it's editing",
4135
+ "a-tree-select/show-header-on-empty": {
4136
+ "description": "Whether to display the header in the empty state",
4376
4137
  "type": "boolean"
4377
4138
  },
4378
- "a-typography-text/default-editing": {
4379
- "description": "Default editing state",
4139
+ "a-tree-select/show-footer-on-empty": {
4140
+ "description": "Whether to display the footer in the empty state",
4380
4141
  "type": "boolean"
4381
4142
  },
4382
- "a-typography-text/edit-text": {
4383
- "description": "Edit text",
4143
+ "a-tree-select/input-value": {
4144
+ "description": "The value of the input",
4384
4145
  "type": "string"
4385
4146
  },
4386
- "a-typography-text/copyable": {
4387
- "description": "Whether turn on copy functionality",
4388
- "type": "boolean"
4389
- },
4390
- "a-typography-text/copy-text": {
4391
- "description": "Copied text",
4147
+ "a-tree-select/default-input-value": {
4148
+ "description": "The default value of the input (uncontrolled mode)",
4392
4149
  "type": "string"
4393
4150
  },
4394
- "a-typography-text/copy-delay": {
4395
- "description": "After the copy is successful, the delay time for the copy button to return to the clickable state, in milliseconds",
4396
- "type": "number"
4397
- },
4398
- "a-typography-text/edit-tooltip-props": {
4399
- "description": "Edit button question prompt configuration",
4400
- "type": "object"
4401
- },
4402
- "a-typography-text/copy-tooltip-props": {
4403
- "description": "Copy button question prompt configuration",
4404
- "type": "object"
4405
- },
4406
4151
  "a-upload/exceed-limit": {
4407
4152
  "description": "Triggered when the uploaded file exceeds the limit"
4408
4153
  },
@@ -4532,235 +4277,490 @@
4532
4277
  "a-upload/button-click": {
4533
4278
  "description": "Click the upload button to trigger (if the Promise is returned, the default input upload will be closed)"
4534
4279
  },
4535
- "a-verification-code/change": {
4536
- "description": "Triggered when the value changes"
4280
+ "a-trigger/popup-visible-change": {
4281
+ "description": "Emitted when the status of the popup changes"
4537
4282
  },
4538
- "a-verification-code/finish": {
4539
- "description": "Triggered when the filling is complete"
4283
+ "a-trigger/show": {
4284
+ "description": "Triggered after the trigger is shown (the animation ends)"
4540
4285
  },
4541
- "a-verification-code/input": {
4542
- "description": "Triggered on input"
4286
+ "a-trigger/hide": {
4287
+ "description": "Triggered after the popup is hidden (the animation ends)"
4543
4288
  },
4544
- "a-verification-code/model-value": {
4545
- "description": "Value",
4546
- "type": "string"
4289
+ "a-trigger/popup-visible": {
4290
+ "description": "Whether the popup is visible",
4291
+ "type": "boolean"
4547
4292
  },
4548
- "a-verification-code/default-value": {
4549
- "description": "Default value (uncontrolled state)",
4550
- "type": "string"
4293
+ "a-trigger/default-popup-visible": {
4294
+ "description": "Whether the popup is visible by default (uncontrolled mode)",
4295
+ "type": "boolean"
4551
4296
  },
4552
- "a-verification-code/length": {
4553
- "description": "The length of the verification code, rendering the corresponding number of input boxes according to the length.",
4297
+ "a-trigger/trigger": {
4298
+ "description": "Trigger method"
4299
+ },
4300
+ "a-trigger/position": {
4301
+ "description": "Popup position"
4302
+ },
4303
+ "a-trigger/disabled": {
4304
+ "description": "Whether the trigger is disabled",
4305
+ "type": "boolean"
4306
+ },
4307
+ "a-trigger/popup-offset": {
4308
+ "description": "The offset of the popup (the offset distance of the popup from the trigger)",
4554
4309
  "type": "number"
4555
4310
  },
4556
- "a-verification-code/size": {
4557
- "description": "Input size"
4311
+ "a-trigger/popup-translate": {
4312
+ "description": "The moving distance of the popup"
4558
4313
  },
4559
- "a-verification-code/disabled": {
4560
- "description": "Whether to disable",
4314
+ "a-trigger/show-arrow": {
4315
+ "description": "Whether the popup shows an arrow",
4561
4316
  "type": "boolean"
4562
4317
  },
4563
- "a-verification-code/masked": {
4564
- "description": "Password mode",
4318
+ "a-trigger/align-point": {
4319
+ "description": "Whether the popup follows the mouse",
4565
4320
  "type": "boolean"
4566
4321
  },
4567
- "a-verification-code/readonly": {
4568
- "description": "Readonly",
4322
+ "a-trigger/popup-hover-stay": {
4323
+ "description": "Whether to keep the popup displayed when the trigger is moved out and moved into the popup",
4569
4324
  "type": "boolean"
4570
4325
  },
4571
- "a-verification-code/error": {
4572
- "description": "Whether it is an error state",
4326
+ "a-trigger/blur-to-close": {
4327
+ "description": "Whether to close the popup when the trigger loses focus",
4573
4328
  "type": "boolean"
4574
4329
  },
4575
- "a-verification-code/separator": {
4576
- "description": "Separator. Customizable rendering separators after input boxes with different indexes"
4330
+ "a-trigger/click-to-close": {
4331
+ "description": "Whether to close the popup when the trigger is clicked",
4332
+ "type": "boolean"
4577
4333
  },
4578
- "a-verification-code/formatter": {
4579
- "description": "Formatter function, triggered when the user input value changes"
4334
+ "a-trigger/click-outside-to-close": {
4335
+ "description": "Whether to close the popup when clicking on the outer area",
4336
+ "type": "boolean"
4580
4337
  },
4581
- "a-watermark/content": {
4582
- "description": "Watermark text content"
4338
+ "a-trigger/unmount-on-close": {
4339
+ "description": "Whether to uninstall the popup node when closing",
4340
+ "type": "boolean"
4583
4341
  },
4584
- "a-watermark/image": {
4585
- "description": "Image watermark address",
4342
+ "a-trigger/content-class": {
4343
+ "description": "The class name of the popup content",
4344
+ "type": "string|array|object"
4345
+ },
4346
+ "a-trigger/content-style": {
4347
+ "description": "The style of the popup content"
4348
+ },
4349
+ "a-trigger/arrow-class": {
4350
+ "description": "The class name of the popup arrow",
4351
+ "type": "string|array|object"
4352
+ },
4353
+ "a-trigger/arrow-style": {
4354
+ "description": "The style of the popup arrow"
4355
+ },
4356
+ "a-trigger/popup-style": {
4357
+ "description": "The style of the popup"
4358
+ },
4359
+ "a-trigger/animation-name": {
4360
+ "description": "The name of the popup animation",
4586
4361
  "type": "string"
4587
4362
  },
4588
- "a-watermark/width": {
4589
- "description": "Watermark width",
4363
+ "a-trigger/duration": {
4364
+ "description": "The duration of the popup animation"
4365
+ },
4366
+ "a-trigger/mouse-enter-delay": {
4367
+ "description": "Delay trigger time of mouseenter event (ms)",
4590
4368
  "type": "number"
4591
4369
  },
4592
- "a-watermark/height": {
4593
- "description": "Watermark height",
4370
+ "a-trigger/mouse-leave-delay": {
4371
+ "description": "Delay trigger time of mouseleave event (ms)",
4594
4372
  "type": "number"
4595
4373
  },
4596
- "a-watermark/gap": {
4597
- "description": "Watermark spacing"
4374
+ "a-trigger/focus-delay": {
4375
+ "description": "Delay trigger time of focus event (ms)",
4376
+ "type": "number"
4598
4377
  },
4599
- "a-watermark/offset": {
4600
- "description": "The offset from the upper left corner of the container, the default is half the watermark spacing"
4378
+ "a-trigger/auto-fit-popup-width": {
4379
+ "description": "Whether to set the width of the popup to the width of the trigger",
4380
+ "type": "boolean"
4601
4381
  },
4602
- "a-watermark/rotate": {
4603
- "description": "Watermark rotation angle",
4604
- "type": "number"
4382
+ "a-trigger/auto-fit-popup-min-width": {
4383
+ "description": "Whether to set the minimum width of the popup to the trigger width",
4384
+ "type": "boolean"
4605
4385
  },
4606
- "a-watermark/font": {
4607
- "description": "Watermark font style, specific parameter configuration see [WatermarkFont](#WatermarkFont)"
4386
+ "a-trigger/auto-fix-position": {
4387
+ "description": "When the size of the trigger changes, whether to recalculate the position of the popup",
4388
+ "type": "boolean"
4608
4389
  },
4609
- "a-watermark/z-index": {
4610
- "description": "Watermark z-index",
4611
- "type": "number"
4390
+ "a-trigger/popup-container": {
4391
+ "description": "Mount container for popup"
4612
4392
  },
4613
- "a-watermark/alpha": {
4614
- "description": "Watermark opacity",
4615
- "type": "number"
4393
+ "a-trigger/auto-fit-position": {
4394
+ "description": "Whether to automatically adjust the position of the popup to fit the window size",
4395
+ "type": "boolean"
4616
4396
  },
4617
- "a-watermark/anti-tamper": {
4618
- "description": "Watermark anti-tampering",
4397
+ "a-trigger/render-to-body": {
4398
+ "description": "Whether to mount under the `body` element",
4619
4399
  "type": "boolean"
4620
4400
  },
4621
- "a-watermark/grayscale": {
4622
- "description": "Grayscale watermark",
4401
+ "a-trigger/prevent-focus": {
4402
+ "description": "Whether to prevent elements in the pop-up layer from gaining focus when clicked",
4623
4403
  "type": "boolean"
4624
4404
  },
4625
- "a-watermark/repeat": {
4626
- "description": "Whether to repeat the watermark",
4405
+ "a-trigger/scroll-to-close": {
4406
+ "description": "Whether to close the popover when scrolling",
4627
4407
  "type": "boolean"
4628
4408
  },
4629
- "a-watermark/staggered": {
4630
- "description": "Whether to stagger the arrangement layout",
4409
+ "a-trigger/scroll-to-close-distance": {
4410
+ "description": "Scroll threshold, trigger close when the scroll distance exceeds this value",
4411
+ "type": "number"
4412
+ },
4413
+ "a-typography-title/edit-start": {
4414
+ "description": "Edit start"
4415
+ },
4416
+ "a-typography-title/change": {
4417
+ "description": "Edit content change"
4418
+ },
4419
+ "a-typography-title/edit-end": {
4420
+ "description": "Edit end"
4421
+ },
4422
+ "a-typography-title/copy": {
4423
+ "description": "Copy"
4424
+ },
4425
+ "a-typography-title/ellipsis": {
4426
+ "description": "Ellipsis change"
4427
+ },
4428
+ "a-typography-title/expand": {
4429
+ "description": "Expand collapse event"
4430
+ },
4431
+ "a-typography-title/heading": {
4432
+ "description": "Heading level, equivalent to `h1` `h2` `h3` `h4` `h5` `h6`",
4433
+ "type": "string"
4434
+ },
4435
+ "a-typography-title/type": {
4436
+ "description": "Text type",
4437
+ "type": "string"
4438
+ },
4439
+ "a-typography-title/bold": {
4440
+ "description": "Whether enable bold style",
4631
4441
  "type": "boolean"
4632
4442
  },
4633
- "a-trigger/popup-visible-change": {
4634
- "description": "Emitted when the status of the popup changes"
4443
+ "a-typography-title/mark": {
4444
+ "description": "Mark style"
4635
4445
  },
4636
- "a-trigger/show": {
4637
- "description": "Triggered after the trigger is shown (the animation ends)"
4446
+ "a-typography-title/underline": {
4447
+ "description": "Whether enable underline style",
4448
+ "type": "boolean"
4638
4449
  },
4639
- "a-trigger/hide": {
4640
- "description": "Triggered after the popup is hidden (the animation ends)"
4450
+ "a-typography-title/delete": {
4451
+ "description": "Whether enable delete style",
4452
+ "type": "boolean"
4641
4453
  },
4642
- "a-trigger/popup-visible": {
4643
- "description": "Whether the popup is visible",
4454
+ "a-typography-title/code": {
4455
+ "description": "Whether enable code style",
4644
4456
  "type": "boolean"
4645
4457
  },
4646
- "a-trigger/default-popup-visible": {
4647
- "description": "Whether the popup is visible by default (uncontrolled mode)",
4458
+ "a-typography-title/disabled": {
4459
+ "description": "Whether disabled",
4648
4460
  "type": "boolean"
4649
4461
  },
4650
- "a-trigger/trigger": {
4651
- "description": "Trigger method"
4462
+ "a-typography-title/editable": {
4463
+ "description": "Whether it's editable",
4464
+ "type": "boolean"
4652
4465
  },
4653
- "a-trigger/position": {
4654
- "description": "Popup position"
4466
+ "a-typography-title/editing": {
4467
+ "description": "Whether it's editing",
4468
+ "type": "boolean"
4655
4469
  },
4656
- "a-trigger/disabled": {
4657
- "description": "Whether the trigger is disabled",
4470
+ "a-typography-title/default-editing": {
4471
+ "description": "Default editing state",
4658
4472
  "type": "boolean"
4659
4473
  },
4660
- "a-trigger/popup-offset": {
4661
- "description": "The offset of the popup (the offset distance of the popup from the trigger)",
4474
+ "a-typography-title/edit-text": {
4475
+ "description": "Edit text",
4476
+ "type": "string"
4477
+ },
4478
+ "a-typography-title/copyable": {
4479
+ "description": "Whether turn on copy functionality",
4480
+ "type": "boolean"
4481
+ },
4482
+ "a-typography-title/copy-text": {
4483
+ "description": "Copied text",
4484
+ "type": "string"
4485
+ },
4486
+ "a-typography-title/copy-delay": {
4487
+ "description": "After the copy is successful, the delay time for the copy button to return to the clickable state, in milliseconds",
4662
4488
  "type": "number"
4663
4489
  },
4664
- "a-trigger/popup-translate": {
4665
- "description": "The moving distance of the popup"
4490
+ "a-typography-title/edit-tooltip-props": {
4491
+ "description": "Edit button question prompt configuration",
4492
+ "type": "object"
4666
4493
  },
4667
- "a-trigger/show-arrow": {
4668
- "description": "Whether the popup shows an arrow",
4494
+ "a-typography-title/copy-tooltip-props": {
4495
+ "description": "Copy button question prompt configuration",
4496
+ "type": "object"
4497
+ },
4498
+ "a-typography-paragraph/edit-start": {
4499
+ "description": "Edit start"
4500
+ },
4501
+ "a-typography-paragraph/change": {
4502
+ "description": "Edit content change"
4503
+ },
4504
+ "a-typography-paragraph/edit-end": {
4505
+ "description": "Edit end"
4506
+ },
4507
+ "a-typography-paragraph/copy": {
4508
+ "description": "Copy"
4509
+ },
4510
+ "a-typography-paragraph/ellipsis": {
4511
+ "description": "Ellipsis change"
4512
+ },
4513
+ "a-typography-paragraph/expand": {
4514
+ "description": "Expand collapse event"
4515
+ },
4516
+ "a-typography-paragraph/blockquote": {
4517
+ "description": "Whether enable blockquote",
4669
4518
  "type": "boolean"
4670
4519
  },
4671
- "a-trigger/align-point": {
4672
- "description": "Whether the popup follows the mouse",
4520
+ "a-typography-paragraph/spacing": {
4521
+ "description": "The line height of the paragraph, the default line height is recommended for long text (more than 5 lines). `close` line height is recommended for short text (less than or equal to 3 lines).",
4522
+ "type": "string"
4523
+ },
4524
+ "a-typography-paragraph/type": {
4525
+ "description": "Text type",
4526
+ "type": "string"
4527
+ },
4528
+ "a-typography-paragraph/bold": {
4529
+ "description": "Whether enable bold style",
4673
4530
  "type": "boolean"
4674
4531
  },
4675
- "a-trigger/popup-hover-stay": {
4676
- "description": "Whether to keep the popup displayed when the trigger is moved out and moved into the popup",
4532
+ "a-typography-paragraph/mark": {
4533
+ "description": "Mark style"
4534
+ },
4535
+ "a-typography-paragraph/underline": {
4536
+ "description": "Whether enable underline style",
4677
4537
  "type": "boolean"
4678
4538
  },
4679
- "a-trigger/blur-to-close": {
4680
- "description": "Whether to close the popup when the trigger loses focus",
4539
+ "a-typography-paragraph/delete": {
4540
+ "description": "Whether enable delete style",
4681
4541
  "type": "boolean"
4682
4542
  },
4683
- "a-trigger/click-to-close": {
4684
- "description": "Whether to close the popup when the trigger is clicked",
4543
+ "a-typography-paragraph/code": {
4544
+ "description": "Whether enable code style",
4685
4545
  "type": "boolean"
4686
4546
  },
4687
- "a-trigger/click-outside-to-close": {
4688
- "description": "Whether to close the popup when clicking on the outer area",
4547
+ "a-typography-paragraph/disabled": {
4548
+ "description": "Whether disabled",
4689
4549
  "type": "boolean"
4690
4550
  },
4691
- "a-trigger/unmount-on-close": {
4692
- "description": "Whether to uninstall the popup node when closing",
4551
+ "a-typography-paragraph/editable": {
4552
+ "description": "Whether it's editable",
4693
4553
  "type": "boolean"
4694
4554
  },
4695
- "a-trigger/content-class": {
4696
- "description": "The class name of the popup content",
4697
- "type": "string|array|object"
4555
+ "a-typography-paragraph/editing": {
4556
+ "description": "Whether it's editing",
4557
+ "type": "boolean"
4698
4558
  },
4699
- "a-trigger/content-style": {
4700
- "description": "The style of the popup content"
4559
+ "a-typography-paragraph/default-editing": {
4560
+ "description": "Default editing state",
4561
+ "type": "boolean"
4701
4562
  },
4702
- "a-trigger/arrow-class": {
4703
- "description": "The class name of the popup arrow",
4704
- "type": "string|array|object"
4563
+ "a-typography-paragraph/edit-text": {
4564
+ "description": "Edit text",
4565
+ "type": "string"
4705
4566
  },
4706
- "a-trigger/arrow-style": {
4707
- "description": "The style of the popup arrow"
4567
+ "a-typography-paragraph/copyable": {
4568
+ "description": "Whether turn on copy functionality",
4569
+ "type": "boolean"
4708
4570
  },
4709
- "a-trigger/popup-style": {
4710
- "description": "The style of the popup"
4571
+ "a-typography-paragraph/copy-text": {
4572
+ "description": "Copied text",
4573
+ "type": "string"
4711
4574
  },
4712
- "a-trigger/animation-name": {
4713
- "description": "The name of the popup animation",
4575
+ "a-typography-paragraph/copy-delay": {
4576
+ "description": "After the copy is successful, the delay time for the copy button to return to the clickable state, in milliseconds",
4577
+ "type": "number"
4578
+ },
4579
+ "a-typography-paragraph/edit-tooltip-props": {
4580
+ "description": "Edit button question prompt configuration",
4581
+ "type": "object"
4582
+ },
4583
+ "a-typography-paragraph/copy-tooltip-props": {
4584
+ "description": "Copy button question prompt configuration",
4585
+ "type": "object"
4586
+ },
4587
+ "a-typography-text/edit-start": {
4588
+ "description": "Edit start"
4589
+ },
4590
+ "a-typography-text/change": {
4591
+ "description": "Edit content change"
4592
+ },
4593
+ "a-typography-text/edit-end": {
4594
+ "description": "Edit end"
4595
+ },
4596
+ "a-typography-text/copy": {
4597
+ "description": "Copy"
4598
+ },
4599
+ "a-typography-text/ellipsis": {
4600
+ "description": "Ellipsis change"
4601
+ },
4602
+ "a-typography-text/expand": {
4603
+ "description": "Expand collapse event"
4604
+ },
4605
+ "a-typography-text/type": {
4606
+ "description": "Text type",
4714
4607
  "type": "string"
4715
4608
  },
4716
- "a-trigger/duration": {
4717
- "description": "The duration of the popup animation"
4609
+ "a-typography-text/bold": {
4610
+ "description": "Whether enable bold style",
4611
+ "type": "boolean"
4718
4612
  },
4719
- "a-trigger/mouse-enter-delay": {
4720
- "description": "Delay trigger time of mouseenter event (ms)",
4721
- "type": "number"
4613
+ "a-typography-text/mark": {
4614
+ "description": "Mark style"
4722
4615
  },
4723
- "a-trigger/mouse-leave-delay": {
4724
- "description": "Delay trigger time of mouseleave event (ms)",
4725
- "type": "number"
4616
+ "a-typography-text/underline": {
4617
+ "description": "Whether enable underline style",
4618
+ "type": "boolean"
4726
4619
  },
4727
- "a-trigger/focus-delay": {
4728
- "description": "Delay trigger time of focus event (ms)",
4729
- "type": "number"
4620
+ "a-typography-text/delete": {
4621
+ "description": "Whether enable delete style",
4622
+ "type": "boolean"
4730
4623
  },
4731
- "a-trigger/auto-fit-popup-width": {
4732
- "description": "Whether to set the width of the popup to the width of the trigger",
4624
+ "a-typography-text/code": {
4625
+ "description": "Whether enable code style",
4733
4626
  "type": "boolean"
4734
4627
  },
4735
- "a-trigger/auto-fit-popup-min-width": {
4736
- "description": "Whether to set the minimum width of the popup to the trigger width",
4628
+ "a-typography-text/disabled": {
4629
+ "description": "Whether disabled",
4737
4630
  "type": "boolean"
4738
4631
  },
4739
- "a-trigger/auto-fix-position": {
4740
- "description": "When the size of the trigger changes, whether to recalculate the position of the popup",
4632
+ "a-typography-text/editable": {
4633
+ "description": "Whether it's editable",
4741
4634
  "type": "boolean"
4742
4635
  },
4743
- "a-trigger/popup-container": {
4744
- "description": "Mount container for popup"
4636
+ "a-typography-text/editing": {
4637
+ "description": "Whether it's editing",
4638
+ "type": "boolean"
4745
4639
  },
4746
- "a-trigger/auto-fit-position": {
4747
- "description": "Whether to automatically adjust the position of the popup to fit the window size",
4640
+ "a-typography-text/default-editing": {
4641
+ "description": "Default editing state",
4748
4642
  "type": "boolean"
4749
4643
  },
4750
- "a-trigger/render-to-body": {
4751
- "description": "Whether to mount under the `body` element",
4644
+ "a-typography-text/edit-text": {
4645
+ "description": "Edit text",
4646
+ "type": "string"
4647
+ },
4648
+ "a-typography-text/copyable": {
4649
+ "description": "Whether turn on copy functionality",
4752
4650
  "type": "boolean"
4753
4651
  },
4754
- "a-trigger/prevent-focus": {
4755
- "description": "Whether to prevent elements in the pop-up layer from gaining focus when clicked",
4652
+ "a-typography-text/copy-text": {
4653
+ "description": "Copied text",
4654
+ "type": "string"
4655
+ },
4656
+ "a-typography-text/copy-delay": {
4657
+ "description": "After the copy is successful, the delay time for the copy button to return to the clickable state, in milliseconds",
4658
+ "type": "number"
4659
+ },
4660
+ "a-typography-text/edit-tooltip-props": {
4661
+ "description": "Edit button question prompt configuration",
4662
+ "type": "object"
4663
+ },
4664
+ "a-typography-text/copy-tooltip-props": {
4665
+ "description": "Copy button question prompt configuration",
4666
+ "type": "object"
4667
+ },
4668
+ "a-verification-code/change": {
4669
+ "description": "Triggered when the value changes"
4670
+ },
4671
+ "a-verification-code/finish": {
4672
+ "description": "Triggered when the filling is complete"
4673
+ },
4674
+ "a-verification-code/input": {
4675
+ "description": "Triggered on input"
4676
+ },
4677
+ "a-verification-code/model-value": {
4678
+ "description": "Value",
4679
+ "type": "string"
4680
+ },
4681
+ "a-verification-code/default-value": {
4682
+ "description": "Default value (uncontrolled state)",
4683
+ "type": "string"
4684
+ },
4685
+ "a-verification-code/length": {
4686
+ "description": "The length of the verification code, rendering the corresponding number of input boxes according to the length.",
4687
+ "type": "number"
4688
+ },
4689
+ "a-verification-code/size": {
4690
+ "description": "Input size"
4691
+ },
4692
+ "a-verification-code/disabled": {
4693
+ "description": "Whether to disable",
4756
4694
  "type": "boolean"
4757
4695
  },
4758
- "a-trigger/scroll-to-close": {
4759
- "description": "Whether to close the popover when scrolling",
4696
+ "a-verification-code/masked": {
4697
+ "description": "Password mode",
4760
4698
  "type": "boolean"
4761
4699
  },
4762
- "a-trigger/scroll-to-close-distance": {
4763
- "description": "Scroll threshold, trigger close when the scroll distance exceeds this value",
4700
+ "a-verification-code/readonly": {
4701
+ "description": "Readonly",
4702
+ "type": "boolean"
4703
+ },
4704
+ "a-verification-code/error": {
4705
+ "description": "Whether it is an error state",
4706
+ "type": "boolean"
4707
+ },
4708
+ "a-verification-code/separator": {
4709
+ "description": "Separator. Customizable rendering separators after input boxes with different indexes"
4710
+ },
4711
+ "a-verification-code/formatter": {
4712
+ "description": "Formatter function, triggered when the user input value changes"
4713
+ },
4714
+ "a-watermark/content": {
4715
+ "description": "Watermark text content"
4716
+ },
4717
+ "a-watermark/image": {
4718
+ "description": "Image watermark address",
4719
+ "type": "string"
4720
+ },
4721
+ "a-watermark/width": {
4722
+ "description": "Watermark width",
4723
+ "type": "number"
4724
+ },
4725
+ "a-watermark/height": {
4726
+ "description": "Watermark height",
4727
+ "type": "number"
4728
+ },
4729
+ "a-watermark/gap": {
4730
+ "description": "Watermark spacing"
4731
+ },
4732
+ "a-watermark/offset": {
4733
+ "description": "The offset from the upper left corner of the container, the default is half the watermark spacing"
4734
+ },
4735
+ "a-watermark/rotate": {
4736
+ "description": "Watermark rotation angle",
4737
+ "type": "number"
4738
+ },
4739
+ "a-watermark/font": {
4740
+ "description": "Watermark font style, specific parameter configuration see [WatermarkFont](#WatermarkFont)"
4741
+ },
4742
+ "a-watermark/z-index": {
4743
+ "description": "Watermark z-index",
4764
4744
  "type": "number"
4745
+ },
4746
+ "a-watermark/alpha": {
4747
+ "description": "Watermark opacity",
4748
+ "type": "number"
4749
+ },
4750
+ "a-watermark/anti-tamper": {
4751
+ "description": "Watermark anti-tampering",
4752
+ "type": "boolean"
4753
+ },
4754
+ "a-watermark/grayscale": {
4755
+ "description": "Grayscale watermark",
4756
+ "type": "boolean"
4757
+ },
4758
+ "a-watermark/repeat": {
4759
+ "description": "Whether to repeat the watermark",
4760
+ "type": "boolean"
4761
+ },
4762
+ "a-watermark/staggered": {
4763
+ "description": "Whether to stagger the arrangement layout",
4764
+ "type": "boolean"
4765
4765
  }
4766
4766
  }