vft 0.0.48 → 0.0.51

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 (1216) hide show
  1. package/dist/index.css +1 -1
  2. package/es/comp-resolver.js +30 -19
  3. package/es/component.js +79 -50
  4. package/es/components/alert/alert.vue.d.ts +102 -0
  5. package/es/components/alert/alert.vue.js +4 -0
  6. package/es/components/alert/alert.vue2.js +94 -0
  7. package/es/components/alert/index.d.ts +73 -0
  8. package/es/components/alert/index.js +12 -0
  9. package/es/components/alert/style/css.d.ts +0 -0
  10. package/es/components/alert/style/css.js +2 -0
  11. package/es/components/alert/style/index.d.ts +0 -0
  12. package/es/components/alert/style/index.js +2 -0
  13. package/es/components/alert/types.d.ts +4 -0
  14. package/es/components/avatar/avatar.vue.d.ts +6 -14
  15. package/es/components/avatar/avatar.vue2.js +35 -28
  16. package/es/components/avatar/index.d.ts +6 -14
  17. package/es/components/avatar/index.js +5 -4
  18. package/es/components/avatar/style/css.js +2 -0
  19. package/es/components/avatar/style/index.js +2 -0
  20. package/es/components/back-top/back-top.vue2.js +20 -2
  21. package/es/components/back-top/index.js +5 -4
  22. package/es/components/back-top/use-back-top.js +1 -1
  23. package/es/components/button/button-custom.d.ts +4 -0
  24. package/es/components/button/button-custom.js +59 -0
  25. package/es/components/button/button-group.vue.d.ts +23 -0
  26. package/es/components/button/button-group.vue.js +4 -0
  27. package/es/components/button/button-group.vue2.js +39 -0
  28. package/es/components/button/button.vue.d.ts +189 -0
  29. package/es/components/button/button.vue.js +4 -0
  30. package/es/components/button/button.vue2.js +102 -0
  31. package/es/components/button/constants.d.ts +7 -0
  32. package/es/components/button/constants.js +6 -0
  33. package/es/components/button/index.d.ts +203 -0
  34. package/es/components/button/index.js +18 -0
  35. package/es/components/button/instance.d.ts +4 -0
  36. package/es/components/button/instance.js +1 -0
  37. package/es/components/button/style/css.d.ts +0 -0
  38. package/es/components/button/style/css.js +2 -0
  39. package/es/components/button/style/index.d.ts +0 -0
  40. package/es/components/button/style/index.js +2 -0
  41. package/es/components/button/types.d.ts +4 -0
  42. package/es/components/button/types.js +1 -0
  43. package/es/components/button/use-button.d.ts +10 -0
  44. package/es/components/button/use-button.js +39 -0
  45. package/es/components/button-group/style/css.d.ts +0 -0
  46. package/es/components/button-group/style/css.js +2 -0
  47. package/es/components/button-group/style/index.d.ts +0 -0
  48. package/es/components/button-group/style/index.js +2 -0
  49. package/es/components/checkbox/checkbox-button.vue.d.ts +137 -0
  50. package/es/components/checkbox/checkbox-button.vue.js +4 -0
  51. package/es/components/checkbox/checkbox-button.vue2.js +108 -0
  52. package/es/components/checkbox/checkbox-group.vue.d.ts +112 -0
  53. package/es/components/checkbox/checkbox-group.vue.js +4 -0
  54. package/es/components/checkbox/checkbox-group.vue2.js +82 -0
  55. package/es/components/checkbox/checkbox.vue.d.ts +141 -0
  56. package/es/components/checkbox/checkbox.vue.js +4 -0
  57. package/es/components/checkbox/checkbox.vue2.js +130 -0
  58. package/es/components/checkbox/composables/index.d.ts +5 -0
  59. package/es/components/checkbox/composables/index.js +12 -0
  60. package/es/components/checkbox/composables/use-checkbox-disabled.d.ts +6 -0
  61. package/es/components/checkbox/composables/use-checkbox-disabled.js +24 -0
  62. package/es/components/checkbox/composables/use-checkbox-event.d.ts +7 -0
  63. package/es/components/checkbox/composables/use-checkbox-event.js +52 -0
  64. package/es/components/checkbox/composables/use-checkbox-model.d.ts +7 -0
  65. package/es/components/checkbox/composables/use-checkbox-model.js +24 -0
  66. package/es/components/checkbox/composables/use-checkbox-status.d.ts +11 -0
  67. package/es/components/checkbox/composables/use-checkbox-status.js +33 -0
  68. package/es/components/checkbox/composables/use-checkbox.d.ts +15 -0
  69. package/es/components/checkbox/composables/use-checkbox.js +47 -0
  70. package/es/components/checkbox/constants.d.ts +8 -0
  71. package/es/components/checkbox/constants.js +4 -0
  72. package/es/components/checkbox/index.d.ts +556 -0
  73. package/es/components/checkbox/index.js +21 -0
  74. package/es/components/checkbox/style/css.d.ts +0 -0
  75. package/es/components/checkbox/style/css.js +2 -0
  76. package/es/components/checkbox/style/index.d.ts +0 -0
  77. package/es/components/checkbox/style/index.js +2 -0
  78. package/es/components/checkbox/types.d.ts +2 -0
  79. package/es/components/checkbox/types.js +1 -0
  80. package/es/components/checkbox-button/style/css.d.ts +0 -0
  81. package/es/components/checkbox-button/style/css.js +2 -0
  82. package/es/components/checkbox-button/style/index.d.ts +0 -0
  83. package/es/components/checkbox-button/style/index.js +2 -0
  84. package/es/components/checkbox-group/style/css.d.ts +0 -0
  85. package/es/components/checkbox-group/style/css.js +2 -0
  86. package/es/components/checkbox-group/style/index.d.ts +0 -0
  87. package/es/components/checkbox-group/style/index.js +2 -0
  88. package/es/components/clamp/clamp.vue2.js +12 -10
  89. package/es/components/clamp/index.js +5 -4
  90. package/es/components/clamp-toggle/clamp-toggle.vue.d.ts +4 -4
  91. package/es/components/clamp-toggle/clamp-toggle.vue2.js +11 -9
  92. package/es/components/clamp-toggle/index.d.ts +4 -4
  93. package/es/components/clamp-toggle/index.js +5 -4
  94. package/es/components/collapse-transition/src/collapse-transition.vue2.js +7 -5
  95. package/es/components/collection/collection-item.vue.d.ts +2 -0
  96. package/es/components/collection/collection-item.vue.js +4 -0
  97. package/es/components/collection/collection-item.vue2.js +13 -0
  98. package/es/components/collection/collection.d.ts +242 -0
  99. package/es/components/collection/collection.js +55 -0
  100. package/es/components/collection/collection.vue.d.ts +2 -0
  101. package/es/components/collection/collection.vue.js +4 -0
  102. package/es/components/collection/collection.vue2.js +13 -0
  103. package/es/components/collection/index.d.ts +2 -0
  104. package/es/components/collection/index.js +5 -0
  105. package/es/components/collection/tokens.d.ts +12 -0
  106. package/es/components/collection/tokens.js +1 -0
  107. package/es/components/color-picker/color-picker.vue.d.ts +124 -0
  108. package/es/components/color-picker/color-picker.vue.js +4 -0
  109. package/es/components/color-picker/color-picker.vue2.js +269 -0
  110. package/es/components/color-picker/components/alpha-slider.vue.d.ts +42 -0
  111. package/es/components/color-picker/components/alpha-slider.vue.js +4 -0
  112. package/es/components/color-picker/components/alpha-slider.vue2.js +55 -0
  113. package/es/components/color-picker/components/hue-slider.vue.d.ts +44 -0
  114. package/es/components/color-picker/components/hue-slider.vue.js +26 -0
  115. package/es/components/color-picker/components/hue-slider.vue2.js +102 -0
  116. package/es/components/color-picker/components/predefine.vue.d.ts +43 -0
  117. package/es/components/color-picker/components/predefine.vue.js +31 -0
  118. package/es/components/color-picker/components/predefine.vue2.js +55 -0
  119. package/es/components/color-picker/components/sv-panel.vue.d.ts +42 -0
  120. package/es/components/color-picker/components/sv-panel.vue.js +32 -0
  121. package/es/components/color-picker/components/sv-panel.vue2.js +65 -0
  122. package/es/components/color-picker/composables/use-alpha-slider.d.ts +20 -0
  123. package/es/components/color-picker/composables/use-alpha-slider.js +109 -0
  124. package/es/components/color-picker/contants.d.ts +5 -0
  125. package/es/components/color-picker/contants.js +6 -0
  126. package/es/components/color-picker/index.d.ts +106 -0
  127. package/es/components/color-picker/index.js +12 -0
  128. package/es/components/color-picker/style/css.d.ts +0 -0
  129. package/es/components/color-picker/style/css.js +4 -0
  130. package/es/components/color-picker/style/index.d.ts +0 -0
  131. package/es/components/color-picker/style/index.js +4 -0
  132. package/es/components/color-picker/utils/color.d.ts +29 -0
  133. package/es/components/color-picker/utils/color.js +201 -0
  134. package/es/components/color-picker/utils/draggable.d.ts +6 -0
  135. package/es/components/color-picker/utils/draggable.js +20 -0
  136. package/es/components/config-provider/config-provider.vue.d.ts +29 -0
  137. package/es/components/config-provider/config-provider.vue2.js +14 -11
  138. package/es/components/config-provider/constants.d.ts +1 -1
  139. package/es/components/config-provider/hooks/use-global-config.d.ts +1 -1
  140. package/es/components/config-provider/hooks/use-global-config.js +11 -9
  141. package/es/components/config-provider/index.d.ts +8 -1
  142. package/es/components/config-provider/index.js +12 -11
  143. package/es/components/context-menu/context-menu.vue2.js +43 -25
  144. package/es/components/descriptions/description-item.vue2.js +8 -6
  145. package/es/components/descriptions/description.vue2.js +27 -25
  146. package/es/components/descriptions/descriptions-cell.js +13 -11
  147. package/es/components/descriptions/descriptions-row.vue2.js +15 -13
  148. package/es/components/descriptions/index.js +7 -6
  149. package/es/components/dialog/constants.d.ts +11 -0
  150. package/es/components/dialog/constants.js +4 -0
  151. package/es/components/dialog/dialog-content.vue.d.ts +81 -0
  152. package/es/components/dialog/dialog-content.vue.js +4 -0
  153. package/es/components/dialog/dialog-content.vue2.js +92 -0
  154. package/es/components/dialog/dialog.vue.d.ts +164 -0
  155. package/es/components/dialog/dialog.vue.js +4 -0
  156. package/es/components/dialog/dialog.vue2.js +189 -0
  157. package/es/components/dialog/hooks/use-dialog.d.ts +23 -0
  158. package/es/components/dialog/hooks/use-dialog.js +106 -0
  159. package/es/components/dialog/index.d.ts +146 -0
  160. package/es/components/dialog/index.js +16 -0
  161. package/es/components/dialog/style/css.d.ts +0 -0
  162. package/es/components/dialog/style/css.js +3 -0
  163. package/es/components/dialog/style/index.d.ts +0 -0
  164. package/es/components/dialog/style/index.js +3 -0
  165. package/es/components/dialog/types.d.ts +10 -0
  166. package/es/components/dialog/types.js +1 -0
  167. package/es/components/divider/divider.vue.d.ts +2 -2
  168. package/es/components/divider/divider.vue2.js +9 -7
  169. package/es/components/divider/index.d.ts +2 -2
  170. package/es/components/divider/index.js +5 -4
  171. package/es/components/docs-layout/style/css.d.ts +0 -0
  172. package/es/components/docs-layout/style/css.js +2 -0
  173. package/es/components/docs-layout/style/index.d.ts +0 -0
  174. package/es/components/docs-layout/style/index.js +2 -0
  175. package/es/components/dropdown/dropdown-item-impl.vue.d.ts +57 -0
  176. package/es/components/dropdown/dropdown-item-impl.vue.js +33 -0
  177. package/es/components/dropdown/dropdown-item-impl.vue2.js +77 -0
  178. package/es/components/dropdown/dropdown-item.vue.d.ts +43 -0
  179. package/es/components/dropdown/dropdown-item.vue.js +35 -0
  180. package/es/components/dropdown/dropdown-item.vue2.js +81 -0
  181. package/es/components/dropdown/dropdown-menu.vue.d.ts +22 -0
  182. package/es/components/dropdown/dropdown-menu.vue.js +24 -0
  183. package/es/components/dropdown/dropdown-menu.vue2.js +95 -0
  184. package/es/components/dropdown/dropdown.vue.d.ts +828 -0
  185. package/es/components/dropdown/dropdown.vue.js +129 -0
  186. package/es/components/dropdown/dropdown.vue2.js +220 -0
  187. package/es/components/dropdown/index.d.ts +959 -0
  188. package/es/components/dropdown/index.js +28 -0
  189. package/es/components/dropdown/style/css.d.ts +0 -0
  190. package/es/components/dropdown/style/css.js +2 -0
  191. package/es/components/dropdown/style/index.d.ts +0 -0
  192. package/es/components/dropdown/style/index.js +2 -0
  193. package/es/components/dropdown/tokens.d.ts +10 -0
  194. package/es/components/dropdown/tokens.js +4 -0
  195. package/es/components/dropdown/types.d.ts +267 -0
  196. package/es/components/dropdown/types.js +21 -0
  197. package/es/components/dropdown/useDropdown.d.ts +6 -0
  198. package/es/components/dropdown/useDropdown.js +59 -0
  199. package/es/components/dropdown-item/style/css.d.ts +0 -0
  200. package/es/components/dropdown-item/style/css.js +2 -0
  201. package/es/components/dropdown-item/style/index.d.ts +0 -0
  202. package/es/components/dropdown-item/style/index.js +2 -0
  203. package/es/components/dropdown-menu/style/css.d.ts +0 -0
  204. package/es/components/dropdown-menu/style/css.js +2 -0
  205. package/es/components/dropdown-menu/style/index.d.ts +0 -0
  206. package/es/components/dropdown-menu/style/index.js +2 -0
  207. package/es/components/empty/empty.vue.d.ts +11 -2
  208. package/es/components/empty/empty.vue2.js +11 -9
  209. package/es/components/empty/index.d.ts +2 -2
  210. package/es/components/empty/index.js +7 -6
  211. package/es/components/exception/exception.vue2.js +14 -13
  212. package/es/components/exception/index.js +5 -4
  213. package/es/components/focus-trap/focus-trap.vue.d.ts +1 -1
  214. package/es/components/footer-layout/footer-layout.vue2.js +15 -13
  215. package/es/components/footer-layout/index.js +5 -4
  216. package/es/components/form/form-item.vue.d.ts +28 -15
  217. package/es/components/form/form-item.vue2.js +54 -52
  218. package/es/components/form/form-label-wrap.js +16 -14
  219. package/es/components/form/form.vue.d.ts +10 -10
  220. package/es/components/form/form.vue2.js +12 -10
  221. package/es/components/form/hooks/use-form-common-props.d.ts +2 -2
  222. package/es/components/form/hooks/use-form-common-props.js +5 -3
  223. package/es/components/form/hooks/use-form-item.d.ts +2 -2
  224. package/es/components/form/hooks/use-form-item.js +16 -14
  225. package/es/components/form/index.d.ts +54 -28
  226. package/es/components/form/index.js +20 -19
  227. package/es/components/form/utils.js +11 -10
  228. package/es/components/full-screen/full-screen.vue2.js +8 -6
  229. package/es/components/full-screen/index.js +5 -4
  230. package/es/components/header-layout/header-layout.vue2.js +7 -5
  231. package/es/components/header-layout/index.js +5 -4
  232. package/es/components/icon/icon.vue.d.ts +12 -3
  233. package/es/components/icon/icon.vue2.js +25 -22
  234. package/es/components/icon/index.d.ts +10 -2
  235. package/es/components/icon/index.js +6 -5
  236. package/es/components/icon-text/icon-text.vue.d.ts +4 -4
  237. package/es/components/icon-text/icon-text.vue2.js +12 -10
  238. package/es/components/icon-text/index.d.ts +4 -4
  239. package/es/components/icon-text/index.js +5 -4
  240. package/es/components/iframe-layout/iframe-layout.vue2.js +8 -6
  241. package/es/components/iframe-layout/iframe-page.vue2.js +13 -11
  242. package/es/components/iframe-layout/index.js +5 -4
  243. package/es/components/image/image.vue.d.ts +17 -3
  244. package/es/components/image/image.vue2.js +106 -69
  245. package/es/components/image/index.d.ts +4 -3
  246. package/es/components/image/index.js +5 -4
  247. package/es/components/image/style/css.js +1 -0
  248. package/es/components/image/style/index.js +1 -0
  249. package/es/components/image-viewer/image-viewer.vue.d.ts +88 -0
  250. package/es/components/image-viewer/image-viewer.vue.js +4 -0
  251. package/es/components/image-viewer/image-viewer.vue2.js +296 -0
  252. package/es/components/image-viewer/index.d.ts +77 -0
  253. package/es/components/image-viewer/index.js +12 -0
  254. package/es/components/image-viewer/style/css.d.ts +0 -0
  255. package/es/components/image-viewer/style/css.js +2 -0
  256. package/es/components/image-viewer/style/index.d.ts +0 -0
  257. package/es/components/image-viewer/style/index.js +2 -0
  258. package/es/components/image-viewer/types.d.ts +1 -0
  259. package/es/components/image-viewer/types.js +1 -0
  260. package/es/components/index.d.ts +12 -0
  261. package/es/components/index.js +195 -132
  262. package/es/components/input/index.d.ts +15 -15
  263. package/es/components/input/index.js +5 -4
  264. package/es/components/input/input.vue.d.ts +15 -15
  265. package/es/components/input/input.vue2.js +24 -23
  266. package/es/components/link/index.d.ts +2 -2
  267. package/es/components/link/index.js +5 -4
  268. package/es/components/link/link.vue.d.ts +2 -2
  269. package/es/components/link/link.vue2.js +8 -6
  270. package/es/components/loading/index.d.ts +2 -1
  271. package/es/components/loading/loading.d.ts +2 -1
  272. package/es/components/loading/loading.js +8 -6
  273. package/es/components/loading/service.js +4 -2
  274. package/es/components/logo/index.js +5 -4
  275. package/es/components/logo/logo.vue2.js +13 -11
  276. package/es/components/md-code-demo/index.js +5 -4
  277. package/es/components/md-code-demo/md-code-demo.js +4 -2
  278. package/es/components/md-code-tabs/index.js +5 -4
  279. package/es/components/md-comment/index.js +5 -4
  280. package/es/components/md-comment/md-comment.vue2.js +10 -8
  281. package/es/components/md-container/index.js +5 -4
  282. package/es/components/md-container/md-container.vue2.js +32 -14
  283. package/es/components/md-container/style/css.js +5 -0
  284. package/es/components/md-container/style/index.js +4 -0
  285. package/es/components/md-tabs/index.js +5 -4
  286. package/es/components/md-vue-playground/index.js +5 -4
  287. package/es/components/md-vue-playground/md-vue-playground.vue2.js +12 -10
  288. package/es/components/menu/index.d.ts +4 -4
  289. package/es/components/menu/index.js +12 -11
  290. package/es/components/menu/menu-collapse-transition.vue2.js +4 -2
  291. package/es/components/menu/menu-item-group.vue2.js +15 -13
  292. package/es/components/menu/menu-item.vue2.js +56 -38
  293. package/es/components/menu/menu.vue.d.ts +4 -4
  294. package/es/components/menu/menu.vue2.js +5 -3
  295. package/es/components/menu/sub-menu.vue2.js +74 -56
  296. package/es/components/menu/use-menu-css-var.js +4 -2
  297. package/es/components/message/index.js +9 -8
  298. package/es/components/message/message.vue.d.ts +16 -0
  299. package/es/components/message/message.vue2.js +84 -82
  300. package/es/components/message/method.js +52 -56
  301. package/es/components/multiple-tabs/multiple-tabs.vue2.js +94 -75
  302. package/es/components/multiple-tabs/tab-content.vue2.js +24 -6
  303. package/es/components/overlay/index.d.ts +2 -2
  304. package/es/components/overlay/index.js +5 -4
  305. package/es/components/overlay/overlay.vue.d.ts +2 -2
  306. package/es/components/overlay/overlay.vue2.js +17 -15
  307. package/es/components/page-wrapper/index.js +5 -4
  308. package/es/components/page-wrapper/page-wrapper.vue2.js +10 -8
  309. package/es/components/pagination/components/jumper.vue2.js +16 -14
  310. package/es/components/pagination/components/pager.vue2.js +4 -2
  311. package/es/components/pagination/components/sizes.vue2.js +4 -2
  312. package/es/components/pagination/components/total.vue2.js +6 -4
  313. package/es/components/pagination/index.d.ts +116 -73
  314. package/es/components/pagination/index.js +6 -7
  315. package/es/components/pagination/pagination.vue.d.ts +185 -0
  316. package/es/components/pagination/pagination.vue.js +4 -0
  317. package/es/components/pagination/pagination.vue2.js +191 -0
  318. package/es/components/pagination/usePagination.d.ts +3 -3
  319. package/es/components/pagination/usePagination.js +4 -4
  320. package/es/components/popover/index.js +5 -4
  321. package/es/components/popover/popover.vue2.js +4 -2
  322. package/es/components/popper/arrow.vue2.js +4 -2
  323. package/es/components/popper/composables/use-content-dom.js +9 -7
  324. package/es/components/popper/composables/use-content.d.ts +4 -4
  325. package/es/components/popper/composables/use-content.js +4 -2
  326. package/es/components/popper/content.vue.d.ts +3 -3
  327. package/es/components/popper/index.d.ts +2 -2
  328. package/es/components/popper/index.js +11 -10
  329. package/es/components/popper/popper.vue.d.ts +2 -2
  330. package/es/components/popper/trigger.vue2.js +4 -2
  331. package/es/components/qrcode/index.js +5 -4
  332. package/es/components/qrcode/qrcode.vue2.js +10 -8
  333. package/es/components/radio/constants.d.ts +6 -0
  334. package/es/components/radio/constants.js +4 -0
  335. package/es/components/radio/index.d.ts +294 -0
  336. package/es/components/radio/index.js +21 -0
  337. package/es/components/radio/radio-button.vue.d.ts +44 -0
  338. package/es/components/radio/radio-button.vue.js +4 -0
  339. package/es/components/radio/radio-button.vue2.js +70 -0
  340. package/es/components/radio/radio-group.vue.d.ts +96 -0
  341. package/es/components/radio/radio-group.vue.js +4 -0
  342. package/es/components/radio/radio-group.vue2.js +74 -0
  343. package/es/components/radio/radio.vue.d.ts +65 -0
  344. package/es/components/radio/radio.vue.js +4 -0
  345. package/es/components/radio/radio.vue2.js +90 -0
  346. package/es/components/radio/style/css.d.ts +0 -0
  347. package/es/components/radio/style/css.js +2 -0
  348. package/es/components/radio/style/index.d.ts +0 -0
  349. package/es/components/radio/style/index.js +2 -0
  350. package/es/components/radio/use-radio.d.ts +15 -0
  351. package/es/components/radio/use-radio.js +28 -0
  352. package/es/components/radio-button/style/css.d.ts +0 -0
  353. package/es/components/radio-button/style/css.js +2 -0
  354. package/es/components/radio-button/style/index.d.ts +0 -0
  355. package/es/components/radio-button/style/index.js +2 -0
  356. package/es/components/radio-group/style/css.d.ts +0 -0
  357. package/es/components/radio-group/style/css.js +2 -0
  358. package/es/components/radio-group/style/index.d.ts +0 -0
  359. package/es/components/radio-group/style/index.js +2 -0
  360. package/es/components/result/index.js +5 -4
  361. package/es/components/result/result.vue2.js +20 -2
  362. package/es/components/router-view-content/index.js +5 -4
  363. package/es/components/router-view-content/router-view-content.vue2.js +8 -6
  364. package/es/components/roving-focus-group/index.d.ts +10 -0
  365. package/es/components/roving-focus-group/index.js +23 -0
  366. package/es/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +48 -0
  367. package/es/components/roving-focus-group/roving-focus-group-impl.vue.js +10 -0
  368. package/es/components/roving-focus-group/roving-focus-group-impl.vue2.js +112 -0
  369. package/es/components/roving-focus-group/roving-focus-group.vue.d.ts +2 -0
  370. package/es/components/roving-focus-group/roving-focus-group.vue.js +21 -0
  371. package/es/components/roving-focus-group/roving-focus-group.vue2.js +13 -0
  372. package/es/components/roving-focus-group/roving-focus-item.vue.d.ts +32 -0
  373. package/es/components/roving-focus-group/roving-focus-item.vue.js +20 -0
  374. package/es/components/roving-focus-group/roving-focus-item.vue2.js +106 -0
  375. package/es/components/roving-focus-group/tokens.d.ts +37 -0
  376. package/es/components/roving-focus-group/tokens.js +5 -0
  377. package/es/components/roving-focus-group/types.d.ts +252 -0
  378. package/es/components/roving-focus-group/types.js +13 -0
  379. package/es/components/roving-focus-group/utils.d.ts +8 -0
  380. package/es/components/roving-focus-group/utils.js +36 -0
  381. package/es/components/scrollbar/bar.vue.d.ts +54 -0
  382. package/es/components/scrollbar/bar.vue.js +4 -0
  383. package/es/components/scrollbar/bar.vue2.js +41 -0
  384. package/es/components/scrollbar/constants.d.ts +6 -0
  385. package/es/components/scrollbar/constants.js +6 -0
  386. package/es/components/scrollbar/index.d.ts +113 -0
  387. package/es/components/scrollbar/index.js +23 -0
  388. package/es/components/scrollbar/scrollbar.vue.d.ts +163 -0
  389. package/es/components/scrollbar/scrollbar.vue.js +4 -0
  390. package/es/components/scrollbar/scrollbar.vue2.js +154 -0
  391. package/es/components/scrollbar/style/css.d.ts +0 -0
  392. package/es/components/scrollbar/style/css.js +2 -0
  393. package/es/components/scrollbar/style/index.d.ts +0 -0
  394. package/es/components/scrollbar/style/index.js +2 -0
  395. package/es/components/scrollbar/thumb.vue.d.ts +52 -0
  396. package/es/components/scrollbar/thumb.vue.js +4 -0
  397. package/es/components/scrollbar/thumb.vue2.js +113 -0
  398. package/es/components/scrollbar/types.d.ts +2 -0
  399. package/es/components/scrollbar/types.js +1 -0
  400. package/es/components/scrollbar/util.d.ts +28 -0
  401. package/es/components/scrollbar/util.js +34 -0
  402. package/es/components/search/index.d.ts +7 -7
  403. package/es/components/search/index.js +5 -4
  404. package/es/components/search/search.vue.d.ts +7 -7
  405. package/es/components/search/search.vue2.js +42 -24
  406. package/es/components/select-v2/defaults.d.ts +113 -0
  407. package/es/components/select-v2/defaults.js +121 -0
  408. package/es/components/select-v2/group-item.vue.d.ts +35 -0
  409. package/es/components/select-v2/group-item.vue.js +23 -0
  410. package/es/components/select-v2/group-item.vue2.js +28 -0
  411. package/es/components/select-v2/index.d.ts +2025 -0
  412. package/es/components/select-v2/index.js +11 -0
  413. package/es/components/select-v2/option-item.vue.d.ts +49 -0
  414. package/es/components/select-v2/option-item.vue.js +31 -0
  415. package/es/components/select-v2/option-item.vue2.js +27 -0
  416. package/es/components/select-v2/select-dropdown.d.ts +16 -0
  417. package/es/components/select-v2/select-dropdown.js +199 -0
  418. package/es/components/select-v2/select.types.d.ts +18 -0
  419. package/es/components/select-v2/select.types.js +1 -0
  420. package/es/components/select-v2/select.vue.d.ts +1012 -0
  421. package/es/components/select-v2/select.vue.js +330 -0
  422. package/es/components/select-v2/select.vue2.js +61 -0
  423. package/es/components/select-v2/style/css.d.ts +0 -0
  424. package/es/components/select-v2/style/css.js +7 -0
  425. package/es/components/select-v2/style/index.d.ts +0 -0
  426. package/es/components/select-v2/style/index.js +8 -0
  427. package/es/components/select-v2/token.d.ts +16 -0
  428. package/es/components/select-v2/token.js +6 -0
  429. package/es/components/select-v2/useAllowCreate.d.ts +8 -0
  430. package/es/components/select-v2/useAllowCreate.js +48 -0
  431. package/es/components/select-v2/useInput.d.ts +5 -0
  432. package/es/components/select-v2/useInput.js +21 -0
  433. package/es/components/select-v2/useOption.d.ts +7 -0
  434. package/es/components/select-v2/useOption.js +13 -0
  435. package/es/components/select-v2/useSelect.d.ts +782 -0
  436. package/es/components/select-v2/useSelect.js +360 -0
  437. package/es/components/select-v2/util.d.ts +2 -0
  438. package/es/components/select-v2/util.js +18 -0
  439. package/es/components/side-menu/index.d.ts +6 -6
  440. package/es/components/side-menu/index.js +5 -4
  441. package/es/components/side-menu/side-menu.vue.d.ts +6 -6
  442. package/es/components/side-menu/side-menu.vue2.js +77 -59
  443. package/es/components/side-menu/types.d.ts +1 -1
  444. package/es/components/slot/only-child.js +13 -11
  445. package/es/components/switch/index.d.ts +205 -0
  446. package/es/components/switch/index.js +12 -0
  447. package/es/components/switch/style/css.d.ts +0 -0
  448. package/es/components/switch/style/css.js +2 -0
  449. package/es/components/switch/style/index.d.ts +0 -0
  450. package/es/components/switch/style/index.js +2 -0
  451. package/es/components/switch/switch.vue.d.ts +236 -0
  452. package/es/components/switch/switch.vue.js +4 -0
  453. package/es/components/switch/switch.vue2.js +204 -0
  454. package/es/components/table/index.js +12 -0
  455. package/es/components/table/style/css.d.ts +0 -0
  456. package/es/components/table/style/css.js +5 -0
  457. package/es/components/table/style/index.d.ts +0 -0
  458. package/es/components/table/style/index.js +5 -0
  459. package/es/components/table/table.vue.d.ts +137 -0
  460. package/es/components/table/table.vue.js +4 -0
  461. package/es/components/table/table.vue2.js +232 -0
  462. package/es/components/table/type.d.ts +21 -0
  463. package/es/components/table/type.js +1 -0
  464. package/es/components/tabs/index.d.ts +20 -20
  465. package/es/components/tabs/index.js +8 -7
  466. package/es/components/tabs/tab-bar.vue.d.ts +2 -2
  467. package/es/components/tabs/tab-bar.vue2.js +4 -2
  468. package/es/components/tabs/tab-nav.vue.d.ts +2 -2
  469. package/es/components/tabs/tab-nav.vue2.js +98 -80
  470. package/es/components/tabs/tab-pane.vue.d.ts +2 -2
  471. package/es/components/tabs/tab-pane.vue2.js +14 -12
  472. package/es/components/tabs/tabs.vue.d.ts +14 -14
  473. package/es/components/tabs/tabs.vue2.js +4 -2
  474. package/es/components/tabs/types.d.ts +2 -2
  475. package/es/components/tag/index.d.ts +2 -2
  476. package/es/components/tag/index.js +5 -4
  477. package/es/components/tag/tag.vue.d.ts +2 -2
  478. package/es/components/tag/tag.vue2.js +10 -8
  479. package/es/components/tooltip/content.vue2.js +18 -16
  480. package/es/components/tooltip/index.d.ts +7 -5
  481. package/es/components/tooltip/index.js +5 -4
  482. package/es/components/tooltip/tooltip.vue.d.ts +5 -5
  483. package/es/components/tooltip/tooltip.vue2.js +22 -20
  484. package/es/components/tooltip/trigger.vue2.js +12 -10
  485. package/es/components/tooltip/utils.js +6 -4
  486. package/es/components/verify-code/index.d.ts +23 -0
  487. package/es/components/verify-code/index.js +12 -0
  488. package/es/components/verify-code/style/css.d.ts +0 -0
  489. package/es/components/verify-code/style/css.js +2 -0
  490. package/es/components/verify-code/style/index.d.ts +0 -0
  491. package/es/components/verify-code/style/index.js +2 -0
  492. package/es/components/verify-code/useImageVerify.d.ts +11 -0
  493. package/es/components/verify-code/useImageVerify.js +46 -0
  494. package/es/components/verify-code/verify-code.vue.d.ts +24 -0
  495. package/es/components/verify-code/verify-code.vue.js +4 -0
  496. package/es/components/verify-code/verify-code.vue2.js +48 -0
  497. package/es/components/virtual-list/builders/build-grid.d.ts +214 -0
  498. package/es/components/virtual-list/builders/build-grid.js +422 -0
  499. package/es/components/virtual-list/builders/build-list.d.ts +167 -0
  500. package/es/components/virtual-list/builders/build-list.js +344 -0
  501. package/es/components/virtual-list/components/dynamic-size-grid.d.ts +206 -0
  502. package/es/components/virtual-list/components/dynamic-size-grid.js +200 -0
  503. package/es/components/virtual-list/components/dynamic-size-list.d.ts +165 -0
  504. package/es/components/virtual-list/components/dynamic-size-list.js +112 -0
  505. package/es/components/virtual-list/components/fixed-size-grid.d.ts +193 -0
  506. package/es/components/virtual-list/components/fixed-size-grid.js +125 -0
  507. package/es/components/virtual-list/components/fixed-size-list.d.ts +164 -0
  508. package/es/components/virtual-list/components/fixed-size-list.js +68 -0
  509. package/es/components/virtual-list/components/scrollbar.d.ts +79 -0
  510. package/es/components/virtual-list/components/scrollbar.js +137 -0
  511. package/es/components/virtual-list/defaults.d.ts +30 -0
  512. package/es/components/virtual-list/defaults.js +33 -0
  513. package/es/components/virtual-list/hooks/use-cache.d.ts +1 -0
  514. package/es/components/virtual-list/hooks/use-cache.js +13 -0
  515. package/es/components/virtual-list/hooks/use-grid-wheel.d.ts +13 -0
  516. package/es/components/virtual-list/hooks/use-grid-wheel.js +26 -0
  517. package/es/components/virtual-list/hooks/use-wheel.d.ts +13 -0
  518. package/es/components/virtual-list/hooks/use-wheel.js +27 -0
  519. package/es/components/virtual-list/index.d.ts +8 -0
  520. package/es/components/virtual-list/index.js +15 -0
  521. package/es/components/virtual-list/props.d.ts +201 -0
  522. package/es/components/virtual-list/props.js +147 -0
  523. package/es/components/virtual-list/style/css.d.ts +0 -0
  524. package/es/components/virtual-list/style/css.js +3 -0
  525. package/es/components/virtual-list/style/index.d.ts +0 -0
  526. package/es/components/virtual-list/style/index.js +3 -0
  527. package/es/components/virtual-list/types.d.ts +137 -0
  528. package/es/components/virtual-list/types.js +1 -0
  529. package/es/components/virtual-list/utils.d.ts +17 -0
  530. package/es/components/virtual-list/utils.js +25 -0
  531. package/es/defaults.d.ts +1 -1
  532. package/es/hooks/index.d.ts +3 -0
  533. package/es/hooks/index.js +35 -29
  534. package/es/hooks/use-draggable/index.d.ts +2 -0
  535. package/es/hooks/use-draggable/index.js +42 -0
  536. package/es/hooks/use-id/index.js +1 -1
  537. package/es/hooks/use-lockscreen/index.d.ts +11 -0
  538. package/es/hooks/use-lockscreen/index.js +36 -0
  539. package/es/hooks/use-ordered-children/index.js +7 -6
  540. package/es/hooks/use-popper/index.d.ts +4 -4
  541. package/es/hooks/use-same-target/index.d.ts +5 -0
  542. package/es/hooks/use-same-target/index.js +16 -0
  543. package/es/hooks/use-size/index.d.ts +1 -1
  544. package/es/index.d.ts +1 -1
  545. package/es/index.js +327 -235
  546. package/es/package.json.js +1 -1
  547. package/es/utils/dom/index.d.ts +2 -0
  548. package/es/utils/dom/index.js +12 -0
  549. package/es/utils/dom/position.d.ts +7 -0
  550. package/es/utils/dom/position.js +30 -0
  551. package/es/utils/dom/scroll.d.ts +8 -0
  552. package/es/utils/dom/scroll.js +60 -0
  553. package/es/utils/index.d.ts +1 -0
  554. package/es/utils/index.js +54 -31
  555. package/es/utils/vue/data-helper.d.ts +1 -0
  556. package/es/utils/vue/data-helper.js +4 -0
  557. package/es/utils/vue/index.d.ts +4 -0
  558. package/es/utils/vue/index.js +28 -15
  559. package/es/utils/vue/props/index.d.ts +3 -0
  560. package/es/utils/vue/props/index.js +8 -0
  561. package/es/utils/vue/props/runtime.d.ts +28 -0
  562. package/es/utils/vue/props/runtime.js +37 -0
  563. package/es/utils/vue/props/types.d.ts +120 -0
  564. package/es/utils/vue/props/types.js +1 -0
  565. package/es/utils/vue/props/util.d.ts +8 -0
  566. package/es/utils/vue/props/util.js +1 -0
  567. package/es/utils/vue/raf.d.ts +2 -0
  568. package/es/utils/vue/raf.js +6 -0
  569. package/es/utils/vue/refs.d.ts +3 -0
  570. package/es/utils/vue/refs.js +9 -0
  571. package/lib/comp-resolver.cjs +1 -1
  572. package/lib/component.cjs +1 -1
  573. package/lib/components/alert/alert.vue.cjs +1 -0
  574. package/lib/components/alert/alert.vue.d.ts +102 -0
  575. package/lib/components/alert/alert.vue2.cjs +1 -0
  576. package/lib/components/alert/index.cjs +1 -0
  577. package/lib/components/alert/index.d.ts +73 -0
  578. package/lib/components/alert/style/css.cjs +1 -0
  579. package/lib/components/alert/style/css.d.ts +0 -0
  580. package/lib/components/alert/style/index.cjs +1 -0
  581. package/lib/components/alert/style/index.d.ts +0 -0
  582. package/lib/components/alert/types.d.ts +4 -0
  583. package/lib/components/avatar/avatar.vue.d.ts +6 -14
  584. package/lib/components/avatar/avatar.vue2.cjs +1 -1
  585. package/lib/components/avatar/index.cjs +1 -1
  586. package/lib/components/avatar/index.d.ts +6 -14
  587. package/lib/components/avatar/style/css.cjs +1 -1
  588. package/lib/components/avatar/style/index.cjs +1 -1
  589. package/lib/components/back-top/back-top.vue2.cjs +1 -1
  590. package/lib/components/back-top/index.cjs +1 -1
  591. package/lib/components/back-top/use-back-top.cjs +1 -1
  592. package/lib/components/button/button-custom.cjs +1 -0
  593. package/lib/components/button/button-custom.d.ts +4 -0
  594. package/lib/components/button/button-group.vue.cjs +1 -0
  595. package/lib/components/button/button-group.vue.d.ts +23 -0
  596. package/lib/components/button/button-group.vue2.cjs +1 -0
  597. package/lib/components/button/button.vue.cjs +1 -0
  598. package/lib/components/button/button.vue.d.ts +189 -0
  599. package/lib/components/button/button.vue2.cjs +1 -0
  600. package/lib/components/button/constants.cjs +1 -0
  601. package/lib/components/button/constants.d.ts +7 -0
  602. package/lib/components/button/index.cjs +1 -0
  603. package/lib/components/button/index.d.ts +203 -0
  604. package/lib/components/button/instance.cjs +1 -0
  605. package/lib/components/button/instance.d.ts +4 -0
  606. package/lib/components/button/style/css.cjs +1 -0
  607. package/lib/components/button/style/css.d.ts +0 -0
  608. package/lib/components/button/style/index.cjs +1 -0
  609. package/lib/components/button/style/index.d.ts +0 -0
  610. package/lib/components/button/types.cjs +1 -0
  611. package/lib/components/button/types.d.ts +4 -0
  612. package/lib/components/button/use-button.cjs +1 -0
  613. package/lib/components/button/use-button.d.ts +10 -0
  614. package/lib/components/button-group/style/css.cjs +1 -0
  615. package/lib/components/button-group/style/css.d.ts +0 -0
  616. package/lib/components/button-group/style/index.cjs +1 -0
  617. package/lib/components/button-group/style/index.d.ts +0 -0
  618. package/lib/components/checkbox/checkbox-button.vue.cjs +1 -0
  619. package/lib/components/checkbox/checkbox-button.vue.d.ts +137 -0
  620. package/lib/components/checkbox/checkbox-button.vue2.cjs +1 -0
  621. package/lib/components/checkbox/checkbox-group.vue.cjs +1 -0
  622. package/lib/components/checkbox/checkbox-group.vue.d.ts +112 -0
  623. package/lib/components/checkbox/checkbox-group.vue2.cjs +1 -0
  624. package/lib/components/checkbox/checkbox.vue.cjs +1 -0
  625. package/lib/components/checkbox/checkbox.vue.d.ts +141 -0
  626. package/lib/components/checkbox/checkbox.vue2.cjs +1 -0
  627. package/lib/components/checkbox/composables/index.cjs +1 -0
  628. package/lib/components/checkbox/composables/index.d.ts +5 -0
  629. package/lib/components/checkbox/composables/use-checkbox-disabled.cjs +1 -0
  630. package/lib/components/checkbox/composables/use-checkbox-disabled.d.ts +6 -0
  631. package/lib/components/checkbox/composables/use-checkbox-event.cjs +1 -0
  632. package/lib/components/checkbox/composables/use-checkbox-event.d.ts +7 -0
  633. package/lib/components/checkbox/composables/use-checkbox-model.cjs +1 -0
  634. package/lib/components/checkbox/composables/use-checkbox-model.d.ts +7 -0
  635. package/lib/components/checkbox/composables/use-checkbox-status.cjs +1 -0
  636. package/lib/components/checkbox/composables/use-checkbox-status.d.ts +11 -0
  637. package/lib/components/checkbox/composables/use-checkbox.cjs +1 -0
  638. package/lib/components/checkbox/composables/use-checkbox.d.ts +15 -0
  639. package/lib/components/checkbox/constants.cjs +1 -0
  640. package/lib/components/checkbox/constants.d.ts +8 -0
  641. package/lib/components/checkbox/index.cjs +1 -0
  642. package/lib/components/checkbox/index.d.ts +556 -0
  643. package/lib/components/checkbox/style/css.cjs +1 -0
  644. package/lib/components/checkbox/style/css.d.ts +0 -0
  645. package/lib/components/checkbox/style/index.cjs +1 -0
  646. package/lib/components/checkbox/style/index.d.ts +0 -0
  647. package/lib/components/checkbox/types.cjs +1 -0
  648. package/lib/components/checkbox/types.d.ts +2 -0
  649. package/lib/components/checkbox-button/style/css.cjs +1 -0
  650. package/lib/components/checkbox-button/style/css.d.ts +0 -0
  651. package/lib/components/checkbox-button/style/index.cjs +1 -0
  652. package/lib/components/checkbox-button/style/index.d.ts +0 -0
  653. package/lib/components/checkbox-group/style/css.cjs +1 -0
  654. package/lib/components/checkbox-group/style/css.d.ts +0 -0
  655. package/lib/components/checkbox-group/style/index.cjs +1 -0
  656. package/lib/components/checkbox-group/style/index.d.ts +0 -0
  657. package/lib/components/clamp/clamp.vue2.cjs +1 -1
  658. package/lib/components/clamp/index.cjs +1 -1
  659. package/lib/components/clamp-toggle/clamp-toggle.vue.d.ts +4 -4
  660. package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
  661. package/lib/components/clamp-toggle/index.cjs +1 -1
  662. package/lib/components/clamp-toggle/index.d.ts +4 -4
  663. package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
  664. package/lib/components/collection/collection-item.vue.cjs +1 -0
  665. package/lib/components/collection/collection-item.vue.d.ts +2 -0
  666. package/lib/components/collection/collection-item.vue2.cjs +1 -0
  667. package/lib/components/collection/collection.cjs +1 -0
  668. package/lib/components/collection/collection.d.ts +242 -0
  669. package/lib/components/collection/collection.vue.cjs +1 -0
  670. package/lib/components/collection/collection.vue.d.ts +2 -0
  671. package/lib/components/collection/collection.vue2.cjs +1 -0
  672. package/lib/components/collection/index.cjs +1 -0
  673. package/lib/components/collection/index.d.ts +2 -0
  674. package/lib/components/collection/tokens.cjs +1 -0
  675. package/lib/components/collection/tokens.d.ts +12 -0
  676. package/lib/components/color-picker/color-picker.vue.cjs +1 -0
  677. package/lib/components/color-picker/color-picker.vue.d.ts +124 -0
  678. package/lib/components/color-picker/color-picker.vue2.cjs +1 -0
  679. package/lib/components/color-picker/components/alpha-slider.vue.cjs +1 -0
  680. package/lib/components/color-picker/components/alpha-slider.vue.d.ts +42 -0
  681. package/lib/components/color-picker/components/alpha-slider.vue2.cjs +1 -0
  682. package/lib/components/color-picker/components/hue-slider.vue.cjs +1 -0
  683. package/lib/components/color-picker/components/hue-slider.vue.d.ts +44 -0
  684. package/lib/components/color-picker/components/hue-slider.vue2.cjs +1 -0
  685. package/lib/components/color-picker/components/predefine.vue.cjs +1 -0
  686. package/lib/components/color-picker/components/predefine.vue.d.ts +43 -0
  687. package/lib/components/color-picker/components/predefine.vue2.cjs +1 -0
  688. package/lib/components/color-picker/components/sv-panel.vue.cjs +1 -0
  689. package/lib/components/color-picker/components/sv-panel.vue.d.ts +42 -0
  690. package/lib/components/color-picker/components/sv-panel.vue2.cjs +1 -0
  691. package/lib/components/color-picker/composables/use-alpha-slider.cjs +1 -0
  692. package/lib/components/color-picker/composables/use-alpha-slider.d.ts +20 -0
  693. package/lib/components/color-picker/contants.cjs +1 -0
  694. package/lib/components/color-picker/contants.d.ts +5 -0
  695. package/lib/components/color-picker/index.cjs +1 -0
  696. package/lib/components/color-picker/index.d.ts +106 -0
  697. package/lib/components/color-picker/style/css.cjs +1 -0
  698. package/lib/components/color-picker/style/css.d.ts +0 -0
  699. package/lib/components/color-picker/style/index.cjs +1 -0
  700. package/lib/components/color-picker/style/index.d.ts +0 -0
  701. package/lib/components/color-picker/utils/color.cjs +1 -0
  702. package/lib/components/color-picker/utils/color.d.ts +29 -0
  703. package/lib/components/color-picker/utils/draggable.cjs +1 -0
  704. package/lib/components/color-picker/utils/draggable.d.ts +6 -0
  705. package/lib/components/config-provider/config-provider.vue.d.ts +29 -0
  706. package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
  707. package/lib/components/config-provider/constants.d.ts +1 -1
  708. package/lib/components/config-provider/hooks/use-global-config.cjs +1 -1
  709. package/lib/components/config-provider/hooks/use-global-config.d.ts +1 -1
  710. package/lib/components/config-provider/index.cjs +1 -1
  711. package/lib/components/config-provider/index.d.ts +8 -1
  712. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  713. package/lib/components/descriptions/description-item.vue2.cjs +1 -1
  714. package/lib/components/descriptions/description.vue2.cjs +1 -1
  715. package/lib/components/descriptions/descriptions-cell.cjs +1 -1
  716. package/lib/components/descriptions/descriptions-row.vue2.cjs +1 -1
  717. package/lib/components/descriptions/index.cjs +1 -1
  718. package/lib/components/dialog/constants.cjs +1 -0
  719. package/lib/components/dialog/constants.d.ts +11 -0
  720. package/lib/components/dialog/dialog-content.vue.cjs +1 -0
  721. package/lib/components/dialog/dialog-content.vue.d.ts +81 -0
  722. package/lib/components/dialog/dialog-content.vue2.cjs +1 -0
  723. package/lib/components/dialog/dialog.vue.cjs +1 -0
  724. package/lib/components/dialog/dialog.vue.d.ts +164 -0
  725. package/lib/components/dialog/dialog.vue2.cjs +1 -0
  726. package/lib/components/dialog/hooks/use-dialog.cjs +1 -0
  727. package/lib/components/dialog/hooks/use-dialog.d.ts +23 -0
  728. package/lib/components/dialog/index.cjs +1 -0
  729. package/lib/components/dialog/index.d.ts +146 -0
  730. package/lib/components/dialog/style/css.cjs +1 -0
  731. package/lib/components/dialog/style/css.d.ts +0 -0
  732. package/lib/components/dialog/style/index.cjs +1 -0
  733. package/lib/components/dialog/style/index.d.ts +0 -0
  734. package/lib/components/dialog/types.cjs +1 -0
  735. package/lib/components/dialog/types.d.ts +10 -0
  736. package/lib/components/divider/divider.vue.d.ts +2 -2
  737. package/lib/components/divider/divider.vue2.cjs +1 -1
  738. package/lib/components/divider/index.cjs +1 -1
  739. package/lib/components/divider/index.d.ts +2 -2
  740. package/lib/components/docs-layout/style/css.cjs +1 -0
  741. package/lib/components/docs-layout/style/css.d.ts +0 -0
  742. package/lib/components/docs-layout/style/index.cjs +1 -0
  743. package/lib/components/docs-layout/style/index.d.ts +0 -0
  744. package/lib/components/dropdown/dropdown-item-impl.vue.cjs +1 -0
  745. package/lib/components/dropdown/dropdown-item-impl.vue.d.ts +57 -0
  746. package/lib/components/dropdown/dropdown-item-impl.vue2.cjs +1 -0
  747. package/lib/components/dropdown/dropdown-item.vue.cjs +1 -0
  748. package/lib/components/dropdown/dropdown-item.vue.d.ts +43 -0
  749. package/lib/components/dropdown/dropdown-item.vue2.cjs +1 -0
  750. package/lib/components/dropdown/dropdown-menu.vue.cjs +1 -0
  751. package/lib/components/dropdown/dropdown-menu.vue.d.ts +22 -0
  752. package/lib/components/dropdown/dropdown-menu.vue2.cjs +1 -0
  753. package/lib/components/dropdown/dropdown.vue.cjs +1 -0
  754. package/lib/components/dropdown/dropdown.vue.d.ts +828 -0
  755. package/lib/components/dropdown/dropdown.vue2.cjs +1 -0
  756. package/lib/components/dropdown/index.cjs +1 -0
  757. package/lib/components/dropdown/index.d.ts +959 -0
  758. package/lib/components/dropdown/style/css.cjs +1 -0
  759. package/lib/components/dropdown/style/css.d.ts +0 -0
  760. package/lib/components/dropdown/style/index.cjs +1 -0
  761. package/lib/components/dropdown/style/index.d.ts +0 -0
  762. package/lib/components/dropdown/tokens.cjs +1 -0
  763. package/lib/components/dropdown/tokens.d.ts +10 -0
  764. package/lib/components/dropdown/types.cjs +1 -0
  765. package/lib/components/dropdown/types.d.ts +267 -0
  766. package/lib/components/dropdown/useDropdown.cjs +1 -0
  767. package/lib/components/dropdown/useDropdown.d.ts +6 -0
  768. package/lib/components/dropdown-item/style/css.cjs +1 -0
  769. package/lib/components/dropdown-item/style/css.d.ts +0 -0
  770. package/lib/components/dropdown-item/style/index.cjs +1 -0
  771. package/lib/components/dropdown-item/style/index.d.ts +0 -0
  772. package/lib/components/dropdown-menu/style/css.cjs +1 -0
  773. package/lib/components/dropdown-menu/style/css.d.ts +0 -0
  774. package/lib/components/dropdown-menu/style/index.cjs +1 -0
  775. package/lib/components/dropdown-menu/style/index.d.ts +0 -0
  776. package/lib/components/empty/empty.vue.d.ts +11 -2
  777. package/lib/components/empty/empty.vue2.cjs +1 -1
  778. package/lib/components/empty/index.cjs +1 -1
  779. package/lib/components/empty/index.d.ts +2 -2
  780. package/lib/components/exception/exception.vue2.cjs +1 -1
  781. package/lib/components/exception/index.cjs +1 -1
  782. package/lib/components/focus-trap/focus-trap.vue.d.ts +1 -1
  783. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  784. package/lib/components/footer-layout/index.cjs +1 -1
  785. package/lib/components/form/form-item.vue.d.ts +28 -15
  786. package/lib/components/form/form-item.vue2.cjs +1 -1
  787. package/lib/components/form/form-label-wrap.cjs +1 -1
  788. package/lib/components/form/form.vue.d.ts +10 -10
  789. package/lib/components/form/form.vue2.cjs +1 -1
  790. package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
  791. package/lib/components/form/hooks/use-form-common-props.d.ts +2 -2
  792. package/lib/components/form/hooks/use-form-item.cjs +1 -1
  793. package/lib/components/form/hooks/use-form-item.d.ts +2 -2
  794. package/lib/components/form/index.cjs +1 -1
  795. package/lib/components/form/index.d.ts +54 -28
  796. package/lib/components/form/utils.cjs +1 -1
  797. package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
  798. package/lib/components/full-screen/index.cjs +1 -1
  799. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  800. package/lib/components/header-layout/index.cjs +1 -1
  801. package/lib/components/icon/icon.vue.d.ts +12 -3
  802. package/lib/components/icon/icon.vue2.cjs +1 -1
  803. package/lib/components/icon/index.cjs +1 -1
  804. package/lib/components/icon/index.d.ts +10 -2
  805. package/lib/components/icon-text/icon-text.vue.d.ts +4 -4
  806. package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
  807. package/lib/components/icon-text/index.cjs +1 -1
  808. package/lib/components/icon-text/index.d.ts +4 -4
  809. package/lib/components/iframe-layout/iframe-layout.vue2.cjs +1 -1
  810. package/lib/components/iframe-layout/iframe-page.vue2.cjs +1 -1
  811. package/lib/components/iframe-layout/index.cjs +1 -1
  812. package/lib/components/image/image.vue.d.ts +17 -3
  813. package/lib/components/image/image.vue2.cjs +1 -1
  814. package/lib/components/image/index.cjs +1 -1
  815. package/lib/components/image/index.d.ts +4 -3
  816. package/lib/components/image/style/css.cjs +1 -1
  817. package/lib/components/image/style/index.cjs +1 -1
  818. package/lib/components/image-viewer/image-viewer.vue.cjs +1 -0
  819. package/lib/components/image-viewer/image-viewer.vue.d.ts +88 -0
  820. package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -0
  821. package/lib/components/image-viewer/index.cjs +1 -0
  822. package/lib/components/image-viewer/index.d.ts +77 -0
  823. package/lib/components/image-viewer/style/css.cjs +1 -0
  824. package/lib/components/image-viewer/style/css.d.ts +0 -0
  825. package/lib/components/image-viewer/style/index.cjs +1 -0
  826. package/lib/components/image-viewer/style/index.d.ts +0 -0
  827. package/lib/components/image-viewer/types.cjs +1 -0
  828. package/lib/components/image-viewer/types.d.ts +1 -0
  829. package/lib/components/index.cjs +1 -1
  830. package/lib/components/index.d.ts +12 -0
  831. package/lib/components/input/index.cjs +1 -1
  832. package/lib/components/input/index.d.ts +15 -15
  833. package/lib/components/input/input.vue.d.ts +15 -15
  834. package/lib/components/input/input.vue2.cjs +1 -1
  835. package/lib/components/link/index.cjs +1 -1
  836. package/lib/components/link/index.d.ts +2 -2
  837. package/lib/components/link/link.vue.d.ts +2 -2
  838. package/lib/components/link/link.vue2.cjs +1 -1
  839. package/lib/components/loading/index.d.ts +2 -1
  840. package/lib/components/loading/loading.cjs +1 -1
  841. package/lib/components/loading/loading.d.ts +2 -1
  842. package/lib/components/loading/service.cjs +1 -1
  843. package/lib/components/logo/index.cjs +1 -1
  844. package/lib/components/logo/logo.vue2.cjs +1 -1
  845. package/lib/components/md-code-demo/index.cjs +1 -1
  846. package/lib/components/md-code-demo/md-code-demo.cjs +1 -1
  847. package/lib/components/md-code-tabs/index.cjs +1 -1
  848. package/lib/components/md-comment/index.cjs +1 -1
  849. package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
  850. package/lib/components/md-container/index.cjs +1 -1
  851. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  852. package/lib/components/md-container/style/css.cjs +1 -1
  853. package/lib/components/md-container/style/index.cjs +1 -1
  854. package/lib/components/md-tabs/index.cjs +1 -1
  855. package/lib/components/md-vue-playground/index.cjs +1 -1
  856. package/lib/components/md-vue-playground/md-vue-playground.vue2.cjs +1 -1
  857. package/lib/components/menu/index.cjs +1 -1
  858. package/lib/components/menu/index.d.ts +4 -4
  859. package/lib/components/menu/menu-collapse-transition.vue2.cjs +1 -1
  860. package/lib/components/menu/menu-item-group.vue2.cjs +1 -1
  861. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  862. package/lib/components/menu/menu.vue.d.ts +4 -4
  863. package/lib/components/menu/menu.vue2.cjs +1 -1
  864. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  865. package/lib/components/menu/use-menu-css-var.cjs +1 -1
  866. package/lib/components/message/index.cjs +1 -1
  867. package/lib/components/message/message.vue.d.ts +16 -0
  868. package/lib/components/message/message.vue2.cjs +1 -1
  869. package/lib/components/message/method.cjs +1 -1
  870. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  871. package/lib/components/multiple-tabs/tab-content.vue2.cjs +1 -1
  872. package/lib/components/overlay/index.cjs +1 -1
  873. package/lib/components/overlay/index.d.ts +2 -2
  874. package/lib/components/overlay/overlay.vue.d.ts +2 -2
  875. package/lib/components/overlay/overlay.vue2.cjs +1 -1
  876. package/lib/components/page-wrapper/index.cjs +1 -1
  877. package/lib/components/page-wrapper/page-wrapper.vue2.cjs +1 -1
  878. package/lib/components/pagination/components/jumper.vue2.cjs +1 -1
  879. package/lib/components/pagination/components/pager.vue2.cjs +1 -1
  880. package/lib/components/pagination/components/sizes.vue2.cjs +1 -1
  881. package/lib/components/pagination/components/total.vue2.cjs +1 -1
  882. package/lib/components/pagination/index.cjs +1 -1
  883. package/lib/components/pagination/index.d.ts +116 -73
  884. package/lib/components/pagination/pagination.vue.cjs +1 -0
  885. package/lib/components/pagination/pagination.vue.d.ts +185 -0
  886. package/lib/components/pagination/pagination.vue2.cjs +1 -0
  887. package/lib/components/pagination/usePagination.cjs +1 -1
  888. package/lib/components/pagination/usePagination.d.ts +3 -3
  889. package/lib/components/popover/index.cjs +1 -1
  890. package/lib/components/popover/popover.vue2.cjs +1 -1
  891. package/lib/components/popper/arrow.vue2.cjs +1 -1
  892. package/lib/components/popper/composables/use-content-dom.cjs +1 -1
  893. package/lib/components/popper/composables/use-content.cjs +1 -1
  894. package/lib/components/popper/composables/use-content.d.ts +4 -4
  895. package/lib/components/popper/content.vue.d.ts +3 -3
  896. package/lib/components/popper/index.cjs +1 -1
  897. package/lib/components/popper/index.d.ts +2 -2
  898. package/lib/components/popper/popper.vue.d.ts +2 -2
  899. package/lib/components/popper/trigger.vue2.cjs +1 -1
  900. package/lib/components/qrcode/index.cjs +1 -1
  901. package/lib/components/qrcode/qrcode.vue2.cjs +1 -1
  902. package/lib/components/radio/constants.cjs +1 -0
  903. package/lib/components/radio/constants.d.ts +6 -0
  904. package/lib/components/radio/index.cjs +1 -0
  905. package/lib/components/radio/index.d.ts +294 -0
  906. package/lib/components/radio/radio-button.vue.cjs +1 -0
  907. package/lib/components/radio/radio-button.vue.d.ts +44 -0
  908. package/lib/components/radio/radio-button.vue2.cjs +1 -0
  909. package/lib/components/radio/radio-group.vue.cjs +1 -0
  910. package/lib/components/radio/radio-group.vue.d.ts +96 -0
  911. package/lib/components/radio/radio-group.vue2.cjs +1 -0
  912. package/lib/components/radio/radio.vue.cjs +1 -0
  913. package/lib/components/radio/radio.vue.d.ts +65 -0
  914. package/lib/components/radio/radio.vue2.cjs +1 -0
  915. package/lib/components/radio/style/css.cjs +1 -0
  916. package/lib/components/radio/style/css.d.ts +0 -0
  917. package/lib/components/radio/style/index.cjs +1 -0
  918. package/lib/components/radio/style/index.d.ts +0 -0
  919. package/lib/components/radio/use-radio.cjs +1 -0
  920. package/lib/components/radio/use-radio.d.ts +15 -0
  921. package/lib/components/radio-button/style/css.cjs +1 -0
  922. package/lib/components/radio-button/style/css.d.ts +0 -0
  923. package/lib/components/radio-button/style/index.cjs +1 -0
  924. package/lib/components/radio-button/style/index.d.ts +0 -0
  925. package/lib/components/radio-group/style/css.cjs +1 -0
  926. package/lib/components/radio-group/style/css.d.ts +0 -0
  927. package/lib/components/radio-group/style/index.cjs +1 -0
  928. package/lib/components/radio-group/style/index.d.ts +0 -0
  929. package/lib/components/result/index.cjs +1 -1
  930. package/lib/components/result/result.vue2.cjs +1 -1
  931. package/lib/components/router-view-content/index.cjs +1 -1
  932. package/lib/components/router-view-content/router-view-content.vue2.cjs +1 -1
  933. package/lib/components/roving-focus-group/index.cjs +1 -0
  934. package/lib/components/roving-focus-group/index.d.ts +10 -0
  935. package/lib/components/roving-focus-group/roving-focus-group-impl.vue.cjs +1 -0
  936. package/lib/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +48 -0
  937. package/lib/components/roving-focus-group/roving-focus-group-impl.vue2.cjs +1 -0
  938. package/lib/components/roving-focus-group/roving-focus-group.vue.cjs +1 -0
  939. package/lib/components/roving-focus-group/roving-focus-group.vue.d.ts +2 -0
  940. package/lib/components/roving-focus-group/roving-focus-group.vue2.cjs +1 -0
  941. package/lib/components/roving-focus-group/roving-focus-item.vue.cjs +1 -0
  942. package/lib/components/roving-focus-group/roving-focus-item.vue.d.ts +32 -0
  943. package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -0
  944. package/lib/components/roving-focus-group/tokens.cjs +1 -0
  945. package/lib/components/roving-focus-group/tokens.d.ts +37 -0
  946. package/lib/components/roving-focus-group/types.cjs +1 -0
  947. package/lib/components/roving-focus-group/types.d.ts +252 -0
  948. package/lib/components/roving-focus-group/utils.cjs +1 -0
  949. package/lib/components/roving-focus-group/utils.d.ts +8 -0
  950. package/lib/components/scrollbar/bar.vue.cjs +1 -0
  951. package/lib/components/scrollbar/bar.vue.d.ts +54 -0
  952. package/lib/components/scrollbar/bar.vue2.cjs +1 -0
  953. package/lib/components/scrollbar/constants.cjs +1 -0
  954. package/lib/components/scrollbar/constants.d.ts +6 -0
  955. package/lib/components/scrollbar/index.cjs +1 -0
  956. package/lib/components/scrollbar/index.d.ts +113 -0
  957. package/lib/components/scrollbar/scrollbar.vue.cjs +1 -0
  958. package/lib/components/scrollbar/scrollbar.vue.d.ts +163 -0
  959. package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -0
  960. package/lib/components/scrollbar/style/css.cjs +1 -0
  961. package/lib/components/scrollbar/style/css.d.ts +0 -0
  962. package/lib/components/scrollbar/style/index.cjs +1 -0
  963. package/lib/components/scrollbar/style/index.d.ts +0 -0
  964. package/lib/components/scrollbar/thumb.vue.cjs +1 -0
  965. package/lib/components/scrollbar/thumb.vue.d.ts +52 -0
  966. package/lib/components/scrollbar/thumb.vue2.cjs +1 -0
  967. package/lib/components/scrollbar/types.cjs +1 -0
  968. package/lib/components/scrollbar/types.d.ts +2 -0
  969. package/lib/components/scrollbar/util.cjs +1 -0
  970. package/lib/components/scrollbar/util.d.ts +28 -0
  971. package/lib/components/search/index.cjs +1 -1
  972. package/lib/components/search/index.d.ts +7 -7
  973. package/lib/components/search/search.vue.d.ts +7 -7
  974. package/lib/components/search/search.vue2.cjs +1 -1
  975. package/lib/components/select-v2/defaults.cjs +1 -0
  976. package/lib/components/select-v2/defaults.d.ts +113 -0
  977. package/lib/components/select-v2/group-item.vue.cjs +1 -0
  978. package/lib/components/select-v2/group-item.vue.d.ts +35 -0
  979. package/lib/components/select-v2/group-item.vue2.cjs +1 -0
  980. package/lib/components/select-v2/index.cjs +1 -0
  981. package/lib/components/select-v2/index.d.ts +2025 -0
  982. package/lib/components/select-v2/option-item.vue.cjs +1 -0
  983. package/lib/components/select-v2/option-item.vue.d.ts +49 -0
  984. package/lib/components/select-v2/option-item.vue2.cjs +1 -0
  985. package/lib/components/select-v2/select-dropdown.cjs +1 -0
  986. package/lib/components/select-v2/select-dropdown.d.ts +16 -0
  987. package/lib/components/select-v2/select.types.cjs +1 -0
  988. package/lib/components/select-v2/select.types.d.ts +18 -0
  989. package/lib/components/select-v2/select.vue.cjs +1 -0
  990. package/lib/components/select-v2/select.vue.d.ts +1012 -0
  991. package/lib/components/select-v2/select.vue2.cjs +1 -0
  992. package/lib/components/select-v2/style/css.cjs +1 -0
  993. package/lib/components/select-v2/style/css.d.ts +0 -0
  994. package/lib/components/select-v2/style/index.cjs +1 -0
  995. package/lib/components/select-v2/style/index.d.ts +0 -0
  996. package/lib/components/select-v2/token.cjs +1 -0
  997. package/lib/components/select-v2/token.d.ts +16 -0
  998. package/lib/components/select-v2/useAllowCreate.cjs +1 -0
  999. package/lib/components/select-v2/useAllowCreate.d.ts +8 -0
  1000. package/lib/components/select-v2/useInput.cjs +1 -0
  1001. package/lib/components/select-v2/useInput.d.ts +5 -0
  1002. package/lib/components/select-v2/useOption.cjs +1 -0
  1003. package/lib/components/select-v2/useOption.d.ts +7 -0
  1004. package/lib/components/select-v2/useSelect.cjs +1 -0
  1005. package/lib/components/select-v2/useSelect.d.ts +782 -0
  1006. package/lib/components/select-v2/util.cjs +1 -0
  1007. package/lib/components/select-v2/util.d.ts +2 -0
  1008. package/lib/components/side-menu/index.cjs +1 -1
  1009. package/lib/components/side-menu/index.d.ts +6 -6
  1010. package/lib/components/side-menu/side-menu.vue.d.ts +6 -6
  1011. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  1012. package/lib/components/side-menu/types.d.ts +1 -1
  1013. package/lib/components/slot/only-child.cjs +1 -1
  1014. package/lib/components/switch/index.cjs +1 -0
  1015. package/lib/components/switch/index.d.ts +205 -0
  1016. package/lib/components/switch/style/css.cjs +1 -0
  1017. package/lib/components/switch/style/css.d.ts +0 -0
  1018. package/lib/components/switch/style/index.cjs +1 -0
  1019. package/lib/components/switch/style/index.d.ts +0 -0
  1020. package/lib/components/switch/switch.vue.cjs +1 -0
  1021. package/lib/components/switch/switch.vue.d.ts +236 -0
  1022. package/lib/components/switch/switch.vue2.cjs +1 -0
  1023. package/lib/components/table/index.cjs +1 -0
  1024. package/lib/components/table/style/css.cjs +1 -0
  1025. package/lib/components/table/style/css.d.ts +0 -0
  1026. package/lib/components/table/style/index.cjs +1 -0
  1027. package/lib/components/table/style/index.d.ts +0 -0
  1028. package/lib/components/table/table.vue.cjs +1 -0
  1029. package/lib/components/table/table.vue.d.ts +137 -0
  1030. package/lib/components/table/table.vue2.cjs +1 -0
  1031. package/lib/components/table/type.cjs +1 -0
  1032. package/lib/components/table/type.d.ts +21 -0
  1033. package/lib/components/tabs/index.cjs +1 -1
  1034. package/lib/components/tabs/index.d.ts +20 -20
  1035. package/lib/components/tabs/tab-bar.vue.d.ts +2 -2
  1036. package/lib/components/tabs/tab-bar.vue2.cjs +1 -1
  1037. package/lib/components/tabs/tab-nav.vue.d.ts +2 -2
  1038. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  1039. package/lib/components/tabs/tab-pane.vue.d.ts +2 -2
  1040. package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
  1041. package/lib/components/tabs/tabs.vue.d.ts +14 -14
  1042. package/lib/components/tabs/tabs.vue2.cjs +1 -1
  1043. package/lib/components/tabs/types.d.ts +2 -2
  1044. package/lib/components/tag/index.cjs +1 -1
  1045. package/lib/components/tag/index.d.ts +2 -2
  1046. package/lib/components/tag/tag.vue.d.ts +2 -2
  1047. package/lib/components/tag/tag.vue2.cjs +1 -1
  1048. package/lib/components/tooltip/content.vue2.cjs +1 -1
  1049. package/lib/components/tooltip/index.cjs +1 -1
  1050. package/lib/components/tooltip/index.d.ts +7 -5
  1051. package/lib/components/tooltip/tooltip.vue.d.ts +5 -5
  1052. package/lib/components/tooltip/tooltip.vue2.cjs +1 -1
  1053. package/lib/components/tooltip/trigger.vue2.cjs +1 -1
  1054. package/lib/components/tooltip/utils.cjs +1 -1
  1055. package/lib/components/verify-code/index.cjs +1 -0
  1056. package/lib/components/verify-code/index.d.ts +23 -0
  1057. package/lib/components/verify-code/style/css.cjs +1 -0
  1058. package/lib/components/verify-code/style/css.d.ts +0 -0
  1059. package/lib/components/verify-code/style/index.cjs +1 -0
  1060. package/lib/components/verify-code/style/index.d.ts +0 -0
  1061. package/lib/components/verify-code/useImageVerify.cjs +1 -0
  1062. package/lib/components/verify-code/useImageVerify.d.ts +11 -0
  1063. package/lib/components/verify-code/verify-code.vue.cjs +1 -0
  1064. package/lib/components/verify-code/verify-code.vue.d.ts +24 -0
  1065. package/lib/components/verify-code/verify-code.vue2.cjs +1 -0
  1066. package/lib/components/virtual-list/builders/build-grid.cjs +1 -0
  1067. package/lib/components/virtual-list/builders/build-grid.d.ts +214 -0
  1068. package/lib/components/virtual-list/builders/build-list.cjs +1 -0
  1069. package/lib/components/virtual-list/builders/build-list.d.ts +167 -0
  1070. package/lib/components/virtual-list/components/dynamic-size-grid.cjs +7 -0
  1071. package/lib/components/virtual-list/components/dynamic-size-grid.d.ts +206 -0
  1072. package/lib/components/virtual-list/components/dynamic-size-list.cjs +3 -0
  1073. package/lib/components/virtual-list/components/dynamic-size-list.d.ts +165 -0
  1074. package/lib/components/virtual-list/components/fixed-size-grid.cjs +7 -0
  1075. package/lib/components/virtual-list/components/fixed-size-grid.d.ts +193 -0
  1076. package/lib/components/virtual-list/components/fixed-size-list.cjs +6 -0
  1077. package/lib/components/virtual-list/components/fixed-size-list.d.ts +164 -0
  1078. package/lib/components/virtual-list/components/scrollbar.cjs +1 -0
  1079. package/lib/components/virtual-list/components/scrollbar.d.ts +79 -0
  1080. package/lib/components/virtual-list/defaults.cjs +1 -0
  1081. package/lib/components/virtual-list/defaults.d.ts +30 -0
  1082. package/lib/components/virtual-list/hooks/use-cache.cjs +1 -0
  1083. package/lib/components/virtual-list/hooks/use-cache.d.ts +1 -0
  1084. package/lib/components/virtual-list/hooks/use-grid-wheel.cjs +1 -0
  1085. package/lib/components/virtual-list/hooks/use-grid-wheel.d.ts +13 -0
  1086. package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -0
  1087. package/lib/components/virtual-list/hooks/use-wheel.d.ts +13 -0
  1088. package/lib/components/virtual-list/index.cjs +1 -0
  1089. package/lib/components/virtual-list/index.d.ts +8 -0
  1090. package/lib/components/virtual-list/props.cjs +1 -0
  1091. package/lib/components/virtual-list/props.d.ts +201 -0
  1092. package/lib/components/virtual-list/style/css.cjs +1 -0
  1093. package/lib/components/virtual-list/style/css.d.ts +0 -0
  1094. package/lib/components/virtual-list/style/index.cjs +1 -0
  1095. package/lib/components/virtual-list/style/index.d.ts +0 -0
  1096. package/lib/components/virtual-list/types.cjs +1 -0
  1097. package/lib/components/virtual-list/types.d.ts +137 -0
  1098. package/lib/components/virtual-list/utils.cjs +1 -0
  1099. package/lib/components/virtual-list/utils.d.ts +17 -0
  1100. package/lib/defaults.d.ts +1 -1
  1101. package/lib/hooks/index.cjs +1 -1
  1102. package/lib/hooks/index.d.ts +3 -0
  1103. package/lib/hooks/use-draggable/index.cjs +1 -0
  1104. package/lib/hooks/use-draggable/index.d.ts +2 -0
  1105. package/lib/hooks/use-id/index.cjs +1 -1
  1106. package/lib/hooks/use-lockscreen/index.cjs +1 -0
  1107. package/lib/hooks/use-lockscreen/index.d.ts +11 -0
  1108. package/lib/hooks/use-ordered-children/index.cjs +1 -1
  1109. package/lib/hooks/use-popper/index.d.ts +4 -4
  1110. package/lib/hooks/use-same-target/index.cjs +1 -0
  1111. package/lib/hooks/use-same-target/index.d.ts +5 -0
  1112. package/lib/hooks/use-size/index.d.ts +1 -1
  1113. package/lib/index.cjs +1 -1
  1114. package/lib/index.d.ts +1 -1
  1115. package/lib/package.json.cjs +1 -1
  1116. package/lib/utils/dom/index.cjs +1 -0
  1117. package/lib/utils/dom/index.d.ts +2 -0
  1118. package/lib/utils/dom/position.cjs +1 -0
  1119. package/lib/utils/dom/position.d.ts +7 -0
  1120. package/lib/utils/dom/scroll.cjs +1 -0
  1121. package/lib/utils/dom/scroll.d.ts +8 -0
  1122. package/lib/utils/index.cjs +1 -1
  1123. package/lib/utils/index.d.ts +1 -0
  1124. package/lib/utils/vue/data-helper.cjs +1 -0
  1125. package/lib/utils/vue/data-helper.d.ts +1 -0
  1126. package/lib/utils/vue/index.cjs +1 -1
  1127. package/lib/utils/vue/index.d.ts +4 -0
  1128. package/lib/utils/vue/props/index.cjs +1 -0
  1129. package/lib/utils/vue/props/index.d.ts +3 -0
  1130. package/lib/utils/vue/props/runtime.cjs +1 -0
  1131. package/lib/utils/vue/props/runtime.d.ts +28 -0
  1132. package/lib/utils/vue/props/types.cjs +1 -0
  1133. package/lib/utils/vue/props/types.d.ts +120 -0
  1134. package/lib/utils/vue/props/util.cjs +1 -0
  1135. package/lib/utils/vue/props/util.d.ts +8 -0
  1136. package/lib/utils/vue/raf.cjs +1 -0
  1137. package/lib/utils/vue/raf.d.ts +2 -0
  1138. package/lib/utils/vue/refs.cjs +1 -0
  1139. package/lib/utils/vue/refs.d.ts +3 -0
  1140. package/package.json +19 -20
  1141. package/theme-style/index.css +1 -1
  1142. package/theme-style/src/alert.scss +115 -0
  1143. package/theme-style/src/avatar.scss +2 -1
  1144. package/theme-style/src/button-group.scss +79 -0
  1145. package/theme-style/src/button.scss +312 -0
  1146. package/theme-style/src/checkbox-button.scss +139 -0
  1147. package/theme-style/src/checkbox-group.scss +7 -0
  1148. package/theme-style/src/checkbox.scss +293 -0
  1149. package/theme-style/src/color-picker.scss +381 -0
  1150. package/theme-style/src/common/var.scss +279 -2
  1151. package/theme-style/src/dialog.scss +185 -0
  1152. package/theme-style/src/dropdown-item.scss +0 -0
  1153. package/theme-style/src/dropdown-menu.scss +0 -0
  1154. package/theme-style/src/dropdown.scss +207 -0
  1155. package/theme-style/src/form.scss +3 -3
  1156. package/theme-style/src/image-viewer.scss +147 -0
  1157. package/theme-style/src/image.scss +1 -1
  1158. package/theme-style/src/index.scss +26 -0
  1159. package/theme-style/src/input.scss +0 -5
  1160. package/theme-style/src/mixins/_button.scss +167 -0
  1161. package/theme-style/src/mixins/mixins.scss +26 -1
  1162. package/theme-style/src/option-group.scss +54 -0
  1163. package/theme-style/src/option-item.scss +70 -0
  1164. package/theme-style/src/radio-button.scss +164 -0
  1165. package/theme-style/src/radio-group.scss +9 -0
  1166. package/theme-style/src/radio.scss +214 -0
  1167. package/theme-style/src/scrollbar.scss +97 -0
  1168. package/theme-style/src/select/common.scss +10 -0
  1169. package/theme-style/src/select-dropdown-v2.scss +63 -0
  1170. package/theme-style/src/select-dropdown.scss +91 -0
  1171. package/theme-style/src/select-v2.scss +345 -0
  1172. package/theme-style/src/select.scss +221 -0
  1173. package/theme-style/src/side-menu.scss +4 -0
  1174. package/theme-style/src/switch.scss +299 -0
  1175. package/theme-style/src/table.scss +167 -0
  1176. package/theme-style/src/verify-code.scss +0 -0
  1177. package/theme-style/src/virtual-list.scss +40 -0
  1178. package/theme-style/vft-alert.css +1 -0
  1179. package/theme-style/vft-avatar.css +1 -1
  1180. package/theme-style/vft-button-group.css +1 -0
  1181. package/theme-style/vft-button.css +1 -0
  1182. package/theme-style/vft-checkbox-button.css +1 -0
  1183. package/theme-style/vft-checkbox-group.css +1 -0
  1184. package/theme-style/vft-checkbox.css +1 -0
  1185. package/theme-style/vft-color-picker.css +1 -0
  1186. package/theme-style/vft-dialog.css +1 -0
  1187. package/theme-style/vft-dropdown-item.css +0 -0
  1188. package/theme-style/vft-dropdown-menu.css +0 -0
  1189. package/theme-style/vft-dropdown.css +1 -0
  1190. package/theme-style/vft-form.css +1 -1
  1191. package/theme-style/vft-image-viewer.css +1 -0
  1192. package/theme-style/vft-image.css +1 -1
  1193. package/theme-style/vft-input.css +1 -1
  1194. package/theme-style/vft-option-group.css +1 -0
  1195. package/theme-style/vft-option-item.css +1 -0
  1196. package/theme-style/vft-radio-button.css +1 -0
  1197. package/theme-style/vft-radio-group.css +1 -0
  1198. package/theme-style/vft-radio.css +1 -0
  1199. package/theme-style/vft-scrollbar.css +1 -0
  1200. package/theme-style/vft-select-dropdown-v2.css +1 -0
  1201. package/theme-style/vft-select-dropdown.css +1 -0
  1202. package/theme-style/vft-select-v2.css +1 -0
  1203. package/theme-style/vft-select.css +1 -0
  1204. package/theme-style/vft-side-menu.css +1 -1
  1205. package/theme-style/vft-switch.css +1 -0
  1206. package/theme-style/vft-table.css +1 -0
  1207. package/theme-style/vft-verify-code.css +0 -0
  1208. package/theme-style/vft-virtual-list.css +1 -0
  1209. package/es/components/config-provider/types.d.ts +0 -18
  1210. package/es/components/pagination/pagination.d.ts +0 -237
  1211. package/es/components/pagination/pagination.js +0 -250
  1212. package/lib/components/config-provider/types.d.ts +0 -18
  1213. package/lib/components/pagination/pagination.cjs +0 -1
  1214. package/lib/components/pagination/pagination.d.ts +0 -237
  1215. /package/es/components/{config-provider → alert}/types.js +0 -0
  1216. /package/lib/components/{config-provider → alert}/types.cjs +0 -0
@@ -1 +1 @@
1
- .vft-image__error,.vft-image__inner,.vft-image__placeholder,.vft-image__wrapper{width:100%;height:100%}.vft-image{position:relative;display:inline-block;overflow:hidden}.vft-image__inner{vertical-align:top;opacity:1}.vft-image__inner.is-loading{opacity:0}.vft-image__wrapper{position:absolute;top:0;left:0}.vft-image__placeholder{background:var(--vft-fill-color-light)}.vft-image__error{display:flex;justify-content:center;align-items:center;font-size:14px;background:var(--vft-fill-color-light);color:var(--vft-text-color-placeholder);vertical-align:middle}.vft-image__preview{cursor:pointer}
1
+ .vft-image__error,.vft-image__inner,.vft-image__placeholder,.vft-image__wrapper{width:100%;height:100%}.vft-image{position:relative;display:inline-block;overflow:hidden}.vft-image__inner{vertical-align:top;opacity:1}.vft-image__inner.is-loading{opacity:0}.vft-image__wrapper{position:absolute;top:0;left:0}.vft-image__placeholder{background:var(--vft-fill-color-light)}.vft-image__error{display:flex;justify-content:center;align-items:center;font-size:14px;background:var(--vft-fill-color-light);color:var(--vft-text-placeholder-color);vertical-align:middle}.vft-image__preview{cursor:pointer}
@@ -1 +1 @@
1
- :root{--vft-input-width:100%;--vft-input-text-color:var(--vft-text-regular-color);--vft-input-border:var(--vft-border);--vft-input-hover-border:var(--vft-border-color-hover);--vft-input-focus-border:var(--vft-primary-color);--vft-input-transparent-border:0 0 0 1px transparent inset;--vft-input-border-color:var(--vft-border-color);--vft-input-border-radius:var(--vft-border-radius-base);--vft-input-bg-color:var(--vft-fill-color-blank);--vft-input-icon-color:var(--vft-text-placeholder-color);--vft-input-placeholder-color:var(--vft-text-placeholder-color);--vft-input-hover-border-color:var(--vft-border-color-hover);--vft-input-clear-hover-color:var(--vft-text-secondary-color);--vft-input-focus-border-color:var(--vft-primary-color)}.vft-input{--vft-input-height:var(--vft-component-size);position:relative;font-size:var(--vft-font-size-base);display:inline-flex;width:var(--vft-input-width);line-height:var(--vft-input-height);box-sizing:border-box;vertical-align:middle;transition:width .2s ease}.vft-input::-webkit-scrollbar{z-index:11;width:6px}.vft-input::-webkit-scrollbar:horizontal{height:6px}.vft-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-input::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-input::-webkit-scrollbar-corner{background:0 0}.vft-input::-webkit-scrollbar-track{background:0 0}.vft-input::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-input .vft-input__clear,.vft-input .vft-input__password{color:var(--vft-input-icon-color);font-size:14px;cursor:pointer}.vft-input .vft-input__clear:hover,.vft-input .vft-input__password:hover{color:var(--vft-input-clear-hover-color)}.vft-input .vft-input__count{height:100%;display:inline-flex;align-items:center;color:var(--vft-info-color);font-size:12px}.vft-input .vft-input__count .vft-input__count-inner{background:var(--vft-fill-color-blank);line-height:initial;display:inline-block;padding-left:8px}.vft-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));border:1px solid var(--vft-input-border-color)}.vft-input__wrapper:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-input__wrapper.is-focus{border:1px solid var(--vft-input-focus-border-color)}.vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 32px) - 2px);width:100%;flex-grow:1;-webkit-appearance:none;color:var(--vft-input-text-color,var(--vft-text-regular-color));font-size:inherit;height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box}.vft-input__inner:focus{outline:0}.vft-input__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner[type=password]::-ms-reveal{display:none}.vft-input__inner[type=number]{line-height:1px}.vft-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__prefix-inner>:last-child{margin-right:8px}.vft-input__prefix-inner>:first-child,.vft-input__prefix-inner>:first-child.vft-input__icon{margin-left:0}.vft-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__suffix-inner>:first-child{margin-left:8px}.vft-input .vft-input__icon{height:inherit;line-height:inherit;display:flex;justify-content:center;align-items:center;transition:all var(--vft-transition-duration);margin-left:8px}.vft-input__validateIcon{pointer-events:none}.vft-input.is-active .vft-input__wrapper{border:1px solid var(--vft-input-focus-color)}.vft-input.is-disabled{cursor:not-allowed}.vft-input.is-disabled .vft-input__wrapper{background-color:var(--vft-disabled-bg-color);border:1px solid var(--vft-input-disable-color)}.vft-input.is-disabled .vft-input__inner{color:var(--vft-disabled-text-color);-webkit-text-fill-color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input.is-disabled .vft-input__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__icon{cursor:not-allowed}.vft-input.is-exceed .vft-input__wrapper{border:1px solid var(--vft-input-danger-color)}.vft-input.is-exceed .vft-input__suffix .vft-input__count{color:var(--vft-danger-color)}.vft-input--large{--vft-input-height:var(--vft-component-size-large);font-size:14px}.vft-input--large .vft-input__wrapper{padding:1px 15px}.vft-input--large .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 40px) - 2px)}.vft-input--small{--vft-input-height:var(--vft-component-size-small);font-size:12px}.vft-input--small .vft-input__wrapper{padding:1px 7px}.vft-input--small .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 24px) - 2px)}.vft-input-group{display:inline-flex;width:100%;align-items:stretch}.vft-input-group__append,.vft-input-group__prepend{background-color:var(--vft-fill-color-light);color:var(--vft-info-color);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--vft-input-border-radius);padding:0 20px;white-space:nowrap}.vft-input-group__append:focus,.vft-input-group__prepend:focus{outline:0}.vft-input-group__append .vft-button,.vft-input-group__append .vft-select,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-select{display:inline-block;margin:0 -20px}.vft-input-group__append button.vft-button,.vft-input-group__append button.vft-button:hover,.vft-input-group__append div.vft-select .vft-input__wrapper,.vft-input-group__append div.vft-select:hover .vft-input__wrapper,.vft-input-group__prepend button.vft-button,.vft-input-group__prepend button.vft-button:hover,.vft-input-group__prepend div.vft-select .vft-input__wrapper,.vft-input-group__prepend div.vft-select:hover .vft-input__wrapper{border-color:transparent;background-color:transparent;color:inherit}.vft-input-group__append .vft-button,.vft-input-group__append .vft-input,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-input{font-size:inherit}.vft-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color);border-right:0}.vft-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color);border-left:0}.vft-input-group--prepend>.vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper{border:1px solid var(--vft-input-focus-border-color);z-index:2}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper:focus{outline:0;z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--append>.vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__wrapper{z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--vft-font-size-base)}.vft-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;font-family:inherit;color:var(--vft-input-text-color,var(--vft-text-regular-color));background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;-webkit-appearance:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));transition:var(--vft-transition-box-shadow);border:1px solid var(--vft-input-border-color)}.vft-textarea__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-textarea__inner:focus{outline:0;border:1px solid var(--vft-input-focus-border-color)}.vft-textarea .vft-input__count{color:var(--vft-info-color);background:var(--vft-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}.vft-textarea.is-disabled .vft-textarea__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-textarea.is-disabled .vft-textarea__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-disabled .vft-textarea__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-exceed .vft-textarea__inner{border-color:var(--vft-danger-color)}.vft-textarea.is-exceed .vft-input__count{color:var(--vft-danger-color)}
1
+ :root{--vft-input-width:100%;--vft-input-text-color:var(--vft-text-regular-color);--vft-input-border:var(--vft-border);--vft-input-hover-border:var(--vft-border-color-hover);--vft-input-focus-border:var(--vft-primary-color);--vft-input-transparent-border:0 0 0 1px transparent inset;--vft-input-border-color:var(--vft-border-color);--vft-input-border-radius:var(--vft-border-radius-base);--vft-input-bg-color:var(--vft-fill-color-blank);--vft-input-icon-color:var(--vft-text-placeholder-color);--vft-input-placeholder-color:var(--vft-text-placeholder-color);--vft-input-hover-border-color:var(--vft-border-color-hover);--vft-input-clear-hover-color:var(--vft-text-secondary-color);--vft-input-focus-border-color:var(--vft-primary-color)}.vft-input{--vft-input-height:var(--vft-component-size);position:relative;font-size:var(--vft-font-size-base);display:inline-flex;width:var(--vft-input-width);line-height:var(--vft-input-height);box-sizing:border-box;vertical-align:middle;transition:width .2s ease}.vft-input::-webkit-scrollbar{z-index:11;width:6px}.vft-input::-webkit-scrollbar:horizontal{height:6px}.vft-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-input::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-input::-webkit-scrollbar-corner{background:0 0}.vft-input::-webkit-scrollbar-track{background:0 0}.vft-input::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-input .vft-input__clear,.vft-input .vft-input__password{color:var(--vft-input-icon-color);font-size:14px;cursor:pointer}.vft-input .vft-input__clear:hover,.vft-input .vft-input__password:hover{color:var(--vft-input-clear-hover-color)}.vft-input .vft-input__count{height:100%;display:inline-flex;align-items:center;color:var(--vft-info-color);font-size:12px}.vft-input .vft-input__count .vft-input__count-inner{background:var(--vft-fill-color-blank);line-height:initial;display:inline-block;padding-left:8px}.vft-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));border:1px solid var(--vft-input-border-color)}.vft-input__wrapper:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-input__wrapper.is-focus{border:1px solid var(--vft-input-focus-border-color)}.vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 32px) - 2px);width:100%;flex-grow:1;-webkit-appearance:none;color:var(--vft-input-text-color,var(--vft-text-regular-color));font-size:inherit;height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box}.vft-input__inner:focus{outline:0}.vft-input__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner[type=password]::-ms-reveal{display:none}.vft-input__inner[type=number]{line-height:1px}.vft-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__prefix-inner>:last-child{margin-right:8px}.vft-input__prefix-inner>:first-child,.vft-input__prefix-inner>:first-child.vft-input__icon{margin-left:0}.vft-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__suffix-inner>:first-child{margin-left:8px}.vft-input .vft-input__icon{transition:all var(--vft-transition-duration);margin-left:8px}.vft-input__validateIcon{pointer-events:none}.vft-input.is-active .vft-input__wrapper{border:1px solid var(--vft-input-focus-color)}.vft-input.is-disabled{cursor:not-allowed}.vft-input.is-disabled .vft-input__wrapper{background-color:var(--vft-disabled-bg-color);border:1px solid var(--vft-input-disable-color)}.vft-input.is-disabled .vft-input__inner{color:var(--vft-disabled-text-color);-webkit-text-fill-color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input.is-disabled .vft-input__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__icon{cursor:not-allowed}.vft-input.is-exceed .vft-input__wrapper{border:1px solid var(--vft-input-danger-color)}.vft-input.is-exceed .vft-input__suffix .vft-input__count{color:var(--vft-danger-color)}.vft-input--large{--vft-input-height:var(--vft-component-size-large);font-size:14px}.vft-input--large .vft-input__wrapper{padding:1px 15px}.vft-input--large .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 40px) - 2px)}.vft-input--small{--vft-input-height:var(--vft-component-size-small);font-size:12px}.vft-input--small .vft-input__wrapper{padding:1px 7px}.vft-input--small .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 24px) - 2px)}.vft-input-group{display:inline-flex;width:100%;align-items:stretch}.vft-input-group__append,.vft-input-group__prepend{background-color:var(--vft-fill-color-light);color:var(--vft-info-color);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--vft-input-border-radius);padding:0 20px;white-space:nowrap}.vft-input-group__append:focus,.vft-input-group__prepend:focus{outline:0}.vft-input-group__append .vft-button,.vft-input-group__append .vft-select,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-select{display:inline-block;margin:0 -20px}.vft-input-group__append button.vft-button,.vft-input-group__append button.vft-button:hover,.vft-input-group__append div.vft-select .vft-input__wrapper,.vft-input-group__append div.vft-select:hover .vft-input__wrapper,.vft-input-group__prepend button.vft-button,.vft-input-group__prepend button.vft-button:hover,.vft-input-group__prepend div.vft-select .vft-input__wrapper,.vft-input-group__prepend div.vft-select:hover .vft-input__wrapper{border-color:transparent;background-color:transparent;color:inherit}.vft-input-group__append .vft-button,.vft-input-group__append .vft-input,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-input{font-size:inherit}.vft-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color);border-right:0}.vft-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color);border-left:0}.vft-input-group--prepend>.vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper{border:1px solid var(--vft-input-focus-border-color);z-index:2}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper:focus{outline:0;z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--append>.vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__wrapper{z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--vft-font-size-base)}.vft-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;font-family:inherit;color:var(--vft-input-text-color,var(--vft-text-regular-color));background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;-webkit-appearance:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));transition:var(--vft-transition-box-shadow);border:1px solid var(--vft-input-border-color)}.vft-textarea__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-textarea__inner:focus{outline:0;border:1px solid var(--vft-input-focus-border-color)}.vft-textarea .vft-input__count{color:var(--vft-info-color);background:var(--vft-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}.vft-textarea.is-disabled .vft-textarea__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-textarea.is-disabled .vft-textarea__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-disabled .vft-textarea__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-exceed .vft-textarea__inner{border-color:var(--vft-danger-color)}.vft-textarea.is-exceed .vft-input__count{color:var(--vft-danger-color)}
@@ -0,0 +1 @@
1
+ .vft-select-group{margin:0;padding:0}.vft-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.vft-select-group__wrap:not(:last-of-type){padding-bottom:24px}.vft-select-group__wrap:not(:last-of-type)::after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__split-dash{position:absolute;left:20px;right:20px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__title{padding-left:20px;font-size:12px;color:var(--vft-info-color);line-height:30px}.vft-select-group .vft-select-dropdown__item{padding-left:20px}
@@ -0,0 +1 @@
1
+ .vft-select-dropdown__option-item{font-size:var(--vft-select-font-size);padding:0 32px 0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--vft-text-regular-color);height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.vft-select-dropdown__option-item.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-select-dropdown__option-item.is-disabled:hover{background-color:var(--vft-bg-color)}.vft-select-dropdown__option-item.is-selected{background-color:var(--vft-fill-color-light);font-weight:700}.vft-select-dropdown__option-item.is-selected:not(.is-multiple){color:var(--vft-primary-color)}.vft-select-dropdown__option-item.hover{background-color:var(--vft-fill-color-light)!important}.vft-select-dropdown__option-item:hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon{position:absolute;right:20px;top:0;height:inherit;font-size:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon svg{height:inherit;vertical-align:middle}
@@ -0,0 +1 @@
1
+ .vft-radio-button{--vft-radio-button-checked-bg-color:var(--vft-primary-color);--vft-radio-button-checked-text-color:var(--vft-color-white);--vft-radio-button-checked-border-color:var(--vft-primary-color);--vft-radio-button-disabled-checked-fill:var(--vft-border-color-extra-light)}.vft-radio-button{position:relative;display:inline-block;outline:0}.vft-radio-button__inner{display:inline-block;line-height:1;white-space:nowrap;vertical-align:middle;background:var(--vft-button-bg-color,var(--vft-fill-color-blank));border:var(--vft-border);font-weight:var(--vft-button-font-weight,var(--vft-font-weight-primary));border-left:0;color:var(--vft-button-text-color,var(--vft-text-regular-color));-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;position:relative;cursor:pointer;transition:var(--vft-transition-all);-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:8px 15px;font-size:var(--vft-font-size-base);border-radius:0}.vft-radio-button__inner.is-round{padding:8px 15px}.vft-radio-button__inner:hover{color:var(--vft-primary-color)}.vft-radio-button__inner [class*=vft-icon-]{line-height:.9}.vft-radio-button__inner [class*=vft-icon-]+span{margin-left:5px}.vft-radio-button:first-child .vft-radio-button__inner{border-left:var(--vft-border);border-radius:var(--vft-border-radius-base) 0 0 var(--vft-border-radius-base);box-shadow:none!important}.vft-radio-button__original-radio{opacity:0;outline:0;position:absolute;z-index:-1}.vft-radio-button__original-radio:checked+.vft-radio-button__inner{color:var(--vft-radio-button-checked-text-color,var(--vft-color-white));background-color:var(--vft-radio-button-checked-bg-color,var(--vft-primary-color));border-color:var(--vft-radio-button-checked-border-color,var(--vft-primary-color));box-shadow:-1px 0 0 0 var(--vft-radio-button-checked-border-color,var(--vft-primary-color))}.vft-radio-button__original-radio:focus-visible+.vft-radio-button__inner{border-left:var(--vft-border);border-left-color:var(--vft-radio-button-checked-border-color,var(--vft-primary-color));outline:2px solid var(--vft-radio-button-checked-border-color);outline-offset:1px;z-index:2;border-radius:var(--vft-border-radius-base);box-shadow:none}.vft-radio-button__original-radio:disabled+.vft-radio-button__inner{color:var(--vft-text-disabled-color);cursor:not-allowed;background-image:none;background-color:var(--vft-button-disabled-bg-color,var(--vft-fill-color-blank));border-color:var(--vft-button-disabled-border-color,var(--vft-border-color-light));box-shadow:none}.vft-radio-button__original-radio:disabled:checked+.vft-radio-button__inner{background-color:var(--vft-radio-button-disabled-checked-fill)}.vft-radio-button:last-child .vft-radio-button__inner{border-radius:0 var(--vft-border-radius-base) var(--vft-border-radius-base) 0}.vft-radio-button:first-child:last-child .vft-radio-button__inner{border-radius:var(--vft-border-radius-base)}.vft-radio-button--large .vft-radio-button__inner{padding:12px 19px;font-size:var(--vft-font-size-base);border-radius:0}.vft-radio-button--large .vft-radio-button__inner.is-round{padding:12px 19px}.vft-radio-button--small .vft-radio-button__inner{padding:5px 11px;font-size:12px;border-radius:0}.vft-radio-button--small .vft-radio-button__inner.is-round{padding:5px 11px}
@@ -0,0 +1 @@
1
+ .vft-radio-group{display:inline-flex;align-items:center;flex-wrap:wrap;font-size:0}
@@ -0,0 +1 @@
1
+ @charset "UTF-8";.vft-radio{--vft-radio-font-size:var(--vft-font-size-base);--vft-radio-text-color:var(--vft-text-regular-color);--vft-radio-font-weight:var(--vft-font-weight-primary);--vft-radio-input-height:14px;--vft-radio-input-width:14px;--vft-radio-input-border-radius:var(--vft-border-radius-circle);--vft-radio-input-bg-color:var(--vft-fill-color-blank);--vft-radio-input-border:var(--vft-border);--vft-radio-input-border-color:var(--vft-border-color);--vft-radio-input-border-color-hover:var(--vft-primary-color)}.vft-radio{color:var(--vft-radio-text-color);font-weight:var(--vft-radio-font-weight);position:relative;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;outline:0;font-size:var(--vft-font-size-base);-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-right:32px;height:32px}.vft-radio.vft-radio--large{height:40px}.vft-radio.vft-radio--small{height:24px}.vft-radio.is-bordered{padding:0 15px 0 9px;border-radius:var(--vft-border-radius-base);border:var(--vft-border);box-sizing:border-box}.vft-radio.is-bordered.is-checked{border-color:var(--vft-primary-color)}.vft-radio.is-bordered.is-disabled{cursor:not-allowed;border-color:var(--vft-border-color-lighter)}.vft-radio.is-bordered.vft-radio--large{padding:0 19px 0 11px;border-radius:var(--vft-border-radius-base)}.vft-radio.is-bordered.vft-radio--large .vft-radio__label{font-size:var(--vft-font-size-base)}.vft-radio.is-bordered.vft-radio--large .vft-radio__inner{height:14px;width:14px}.vft-radio.is-bordered.vft-radio--small{padding:0 11px 0 7px;border-radius:var(--vft-border-radius-base)}.vft-radio.is-bordered.vft-radio--small .vft-radio__label{font-size:12px}.vft-radio.is-bordered.vft-radio--small .vft-radio__inner{height:12px;width:12px}.vft-radio:last-child{margin-right:0}.vft-radio__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-flex;position:relative;vertical-align:middle}.vft-radio__input.is-disabled .vft-radio__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);cursor:not-allowed}.vft-radio__input.is-disabled .vft-radio__inner::after{cursor:not-allowed;background-color:var(--vft-disabled-bg-color)}.vft-radio__input.is-disabled .vft-radio__inner+.vft-radio__label{cursor:not-allowed}.vft-radio__input.is-disabled.is-checked .vft-radio__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color)}.vft-radio__input.is-disabled.is-checked .vft-radio__inner::after{background-color:var(--vft-text-placeholder-color)}.vft-radio__input.is-disabled+span.vft-radio__label{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-radio__input.is-checked .vft-radio__inner{border-color:var(--vft-primary-color);background:var(--vft-primary-color)}.vft-radio__input.is-checked .vft-radio__inner::after{transform:translate(-50%,-50%) scale(1)}.vft-radio__input.is-checked+.vft-radio__label{color:var(--vft-primary-color)}.vft-radio__input.is-focus .vft-radio__inner{border-color:var(--vft-radio-input-border-color-hover)}.vft-radio__inner{border:var(--vft-radio-input-border);border-radius:var(--vft-radio-input-border-radius);width:var(--vft-radio-input-width);height:var(--vft-radio-input-height);background-color:var(--vft-radio-input-bg-color);position:relative;cursor:pointer;display:inline-block;box-sizing:border-box}.vft-radio__inner:hover{border-color:var(--vft-radio-input-border-color-hover)}.vft-radio__inner::after{width:4px;height:4px;border-radius:var(--vft-radio-input-border-radius);background-color:var(--vft-color-white);content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);transition:transform .15s ease-in}.vft-radio__original{opacity:0;outline:0;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.vft-radio__original:focus-visible+.vft-radio__inner{outline:2px solid var(--vft-radio-input-border-color-hover);outline-offset:1px;border-radius:var(--vft-radio-input-border-radius)}.vft-radio:focus:not(:focus-visible):not(.is-focus):not(:active):not(.is-disabled) .vft-radio__inner{box-shadow:0 0 2px 2px var(--vft-radio-input-border-color-hover)}.vft-radio__label{font-size:var(--vft-radio-font-size);padding-left:8px}.vft-radio.vft-radio--large .vft-radio__label{font-size:14px}.vft-radio.vft-radio--large .vft-radio__inner{width:14px;height:14px}.vft-radio.vft-radio--small .vft-radio__label{font-size:12px}.vft-radio.vft-radio--small .vft-radio__inner{width:12px;height:12px}
@@ -0,0 +1 @@
1
+ .vft-scrollbar{--vft-scrollbar-opacity:0.3;--vft-scrollbar-bg-color:var(--vft-text-secondary-color);--vft-scrollbar-hover-opacity:0.5;--vft-scrollbar-hover-bg-color:var(--vft-text-secondary-color)}.vft-scrollbar{overflow:hidden;position:relative;height:100%}.vft-scrollbar__wrap{overflow:auto;height:100%}.vft-scrollbar__wrap--hidden-default{scrollbar-width:none}.vft-scrollbar__wrap--hidden-default::-webkit-scrollbar{display:none}.vft-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:var(--vft-scrollbar-bg-color,var(--vft-text-secondary-color));transition:var(--vft-transition-duration) background-color;opacity:var(--vft-scrollbar-opacity,.3)}.vft-scrollbar__thumb:hover{background-color:var(--vft-scrollbar-hover-bg-color,var(--vft-text-secondary-color));opacity:var(--vft-scrollbar-hover-opacity,.5)}.vft-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px}.vft-scrollbar__bar.is-vertical{width:6px;top:2px}.vft-scrollbar__bar.is-vertical>div{width:100%}.vft-scrollbar__bar.is-horizontal{height:6px;left:2px}.vft-scrollbar__bar.is-horizontal>div{height:100%}.vft-scrollbar-fade-enter-active{transition:opacity 340ms ease-out}.vft-scrollbar-fade-leave-active{transition:opacity 120ms ease-out}.vft-scrollbar-fade-enter-from,.vft-scrollbar-fade-leave-active{opacity:0}
@@ -0,0 +1 @@
1
+ .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled{color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item:hover:not(.hover){background-color:transparent}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-disabled.is-selected{color:var(--vft-text-disabled-color)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;margin:6px 0!important;padding:0!important;box-sizing:border-box}
@@ -0,0 +1 @@
1
+ .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color-disabled)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-color-disabled)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}
@@ -0,0 +1 @@
1
+ .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled{color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item:hover:not(.hover){background-color:transparent}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-disabled.is-selected{color:var(--vft-text-disabled-color)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;margin:6px 0!important;padding:0!important;box-sizing:border-box}.vft-select-dropdown__option-item{font-size:var(--vft-select-font-size);padding:0 32px 0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--vft-text-regular-color);height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.vft-select-dropdown__option-item.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-select-dropdown__option-item.is-disabled:hover{background-color:var(--vft-bg-color)}.vft-select-dropdown__option-item.is-selected{background-color:var(--vft-fill-color-light);font-weight:700}.vft-select-dropdown__option-item.is-selected:not(.is-multiple){color:var(--vft-primary-color)}.vft-select-dropdown__option-item.hover{background-color:var(--vft-fill-color-light)!important}.vft-select-dropdown__option-item:hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon{position:absolute;right:20px;top:0;height:inherit;font-size:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon svg{height:inherit;vertical-align:middle}.vft-select-group{margin:0;padding:0}.vft-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.vft-select-group__wrap:not(:last-of-type){padding-bottom:24px}.vft-select-group__wrap:not(:last-of-type)::after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__split-dash{position:absolute;left:20px;right:20px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__title{padding-left:20px;font-size:12px;color:var(--vft-info-color);line-height:30px}.vft-select-group .vft-select-dropdown__item{padding-left:20px}.vft-select-v2{--vft-select-border-color-hover:var(--vft-border-color-hover);--vft-select-disabled-border:var(--vft-disabled-border-color);--vft-select-font-size:var(--vft-font-size-base);--vft-select-close-hover-color:var(--vft-text-secondary-color);--vft-select-input-color:var(--vft-text-placeholder-color);--vft-select-multiple-input-color:var(--vft-text-regular-color);--vft-select-input-focus-border-color:var(--vft-primary-color);--vft-select-input-font-size:14px}.vft-select-v2{display:inline-block;position:relative;vertical-align:middle;font-size:14px}.vft-select-v2__wrapper{display:flex;align-items:center;flex-wrap:wrap;position:relative;box-sizing:border-box;cursor:pointer;padding:1px 30px 1px 0;border:1px solid var(--vft-border-color);border-radius:var(--vft-border-radius-base);background-color:var(--vft-fill-color-blank);transition:var(--vft-transition-duration)}.vft-select-v2__wrapper:hover{border-color:var(--vft-text-placeholder-color)}.vft-select-v2__wrapper.is-filterable{cursor:text}.vft-select-v2__wrapper.is-focused{border-color:var(--vft-primary-color)}.vft-select-v2__wrapper.is-hovering:not(.is-focused){border-color:var(--vft-border-color-hover)}.vft-select-v2__wrapper.is-disabled{cursor:not-allowed;background-color:var(--vft-fill-color-light);color:var(--vft-text-placeholder-color);border-color:var(--vft-select-disabled-border)}.vft-select-v2__wrapper.is-disabled:hover{border-color:var(--vft-select-disabled-border)}.vft-select-v2__wrapper.is-disabled.is-focus{border-color:var(--vft-input-focus-border-color)}.vft-select-v2__wrapper.is-disabled .is-transparent{opacity:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-select-v2__wrapper.is-disabled .vft-select-v2__caret{cursor:not-allowed}.vft-select-v2__wrapper.is-disabled .vft-select-v2__combobox-input{cursor:not-allowed}.vft-select-v2__wrapper .vft-select-v2__input-wrapper{box-sizing:border-box;position:relative;-webkit-margin-start:12px;margin-inline-start:12px;max-width:100%;overflow:hidden}.vft-select-v2__wrapper,.vft-select-v2__wrapper .vft-select-v2__input-wrapper{line-height:32px}.vft-select-v2__wrapper .vft-select-v2__input-wrapper input{--vft-input-inner-height:calc(var(--vft-component-size, 32px) - 8px);height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);min-width:4px;width:100%;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;margin:2px 0;outline:0;padding:0}.vft-select-v2 .vft-select-v2__tags-text{display:inline-block;line-height:normal;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-select-v2__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:14px}.vft-select-v2__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-select-v2__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select-v2__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select-v2__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select-v2__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select-v2__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select-v2--large .vft-select-v2__wrapper .vft-select-v2__combobox-input{height:32px}.vft-select-v2--large .vft-select-v2__caret{height:40px}.vft-select-v2--large .vft-select-v2__suffix{height:40px}.vft-select-v2--large .vft-select-v2__placeholder{font-size:14px;line-height:40px}.vft-select-v2--small .vft-select-v2__wrapper .vft-select-v2__combobox-input{height:16px}.vft-select-v2--small .vft-select-v2__caret{height:24px}.vft-select-v2--small .vft-select-v2__suffix{height:24px}.vft-select-v2--small .vft-select-v2__placeholder{font-size:12px;line-height:24px}.vft-select-v2 .vft-select-v2__selection>span{display:inline-block}.vft-select-v2:hover .vft-select-v2__combobox-input{border-color:var(--vft-select-border-color-hover)}.vft-select-v2 .vft-select__selection-text{text-overflow:ellipsis;display:inline-block;overflow-x:hidden;vertical-align:bottom}.vft-select-v2 .vft-select-v2__combobox-input{padding-right:35px;display:block;color:var(--vft-text-regular-color)}.vft-select-v2 .vft-select-v2__combobox-input:focus{border-color:var(--vft-select-input-focus-border-color)}.vft-select-v2__input{border:none;outline:0;padding:0;margin-left:15px;color:var(--vft-select-multiple-input-color);font-size:var(--vft-select-font-size);-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px}.vft-select-v2__input.is-small{height:14px}.vft-select-v2__close{cursor:pointer;position:absolute;top:8px;z-index:var(--vft-index-top);right:25px;color:var(--vft-select-input-color);line-height:18px;font-size:var(--vft-select-input-font-size)}.vft-select-v2__close:hover{color:var(--vft-select-close-hover-color)}.vft-select-v2__suffix{display:inline-flex;position:absolute;right:12px;height:32px;top:50%;transform:translateY(-50%);color:var(--vft-input-icon-color,var(--vft-text-placeholder-color))}.vft-select-v2__suffix .vft-input__icon{height:inherit}.vft-select-v2__suffix .vft-input__icon:not(:first-child){margin-left:8px}.vft-select-v2__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:var(--vft-transition-duration);transform:rotateZ(180deg);cursor:pointer}.vft-select-v2__caret.is-reverse{transform:rotateZ(0)}.vft-select-v2__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(180deg);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select-v2__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select-v2__caret.vft-icon{height:inherit}.vft-select-v2__caret.vft-icon svg{vertical-align:middle}.vft-select-v2__selection{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;width:100%}.vft-select-v2__input-calculator{left:0;position:absolute;top:0;visibility:hidden;white-space:pre;z-index:999}.vft-select-v2__selected-item{line-height:inherit;height:inherit;-webkit-user-select:none;-moz-user-select:none;user-select:none;display:flex;flex-wrap:wrap}.vft-select-v2__placeholder{position:absolute;top:50%;transform:translateY(-50%);-webkit-margin-start:12px;margin-inline-start:12px;width:calc(100% - 52px);overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;color:var(--vft-input-text-color,var(--vft-text-regular-color))}.vft-select-v2__placeholder.is-transparent{color:var(--vft-text-placeholder-color)}.vft-select-v2 .vft-select-v2__selection .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 0 2px 6px;background-color:var(--vft-fill-color)}.vft-select-v2 .vft-select-v2__selection .vft-tag .vft-icon-close{background-color:var(--vft-text-placeholder-color);right:-7px;color:var(--vft-color-white)}.vft-select-v2 .vft-select-v2__selection .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-secondary-color)}.vft-select-v2 .vft-select-v2__selection .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select-v2.vft-select-v2--small .vft-select-v2__selection .vft-tag{margin:1px 0 1px 6px;height:18px}
@@ -0,0 +1 @@
1
+ .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color-disabled)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-color-disabled)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.vft-select{--vft-select-border-color-hover:var(--vft-border-color-hover);--vft-select-disabled-border:var(--vft-disabled-border-color);--vft-select-font-size:var(--vft-font-size-base);--vft-select-close-hover-color:var(--vft-text-secondary-color);--vft-select-input-color:var(--vft-text-placeholder-color);--vft-select-multiple-input-color:var(--vft-text-regular-color);--vft-select-input-focus-border-color:var(--vft-primary-color);--vft-select-input-font-size:14px}.vft-select{display:inline-block;position:relative;vertical-align:middle;line-height:32px}.vft-select__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-select__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select .vft-select-tags-wrapper.has-prefix{margin-left:6px}.vft-select--large{line-height:40px}.vft-select--large .vft-select-tags-wrapper.has-prefix{margin-left:8px}.vft-select--small{line-height:24px}.vft-select--small .vft-select-tags-wrapper.has-prefix{margin-left:4px}.vft-select .vft-select__tags>span{display:inline-block}.vft-select:hover:not(.vft-select--disabled) .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-border-color-hover) inset}.vft-select .vft-select__tags-text{display:inline-block;line-height:normal;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-select .vft-input__wrapper{cursor:pointer}.vft-select .vft-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select .vft-input__inner{cursor:pointer}.vft-select .vft-input{display:flex}.vft-select .vft-input .vft-select__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:transform var(--vft-transition-duration);transform:rotateZ(0);cursor:pointer}.vft-select .vft-input .vft-select__caret.is-reverse{transform:rotateZ(-180deg)}.vft-select .vft-input .vft-select__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(0);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select .vft-input .vft-select__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select .vft-input .vft-select__caret.vft-icon{position:relative;height:inherit;z-index:2}.vft-select .vft-input.is-disabled .vft-input__wrapper{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-input__wrapper:hover{box-shadow:0 0 0 1px var(--vft-select-disabled-border) inset}.vft-select .vft-input.is-disabled .vft-input__inner{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-select__caret{cursor:not-allowed}.vft-select .vft-input.is-focus .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select__input{border:none;outline:0;padding:0;margin-left:15px;color:var(--vft-select-multiple-input-color);font-size:var(--vft-select-font-size);-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.vft-select__input--iOS{position:absolute;left:0;top:0;z-index:6}.vft-select__input.is-small{height:14px}.vft-select__close{cursor:pointer;position:absolute;top:8px;z-index:var(--vft-index-top);right:25px;color:var(--vft-select-input-color);line-height:18px;font-size:var(--vft-select-input-font-size)}.vft-select__close:hover{color:var(--vft-select-close-hover-color)}.vft-select__tags{position:absolute;line-height:normal;top:50%;transform:translateY(-50%);white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__tags .vft-tag:last-child{margin-right:0}.vft-select__tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tags{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__collapse-tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__collapse-tags .vft-tag:last-child{margin-right:0}.vft-select__collapse-tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__collapse-tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__collapse-tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__collapse-tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tag{line-height:inherit;height:inherit;display:flex}
@@ -1 +1 @@
1
- :root{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-width:200px;--vft-side-menu-collapse-width:200px;--vft-side-menu-scroll-mr:0}.vft-side-menu{overflow-x:hidden;transition:width .2s;width:var(--vft-side-menu-width);display:flex;flex-direction:column}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border);z-index:1;background-color:#fff}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:var(--vft-menu-border-right)}.vft-side-menu__collapse .vft-icon{position:absolute;right:20px}.vft-side-menu__con{overflow-y:auto;overflow-y:overlay;overflow-x:hidden}.vft-side-menu__popper{margin-right:var(--vft-side-menu-scroll-mr)}.vft-side-menu__popper .vft-menu--popup{overflow-y:auto;overflow-y:overlay;box-shadow:none;max-height:calc(100vh - 200px)}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar{z-index:11;width:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar:horizontal{height:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-corner{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track-piece{background:0 0;width:6px}
1
+ :root{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-width:200px;--vft-side-menu-collapse-width:200px;--vft-side-menu-scroll-mr:0}.vft-side-menu{overflow-x:hidden;transition:width .2s;width:var(--vft-side-menu-width);display:flex;flex-direction:column;border-right:var(--vft-menu-border-right)}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border);z-index:1;background-color:#fff}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:var(--vft-menu-border-right)}.vft-side-menu__collapse .vft-icon{position:absolute;right:20px}.vft-side-menu__con{overflow-y:auto;overflow-y:overlay;overflow-x:hidden}.vft-side-menu .vft-menu{border-right:none}.vft-side-menu__popper{margin-right:var(--vft-side-menu-scroll-mr)}.vft-side-menu__popper .vft-menu--popup{overflow-y:auto;overflow-y:overlay;box-shadow:none;max-height:calc(100vh - 200px)}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar{z-index:11;width:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar:horizontal{height:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-corner{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track-piece{background:0 0;width:6px}
@@ -0,0 +1 @@
1
+ .vft-switch{--vft-switch-on-color:var(--vft-primary-color);--vft-switch-off-color:var(--vft-border-color)}.vft-switch{display:inline-flex;align-items:center;position:relative;font-size:14px;line-height:20px;height:32px;vertical-align:middle}.vft-switch.is-disabled .vft-switch__core,.vft-switch.is-disabled .vft-switch__label{cursor:not-allowed}.vft-switch__label{transition:var(--vft-transition-duration-fast);height:20px;display:inline-block;font-size:14px;font-weight:500;cursor:pointer;vertical-align:middle;color:var(--vft-text-primary-color)}.vft-switch__label.is-active{color:var(--vft-primary-color)}.vft-switch__label--left{margin-right:10px}.vft-switch__label--right{margin-left:10px}.vft-switch__label *{line-height:1;font-size:14px;display:inline-block}.vft-switch__label .vft-icon{height:inherit}.vft-switch__label .vft-icon svg{vertical-align:middle}.vft-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.vft-switch__input:focus-visible~.vft-switch__core{outline:2px solid var(--vft-switch-on-color);outline-offset:1px}.vft-switch__core{display:inline-flex;position:relative;align-items:center;min-width:40px;height:20px;border:1px solid var(--vft-switch-border-color,var(--vft-switch-off-color));outline:0;border-radius:10px;box-sizing:border-box;background:var(--vft-switch-off-color);cursor:pointer;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration)}.vft-switch__core .vft-switch__inner{width:100%;transition:all var(--vft-transition-duration);height:16px;display:flex;justify-content:center;align-items:center;overflow:hidden;padding:0 4px 0 calc(16px + 2px)}.vft-switch__core .vft-switch__inner .is-text,.vft-switch__core .vft-switch__inner i{font-size:12px;color:var(--vft-color-white);-webkit-user-select:none;-moz-user-select:none;user-select:none;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-switch__core .vft-switch__action{position:absolute;left:1px;border-radius:var(--vft-border-radius-circle);transition:all var(--vft-transition-duration);width:16px;height:16px;background-color:var(--vft-color-white);display:flex;justify-content:center;align-items:center;color:var(--vft-switch-off-color)}.vft-switch.is-checked .vft-switch__core{border-color:var(--vft-switch-border-color,var(--vft-switch-on-color));background-color:var(--vft-switch-on-color)}.vft-switch.is-checked .vft-switch__core .vft-switch__action{left:calc(100% - 17px);color:var(--vft-switch-on-color)}.vft-switch.is-checked .vft-switch__core .vft-switch__inner{padding:0 calc(16px + 2px) 0 4px}.vft-switch.is-disabled{opacity:.6}.vft-switch--wide .vft-switch__label.vft-switch__label--left span{left:10px}.vft-switch--wide .vft-switch__label.vft-switch__label--right span{right:10px}.vft-switch .label-fade-enter-from,.vft-switch .label-fade-leave-active{opacity:0}.vft-switch--large{font-size:14px;line-height:24px;height:40px}.vft-switch--large .vft-switch__label{height:24px;font-size:14px}.vft-switch--large .vft-switch__label *{font-size:14px}.vft-switch--large .vft-switch__core{min-width:50px;height:24px;border-radius:12px}.vft-switch--large .vft-switch__core .vft-switch__inner{height:20px;padding:0 6px 0 calc(20px + 2px)}.vft-switch--large .vft-switch__core .vft-switch__action{width:20px;height:20px}.vft-switch--large.is-checked .vft-switch__core .vft-switch__action{left:calc(100% - 21px)}.vft-switch--large.is-checked .vft-switch__core .vft-switch__inner{padding:0 calc(20px + 2px) 0 6px}.vft-switch--small{font-size:12px;line-height:16px;height:24px}.vft-switch--small .vft-switch__label{height:16px;font-size:12px}.vft-switch--small .vft-switch__label *{font-size:12px}.vft-switch--small .vft-switch__core{min-width:30px;height:16px;border-radius:8px}.vft-switch--small .vft-switch__core .vft-switch__inner{height:12px;padding:0 2px 0 calc(12px + 2px)}.vft-switch--small .vft-switch__core .vft-switch__action{width:12px;height:12px}.vft-switch--small.is-checked .vft-switch__core .vft-switch__action{left:calc(100% - 13px)}.vft-switch--small.is-checked .vft-switch__core .vft-switch__inner{padding:0 calc(12px + 2px) 0 2px}
@@ -0,0 +1 @@
1
+ .vft-table .vxe-table .vxe-table--fixed-left-wrapper{z-index:10;overflow:unset}.vft-table .vxe-table .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper{width:100%;overflow-y:hidden}.vft-table .vxe-table .vxe-table--header-wrapper{background-color:#f3fbfe;position:sticky!important;top:0;z-index:10;overflow:hidden}.vft-table .vxe-table .vxe-header--column{background-color:#f3fbfe;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;user-select:none;font-weight:500;line-height:17px;font-size:12px;padding:8px 0}.vft-table .vxe-table .vxe-header--column.is--sortable{cursor:pointer}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.col--ellipsis:not(.col--actived)>.vxe-cell,.vft-table .vxe-table .vxe-table--render-default .vxe-footer--column.col--ellipsis:not(.col--actived)>.vxe-cell,.vft-table .vxe-table .vxe-table--render-default .vxe-header--column.col--ellipsis:not(.col--actived)>.vxe-cell{white-space:normal;max-height:inherit}.vft-table .vxe-table .vxe-cell{white-space:normal}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass{padding:0;height:44px;font-size:13px;line-height:20px;color:#111;font-weight:400}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass .vxe-cell--label{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass .vxe-cell{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass .line-clamp{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass a{color:var(--vft-primary-color);font-size:13px;cursor:pointer}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass a:hover{text-decoration:underline}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass em{color:#fe3a2f;font-style:normal}.vft-table .vxe-table .vxe-sort--asc-btn,.vft-table .vxe-table .vxe-sort--desc-btn{pointer-events:none}.vft-table .vxe-table .remark{color:#111;position:relative;cursor:pointer}.vft-table .vxe-table .remark::after{content:"*";color:#f64c4c;position:absolute;font-size:18px;right:-8px;top:0}.vft-table .vxe-grid--bottom-wrapper{position:sticky;bottom:0;z-index:3000}.vft-table__sticky-scroll-warpper{height:10px;width:100%;overflow-x:auto;border-radius:4px;background-color:transparent;border-right:1px solid #ebeef5;box-sizing:content-box;z-index:9;display:block}.vft-table__sticky-scroll-bar{height:1px;width:100%;box-sizing:border-box}.vft-table--pager-bottom-right{margin-top:10px;justify-content:flex-end}.vft-table--pager-bottom-right .btn-next{margin-right:0!important}.vft-table--pager-bottom-left{margin-top:10px;justify-content:flex-start}.vft-table--pager-bottom-left .btn-prev{margin-left:0!important}.vft-table--pager-top-right{margin-bottom:10px;justify-content:flex-end}.vft-table--pager-top-right .btn-next{margin-right:0!important}.vft-table--pager-top-left{margin-bottom:10px;justify-content:flex-start}.vft-table--pager-top-left .btn-prev{margin-left:0!important}
File without changes
@@ -0,0 +1 @@
1
+ .vft-vl__wrapper{position:relative}.vft-vl__wrapper:hover .vft-virtual-scrollbar{opacity:1}.vft-vl__wrapper.always-on .vft-virtual-scrollbar{opacity:1}.vft-vl__window{scrollbar-width:none}.vft-vl__window::-webkit-scrollbar{display:none}.vft-virtual-scrollbar{opacity:0;transition:opacity 340ms ease-out}.vft-virtual-scrollbar.always-on{opacity:1}.vft-vg__wrapper{position:relative}
@@ -1,18 +0,0 @@
1
- export interface ConfigProviderProps {
2
- /** 主题风格 */
3
- theme?: Theme;
4
- /** 自定义主题变量 */
5
- themeVars?: Record<string, Numberish>;
6
- /** 仅在深色模式下生效的主题变量 */
7
- themeVarsDark?: Record<string, Numberish>;
8
- /** 仅在浅色模式下生效的主题变量 */
9
- themeVarsLight?: Record<string, Numberish>;
10
- /** 所有图标的类名前缀 */
11
- iconPrefix?: string;
12
- /** 组件公共命名 */
13
- namespace?: string;
14
- /** 设置所有弹窗类组件的 z-index */
15
- zIndex?: number;
16
- /** 可同时显示的消息最大数量 */
17
- projectCfg?: Record<string, any>;
18
- }
@@ -1,237 +0,0 @@
1
- import type { VNode } from 'vue';
2
- export declare const paginationEmits: {
3
- 'update:current-page': (val: number) => boolean;
4
- 'update:page-size': (val: number) => boolean;
5
- 'size-change': (val: number) => boolean;
6
- 'current-change': (val: number) => boolean;
7
- 'prev-click': (val: number) => boolean;
8
- 'next-click': (val: number) => boolean;
9
- };
10
- export type PaginationEmits = typeof paginationEmits;
11
- declare const _default: import("vue").DefineComponent<{
12
- /**
13
- * @description total item count
14
- */
15
- total: NumberConstructor;
16
- /**
17
- * @description options of item count per page
18
- */
19
- pageSize: NumberConstructor;
20
- /**
21
- * @description default initial value of page size
22
- */
23
- defaultPageSize: NumberConstructor;
24
- /**
25
- * @description current page number
26
- */
27
- currentPage: NumberConstructor;
28
- /**
29
- * @description default initial value of current-page
30
- */
31
- defaultCurrentPage: NumberConstructor;
32
- /**
33
- * @description total page count. Set either `total` or `page-count` and pages will be displayed; if you need `page-sizes`, `total` is required
34
- */
35
- pageCount: NumberConstructor;
36
- /**
37
- * @description number of pagers. Pagination collapses when the total page count exceeds this value
38
- */
39
- pagerCount: {
40
- type: NumberConstructor;
41
- validator: (value: unknown) => boolean;
42
- default: number;
43
- };
44
- /**
45
- * @description layout of Pagination, elements separated with a comma
46
- */
47
- layout: {
48
- type: StringConstructor;
49
- default: string;
50
- };
51
- /**
52
- * @description item count of each page
53
- */
54
- pageSizes: {
55
- type: ArrayConstructor;
56
- default: number[];
57
- };
58
- /**
59
- * @description custom class name for the page size Select's dropdown
60
- */
61
- popperClass: {
62
- type: StringConstructor;
63
- default: string;
64
- };
65
- /**
66
- * @description text for the prev button
67
- */
68
- prevText: {
69
- type: StringConstructor;
70
- default: string;
71
- };
72
- /**
73
- * @description icon for the prev button, higher priority of `prev-text`
74
- */
75
- prevIcon: {
76
- type: StringConstructor;
77
- default: () => string;
78
- };
79
- /**
80
- * @description text for the next button
81
- */
82
- nextText: {
83
- type: StringConstructor;
84
- default: string;
85
- };
86
- /**
87
- * @description icon for the next button, higher priority of `next-text`
88
- */
89
- nextIcon: {
90
- type: StringConstructor;
91
- default: () => string;
92
- };
93
- /**
94
- * @description whether to use small pagination
95
- */
96
- small: BooleanConstructor;
97
- /**
98
- * @description whether the buttons have a background color
99
- */
100
- background: BooleanConstructor;
101
- /**
102
- * @description whether Pagination is disabled
103
- */
104
- disabled: BooleanConstructor;
105
- /**
106
- * @description whether to hide when there's only one page
107
- */
108
- hideOnSinglePage: BooleanConstructor;
109
- }, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
110
- [key: string]: any;
111
- }> | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
112
- 'update:current-page': (val: number) => boolean;
113
- 'update:page-size': (val: number) => boolean;
114
- 'size-change': (val: number) => boolean;
115
- 'current-change': (val: number) => boolean;
116
- 'prev-click': (val: number) => boolean;
117
- 'next-click': (val: number) => boolean;
118
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
119
- /**
120
- * @description total item count
121
- */
122
- total: NumberConstructor;
123
- /**
124
- * @description options of item count per page
125
- */
126
- pageSize: NumberConstructor;
127
- /**
128
- * @description default initial value of page size
129
- */
130
- defaultPageSize: NumberConstructor;
131
- /**
132
- * @description current page number
133
- */
134
- currentPage: NumberConstructor;
135
- /**
136
- * @description default initial value of current-page
137
- */
138
- defaultCurrentPage: NumberConstructor;
139
- /**
140
- * @description total page count. Set either `total` or `page-count` and pages will be displayed; if you need `page-sizes`, `total` is required
141
- */
142
- pageCount: NumberConstructor;
143
- /**
144
- * @description number of pagers. Pagination collapses when the total page count exceeds this value
145
- */
146
- pagerCount: {
147
- type: NumberConstructor;
148
- validator: (value: unknown) => boolean;
149
- default: number;
150
- };
151
- /**
152
- * @description layout of Pagination, elements separated with a comma
153
- */
154
- layout: {
155
- type: StringConstructor;
156
- default: string;
157
- };
158
- /**
159
- * @description item count of each page
160
- */
161
- pageSizes: {
162
- type: ArrayConstructor;
163
- default: number[];
164
- };
165
- /**
166
- * @description custom class name for the page size Select's dropdown
167
- */
168
- popperClass: {
169
- type: StringConstructor;
170
- default: string;
171
- };
172
- /**
173
- * @description text for the prev button
174
- */
175
- prevText: {
176
- type: StringConstructor;
177
- default: string;
178
- };
179
- /**
180
- * @description icon for the prev button, higher priority of `prev-text`
181
- */
182
- prevIcon: {
183
- type: StringConstructor;
184
- default: () => string;
185
- };
186
- /**
187
- * @description text for the next button
188
- */
189
- nextText: {
190
- type: StringConstructor;
191
- default: string;
192
- };
193
- /**
194
- * @description icon for the next button, higher priority of `next-text`
195
- */
196
- nextIcon: {
197
- type: StringConstructor;
198
- default: () => string;
199
- };
200
- /**
201
- * @description whether to use small pagination
202
- */
203
- small: BooleanConstructor;
204
- /**
205
- * @description whether the buttons have a background color
206
- */
207
- background: BooleanConstructor;
208
- /**
209
- * @description whether Pagination is disabled
210
- */
211
- disabled: BooleanConstructor;
212
- /**
213
- * @description whether to hide when there's only one page
214
- */
215
- hideOnSinglePage: BooleanConstructor;
216
- }>> & {
217
- "onUpdate:current-page"?: ((val: number) => any) | undefined;
218
- "onUpdate:page-size"?: ((val: number) => any) | undefined;
219
- "onSize-change"?: ((val: number) => any) | undefined;
220
- "onCurrent-change"?: ((val: number) => any) | undefined;
221
- "onPrev-click"?: ((val: number) => any) | undefined;
222
- "onNext-click"?: ((val: number) => any) | undefined;
223
- }, {
224
- small: boolean;
225
- background: boolean;
226
- disabled: boolean;
227
- pagerCount: number;
228
- layout: string;
229
- pageSizes: unknown[];
230
- popperClass: string;
231
- prevText: string;
232
- prevIcon: string;
233
- nextText: string;
234
- nextIcon: string;
235
- hideOnSinglePage: boolean;
236
- }>;
237
- export default _default;