@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
@@ -1,6 +1,6 @@
1
1
  import type { App } from 'vue';
2
2
  import type { SDOptions } from '../_utils/types';
3
- import _Popconfirm from './popconfirm';
3
+ import _Popconfirm from './popconfirm.vue';
4
4
  declare const Popconfirm: {
5
5
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
6
6
  content: StringConstructor;
@@ -54,10 +54,10 @@ declare const Popconfirm: {
54
54
  type: import("vue").PropType<() => boolean>;
55
55
  };
56
56
  }>> & Readonly<{
57
+ onCancel?: (() => any) | undefined;
58
+ onOk?: (() => any) | undefined;
57
59
  "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
58
60
  onPopupVisibleChange?: ((visible: boolean) => any) | undefined;
59
- onOk?: (() => any) | undefined;
60
- onCancel?: (() => any) | undefined;
61
61
  }>, {
62
62
  prefixCls: string;
63
63
  contentCls: import("vue").ComputedRef<(import("../_utils/types").ClassName | undefined)[]>;
@@ -74,11 +74,11 @@ declare const Popconfirm: {
74
74
  ok: () => true;
75
75
  cancel: () => true;
76
76
  }, import("vue").PublicProps, {
77
- type: "success" | "warning" | "error" | "info";
77
+ type: "success" | "warning" | "info" | "error";
78
+ okLoading: boolean;
79
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
78
80
  popupVisible: boolean;
79
81
  defaultPopupVisible: boolean;
80
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
81
- okLoading: boolean;
82
82
  }, true, {}, {}, {
83
83
  SDButton: {
84
84
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -126,13 +126,130 @@ declare const Popconfirm: {
126
126
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
127
127
  click: (ev: MouseEvent) => true;
128
128
  }, import("vue").PublicProps, {
129
+ autofocus: boolean;
130
+ disabled: boolean;
129
131
  long: boolean;
130
132
  loading: boolean;
131
- disabled: boolean;
132
133
  htmlType: "submit" | "reset" | "button";
133
- autofocus: boolean;
134
134
  }, true, {}, {}, {
135
- IconLoading: any;
135
+ IconLoading: {
136
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
137
+ size: {
138
+ type: (StringConstructor | NumberConstructor)[];
139
+ };
140
+ strokeWidth: {
141
+ type: NumberConstructor;
142
+ default: number;
143
+ };
144
+ strokeLinecap: {
145
+ type: StringConstructor;
146
+ default: string;
147
+ validator: (value: any) => boolean;
148
+ };
149
+ strokeLinejoin: {
150
+ type: StringConstructor;
151
+ default: string;
152
+ validator: (value: any) => boolean;
153
+ };
154
+ rotate: NumberConstructor;
155
+ spin: BooleanConstructor;
156
+ }>> & Readonly<{
157
+ onClick?: ((ev: MouseEvent) => any) | undefined;
158
+ }>, {
159
+ cls: import("vue").ComputedRef<(string | {
160
+ [x: string]: boolean;
161
+ })[]>;
162
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
163
+ onClick: (ev: MouseEvent) => void;
164
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
165
+ click: (ev: MouseEvent) => true;
166
+ }, import("vue").PublicProps, {
167
+ spin: boolean;
168
+ strokeWidth: number;
169
+ strokeLinecap: string;
170
+ strokeLinejoin: string;
171
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
172
+ P: {};
173
+ B: {};
174
+ D: {};
175
+ C: {};
176
+ M: {};
177
+ Defaults: {};
178
+ }, Readonly<import("vue").ExtractPropTypes<{
179
+ size: {
180
+ type: (StringConstructor | NumberConstructor)[];
181
+ };
182
+ strokeWidth: {
183
+ type: NumberConstructor;
184
+ default: number;
185
+ };
186
+ strokeLinecap: {
187
+ type: StringConstructor;
188
+ default: string;
189
+ validator: (value: any) => boolean;
190
+ };
191
+ strokeLinejoin: {
192
+ type: StringConstructor;
193
+ default: string;
194
+ validator: (value: any) => boolean;
195
+ };
196
+ rotate: NumberConstructor;
197
+ spin: BooleanConstructor;
198
+ }>> & Readonly<{
199
+ onClick?: ((ev: MouseEvent) => any) | undefined;
200
+ }>, {
201
+ cls: import("vue").ComputedRef<(string | {
202
+ [x: string]: boolean;
203
+ })[]>;
204
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
205
+ onClick: (ev: MouseEvent) => void;
206
+ }, {}, {}, {}, {
207
+ spin: boolean;
208
+ strokeWidth: number;
209
+ strokeLinecap: string;
210
+ strokeLinejoin: string;
211
+ }>;
212
+ __isFragment?: never;
213
+ __isTeleport?: never;
214
+ __isSuspense?: never;
215
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
216
+ size: {
217
+ type: (StringConstructor | NumberConstructor)[];
218
+ };
219
+ strokeWidth: {
220
+ type: NumberConstructor;
221
+ default: number;
222
+ };
223
+ strokeLinecap: {
224
+ type: StringConstructor;
225
+ default: string;
226
+ validator: (value: any) => boolean;
227
+ };
228
+ strokeLinejoin: {
229
+ type: StringConstructor;
230
+ default: string;
231
+ validator: (value: any) => boolean;
232
+ };
233
+ rotate: NumberConstructor;
234
+ spin: BooleanConstructor;
235
+ }>> & Readonly<{
236
+ onClick?: ((ev: MouseEvent) => any) | undefined;
237
+ }>, {
238
+ cls: import("vue").ComputedRef<(string | {
239
+ [x: string]: boolean;
240
+ })[]>;
241
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
242
+ onClick: (ev: MouseEvent) => void;
243
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
244
+ click: (ev: MouseEvent) => true;
245
+ }, string, {
246
+ spin: boolean;
247
+ strokeWidth: number;
248
+ strokeLinecap: string;
249
+ strokeLinejoin: string;
250
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
251
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
252
+ };
136
253
  } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
137
254
  P: {};
138
255
  B: {};
@@ -183,11 +300,11 @@ declare const Popconfirm: {
183
300
  mergedDisabled: import("vue").ComputedRef<boolean>;
184
301
  handleClick: (ev: MouseEvent) => void;
185
302
  }, {}, {}, {}, {
303
+ autofocus: boolean;
304
+ disabled: boolean;
186
305
  long: boolean;
187
306
  loading: boolean;
188
- disabled: boolean;
189
307
  htmlType: "submit" | "reset" | "button";
190
- autofocus: boolean;
191
308
  }>;
192
309
  __isFragment?: never;
193
310
  __isTeleport?: never;
@@ -237,13 +354,130 @@ declare const Popconfirm: {
237
354
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
238
355
  click: (ev: MouseEvent) => true;
239
356
  }, string, {
357
+ autofocus: boolean;
358
+ disabled: boolean;
240
359
  long: boolean;
241
360
  loading: boolean;
242
- disabled: boolean;
243
361
  htmlType: "submit" | "reset" | "button";
244
- autofocus: boolean;
245
362
  }, {}, string, {}, {
246
- IconLoading: any;
363
+ IconLoading: {
364
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
365
+ size: {
366
+ type: (StringConstructor | NumberConstructor)[];
367
+ };
368
+ strokeWidth: {
369
+ type: NumberConstructor;
370
+ default: number;
371
+ };
372
+ strokeLinecap: {
373
+ type: StringConstructor;
374
+ default: string;
375
+ validator: (value: any) => boolean;
376
+ };
377
+ strokeLinejoin: {
378
+ type: StringConstructor;
379
+ default: string;
380
+ validator: (value: any) => boolean;
381
+ };
382
+ rotate: NumberConstructor;
383
+ spin: BooleanConstructor;
384
+ }>> & Readonly<{
385
+ onClick?: ((ev: MouseEvent) => any) | undefined;
386
+ }>, {
387
+ cls: import("vue").ComputedRef<(string | {
388
+ [x: string]: boolean;
389
+ })[]>;
390
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
391
+ onClick: (ev: MouseEvent) => void;
392
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
393
+ click: (ev: MouseEvent) => true;
394
+ }, import("vue").PublicProps, {
395
+ spin: boolean;
396
+ strokeWidth: number;
397
+ strokeLinecap: string;
398
+ strokeLinejoin: string;
399
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
400
+ P: {};
401
+ B: {};
402
+ D: {};
403
+ C: {};
404
+ M: {};
405
+ Defaults: {};
406
+ }, Readonly<import("vue").ExtractPropTypes<{
407
+ size: {
408
+ type: (StringConstructor | NumberConstructor)[];
409
+ };
410
+ strokeWidth: {
411
+ type: NumberConstructor;
412
+ default: number;
413
+ };
414
+ strokeLinecap: {
415
+ type: StringConstructor;
416
+ default: string;
417
+ validator: (value: any) => boolean;
418
+ };
419
+ strokeLinejoin: {
420
+ type: StringConstructor;
421
+ default: string;
422
+ validator: (value: any) => boolean;
423
+ };
424
+ rotate: NumberConstructor;
425
+ spin: BooleanConstructor;
426
+ }>> & Readonly<{
427
+ onClick?: ((ev: MouseEvent) => any) | undefined;
428
+ }>, {
429
+ cls: import("vue").ComputedRef<(string | {
430
+ [x: string]: boolean;
431
+ })[]>;
432
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
433
+ onClick: (ev: MouseEvent) => void;
434
+ }, {}, {}, {}, {
435
+ spin: boolean;
436
+ strokeWidth: number;
437
+ strokeLinecap: string;
438
+ strokeLinejoin: string;
439
+ }>;
440
+ __isFragment?: never;
441
+ __isTeleport?: never;
442
+ __isSuspense?: never;
443
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
444
+ size: {
445
+ type: (StringConstructor | NumberConstructor)[];
446
+ };
447
+ strokeWidth: {
448
+ type: NumberConstructor;
449
+ default: number;
450
+ };
451
+ strokeLinecap: {
452
+ type: StringConstructor;
453
+ default: string;
454
+ validator: (value: any) => boolean;
455
+ };
456
+ strokeLinejoin: {
457
+ type: StringConstructor;
458
+ default: string;
459
+ validator: (value: any) => boolean;
460
+ };
461
+ rotate: NumberConstructor;
462
+ spin: BooleanConstructor;
463
+ }>> & Readonly<{
464
+ onClick?: ((ev: MouseEvent) => any) | undefined;
465
+ }>, {
466
+ cls: import("vue").ComputedRef<(string | {
467
+ [x: string]: boolean;
468
+ })[]>;
469
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
470
+ onClick: (ev: MouseEvent) => void;
471
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
472
+ click: (ev: MouseEvent) => true;
473
+ }, string, {
474
+ spin: boolean;
475
+ strokeWidth: number;
476
+ strokeLinecap: string;
477
+ strokeLinejoin: string;
478
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
479
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
480
+ };
247
481
  } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
248
482
  Group: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
249
483
  type: {
@@ -342,13 +576,13 @@ declare const Popconfirm: {
342
576
  default: boolean;
343
577
  };
344
578
  contentClass: {
345
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
579
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
346
580
  };
347
581
  contentStyle: {
348
582
  type: import("vue").PropType<import("vue").CSSProperties>;
349
583
  };
350
584
  arrowClass: {
351
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
585
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
352
586
  };
353
587
  arrowStyle: {
354
588
  type: import("vue").PropType<import("vue").CSSProperties>;
@@ -406,7 +640,7 @@ declare const Popconfirm: {
406
640
  default: boolean;
407
641
  };
408
642
  openedClass: {
409
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
643
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
410
644
  };
411
645
  autoFitPosition: {
412
646
  type: BooleanConstructor;
@@ -442,19 +676,21 @@ declare const Popconfirm: {
442
676
  resize: () => true;
443
677
  }, import("vue").PublicProps, {
444
678
  disabled: boolean;
445
- animationName: string;
446
- trigger: "click" | "hover" | "focus" | "contextMenu" | ("click" | "hover" | "focus" | "contextMenu")[];
447
- showArrow: boolean;
679
+ unmountOnClose: boolean;
680
+ renderToBody: boolean;
681
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
682
+ autoFitPosition: boolean;
448
683
  popupVisible: boolean;
449
684
  defaultPopupVisible: boolean;
450
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
685
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
451
686
  popupOffset: number;
687
+ showArrow: boolean;
452
688
  alignPoint: boolean;
453
689
  popupHoverStay: boolean;
454
690
  blurToClose: boolean;
455
691
  clickToClose: boolean;
456
692
  clickOutsideToClose: boolean;
457
- unmountOnClose: boolean;
693
+ animationName: string;
458
694
  mouseEnterDelay: number;
459
695
  mouseLeaveDelay: number;
460
696
  focusDelay: number;
@@ -462,10 +698,8 @@ declare const Popconfirm: {
462
698
  autoFitPopupMinWidth: boolean;
463
699
  autoFixPosition: boolean;
464
700
  updateAtScroll: boolean;
465
- autoFitPosition: boolean;
466
701
  autoFitTransformOrigin: boolean;
467
702
  hideEmpty: boolean;
468
- renderToBody: boolean;
469
703
  preventFocus: boolean;
470
704
  scrollToClose: boolean;
471
705
  scrollToCloseDistance: number;
@@ -533,13 +767,13 @@ declare const Popconfirm: {
533
767
  default: boolean;
534
768
  };
535
769
  contentClass: {
536
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
770
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
537
771
  };
538
772
  contentStyle: {
539
773
  type: import("vue").PropType<import("vue").CSSProperties>;
540
774
  };
541
775
  arrowClass: {
542
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
776
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
543
777
  };
544
778
  arrowStyle: {
545
779
  type: import("vue").PropType<import("vue").CSSProperties>;
@@ -597,7 +831,7 @@ declare const Popconfirm: {
597
831
  default: boolean;
598
832
  };
599
833
  openedClass: {
600
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
834
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
601
835
  };
602
836
  autoFitPosition: {
603
837
  type: BooleanConstructor;
@@ -627,19 +861,21 @@ declare const Popconfirm: {
627
861
  onHide?: (() => any) | undefined;
628
862
  }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
629
863
  disabled: boolean;
630
- animationName: string;
631
- trigger: "click" | "hover" | "focus" | "contextMenu" | ("click" | "hover" | "focus" | "contextMenu")[];
632
- showArrow: boolean;
864
+ unmountOnClose: boolean;
865
+ renderToBody: boolean;
866
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
867
+ autoFitPosition: boolean;
633
868
  popupVisible: boolean;
634
869
  defaultPopupVisible: boolean;
635
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
870
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
636
871
  popupOffset: number;
872
+ showArrow: boolean;
637
873
  alignPoint: boolean;
638
874
  popupHoverStay: boolean;
639
875
  blurToClose: boolean;
640
876
  clickToClose: boolean;
641
877
  clickOutsideToClose: boolean;
642
- unmountOnClose: boolean;
878
+ animationName: string;
643
879
  mouseEnterDelay: number;
644
880
  mouseLeaveDelay: number;
645
881
  focusDelay: number;
@@ -647,10 +883,8 @@ declare const Popconfirm: {
647
883
  autoFitPopupMinWidth: boolean;
648
884
  autoFixPosition: boolean;
649
885
  updateAtScroll: boolean;
650
- autoFitPosition: boolean;
651
886
  autoFitTransformOrigin: boolean;
652
887
  hideEmpty: boolean;
653
- renderToBody: boolean;
654
888
  preventFocus: boolean;
655
889
  scrollToClose: boolean;
656
890
  scrollToCloseDistance: number;
@@ -715,13 +949,13 @@ declare const Popconfirm: {
715
949
  default: boolean;
716
950
  };
717
951
  contentClass: {
718
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
952
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
719
953
  };
720
954
  contentStyle: {
721
955
  type: import("vue").PropType<import("vue").CSSProperties>;
722
956
  };
723
957
  arrowClass: {
724
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
958
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
725
959
  };
726
960
  arrowStyle: {
727
961
  type: import("vue").PropType<import("vue").CSSProperties>;
@@ -779,7 +1013,7 @@ declare const Popconfirm: {
779
1013
  default: boolean;
780
1014
  };
781
1015
  openedClass: {
782
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
1016
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
783
1017
  };
784
1018
  autoFitPosition: {
785
1019
  type: BooleanConstructor;
@@ -815,19 +1049,21 @@ declare const Popconfirm: {
815
1049
  resize: () => true;
816
1050
  }, string, {
817
1051
  disabled: boolean;
818
- animationName: string;
819
- trigger: "click" | "hover" | "focus" | "contextMenu" | ("click" | "hover" | "focus" | "contextMenu")[];
820
- showArrow: boolean;
1052
+ unmountOnClose: boolean;
1053
+ renderToBody: boolean;
1054
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
1055
+ autoFitPosition: boolean;
821
1056
  popupVisible: boolean;
822
1057
  defaultPopupVisible: boolean;
823
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
1058
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
824
1059
  popupOffset: number;
1060
+ showArrow: boolean;
825
1061
  alignPoint: boolean;
826
1062
  popupHoverStay: boolean;
827
1063
  blurToClose: boolean;
828
1064
  clickToClose: boolean;
829
1065
  clickOutsideToClose: boolean;
830
- unmountOnClose: boolean;
1066
+ animationName: string;
831
1067
  mouseEnterDelay: number;
832
1068
  mouseLeaveDelay: number;
833
1069
  focusDelay: number;
@@ -835,61 +1071,527 @@ declare const Popconfirm: {
835
1071
  autoFitPopupMinWidth: boolean;
836
1072
  autoFixPosition: boolean;
837
1073
  updateAtScroll: boolean;
838
- autoFitPosition: boolean;
839
1074
  autoFitTransformOrigin: boolean;
840
1075
  hideEmpty: boolean;
841
- renderToBody: boolean;
842
1076
  preventFocus: boolean;
843
1077
  scrollToClose: boolean;
844
1078
  scrollToCloseDistance: number;
845
1079
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
846
1080
  install: (app: App, options?: SDOptions) => void;
847
1081
  };
848
- IconInfoCircleFill: any;
849
- IconCheckCircleFill: any;
850
- IconExclamationCircleFill: any;
851
- IconCloseCircleFill: any;
852
- } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
853
- P: {};
854
- B: {};
855
- D: {};
856
- C: {};
857
- M: {};
858
- Defaults: {};
859
- }, Readonly<import("vue").ExtractPropTypes<{
860
- content: StringConstructor;
861
- position: {
862
- type: import("vue").PropType<import("..").TriggerPosition>;
863
- default: string;
864
- };
865
- popupVisible: {
866
- type: BooleanConstructor;
867
- default: undefined;
868
- };
869
- defaultPopupVisible: {
870
- type: BooleanConstructor;
871
- default: boolean;
872
- };
873
- type: {
874
- type: import("vue").PropType<import("..").MessageType>;
875
- default: string;
876
- };
877
- okText: StringConstructor;
878
- cancelText: StringConstructor;
879
- okLoading: {
880
- type: BooleanConstructor;
881
- default: boolean;
882
- };
883
- okButtonProps: {
884
- type: import("vue").PropType<import("..").ButtonProps>;
885
- };
886
- cancelButtonProps: {
887
- type: import("vue").PropType<import("..").ButtonProps>;
1082
+ IconInfoCircleFill: {
1083
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1084
+ size: {
1085
+ type: (StringConstructor | NumberConstructor)[];
1086
+ };
1087
+ strokeWidth: {
1088
+ type: NumberConstructor;
1089
+ default: number;
1090
+ };
1091
+ strokeLinecap: {
1092
+ type: StringConstructor;
1093
+ default: string;
1094
+ validator: (value: any) => boolean;
1095
+ };
1096
+ strokeLinejoin: {
1097
+ type: StringConstructor;
1098
+ default: string;
1099
+ validator: (value: any) => boolean;
1100
+ };
1101
+ rotate: NumberConstructor;
1102
+ spin: BooleanConstructor;
1103
+ }>> & Readonly<{
1104
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1105
+ }>, {
1106
+ cls: import("vue").ComputedRef<(string | {
1107
+ [x: string]: boolean;
1108
+ })[]>;
1109
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1110
+ onClick: (ev: MouseEvent) => void;
1111
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1112
+ click: (ev: MouseEvent) => true;
1113
+ }, import("vue").PublicProps, {
1114
+ spin: boolean;
1115
+ strokeWidth: number;
1116
+ strokeLinecap: string;
1117
+ strokeLinejoin: string;
1118
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1119
+ P: {};
1120
+ B: {};
1121
+ D: {};
1122
+ C: {};
1123
+ M: {};
1124
+ Defaults: {};
1125
+ }, Readonly<import("vue").ExtractPropTypes<{
1126
+ size: {
1127
+ type: (StringConstructor | NumberConstructor)[];
1128
+ };
1129
+ strokeWidth: {
1130
+ type: NumberConstructor;
1131
+ default: number;
1132
+ };
1133
+ strokeLinecap: {
1134
+ type: StringConstructor;
1135
+ default: string;
1136
+ validator: (value: any) => boolean;
1137
+ };
1138
+ strokeLinejoin: {
1139
+ type: StringConstructor;
1140
+ default: string;
1141
+ validator: (value: any) => boolean;
1142
+ };
1143
+ rotate: NumberConstructor;
1144
+ spin: BooleanConstructor;
1145
+ }>> & Readonly<{
1146
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1147
+ }>, {
1148
+ cls: import("vue").ComputedRef<(string | {
1149
+ [x: string]: boolean;
1150
+ })[]>;
1151
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1152
+ onClick: (ev: MouseEvent) => void;
1153
+ }, {}, {}, {}, {
1154
+ spin: boolean;
1155
+ strokeWidth: number;
1156
+ strokeLinecap: string;
1157
+ strokeLinejoin: string;
1158
+ }>;
1159
+ __isFragment?: never;
1160
+ __isTeleport?: never;
1161
+ __isSuspense?: never;
1162
+ } & import("vue").ComponentOptionsBase<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
+ }, string, {
1193
+ spin: boolean;
1194
+ strokeWidth: number;
1195
+ strokeLinecap: string;
1196
+ strokeLinejoin: string;
1197
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1198
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
888
1199
  };
889
- contentClass: {
890
- type: import("vue").PropType<import("../_utils/types").ClassName>;
1200
+ IconCheckCircleFill: {
1201
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1202
+ size: {
1203
+ type: (StringConstructor | NumberConstructor)[];
1204
+ };
1205
+ strokeWidth: {
1206
+ type: NumberConstructor;
1207
+ default: number;
1208
+ };
1209
+ strokeLinecap: {
1210
+ type: StringConstructor;
1211
+ default: string;
1212
+ validator: (value: any) => boolean;
1213
+ };
1214
+ strokeLinejoin: {
1215
+ type: StringConstructor;
1216
+ default: string;
1217
+ validator: (value: any) => boolean;
1218
+ };
1219
+ rotate: NumberConstructor;
1220
+ spin: BooleanConstructor;
1221
+ }>> & Readonly<{
1222
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1223
+ }>, {
1224
+ cls: import("vue").ComputedRef<(string | {
1225
+ [x: string]: boolean;
1226
+ })[]>;
1227
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1228
+ onClick: (ev: MouseEvent) => void;
1229
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1230
+ click: (ev: MouseEvent) => true;
1231
+ }, import("vue").PublicProps, {
1232
+ spin: boolean;
1233
+ strokeWidth: number;
1234
+ strokeLinecap: string;
1235
+ strokeLinejoin: string;
1236
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1237
+ P: {};
1238
+ B: {};
1239
+ D: {};
1240
+ C: {};
1241
+ M: {};
1242
+ Defaults: {};
1243
+ }, Readonly<import("vue").ExtractPropTypes<{
1244
+ size: {
1245
+ type: (StringConstructor | NumberConstructor)[];
1246
+ };
1247
+ strokeWidth: {
1248
+ type: NumberConstructor;
1249
+ default: number;
1250
+ };
1251
+ strokeLinecap: {
1252
+ type: StringConstructor;
1253
+ default: string;
1254
+ validator: (value: any) => boolean;
1255
+ };
1256
+ strokeLinejoin: {
1257
+ type: StringConstructor;
1258
+ default: string;
1259
+ validator: (value: any) => boolean;
1260
+ };
1261
+ rotate: NumberConstructor;
1262
+ spin: BooleanConstructor;
1263
+ }>> & Readonly<{
1264
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1265
+ }>, {
1266
+ cls: import("vue").ComputedRef<(string | {
1267
+ [x: string]: boolean;
1268
+ })[]>;
1269
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1270
+ onClick: (ev: MouseEvent) => void;
1271
+ }, {}, {}, {}, {
1272
+ spin: boolean;
1273
+ strokeWidth: number;
1274
+ strokeLinecap: string;
1275
+ strokeLinejoin: string;
1276
+ }>;
1277
+ __isFragment?: never;
1278
+ __isTeleport?: never;
1279
+ __isSuspense?: never;
1280
+ } & import("vue").ComponentOptionsBase<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
+ }, string, {
1311
+ spin: boolean;
1312
+ strokeWidth: number;
1313
+ strokeLinecap: string;
1314
+ strokeLinejoin: string;
1315
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1316
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
891
1317
  };
892
- contentStyle: {
1318
+ IconExclamationCircleFill: {
1319
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1320
+ size: {
1321
+ type: (StringConstructor | NumberConstructor)[];
1322
+ };
1323
+ strokeWidth: {
1324
+ type: NumberConstructor;
1325
+ default: number;
1326
+ };
1327
+ strokeLinecap: {
1328
+ type: StringConstructor;
1329
+ default: string;
1330
+ validator: (value: any) => boolean;
1331
+ };
1332
+ strokeLinejoin: {
1333
+ type: StringConstructor;
1334
+ default: string;
1335
+ validator: (value: any) => boolean;
1336
+ };
1337
+ rotate: NumberConstructor;
1338
+ spin: BooleanConstructor;
1339
+ }>> & Readonly<{
1340
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1341
+ }>, {
1342
+ cls: import("vue").ComputedRef<(string | {
1343
+ [x: string]: boolean;
1344
+ })[]>;
1345
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1346
+ onClick: (ev: MouseEvent) => void;
1347
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1348
+ click: (ev: MouseEvent) => true;
1349
+ }, import("vue").PublicProps, {
1350
+ spin: boolean;
1351
+ strokeWidth: number;
1352
+ strokeLinecap: string;
1353
+ strokeLinejoin: string;
1354
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1355
+ P: {};
1356
+ B: {};
1357
+ D: {};
1358
+ C: {};
1359
+ M: {};
1360
+ Defaults: {};
1361
+ }, Readonly<import("vue").ExtractPropTypes<{
1362
+ size: {
1363
+ type: (StringConstructor | NumberConstructor)[];
1364
+ };
1365
+ strokeWidth: {
1366
+ type: NumberConstructor;
1367
+ default: number;
1368
+ };
1369
+ strokeLinecap: {
1370
+ type: StringConstructor;
1371
+ default: string;
1372
+ validator: (value: any) => boolean;
1373
+ };
1374
+ strokeLinejoin: {
1375
+ type: StringConstructor;
1376
+ default: string;
1377
+ validator: (value: any) => boolean;
1378
+ };
1379
+ rotate: NumberConstructor;
1380
+ spin: BooleanConstructor;
1381
+ }>> & Readonly<{
1382
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1383
+ }>, {
1384
+ cls: import("vue").ComputedRef<(string | {
1385
+ [x: string]: boolean;
1386
+ })[]>;
1387
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1388
+ onClick: (ev: MouseEvent) => void;
1389
+ }, {}, {}, {}, {
1390
+ spin: boolean;
1391
+ strokeWidth: number;
1392
+ strokeLinecap: string;
1393
+ strokeLinejoin: string;
1394
+ }>;
1395
+ __isFragment?: never;
1396
+ __isTeleport?: never;
1397
+ __isSuspense?: never;
1398
+ } & import("vue").ComponentOptionsBase<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
+ }, string, {
1429
+ spin: boolean;
1430
+ strokeWidth: number;
1431
+ strokeLinecap: string;
1432
+ strokeLinejoin: string;
1433
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1434
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
1435
+ };
1436
+ IconCloseCircleFill: {
1437
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1438
+ size: {
1439
+ type: (StringConstructor | NumberConstructor)[];
1440
+ };
1441
+ strokeWidth: {
1442
+ type: NumberConstructor;
1443
+ default: number;
1444
+ };
1445
+ strokeLinecap: {
1446
+ type: StringConstructor;
1447
+ default: string;
1448
+ validator: (value: any) => boolean;
1449
+ };
1450
+ strokeLinejoin: {
1451
+ type: StringConstructor;
1452
+ default: string;
1453
+ validator: (value: any) => boolean;
1454
+ };
1455
+ rotate: NumberConstructor;
1456
+ spin: BooleanConstructor;
1457
+ }>> & Readonly<{
1458
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1459
+ }>, {
1460
+ cls: import("vue").ComputedRef<(string | {
1461
+ [x: string]: boolean;
1462
+ })[]>;
1463
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1464
+ onClick: (ev: MouseEvent) => void;
1465
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1466
+ click: (ev: MouseEvent) => true;
1467
+ }, import("vue").PublicProps, {
1468
+ spin: boolean;
1469
+ strokeWidth: number;
1470
+ strokeLinecap: string;
1471
+ strokeLinejoin: string;
1472
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1473
+ P: {};
1474
+ B: {};
1475
+ D: {};
1476
+ C: {};
1477
+ M: {};
1478
+ Defaults: {};
1479
+ }, Readonly<import("vue").ExtractPropTypes<{
1480
+ size: {
1481
+ type: (StringConstructor | NumberConstructor)[];
1482
+ };
1483
+ strokeWidth: {
1484
+ type: NumberConstructor;
1485
+ default: number;
1486
+ };
1487
+ strokeLinecap: {
1488
+ type: StringConstructor;
1489
+ default: string;
1490
+ validator: (value: any) => boolean;
1491
+ };
1492
+ strokeLinejoin: {
1493
+ type: StringConstructor;
1494
+ default: string;
1495
+ validator: (value: any) => boolean;
1496
+ };
1497
+ rotate: NumberConstructor;
1498
+ spin: BooleanConstructor;
1499
+ }>> & Readonly<{
1500
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1501
+ }>, {
1502
+ cls: import("vue").ComputedRef<(string | {
1503
+ [x: string]: boolean;
1504
+ })[]>;
1505
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1506
+ onClick: (ev: MouseEvent) => void;
1507
+ }, {}, {}, {}, {
1508
+ spin: boolean;
1509
+ strokeWidth: number;
1510
+ strokeLinecap: string;
1511
+ strokeLinejoin: string;
1512
+ }>;
1513
+ __isFragment?: never;
1514
+ __isTeleport?: never;
1515
+ __isSuspense?: never;
1516
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1517
+ size: {
1518
+ type: (StringConstructor | NumberConstructor)[];
1519
+ };
1520
+ strokeWidth: {
1521
+ type: NumberConstructor;
1522
+ default: number;
1523
+ };
1524
+ strokeLinecap: {
1525
+ type: StringConstructor;
1526
+ default: string;
1527
+ validator: (value: any) => boolean;
1528
+ };
1529
+ strokeLinejoin: {
1530
+ type: StringConstructor;
1531
+ default: string;
1532
+ validator: (value: any) => boolean;
1533
+ };
1534
+ rotate: NumberConstructor;
1535
+ spin: BooleanConstructor;
1536
+ }>> & Readonly<{
1537
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1538
+ }>, {
1539
+ cls: import("vue").ComputedRef<(string | {
1540
+ [x: string]: boolean;
1541
+ })[]>;
1542
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1543
+ onClick: (ev: MouseEvent) => void;
1544
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1545
+ click: (ev: MouseEvent) => true;
1546
+ }, string, {
1547
+ spin: boolean;
1548
+ strokeWidth: number;
1549
+ strokeLinecap: string;
1550
+ strokeLinejoin: string;
1551
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1552
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
1553
+ };
1554
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1555
+ P: {};
1556
+ B: {};
1557
+ D: {};
1558
+ C: {};
1559
+ M: {};
1560
+ Defaults: {};
1561
+ }, Readonly<import("vue").ExtractPropTypes<{
1562
+ content: StringConstructor;
1563
+ position: {
1564
+ type: import("vue").PropType<import("..").TriggerPosition>;
1565
+ default: string;
1566
+ };
1567
+ popupVisible: {
1568
+ type: BooleanConstructor;
1569
+ default: undefined;
1570
+ };
1571
+ defaultPopupVisible: {
1572
+ type: BooleanConstructor;
1573
+ default: boolean;
1574
+ };
1575
+ type: {
1576
+ type: import("vue").PropType<import("..").MessageType>;
1577
+ default: string;
1578
+ };
1579
+ okText: StringConstructor;
1580
+ cancelText: StringConstructor;
1581
+ okLoading: {
1582
+ type: BooleanConstructor;
1583
+ default: boolean;
1584
+ };
1585
+ okButtonProps: {
1586
+ type: import("vue").PropType<import("..").ButtonProps>;
1587
+ };
1588
+ cancelButtonProps: {
1589
+ type: import("vue").PropType<import("..").ButtonProps>;
1590
+ };
1591
+ contentClass: {
1592
+ type: import("vue").PropType<import("../_utils/types").ClassName>;
1593
+ };
1594
+ contentStyle: {
893
1595
  type: import("vue").PropType<import("vue").CSSProperties>;
894
1596
  };
895
1597
  arrowClass: {
@@ -908,10 +1610,10 @@ declare const Popconfirm: {
908
1610
  type: import("vue").PropType<() => boolean>;
909
1611
  };
910
1612
  }>> & Readonly<{
1613
+ onCancel?: (() => any) | undefined;
1614
+ onOk?: (() => any) | undefined;
911
1615
  "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
912
1616
  onPopupVisibleChange?: ((visible: boolean) => any) | undefined;
913
- onOk?: (() => any) | undefined;
914
- onCancel?: (() => any) | undefined;
915
1617
  }>, {
916
1618
  prefixCls: string;
917
1619
  contentCls: import("vue").ComputedRef<(import("../_utils/types").ClassName | undefined)[]>;
@@ -923,11 +1625,11 @@ declare const Popconfirm: {
923
1625
  handleCancel: () => void;
924
1626
  t: (key: string, ...args: any[]) => string;
925
1627
  }, {}, {}, {}, {
926
- type: "success" | "warning" | "error" | "info";
1628
+ type: "success" | "warning" | "info" | "error";
1629
+ okLoading: boolean;
1630
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
927
1631
  popupVisible: boolean;
928
1632
  defaultPopupVisible: boolean;
929
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
930
- okLoading: boolean;
931
1633
  }>;
932
1634
  __isFragment?: never;
933
1635
  __isTeleport?: never;
@@ -984,10 +1686,10 @@ declare const Popconfirm: {
984
1686
  type: import("vue").PropType<() => boolean>;
985
1687
  };
986
1688
  }>> & Readonly<{
1689
+ onCancel?: (() => any) | undefined;
1690
+ onOk?: (() => any) | undefined;
987
1691
  "onUpdate:popupVisible"?: ((visible: boolean) => any) | undefined;
988
1692
  onPopupVisibleChange?: ((visible: boolean) => any) | undefined;
989
- onOk?: (() => any) | undefined;
990
- onCancel?: (() => any) | undefined;
991
1693
  }>, {
992
1694
  prefixCls: string;
993
1695
  contentCls: import("vue").ComputedRef<(import("../_utils/types").ClassName | undefined)[]>;
@@ -1004,11 +1706,11 @@ declare const Popconfirm: {
1004
1706
  ok: () => true;
1005
1707
  cancel: () => true;
1006
1708
  }, string, {
1007
- type: "success" | "warning" | "error" | "info";
1709
+ type: "success" | "warning" | "info" | "error";
1710
+ okLoading: boolean;
1711
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
1008
1712
  popupVisible: boolean;
1009
1713
  defaultPopupVisible: boolean;
1010
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
1011
- okLoading: boolean;
1012
1714
  }, {}, string, {}, {
1013
1715
  SDButton: {
1014
1716
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
@@ -1056,13 +1758,130 @@ declare const Popconfirm: {
1056
1758
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1057
1759
  click: (ev: MouseEvent) => true;
1058
1760
  }, import("vue").PublicProps, {
1761
+ autofocus: boolean;
1762
+ disabled: boolean;
1059
1763
  long: boolean;
1060
1764
  loading: boolean;
1061
- disabled: boolean;
1062
1765
  htmlType: "submit" | "reset" | "button";
1063
- autofocus: boolean;
1064
1766
  }, true, {}, {}, {
1065
- IconLoading: any;
1767
+ IconLoading: {
1768
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1769
+ size: {
1770
+ type: (StringConstructor | NumberConstructor)[];
1771
+ };
1772
+ strokeWidth: {
1773
+ type: NumberConstructor;
1774
+ default: number;
1775
+ };
1776
+ strokeLinecap: {
1777
+ type: StringConstructor;
1778
+ default: string;
1779
+ validator: (value: any) => boolean;
1780
+ };
1781
+ strokeLinejoin: {
1782
+ type: StringConstructor;
1783
+ default: string;
1784
+ validator: (value: any) => boolean;
1785
+ };
1786
+ rotate: NumberConstructor;
1787
+ spin: BooleanConstructor;
1788
+ }>> & Readonly<{
1789
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1790
+ }>, {
1791
+ cls: import("vue").ComputedRef<(string | {
1792
+ [x: string]: boolean;
1793
+ })[]>;
1794
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1795
+ onClick: (ev: MouseEvent) => void;
1796
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1797
+ click: (ev: MouseEvent) => true;
1798
+ }, import("vue").PublicProps, {
1799
+ spin: boolean;
1800
+ strokeWidth: number;
1801
+ strokeLinecap: string;
1802
+ strokeLinejoin: string;
1803
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1804
+ P: {};
1805
+ B: {};
1806
+ D: {};
1807
+ C: {};
1808
+ M: {};
1809
+ Defaults: {};
1810
+ }, Readonly<import("vue").ExtractPropTypes<{
1811
+ size: {
1812
+ type: (StringConstructor | NumberConstructor)[];
1813
+ };
1814
+ strokeWidth: {
1815
+ type: NumberConstructor;
1816
+ default: number;
1817
+ };
1818
+ strokeLinecap: {
1819
+ type: StringConstructor;
1820
+ default: string;
1821
+ validator: (value: any) => boolean;
1822
+ };
1823
+ strokeLinejoin: {
1824
+ type: StringConstructor;
1825
+ default: string;
1826
+ validator: (value: any) => boolean;
1827
+ };
1828
+ rotate: NumberConstructor;
1829
+ spin: BooleanConstructor;
1830
+ }>> & Readonly<{
1831
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1832
+ }>, {
1833
+ cls: import("vue").ComputedRef<(string | {
1834
+ [x: string]: boolean;
1835
+ })[]>;
1836
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1837
+ onClick: (ev: MouseEvent) => void;
1838
+ }, {}, {}, {}, {
1839
+ spin: boolean;
1840
+ strokeWidth: number;
1841
+ strokeLinecap: string;
1842
+ strokeLinejoin: string;
1843
+ }>;
1844
+ __isFragment?: never;
1845
+ __isTeleport?: never;
1846
+ __isSuspense?: never;
1847
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1848
+ size: {
1849
+ type: (StringConstructor | NumberConstructor)[];
1850
+ };
1851
+ strokeWidth: {
1852
+ type: NumberConstructor;
1853
+ default: number;
1854
+ };
1855
+ strokeLinecap: {
1856
+ type: StringConstructor;
1857
+ default: string;
1858
+ validator: (value: any) => boolean;
1859
+ };
1860
+ strokeLinejoin: {
1861
+ type: StringConstructor;
1862
+ default: string;
1863
+ validator: (value: any) => boolean;
1864
+ };
1865
+ rotate: NumberConstructor;
1866
+ spin: BooleanConstructor;
1867
+ }>> & Readonly<{
1868
+ onClick?: ((ev: MouseEvent) => any) | undefined;
1869
+ }>, {
1870
+ cls: import("vue").ComputedRef<(string | {
1871
+ [x: string]: boolean;
1872
+ })[]>;
1873
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
1874
+ onClick: (ev: MouseEvent) => void;
1875
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1876
+ click: (ev: MouseEvent) => true;
1877
+ }, string, {
1878
+ spin: boolean;
1879
+ strokeWidth: number;
1880
+ strokeLinecap: string;
1881
+ strokeLinejoin: string;
1882
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1883
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
1884
+ };
1066
1885
  } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1067
1886
  P: {};
1068
1887
  B: {};
@@ -1113,11 +1932,11 @@ declare const Popconfirm: {
1113
1932
  mergedDisabled: import("vue").ComputedRef<boolean>;
1114
1933
  handleClick: (ev: MouseEvent) => void;
1115
1934
  }, {}, {}, {}, {
1935
+ autofocus: boolean;
1936
+ disabled: boolean;
1116
1937
  long: boolean;
1117
1938
  loading: boolean;
1118
- disabled: boolean;
1119
1939
  htmlType: "submit" | "reset" | "button";
1120
- autofocus: boolean;
1121
1940
  }>;
1122
1941
  __isFragment?: never;
1123
1942
  __isTeleport?: never;
@@ -1167,35 +1986,152 @@ declare const Popconfirm: {
1167
1986
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1168
1987
  click: (ev: MouseEvent) => true;
1169
1988
  }, string, {
1989
+ autofocus: boolean;
1990
+ disabled: boolean;
1170
1991
  long: boolean;
1171
1992
  loading: boolean;
1172
- disabled: boolean;
1173
1993
  htmlType: "submit" | "reset" | "button";
1174
- autofocus: boolean;
1175
1994
  }, {}, string, {}, {
1176
- IconLoading: any;
1177
- } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1178
- Group: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1179
- type: {
1180
- type: import("vue").PropType<import("../button/constants").ButtonTypes>;
1181
- };
1182
- status: {
1183
- type: import("vue").PropType<import("..").Status>;
1184
- };
1185
- shape: {
1186
- type: import("vue").PropType<import("../_utils/constant").BorderShape>;
1187
- };
1188
- size: {
1189
- type: import("vue").PropType<import("..").Size>;
1190
- };
1191
- disabled: {
1192
- type: BooleanConstructor;
1193
- };
1194
- }>, {
1195
- prefixCls: string;
1196
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1197
- type: {
1198
- type: import("vue").PropType<import("../button/constants").ButtonTypes>;
1995
+ IconLoading: {
1996
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
1997
+ size: {
1998
+ type: (StringConstructor | NumberConstructor)[];
1999
+ };
2000
+ strokeWidth: {
2001
+ type: NumberConstructor;
2002
+ default: number;
2003
+ };
2004
+ strokeLinecap: {
2005
+ type: StringConstructor;
2006
+ default: string;
2007
+ validator: (value: any) => boolean;
2008
+ };
2009
+ strokeLinejoin: {
2010
+ type: StringConstructor;
2011
+ default: string;
2012
+ validator: (value: any) => boolean;
2013
+ };
2014
+ rotate: NumberConstructor;
2015
+ spin: BooleanConstructor;
2016
+ }>> & Readonly<{
2017
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2018
+ }>, {
2019
+ cls: import("vue").ComputedRef<(string | {
2020
+ [x: string]: boolean;
2021
+ })[]>;
2022
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2023
+ onClick: (ev: MouseEvent) => void;
2024
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2025
+ click: (ev: MouseEvent) => true;
2026
+ }, import("vue").PublicProps, {
2027
+ spin: boolean;
2028
+ strokeWidth: number;
2029
+ strokeLinecap: string;
2030
+ strokeLinejoin: string;
2031
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2032
+ P: {};
2033
+ B: {};
2034
+ D: {};
2035
+ C: {};
2036
+ M: {};
2037
+ Defaults: {};
2038
+ }, Readonly<import("vue").ExtractPropTypes<{
2039
+ size: {
2040
+ type: (StringConstructor | NumberConstructor)[];
2041
+ };
2042
+ strokeWidth: {
2043
+ type: NumberConstructor;
2044
+ default: number;
2045
+ };
2046
+ strokeLinecap: {
2047
+ type: StringConstructor;
2048
+ default: string;
2049
+ validator: (value: any) => boolean;
2050
+ };
2051
+ strokeLinejoin: {
2052
+ type: StringConstructor;
2053
+ default: string;
2054
+ validator: (value: any) => boolean;
2055
+ };
2056
+ rotate: NumberConstructor;
2057
+ spin: BooleanConstructor;
2058
+ }>> & Readonly<{
2059
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2060
+ }>, {
2061
+ cls: import("vue").ComputedRef<(string | {
2062
+ [x: string]: boolean;
2063
+ })[]>;
2064
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2065
+ onClick: (ev: MouseEvent) => void;
2066
+ }, {}, {}, {}, {
2067
+ spin: boolean;
2068
+ strokeWidth: number;
2069
+ strokeLinecap: string;
2070
+ strokeLinejoin: string;
2071
+ }>;
2072
+ __isFragment?: never;
2073
+ __isTeleport?: never;
2074
+ __isSuspense?: never;
2075
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2076
+ size: {
2077
+ type: (StringConstructor | NumberConstructor)[];
2078
+ };
2079
+ strokeWidth: {
2080
+ type: NumberConstructor;
2081
+ default: number;
2082
+ };
2083
+ strokeLinecap: {
2084
+ type: StringConstructor;
2085
+ default: string;
2086
+ validator: (value: any) => boolean;
2087
+ };
2088
+ strokeLinejoin: {
2089
+ type: StringConstructor;
2090
+ default: string;
2091
+ validator: (value: any) => boolean;
2092
+ };
2093
+ rotate: NumberConstructor;
2094
+ spin: BooleanConstructor;
2095
+ }>> & Readonly<{
2096
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2097
+ }>, {
2098
+ cls: import("vue").ComputedRef<(string | {
2099
+ [x: string]: boolean;
2100
+ })[]>;
2101
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2102
+ onClick: (ev: MouseEvent) => void;
2103
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2104
+ click: (ev: MouseEvent) => true;
2105
+ }, string, {
2106
+ spin: boolean;
2107
+ strokeWidth: number;
2108
+ strokeLinecap: string;
2109
+ strokeLinejoin: string;
2110
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2111
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
2112
+ };
2113
+ } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2114
+ Group: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2115
+ type: {
2116
+ type: import("vue").PropType<import("../button/constants").ButtonTypes>;
2117
+ };
2118
+ status: {
2119
+ type: import("vue").PropType<import("..").Status>;
2120
+ };
2121
+ shape: {
2122
+ type: import("vue").PropType<import("../_utils/constant").BorderShape>;
2123
+ };
2124
+ size: {
2125
+ type: import("vue").PropType<import("..").Size>;
2126
+ };
2127
+ disabled: {
2128
+ type: BooleanConstructor;
2129
+ };
2130
+ }>, {
2131
+ prefixCls: string;
2132
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2133
+ type: {
2134
+ type: import("vue").PropType<import("../button/constants").ButtonTypes>;
1199
2135
  };
1200
2136
  status: {
1201
2137
  type: import("vue").PropType<import("..").Status>;
@@ -1272,13 +2208,13 @@ declare const Popconfirm: {
1272
2208
  default: boolean;
1273
2209
  };
1274
2210
  contentClass: {
1275
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2211
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1276
2212
  };
1277
2213
  contentStyle: {
1278
2214
  type: import("vue").PropType<import("vue").CSSProperties>;
1279
2215
  };
1280
2216
  arrowClass: {
1281
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2217
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1282
2218
  };
1283
2219
  arrowStyle: {
1284
2220
  type: import("vue").PropType<import("vue").CSSProperties>;
@@ -1336,7 +2272,7 @@ declare const Popconfirm: {
1336
2272
  default: boolean;
1337
2273
  };
1338
2274
  openedClass: {
1339
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2275
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1340
2276
  };
1341
2277
  autoFitPosition: {
1342
2278
  type: BooleanConstructor;
@@ -1372,19 +2308,21 @@ declare const Popconfirm: {
1372
2308
  resize: () => true;
1373
2309
  }, import("vue").PublicProps, {
1374
2310
  disabled: boolean;
1375
- animationName: string;
1376
- trigger: "click" | "hover" | "focus" | "contextMenu" | ("click" | "hover" | "focus" | "contextMenu")[];
1377
- showArrow: boolean;
2311
+ unmountOnClose: boolean;
2312
+ renderToBody: boolean;
2313
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
2314
+ autoFitPosition: boolean;
1378
2315
  popupVisible: boolean;
1379
2316
  defaultPopupVisible: boolean;
1380
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
2317
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
1381
2318
  popupOffset: number;
2319
+ showArrow: boolean;
1382
2320
  alignPoint: boolean;
1383
2321
  popupHoverStay: boolean;
1384
2322
  blurToClose: boolean;
1385
2323
  clickToClose: boolean;
1386
2324
  clickOutsideToClose: boolean;
1387
- unmountOnClose: boolean;
2325
+ animationName: string;
1388
2326
  mouseEnterDelay: number;
1389
2327
  mouseLeaveDelay: number;
1390
2328
  focusDelay: number;
@@ -1392,10 +2330,8 @@ declare const Popconfirm: {
1392
2330
  autoFitPopupMinWidth: boolean;
1393
2331
  autoFixPosition: boolean;
1394
2332
  updateAtScroll: boolean;
1395
- autoFitPosition: boolean;
1396
2333
  autoFitTransformOrigin: boolean;
1397
2334
  hideEmpty: boolean;
1398
- renderToBody: boolean;
1399
2335
  preventFocus: boolean;
1400
2336
  scrollToClose: boolean;
1401
2337
  scrollToCloseDistance: number;
@@ -1463,13 +2399,13 @@ declare const Popconfirm: {
1463
2399
  default: boolean;
1464
2400
  };
1465
2401
  contentClass: {
1466
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2402
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1467
2403
  };
1468
2404
  contentStyle: {
1469
2405
  type: import("vue").PropType<import("vue").CSSProperties>;
1470
2406
  };
1471
2407
  arrowClass: {
1472
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2408
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1473
2409
  };
1474
2410
  arrowStyle: {
1475
2411
  type: import("vue").PropType<import("vue").CSSProperties>;
@@ -1527,7 +2463,7 @@ declare const Popconfirm: {
1527
2463
  default: boolean;
1528
2464
  };
1529
2465
  openedClass: {
1530
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2466
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1531
2467
  };
1532
2468
  autoFitPosition: {
1533
2469
  type: BooleanConstructor;
@@ -1557,19 +2493,21 @@ declare const Popconfirm: {
1557
2493
  onHide?: (() => any) | undefined;
1558
2494
  }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
1559
2495
  disabled: boolean;
1560
- animationName: string;
1561
- trigger: "click" | "hover" | "focus" | "contextMenu" | ("click" | "hover" | "focus" | "contextMenu")[];
1562
- showArrow: boolean;
2496
+ unmountOnClose: boolean;
2497
+ renderToBody: boolean;
2498
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
2499
+ autoFitPosition: boolean;
1563
2500
  popupVisible: boolean;
1564
2501
  defaultPopupVisible: boolean;
1565
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
2502
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
1566
2503
  popupOffset: number;
2504
+ showArrow: boolean;
1567
2505
  alignPoint: boolean;
1568
2506
  popupHoverStay: boolean;
1569
2507
  blurToClose: boolean;
1570
2508
  clickToClose: boolean;
1571
2509
  clickOutsideToClose: boolean;
1572
- unmountOnClose: boolean;
2510
+ animationName: string;
1573
2511
  mouseEnterDelay: number;
1574
2512
  mouseLeaveDelay: number;
1575
2513
  focusDelay: number;
@@ -1577,10 +2515,8 @@ declare const Popconfirm: {
1577
2515
  autoFitPopupMinWidth: boolean;
1578
2516
  autoFixPosition: boolean;
1579
2517
  updateAtScroll: boolean;
1580
- autoFitPosition: boolean;
1581
2518
  autoFitTransformOrigin: boolean;
1582
2519
  hideEmpty: boolean;
1583
- renderToBody: boolean;
1584
2520
  preventFocus: boolean;
1585
2521
  scrollToClose: boolean;
1586
2522
  scrollToCloseDistance: number;
@@ -1645,13 +2581,13 @@ declare const Popconfirm: {
1645
2581
  default: boolean;
1646
2582
  };
1647
2583
  contentClass: {
1648
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2584
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1649
2585
  };
1650
2586
  contentStyle: {
1651
2587
  type: import("vue").PropType<import("vue").CSSProperties>;
1652
2588
  };
1653
2589
  arrowClass: {
1654
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2590
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1655
2591
  };
1656
2592
  arrowStyle: {
1657
2593
  type: import("vue").PropType<import("vue").CSSProperties>;
@@ -1709,7 +2645,7 @@ declare const Popconfirm: {
1709
2645
  default: boolean;
1710
2646
  };
1711
2647
  openedClass: {
1712
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2648
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
1713
2649
  };
1714
2650
  autoFitPosition: {
1715
2651
  type: BooleanConstructor;
@@ -1745,19 +2681,21 @@ declare const Popconfirm: {
1745
2681
  resize: () => true;
1746
2682
  }, string, {
1747
2683
  disabled: boolean;
1748
- animationName: string;
1749
- trigger: "click" | "hover" | "focus" | "contextMenu" | ("click" | "hover" | "focus" | "contextMenu")[];
1750
- showArrow: boolean;
2684
+ unmountOnClose: boolean;
2685
+ renderToBody: boolean;
2686
+ position: "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb";
2687
+ autoFitPosition: boolean;
1751
2688
  popupVisible: boolean;
1752
2689
  defaultPopupVisible: boolean;
1753
- position: "br" | "rt" | "tr" | "left" | "right" | "top" | "bottom" | "tl" | "bl" | "lt" | "lb" | "rb";
2690
+ trigger: "hover" | "click" | "focus" | "contextMenu" | ("hover" | "click" | "focus" | "contextMenu")[];
1754
2691
  popupOffset: number;
2692
+ showArrow: boolean;
1755
2693
  alignPoint: boolean;
1756
2694
  popupHoverStay: boolean;
1757
2695
  blurToClose: boolean;
1758
2696
  clickToClose: boolean;
1759
2697
  clickOutsideToClose: boolean;
1760
- unmountOnClose: boolean;
2698
+ animationName: string;
1761
2699
  mouseEnterDelay: number;
1762
2700
  mouseLeaveDelay: number;
1763
2701
  focusDelay: number;
@@ -1765,20 +2703,486 @@ declare const Popconfirm: {
1765
2703
  autoFitPopupMinWidth: boolean;
1766
2704
  autoFixPosition: boolean;
1767
2705
  updateAtScroll: boolean;
1768
- autoFitPosition: boolean;
1769
2706
  autoFitTransformOrigin: boolean;
1770
2707
  hideEmpty: boolean;
1771
- renderToBody: boolean;
1772
2708
  preventFocus: boolean;
1773
2709
  scrollToClose: boolean;
1774
2710
  scrollToCloseDistance: number;
1775
2711
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1776
2712
  install: (app: App, options?: SDOptions) => void;
1777
2713
  };
1778
- IconInfoCircleFill: any;
1779
- IconCheckCircleFill: any;
1780
- IconExclamationCircleFill: any;
1781
- IconCloseCircleFill: any;
2714
+ IconInfoCircleFill: {
2715
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2716
+ size: {
2717
+ type: (StringConstructor | NumberConstructor)[];
2718
+ };
2719
+ strokeWidth: {
2720
+ type: NumberConstructor;
2721
+ default: number;
2722
+ };
2723
+ strokeLinecap: {
2724
+ type: StringConstructor;
2725
+ default: string;
2726
+ validator: (value: any) => boolean;
2727
+ };
2728
+ strokeLinejoin: {
2729
+ type: StringConstructor;
2730
+ default: string;
2731
+ validator: (value: any) => boolean;
2732
+ };
2733
+ rotate: NumberConstructor;
2734
+ spin: BooleanConstructor;
2735
+ }>> & Readonly<{
2736
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2737
+ }>, {
2738
+ cls: import("vue").ComputedRef<(string | {
2739
+ [x: string]: boolean;
2740
+ })[]>;
2741
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2742
+ onClick: (ev: MouseEvent) => void;
2743
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2744
+ click: (ev: MouseEvent) => true;
2745
+ }, import("vue").PublicProps, {
2746
+ spin: boolean;
2747
+ strokeWidth: number;
2748
+ strokeLinecap: string;
2749
+ strokeLinejoin: string;
2750
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2751
+ P: {};
2752
+ B: {};
2753
+ D: {};
2754
+ C: {};
2755
+ M: {};
2756
+ Defaults: {};
2757
+ }, Readonly<import("vue").ExtractPropTypes<{
2758
+ size: {
2759
+ type: (StringConstructor | NumberConstructor)[];
2760
+ };
2761
+ strokeWidth: {
2762
+ type: NumberConstructor;
2763
+ default: number;
2764
+ };
2765
+ strokeLinecap: {
2766
+ type: StringConstructor;
2767
+ default: string;
2768
+ validator: (value: any) => boolean;
2769
+ };
2770
+ strokeLinejoin: {
2771
+ type: StringConstructor;
2772
+ default: string;
2773
+ validator: (value: any) => boolean;
2774
+ };
2775
+ rotate: NumberConstructor;
2776
+ spin: BooleanConstructor;
2777
+ }>> & Readonly<{
2778
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2779
+ }>, {
2780
+ cls: import("vue").ComputedRef<(string | {
2781
+ [x: string]: boolean;
2782
+ })[]>;
2783
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2784
+ onClick: (ev: MouseEvent) => void;
2785
+ }, {}, {}, {}, {
2786
+ spin: boolean;
2787
+ strokeWidth: number;
2788
+ strokeLinecap: string;
2789
+ strokeLinejoin: string;
2790
+ }>;
2791
+ __isFragment?: never;
2792
+ __isTeleport?: never;
2793
+ __isSuspense?: never;
2794
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2795
+ size: {
2796
+ type: (StringConstructor | NumberConstructor)[];
2797
+ };
2798
+ strokeWidth: {
2799
+ type: NumberConstructor;
2800
+ default: number;
2801
+ };
2802
+ strokeLinecap: {
2803
+ type: StringConstructor;
2804
+ default: string;
2805
+ validator: (value: any) => boolean;
2806
+ };
2807
+ strokeLinejoin: {
2808
+ type: StringConstructor;
2809
+ default: string;
2810
+ validator: (value: any) => boolean;
2811
+ };
2812
+ rotate: NumberConstructor;
2813
+ spin: BooleanConstructor;
2814
+ }>> & Readonly<{
2815
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2816
+ }>, {
2817
+ cls: import("vue").ComputedRef<(string | {
2818
+ [x: string]: boolean;
2819
+ })[]>;
2820
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2821
+ onClick: (ev: MouseEvent) => void;
2822
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2823
+ click: (ev: MouseEvent) => true;
2824
+ }, string, {
2825
+ spin: boolean;
2826
+ strokeWidth: number;
2827
+ strokeLinecap: string;
2828
+ strokeLinejoin: string;
2829
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2830
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
2831
+ };
2832
+ IconCheckCircleFill: {
2833
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2834
+ size: {
2835
+ type: (StringConstructor | NumberConstructor)[];
2836
+ };
2837
+ strokeWidth: {
2838
+ type: NumberConstructor;
2839
+ default: number;
2840
+ };
2841
+ strokeLinecap: {
2842
+ type: StringConstructor;
2843
+ default: string;
2844
+ validator: (value: any) => boolean;
2845
+ };
2846
+ strokeLinejoin: {
2847
+ type: StringConstructor;
2848
+ default: string;
2849
+ validator: (value: any) => boolean;
2850
+ };
2851
+ rotate: NumberConstructor;
2852
+ spin: BooleanConstructor;
2853
+ }>> & Readonly<{
2854
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2855
+ }>, {
2856
+ cls: import("vue").ComputedRef<(string | {
2857
+ [x: string]: boolean;
2858
+ })[]>;
2859
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2860
+ onClick: (ev: MouseEvent) => void;
2861
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2862
+ click: (ev: MouseEvent) => true;
2863
+ }, import("vue").PublicProps, {
2864
+ spin: boolean;
2865
+ strokeWidth: number;
2866
+ strokeLinecap: string;
2867
+ strokeLinejoin: string;
2868
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2869
+ P: {};
2870
+ B: {};
2871
+ D: {};
2872
+ C: {};
2873
+ M: {};
2874
+ Defaults: {};
2875
+ }, Readonly<import("vue").ExtractPropTypes<{
2876
+ size: {
2877
+ type: (StringConstructor | NumberConstructor)[];
2878
+ };
2879
+ strokeWidth: {
2880
+ type: NumberConstructor;
2881
+ default: number;
2882
+ };
2883
+ strokeLinecap: {
2884
+ type: StringConstructor;
2885
+ default: string;
2886
+ validator: (value: any) => boolean;
2887
+ };
2888
+ strokeLinejoin: {
2889
+ type: StringConstructor;
2890
+ default: string;
2891
+ validator: (value: any) => boolean;
2892
+ };
2893
+ rotate: NumberConstructor;
2894
+ spin: BooleanConstructor;
2895
+ }>> & Readonly<{
2896
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2897
+ }>, {
2898
+ cls: import("vue").ComputedRef<(string | {
2899
+ [x: string]: boolean;
2900
+ })[]>;
2901
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2902
+ onClick: (ev: MouseEvent) => void;
2903
+ }, {}, {}, {}, {
2904
+ spin: boolean;
2905
+ strokeWidth: number;
2906
+ strokeLinecap: string;
2907
+ strokeLinejoin: string;
2908
+ }>;
2909
+ __isFragment?: never;
2910
+ __isTeleport?: never;
2911
+ __isSuspense?: never;
2912
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2913
+ size: {
2914
+ type: (StringConstructor | NumberConstructor)[];
2915
+ };
2916
+ strokeWidth: {
2917
+ type: NumberConstructor;
2918
+ default: number;
2919
+ };
2920
+ strokeLinecap: {
2921
+ type: StringConstructor;
2922
+ default: string;
2923
+ validator: (value: any) => boolean;
2924
+ };
2925
+ strokeLinejoin: {
2926
+ type: StringConstructor;
2927
+ default: string;
2928
+ validator: (value: any) => boolean;
2929
+ };
2930
+ rotate: NumberConstructor;
2931
+ spin: BooleanConstructor;
2932
+ }>> & Readonly<{
2933
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2934
+ }>, {
2935
+ cls: import("vue").ComputedRef<(string | {
2936
+ [x: string]: boolean;
2937
+ })[]>;
2938
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2939
+ onClick: (ev: MouseEvent) => void;
2940
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2941
+ click: (ev: MouseEvent) => true;
2942
+ }, string, {
2943
+ spin: boolean;
2944
+ strokeWidth: number;
2945
+ strokeLinecap: string;
2946
+ strokeLinejoin: string;
2947
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
2948
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
2949
+ };
2950
+ IconExclamationCircleFill: {
2951
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
2952
+ size: {
2953
+ type: (StringConstructor | NumberConstructor)[];
2954
+ };
2955
+ strokeWidth: {
2956
+ type: NumberConstructor;
2957
+ default: number;
2958
+ };
2959
+ strokeLinecap: {
2960
+ type: StringConstructor;
2961
+ default: string;
2962
+ validator: (value: any) => boolean;
2963
+ };
2964
+ strokeLinejoin: {
2965
+ type: StringConstructor;
2966
+ default: string;
2967
+ validator: (value: any) => boolean;
2968
+ };
2969
+ rotate: NumberConstructor;
2970
+ spin: BooleanConstructor;
2971
+ }>> & Readonly<{
2972
+ onClick?: ((ev: MouseEvent) => any) | undefined;
2973
+ }>, {
2974
+ cls: import("vue").ComputedRef<(string | {
2975
+ [x: string]: boolean;
2976
+ })[]>;
2977
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
2978
+ onClick: (ev: MouseEvent) => void;
2979
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2980
+ click: (ev: MouseEvent) => true;
2981
+ }, import("vue").PublicProps, {
2982
+ spin: boolean;
2983
+ strokeWidth: number;
2984
+ strokeLinecap: string;
2985
+ strokeLinejoin: string;
2986
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2987
+ P: {};
2988
+ B: {};
2989
+ D: {};
2990
+ C: {};
2991
+ M: {};
2992
+ Defaults: {};
2993
+ }, Readonly<import("vue").ExtractPropTypes<{
2994
+ size: {
2995
+ type: (StringConstructor | NumberConstructor)[];
2996
+ };
2997
+ strokeWidth: {
2998
+ type: NumberConstructor;
2999
+ default: number;
3000
+ };
3001
+ strokeLinecap: {
3002
+ type: StringConstructor;
3003
+ default: string;
3004
+ validator: (value: any) => boolean;
3005
+ };
3006
+ strokeLinejoin: {
3007
+ type: StringConstructor;
3008
+ default: string;
3009
+ validator: (value: any) => boolean;
3010
+ };
3011
+ rotate: NumberConstructor;
3012
+ spin: BooleanConstructor;
3013
+ }>> & Readonly<{
3014
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3015
+ }>, {
3016
+ cls: import("vue").ComputedRef<(string | {
3017
+ [x: string]: boolean;
3018
+ })[]>;
3019
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3020
+ onClick: (ev: MouseEvent) => void;
3021
+ }, {}, {}, {}, {
3022
+ spin: boolean;
3023
+ strokeWidth: number;
3024
+ strokeLinecap: string;
3025
+ strokeLinejoin: string;
3026
+ }>;
3027
+ __isFragment?: never;
3028
+ __isTeleport?: never;
3029
+ __isSuspense?: never;
3030
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3031
+ size: {
3032
+ type: (StringConstructor | NumberConstructor)[];
3033
+ };
3034
+ strokeWidth: {
3035
+ type: NumberConstructor;
3036
+ default: number;
3037
+ };
3038
+ strokeLinecap: {
3039
+ type: StringConstructor;
3040
+ default: string;
3041
+ validator: (value: any) => boolean;
3042
+ };
3043
+ strokeLinejoin: {
3044
+ type: StringConstructor;
3045
+ default: string;
3046
+ validator: (value: any) => boolean;
3047
+ };
3048
+ rotate: NumberConstructor;
3049
+ spin: BooleanConstructor;
3050
+ }>> & Readonly<{
3051
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3052
+ }>, {
3053
+ cls: import("vue").ComputedRef<(string | {
3054
+ [x: string]: boolean;
3055
+ })[]>;
3056
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3057
+ onClick: (ev: MouseEvent) => void;
3058
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3059
+ click: (ev: MouseEvent) => true;
3060
+ }, string, {
3061
+ spin: boolean;
3062
+ strokeWidth: number;
3063
+ strokeLinecap: string;
3064
+ strokeLinejoin: string;
3065
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3066
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
3067
+ };
3068
+ IconCloseCircleFill: {
3069
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
3070
+ size: {
3071
+ type: (StringConstructor | NumberConstructor)[];
3072
+ };
3073
+ strokeWidth: {
3074
+ type: NumberConstructor;
3075
+ default: number;
3076
+ };
3077
+ strokeLinecap: {
3078
+ type: StringConstructor;
3079
+ default: string;
3080
+ validator: (value: any) => boolean;
3081
+ };
3082
+ strokeLinejoin: {
3083
+ type: StringConstructor;
3084
+ default: string;
3085
+ validator: (value: any) => boolean;
3086
+ };
3087
+ rotate: NumberConstructor;
3088
+ spin: BooleanConstructor;
3089
+ }>> & Readonly<{
3090
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3091
+ }>, {
3092
+ cls: import("vue").ComputedRef<(string | {
3093
+ [x: string]: boolean;
3094
+ })[]>;
3095
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3096
+ onClick: (ev: MouseEvent) => void;
3097
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3098
+ click: (ev: MouseEvent) => true;
3099
+ }, import("vue").PublicProps, {
3100
+ spin: boolean;
3101
+ strokeWidth: number;
3102
+ strokeLinecap: string;
3103
+ strokeLinejoin: string;
3104
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3105
+ P: {};
3106
+ B: {};
3107
+ D: {};
3108
+ C: {};
3109
+ M: {};
3110
+ Defaults: {};
3111
+ }, Readonly<import("vue").ExtractPropTypes<{
3112
+ size: {
3113
+ type: (StringConstructor | NumberConstructor)[];
3114
+ };
3115
+ strokeWidth: {
3116
+ type: NumberConstructor;
3117
+ default: number;
3118
+ };
3119
+ strokeLinecap: {
3120
+ type: StringConstructor;
3121
+ default: string;
3122
+ validator: (value: any) => boolean;
3123
+ };
3124
+ strokeLinejoin: {
3125
+ type: StringConstructor;
3126
+ default: string;
3127
+ validator: (value: any) => boolean;
3128
+ };
3129
+ rotate: NumberConstructor;
3130
+ spin: BooleanConstructor;
3131
+ }>> & Readonly<{
3132
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3133
+ }>, {
3134
+ cls: import("vue").ComputedRef<(string | {
3135
+ [x: string]: boolean;
3136
+ })[]>;
3137
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3138
+ onClick: (ev: MouseEvent) => void;
3139
+ }, {}, {}, {}, {
3140
+ spin: boolean;
3141
+ strokeWidth: number;
3142
+ strokeLinecap: string;
3143
+ strokeLinejoin: string;
3144
+ }>;
3145
+ __isFragment?: never;
3146
+ __isTeleport?: never;
3147
+ __isSuspense?: never;
3148
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3149
+ size: {
3150
+ type: (StringConstructor | NumberConstructor)[];
3151
+ };
3152
+ strokeWidth: {
3153
+ type: NumberConstructor;
3154
+ default: number;
3155
+ };
3156
+ strokeLinecap: {
3157
+ type: StringConstructor;
3158
+ default: string;
3159
+ validator: (value: any) => boolean;
3160
+ };
3161
+ strokeLinejoin: {
3162
+ type: StringConstructor;
3163
+ default: string;
3164
+ validator: (value: any) => boolean;
3165
+ };
3166
+ rotate: NumberConstructor;
3167
+ spin: BooleanConstructor;
3168
+ }>> & Readonly<{
3169
+ onClick?: ((ev: MouseEvent) => any) | undefined;
3170
+ }>, {
3171
+ cls: import("vue").ComputedRef<(string | {
3172
+ [x: string]: boolean;
3173
+ })[]>;
3174
+ innerStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
3175
+ onClick: (ev: MouseEvent) => void;
3176
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3177
+ click: (ev: MouseEvent) => true;
3178
+ }, string, {
3179
+ spin: boolean;
3180
+ strokeWidth: number;
3181
+ strokeLinecap: string;
3182
+ strokeLinejoin: string;
3183
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
3184
+ install: (app: App, options?: import("../_utils/types").SDIconOptions) => void;
3185
+ };
1782
3186
  } & import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
1783
3187
  install: (app: App, options?: SDOptions) => void;
1784
3188
  };