@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
@@ -0,0 +1,3865 @@
1
+ import { PropType } from 'vue';
2
+ import { Dayjs } from 'dayjs';
3
+ import { Size } from '../_utils/constant';
4
+ import { TriggerProps } from '../trigger';
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
7
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ type: {
9
+ type: PropType<"time" | "time-range">;
10
+ default: string;
11
+ };
12
+ modelValue: {
13
+ type: PropType<string | number | Date | Array<string | number | Date>>;
14
+ };
15
+ defaultValue: {
16
+ type: PropType<string | number | Date | Array<string | number | Date>>;
17
+ };
18
+ disabled: {
19
+ type: BooleanConstructor;
20
+ };
21
+ allowClear: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ readonly: {
26
+ type: BooleanConstructor;
27
+ };
28
+ error: {
29
+ type: BooleanConstructor;
30
+ };
31
+ format: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ placeholder: {
36
+ type: PropType<string | string[]>;
37
+ };
38
+ size: {
39
+ type: PropType<Size>;
40
+ };
41
+ popupContainer: {
42
+ type: PropType<string | HTMLElement>;
43
+ };
44
+ use12Hours: {
45
+ type: BooleanConstructor;
46
+ };
47
+ step: {
48
+ type: PropType<{
49
+ hour?: number;
50
+ minute?: number;
51
+ second?: number;
52
+ }>;
53
+ };
54
+ disabledHours: {
55
+ type: PropType<() => number[]>;
56
+ };
57
+ disabledMinutes: {
58
+ type: PropType<(selectedHour?: number) => number[]>;
59
+ };
60
+ disabledSeconds: {
61
+ type: PropType<(selectedHour?: number, selectedMinute?: number) => number[]>;
62
+ };
63
+ hideDisabledOptions: {
64
+ type: BooleanConstructor;
65
+ };
66
+ disableConfirm: {
67
+ type: BooleanConstructor;
68
+ };
69
+ position: {
70
+ type: PropType<"top" | "tl" | "tr" | "bottom" | "bl" | "br">;
71
+ default: string;
72
+ };
73
+ popupVisible: {
74
+ type: BooleanConstructor;
75
+ default: undefined;
76
+ };
77
+ defaultPopupVisible: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ triggerProps: {
82
+ type: PropType<TriggerProps>;
83
+ };
84
+ unmountOnClose: {
85
+ type: BooleanConstructor;
86
+ };
87
+ }>, {
88
+ refInput: import("vue").Ref<any, any>;
89
+ isRange: import("vue").ComputedRef<boolean>;
90
+ prefixCls: string;
91
+ panelVisible: import("vue").ComputedRef<boolean>;
92
+ focusedInputIndex: import("vue").Ref<number, number>;
93
+ computedPlaceholder: import("vue").ComputedRef<string | string[]>;
94
+ panelValue: import("vue").Ref<Dayjs | (Dayjs | undefined)[] | undefined, Dayjs | (Dayjs | undefined)[] | undefined>;
95
+ inputValue: import("vue").Ref<string | (string | undefined)[] | undefined, string | (string | undefined)[] | undefined>;
96
+ computedFormat: import("vue").ComputedRef<string>;
97
+ computedUse12Hours: import("vue").ComputedRef<boolean>;
98
+ inputProps: import("vue").ComputedRef<{
99
+ focusedIndex: number;
100
+ onFocusedIndexChange: (index: number) => void;
101
+ onChange: (e: any) => void;
102
+ onPressEnter: () => void;
103
+ } | {
104
+ onChange: (e: any) => void;
105
+ onPressEnter: () => void;
106
+ focusedIndex?: undefined;
107
+ onFocusedIndexChange?: undefined;
108
+ }>;
109
+ panelProps: import("vue").ComputedRef<{
110
+ displayIndex: number;
111
+ onDisplayIndexChange: (index: number) => void;
112
+ } | {
113
+ displayIndex?: undefined;
114
+ onDisplayIndexChange?: undefined;
115
+ }>;
116
+ mergedDisabled: import("vue").ComputedRef<boolean>;
117
+ onPanelVisibleChange: any;
118
+ onInputClear: (e: Event) => void;
119
+ onPanelSelect: (value: Dayjs | Array<Dayjs | undefined>) => void;
120
+ onPanelConfirm: (value: Dayjs | Dayjs[]) => void;
121
+ onPanelClick: () => void;
122
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
123
+ change: (timeString: string | Array<string | undefined> | undefined, time: Date | Array<Date | undefined> | undefined) => true;
124
+ 'update:modelValue': (timeString: string | Array<string | undefined> | undefined) => true;
125
+ select: (timeString: string | Array<string | undefined>, time: Date | Array<Date | undefined>) => true;
126
+ clear: () => true;
127
+ 'popup-visible-change': (visible: boolean) => true;
128
+ 'update:popupVisible': (visible: boolean) => true;
129
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
130
+ type: {
131
+ type: PropType<"time" | "time-range">;
132
+ default: string;
133
+ };
134
+ modelValue: {
135
+ type: PropType<string | number | Date | Array<string | number | Date>>;
136
+ };
137
+ defaultValue: {
138
+ type: PropType<string | number | Date | Array<string | number | Date>>;
139
+ };
140
+ disabled: {
141
+ type: BooleanConstructor;
142
+ };
143
+ allowClear: {
144
+ type: BooleanConstructor;
145
+ default: boolean;
146
+ };
147
+ readonly: {
148
+ type: BooleanConstructor;
149
+ };
150
+ error: {
151
+ type: BooleanConstructor;
152
+ };
153
+ format: {
154
+ type: StringConstructor;
155
+ default: string;
156
+ };
157
+ placeholder: {
158
+ type: PropType<string | string[]>;
159
+ };
160
+ size: {
161
+ type: PropType<Size>;
162
+ };
163
+ popupContainer: {
164
+ type: PropType<string | HTMLElement>;
165
+ };
166
+ use12Hours: {
167
+ type: BooleanConstructor;
168
+ };
169
+ step: {
170
+ type: PropType<{
171
+ hour?: number;
172
+ minute?: number;
173
+ second?: number;
174
+ }>;
175
+ };
176
+ disabledHours: {
177
+ type: PropType<() => number[]>;
178
+ };
179
+ disabledMinutes: {
180
+ type: PropType<(selectedHour?: number) => number[]>;
181
+ };
182
+ disabledSeconds: {
183
+ type: PropType<(selectedHour?: number, selectedMinute?: number) => number[]>;
184
+ };
185
+ hideDisabledOptions: {
186
+ type: BooleanConstructor;
187
+ };
188
+ disableConfirm: {
189
+ type: BooleanConstructor;
190
+ };
191
+ position: {
192
+ type: PropType<"top" | "tl" | "tr" | "bottom" | "bl" | "br">;
193
+ default: string;
194
+ };
195
+ popupVisible: {
196
+ type: BooleanConstructor;
197
+ default: undefined;
198
+ };
199
+ defaultPopupVisible: {
200
+ type: BooleanConstructor;
201
+ default: boolean;
202
+ };
203
+ triggerProps: {
204
+ type: PropType<TriggerProps>;
205
+ };
206
+ unmountOnClose: {
207
+ type: BooleanConstructor;
208
+ };
209
+ }>> & Readonly<{
210
+ onChange?: ((timeString: string | (string | undefined)[] | undefined, time: Date | (Date | undefined)[] | undefined) => any) | undefined;
211
+ onClear?: (() => any) | undefined;
212
+ onSelect?: ((timeString: string | (string | undefined)[], time: Date | (Date | undefined)[]) => any) | undefined;
213
+ "onUpdate:modelValue"?: ((timeString: string | (string | undefined)[] | undefined) => any) | undefined;
214
+ "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
215
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
216
+ }>, {
217
+ error: boolean;
218
+ readonly: boolean;
219
+ type: "time" | "time-range";
220
+ disabled: boolean;
221
+ unmountOnClose: boolean;
222
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br";
223
+ allowClear: boolean;
224
+ popupVisible: boolean;
225
+ defaultPopupVisible: boolean;
226
+ format: string;
227
+ use12Hours: boolean;
228
+ disableConfirm: boolean;
229
+ hideDisabledOptions: boolean;
230
+ }, {}, {
231
+ Trigger: {
232
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
233
+ popupVisible: {
234
+ type: BooleanConstructor;
235
+ default: undefined;
236
+ };
237
+ defaultPopupVisible: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
241
+ trigger: {
242
+ type: PropType<import("../trigger").TriggerEvent | import("../trigger").TriggerEvent[]>;
243
+ default: string;
244
+ };
245
+ position: {
246
+ type: PropType<import("../trigger").TriggerPosition>;
247
+ default: string;
248
+ };
249
+ disabled: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ popupOffset: {
254
+ type: NumberConstructor;
255
+ default: number;
256
+ };
257
+ popupTranslate: {
258
+ type: PropType<import("../trigger").TriggerPopupTranslate>;
259
+ };
260
+ showArrow: {
261
+ type: BooleanConstructor;
262
+ default: boolean;
263
+ };
264
+ alignPoint: {
265
+ type: BooleanConstructor;
266
+ default: boolean;
267
+ };
268
+ popupHoverStay: {
269
+ type: BooleanConstructor;
270
+ default: boolean;
271
+ };
272
+ blurToClose: {
273
+ type: BooleanConstructor;
274
+ default: boolean;
275
+ };
276
+ clickToClose: {
277
+ type: BooleanConstructor;
278
+ default: boolean;
279
+ };
280
+ clickOutsideToClose: {
281
+ type: BooleanConstructor;
282
+ default: boolean;
283
+ };
284
+ unmountOnClose: {
285
+ type: BooleanConstructor;
286
+ default: boolean;
287
+ };
288
+ contentClass: {
289
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
290
+ };
291
+ contentStyle: {
292
+ type: PropType<import("vue").CSSProperties>;
293
+ };
294
+ arrowClass: {
295
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
296
+ };
297
+ arrowStyle: {
298
+ type: PropType<import("vue").CSSProperties>;
299
+ };
300
+ popupStyle: {
301
+ type: PropType<import("vue").CSSProperties>;
302
+ };
303
+ animationName: {
304
+ type: StringConstructor;
305
+ default: string;
306
+ };
307
+ duration: {
308
+ type: PropType<number | {
309
+ enter: number;
310
+ leave: number;
311
+ }>;
312
+ };
313
+ mouseEnterDelay: {
314
+ type: NumberConstructor;
315
+ default: number;
316
+ };
317
+ mouseLeaveDelay: {
318
+ type: NumberConstructor;
319
+ default: number;
320
+ };
321
+ focusDelay: {
322
+ type: NumberConstructor;
323
+ default: number;
324
+ };
325
+ autoFitPopupWidth: {
326
+ type: BooleanConstructor;
327
+ default: boolean;
328
+ };
329
+ autoFitPopupMinWidth: {
330
+ type: BooleanConstructor;
331
+ default: boolean;
332
+ };
333
+ autoFixPosition: {
334
+ type: BooleanConstructor;
335
+ default: boolean;
336
+ };
337
+ popupContainer: {
338
+ type: PropType<string | HTMLElement>;
339
+ };
340
+ updateAtScroll: {
341
+ type: BooleanConstructor;
342
+ default: boolean;
343
+ };
344
+ autoFitTransformOrigin: {
345
+ type: BooleanConstructor;
346
+ default: boolean;
347
+ };
348
+ hideEmpty: {
349
+ type: BooleanConstructor;
350
+ default: boolean;
351
+ };
352
+ openedClass: {
353
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
354
+ };
355
+ autoFitPosition: {
356
+ type: BooleanConstructor;
357
+ default: boolean;
358
+ };
359
+ renderToBody: {
360
+ type: BooleanConstructor;
361
+ default: boolean;
362
+ };
363
+ preventFocus: {
364
+ type: BooleanConstructor;
365
+ default: boolean;
366
+ };
367
+ scrollToClose: {
368
+ type: BooleanConstructor;
369
+ default: boolean;
370
+ };
371
+ scrollToCloseDistance: {
372
+ type: NumberConstructor;
373
+ default: number;
374
+ };
375
+ }>> & Readonly<{
376
+ onResize?: (() => any) | undefined;
377
+ "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
378
+ onPopupVisibleChange?: ((visible: boolean) => any) | undefined;
379
+ onShow?: (() => any) | undefined;
380
+ onHide?: (() => any) | undefined;
381
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
382
+ 'update:popupVisible': (visible: boolean) => true;
383
+ popupVisibleChange: (visible: boolean) => true;
384
+ show: () => true;
385
+ hide: () => true;
386
+ resize: () => true;
387
+ }, import("vue").PublicProps, {
388
+ disabled: boolean;
389
+ unmountOnClose: boolean;
390
+ renderToBody: boolean;
391
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
392
+ autoFitPosition: boolean;
393
+ popupVisible: boolean;
394
+ defaultPopupVisible: boolean;
395
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
396
+ popupOffset: number;
397
+ showArrow: boolean;
398
+ alignPoint: boolean;
399
+ popupHoverStay: boolean;
400
+ blurToClose: boolean;
401
+ clickToClose: boolean;
402
+ clickOutsideToClose: boolean;
403
+ animationName: string;
404
+ mouseEnterDelay: number;
405
+ mouseLeaveDelay: number;
406
+ focusDelay: number;
407
+ autoFitPopupWidth: boolean;
408
+ autoFitPopupMinWidth: boolean;
409
+ autoFixPosition: boolean;
410
+ updateAtScroll: boolean;
411
+ autoFitTransformOrigin: boolean;
412
+ hideEmpty: boolean;
413
+ preventFocus: boolean;
414
+ scrollToClose: boolean;
415
+ scrollToCloseDistance: number;
416
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
417
+ P: {};
418
+ B: {};
419
+ D: {};
420
+ C: {};
421
+ M: {};
422
+ Defaults: {};
423
+ }, Readonly<import("vue").ExtractPropTypes<{
424
+ popupVisible: {
425
+ type: BooleanConstructor;
426
+ default: undefined;
427
+ };
428
+ defaultPopupVisible: {
429
+ type: BooleanConstructor;
430
+ default: boolean;
431
+ };
432
+ trigger: {
433
+ type: PropType<import("../trigger").TriggerEvent | import("../trigger").TriggerEvent[]>;
434
+ default: string;
435
+ };
436
+ position: {
437
+ type: PropType<import("../trigger").TriggerPosition>;
438
+ default: string;
439
+ };
440
+ disabled: {
441
+ type: BooleanConstructor;
442
+ default: boolean;
443
+ };
444
+ popupOffset: {
445
+ type: NumberConstructor;
446
+ default: number;
447
+ };
448
+ popupTranslate: {
449
+ type: PropType<import("../trigger").TriggerPopupTranslate>;
450
+ };
451
+ showArrow: {
452
+ type: BooleanConstructor;
453
+ default: boolean;
454
+ };
455
+ alignPoint: {
456
+ type: BooleanConstructor;
457
+ default: boolean;
458
+ };
459
+ popupHoverStay: {
460
+ type: BooleanConstructor;
461
+ default: boolean;
462
+ };
463
+ blurToClose: {
464
+ type: BooleanConstructor;
465
+ default: boolean;
466
+ };
467
+ clickToClose: {
468
+ type: BooleanConstructor;
469
+ default: boolean;
470
+ };
471
+ clickOutsideToClose: {
472
+ type: BooleanConstructor;
473
+ default: boolean;
474
+ };
475
+ unmountOnClose: {
476
+ type: BooleanConstructor;
477
+ default: boolean;
478
+ };
479
+ contentClass: {
480
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
481
+ };
482
+ contentStyle: {
483
+ type: PropType<import("vue").CSSProperties>;
484
+ };
485
+ arrowClass: {
486
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
487
+ };
488
+ arrowStyle: {
489
+ type: PropType<import("vue").CSSProperties>;
490
+ };
491
+ popupStyle: {
492
+ type: PropType<import("vue").CSSProperties>;
493
+ };
494
+ animationName: {
495
+ type: StringConstructor;
496
+ default: string;
497
+ };
498
+ duration: {
499
+ type: PropType<number | {
500
+ enter: number;
501
+ leave: number;
502
+ }>;
503
+ };
504
+ mouseEnterDelay: {
505
+ type: NumberConstructor;
506
+ default: number;
507
+ };
508
+ mouseLeaveDelay: {
509
+ type: NumberConstructor;
510
+ default: number;
511
+ };
512
+ focusDelay: {
513
+ type: NumberConstructor;
514
+ default: number;
515
+ };
516
+ autoFitPopupWidth: {
517
+ type: BooleanConstructor;
518
+ default: boolean;
519
+ };
520
+ autoFitPopupMinWidth: {
521
+ type: BooleanConstructor;
522
+ default: boolean;
523
+ };
524
+ autoFixPosition: {
525
+ type: BooleanConstructor;
526
+ default: boolean;
527
+ };
528
+ popupContainer: {
529
+ type: PropType<string | HTMLElement>;
530
+ };
531
+ updateAtScroll: {
532
+ type: BooleanConstructor;
533
+ default: boolean;
534
+ };
535
+ autoFitTransformOrigin: {
536
+ type: BooleanConstructor;
537
+ default: boolean;
538
+ };
539
+ hideEmpty: {
540
+ type: BooleanConstructor;
541
+ default: boolean;
542
+ };
543
+ openedClass: {
544
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
545
+ };
546
+ autoFitPosition: {
547
+ type: BooleanConstructor;
548
+ default: boolean;
549
+ };
550
+ renderToBody: {
551
+ type: BooleanConstructor;
552
+ default: boolean;
553
+ };
554
+ preventFocus: {
555
+ type: BooleanConstructor;
556
+ default: boolean;
557
+ };
558
+ scrollToClose: {
559
+ type: BooleanConstructor;
560
+ default: boolean;
561
+ };
562
+ scrollToCloseDistance: {
563
+ type: NumberConstructor;
564
+ default: number;
565
+ };
566
+ }>> & Readonly<{
567
+ onResize?: (() => any) | undefined;
568
+ "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
569
+ onPopupVisibleChange?: ((visible: boolean) => any) | undefined;
570
+ onShow?: (() => any) | undefined;
571
+ onHide?: (() => any) | undefined;
572
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
573
+ disabled: boolean;
574
+ unmountOnClose: boolean;
575
+ renderToBody: boolean;
576
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
577
+ autoFitPosition: boolean;
578
+ popupVisible: boolean;
579
+ defaultPopupVisible: boolean;
580
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
581
+ popupOffset: number;
582
+ showArrow: boolean;
583
+ alignPoint: boolean;
584
+ popupHoverStay: boolean;
585
+ blurToClose: boolean;
586
+ clickToClose: boolean;
587
+ clickOutsideToClose: boolean;
588
+ animationName: string;
589
+ mouseEnterDelay: number;
590
+ mouseLeaveDelay: number;
591
+ focusDelay: number;
592
+ autoFitPopupWidth: boolean;
593
+ autoFitPopupMinWidth: boolean;
594
+ autoFixPosition: boolean;
595
+ updateAtScroll: boolean;
596
+ autoFitTransformOrigin: boolean;
597
+ hideEmpty: boolean;
598
+ preventFocus: boolean;
599
+ scrollToClose: boolean;
600
+ scrollToCloseDistance: number;
601
+ }>;
602
+ __isFragment?: never;
603
+ __isTeleport?: never;
604
+ __isSuspense?: never;
605
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
606
+ popupVisible: {
607
+ type: BooleanConstructor;
608
+ default: undefined;
609
+ };
610
+ defaultPopupVisible: {
611
+ type: BooleanConstructor;
612
+ default: boolean;
613
+ };
614
+ trigger: {
615
+ type: PropType<import("../trigger").TriggerEvent | import("../trigger").TriggerEvent[]>;
616
+ default: string;
617
+ };
618
+ position: {
619
+ type: PropType<import("../trigger").TriggerPosition>;
620
+ default: string;
621
+ };
622
+ disabled: {
623
+ type: BooleanConstructor;
624
+ default: boolean;
625
+ };
626
+ popupOffset: {
627
+ type: NumberConstructor;
628
+ default: number;
629
+ };
630
+ popupTranslate: {
631
+ type: PropType<import("../trigger").TriggerPopupTranslate>;
632
+ };
633
+ showArrow: {
634
+ type: BooleanConstructor;
635
+ default: boolean;
636
+ };
637
+ alignPoint: {
638
+ type: BooleanConstructor;
639
+ default: boolean;
640
+ };
641
+ popupHoverStay: {
642
+ type: BooleanConstructor;
643
+ default: boolean;
644
+ };
645
+ blurToClose: {
646
+ type: BooleanConstructor;
647
+ default: boolean;
648
+ };
649
+ clickToClose: {
650
+ type: BooleanConstructor;
651
+ default: boolean;
652
+ };
653
+ clickOutsideToClose: {
654
+ type: BooleanConstructor;
655
+ default: boolean;
656
+ };
657
+ unmountOnClose: {
658
+ type: BooleanConstructor;
659
+ default: boolean;
660
+ };
661
+ contentClass: {
662
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
663
+ };
664
+ contentStyle: {
665
+ type: PropType<import("vue").CSSProperties>;
666
+ };
667
+ arrowClass: {
668
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
669
+ };
670
+ arrowStyle: {
671
+ type: PropType<import("vue").CSSProperties>;
672
+ };
673
+ popupStyle: {
674
+ type: PropType<import("vue").CSSProperties>;
675
+ };
676
+ animationName: {
677
+ type: StringConstructor;
678
+ default: string;
679
+ };
680
+ duration: {
681
+ type: PropType<number | {
682
+ enter: number;
683
+ leave: number;
684
+ }>;
685
+ };
686
+ mouseEnterDelay: {
687
+ type: NumberConstructor;
688
+ default: number;
689
+ };
690
+ mouseLeaveDelay: {
691
+ type: NumberConstructor;
692
+ default: number;
693
+ };
694
+ focusDelay: {
695
+ type: NumberConstructor;
696
+ default: number;
697
+ };
698
+ autoFitPopupWidth: {
699
+ type: BooleanConstructor;
700
+ default: boolean;
701
+ };
702
+ autoFitPopupMinWidth: {
703
+ type: BooleanConstructor;
704
+ default: boolean;
705
+ };
706
+ autoFixPosition: {
707
+ type: BooleanConstructor;
708
+ default: boolean;
709
+ };
710
+ popupContainer: {
711
+ type: PropType<string | HTMLElement>;
712
+ };
713
+ updateAtScroll: {
714
+ type: BooleanConstructor;
715
+ default: boolean;
716
+ };
717
+ autoFitTransformOrigin: {
718
+ type: BooleanConstructor;
719
+ default: boolean;
720
+ };
721
+ hideEmpty: {
722
+ type: BooleanConstructor;
723
+ default: boolean;
724
+ };
725
+ openedClass: {
726
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
727
+ };
728
+ autoFitPosition: {
729
+ type: BooleanConstructor;
730
+ default: boolean;
731
+ };
732
+ renderToBody: {
733
+ type: BooleanConstructor;
734
+ default: boolean;
735
+ };
736
+ preventFocus: {
737
+ type: BooleanConstructor;
738
+ default: boolean;
739
+ };
740
+ scrollToClose: {
741
+ type: BooleanConstructor;
742
+ default: boolean;
743
+ };
744
+ scrollToCloseDistance: {
745
+ type: NumberConstructor;
746
+ default: number;
747
+ };
748
+ }>> & Readonly<{
749
+ onResize?: (() => any) | undefined;
750
+ "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
751
+ onPopupVisibleChange?: ((visible: boolean) => any) | undefined;
752
+ onShow?: (() => any) | undefined;
753
+ onHide?: (() => any) | undefined;
754
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
755
+ 'update:popupVisible': (visible: boolean) => true;
756
+ popupVisibleChange: (visible: boolean) => true;
757
+ show: () => true;
758
+ hide: () => true;
759
+ resize: () => true;
760
+ }, string, {
761
+ disabled: boolean;
762
+ unmountOnClose: boolean;
763
+ renderToBody: boolean;
764
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
765
+ autoFitPosition: boolean;
766
+ popupVisible: boolean;
767
+ defaultPopupVisible: boolean;
768
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
769
+ popupOffset: number;
770
+ showArrow: boolean;
771
+ alignPoint: boolean;
772
+ popupHoverStay: boolean;
773
+ blurToClose: boolean;
774
+ clickToClose: boolean;
775
+ clickOutsideToClose: boolean;
776
+ animationName: string;
777
+ mouseEnterDelay: number;
778
+ mouseLeaveDelay: number;
779
+ focusDelay: number;
780
+ autoFitPopupWidth: boolean;
781
+ autoFitPopupMinWidth: boolean;
782
+ autoFixPosition: boolean;
783
+ updateAtScroll: boolean;
784
+ autoFitTransformOrigin: boolean;
785
+ hideEmpty: boolean;
786
+ preventFocus: boolean;
787
+ scrollToClose: boolean;
788
+ scrollToCloseDistance: number;
789
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
790
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDOptions) => void;
791
+ };
792
+ DateInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
793
+ size: {
794
+ type: PropType<"mini" | "small" | "medium" | "large">;
795
+ };
796
+ focused: {
797
+ type: BooleanConstructor;
798
+ };
799
+ disabled: {
800
+ type: BooleanConstructor;
801
+ };
802
+ readonly: {
803
+ type: BooleanConstructor;
804
+ };
805
+ error: {
806
+ type: BooleanConstructor;
807
+ };
808
+ allowClear: {
809
+ type: BooleanConstructor;
810
+ };
811
+ placeholder: {
812
+ type: StringConstructor;
813
+ };
814
+ inputValue: {
815
+ type: StringConstructor;
816
+ };
817
+ value: {
818
+ type: PropType<Dayjs>;
819
+ };
820
+ format: {
821
+ type: PropType<string | ((value: Dayjs) => string)>;
822
+ required: true;
823
+ };
824
+ }>, {
825
+ feedback: import("vue").Ref<string | undefined, string | undefined>;
826
+ prefixCls: string;
827
+ classNames: import("vue").ComputedRef<(string | {
828
+ [x: string]: boolean | import("vue").Slot<any> | undefined;
829
+ })[]>;
830
+ displayValue: import("vue").ComputedRef<string | undefined>;
831
+ mergedDisabled: import("vue").ComputedRef<boolean>;
832
+ refInput: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
833
+ onPressEnter(): void;
834
+ onChange(e: Event): void;
835
+ onClear(e: Event): void;
836
+ onBlur(e: Event): void;
837
+ }, {}, {}, {
838
+ focus(): void;
839
+ blur(): void;
840
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "blur" | "clear" | "press-enter")[], "change" | "blur" | "clear" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
841
+ size: {
842
+ type: PropType<"mini" | "small" | "medium" | "large">;
843
+ };
844
+ focused: {
845
+ type: BooleanConstructor;
846
+ };
847
+ disabled: {
848
+ type: BooleanConstructor;
849
+ };
850
+ readonly: {
851
+ type: BooleanConstructor;
852
+ };
853
+ error: {
854
+ type: BooleanConstructor;
855
+ };
856
+ allowClear: {
857
+ type: BooleanConstructor;
858
+ };
859
+ placeholder: {
860
+ type: StringConstructor;
861
+ };
862
+ inputValue: {
863
+ type: StringConstructor;
864
+ };
865
+ value: {
866
+ type: PropType<Dayjs>;
867
+ };
868
+ format: {
869
+ type: PropType<string | ((value: Dayjs) => string)>;
870
+ required: true;
871
+ };
872
+ }>> & Readonly<{
873
+ onBlur?: ((...args: any[]) => any) | undefined;
874
+ onChange?: ((...args: any[]) => any) | undefined;
875
+ onClear?: ((...args: any[]) => any) | undefined;
876
+ "onPress-enter"?: ((...args: any[]) => any) | undefined;
877
+ }>, {
878
+ error: boolean;
879
+ readonly: boolean;
880
+ disabled: boolean;
881
+ allowClear: boolean;
882
+ focused: boolean;
883
+ }, {}, {
884
+ IconHover: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
885
+ prefix: {
886
+ type: StringConstructor;
887
+ };
888
+ size: {
889
+ type: PropType<Size>;
890
+ default: string;
891
+ };
892
+ disabled: {
893
+ type: BooleanConstructor;
894
+ default: boolean;
895
+ };
896
+ }>, {
897
+ prefixCls: string;
898
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
899
+ prefix: {
900
+ type: StringConstructor;
901
+ };
902
+ size: {
903
+ type: PropType<Size>;
904
+ default: string;
905
+ };
906
+ disabled: {
907
+ type: BooleanConstructor;
908
+ default: boolean;
909
+ };
910
+ }>> & Readonly<{}>, {
911
+ size: "mini" | "small" | "medium" | "large";
912
+ disabled: boolean;
913
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
914
+ IconClose: {
915
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
916
+ size: {
917
+ type: (StringConstructor | NumberConstructor)[];
918
+ };
919
+ strokeWidth: {
920
+ type: NumberConstructor;
921
+ default: number;
922
+ };
923
+ strokeLinecap: {
924
+ type: StringConstructor;
925
+ default: string;
926
+ validator: (value: any) => boolean;
927
+ };
928
+ strokeLinejoin: {
929
+ type: StringConstructor;
930
+ default: string;
931
+ validator: (value: any) => boolean;
932
+ };
933
+ rotate: NumberConstructor;
934
+ spin: BooleanConstructor;
935
+ }>> & Readonly<{
936
+ onClick?: ((ev: MouseEvent) => any) | undefined;
937
+ }>, {
938
+ cls: import("vue").ComputedRef<(string | {
939
+ [x: string]: boolean;
940
+ })[]>;
941
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
942
+ onClick: (ev: MouseEvent) => void;
943
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
944
+ click: (ev: MouseEvent) => true;
945
+ }, import("vue").PublicProps, {
946
+ spin: boolean;
947
+ strokeWidth: number;
948
+ strokeLinecap: string;
949
+ strokeLinejoin: string;
950
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
951
+ P: {};
952
+ B: {};
953
+ D: {};
954
+ C: {};
955
+ M: {};
956
+ Defaults: {};
957
+ }, Readonly<import("vue").ExtractPropTypes<{
958
+ size: {
959
+ type: (StringConstructor | NumberConstructor)[];
960
+ };
961
+ strokeWidth: {
962
+ type: NumberConstructor;
963
+ default: number;
964
+ };
965
+ strokeLinecap: {
966
+ type: StringConstructor;
967
+ default: string;
968
+ validator: (value: any) => boolean;
969
+ };
970
+ strokeLinejoin: {
971
+ type: StringConstructor;
972
+ default: string;
973
+ validator: (value: any) => boolean;
974
+ };
975
+ rotate: NumberConstructor;
976
+ spin: BooleanConstructor;
977
+ }>> & Readonly<{
978
+ onClick?: ((ev: MouseEvent) => any) | undefined;
979
+ }>, {
980
+ cls: import("vue").ComputedRef<(string | {
981
+ [x: string]: boolean;
982
+ })[]>;
983
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
984
+ onClick: (ev: MouseEvent) => void;
985
+ }, {}, {}, {}, {
986
+ spin: boolean;
987
+ strokeWidth: number;
988
+ strokeLinecap: string;
989
+ strokeLinejoin: string;
990
+ }>;
991
+ __isFragment?: never;
992
+ __isTeleport?: never;
993
+ __isSuspense?: never;
994
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
995
+ size: {
996
+ type: (StringConstructor | NumberConstructor)[];
997
+ };
998
+ strokeWidth: {
999
+ type: NumberConstructor;
1000
+ default: number;
1001
+ };
1002
+ strokeLinecap: {
1003
+ type: StringConstructor;
1004
+ default: string;
1005
+ validator: (value: any) => boolean;
1006
+ };
1007
+ strokeLinejoin: {
1008
+ type: StringConstructor;
1009
+ default: string;
1010
+ validator: (value: any) => boolean;
1011
+ };
1012
+ rotate: NumberConstructor;
1013
+ spin: BooleanConstructor;
1014
+ }>> & Readonly<{
1015
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1016
+ }>, {
1017
+ cls: import("vue").ComputedRef<(string | {
1018
+ [x: string]: boolean;
1019
+ })[]>;
1020
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1021
+ onClick: (ev: MouseEvent) => void;
1022
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1023
+ click: (ev: MouseEvent) => true;
1024
+ }, string, {
1025
+ spin: boolean;
1026
+ strokeWidth: number;
1027
+ strokeLinecap: string;
1028
+ strokeLinejoin: string;
1029
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1030
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1031
+ };
1032
+ FeedbackIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1033
+ type: {
1034
+ type: StringConstructor;
1035
+ };
1036
+ }>, {
1037
+ cls: import("vue").ComputedRef<string[]>;
1038
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1039
+ type: {
1040
+ type: StringConstructor;
1041
+ };
1042
+ }>> & Readonly<{}>, {}, {}, {
1043
+ IconLoading: {
1044
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1045
+ size: {
1046
+ type: (StringConstructor | NumberConstructor)[];
1047
+ };
1048
+ strokeWidth: {
1049
+ type: NumberConstructor;
1050
+ default: number;
1051
+ };
1052
+ strokeLinecap: {
1053
+ type: StringConstructor;
1054
+ default: string;
1055
+ validator: (value: any) => boolean;
1056
+ };
1057
+ strokeLinejoin: {
1058
+ type: StringConstructor;
1059
+ default: string;
1060
+ validator: (value: any) => boolean;
1061
+ };
1062
+ rotate: NumberConstructor;
1063
+ spin: BooleanConstructor;
1064
+ }>> & Readonly<{
1065
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1066
+ }>, {
1067
+ cls: import("vue").ComputedRef<(string | {
1068
+ [x: string]: boolean;
1069
+ })[]>;
1070
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1071
+ onClick: (ev: MouseEvent) => void;
1072
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1073
+ click: (ev: MouseEvent) => true;
1074
+ }, import("vue").PublicProps, {
1075
+ spin: boolean;
1076
+ strokeWidth: number;
1077
+ strokeLinecap: string;
1078
+ strokeLinejoin: string;
1079
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1080
+ P: {};
1081
+ B: {};
1082
+ D: {};
1083
+ C: {};
1084
+ M: {};
1085
+ Defaults: {};
1086
+ }, Readonly<import("vue").ExtractPropTypes<{
1087
+ size: {
1088
+ type: (StringConstructor | NumberConstructor)[];
1089
+ };
1090
+ strokeWidth: {
1091
+ type: NumberConstructor;
1092
+ default: number;
1093
+ };
1094
+ strokeLinecap: {
1095
+ type: StringConstructor;
1096
+ default: string;
1097
+ validator: (value: any) => boolean;
1098
+ };
1099
+ strokeLinejoin: {
1100
+ type: StringConstructor;
1101
+ default: string;
1102
+ validator: (value: any) => boolean;
1103
+ };
1104
+ rotate: NumberConstructor;
1105
+ spin: BooleanConstructor;
1106
+ }>> & Readonly<{
1107
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1108
+ }>, {
1109
+ cls: import("vue").ComputedRef<(string | {
1110
+ [x: string]: boolean;
1111
+ })[]>;
1112
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1113
+ onClick: (ev: MouseEvent) => void;
1114
+ }, {}, {}, {}, {
1115
+ spin: boolean;
1116
+ strokeWidth: number;
1117
+ strokeLinecap: string;
1118
+ strokeLinejoin: string;
1119
+ }>;
1120
+ __isFragment?: never;
1121
+ __isTeleport?: never;
1122
+ __isSuspense?: never;
1123
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1124
+ size: {
1125
+ type: (StringConstructor | NumberConstructor)[];
1126
+ };
1127
+ strokeWidth: {
1128
+ type: NumberConstructor;
1129
+ default: number;
1130
+ };
1131
+ strokeLinecap: {
1132
+ type: StringConstructor;
1133
+ default: string;
1134
+ validator: (value: any) => boolean;
1135
+ };
1136
+ strokeLinejoin: {
1137
+ type: StringConstructor;
1138
+ default: string;
1139
+ validator: (value: any) => boolean;
1140
+ };
1141
+ rotate: NumberConstructor;
1142
+ spin: BooleanConstructor;
1143
+ }>> & Readonly<{
1144
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1145
+ }>, {
1146
+ cls: import("vue").ComputedRef<(string | {
1147
+ [x: string]: boolean;
1148
+ })[]>;
1149
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1150
+ onClick: (ev: MouseEvent) => void;
1151
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1152
+ click: (ev: MouseEvent) => true;
1153
+ }, string, {
1154
+ spin: boolean;
1155
+ strokeWidth: number;
1156
+ strokeLinecap: string;
1157
+ strokeLinejoin: string;
1158
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1159
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1160
+ };
1161
+ IconCheckCircleFill: {
1162
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1163
+ size: {
1164
+ type: (StringConstructor | NumberConstructor)[];
1165
+ };
1166
+ strokeWidth: {
1167
+ type: NumberConstructor;
1168
+ default: number;
1169
+ };
1170
+ strokeLinecap: {
1171
+ type: StringConstructor;
1172
+ default: string;
1173
+ validator: (value: any) => boolean;
1174
+ };
1175
+ strokeLinejoin: {
1176
+ type: StringConstructor;
1177
+ default: string;
1178
+ validator: (value: any) => boolean;
1179
+ };
1180
+ rotate: NumberConstructor;
1181
+ spin: BooleanConstructor;
1182
+ }>> & Readonly<{
1183
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1184
+ }>, {
1185
+ cls: import("vue").ComputedRef<(string | {
1186
+ [x: string]: boolean;
1187
+ })[]>;
1188
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1189
+ onClick: (ev: MouseEvent) => void;
1190
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1191
+ click: (ev: MouseEvent) => true;
1192
+ }, import("vue").PublicProps, {
1193
+ spin: boolean;
1194
+ strokeWidth: number;
1195
+ strokeLinecap: string;
1196
+ strokeLinejoin: string;
1197
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1198
+ P: {};
1199
+ B: {};
1200
+ D: {};
1201
+ C: {};
1202
+ M: {};
1203
+ Defaults: {};
1204
+ }, Readonly<import("vue").ExtractPropTypes<{
1205
+ size: {
1206
+ type: (StringConstructor | NumberConstructor)[];
1207
+ };
1208
+ strokeWidth: {
1209
+ type: NumberConstructor;
1210
+ default: number;
1211
+ };
1212
+ strokeLinecap: {
1213
+ type: StringConstructor;
1214
+ default: string;
1215
+ validator: (value: any) => boolean;
1216
+ };
1217
+ strokeLinejoin: {
1218
+ type: StringConstructor;
1219
+ default: string;
1220
+ validator: (value: any) => boolean;
1221
+ };
1222
+ rotate: NumberConstructor;
1223
+ spin: BooleanConstructor;
1224
+ }>> & Readonly<{
1225
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1226
+ }>, {
1227
+ cls: import("vue").ComputedRef<(string | {
1228
+ [x: string]: boolean;
1229
+ })[]>;
1230
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1231
+ onClick: (ev: MouseEvent) => void;
1232
+ }, {}, {}, {}, {
1233
+ spin: boolean;
1234
+ strokeWidth: number;
1235
+ strokeLinecap: string;
1236
+ strokeLinejoin: string;
1237
+ }>;
1238
+ __isFragment?: never;
1239
+ __isTeleport?: never;
1240
+ __isSuspense?: never;
1241
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1242
+ size: {
1243
+ type: (StringConstructor | NumberConstructor)[];
1244
+ };
1245
+ strokeWidth: {
1246
+ type: NumberConstructor;
1247
+ default: number;
1248
+ };
1249
+ strokeLinecap: {
1250
+ type: StringConstructor;
1251
+ default: string;
1252
+ validator: (value: any) => boolean;
1253
+ };
1254
+ strokeLinejoin: {
1255
+ type: StringConstructor;
1256
+ default: string;
1257
+ validator: (value: any) => boolean;
1258
+ };
1259
+ rotate: NumberConstructor;
1260
+ spin: BooleanConstructor;
1261
+ }>> & Readonly<{
1262
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1263
+ }>, {
1264
+ cls: import("vue").ComputedRef<(string | {
1265
+ [x: string]: boolean;
1266
+ })[]>;
1267
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1268
+ onClick: (ev: MouseEvent) => void;
1269
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1270
+ click: (ev: MouseEvent) => true;
1271
+ }, string, {
1272
+ spin: boolean;
1273
+ strokeWidth: number;
1274
+ strokeLinecap: string;
1275
+ strokeLinejoin: string;
1276
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1277
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1278
+ };
1279
+ IconExclamationCircleFill: {
1280
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1281
+ size: {
1282
+ type: (StringConstructor | NumberConstructor)[];
1283
+ };
1284
+ strokeWidth: {
1285
+ type: NumberConstructor;
1286
+ default: number;
1287
+ };
1288
+ strokeLinecap: {
1289
+ type: StringConstructor;
1290
+ default: string;
1291
+ validator: (value: any) => boolean;
1292
+ };
1293
+ strokeLinejoin: {
1294
+ type: StringConstructor;
1295
+ default: string;
1296
+ validator: (value: any) => boolean;
1297
+ };
1298
+ rotate: NumberConstructor;
1299
+ spin: BooleanConstructor;
1300
+ }>> & Readonly<{
1301
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1302
+ }>, {
1303
+ cls: import("vue").ComputedRef<(string | {
1304
+ [x: string]: boolean;
1305
+ })[]>;
1306
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1307
+ onClick: (ev: MouseEvent) => void;
1308
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1309
+ click: (ev: MouseEvent) => true;
1310
+ }, import("vue").PublicProps, {
1311
+ spin: boolean;
1312
+ strokeWidth: number;
1313
+ strokeLinecap: string;
1314
+ strokeLinejoin: string;
1315
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1316
+ P: {};
1317
+ B: {};
1318
+ D: {};
1319
+ C: {};
1320
+ M: {};
1321
+ Defaults: {};
1322
+ }, Readonly<import("vue").ExtractPropTypes<{
1323
+ size: {
1324
+ type: (StringConstructor | NumberConstructor)[];
1325
+ };
1326
+ strokeWidth: {
1327
+ type: NumberConstructor;
1328
+ default: number;
1329
+ };
1330
+ strokeLinecap: {
1331
+ type: StringConstructor;
1332
+ default: string;
1333
+ validator: (value: any) => boolean;
1334
+ };
1335
+ strokeLinejoin: {
1336
+ type: StringConstructor;
1337
+ default: string;
1338
+ validator: (value: any) => boolean;
1339
+ };
1340
+ rotate: NumberConstructor;
1341
+ spin: BooleanConstructor;
1342
+ }>> & Readonly<{
1343
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1344
+ }>, {
1345
+ cls: import("vue").ComputedRef<(string | {
1346
+ [x: string]: boolean;
1347
+ })[]>;
1348
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1349
+ onClick: (ev: MouseEvent) => void;
1350
+ }, {}, {}, {}, {
1351
+ spin: boolean;
1352
+ strokeWidth: number;
1353
+ strokeLinecap: string;
1354
+ strokeLinejoin: string;
1355
+ }>;
1356
+ __isFragment?: never;
1357
+ __isTeleport?: never;
1358
+ __isSuspense?: never;
1359
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1360
+ size: {
1361
+ type: (StringConstructor | NumberConstructor)[];
1362
+ };
1363
+ strokeWidth: {
1364
+ type: NumberConstructor;
1365
+ default: number;
1366
+ };
1367
+ strokeLinecap: {
1368
+ type: StringConstructor;
1369
+ default: string;
1370
+ validator: (value: any) => boolean;
1371
+ };
1372
+ strokeLinejoin: {
1373
+ type: StringConstructor;
1374
+ default: string;
1375
+ validator: (value: any) => boolean;
1376
+ };
1377
+ rotate: NumberConstructor;
1378
+ spin: BooleanConstructor;
1379
+ }>> & Readonly<{
1380
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1381
+ }>, {
1382
+ cls: import("vue").ComputedRef<(string | {
1383
+ [x: string]: boolean;
1384
+ })[]>;
1385
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1386
+ onClick: (ev: MouseEvent) => void;
1387
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1388
+ click: (ev: MouseEvent) => true;
1389
+ }, string, {
1390
+ spin: boolean;
1391
+ strokeWidth: number;
1392
+ strokeLinecap: string;
1393
+ strokeLinejoin: string;
1394
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1395
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1396
+ };
1397
+ IconCloseCircleFill: {
1398
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1399
+ size: {
1400
+ type: (StringConstructor | NumberConstructor)[];
1401
+ };
1402
+ strokeWidth: {
1403
+ type: NumberConstructor;
1404
+ default: number;
1405
+ };
1406
+ strokeLinecap: {
1407
+ type: StringConstructor;
1408
+ default: string;
1409
+ validator: (value: any) => boolean;
1410
+ };
1411
+ strokeLinejoin: {
1412
+ type: StringConstructor;
1413
+ default: string;
1414
+ validator: (value: any) => boolean;
1415
+ };
1416
+ rotate: NumberConstructor;
1417
+ spin: BooleanConstructor;
1418
+ }>> & Readonly<{
1419
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1420
+ }>, {
1421
+ cls: import("vue").ComputedRef<(string | {
1422
+ [x: string]: boolean;
1423
+ })[]>;
1424
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1425
+ onClick: (ev: MouseEvent) => void;
1426
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1427
+ click: (ev: MouseEvent) => true;
1428
+ }, import("vue").PublicProps, {
1429
+ spin: boolean;
1430
+ strokeWidth: number;
1431
+ strokeLinecap: string;
1432
+ strokeLinejoin: string;
1433
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1434
+ P: {};
1435
+ B: {};
1436
+ D: {};
1437
+ C: {};
1438
+ M: {};
1439
+ Defaults: {};
1440
+ }, Readonly<import("vue").ExtractPropTypes<{
1441
+ size: {
1442
+ type: (StringConstructor | NumberConstructor)[];
1443
+ };
1444
+ strokeWidth: {
1445
+ type: NumberConstructor;
1446
+ default: number;
1447
+ };
1448
+ strokeLinecap: {
1449
+ type: StringConstructor;
1450
+ default: string;
1451
+ validator: (value: any) => boolean;
1452
+ };
1453
+ strokeLinejoin: {
1454
+ type: StringConstructor;
1455
+ default: string;
1456
+ validator: (value: any) => boolean;
1457
+ };
1458
+ rotate: NumberConstructor;
1459
+ spin: BooleanConstructor;
1460
+ }>> & Readonly<{
1461
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1462
+ }>, {
1463
+ cls: import("vue").ComputedRef<(string | {
1464
+ [x: string]: boolean;
1465
+ })[]>;
1466
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1467
+ onClick: (ev: MouseEvent) => void;
1468
+ }, {}, {}, {}, {
1469
+ spin: boolean;
1470
+ strokeWidth: number;
1471
+ strokeLinecap: string;
1472
+ strokeLinejoin: string;
1473
+ }>;
1474
+ __isFragment?: never;
1475
+ __isTeleport?: never;
1476
+ __isSuspense?: never;
1477
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1478
+ size: {
1479
+ type: (StringConstructor | NumberConstructor)[];
1480
+ };
1481
+ strokeWidth: {
1482
+ type: NumberConstructor;
1483
+ default: number;
1484
+ };
1485
+ strokeLinecap: {
1486
+ type: StringConstructor;
1487
+ default: string;
1488
+ validator: (value: any) => boolean;
1489
+ };
1490
+ strokeLinejoin: {
1491
+ type: StringConstructor;
1492
+ default: string;
1493
+ validator: (value: any) => boolean;
1494
+ };
1495
+ rotate: NumberConstructor;
1496
+ spin: BooleanConstructor;
1497
+ }>> & Readonly<{
1498
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1499
+ }>, {
1500
+ cls: import("vue").ComputedRef<(string | {
1501
+ [x: string]: boolean;
1502
+ })[]>;
1503
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1504
+ onClick: (ev: MouseEvent) => void;
1505
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1506
+ click: (ev: MouseEvent) => true;
1507
+ }, string, {
1508
+ spin: boolean;
1509
+ strokeWidth: number;
1510
+ strokeLinecap: string;
1511
+ strokeLinejoin: string;
1512
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1513
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1514
+ };
1515
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1516
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1517
+ DateRangeInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1518
+ size: {
1519
+ type: PropType<"mini" | "small" | "medium" | "large">;
1520
+ };
1521
+ focused: {
1522
+ type: BooleanConstructor;
1523
+ };
1524
+ focusedIndex: {
1525
+ type: NumberConstructor;
1526
+ };
1527
+ error: {
1528
+ type: BooleanConstructor;
1529
+ };
1530
+ disabled: {
1531
+ type: PropType<boolean | boolean[]>;
1532
+ default: boolean;
1533
+ };
1534
+ readonly: {
1535
+ type: BooleanConstructor;
1536
+ };
1537
+ allowClear: {
1538
+ type: BooleanConstructor;
1539
+ };
1540
+ placeholder: {
1541
+ type: PropType<string[]>;
1542
+ default: () => never[];
1543
+ };
1544
+ inputValue: {
1545
+ type: PropType<string[]>;
1546
+ };
1547
+ value: {
1548
+ type: PropType<(Dayjs | undefined)[]>;
1549
+ default: () => never[];
1550
+ };
1551
+ format: {
1552
+ type: PropType<string | ((value: Dayjs) => string)>;
1553
+ required: true;
1554
+ };
1555
+ }>, {
1556
+ prefixCls: string;
1557
+ classNames: import("vue").ComputedRef<(string | {
1558
+ [x: string]: boolean | import("vue").Slot<any> | undefined;
1559
+ })[]>;
1560
+ refInput0: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
1561
+ refInput1: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
1562
+ disabled0: import("vue").ComputedRef<boolean>;
1563
+ disabled1: import("vue").ComputedRef<boolean>;
1564
+ mergedDisabled: import("vue").ComputedRef<boolean>;
1565
+ getDisabled: (index: number) => boolean;
1566
+ getInputWrapClassName: (index: number) => (string | {
1567
+ [x: string]: boolean;
1568
+ })[];
1569
+ displayValue0: import("vue").ComputedRef<string | undefined>;
1570
+ displayValue1: import("vue").ComputedRef<string | undefined>;
1571
+ changeFocusedInput: (index: number) => void;
1572
+ onChange: (e: Event) => void;
1573
+ onPressEnter: () => void;
1574
+ onPressTab: (e: Event) => void;
1575
+ onClear: (e: Event) => void;
1576
+ feedback: import("vue").Ref<string | undefined, string | undefined>;
1577
+ }, {}, {}, {
1578
+ focus(index?: number): void;
1579
+ blur(): void;
1580
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "clear" | "press-enter" | "focused-index-change" | "update:focusedIndex")[], "change" | "clear" | "press-enter" | "focused-index-change" | "update:focusedIndex", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1581
+ size: {
1582
+ type: PropType<"mini" | "small" | "medium" | "large">;
1583
+ };
1584
+ focused: {
1585
+ type: BooleanConstructor;
1586
+ };
1587
+ focusedIndex: {
1588
+ type: NumberConstructor;
1589
+ };
1590
+ error: {
1591
+ type: BooleanConstructor;
1592
+ };
1593
+ disabled: {
1594
+ type: PropType<boolean | boolean[]>;
1595
+ default: boolean;
1596
+ };
1597
+ readonly: {
1598
+ type: BooleanConstructor;
1599
+ };
1600
+ allowClear: {
1601
+ type: BooleanConstructor;
1602
+ };
1603
+ placeholder: {
1604
+ type: PropType<string[]>;
1605
+ default: () => never[];
1606
+ };
1607
+ inputValue: {
1608
+ type: PropType<string[]>;
1609
+ };
1610
+ value: {
1611
+ type: PropType<(Dayjs | undefined)[]>;
1612
+ default: () => never[];
1613
+ };
1614
+ format: {
1615
+ type: PropType<string | ((value: Dayjs) => string)>;
1616
+ required: true;
1617
+ };
1618
+ }>> & Readonly<{
1619
+ onChange?: ((...args: any[]) => any) | undefined;
1620
+ onClear?: ((...args: any[]) => any) | undefined;
1621
+ "onPress-enter"?: ((...args: any[]) => any) | undefined;
1622
+ "onFocused-index-change"?: ((...args: any[]) => any) | undefined;
1623
+ "onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
1624
+ }>, {
1625
+ error: boolean;
1626
+ readonly: boolean;
1627
+ disabled: boolean | boolean[];
1628
+ value: (Dayjs | undefined)[];
1629
+ placeholder: string[];
1630
+ allowClear: boolean;
1631
+ focused: boolean;
1632
+ }, {}, {
1633
+ IconHover: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1634
+ prefix: {
1635
+ type: StringConstructor;
1636
+ };
1637
+ size: {
1638
+ type: PropType<Size>;
1639
+ default: string;
1640
+ };
1641
+ disabled: {
1642
+ type: BooleanConstructor;
1643
+ default: boolean;
1644
+ };
1645
+ }>, {
1646
+ prefixCls: string;
1647
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1648
+ prefix: {
1649
+ type: StringConstructor;
1650
+ };
1651
+ size: {
1652
+ type: PropType<Size>;
1653
+ default: string;
1654
+ };
1655
+ disabled: {
1656
+ type: BooleanConstructor;
1657
+ default: boolean;
1658
+ };
1659
+ }>> & Readonly<{}>, {
1660
+ size: "mini" | "small" | "medium" | "large";
1661
+ disabled: boolean;
1662
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1663
+ IconClose: {
1664
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1665
+ size: {
1666
+ type: (StringConstructor | NumberConstructor)[];
1667
+ };
1668
+ strokeWidth: {
1669
+ type: NumberConstructor;
1670
+ default: number;
1671
+ };
1672
+ strokeLinecap: {
1673
+ type: StringConstructor;
1674
+ default: string;
1675
+ validator: (value: any) => boolean;
1676
+ };
1677
+ strokeLinejoin: {
1678
+ type: StringConstructor;
1679
+ default: string;
1680
+ validator: (value: any) => boolean;
1681
+ };
1682
+ rotate: NumberConstructor;
1683
+ spin: BooleanConstructor;
1684
+ }>> & Readonly<{
1685
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1686
+ }>, {
1687
+ cls: import("vue").ComputedRef<(string | {
1688
+ [x: string]: boolean;
1689
+ })[]>;
1690
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1691
+ onClick: (ev: MouseEvent) => void;
1692
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1693
+ click: (ev: MouseEvent) => true;
1694
+ }, import("vue").PublicProps, {
1695
+ spin: boolean;
1696
+ strokeWidth: number;
1697
+ strokeLinecap: string;
1698
+ strokeLinejoin: string;
1699
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1700
+ P: {};
1701
+ B: {};
1702
+ D: {};
1703
+ C: {};
1704
+ M: {};
1705
+ Defaults: {};
1706
+ }, Readonly<import("vue").ExtractPropTypes<{
1707
+ size: {
1708
+ type: (StringConstructor | NumberConstructor)[];
1709
+ };
1710
+ strokeWidth: {
1711
+ type: NumberConstructor;
1712
+ default: number;
1713
+ };
1714
+ strokeLinecap: {
1715
+ type: StringConstructor;
1716
+ default: string;
1717
+ validator: (value: any) => boolean;
1718
+ };
1719
+ strokeLinejoin: {
1720
+ type: StringConstructor;
1721
+ default: string;
1722
+ validator: (value: any) => boolean;
1723
+ };
1724
+ rotate: NumberConstructor;
1725
+ spin: BooleanConstructor;
1726
+ }>> & Readonly<{
1727
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1728
+ }>, {
1729
+ cls: import("vue").ComputedRef<(string | {
1730
+ [x: string]: boolean;
1731
+ })[]>;
1732
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1733
+ onClick: (ev: MouseEvent) => void;
1734
+ }, {}, {}, {}, {
1735
+ spin: boolean;
1736
+ strokeWidth: number;
1737
+ strokeLinecap: string;
1738
+ strokeLinejoin: string;
1739
+ }>;
1740
+ __isFragment?: never;
1741
+ __isTeleport?: never;
1742
+ __isSuspense?: never;
1743
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1744
+ size: {
1745
+ type: (StringConstructor | NumberConstructor)[];
1746
+ };
1747
+ strokeWidth: {
1748
+ type: NumberConstructor;
1749
+ default: number;
1750
+ };
1751
+ strokeLinecap: {
1752
+ type: StringConstructor;
1753
+ default: string;
1754
+ validator: (value: any) => boolean;
1755
+ };
1756
+ strokeLinejoin: {
1757
+ type: StringConstructor;
1758
+ default: string;
1759
+ validator: (value: any) => boolean;
1760
+ };
1761
+ rotate: NumberConstructor;
1762
+ spin: BooleanConstructor;
1763
+ }>> & Readonly<{
1764
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1765
+ }>, {
1766
+ cls: import("vue").ComputedRef<(string | {
1767
+ [x: string]: boolean;
1768
+ })[]>;
1769
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1770
+ onClick: (ev: MouseEvent) => void;
1771
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1772
+ click: (ev: MouseEvent) => true;
1773
+ }, string, {
1774
+ spin: boolean;
1775
+ strokeWidth: number;
1776
+ strokeLinecap: string;
1777
+ strokeLinejoin: string;
1778
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1779
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1780
+ };
1781
+ FeedbackIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1782
+ type: {
1783
+ type: StringConstructor;
1784
+ };
1785
+ }>, {
1786
+ cls: import("vue").ComputedRef<string[]>;
1787
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1788
+ type: {
1789
+ type: StringConstructor;
1790
+ };
1791
+ }>> & Readonly<{}>, {}, {}, {
1792
+ IconLoading: {
1793
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1794
+ size: {
1795
+ type: (StringConstructor | NumberConstructor)[];
1796
+ };
1797
+ strokeWidth: {
1798
+ type: NumberConstructor;
1799
+ default: number;
1800
+ };
1801
+ strokeLinecap: {
1802
+ type: StringConstructor;
1803
+ default: string;
1804
+ validator: (value: any) => boolean;
1805
+ };
1806
+ strokeLinejoin: {
1807
+ type: StringConstructor;
1808
+ default: string;
1809
+ validator: (value: any) => boolean;
1810
+ };
1811
+ rotate: NumberConstructor;
1812
+ spin: BooleanConstructor;
1813
+ }>> & Readonly<{
1814
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1815
+ }>, {
1816
+ cls: import("vue").ComputedRef<(string | {
1817
+ [x: string]: boolean;
1818
+ })[]>;
1819
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1820
+ onClick: (ev: MouseEvent) => void;
1821
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1822
+ click: (ev: MouseEvent) => true;
1823
+ }, import("vue").PublicProps, {
1824
+ spin: boolean;
1825
+ strokeWidth: number;
1826
+ strokeLinecap: string;
1827
+ strokeLinejoin: string;
1828
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1829
+ P: {};
1830
+ B: {};
1831
+ D: {};
1832
+ C: {};
1833
+ M: {};
1834
+ Defaults: {};
1835
+ }, Readonly<import("vue").ExtractPropTypes<{
1836
+ size: {
1837
+ type: (StringConstructor | NumberConstructor)[];
1838
+ };
1839
+ strokeWidth: {
1840
+ type: NumberConstructor;
1841
+ default: number;
1842
+ };
1843
+ strokeLinecap: {
1844
+ type: StringConstructor;
1845
+ default: string;
1846
+ validator: (value: any) => boolean;
1847
+ };
1848
+ strokeLinejoin: {
1849
+ type: StringConstructor;
1850
+ default: string;
1851
+ validator: (value: any) => boolean;
1852
+ };
1853
+ rotate: NumberConstructor;
1854
+ spin: BooleanConstructor;
1855
+ }>> & Readonly<{
1856
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1857
+ }>, {
1858
+ cls: import("vue").ComputedRef<(string | {
1859
+ [x: string]: boolean;
1860
+ })[]>;
1861
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1862
+ onClick: (ev: MouseEvent) => void;
1863
+ }, {}, {}, {}, {
1864
+ spin: boolean;
1865
+ strokeWidth: number;
1866
+ strokeLinecap: string;
1867
+ strokeLinejoin: string;
1868
+ }>;
1869
+ __isFragment?: never;
1870
+ __isTeleport?: never;
1871
+ __isSuspense?: never;
1872
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1873
+ size: {
1874
+ type: (StringConstructor | NumberConstructor)[];
1875
+ };
1876
+ strokeWidth: {
1877
+ type: NumberConstructor;
1878
+ default: number;
1879
+ };
1880
+ strokeLinecap: {
1881
+ type: StringConstructor;
1882
+ default: string;
1883
+ validator: (value: any) => boolean;
1884
+ };
1885
+ strokeLinejoin: {
1886
+ type: StringConstructor;
1887
+ default: string;
1888
+ validator: (value: any) => boolean;
1889
+ };
1890
+ rotate: NumberConstructor;
1891
+ spin: BooleanConstructor;
1892
+ }>> & Readonly<{
1893
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1894
+ }>, {
1895
+ cls: import("vue").ComputedRef<(string | {
1896
+ [x: string]: boolean;
1897
+ })[]>;
1898
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1899
+ onClick: (ev: MouseEvent) => void;
1900
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1901
+ click: (ev: MouseEvent) => true;
1902
+ }, string, {
1903
+ spin: boolean;
1904
+ strokeWidth: number;
1905
+ strokeLinecap: string;
1906
+ strokeLinejoin: string;
1907
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1908
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
1909
+ };
1910
+ IconCheckCircleFill: {
1911
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1912
+ size: {
1913
+ type: (StringConstructor | NumberConstructor)[];
1914
+ };
1915
+ strokeWidth: {
1916
+ type: NumberConstructor;
1917
+ default: number;
1918
+ };
1919
+ strokeLinecap: {
1920
+ type: StringConstructor;
1921
+ default: string;
1922
+ validator: (value: any) => boolean;
1923
+ };
1924
+ strokeLinejoin: {
1925
+ type: StringConstructor;
1926
+ default: string;
1927
+ validator: (value: any) => boolean;
1928
+ };
1929
+ rotate: NumberConstructor;
1930
+ spin: BooleanConstructor;
1931
+ }>> & Readonly<{
1932
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1933
+ }>, {
1934
+ cls: import("vue").ComputedRef<(string | {
1935
+ [x: string]: boolean;
1936
+ })[]>;
1937
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1938
+ onClick: (ev: MouseEvent) => void;
1939
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1940
+ click: (ev: MouseEvent) => true;
1941
+ }, import("vue").PublicProps, {
1942
+ spin: boolean;
1943
+ strokeWidth: number;
1944
+ strokeLinecap: string;
1945
+ strokeLinejoin: string;
1946
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1947
+ P: {};
1948
+ B: {};
1949
+ D: {};
1950
+ C: {};
1951
+ M: {};
1952
+ Defaults: {};
1953
+ }, Readonly<import("vue").ExtractPropTypes<{
1954
+ size: {
1955
+ type: (StringConstructor | NumberConstructor)[];
1956
+ };
1957
+ strokeWidth: {
1958
+ type: NumberConstructor;
1959
+ default: number;
1960
+ };
1961
+ strokeLinecap: {
1962
+ type: StringConstructor;
1963
+ default: string;
1964
+ validator: (value: any) => boolean;
1965
+ };
1966
+ strokeLinejoin: {
1967
+ type: StringConstructor;
1968
+ default: string;
1969
+ validator: (value: any) => boolean;
1970
+ };
1971
+ rotate: NumberConstructor;
1972
+ spin: BooleanConstructor;
1973
+ }>> & Readonly<{
1974
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1975
+ }>, {
1976
+ cls: import("vue").ComputedRef<(string | {
1977
+ [x: string]: boolean;
1978
+ })[]>;
1979
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1980
+ onClick: (ev: MouseEvent) => void;
1981
+ }, {}, {}, {}, {
1982
+ spin: boolean;
1983
+ strokeWidth: number;
1984
+ strokeLinecap: string;
1985
+ strokeLinejoin: string;
1986
+ }>;
1987
+ __isFragment?: never;
1988
+ __isTeleport?: never;
1989
+ __isSuspense?: never;
1990
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1991
+ size: {
1992
+ type: (StringConstructor | NumberConstructor)[];
1993
+ };
1994
+ strokeWidth: {
1995
+ type: NumberConstructor;
1996
+ default: number;
1997
+ };
1998
+ strokeLinecap: {
1999
+ type: StringConstructor;
2000
+ default: string;
2001
+ validator: (value: any) => boolean;
2002
+ };
2003
+ strokeLinejoin: {
2004
+ type: StringConstructor;
2005
+ default: string;
2006
+ validator: (value: any) => boolean;
2007
+ };
2008
+ rotate: NumberConstructor;
2009
+ spin: BooleanConstructor;
2010
+ }>> & Readonly<{
2011
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2012
+ }>, {
2013
+ cls: import("vue").ComputedRef<(string | {
2014
+ [x: string]: boolean;
2015
+ })[]>;
2016
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2017
+ onClick: (ev: MouseEvent) => void;
2018
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2019
+ click: (ev: MouseEvent) => true;
2020
+ }, string, {
2021
+ spin: boolean;
2022
+ strokeWidth: number;
2023
+ strokeLinecap: string;
2024
+ strokeLinejoin: string;
2025
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2026
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
2027
+ };
2028
+ IconExclamationCircleFill: {
2029
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2030
+ size: {
2031
+ type: (StringConstructor | NumberConstructor)[];
2032
+ };
2033
+ strokeWidth: {
2034
+ type: NumberConstructor;
2035
+ default: number;
2036
+ };
2037
+ strokeLinecap: {
2038
+ type: StringConstructor;
2039
+ default: string;
2040
+ validator: (value: any) => boolean;
2041
+ };
2042
+ strokeLinejoin: {
2043
+ type: StringConstructor;
2044
+ default: string;
2045
+ validator: (value: any) => boolean;
2046
+ };
2047
+ rotate: NumberConstructor;
2048
+ spin: BooleanConstructor;
2049
+ }>> & Readonly<{
2050
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2051
+ }>, {
2052
+ cls: import("vue").ComputedRef<(string | {
2053
+ [x: string]: boolean;
2054
+ })[]>;
2055
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2056
+ onClick: (ev: MouseEvent) => void;
2057
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2058
+ click: (ev: MouseEvent) => true;
2059
+ }, import("vue").PublicProps, {
2060
+ spin: boolean;
2061
+ strokeWidth: number;
2062
+ strokeLinecap: string;
2063
+ strokeLinejoin: string;
2064
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2065
+ P: {};
2066
+ B: {};
2067
+ D: {};
2068
+ C: {};
2069
+ M: {};
2070
+ Defaults: {};
2071
+ }, Readonly<import("vue").ExtractPropTypes<{
2072
+ size: {
2073
+ type: (StringConstructor | NumberConstructor)[];
2074
+ };
2075
+ strokeWidth: {
2076
+ type: NumberConstructor;
2077
+ default: number;
2078
+ };
2079
+ strokeLinecap: {
2080
+ type: StringConstructor;
2081
+ default: string;
2082
+ validator: (value: any) => boolean;
2083
+ };
2084
+ strokeLinejoin: {
2085
+ type: StringConstructor;
2086
+ default: string;
2087
+ validator: (value: any) => boolean;
2088
+ };
2089
+ rotate: NumberConstructor;
2090
+ spin: BooleanConstructor;
2091
+ }>> & Readonly<{
2092
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2093
+ }>, {
2094
+ cls: import("vue").ComputedRef<(string | {
2095
+ [x: string]: boolean;
2096
+ })[]>;
2097
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2098
+ onClick: (ev: MouseEvent) => void;
2099
+ }, {}, {}, {}, {
2100
+ spin: boolean;
2101
+ strokeWidth: number;
2102
+ strokeLinecap: string;
2103
+ strokeLinejoin: string;
2104
+ }>;
2105
+ __isFragment?: never;
2106
+ __isTeleport?: never;
2107
+ __isSuspense?: never;
2108
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2109
+ size: {
2110
+ type: (StringConstructor | NumberConstructor)[];
2111
+ };
2112
+ strokeWidth: {
2113
+ type: NumberConstructor;
2114
+ default: number;
2115
+ };
2116
+ strokeLinecap: {
2117
+ type: StringConstructor;
2118
+ default: string;
2119
+ validator: (value: any) => boolean;
2120
+ };
2121
+ strokeLinejoin: {
2122
+ type: StringConstructor;
2123
+ default: string;
2124
+ validator: (value: any) => boolean;
2125
+ };
2126
+ rotate: NumberConstructor;
2127
+ spin: BooleanConstructor;
2128
+ }>> & Readonly<{
2129
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2130
+ }>, {
2131
+ cls: import("vue").ComputedRef<(string | {
2132
+ [x: string]: boolean;
2133
+ })[]>;
2134
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2135
+ onClick: (ev: MouseEvent) => void;
2136
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2137
+ click: (ev: MouseEvent) => true;
2138
+ }, string, {
2139
+ spin: boolean;
2140
+ strokeWidth: number;
2141
+ strokeLinecap: string;
2142
+ strokeLinejoin: string;
2143
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2144
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
2145
+ };
2146
+ IconCloseCircleFill: {
2147
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2148
+ size: {
2149
+ type: (StringConstructor | NumberConstructor)[];
2150
+ };
2151
+ strokeWidth: {
2152
+ type: NumberConstructor;
2153
+ default: number;
2154
+ };
2155
+ strokeLinecap: {
2156
+ type: StringConstructor;
2157
+ default: string;
2158
+ validator: (value: any) => boolean;
2159
+ };
2160
+ strokeLinejoin: {
2161
+ type: StringConstructor;
2162
+ default: string;
2163
+ validator: (value: any) => boolean;
2164
+ };
2165
+ rotate: NumberConstructor;
2166
+ spin: BooleanConstructor;
2167
+ }>> & Readonly<{
2168
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2169
+ }>, {
2170
+ cls: import("vue").ComputedRef<(string | {
2171
+ [x: string]: boolean;
2172
+ })[]>;
2173
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2174
+ onClick: (ev: MouseEvent) => void;
2175
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2176
+ click: (ev: MouseEvent) => true;
2177
+ }, import("vue").PublicProps, {
2178
+ spin: boolean;
2179
+ strokeWidth: number;
2180
+ strokeLinecap: string;
2181
+ strokeLinejoin: string;
2182
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2183
+ P: {};
2184
+ B: {};
2185
+ D: {};
2186
+ C: {};
2187
+ M: {};
2188
+ Defaults: {};
2189
+ }, Readonly<import("vue").ExtractPropTypes<{
2190
+ size: {
2191
+ type: (StringConstructor | NumberConstructor)[];
2192
+ };
2193
+ strokeWidth: {
2194
+ type: NumberConstructor;
2195
+ default: number;
2196
+ };
2197
+ strokeLinecap: {
2198
+ type: StringConstructor;
2199
+ default: string;
2200
+ validator: (value: any) => boolean;
2201
+ };
2202
+ strokeLinejoin: {
2203
+ type: StringConstructor;
2204
+ default: string;
2205
+ validator: (value: any) => boolean;
2206
+ };
2207
+ rotate: NumberConstructor;
2208
+ spin: BooleanConstructor;
2209
+ }>> & Readonly<{
2210
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2211
+ }>, {
2212
+ cls: import("vue").ComputedRef<(string | {
2213
+ [x: string]: boolean;
2214
+ })[]>;
2215
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2216
+ onClick: (ev: MouseEvent) => void;
2217
+ }, {}, {}, {}, {
2218
+ spin: boolean;
2219
+ strokeWidth: number;
2220
+ strokeLinecap: string;
2221
+ strokeLinejoin: string;
2222
+ }>;
2223
+ __isFragment?: never;
2224
+ __isTeleport?: never;
2225
+ __isSuspense?: never;
2226
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2227
+ size: {
2228
+ type: (StringConstructor | NumberConstructor)[];
2229
+ };
2230
+ strokeWidth: {
2231
+ type: NumberConstructor;
2232
+ default: number;
2233
+ };
2234
+ strokeLinecap: {
2235
+ type: StringConstructor;
2236
+ default: string;
2237
+ validator: (value: any) => boolean;
2238
+ };
2239
+ strokeLinejoin: {
2240
+ type: StringConstructor;
2241
+ default: string;
2242
+ validator: (value: any) => boolean;
2243
+ };
2244
+ rotate: NumberConstructor;
2245
+ spin: BooleanConstructor;
2246
+ }>> & Readonly<{
2247
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2248
+ }>, {
2249
+ cls: import("vue").ComputedRef<(string | {
2250
+ [x: string]: boolean;
2251
+ })[]>;
2252
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2253
+ onClick: (ev: MouseEvent) => void;
2254
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2255
+ click: (ev: MouseEvent) => true;
2256
+ }, string, {
2257
+ spin: boolean;
2258
+ strokeWidth: number;
2259
+ strokeLinecap: string;
2260
+ strokeLinejoin: string;
2261
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2262
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
2263
+ };
2264
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2265
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2266
+ Panel: import("vue").DefineComponent<{
2267
+ value?: Dayjs | undefined;
2268
+ defaultValue?: Dayjs | undefined;
2269
+ format: string;
2270
+ visible: boolean;
2271
+ hideFooter: boolean;
2272
+ isRange: boolean;
2273
+ disabled: boolean;
2274
+ step?: {
2275
+ hour?: number;
2276
+ minute?: number;
2277
+ second?: number;
2278
+ } | undefined;
2279
+ disabledHours?: (() => number[]) | undefined;
2280
+ disabledMinutes?: ((selectedHour?: number) => number[]) | undefined;
2281
+ disabledSeconds?: ((selectedHour?: number, selectedMinute?: number) => number[]) | undefined;
2282
+ use12Hours: boolean;
2283
+ hideDisabledOptions: boolean;
2284
+ }, {
2285
+ prefixCls: string;
2286
+ t: (key: string, ...args: any[]) => string;
2287
+ hours: import("vue").ComputedRef<import("./interface.js").TimeList>;
2288
+ minutes: import("vue").ComputedRef<import("./interface.js").TimeList>;
2289
+ seconds: import("vue").ComputedRef<import("./interface.js").TimeList>;
2290
+ ampmList: import("vue").ComputedRef<import("./interface.js").TimeList>;
2291
+ selectedValue: import("vue").Ref<{
2292
+ clone: () => Dayjs;
2293
+ isValid: () => boolean;
2294
+ year: {
2295
+ (): number;
2296
+ (value: number): Dayjs;
2297
+ };
2298
+ month: {
2299
+ (): number;
2300
+ (value: number): Dayjs;
2301
+ };
2302
+ date: {
2303
+ (): number;
2304
+ (value: number): Dayjs;
2305
+ };
2306
+ day: {
2307
+ (): 0 | 1 | 2 | 3 | 4 | 5 | 6;
2308
+ (value: number): Dayjs;
2309
+ };
2310
+ hour: {
2311
+ (): number;
2312
+ (value: number): Dayjs;
2313
+ };
2314
+ minute: {
2315
+ (): number;
2316
+ (value: number): Dayjs;
2317
+ };
2318
+ second: {
2319
+ (): number;
2320
+ (value: number): Dayjs;
2321
+ };
2322
+ millisecond: {
2323
+ (): number;
2324
+ (value: number): Dayjs;
2325
+ };
2326
+ set: (unit: import("dayjs").UnitType, value: number) => Dayjs;
2327
+ get: (unit: import("dayjs").UnitType) => number;
2328
+ add: {
2329
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
2330
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
2331
+ };
2332
+ subtract: {
2333
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
2334
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
2335
+ };
2336
+ startOf: {
2337
+ (unit: import("dayjs").OpUnitType): Dayjs;
2338
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
2339
+ };
2340
+ endOf: {
2341
+ (unit: import("dayjs").OpUnitType): Dayjs;
2342
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
2343
+ };
2344
+ format: (template?: string) => string;
2345
+ diff: (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType | import("dayjs").OpUnitType, float?: boolean) => number;
2346
+ valueOf: () => number;
2347
+ unix: () => number;
2348
+ daysInMonth: () => number;
2349
+ toDate: () => Date;
2350
+ toJSON: () => string;
2351
+ toISOString: () => string;
2352
+ toString: () => string;
2353
+ utcOffset: () => number;
2354
+ isBefore: {
2355
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
2356
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
2357
+ };
2358
+ isSame: {
2359
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
2360
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
2361
+ };
2362
+ isAfter: {
2363
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
2364
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
2365
+ };
2366
+ locale: {
2367
+ (): string;
2368
+ (preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
2369
+ };
2370
+ isBetween: (a: import("dayjs").ConfigType, b: import("dayjs").ConfigType, c?: import("dayjs").OpUnitType | null, d?: "()" | "[]" | "[)" | "(]") => boolean;
2371
+ quarter: {
2372
+ (): number;
2373
+ (quarter: number): Dayjs;
2374
+ };
2375
+ week: {
2376
+ (): number;
2377
+ (value: number): Dayjs;
2378
+ };
2379
+ weekYear: () => number;
2380
+ } | undefined, Dayjs | {
2381
+ clone: () => Dayjs;
2382
+ isValid: () => boolean;
2383
+ year: {
2384
+ (): number;
2385
+ (value: number): Dayjs;
2386
+ };
2387
+ month: {
2388
+ (): number;
2389
+ (value: number): Dayjs;
2390
+ };
2391
+ date: {
2392
+ (): number;
2393
+ (value: number): Dayjs;
2394
+ };
2395
+ day: {
2396
+ (): 0 | 1 | 2 | 3 | 4 | 5 | 6;
2397
+ (value: number): Dayjs;
2398
+ };
2399
+ hour: {
2400
+ (): number;
2401
+ (value: number): Dayjs;
2402
+ };
2403
+ minute: {
2404
+ (): number;
2405
+ (value: number): Dayjs;
2406
+ };
2407
+ second: {
2408
+ (): number;
2409
+ (value: number): Dayjs;
2410
+ };
2411
+ millisecond: {
2412
+ (): number;
2413
+ (value: number): Dayjs;
2414
+ };
2415
+ set: (unit: import("dayjs").UnitType, value: number) => Dayjs;
2416
+ get: (unit: import("dayjs").UnitType) => number;
2417
+ add: {
2418
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
2419
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
2420
+ };
2421
+ subtract: {
2422
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
2423
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
2424
+ };
2425
+ startOf: {
2426
+ (unit: import("dayjs").OpUnitType): Dayjs;
2427
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
2428
+ };
2429
+ endOf: {
2430
+ (unit: import("dayjs").OpUnitType): Dayjs;
2431
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
2432
+ };
2433
+ format: (template?: string) => string;
2434
+ diff: (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType | import("dayjs").OpUnitType, float?: boolean) => number;
2435
+ valueOf: () => number;
2436
+ unix: () => number;
2437
+ daysInMonth: () => number;
2438
+ toDate: () => Date;
2439
+ toJSON: () => string;
2440
+ toISOString: () => string;
2441
+ toString: () => string;
2442
+ utcOffset: () => number;
2443
+ isBefore: {
2444
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
2445
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
2446
+ };
2447
+ isSame: {
2448
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
2449
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
2450
+ };
2451
+ isAfter: {
2452
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
2453
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
2454
+ };
2455
+ locale: {
2456
+ (): string;
2457
+ (preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
2458
+ };
2459
+ isBetween: (a: import("dayjs").ConfigType, b: import("dayjs").ConfigType, c?: import("dayjs").OpUnitType | null, d?: "()" | "[]" | "[)" | "(]") => boolean;
2460
+ quarter: {
2461
+ (): number;
2462
+ (quarter: number): Dayjs;
2463
+ };
2464
+ week: {
2465
+ (): number;
2466
+ (value: number): Dayjs;
2467
+ };
2468
+ weekYear: () => number;
2469
+ } | undefined>;
2470
+ selectedHour: import("vue").ComputedRef<number | undefined>;
2471
+ selectedMinute: import("vue").ComputedRef<number | undefined>;
2472
+ selectedSecond: import("vue").ComputedRef<number | undefined>;
2473
+ selectedAmpm: import("vue").ComputedRef<"pm" | "am">;
2474
+ computedUse12Hours: import("vue").ComputedRef<boolean>;
2475
+ confirmBtnDisabled: import("vue").ComputedRef<boolean>;
2476
+ columns: import("vue").ComputedRef<string[]>;
2477
+ onSelect: (value: number | string, type?: "hour" | "minute" | "second" | "ampm") => void;
2478
+ onSelectNow(): void;
2479
+ onConfirm(): void;
2480
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2481
+ select: (value: Dayjs) => boolean;
2482
+ confirm: (value: Dayjs) => boolean;
2483
+ }, string, import("vue").PublicProps, Readonly<{
2484
+ value?: Dayjs | undefined;
2485
+ defaultValue?: Dayjs | undefined;
2486
+ format: string;
2487
+ visible: boolean;
2488
+ hideFooter: boolean;
2489
+ isRange: boolean;
2490
+ disabled: boolean;
2491
+ step?: {
2492
+ hour?: number;
2493
+ minute?: number;
2494
+ second?: number;
2495
+ } | undefined;
2496
+ disabledHours?: (() => number[]) | undefined;
2497
+ disabledMinutes?: ((selectedHour?: number) => number[]) | undefined;
2498
+ disabledSeconds?: ((selectedHour?: number, selectedMinute?: number) => number[]) | undefined;
2499
+ use12Hours: boolean;
2500
+ hideDisabledOptions: boolean;
2501
+ }> & Readonly<{
2502
+ onSelect?: ((value: Dayjs) => any) | undefined;
2503
+ onConfirm?: ((value: Dayjs) => any) | undefined;
2504
+ }>, {
2505
+ disabled: boolean;
2506
+ visible: boolean;
2507
+ format: string;
2508
+ isRange: boolean;
2509
+ use12Hours: boolean;
2510
+ hideDisabledOptions: boolean;
2511
+ hideFooter: boolean;
2512
+ }, {}, {
2513
+ TimeColumn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2514
+ prefixCls: {
2515
+ type: StringConstructor;
2516
+ required: true;
2517
+ };
2518
+ list: {
2519
+ type: PropType<import("./interface.js").TimeList>;
2520
+ required: true;
2521
+ };
2522
+ value: {
2523
+ type: (StringConstructor | NumberConstructor)[];
2524
+ };
2525
+ visible: {
2526
+ type: BooleanConstructor;
2527
+ };
2528
+ }>, {
2529
+ refWrapper: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2530
+ refMap: import("vue").Ref<Map<string | number, HTMLElement> & Omit<Map<string | number, HTMLElement>, keyof Map<any, any>>, Map<string | number, HTMLElement> | (Map<string | number, HTMLElement> & Omit<Map<string | number, HTMLElement>, keyof Map<any, any>>)>;
2531
+ onItemRef(el: HTMLElement, item: import("./interface.js").TimeListItem): void;
2532
+ onItemClick(item: import("./interface.js").TimeListItem): void;
2533
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2534
+ prefixCls: {
2535
+ type: StringConstructor;
2536
+ required: true;
2537
+ };
2538
+ list: {
2539
+ type: PropType<import("./interface.js").TimeList>;
2540
+ required: true;
2541
+ };
2542
+ value: {
2543
+ type: (StringConstructor | NumberConstructor)[];
2544
+ };
2545
+ visible: {
2546
+ type: BooleanConstructor;
2547
+ };
2548
+ }>> & Readonly<{
2549
+ onSelect?: ((...args: any[]) => any) | undefined;
2550
+ }>, {
2551
+ visible: boolean;
2552
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2553
+ Button: {
2554
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2555
+ type: {
2556
+ type: PropType<import("../button/constants.js").ButtonTypes>;
2557
+ };
2558
+ shape: {
2559
+ type: PropType<import("../_utils/constant").BorderShape>;
2560
+ };
2561
+ status: {
2562
+ type: PropType<import("../index.js").Status>;
2563
+ };
2564
+ size: {
2565
+ type: PropType<Size>;
2566
+ };
2567
+ long: {
2568
+ type: BooleanConstructor;
2569
+ default: boolean;
2570
+ };
2571
+ loading: {
2572
+ type: BooleanConstructor;
2573
+ default: boolean;
2574
+ };
2575
+ disabled: {
2576
+ type: BooleanConstructor;
2577
+ };
2578
+ htmlType: {
2579
+ type: PropType<HTMLButtonElement["type"]>;
2580
+ default: string;
2581
+ };
2582
+ autofocus: {
2583
+ type: BooleanConstructor;
2584
+ default: boolean;
2585
+ };
2586
+ href: StringConstructor;
2587
+ }>> & Readonly<{
2588
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2589
+ }>, {
2590
+ prefixCls: string;
2591
+ cls: import("vue").ComputedRef<(string | {
2592
+ [x: string]: boolean;
2593
+ })[]>;
2594
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2595
+ handleClick: (ev: MouseEvent) => void;
2596
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2597
+ click: (ev: MouseEvent) => true;
2598
+ }, import("vue").PublicProps, {
2599
+ autofocus: boolean;
2600
+ disabled: boolean;
2601
+ long: boolean;
2602
+ loading: boolean;
2603
+ htmlType: "submit" | "reset" | "button";
2604
+ }, true, {}, {}, {
2605
+ IconLoading: {
2606
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2607
+ size: {
2608
+ type: (StringConstructor | NumberConstructor)[];
2609
+ };
2610
+ strokeWidth: {
2611
+ type: NumberConstructor;
2612
+ default: number;
2613
+ };
2614
+ strokeLinecap: {
2615
+ type: StringConstructor;
2616
+ default: string;
2617
+ validator: (value: any) => boolean;
2618
+ };
2619
+ strokeLinejoin: {
2620
+ type: StringConstructor;
2621
+ default: string;
2622
+ validator: (value: any) => boolean;
2623
+ };
2624
+ rotate: NumberConstructor;
2625
+ spin: BooleanConstructor;
2626
+ }>> & Readonly<{
2627
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2628
+ }>, {
2629
+ cls: import("vue").ComputedRef<(string | {
2630
+ [x: string]: boolean;
2631
+ })[]>;
2632
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2633
+ onClick: (ev: MouseEvent) => void;
2634
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2635
+ click: (ev: MouseEvent) => true;
2636
+ }, import("vue").PublicProps, {
2637
+ spin: boolean;
2638
+ strokeWidth: number;
2639
+ strokeLinecap: string;
2640
+ strokeLinejoin: string;
2641
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2642
+ P: {};
2643
+ B: {};
2644
+ D: {};
2645
+ C: {};
2646
+ M: {};
2647
+ Defaults: {};
2648
+ }, Readonly<import("vue").ExtractPropTypes<{
2649
+ size: {
2650
+ type: (StringConstructor | NumberConstructor)[];
2651
+ };
2652
+ strokeWidth: {
2653
+ type: NumberConstructor;
2654
+ default: number;
2655
+ };
2656
+ strokeLinecap: {
2657
+ type: StringConstructor;
2658
+ default: string;
2659
+ validator: (value: any) => boolean;
2660
+ };
2661
+ strokeLinejoin: {
2662
+ type: StringConstructor;
2663
+ default: string;
2664
+ validator: (value: any) => boolean;
2665
+ };
2666
+ rotate: NumberConstructor;
2667
+ spin: BooleanConstructor;
2668
+ }>> & Readonly<{
2669
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2670
+ }>, {
2671
+ cls: import("vue").ComputedRef<(string | {
2672
+ [x: string]: boolean;
2673
+ })[]>;
2674
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2675
+ onClick: (ev: MouseEvent) => void;
2676
+ }, {}, {}, {}, {
2677
+ spin: boolean;
2678
+ strokeWidth: number;
2679
+ strokeLinecap: string;
2680
+ strokeLinejoin: string;
2681
+ }>;
2682
+ __isFragment?: never;
2683
+ __isTeleport?: never;
2684
+ __isSuspense?: never;
2685
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2686
+ size: {
2687
+ type: (StringConstructor | NumberConstructor)[];
2688
+ };
2689
+ strokeWidth: {
2690
+ type: NumberConstructor;
2691
+ default: number;
2692
+ };
2693
+ strokeLinecap: {
2694
+ type: StringConstructor;
2695
+ default: string;
2696
+ validator: (value: any) => boolean;
2697
+ };
2698
+ strokeLinejoin: {
2699
+ type: StringConstructor;
2700
+ default: string;
2701
+ validator: (value: any) => boolean;
2702
+ };
2703
+ rotate: NumberConstructor;
2704
+ spin: BooleanConstructor;
2705
+ }>> & Readonly<{
2706
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2707
+ }>, {
2708
+ cls: import("vue").ComputedRef<(string | {
2709
+ [x: string]: boolean;
2710
+ })[]>;
2711
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2712
+ onClick: (ev: MouseEvent) => void;
2713
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2714
+ click: (ev: MouseEvent) => true;
2715
+ }, string, {
2716
+ spin: boolean;
2717
+ strokeWidth: number;
2718
+ strokeLinecap: string;
2719
+ strokeLinejoin: string;
2720
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2721
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
2722
+ };
2723
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2724
+ P: {};
2725
+ B: {};
2726
+ D: {};
2727
+ C: {};
2728
+ M: {};
2729
+ Defaults: {};
2730
+ }, Readonly<import("vue").ExtractPropTypes<{
2731
+ type: {
2732
+ type: PropType<import("../button/constants.js").ButtonTypes>;
2733
+ };
2734
+ shape: {
2735
+ type: PropType<import("../_utils/constant").BorderShape>;
2736
+ };
2737
+ status: {
2738
+ type: PropType<import("../index.js").Status>;
2739
+ };
2740
+ size: {
2741
+ type: PropType<Size>;
2742
+ };
2743
+ long: {
2744
+ type: BooleanConstructor;
2745
+ default: boolean;
2746
+ };
2747
+ loading: {
2748
+ type: BooleanConstructor;
2749
+ default: boolean;
2750
+ };
2751
+ disabled: {
2752
+ type: BooleanConstructor;
2753
+ };
2754
+ htmlType: {
2755
+ type: PropType<HTMLButtonElement["type"]>;
2756
+ default: string;
2757
+ };
2758
+ autofocus: {
2759
+ type: BooleanConstructor;
2760
+ default: boolean;
2761
+ };
2762
+ href: StringConstructor;
2763
+ }>> & Readonly<{
2764
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2765
+ }>, {
2766
+ prefixCls: string;
2767
+ cls: import("vue").ComputedRef<(string | {
2768
+ [x: string]: boolean;
2769
+ })[]>;
2770
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2771
+ handleClick: (ev: MouseEvent) => void;
2772
+ }, {}, {}, {}, {
2773
+ autofocus: boolean;
2774
+ disabled: boolean;
2775
+ long: boolean;
2776
+ loading: boolean;
2777
+ htmlType: "submit" | "reset" | "button";
2778
+ }>;
2779
+ __isFragment?: never;
2780
+ __isTeleport?: never;
2781
+ __isSuspense?: never;
2782
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2783
+ type: {
2784
+ type: PropType<import("../button/constants.js").ButtonTypes>;
2785
+ };
2786
+ shape: {
2787
+ type: PropType<import("../_utils/constant").BorderShape>;
2788
+ };
2789
+ status: {
2790
+ type: PropType<import("../index.js").Status>;
2791
+ };
2792
+ size: {
2793
+ type: PropType<Size>;
2794
+ };
2795
+ long: {
2796
+ type: BooleanConstructor;
2797
+ default: boolean;
2798
+ };
2799
+ loading: {
2800
+ type: BooleanConstructor;
2801
+ default: boolean;
2802
+ };
2803
+ disabled: {
2804
+ type: BooleanConstructor;
2805
+ };
2806
+ htmlType: {
2807
+ type: PropType<HTMLButtonElement["type"]>;
2808
+ default: string;
2809
+ };
2810
+ autofocus: {
2811
+ type: BooleanConstructor;
2812
+ default: boolean;
2813
+ };
2814
+ href: StringConstructor;
2815
+ }>> & Readonly<{
2816
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2817
+ }>, {
2818
+ prefixCls: string;
2819
+ cls: import("vue").ComputedRef<(string | {
2820
+ [x: string]: boolean;
2821
+ })[]>;
2822
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2823
+ handleClick: (ev: MouseEvent) => void;
2824
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2825
+ click: (ev: MouseEvent) => true;
2826
+ }, string, {
2827
+ autofocus: boolean;
2828
+ disabled: boolean;
2829
+ long: boolean;
2830
+ loading: boolean;
2831
+ htmlType: "submit" | "reset" | "button";
2832
+ }, {}, string, {}, {
2833
+ IconLoading: {
2834
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2835
+ size: {
2836
+ type: (StringConstructor | NumberConstructor)[];
2837
+ };
2838
+ strokeWidth: {
2839
+ type: NumberConstructor;
2840
+ default: number;
2841
+ };
2842
+ strokeLinecap: {
2843
+ type: StringConstructor;
2844
+ default: string;
2845
+ validator: (value: any) => boolean;
2846
+ };
2847
+ strokeLinejoin: {
2848
+ type: StringConstructor;
2849
+ default: string;
2850
+ validator: (value: any) => boolean;
2851
+ };
2852
+ rotate: NumberConstructor;
2853
+ spin: BooleanConstructor;
2854
+ }>> & Readonly<{
2855
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2856
+ }>, {
2857
+ cls: import("vue").ComputedRef<(string | {
2858
+ [x: string]: boolean;
2859
+ })[]>;
2860
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2861
+ onClick: (ev: MouseEvent) => void;
2862
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2863
+ click: (ev: MouseEvent) => true;
2864
+ }, import("vue").PublicProps, {
2865
+ spin: boolean;
2866
+ strokeWidth: number;
2867
+ strokeLinecap: string;
2868
+ strokeLinejoin: string;
2869
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2870
+ P: {};
2871
+ B: {};
2872
+ D: {};
2873
+ C: {};
2874
+ M: {};
2875
+ Defaults: {};
2876
+ }, Readonly<import("vue").ExtractPropTypes<{
2877
+ size: {
2878
+ type: (StringConstructor | NumberConstructor)[];
2879
+ };
2880
+ strokeWidth: {
2881
+ type: NumberConstructor;
2882
+ default: number;
2883
+ };
2884
+ strokeLinecap: {
2885
+ type: StringConstructor;
2886
+ default: string;
2887
+ validator: (value: any) => boolean;
2888
+ };
2889
+ strokeLinejoin: {
2890
+ type: StringConstructor;
2891
+ default: string;
2892
+ validator: (value: any) => boolean;
2893
+ };
2894
+ rotate: NumberConstructor;
2895
+ spin: BooleanConstructor;
2896
+ }>> & Readonly<{
2897
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2898
+ }>, {
2899
+ cls: import("vue").ComputedRef<(string | {
2900
+ [x: string]: boolean;
2901
+ })[]>;
2902
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2903
+ onClick: (ev: MouseEvent) => void;
2904
+ }, {}, {}, {}, {
2905
+ spin: boolean;
2906
+ strokeWidth: number;
2907
+ strokeLinecap: string;
2908
+ strokeLinejoin: string;
2909
+ }>;
2910
+ __isFragment?: never;
2911
+ __isTeleport?: never;
2912
+ __isSuspense?: never;
2913
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2914
+ size: {
2915
+ type: (StringConstructor | NumberConstructor)[];
2916
+ };
2917
+ strokeWidth: {
2918
+ type: NumberConstructor;
2919
+ default: number;
2920
+ };
2921
+ strokeLinecap: {
2922
+ type: StringConstructor;
2923
+ default: string;
2924
+ validator: (value: any) => boolean;
2925
+ };
2926
+ strokeLinejoin: {
2927
+ type: StringConstructor;
2928
+ default: string;
2929
+ validator: (value: any) => boolean;
2930
+ };
2931
+ rotate: NumberConstructor;
2932
+ spin: BooleanConstructor;
2933
+ }>> & Readonly<{
2934
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2935
+ }>, {
2936
+ cls: import("vue").ComputedRef<(string | {
2937
+ [x: string]: boolean;
2938
+ })[]>;
2939
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2940
+ onClick: (ev: MouseEvent) => void;
2941
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2942
+ click: (ev: MouseEvent) => true;
2943
+ }, string, {
2944
+ spin: boolean;
2945
+ strokeWidth: number;
2946
+ strokeLinecap: string;
2947
+ strokeLinejoin: string;
2948
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2949
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
2950
+ };
2951
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2952
+ Group: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2953
+ type: {
2954
+ type: PropType<import("../button/constants.js").ButtonTypes>;
2955
+ };
2956
+ status: {
2957
+ type: PropType<import("../index.js").Status>;
2958
+ };
2959
+ shape: {
2960
+ type: PropType<import("../_utils/constant").BorderShape>;
2961
+ };
2962
+ size: {
2963
+ type: PropType<Size>;
2964
+ };
2965
+ disabled: {
2966
+ type: BooleanConstructor;
2967
+ };
2968
+ }>, {
2969
+ prefixCls: string;
2970
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2971
+ type: {
2972
+ type: PropType<import("../button/constants.js").ButtonTypes>;
2973
+ };
2974
+ status: {
2975
+ type: PropType<import("../index.js").Status>;
2976
+ };
2977
+ shape: {
2978
+ type: PropType<import("../_utils/constant").BorderShape>;
2979
+ };
2980
+ size: {
2981
+ type: PropType<Size>;
2982
+ };
2983
+ disabled: {
2984
+ type: BooleanConstructor;
2985
+ };
2986
+ }>> & Readonly<{}>, {
2987
+ disabled: boolean;
2988
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2989
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDOptions) => void;
2990
+ };
2991
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2992
+ RangePanel: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2993
+ value: {
2994
+ type: PropType<import("./interface.js").RangePanelProps["value"]>;
2995
+ };
2996
+ displayIndex: {
2997
+ type: NumberConstructor;
2998
+ default: number;
2999
+ };
3000
+ }>, {
3001
+ displayValue: import("vue").ComputedRef<Dayjs | undefined>;
3002
+ onSelect: (selectedValue: Dayjs) => void;
3003
+ onConfirm: () => void;
3004
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "confirm" | "update:displayIndex" | "display-index-change")[], "select" | "confirm" | "update:displayIndex" | "display-index-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3005
+ value: {
3006
+ type: PropType<import("./interface.js").RangePanelProps["value"]>;
3007
+ };
3008
+ displayIndex: {
3009
+ type: NumberConstructor;
3010
+ default: number;
3011
+ };
3012
+ }>> & Readonly<{
3013
+ onSelect?: ((...args: any[]) => any) | undefined;
3014
+ onConfirm?: ((...args: any[]) => any) | undefined;
3015
+ "onUpdate:displayIndex"?: ((...args: any[]) => any) | undefined;
3016
+ "onDisplay-index-change"?: ((...args: any[]) => any) | undefined;
3017
+ }>, {
3018
+ displayIndex: number;
3019
+ }, {}, {
3020
+ Panel: import("vue").DefineComponent<{
3021
+ value?: Dayjs | undefined;
3022
+ defaultValue?: Dayjs | undefined;
3023
+ format: string;
3024
+ visible: boolean;
3025
+ hideFooter: boolean;
3026
+ isRange: boolean;
3027
+ disabled: boolean;
3028
+ step?: {
3029
+ hour?: number;
3030
+ minute?: number;
3031
+ second?: number;
3032
+ } | undefined;
3033
+ disabledHours?: (() => number[]) | undefined;
3034
+ disabledMinutes?: ((selectedHour?: number) => number[]) | undefined;
3035
+ disabledSeconds?: ((selectedHour?: number, selectedMinute?: number) => number[]) | undefined;
3036
+ use12Hours: boolean;
3037
+ hideDisabledOptions: boolean;
3038
+ }, {
3039
+ prefixCls: string;
3040
+ t: (key: string, ...args: any[]) => string;
3041
+ hours: import("vue").ComputedRef<import("./interface.js").TimeList>;
3042
+ minutes: import("vue").ComputedRef<import("./interface.js").TimeList>;
3043
+ seconds: import("vue").ComputedRef<import("./interface.js").TimeList>;
3044
+ ampmList: import("vue").ComputedRef<import("./interface.js").TimeList>;
3045
+ selectedValue: import("vue").Ref<{
3046
+ clone: () => Dayjs;
3047
+ isValid: () => boolean;
3048
+ year: {
3049
+ (): number;
3050
+ (value: number): Dayjs;
3051
+ };
3052
+ month: {
3053
+ (): number;
3054
+ (value: number): Dayjs;
3055
+ };
3056
+ date: {
3057
+ (): number;
3058
+ (value: number): Dayjs;
3059
+ };
3060
+ day: {
3061
+ (): 0 | 1 | 2 | 3 | 4 | 5 | 6;
3062
+ (value: number): Dayjs;
3063
+ };
3064
+ hour: {
3065
+ (): number;
3066
+ (value: number): Dayjs;
3067
+ };
3068
+ minute: {
3069
+ (): number;
3070
+ (value: number): Dayjs;
3071
+ };
3072
+ second: {
3073
+ (): number;
3074
+ (value: number): Dayjs;
3075
+ };
3076
+ millisecond: {
3077
+ (): number;
3078
+ (value: number): Dayjs;
3079
+ };
3080
+ set: (unit: import("dayjs").UnitType, value: number) => Dayjs;
3081
+ get: (unit: import("dayjs").UnitType) => number;
3082
+ add: {
3083
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
3084
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
3085
+ };
3086
+ subtract: {
3087
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
3088
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
3089
+ };
3090
+ startOf: {
3091
+ (unit: import("dayjs").OpUnitType): Dayjs;
3092
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
3093
+ };
3094
+ endOf: {
3095
+ (unit: import("dayjs").OpUnitType): Dayjs;
3096
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
3097
+ };
3098
+ format: (template?: string) => string;
3099
+ diff: (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType | import("dayjs").OpUnitType, float?: boolean) => number;
3100
+ valueOf: () => number;
3101
+ unix: () => number;
3102
+ daysInMonth: () => number;
3103
+ toDate: () => Date;
3104
+ toJSON: () => string;
3105
+ toISOString: () => string;
3106
+ toString: () => string;
3107
+ utcOffset: () => number;
3108
+ isBefore: {
3109
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
3110
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
3111
+ };
3112
+ isSame: {
3113
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
3114
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
3115
+ };
3116
+ isAfter: {
3117
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
3118
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
3119
+ };
3120
+ locale: {
3121
+ (): string;
3122
+ (preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
3123
+ };
3124
+ isBetween: (a: import("dayjs").ConfigType, b: import("dayjs").ConfigType, c?: import("dayjs").OpUnitType | null, d?: "()" | "[]" | "[)" | "(]") => boolean;
3125
+ quarter: {
3126
+ (): number;
3127
+ (quarter: number): Dayjs;
3128
+ };
3129
+ week: {
3130
+ (): number;
3131
+ (value: number): Dayjs;
3132
+ };
3133
+ weekYear: () => number;
3134
+ } | undefined, Dayjs | {
3135
+ clone: () => Dayjs;
3136
+ isValid: () => boolean;
3137
+ year: {
3138
+ (): number;
3139
+ (value: number): Dayjs;
3140
+ };
3141
+ month: {
3142
+ (): number;
3143
+ (value: number): Dayjs;
3144
+ };
3145
+ date: {
3146
+ (): number;
3147
+ (value: number): Dayjs;
3148
+ };
3149
+ day: {
3150
+ (): 0 | 1 | 2 | 3 | 4 | 5 | 6;
3151
+ (value: number): Dayjs;
3152
+ };
3153
+ hour: {
3154
+ (): number;
3155
+ (value: number): Dayjs;
3156
+ };
3157
+ minute: {
3158
+ (): number;
3159
+ (value: number): Dayjs;
3160
+ };
3161
+ second: {
3162
+ (): number;
3163
+ (value: number): Dayjs;
3164
+ };
3165
+ millisecond: {
3166
+ (): number;
3167
+ (value: number): Dayjs;
3168
+ };
3169
+ set: (unit: import("dayjs").UnitType, value: number) => Dayjs;
3170
+ get: (unit: import("dayjs").UnitType) => number;
3171
+ add: {
3172
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
3173
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
3174
+ };
3175
+ subtract: {
3176
+ (value: number, unit?: import("dayjs").ManipulateType): Dayjs;
3177
+ (value: number, unit: import("dayjs").QUnitType): Dayjs;
3178
+ };
3179
+ startOf: {
3180
+ (unit: import("dayjs").OpUnitType): Dayjs;
3181
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
3182
+ };
3183
+ endOf: {
3184
+ (unit: import("dayjs").OpUnitType): Dayjs;
3185
+ (unit: import("dayjs").QUnitType | import("dayjs").OpUnitType): Dayjs;
3186
+ };
3187
+ format: (template?: string) => string;
3188
+ diff: (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType | import("dayjs").OpUnitType, float?: boolean) => number;
3189
+ valueOf: () => number;
3190
+ unix: () => number;
3191
+ daysInMonth: () => number;
3192
+ toDate: () => Date;
3193
+ toJSON: () => string;
3194
+ toISOString: () => string;
3195
+ toString: () => string;
3196
+ utcOffset: () => number;
3197
+ isBefore: {
3198
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
3199
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
3200
+ };
3201
+ isSame: {
3202
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
3203
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
3204
+ };
3205
+ isAfter: {
3206
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").OpUnitType): boolean;
3207
+ (date?: import("dayjs").ConfigType, unit?: import("dayjs").QUnitType): boolean;
3208
+ };
3209
+ locale: {
3210
+ (): string;
3211
+ (preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
3212
+ };
3213
+ isBetween: (a: import("dayjs").ConfigType, b: import("dayjs").ConfigType, c?: import("dayjs").OpUnitType | null, d?: "()" | "[]" | "[)" | "(]") => boolean;
3214
+ quarter: {
3215
+ (): number;
3216
+ (quarter: number): Dayjs;
3217
+ };
3218
+ week: {
3219
+ (): number;
3220
+ (value: number): Dayjs;
3221
+ };
3222
+ weekYear: () => number;
3223
+ } | undefined>;
3224
+ selectedHour: import("vue").ComputedRef<number | undefined>;
3225
+ selectedMinute: import("vue").ComputedRef<number | undefined>;
3226
+ selectedSecond: import("vue").ComputedRef<number | undefined>;
3227
+ selectedAmpm: import("vue").ComputedRef<"pm" | "am">;
3228
+ computedUse12Hours: import("vue").ComputedRef<boolean>;
3229
+ confirmBtnDisabled: import("vue").ComputedRef<boolean>;
3230
+ columns: import("vue").ComputedRef<string[]>;
3231
+ onSelect: (value: number | string, type?: "hour" | "minute" | "second" | "ampm") => void;
3232
+ onSelectNow(): void;
3233
+ onConfirm(): void;
3234
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3235
+ select: (value: Dayjs) => boolean;
3236
+ confirm: (value: Dayjs) => boolean;
3237
+ }, string, import("vue").PublicProps, Readonly<{
3238
+ value?: Dayjs | undefined;
3239
+ defaultValue?: Dayjs | undefined;
3240
+ format: string;
3241
+ visible: boolean;
3242
+ hideFooter: boolean;
3243
+ isRange: boolean;
3244
+ disabled: boolean;
3245
+ step?: {
3246
+ hour?: number;
3247
+ minute?: number;
3248
+ second?: number;
3249
+ } | undefined;
3250
+ disabledHours?: (() => number[]) | undefined;
3251
+ disabledMinutes?: ((selectedHour?: number) => number[]) | undefined;
3252
+ disabledSeconds?: ((selectedHour?: number, selectedMinute?: number) => number[]) | undefined;
3253
+ use12Hours: boolean;
3254
+ hideDisabledOptions: boolean;
3255
+ }> & Readonly<{
3256
+ onSelect?: ((value: Dayjs) => any) | undefined;
3257
+ onConfirm?: ((value: Dayjs) => any) | undefined;
3258
+ }>, {
3259
+ disabled: boolean;
3260
+ visible: boolean;
3261
+ format: string;
3262
+ isRange: boolean;
3263
+ use12Hours: boolean;
3264
+ hideDisabledOptions: boolean;
3265
+ hideFooter: boolean;
3266
+ }, {}, {
3267
+ TimeColumn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3268
+ prefixCls: {
3269
+ type: StringConstructor;
3270
+ required: true;
3271
+ };
3272
+ list: {
3273
+ type: PropType<import("./interface.js").TimeList>;
3274
+ required: true;
3275
+ };
3276
+ value: {
3277
+ type: (StringConstructor | NumberConstructor)[];
3278
+ };
3279
+ visible: {
3280
+ type: BooleanConstructor;
3281
+ };
3282
+ }>, {
3283
+ refWrapper: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
3284
+ refMap: import("vue").Ref<Map<string | number, HTMLElement> & Omit<Map<string | number, HTMLElement>, keyof Map<any, any>>, Map<string | number, HTMLElement> | (Map<string | number, HTMLElement> & Omit<Map<string | number, HTMLElement>, keyof Map<any, any>>)>;
3285
+ onItemRef(el: HTMLElement, item: import("./interface.js").TimeListItem): void;
3286
+ onItemClick(item: import("./interface.js").TimeListItem): void;
3287
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3288
+ prefixCls: {
3289
+ type: StringConstructor;
3290
+ required: true;
3291
+ };
3292
+ list: {
3293
+ type: PropType<import("./interface.js").TimeList>;
3294
+ required: true;
3295
+ };
3296
+ value: {
3297
+ type: (StringConstructor | NumberConstructor)[];
3298
+ };
3299
+ visible: {
3300
+ type: BooleanConstructor;
3301
+ };
3302
+ }>> & Readonly<{
3303
+ onSelect?: ((...args: any[]) => any) | undefined;
3304
+ }>, {
3305
+ visible: boolean;
3306
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3307
+ Button: {
3308
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3309
+ type: {
3310
+ type: PropType<import("../button/constants.js").ButtonTypes>;
3311
+ };
3312
+ shape: {
3313
+ type: PropType<import("../_utils/constant").BorderShape>;
3314
+ };
3315
+ status: {
3316
+ type: PropType<import("../index.js").Status>;
3317
+ };
3318
+ size: {
3319
+ type: PropType<Size>;
3320
+ };
3321
+ long: {
3322
+ type: BooleanConstructor;
3323
+ default: boolean;
3324
+ };
3325
+ loading: {
3326
+ type: BooleanConstructor;
3327
+ default: boolean;
3328
+ };
3329
+ disabled: {
3330
+ type: BooleanConstructor;
3331
+ };
3332
+ htmlType: {
3333
+ type: PropType<HTMLButtonElement["type"]>;
3334
+ default: string;
3335
+ };
3336
+ autofocus: {
3337
+ type: BooleanConstructor;
3338
+ default: boolean;
3339
+ };
3340
+ href: StringConstructor;
3341
+ }>> & Readonly<{
3342
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3343
+ }>, {
3344
+ prefixCls: string;
3345
+ cls: import("vue").ComputedRef<(string | {
3346
+ [x: string]: boolean;
3347
+ })[]>;
3348
+ mergedDisabled: import("vue").ComputedRef<boolean>;
3349
+ handleClick: (ev: MouseEvent) => void;
3350
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3351
+ click: (ev: MouseEvent) => true;
3352
+ }, import("vue").PublicProps, {
3353
+ autofocus: boolean;
3354
+ disabled: boolean;
3355
+ long: boolean;
3356
+ loading: boolean;
3357
+ htmlType: "submit" | "reset" | "button";
3358
+ }, true, {}, {}, {
3359
+ IconLoading: {
3360
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3361
+ size: {
3362
+ type: (StringConstructor | NumberConstructor)[];
3363
+ };
3364
+ strokeWidth: {
3365
+ type: NumberConstructor;
3366
+ default: number;
3367
+ };
3368
+ strokeLinecap: {
3369
+ type: StringConstructor;
3370
+ default: string;
3371
+ validator: (value: any) => boolean;
3372
+ };
3373
+ strokeLinejoin: {
3374
+ type: StringConstructor;
3375
+ default: string;
3376
+ validator: (value: any) => boolean;
3377
+ };
3378
+ rotate: NumberConstructor;
3379
+ spin: BooleanConstructor;
3380
+ }>> & Readonly<{
3381
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3382
+ }>, {
3383
+ cls: import("vue").ComputedRef<(string | {
3384
+ [x: string]: boolean;
3385
+ })[]>;
3386
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3387
+ onClick: (ev: MouseEvent) => void;
3388
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3389
+ click: (ev: MouseEvent) => true;
3390
+ }, import("vue").PublicProps, {
3391
+ spin: boolean;
3392
+ strokeWidth: number;
3393
+ strokeLinecap: string;
3394
+ strokeLinejoin: string;
3395
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3396
+ P: {};
3397
+ B: {};
3398
+ D: {};
3399
+ C: {};
3400
+ M: {};
3401
+ Defaults: {};
3402
+ }, Readonly<import("vue").ExtractPropTypes<{
3403
+ size: {
3404
+ type: (StringConstructor | NumberConstructor)[];
3405
+ };
3406
+ strokeWidth: {
3407
+ type: NumberConstructor;
3408
+ default: number;
3409
+ };
3410
+ strokeLinecap: {
3411
+ type: StringConstructor;
3412
+ default: string;
3413
+ validator: (value: any) => boolean;
3414
+ };
3415
+ strokeLinejoin: {
3416
+ type: StringConstructor;
3417
+ default: string;
3418
+ validator: (value: any) => boolean;
3419
+ };
3420
+ rotate: NumberConstructor;
3421
+ spin: BooleanConstructor;
3422
+ }>> & Readonly<{
3423
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3424
+ }>, {
3425
+ cls: import("vue").ComputedRef<(string | {
3426
+ [x: string]: boolean;
3427
+ })[]>;
3428
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3429
+ onClick: (ev: MouseEvent) => void;
3430
+ }, {}, {}, {}, {
3431
+ spin: boolean;
3432
+ strokeWidth: number;
3433
+ strokeLinecap: string;
3434
+ strokeLinejoin: string;
3435
+ }>;
3436
+ __isFragment?: never;
3437
+ __isTeleport?: never;
3438
+ __isSuspense?: never;
3439
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3440
+ size: {
3441
+ type: (StringConstructor | NumberConstructor)[];
3442
+ };
3443
+ strokeWidth: {
3444
+ type: NumberConstructor;
3445
+ default: number;
3446
+ };
3447
+ strokeLinecap: {
3448
+ type: StringConstructor;
3449
+ default: string;
3450
+ validator: (value: any) => boolean;
3451
+ };
3452
+ strokeLinejoin: {
3453
+ type: StringConstructor;
3454
+ default: string;
3455
+ validator: (value: any) => boolean;
3456
+ };
3457
+ rotate: NumberConstructor;
3458
+ spin: BooleanConstructor;
3459
+ }>> & Readonly<{
3460
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3461
+ }>, {
3462
+ cls: import("vue").ComputedRef<(string | {
3463
+ [x: string]: boolean;
3464
+ })[]>;
3465
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3466
+ onClick: (ev: MouseEvent) => void;
3467
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3468
+ click: (ev: MouseEvent) => true;
3469
+ }, string, {
3470
+ spin: boolean;
3471
+ strokeWidth: number;
3472
+ strokeLinecap: string;
3473
+ strokeLinejoin: string;
3474
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3475
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
3476
+ };
3477
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3478
+ P: {};
3479
+ B: {};
3480
+ D: {};
3481
+ C: {};
3482
+ M: {};
3483
+ Defaults: {};
3484
+ }, Readonly<import("vue").ExtractPropTypes<{
3485
+ type: {
3486
+ type: PropType<import("../button/constants.js").ButtonTypes>;
3487
+ };
3488
+ shape: {
3489
+ type: PropType<import("../_utils/constant").BorderShape>;
3490
+ };
3491
+ status: {
3492
+ type: PropType<import("../index.js").Status>;
3493
+ };
3494
+ size: {
3495
+ type: PropType<Size>;
3496
+ };
3497
+ long: {
3498
+ type: BooleanConstructor;
3499
+ default: boolean;
3500
+ };
3501
+ loading: {
3502
+ type: BooleanConstructor;
3503
+ default: boolean;
3504
+ };
3505
+ disabled: {
3506
+ type: BooleanConstructor;
3507
+ };
3508
+ htmlType: {
3509
+ type: PropType<HTMLButtonElement["type"]>;
3510
+ default: string;
3511
+ };
3512
+ autofocus: {
3513
+ type: BooleanConstructor;
3514
+ default: boolean;
3515
+ };
3516
+ href: StringConstructor;
3517
+ }>> & Readonly<{
3518
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3519
+ }>, {
3520
+ prefixCls: string;
3521
+ cls: import("vue").ComputedRef<(string | {
3522
+ [x: string]: boolean;
3523
+ })[]>;
3524
+ mergedDisabled: import("vue").ComputedRef<boolean>;
3525
+ handleClick: (ev: MouseEvent) => void;
3526
+ }, {}, {}, {}, {
3527
+ autofocus: boolean;
3528
+ disabled: boolean;
3529
+ long: boolean;
3530
+ loading: boolean;
3531
+ htmlType: "submit" | "reset" | "button";
3532
+ }>;
3533
+ __isFragment?: never;
3534
+ __isTeleport?: never;
3535
+ __isSuspense?: never;
3536
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3537
+ type: {
3538
+ type: PropType<import("../button/constants.js").ButtonTypes>;
3539
+ };
3540
+ shape: {
3541
+ type: PropType<import("../_utils/constant").BorderShape>;
3542
+ };
3543
+ status: {
3544
+ type: PropType<import("../index.js").Status>;
3545
+ };
3546
+ size: {
3547
+ type: PropType<Size>;
3548
+ };
3549
+ long: {
3550
+ type: BooleanConstructor;
3551
+ default: boolean;
3552
+ };
3553
+ loading: {
3554
+ type: BooleanConstructor;
3555
+ default: boolean;
3556
+ };
3557
+ disabled: {
3558
+ type: BooleanConstructor;
3559
+ };
3560
+ htmlType: {
3561
+ type: PropType<HTMLButtonElement["type"]>;
3562
+ default: string;
3563
+ };
3564
+ autofocus: {
3565
+ type: BooleanConstructor;
3566
+ default: boolean;
3567
+ };
3568
+ href: StringConstructor;
3569
+ }>> & Readonly<{
3570
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3571
+ }>, {
3572
+ prefixCls: string;
3573
+ cls: import("vue").ComputedRef<(string | {
3574
+ [x: string]: boolean;
3575
+ })[]>;
3576
+ mergedDisabled: import("vue").ComputedRef<boolean>;
3577
+ handleClick: (ev: MouseEvent) => void;
3578
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3579
+ click: (ev: MouseEvent) => true;
3580
+ }, string, {
3581
+ autofocus: boolean;
3582
+ disabled: boolean;
3583
+ long: boolean;
3584
+ loading: boolean;
3585
+ htmlType: "submit" | "reset" | "button";
3586
+ }, {}, string, {}, {
3587
+ IconLoading: {
3588
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3589
+ size: {
3590
+ type: (StringConstructor | NumberConstructor)[];
3591
+ };
3592
+ strokeWidth: {
3593
+ type: NumberConstructor;
3594
+ default: number;
3595
+ };
3596
+ strokeLinecap: {
3597
+ type: StringConstructor;
3598
+ default: string;
3599
+ validator: (value: any) => boolean;
3600
+ };
3601
+ strokeLinejoin: {
3602
+ type: StringConstructor;
3603
+ default: string;
3604
+ validator: (value: any) => boolean;
3605
+ };
3606
+ rotate: NumberConstructor;
3607
+ spin: BooleanConstructor;
3608
+ }>> & Readonly<{
3609
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3610
+ }>, {
3611
+ cls: import("vue").ComputedRef<(string | {
3612
+ [x: string]: boolean;
3613
+ })[]>;
3614
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3615
+ onClick: (ev: MouseEvent) => void;
3616
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3617
+ click: (ev: MouseEvent) => true;
3618
+ }, import("vue").PublicProps, {
3619
+ spin: boolean;
3620
+ strokeWidth: number;
3621
+ strokeLinecap: string;
3622
+ strokeLinejoin: string;
3623
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3624
+ P: {};
3625
+ B: {};
3626
+ D: {};
3627
+ C: {};
3628
+ M: {};
3629
+ Defaults: {};
3630
+ }, Readonly<import("vue").ExtractPropTypes<{
3631
+ size: {
3632
+ type: (StringConstructor | NumberConstructor)[];
3633
+ };
3634
+ strokeWidth: {
3635
+ type: NumberConstructor;
3636
+ default: number;
3637
+ };
3638
+ strokeLinecap: {
3639
+ type: StringConstructor;
3640
+ default: string;
3641
+ validator: (value: any) => boolean;
3642
+ };
3643
+ strokeLinejoin: {
3644
+ type: StringConstructor;
3645
+ default: string;
3646
+ validator: (value: any) => boolean;
3647
+ };
3648
+ rotate: NumberConstructor;
3649
+ spin: BooleanConstructor;
3650
+ }>> & Readonly<{
3651
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3652
+ }>, {
3653
+ cls: import("vue").ComputedRef<(string | {
3654
+ [x: string]: boolean;
3655
+ })[]>;
3656
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3657
+ onClick: (ev: MouseEvent) => void;
3658
+ }, {}, {}, {}, {
3659
+ spin: boolean;
3660
+ strokeWidth: number;
3661
+ strokeLinecap: string;
3662
+ strokeLinejoin: string;
3663
+ }>;
3664
+ __isFragment?: never;
3665
+ __isTeleport?: never;
3666
+ __isSuspense?: never;
3667
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3668
+ size: {
3669
+ type: (StringConstructor | NumberConstructor)[];
3670
+ };
3671
+ strokeWidth: {
3672
+ type: NumberConstructor;
3673
+ default: number;
3674
+ };
3675
+ strokeLinecap: {
3676
+ type: StringConstructor;
3677
+ default: string;
3678
+ validator: (value: any) => boolean;
3679
+ };
3680
+ strokeLinejoin: {
3681
+ type: StringConstructor;
3682
+ default: string;
3683
+ validator: (value: any) => boolean;
3684
+ };
3685
+ rotate: NumberConstructor;
3686
+ spin: BooleanConstructor;
3687
+ }>> & Readonly<{
3688
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3689
+ }>, {
3690
+ cls: import("vue").ComputedRef<(string | {
3691
+ [x: string]: boolean;
3692
+ })[]>;
3693
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3694
+ onClick: (ev: MouseEvent) => void;
3695
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3696
+ click: (ev: MouseEvent) => true;
3697
+ }, string, {
3698
+ spin: boolean;
3699
+ strokeWidth: number;
3700
+ strokeLinecap: string;
3701
+ strokeLinejoin: string;
3702
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3703
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
3704
+ };
3705
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3706
+ Group: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3707
+ type: {
3708
+ type: PropType<import("../button/constants.js").ButtonTypes>;
3709
+ };
3710
+ status: {
3711
+ type: PropType<import("../index.js").Status>;
3712
+ };
3713
+ shape: {
3714
+ type: PropType<import("../_utils/constant").BorderShape>;
3715
+ };
3716
+ size: {
3717
+ type: PropType<Size>;
3718
+ };
3719
+ disabled: {
3720
+ type: BooleanConstructor;
3721
+ };
3722
+ }>, {
3723
+ prefixCls: string;
3724
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3725
+ type: {
3726
+ type: PropType<import("../button/constants.js").ButtonTypes>;
3727
+ };
3728
+ status: {
3729
+ type: PropType<import("../index.js").Status>;
3730
+ };
3731
+ shape: {
3732
+ type: PropType<import("../_utils/constant").BorderShape>;
3733
+ };
3734
+ size: {
3735
+ type: PropType<Size>;
3736
+ };
3737
+ disabled: {
3738
+ type: BooleanConstructor;
3739
+ };
3740
+ }>> & Readonly<{}>, {
3741
+ disabled: boolean;
3742
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3743
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDOptions) => void;
3744
+ };
3745
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3746
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3747
+ IconClockCircle: {
3748
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3749
+ size: {
3750
+ type: (StringConstructor | NumberConstructor)[];
3751
+ };
3752
+ strokeWidth: {
3753
+ type: NumberConstructor;
3754
+ default: number;
3755
+ };
3756
+ strokeLinecap: {
3757
+ type: StringConstructor;
3758
+ default: string;
3759
+ validator: (value: any) => boolean;
3760
+ };
3761
+ strokeLinejoin: {
3762
+ type: StringConstructor;
3763
+ default: string;
3764
+ validator: (value: any) => boolean;
3765
+ };
3766
+ rotate: NumberConstructor;
3767
+ spin: BooleanConstructor;
3768
+ }>> & Readonly<{
3769
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3770
+ }>, {
3771
+ cls: import("vue").ComputedRef<(string | {
3772
+ [x: string]: boolean;
3773
+ })[]>;
3774
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3775
+ onClick: (ev: MouseEvent) => void;
3776
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3777
+ click: (ev: MouseEvent) => true;
3778
+ }, import("vue").PublicProps, {
3779
+ spin: boolean;
3780
+ strokeWidth: number;
3781
+ strokeLinecap: string;
3782
+ strokeLinejoin: string;
3783
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3784
+ P: {};
3785
+ B: {};
3786
+ D: {};
3787
+ C: {};
3788
+ M: {};
3789
+ Defaults: {};
3790
+ }, Readonly<import("vue").ExtractPropTypes<{
3791
+ size: {
3792
+ type: (StringConstructor | NumberConstructor)[];
3793
+ };
3794
+ strokeWidth: {
3795
+ type: NumberConstructor;
3796
+ default: number;
3797
+ };
3798
+ strokeLinecap: {
3799
+ type: StringConstructor;
3800
+ default: string;
3801
+ validator: (value: any) => boolean;
3802
+ };
3803
+ strokeLinejoin: {
3804
+ type: StringConstructor;
3805
+ default: string;
3806
+ validator: (value: any) => boolean;
3807
+ };
3808
+ rotate: NumberConstructor;
3809
+ spin: BooleanConstructor;
3810
+ }>> & Readonly<{
3811
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3812
+ }>, {
3813
+ cls: import("vue").ComputedRef<(string | {
3814
+ [x: string]: boolean;
3815
+ })[]>;
3816
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3817
+ onClick: (ev: MouseEvent) => void;
3818
+ }, {}, {}, {}, {
3819
+ spin: boolean;
3820
+ strokeWidth: number;
3821
+ strokeLinecap: string;
3822
+ strokeLinejoin: string;
3823
+ }>;
3824
+ __isFragment?: never;
3825
+ __isTeleport?: never;
3826
+ __isSuspense?: never;
3827
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3828
+ size: {
3829
+ type: (StringConstructor | NumberConstructor)[];
3830
+ };
3831
+ strokeWidth: {
3832
+ type: NumberConstructor;
3833
+ default: number;
3834
+ };
3835
+ strokeLinecap: {
3836
+ type: StringConstructor;
3837
+ default: string;
3838
+ validator: (value: any) => boolean;
3839
+ };
3840
+ strokeLinejoin: {
3841
+ type: StringConstructor;
3842
+ default: string;
3843
+ validator: (value: any) => boolean;
3844
+ };
3845
+ rotate: NumberConstructor;
3846
+ spin: BooleanConstructor;
3847
+ }>> & Readonly<{
3848
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3849
+ }>, {
3850
+ cls: import("vue").ComputedRef<(string | {
3851
+ [x: string]: boolean;
3852
+ })[]>;
3853
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3854
+ onClick: (ev: MouseEvent) => void;
3855
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3856
+ click: (ev: MouseEvent) => true;
3857
+ }, string, {
3858
+ spin: boolean;
3859
+ strokeWidth: number;
3860
+ strokeLinecap: string;
3861
+ strokeLinejoin: string;
3862
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3863
+ install: (app: import("vue").App, options?: import("../_utils/types.js").SDIconOptions) => void;
3864
+ };
3865
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;