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
@@ -0,0 +1,299 @@
1
+ @use 'sass:map';
2
+
3
+ @use 'mixins/mixins' as *;
4
+ @use 'mixins/var' as *;
5
+ @use 'common/var' as *;
6
+
7
+ $switch-height: () !default;
8
+ $switch-height: map.merge(
9
+ (
10
+ 'large': 40px,
11
+ 'default': 32px,
12
+ 'small': 24px,
13
+ ),
14
+ $switch-height
15
+ );
16
+
17
+ $switch-font-size: () !default;
18
+ $switch-font-size: map.merge(
19
+ (
20
+ 'large': 14px,
21
+ 'default': 14px,
22
+ 'small': 12px,
23
+ ),
24
+ $switch-font-size
25
+ );
26
+
27
+ $switch-core-border-radius: () !default;
28
+ $switch-core-border-radius: map.merge(
29
+ (
30
+ 'large': 12px,
31
+ 'default': 10px,
32
+ 'small': 8px,
33
+ ),
34
+ $switch-core-border-radius
35
+ );
36
+
37
+ $switch-core-width: () !default;
38
+ $switch-core-width: map.merge(
39
+ (
40
+ 'large': 50px,
41
+ 'default': 40px,
42
+ 'small': 30px,
43
+ ),
44
+ $switch-core-width
45
+ );
46
+
47
+ $switch-core-height: () !default;
48
+ $switch-core-height: map.merge(
49
+ (
50
+ 'large': 24px,
51
+ 'default': 20px,
52
+ 'small': 16px,
53
+ ),
54
+ $switch-core-height
55
+ );
56
+
57
+ $switch-button-size: () !default;
58
+ $switch-button-size: map.merge(
59
+ (
60
+ 'large': 20px,
61
+ 'default': 16px,
62
+ 'small': 12px,
63
+ ),
64
+ $switch-button-size
65
+ );
66
+
67
+ $switch-content-padding: () !default;
68
+ $switch-content-padding: map.merge(
69
+ (
70
+ 'large': 6px,
71
+ 'default': 4px,
72
+ 'small': 2px,
73
+ ),
74
+ $switch-content-padding
75
+ );
76
+
77
+ @include b(switch) {
78
+ @include set-component-css-var('switch', $switch);
79
+ }
80
+
81
+ @include b(switch) {
82
+ display: inline-flex;
83
+ align-items: center;
84
+ position: relative;
85
+ font-size: map.get($switch-font-size, 'default');
86
+ line-height: map.get($switch-core-height, 'default');
87
+ height: map.get($switch-height, 'default');
88
+ vertical-align: middle;
89
+
90
+ @include when(disabled) {
91
+ & .#{$namespace}-switch__core,
92
+ & .#{$namespace}-switch__label {
93
+ cursor: not-allowed;
94
+ }
95
+ }
96
+
97
+ @include e(label) {
98
+ transition: getCssVar('transition-duration-fast');
99
+ height: map.get($switch-core-height, 'default');
100
+ display: inline-block;
101
+ font-size: map.get($switch-font-size, 'default');
102
+ font-weight: 500;
103
+ cursor: pointer;
104
+ vertical-align: middle;
105
+ color: getCssVar('text', 'primary-color');
106
+
107
+ @include when(active) {
108
+ color: getCssVar('primary-color');
109
+ }
110
+
111
+ @include m(left) {
112
+ margin-right: 10px;
113
+ }
114
+ @include m(right) {
115
+ margin-left: 10px;
116
+ }
117
+ & * {
118
+ line-height: 1;
119
+ font-size: map.get($switch-font-size, 'default');
120
+ display: inline-block;
121
+ }
122
+ .#{$namespace}-icon {
123
+ height: inherit;
124
+
125
+ svg {
126
+ vertical-align: middle;
127
+ }
128
+ }
129
+ }
130
+
131
+ @include e(input) {
132
+ position: absolute;
133
+ width: 0;
134
+ height: 0;
135
+ opacity: 0;
136
+ margin: 0;
137
+
138
+ &:focus-visible {
139
+ & ~ .#{$namespace}-switch__core {
140
+ outline: 2px solid getCssVar('switch-on-color');
141
+ outline-offset: 1px;
142
+ }
143
+ }
144
+ }
145
+
146
+ @include e(core) {
147
+ display: inline-flex;
148
+ position: relative;
149
+ align-items: center;
150
+ min-width: map.get($switch-core-width, 'default');
151
+ height: map.get($switch-core-height, 'default');
152
+ border: 1px solid
153
+ var(
154
+ #{getCssVarName('switch-border-color')},
155
+ #{getCssVar('switch-off-color')}
156
+ );
157
+ outline: none;
158
+ border-radius: map.get($switch-core-border-radius, 'default');
159
+ box-sizing: border-box;
160
+ background: getCssVar('switch-off-color');
161
+ cursor: pointer;
162
+ transition: border-color getCssVar('transition-duration'),
163
+ background-color getCssVar('transition-duration');
164
+
165
+ .#{$namespace}-switch__inner {
166
+ width: 100%;
167
+ transition: all getCssVar('transition-duration');
168
+ height: map.get($switch-button-size, 'default');
169
+ display: flex;
170
+ justify-content: center;
171
+ align-items: center;
172
+ overflow: hidden;
173
+
174
+ i,
175
+ .is-text {
176
+ font-size: 12px;
177
+ color: getCssVar('color-white');
178
+ user-select: none;
179
+ @include line-clamp;
180
+ }
181
+ padding: 0 #{map.get($switch-content-padding, 'default')} 0 calc(#{map.get(
182
+ $switch-button-size,
183
+ 'default'
184
+ )} + 2px);
185
+ }
186
+
187
+ .#{$namespace}-switch__action {
188
+ position: absolute;
189
+ left: 1px;
190
+ border-radius: getCssVar('border-radius-circle');
191
+ transition: all getCssVar('transition-duration');
192
+ width: map.get($switch-button-size, 'default');
193
+ height: map.get($switch-button-size, 'default');
194
+ background-color: getCssVar('color-white');
195
+ display: flex;
196
+ justify-content: center;
197
+ align-items: center;
198
+ color: getCssVar('switch-off-color');
199
+ }
200
+ }
201
+
202
+ @include when(checked) {
203
+ .#{$namespace}-switch__core {
204
+ border-color: var(
205
+ #{getCssVarName('switch-border-color')},
206
+ #{getCssVar('switch-on-color')}
207
+ );
208
+ background-color: getCssVar('switch-on-color');
209
+
210
+ .#{$namespace}-switch__action {
211
+ left: calc(100% - #{map.get($switch-button-size, 'default') + 1px});
212
+ color: getCssVar('switch-on-color');
213
+ }
214
+
215
+ .#{$namespace}-switch__inner {
216
+ padding: 0 calc(#{map.get($switch-button-size, 'default')} + 2px) 0 #{map.get(
217
+ $switch-content-padding,
218
+ 'default'
219
+ )};
220
+ }
221
+ }
222
+ }
223
+
224
+ @include when(disabled) {
225
+ opacity: 0.6;
226
+ }
227
+
228
+ @include m(wide) {
229
+ .#{$namespace}-switch__label {
230
+ &.#{$namespace}-switch__label--left {
231
+ span {
232
+ left: 10px;
233
+ }
234
+ }
235
+
236
+ &.#{$namespace}-switch__label--right {
237
+ span {
238
+ right: 10px;
239
+ }
240
+ }
241
+ }
242
+ }
243
+
244
+ & .label-fade-enter-from,
245
+ & .label-fade-leave-active {
246
+ opacity: 0;
247
+ }
248
+
249
+ @each $size in (large, small) {
250
+ @include m($size) {
251
+ font-size: map.get($switch-font-size, $size);
252
+ line-height: map.get($switch-core-height, $size);
253
+ height: map.get($switch-height, $size);
254
+
255
+ @include e(label) {
256
+ height: map.get($switch-core-height, $size);
257
+ font-size: map.get($switch-font-size, $size);
258
+
259
+ & * {
260
+ font-size: map.get($switch-font-size, $size);
261
+ }
262
+ }
263
+
264
+ @include e(core) {
265
+ min-width: map.get($switch-core-width, $size);
266
+ height: map.get($switch-core-height, $size);
267
+ border-radius: map.get($switch-core-border-radius, $size);
268
+
269
+ .#{$namespace}-switch__inner {
270
+ height: map.get($switch-button-size, $size);
271
+ padding: 0 #{map.get($switch-content-padding, $size)} 0 calc(#{map.get(
272
+ $switch-button-size,
273
+ $size
274
+ )} + 2px);
275
+ }
276
+
277
+ .#{$namespace}-switch__action {
278
+ width: map.get($switch-button-size, $size);
279
+ height: map.get($switch-button-size, $size);
280
+ }
281
+ }
282
+
283
+ @include when(checked) {
284
+ .#{$namespace}-switch__core {
285
+ .#{$namespace}-switch__action {
286
+ left: calc(100% - #{map.get($switch-button-size, $size) + 1px});
287
+ }
288
+
289
+ .#{$namespace}-switch__inner {
290
+ padding: 0 calc(#{map.get($switch-button-size, $size)} + 2px) 0 #{map.get(
291
+ $switch-content-padding,
292
+ $size
293
+ )};
294
+ }
295
+ }
296
+ }
297
+ }
298
+ }
299
+ }
@@ -0,0 +1,167 @@
1
+ @use 'common/var' as *;
2
+ @use 'mixins/mixins' as *;
3
+
4
+ $name: table;
5
+
6
+ @function getCompCssVar($value) {
7
+ @return getCssVar($name, $value);
8
+ }
9
+
10
+ @include b($name) {
11
+ .vxe-table {
12
+ .vxe-table--fixed-left-wrapper {
13
+ z-index: 10;
14
+ overflow: unset;
15
+
16
+ .vxe-table--body-wrapper {
17
+ width: 100%;
18
+ overflow-y: hidden;
19
+ }
20
+ }
21
+
22
+ .vxe-table--header-wrapper {
23
+ background-color: #f3fbfe;
24
+ // background-color: rgb(248, 250, 255);
25
+
26
+ position: sticky !important;
27
+ top: 0px;
28
+ z-index: 10;
29
+ overflow: hidden;
30
+ }
31
+
32
+ .vxe-header--column {
33
+ background-color: #f3fbfe;
34
+ color: rgba(0, 0, 0, 0.85);
35
+ user-select: none;
36
+ font-weight: 500;
37
+ line-height: 17px;
38
+ font-size: 12px;
39
+ padding: 8px 0;
40
+
41
+ &.is--sortable {
42
+ cursor: pointer;
43
+ }
44
+ }
45
+
46
+ .vxe-table--render-default .vxe-body--column.col--ellipsis:not(.col--actived) > .vxe-cell,
47
+ .vxe-table--render-default .vxe-footer--column.col--ellipsis:not(.col--actived) > .vxe-cell,
48
+ .vxe-table--render-default .vxe-header--column.col--ellipsis:not(.col--actived) > .vxe-cell {
49
+ white-space: normal;
50
+ max-height: inherit;
51
+ }
52
+
53
+ .vxe-cell {
54
+ white-space: normal;
55
+ }
56
+
57
+ .vxe-table--render-default .vxe-body--column.cellClass {
58
+ padding: 0;
59
+ height: 44px;
60
+ font-size: 13px;
61
+ line-height: 20px;
62
+ color: #111;
63
+ font-weight: 400;
64
+
65
+ .vxe-cell--label {
66
+ @include line-clamp(2);
67
+ }
68
+
69
+ .vxe-cell {
70
+ @include line-clamp(2);
71
+ }
72
+
73
+ .line-clamp {
74
+ @include line-clamp(2);
75
+ }
76
+
77
+ a {
78
+ color: getCssVar('primary-color');
79
+ font-size: 13px;
80
+ cursor: pointer;
81
+
82
+ &:hover {
83
+ text-decoration: underline;
84
+ }
85
+ }
86
+
87
+ em {
88
+ color: #fe3a2f;
89
+ font-style: normal;
90
+ }
91
+ }
92
+
93
+ .vxe-sort--asc-btn,
94
+ .vxe-sort--desc-btn {
95
+ pointer-events: none;
96
+ }
97
+
98
+ .remark {
99
+ color: #111;
100
+ position: relative;
101
+ cursor: pointer;
102
+
103
+ &::after {
104
+ content: '*';
105
+ color: #f64c4c;
106
+ position: absolute;
107
+ font-size: 18px;
108
+ right: -8px;
109
+ top: 0;
110
+ }
111
+ }
112
+ }
113
+
114
+ .vxe-grid--bottom-wrapper {
115
+ position: sticky;
116
+ bottom: 0;
117
+ z-index: 3000;
118
+ }
119
+
120
+ @include e(sticky-scroll-warpper) {
121
+ height: 10px;
122
+ width: 100%;
123
+ overflow-x: auto;
124
+ border-radius: 4px;
125
+ background-color: transparent;
126
+ border-right: 1px solid #ebeef5;
127
+ box-sizing: content-box;
128
+ z-index: 9;
129
+ display: block;
130
+ }
131
+
132
+ @include e(sticky-scroll-bar) {
133
+ height: 1px;
134
+ width: 100%;
135
+ box-sizing: border-box;
136
+ }
137
+
138
+ @include m(pager-bottom-right) {
139
+ margin-top: 10px;
140
+ justify-content: flex-end;
141
+ .btn-next {
142
+ margin-right: 0!important;
143
+ }
144
+ }
145
+
146
+ @include m(pager-bottom-left) {
147
+ margin-top: 10px;
148
+ justify-content: flex-start;
149
+ .btn-prev {
150
+ margin-left: 0 !important;
151
+ }
152
+ }
153
+ @include m(pager-top-right) {
154
+ margin-bottom: 10px;
155
+ justify-content: flex-end;
156
+ .btn-next {
157
+ margin-right: 0 !important;
158
+ }
159
+ }
160
+ @include m(pager-top-left) {
161
+ margin-bottom: 10px;
162
+ justify-content: flex-start;
163
+ .btn-prev {
164
+ margin-left: 0 !important;
165
+ }
166
+ }
167
+ }
File without changes
@@ -0,0 +1,40 @@
1
+ @use 'mixins/mixins' as *;
2
+ @use 'common/var' as *;
3
+
4
+ @mixin showScrollbar {
5
+ @include b(virtual-scrollbar) {
6
+ opacity: 1;
7
+ }
8
+ }
9
+
10
+ @include b(vl) {
11
+ @include e(wrapper) {
12
+ position: relative;
13
+ &:hover {
14
+ @include showScrollbar();
15
+ }
16
+ &.always-on {
17
+ @include showScrollbar();
18
+ }
19
+ }
20
+ }
21
+
22
+ .#{$namespace}-vl__window {
23
+ scrollbar-width: none;
24
+ &::-webkit-scrollbar {
25
+ display: none;
26
+ }
27
+ }
28
+ @include b(virtual-scrollbar) {
29
+ opacity: 0;
30
+ transition: opacity 340ms ease-out;
31
+ &.always-on {
32
+ opacity: 1;
33
+ }
34
+ }
35
+
36
+ @include b(vg) {
37
+ @include e(wrapper) {
38
+ position: relative;
39
+ }
40
+ }
@@ -0,0 +1 @@
1
+ .vft-alert{--vft-alert-padding:8px 16px;--vft-alert-border-radius-base:var(--vft-border-radius-base);--vft-alert-title-font-size:13px;--vft-alert-description-font-size:12px;--vft-alert-close-font-size:12px;--vft-alert-close-customed-font-size:13px;--vft-alert-icon-size:16px;--vft-alert-icon-large-size:28px;width:100%;padding:var(--vft-alert-padding);margin:0;box-sizing:border-box;border-radius:var(--vft-alert-border-radius-base);position:relative;background-color:var(--vft-color-white);overflow:hidden;opacity:1;display:flex;align-items:center;transition:opacity var(--vft-transition-duration-fast)}.vft-alert.is-light .vft-alert__close-btn{color:var(--vft-text-color-placeholder)}.vft-alert.is-dark .vft-alert__close-btn{color:var(--vft-color-white)}.vft-alert.is-dark .vft-alert__description{color:var(--vft-color-white)}.vft-alert.is-center{justify-content:center}.vft-alert--success{--vft-alert-bg-color:var(--vft-success-color-light-9)}.vft-alert--success.is-light{background-color:var(--vft-alert-bg-color);color:var(--vft-success-color)}.vft-alert--success.is-light .vft-alert__description{color:var(--vft-success-color)}.vft-alert--success.is-dark{background-color:var(--vft-success-color);color:var(--vft-color-white)}.vft-alert--info{--vft-alert-bg-color:var(--vft-info-color-light-9)}.vft-alert--info.is-light{background-color:var(--vft-alert-bg-color);color:var(--vft-info-color)}.vft-alert--info.is-light .vft-alert__description{color:var(--vft-info-color)}.vft-alert--info.is-dark{background-color:var(--vft-info-color);color:var(--vft-color-white)}.vft-alert--warning{--vft-alert-bg-color:var(--vft-warning-color-light-9)}.vft-alert--warning.is-light{background-color:var(--vft-alert-bg-color);color:var(--vft-warning-color)}.vft-alert--warning.is-light .vft-alert__description{color:var(--vft-warning-color)}.vft-alert--warning.is-dark{background-color:var(--vft-warning-color);color:var(--vft-color-white)}.vft-alert--error{--vft-alert-bg-color:var(--vft-error-color-light-9)}.vft-alert--error.is-light{background-color:var(--vft-alert-bg-color);color:var(--vft-error-color)}.vft-alert--error.is-light .vft-alert__description{color:var(--vft-error-color)}.vft-alert--error.is-dark{background-color:var(--vft-error-color);color:var(--vft-color-white)}.vft-alert__content{display:table-cell;padding:0 8px}.vft-alert .vft-alert__icon{font-size:var(--vft-alert-icon-size);width:var(--vft-alert-icon-size)}.vft-alert .vft-alert__icon.is-big{font-size:var(--vft-alert-icon-large-size);width:var(--vft-alert-icon-large-size)}.vft-alert__title{font-size:var(--vft-alert-title-font-size);line-height:18px;vertical-align:text-top}.vft-alert__title.is-bold{font-weight:700}.vft-alert .vft-alert__description{font-size:var(--vft-alert-description-font-size);margin:5px 0 0 0}.vft-alert .vft-alert__close-btn{font-size:var(--vft-alert-close-font-size);opacity:1;position:absolute;top:12px;right:15px;cursor:pointer}.vft-alert .vft-alert__close-btn.is-customed{font-style:normal;font-size:var(--vft-alert-close-customed-font-size);top:9px}.vft-alert-fade-enter-from,.vft-alert-fade-leave-active{opacity:0}
@@ -1 +1 @@
1
- :root{--vft-avatar-text-color:var(--vft-color-white);--vft-avatar-bg-color:var(--vft-text-disabled-color);--vft-avatar-text-size:14px;--vft-avatar-icon-size:18px;--vft-avatar-border-radius:var(--vft-border-radius-base)}.vft-avatar{--vft-avatar-size-large:56px;--vft-avatar-size:40px;--vft-avatar-size-small:24px;--vft-avatar-size:40px;display:inline-flex;justify-content:center;align-items:center;box-sizing:border-box;text-align:center;overflow:hidden;color:var(--vft-avatar-text-color);background:var(--vft-avatar-bg-color);width:var(--vft-avatar-size);height:var(--vft-avatar-size);font-size:var(--vft-avatar-text-size)}.vft-avatar>img{display:block;height:100%}.vft-avatar--circle{border-radius:50%}.vft-avatar--square{border-radius:var(--vft-avatar-border-radius)}.vft-avatar--icon{font-size:var(--vft-avatar-icon-size)}.vft-avatar--small{--vft-avatar-size:24px}.vft-avatar--large{--vft-avatar-size:56px}
1
+ :root{--vft-avatar-text-color:var(--vft-color-white);--vft-avatar-bg-color:var(--vft-text-disabled-color);--vft-avatar-text-size:14px;--vft-avatar-icon-size:18px;--vft-avatar-border-radius:var(--vft-border-radius-base)}.vft-avatar{--vft-avatar-size-large:56px;--vft-avatar-size:40px;--vft-avatar-size-small:24px;--vft-avatar-size:40px;display:inline-flex;justify-content:center;box-sizing:border-box;text-align:center;overflow:hidden;color:var(--vft-avatar-text-color);background:var(--vft-avatar-bg-color);width:var(--vft-avatar-size);height:var(--vft-avatar-size);font-size:var(--vft-avatar-text-size)}.vft-avatar>img{display:block;height:100%}.vft-avatar--circle{border-radius:50%}.vft-avatar--square{border-radius:var(--vft-avatar-border-radius)}.vft-avatar--icon{background:0 0;font-size:var(--vft-avatar-icon-size)}.vft-avatar--small{--vft-avatar-size:24px}.vft-avatar--large{--vft-avatar-size:56px}
@@ -0,0 +1 @@
1
+ .vft-button-group{display:inline-block;vertical-align:middle}.vft-button-group::after,.vft-button-group::before{display:table;content:""}.vft-button-group::after{clear:both}.vft-button-group>.vft-button{float:left;position:relative}.vft-button-group>.vft-button+.vft-button{margin-left:0}.vft-button-group>.vft-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.vft-button-group>.vft-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.vft-button-group>.vft-button:first-child:last-child{border-top-right-radius:var(--vft-border-radius-base);border-bottom-right-radius:var(--vft-border-radius-base);border-top-left-radius:var(--vft-border-radius-base);border-bottom-left-radius:var(--vft-border-radius-base)}.vft-button-group>.vft-button:first-child:last-child.is-round{border-radius:var(--vft-border-radius-round)}.vft-button-group>.vft-button:first-child:last-child.is-circle{border-radius:50%}.vft-button-group>.vft-button:not(:first-child):not(:last-child){border-radius:0}.vft-button-group>.vft-button:not(:last-child){margin-right:-1px}.vft-button-group>.vft-button:active,.vft-button-group>.vft-button:focus,.vft-button-group>.vft-button:hover{z-index:1}.vft-button-group>.vft-button.is-active{z-index:1}.vft-button-group>.vft-dropdown>.vft-button{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--primary:first-child{border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--primary:last-child{border-left-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--primary:not(:first-child):not(:last-child){border-left-color:var(--vft-button-divide-border-color);border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--success:first-child{border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--success:last-child{border-left-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--success:not(:first-child):not(:last-child){border-left-color:var(--vft-button-divide-border-color);border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--warning:first-child{border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--warning:last-child{border-left-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--warning:not(:first-child):not(:last-child){border-left-color:var(--vft-button-divide-border-color);border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--danger:first-child{border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--danger:last-child{border-left-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--danger:not(:first-child):not(:last-child){border-left-color:var(--vft-button-divide-border-color);border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--info:first-child{border-right-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--info:last-child{border-left-color:var(--vft-button-divide-border-color)}.vft-button-group .vft-button--info:not(:first-child):not(:last-child){border-left-color:var(--vft-button-divide-border-color);border-right-color:var(--vft-button-divide-border-color)}
@@ -0,0 +1 @@
1
+ .vft-button{--vft-button-font-weight:var(--vft-font-weight-primary);--vft-button-border-color:var(--vft-border-color);--vft-button-bg-color:var(--vft-fill-color-blank);--vft-button-text-color:var(--vft-text-regular-color);--vft-button-disabled-text-color:var(--vft-text-disabled-color);--vft-button-disabled-bg-color:var(--vft-fill-color-blank);--vft-button-disabled-border-color:var(--vft-border-color-light);--vft-button-divide-border-color:rgba(255, 255, 255, 0.5);--vft-button-hover-text-color:var(--vft-primary-color);--vft-button-hover-bg-color:var(--vft-primary-color-light-9);--vft-button-hover-border-color:var(--vft-primary-color-light-7);--vft-button-active-text-color:var(--vft-button-hover-text-color);--vft-button-active-border-color:var(--vft-primary-color);--vft-button-active-bg-color:var(--vft-button-hover-bg-color);--vft-button-outline-color:var(--vft-primary-color-light-5);--vft-button-hover-link-text-color:var(--vft-info-color);--vft-button-active-color:var(--vft-text-primary-color)}.vft-button{display:inline-flex;justify-content:center;align-items:center;line-height:1;height:32px;white-space:nowrap;cursor:pointer;color:var(--vft-button-text-color);text-align:center;box-sizing:border-box;outline:0;transition:.1s;font-weight:var(--vft-button-font-weight);-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;-webkit-appearance:none;background-color:var(--vft-button-bg-color);border:var(--vft-border);border-color:var(--vft-button-border-color);padding:8px 15px;font-size:var(--vft-font-size-base);border-radius:var(--vft-border-radius-base)}.vft-button:focus,.vft-button:hover{color:var(--vft-button-hover-text-color);border-color:var(--vft-button-hover-border-color);background-color:var(--vft-button-hover-bg-color);outline:0}.vft-button:active{color:var(--vft-button-active-text-color);border-color:var(--vft-button-active-border-color);background-color:var(--vft-button-active-bg-color);outline:0}.vft-button:focus-visible{outline:2px solid var(--vft-button-outline-color);outline-offset:1px}.vft-button>span{display:inline-flex;align-items:center}.vft-button+.vft-button{margin-left:12px}.vft-button.is-round{padding:8px 15px}.vft-button::-moz-focus-inner{border:0}.vft-button [class*=vft-icon]+span{margin-left:6px}.vft-button [class*=vft-icon] svg{vertical-align:bottom}.vft-button.is-block{width:100%}.vft-button.is-plain{--vft-button-hover-text-color:var(--vft-primary-color);--vft-button-hover-bg-color:var(--vft-fill-color-blank);--vft-button-hover-border-color:var(--vft-primary-color)}.vft-button.is-active{color:var(--vft-button-active-text-color);border-color:var(--vft-button-active-border-color);background-color:var(--vft-button-active-bg-color);outline:0}.vft-button.is-disabled,.vft-button.is-disabled:focus,.vft-button.is-disabled:hover{color:var(--vft-button-disabled-text-color);cursor:not-allowed;background-image:none;background-color:var(--vft-button-disabled-bg-color);border-color:var(--vft-button-disabled-border-color)}.vft-button.is-loading{position:relative;pointer-events:none}.vft-button.is-loading:before{z-index:1;pointer-events:none;content:"";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:var(--vft-mask-color-extra-light)}.vft-button.is-loading i{margin-right:2px}.vft-button.is-round{border-radius:var(--vft-border-radius-round)}.vft-button.is-circle{border-radius:50%;padding:8px}.vft-button.is-text{color:var(--vft-button-text-color);border:0 solid transparent;background-color:transparent}.vft-button.is-text.is-disabled{color:var(--vft-button-text-disabled-color);background-color:transparent!important}.vft-button.is-text:not(.is-disabled):focus,.vft-button.is-text:not(.is-disabled):hover{background-color:var(--vft-fill-color-light)}.vft-button.is-text:not(.is-disabled):focus-visible{outline:2px solid var(--vft-button-outline-color);outline-offset:1px}.vft-button.is-text:not(.is-disabled):active{background-color:var(--vft-fill-color)}.vft-button.is-text:not(.is-disabled).is-has-bg{background-color:var(--vft-fill-color-light)}.vft-button.is-text:not(.is-disabled).is-has-bg:focus,.vft-button.is-text:not(.is-disabled).is-has-bg:hover{background-color:var(--vft-fill-color)}.vft-button.is-text:not(.is-disabled).is-has-bg:active{background-color:var(--vft-fill-color-dark)}.vft-button__text--expand{letter-spacing:.3em;margin-right:-.3em}.vft-button.is-link{border-color:transparent;color:var(--vft-button-text-color);background:0 0;padding:2px;height:auto}.vft-button.is-link:focus,.vft-button.is-link:hover{color:var(--vft-button-hover-link-text-color)}.vft-button.is-link.is-disabled{color:var(--vft-button-disabled-text-color);background-color:transparent!important;border-color:transparent!important}.vft-button.is-link:not(.is-disabled):focus,.vft-button.is-link:not(.is-disabled):hover{border-color:transparent;background-color:transparent}.vft-button.is-link:not(.is-disabled):active{color:var(--vft-button-active-color);border-color:transparent;background-color:transparent}.vft-button--text{border-color:transparent;background:0 0;color:var(--vft-primary-color);padding-left:0;padding-right:0}.vft-button--text.is-disabled{color:var(--vft-button-disabled-text-color);background-color:transparent!important;border-color:transparent!important}.vft-button--text:not(.is-disabled):focus,.vft-button--text:not(.is-disabled):hover{color:var(--vft-primary-color-light-3);border-color:transparent;background-color:transparent}.vft-button--text:not(.is-disabled):active{color:var(--vft-primary-color-dark-2);border-color:transparent;background-color:transparent}.vft-button__link--expand{letter-spacing:.3em;margin-right:-.3em}.vft-button--primary{--vft-button-text-color:var(--vft-color-white);--vft-button-bg-color:var(--vft-primary-color);--vft-button-border-color:var(--vft-primary-color);--vft-button-outline-color:var(--vft-primary-color-light-5);--vft-button-active-color:var(--vft-primary-color-dark-2);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-link-text-color:var(--vft-primary-color-light-5);--vft-button-hover-bg-color:var(--vft-primary-color-light-3);--vft-button-hover-border-color:var(--vft-primary-color-light-3);--vft-button-active-bg-color:var(--vft-primary-color-dark-2);--vft-button-active-border-color:var(--vft-primary-color-dark-2);--vft-button-disabled-text-color:var(--vft-color-white);--vft-button-disabled-bg-color:var(--vft-primary-color-light-5);--vft-button-disabled-border-color:var(--vft-primary-color-light-5)}.vft-button--primary.is-link,.vft-button--primary.is-plain,.vft-button--primary.is-text{--vft-button-text-color:var(--vft-primary-color);--vft-button-bg-color:var(--vft-primary-color-light-9);--vft-button-border-color:var(--vft-primary-color-light-5);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-bg-color:var(--vft-primary-color);--vft-button-hover-border-color:var(--vft-primary-color);--vft-button-active-text-color:var(--vft-color-white)}.vft-button--primary.is-link.is-disabled,.vft-button--primary.is-link.is-disabled:active,.vft-button--primary.is-link.is-disabled:focus,.vft-button--primary.is-link.is-disabled:hover,.vft-button--primary.is-plain.is-disabled,.vft-button--primary.is-plain.is-disabled:active,.vft-button--primary.is-plain.is-disabled:focus,.vft-button--primary.is-plain.is-disabled:hover,.vft-button--primary.is-text.is-disabled,.vft-button--primary.is-text.is-disabled:active,.vft-button--primary.is-text.is-disabled:focus,.vft-button--primary.is-text.is-disabled:hover{color:var(--vft-primary-color-light-5);background-color:var(--vft-primary-color-light-9);border-color:var(--vft-primary-color-light-8)}.vft-button--success{--vft-button-text-color:var(--vft-color-white);--vft-button-bg-color:var(--vft-success-color);--vft-button-border-color:var(--vft-success-color);--vft-button-outline-color:var(--vft-success-color-light-5);--vft-button-active-color:var(--vft-success-color-dark-2);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-link-text-color:var(--vft-success-color-light-5);--vft-button-hover-bg-color:var(--vft-success-color-light-3);--vft-button-hover-border-color:var(--vft-success-color-light-3);--vft-button-active-bg-color:var(--vft-success-color-dark-2);--vft-button-active-border-color:var(--vft-success-color-dark-2);--vft-button-disabled-text-color:var(--vft-color-white);--vft-button-disabled-bg-color:var(--vft-success-color-light-5);--vft-button-disabled-border-color:var(--vft-success-color-light-5)}.vft-button--success.is-link,.vft-button--success.is-plain,.vft-button--success.is-text{--vft-button-text-color:var(--vft-success-color);--vft-button-bg-color:var(--vft-success-color-light-9);--vft-button-border-color:var(--vft-success-color-light-5);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-bg-color:var(--vft-success-color);--vft-button-hover-border-color:var(--vft-success-color);--vft-button-active-text-color:var(--vft-color-white)}.vft-button--success.is-link.is-disabled,.vft-button--success.is-link.is-disabled:active,.vft-button--success.is-link.is-disabled:focus,.vft-button--success.is-link.is-disabled:hover,.vft-button--success.is-plain.is-disabled,.vft-button--success.is-plain.is-disabled:active,.vft-button--success.is-plain.is-disabled:focus,.vft-button--success.is-plain.is-disabled:hover,.vft-button--success.is-text.is-disabled,.vft-button--success.is-text.is-disabled:active,.vft-button--success.is-text.is-disabled:focus,.vft-button--success.is-text.is-disabled:hover{color:var(--vft-success-color-light-5);background-color:var(--vft-success-color-light-9);border-color:var(--vft-success-color-light-8)}.vft-button--warning{--vft-button-text-color:var(--vft-color-white);--vft-button-bg-color:var(--vft-warning-color);--vft-button-border-color:var(--vft-warning-color);--vft-button-outline-color:var(--vft-warning-color-light-5);--vft-button-active-color:var(--vft-warning-color-dark-2);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-link-text-color:var(--vft-warning-color-light-5);--vft-button-hover-bg-color:var(--vft-warning-color-light-3);--vft-button-hover-border-color:var(--vft-warning-color-light-3);--vft-button-active-bg-color:var(--vft-warning-color-dark-2);--vft-button-active-border-color:var(--vft-warning-color-dark-2);--vft-button-disabled-text-color:var(--vft-color-white);--vft-button-disabled-bg-color:var(--vft-warning-color-light-5);--vft-button-disabled-border-color:var(--vft-warning-color-light-5)}.vft-button--warning.is-link,.vft-button--warning.is-plain,.vft-button--warning.is-text{--vft-button-text-color:var(--vft-warning-color);--vft-button-bg-color:var(--vft-warning-color-light-9);--vft-button-border-color:var(--vft-warning-color-light-5);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-bg-color:var(--vft-warning-color);--vft-button-hover-border-color:var(--vft-warning-color);--vft-button-active-text-color:var(--vft-color-white)}.vft-button--warning.is-link.is-disabled,.vft-button--warning.is-link.is-disabled:active,.vft-button--warning.is-link.is-disabled:focus,.vft-button--warning.is-link.is-disabled:hover,.vft-button--warning.is-plain.is-disabled,.vft-button--warning.is-plain.is-disabled:active,.vft-button--warning.is-plain.is-disabled:focus,.vft-button--warning.is-plain.is-disabled:hover,.vft-button--warning.is-text.is-disabled,.vft-button--warning.is-text.is-disabled:active,.vft-button--warning.is-text.is-disabled:focus,.vft-button--warning.is-text.is-disabled:hover{color:var(--vft-warning-color-light-5);background-color:var(--vft-warning-color-light-9);border-color:var(--vft-warning-color-light-8)}.vft-button--danger{--vft-button-text-color:var(--vft-color-white);--vft-button-bg-color:var(--vft-danger-color);--vft-button-border-color:var(--vft-danger-color);--vft-button-outline-color:var(--vft-danger-color-light-5);--vft-button-active-color:var(--vft-danger-color-dark-2);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-link-text-color:var(--vft-danger-color-light-5);--vft-button-hover-bg-color:var(--vft-danger-color-light-3);--vft-button-hover-border-color:var(--vft-danger-color-light-3);--vft-button-active-bg-color:var(--vft-danger-color-dark-2);--vft-button-active-border-color:var(--vft-danger-color-dark-2);--vft-button-disabled-text-color:var(--vft-color-white);--vft-button-disabled-bg-color:var(--vft-danger-color-light-5);--vft-button-disabled-border-color:var(--vft-danger-color-light-5)}.vft-button--danger.is-link,.vft-button--danger.is-plain,.vft-button--danger.is-text{--vft-button-text-color:var(--vft-danger-color);--vft-button-bg-color:var(--vft-danger-color-light-9);--vft-button-border-color:var(--vft-danger-color-light-5);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-bg-color:var(--vft-danger-color);--vft-button-hover-border-color:var(--vft-danger-color);--vft-button-active-text-color:var(--vft-color-white)}.vft-button--danger.is-link.is-disabled,.vft-button--danger.is-link.is-disabled:active,.vft-button--danger.is-link.is-disabled:focus,.vft-button--danger.is-link.is-disabled:hover,.vft-button--danger.is-plain.is-disabled,.vft-button--danger.is-plain.is-disabled:active,.vft-button--danger.is-plain.is-disabled:focus,.vft-button--danger.is-plain.is-disabled:hover,.vft-button--danger.is-text.is-disabled,.vft-button--danger.is-text.is-disabled:active,.vft-button--danger.is-text.is-disabled:focus,.vft-button--danger.is-text.is-disabled:hover{color:var(--vft-danger-color-light-5);background-color:var(--vft-danger-color-light-9);border-color:var(--vft-danger-color-light-8)}.vft-button--info{--vft-button-text-color:var(--vft-color-white);--vft-button-bg-color:var(--vft-info-color);--vft-button-border-color:var(--vft-info-color);--vft-button-outline-color:var(--vft-info-color-light-5);--vft-button-active-color:var(--vft-info-color-dark-2);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-link-text-color:var(--vft-info-color-light-5);--vft-button-hover-bg-color:var(--vft-info-color-light-3);--vft-button-hover-border-color:var(--vft-info-color-light-3);--vft-button-active-bg-color:var(--vft-info-color-dark-2);--vft-button-active-border-color:var(--vft-info-color-dark-2);--vft-button-disabled-text-color:var(--vft-color-white);--vft-button-disabled-bg-color:var(--vft-info-color-light-5);--vft-button-disabled-border-color:var(--vft-info-color-light-5)}.vft-button--info.is-link,.vft-button--info.is-plain,.vft-button--info.is-text{--vft-button-text-color:var(--vft-info-color);--vft-button-bg-color:var(--vft-info-color-light-9);--vft-button-border-color:var(--vft-info-color-light-5);--vft-button-hover-text-color:var(--vft-color-white);--vft-button-hover-bg-color:var(--vft-info-color);--vft-button-hover-border-color:var(--vft-info-color);--vft-button-active-text-color:var(--vft-color-white)}.vft-button--info.is-link.is-disabled,.vft-button--info.is-link.is-disabled:active,.vft-button--info.is-link.is-disabled:focus,.vft-button--info.is-link.is-disabled:hover,.vft-button--info.is-plain.is-disabled,.vft-button--info.is-plain.is-disabled:active,.vft-button--info.is-plain.is-disabled:focus,.vft-button--info.is-plain.is-disabled:hover,.vft-button--info.is-text.is-disabled,.vft-button--info.is-text.is-disabled:active,.vft-button--info.is-text.is-disabled:focus,.vft-button--info.is-text.is-disabled:hover{color:var(--vft-info-color-light-5);background-color:var(--vft-info-color-light-9);border-color:var(--vft-info-color-light-8)}.vft-button--large{--vft-button-size:40px;height:var(--vft-button-size);padding:12px 19px;font-size:var(--vft-font-size-base);border-radius:var(--vft-border-radius-base)}.vft-button--large [class*=vft-icon]+span{margin-left:8px}.vft-button--large.is-round{padding:12px 19px}.vft-button--large.is-circle{width:var(--vft-button-size);padding:12px}.vft-button--small{--vft-button-size:24px;height:var(--vft-button-size);padding:5px 11px;font-size:12px;border-radius:calc(var(--vft-border-radius-base) - 1px)}.vft-button--small [class*=vft-icon]+span{margin-left:4px}.vft-button--small.is-round{padding:5px 11px}.vft-button--small.is-circle{width:var(--vft-button-size);padding:5px}
@@ -0,0 +1 @@
1
+ .vft-checkbox-button{--vft-checkbox-button-checked-bg-color:var(--vft-primary-color);--vft-checkbox-button-checked-text-color:var(--vft-color-white);--vft-checkbox-button-checked-border-color:var(--vft-primary-color)}.vft-checkbox-button{position:relative;display:inline-block}.vft-checkbox-button__inner{display:inline-block;line-height:1;font-weight:var(--vft-checkbox-font-weight);white-space:nowrap;vertical-align:middle;cursor:pointer;background:var(--vft-button-bg-color,var(--vft-fill-color-blank));border:var(--vft-border);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;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-checkbox-button__inner.is-round{padding:8px 15px}.vft-checkbox-button__inner:hover{color:var(--vft-primary-color)}.vft-checkbox-button__inner [class*=vft-icon-]{line-height:.9}.vft-checkbox-button__inner [class*=vft-icon-]+span{margin-left:5px}.vft-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;z-index:-1}.vft-checkbox-button.is-checked .vft-checkbox-button__inner{color:var(--vft-checkbox-button-checked-text-color);background-color:var(--vft-checkbox-button-checked-bg-color);border-color:var(--vft-checkbox-button-checked-border-color);box-shadow:-1px 0 0 0 var(--vft-primary-color-light-7)}.vft-checkbox-button.is-checked:first-child .vft-checkbox-button__inner{border-left-color:var(--vft-checkbox-button-checked-border-color)}.vft-checkbox-button.is-disabled .vft-checkbox-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-checkbox-button.is-disabled:first-child .vft-checkbox-button__inner{border-left-color:var(--vft-button-disabled-border-color,var(--vft-border-color-light))}.vft-checkbox-button:first-child .vft-checkbox-button__inner{border-left:var(--vft-border);border-top-left-radius:var(--vft-border-radius-base);border-bottom-left-radius:var(--vft-border-radius-base);box-shadow:none!important}.vft-checkbox-button.is-focus .vft-checkbox-button__inner{border-color:var(--vft-checkbox-button-checked-border-color)}.vft-checkbox-button:last-child .vft-checkbox-button__inner{border-top-right-radius:var(--vft-border-radius-base);border-bottom-right-radius:var(--vft-border-radius-base)}.vft-checkbox-button--large .vft-checkbox-button__inner{padding:12px 19px;font-size:var(--vft-font-size-base);border-radius:0}.vft-checkbox-button--large .vft-checkbox-button__inner.is-round{padding:12px 19px}.vft-checkbox-button--small .vft-checkbox-button__inner{padding:5px 11px;font-size:12px;border-radius:0}.vft-checkbox-button--small .vft-checkbox-button__inner.is-round{padding:5px 11px}
@@ -0,0 +1 @@
1
+ .vft-checkbox-group{font-size:0;line-height:0}
@@ -0,0 +1 @@
1
+ .vft-checkbox{--vft-checkbox-font-size:14px;--vft-checkbox-font-weight:var(--vft-font-weight-primary);--vft-checkbox-text-color:var(--vft-text-regular-color);--vft-checkbox-input-height:14px;--vft-checkbox-input-width:14px;--vft-checkbox-border-radius:var(--vft-border-radius-small);--vft-checkbox-bg-color:var(--vft-fill-color-blank);--vft-checkbox-input-border:var(--vft-border);--vft-checkbox-disabled-border-color:var(--vft-border-color);--vft-checkbox-disabled-input-fill:var(--vft-fill-color-light);--vft-checkbox-disabled-icon-color:var(--vft-text-placeholder-color);--vft-checkbox-disabled-checked-input-fill:var(--vft-border-color-extra-light);--vft-checkbox-disabled-checked-input-border-color:var(--vft-border-color);--vft-checkbox-disabled-checked-icon-color:var(--vft-text-placeholder-color);--vft-checkbox-checked-text-color:var(--vft-primary-color);--vft-checkbox-checked-input-border-color:var(--vft-primary-color);--vft-checkbox-checked-bg-color:var(--vft-primary-color);--vft-checkbox-checked-icon-color:var(--vft-color-white);--vft-checkbox-input-border-color-hover:var(--vft-primary-color)}.vft-checkbox{color:var(--vft-checkbox-text-color);font-weight:var(--vft-checkbox-font-weight);font-size:var(--vft-font-size-base);position:relative;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-right:30px;height:32px}.vft-checkbox.is-disabled{cursor:not-allowed}.vft-checkbox.is-bordered{padding:0 15px 0 9px;border-radius:var(--vft-border-radius-base);border:var(--vft-border);box-sizing:border-box}.vft-checkbox.is-bordered.is-checked{border-color:var(--vft-primary-color)}.vft-checkbox.is-bordered.is-disabled{border-color:var(--vft-border-color-lighter)}.vft-checkbox.is-bordered.vft-checkbox--large{padding:0 19px 0 11px;border-radius:var(--vft-border-radius-base)}.vft-checkbox.is-bordered.vft-checkbox--large .vft-checkbox__label{font-size:var(--vft-font-size-base)}.vft-checkbox.is-bordered.vft-checkbox--large .vft-checkbox__inner{height:14px;width:14px}.vft-checkbox.is-bordered.vft-checkbox--small{padding:0 11px 0 7px;border-radius:calc(var(--vft-border-radius-base) - 1px)}.vft-checkbox.is-bordered.vft-checkbox--small .vft-checkbox__label{font-size:12px}.vft-checkbox.is-bordered.vft-checkbox--small .vft-checkbox__inner{height:12px;width:12px}.vft-checkbox.is-bordered.vft-checkbox--small .vft-checkbox__inner::after{height:6px;width:2px}.vft-checkbox input:focus-visible+.vft-checkbox__inner{outline:2px solid var(--vft-checkbox-input-border-color-hover);outline-offset:1px;border-radius:var(--vft-checkbox-border-radius)}.vft-checkbox__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-flex;position:relative}.vft-checkbox__input.is-disabled .vft-checkbox__inner{background-color:var(--vft-checkbox-disabled-input-fill);border-color:var(--vft-checkbox-disabled-border-color);cursor:not-allowed}.vft-checkbox__input.is-disabled .vft-checkbox__inner::after{cursor:not-allowed;border-color:var(--vft-checkbox-disabled-icon-color)}.vft-checkbox__input.is-disabled.is-checked .vft-checkbox__inner{background-color:var(--vft-checkbox-disabled-checked-input-fill);border-color:var(--vft-checkbox-disabled-checked-input-border-color)}.vft-checkbox__input.is-disabled.is-checked .vft-checkbox__inner::after{border-color:var(--vft-checkbox-disabled-checked-icon-color)}.vft-checkbox__input.is-disabled.is-indeterminate .vft-checkbox__inner{background-color:var(--vft-checkbox-disabled-checked-input-fill);border-color:var(--vft-checkbox-disabled-checked-input-border-color)}.vft-checkbox__input.is-disabled.is-indeterminate .vft-checkbox__inner::before{background-color:var(--vft-checkbox-disabled-checked-icon-color);border-color:var(--vft-checkbox-disabled-checked-icon-color)}.vft-checkbox__input.is-disabled+span.vft-checkbox__label{color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-checkbox__input.is-checked .vft-checkbox__inner{background-color:var(--vft-checkbox-checked-bg-color);border-color:var(--vft-checkbox-checked-input-border-color)}.vft-checkbox__input.is-checked .vft-checkbox__inner::after{transform:rotate(45deg) scaleY(1)}.vft-checkbox__input.is-checked+.vft-checkbox__label{color:var(--vft-checkbox-checked-text-color)}.vft-checkbox__input.is-focus:not(.is-checked) .vft-checkbox__original:not(:focus-visible){border-color:var(--vft-checkbox-input-border-color-hover)}.vft-checkbox__input.is-indeterminate .vft-checkbox__inner{background-color:var(--vft-checkbox-checked-bg-color);border-color:var(--vft-checkbox-checked-input-border-color)}.vft-checkbox__input.is-indeterminate .vft-checkbox__inner::before{content:"";position:absolute;display:block;background-color:var(--vft-checkbox-checked-icon-color);height:2px;transform:scale(.5);left:0;right:0;top:5px}.vft-checkbox__input.is-indeterminate .vft-checkbox__inner::after{display:none}.vft-checkbox__inner{display:inline-block;position:relative;border:var(--vft-checkbox-input-border);border-radius:var(--vft-checkbox-border-radius);box-sizing:border-box;width:var(--vft-checkbox-input-width);height:var(--vft-checkbox-input-height);background-color:var(--vft-checkbox-bg-color);z-index:var(--vft-index-normal);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46),outline .25s cubic-bezier(.71,-.46,.29,1.46)}.vft-checkbox__inner:hover{border-color:var(--vft-checkbox-input-border-color-hover)}.vft-checkbox__inner::after{box-sizing:content-box;content:"";border:1px solid var(--vft-checkbox-checked-icon-color);border-left:0;border-top:0;height:7px;left:4px;position:absolute;top:1px;transform:rotate(45deg) scaleY(0);width:3px;transition:transform .15s ease-in 50ms;transform-origin:center}.vft-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.vft-checkbox__label{display:inline-block;padding-left:8px;line-height:1;font-size:var(--vft-checkbox-font-size)}.vft-checkbox.vft-checkbox--large{height:40px}.vft-checkbox.vft-checkbox--large .vft-checkbox__label{font-size:14px}.vft-checkbox.vft-checkbox--large .vft-checkbox__inner{width:14px;height:14px}.vft-checkbox.vft-checkbox--small{height:24px}.vft-checkbox.vft-checkbox--small .vft-checkbox__label{font-size:12px}.vft-checkbox.vft-checkbox--small .vft-checkbox__inner{width:12px;height:12px}.vft-checkbox.vft-checkbox--small .vft-checkbox__input.is-indeterminate .vft-checkbox__inner::before{top:4px}.vft-checkbox.vft-checkbox--small .vft-checkbox__inner::after{width:2px;height:6px}.vft-checkbox:last-of-type{margin-right:0}
@@ -0,0 +1 @@
1
+ .vft-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.vft-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap}.vft-color-predefine__color-selector{margin:0 0 8px 8px;width:20px;height:20px;border-radius:4px;cursor:pointer}.vft-color-predefine__color-selector:nth-child(10n+1){margin-left:0}.vft-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px var(--vft-color-primary)}.vft-color-predefine__color-selector>div{display:flex;height:100%;border-radius:3px}.vft-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.vft-color-hue-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px;float:right}.vft-color-hue-slider__bar{position:relative;background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);height:100%}.vft-color-hue-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid var(--vft-border-color-lighter);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.vft-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.vft-color-hue-slider.is-vertical .vft-color-hue-slider__bar{background:linear-gradient(to bottom,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.vft-color-hue-slider.is-vertical .vft-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.vft-color-svpanel{position:relative;width:280px;height:180px}.vft-color-svpanel__black,.vft-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.vft-color-svpanel__white{background:linear-gradient(to right,#fff,rgba(255,255,255,0))}.vft-color-svpanel__black{background:linear-gradient(to top,#000,rgba(0,0,0,0))}.vft-color-svpanel__cursor{position:absolute}.vft-color-svpanel__cursor>div{cursor:head;width:4px;height:4px;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;transform:translate(-2px,-2px)}.vft-color-alpha-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-image:linear-gradient(45deg,var(--vft-color-picker-alpha-bg-a) 25%,var(--vft-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--vft-color-picker-alpha-bg-a) 25%,var(--vft-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--vft-color-picker-alpha-bg-b) 75%,var(--vft-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--vft-color-picker-alpha-bg-b) 75%,var(--vft-color-picker-alpha-bg-a) 75%);background-size:12px 12px;background-position:0 0,6px 0,6px -6px,0 6px}.vft-color-alpha-slider__bar{position:relative;background:linear-gradient(to right,rgba(255,255,255,0) 0,var(--vft-bg-color) 100%);height:100%}.vft-color-alpha-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid var(--vft-border-color-lighter);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.vft-color-alpha-slider.is-vertical{width:20px;height:180px}.vft-color-alpha-slider.is-vertical .vft-color-alpha-slider__bar{background:linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 100%)}.vft-color-alpha-slider.is-vertical .vft-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.vft-color-dropdown{width:300px}.vft-color-dropdown__main-wrapper{margin-bottom:6px}.vft-color-dropdown__main-wrapper::after{content:"";display:table;clear:both}.vft-color-dropdown__btns{margin-top:12px;text-align:right}.vft-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:#000;width:160px}.vft-color-picker{display:inline-block;position:relative;line-height:normal;outline:0}.vft-color-picker:hover:not(.is-disabled) .vft-color-picker__trigger{border:1px solid var(--vft-border-color-hover)}.vft-color-picker:focus-visible:not(.is-disabled) .vft-color-picker__trigger{outline:2px solid var(--vft-color-primary);outline-offset:1px}.vft-color-picker.is-disabled .vft-color-picker__trigger{cursor:not-allowed}.vft-color-picker--large{height:40px}.vft-color-picker--large .vft-color-picker__trigger{height:40px;width:40px}.vft-color-picker--large .vft-color-picker__mask{height:38px;width:38px}.vft-color-picker--small{height:24px}.vft-color-picker--small .vft-color-picker__trigger{height:24px;width:24px}.vft-color-picker--small .vft-color-picker__mask{height:22px;width:22px}.vft-color-picker--small .vft-color-picker__empty,.vft-color-picker--small .vft-color-picker__icon{transform:scale(.8)}.vft-color-picker__mask{height:30px;width:30px;border-radius:4px;position:absolute;top:1px;left:1px;z-index:1;cursor:not-allowed;background-color:rgba(255,255,255,.7)}.vft-color-picker__trigger{display:inline-flex;justify-content:center;align-items:center;box-sizing:border-box;height:32px;width:32px;padding:4px;border:1px solid var(--vft-border-color);border-radius:4px;font-size:0;position:relative;cursor:pointer}.vft-color-picker__color{position:relative;display:block;box-sizing:border-box;border:1px solid var(--vft-text-color-secondary);border-radius:var(--vft-border-radius-small);width:100%;height:100%;text-align:center}.vft-color-picker__color.is-alpha{background-image:linear-gradient(45deg,var(--vft-color-picker-alpha-bg-a) 25%,var(--vft-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--vft-color-picker-alpha-bg-a) 25%,var(--vft-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--vft-color-picker-alpha-bg-b) 75%,var(--vft-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--vft-color-picker-alpha-bg-b) 75%,var(--vft-color-picker-alpha-bg-a) 75%);background-size:12px 12px;background-position:0 0,6px 0,6px -6px,0 6px}.vft-color-picker__color-inner{display:inline-flex;justify-content:center;align-items:center;width:100%;height:100%}.vft-color-picker .vft-color-picker__empty{font-size:12px;color:var(--vft-text-color-secondary)}.vft-color-picker .vft-color-picker__icon{display:inline-flex;justify-content:center;align-items:center;color:#fff;font-size:12px}.vft-color-picker__panel{position:absolute;z-index:10;padding:6px;box-sizing:content-box;background-color:#fff;border-radius:var(--vft-border-radius-base);box-shadow:var(--vft-box-shadow-light)}.vft-color-picker__panel.vft-popper{border:1px solid var(--vft-border-color-lighter)}.vft-color-picker,.vft-color-picker__panel{--vft-color-picker-alpha-bg-a:#ccc;--vft-color-picker-alpha-bg-b:transparent}.dark .vft-color-picker,.dark .vft-color-picker__panel{--vft-color-picker-alpha-bg-a:#333333}
@@ -0,0 +1 @@
1
+ .vft-dialog{--vft-dialog-width:50%;--vft-dialog-margin-top:15vh;--vft-dialog-bg-color:var(--vft-bg-color);--vft-dialog-box-shadow:var(--vft-box-shadow);--vft-dialog-title-font-size:var(--vft-font-size-large);--vft-dialog-content-font-size:14px;--vft-dialog-font-line-height:var(--vft-font-line-height-primary);--vft-dialog-padding-primary:20px;--vft-dialog-border-radius:var(--vft-border-radius-small);position:relative;margin:var(--vft-dialog-margin-top,15vh) auto 50px;background:var(--vft-dialog-bg-color);border-radius:var(--vft-dialog-border-radius);box-shadow:var(--vft-dialog-box-shadow);box-sizing:border-box;width:var(--vft-dialog-width,50%)}.vft-dialog:focus{outline:0!important}.vft-dialog.is-align-center{margin:auto}.vft-dialog.is-fullscreen{--vft-dialog-width:100%;--vft-dialog-margin-top:0;margin-bottom:0;height:100%;overflow:auto}.vft-dialog__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.vft-dialog.is-draggable .vft-dialog__header{cursor:move;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-dialog__header{padding:var(--vft-dialog-padding-primary);padding-bottom:10px;margin-right:16px}.vft-dialog__headerbtn{position:absolute;top:6px;right:0;padding:0;width:54px;height:54px;background:0 0;border:none;outline:0;cursor:pointer;font-size:var(--vft-message-close-size,)}.vft-dialog__headerbtn .vft-dialog__close{color:var(--vft-color-info);font-size:inherit}.vft-dialog__headerbtn:focus .vft-dialog__close,.vft-dialog__headerbtn:hover .vft-dialog__close{color:var(--vft-color-primary)}.vft-dialog__title{line-height:var(--vft-dialog-font-line-height);font-size:var(--vft-dialog-title-font-size);color:var(--vft-text-color-primary)}.vft-dialog__body{padding:calc(var(--vft-dialog-padding-primary) + 10px) var(--vft-dialog-padding-primary);color:var(--vft-text-color-regular);font-size:var(--vft-dialog-content-font-size)}.vft-dialog__footer{padding:var(--vft-dialog-padding-primary);padding-top:10px;text-align:right;box-sizing:border-box}.vft-dialog--center{text-align:center}.vft-dialog--center .vft-dialog__body{text-align:initial;padding:25px calc(var(--vft-dialog-padding-primary) + 5px) 30px}.vft-dialog--center .vft-dialog__footer{text-align:inherit}.vft-overlay-dialog{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto}.dialog-fade-enter-active{animation:modal-fade-in var(--vft-transition-duration)}.dialog-fade-enter-active .vft-overlay-dialog{animation:dialog-fade-in var(--vft-transition-duration)}.dialog-fade-leave-active{animation:modal-fade-out var(--vft-transition-duration)}.dialog-fade-leave-active .vft-overlay-dialog{animation:dialog-fade-out var(--vft-transition-duration)}@keyframes dialog-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes dialog-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}@keyframes modal-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes modal-fade-out{0%{opacity:1}100%{opacity:0}}
File without changes
File without changes
@@ -0,0 +1 @@
1
+ .vft-dropdown{--vft-dropdown-menu-box-shadow:var(--vft-box-shadow-light);--vft-dropdown-menuItem-hover-fill:var(--vft-primary-color-light-9);--vft-dropdown-menuItem-hover-color:var(--vft-primary-color);--vft-dropdown-menu-index:10;display:inline-flex;position:relative;color:var(--vft-text-regular-color);font-size:var(--vft-font-size-base);line-height:1;vertical-align:top}.vft-dropdown.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-dropdown__popper{--vft-dropdown-menu-box-shadow:var(--vft-box-shadow-light);--vft-dropdown-menuItem-hover-fill:var(--vft-primary-color-light-9);--vft-dropdown-menuItem-hover-color:var(--vft-primary-color);--vft-dropdown-menu-index:10}.vft-dropdown__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-dropdown-menu-box-shadow)}.vft-dropdown__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-dropdown__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-dropdown__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-dropdown__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-dropdown__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-dropdown__popper .vft-dropdown-menu{border:none}.vft-dropdown__popper .vft-dropdown__popper-selfdefine{outline:0}.vft-dropdown__popper .vft-scrollbar__bar{z-index:calc(var(--vft-dropdown-menu-index) + 1)}.vft-dropdown__popper .vft-dropdown__list{list-style:none;padding:0;margin:0;box-sizing:border-box}.vft-dropdown .vft-dropdown__caret-button{padding-left:0;padding-right:0;display:inline-flex;justify-content:center;align-items:center;width:32px;border-left:none}.vft-dropdown .vft-dropdown__caret-button>span{display:inline-flex}.vft-dropdown .vft-dropdown__caret-button::before{content:"";position:absolute;display:block;width:1px;top:-1px;bottom:-1px;left:0;background:var(--vft-overlay-color-lighter)}.vft-dropdown .vft-dropdown__caret-button.vft-button::before{background:var(--vft-border-color);opacity:.5}.vft-dropdown .vft-dropdown__caret-button .vft-dropdown__icon{font-size:inherit;padding-left:0}.vft-dropdown .vft-dropdown-selfdefine{outline:0}.vft-dropdown--large .vft-dropdown__caret-button{width:40px}.vft-dropdown--small .vft-dropdown__caret-button{width:24px}.vft-dropdown-menu{position:relative;top:0;left:0;z-index:var(--vft-dropdown-menu-index);padding:5px 0;margin:0;background-color:var(--vft-bg-color-overlay);border:none;border-radius:var(--vft-border-radius-base);box-shadow:none;list-style:none}.vft-dropdown-menu__item{display:flex;align-items:center;white-space:nowrap;list-style:none;line-height:22px;padding:5px 16px;margin:0;font-size:var(--vft-font-size-base);color:var(--vft-text-regular-color);cursor:pointer;outline:0}.vft-dropdown-menu__item:not(.is-disabled):focus{background-color:var(--vft-dropdown-menuItem-hover-fill);color:var(--vft-dropdown-menuItem-hover-color)}.vft-dropdown-menu__item i{margin-right:5px}.vft-dropdown-menu__item--divided{margin:6px 0;border-top:1px solid var(--vft-border-color-lighter)}.vft-dropdown-menu__item.is-disabled{cursor:not-allowed;color:var(--vft-text-disabled-color)}.vft-dropdown-menu--large{padding:7px 0}.vft-dropdown-menu--large .vft-dropdown-menu__item{padding:7px 20px;line-height:22px;font-size:14px}.vft-dropdown-menu--large .vft-dropdown-menu__item--divided{margin:8px 0}.vft-dropdown-menu--small{padding:3px 0}.vft-dropdown-menu--small .vft-dropdown-menu__item{padding:2px 12px;line-height:20px;font-size:12px}.vft-dropdown-menu--small .vft-dropdown-menu__item--divided{margin:4px 0}
@@ -1 +1 @@
1
- .vft-form{--vft-form-label-font-size:var(--vft-font-size-base)}.vft-form--label-left .vft-form-item__label{justify-content:flex-start}.vft-form--label-top .vft-form-item{display:block}.vft-form--label-top .vft-form-item .vft-form-item__label{display:block;height:auto;text-align:left;margin-bottom:8px;line-height:22px}.vft-form--inline .vft-form-item{display:inline-flex;vertical-align:middle;margin-right:32px}.vft-form--inline.vft-form--label-top{display:flex;flex-wrap:wrap}.vft-form--inline.vft-form--label-top .vft-form-item{display:block}.vft-form--large.vft-form--label-top .vft-form-item .vft-form-item__label{margin-bottom:12px;line-height:22px}.vft-form--default.vft-form--label-top .vft-form-item .vft-form-item__label{margin-bottom:8px;line-height:22px}.vft-form--small.vft-form--label-top .vft-form-item .vft-form-item__label{margin-bottom:4px;line-height:20px}.vft-form-item{display:flex;--font-size:14px;margin-bottom:18px}.vft-form-item .vft-form-item{margin-bottom:0}.vft-form-item .vft-input__validateIcon{display:none}.vft-form-item--large{--font-size:14px;--vft-form-label-font-size:var(--font-size);margin-bottom:22px}.vft-form-item--large .vft-form-item__label{height:40px;line-height:40px}.vft-form-item--large .vft-form-item__content{line-height:40px}.vft-form-item--large .vft-form-item__error{padding-top:4px}.vft-form-item--default{--font-size:14px;--vft-form-label-font-size:var(--font-size);margin-bottom:18px}.vft-form-item--default .vft-form-item__label{height:32px;line-height:32px}.vft-form-item--default .vft-form-item__content{line-height:32px}.vft-form-item--default .vft-form-item__error{padding-top:2px}.vft-form-item--small{--font-size:12px;--vft-form-label-font-size:var(--font-size);margin-bottom:18px}.vft-form-item--small .vft-form-item__label{height:24px;line-height:24px}.vft-form-item--small .vft-form-item__content{line-height:24px}.vft-form-item--small .vft-form-item__error{padding-top:2px}.vft-form-item__label-wrap{display:flex}.vft-form-item__label{display:inline-flex;justify-content:flex-end;align-items:flex-start;flex:0 0 auto;font-size:var(--vft-form-label-font-size);color:var(--vft-text-regular-color);height:32px;line-height:32px;padding:0 12px 0 0;box-sizing:border-box}.vft-form-item__content{display:flex;flex-wrap:wrap;align-items:center;flex:1;line-height:32px;position:relative;font-size:var(--font-size);min-width:0}.vft-form-item__content .vft-input-group{vertical-align:top}.vft-form-item__error{color:var(--vft-danger-color);font-size:12px;line-height:1;padding-top:2px;position:absolute;top:100%;left:0}.vft-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.vft-form-item.is-required:not(.is-no-asterisk).asterisk-left>.vft-form-item__label-wrap>.vft-form-item__label:before,.vft-form-item.is-required:not(.is-no-asterisk).asterisk-left>.vft-form-item__label:before{content:"*";color:var(--vft-danger-color);margin-right:4px}.vft-form-item.is-required:not(.is-no-asterisk).asterisk-right>.vft-form-item__label-wrap>.vft-form-item__label:after,.vft-form-item.is-required:not(.is-no-asterisk).asterisk-right>.vft-form-item__label:after{content:"*";color:var(--vft-danger-color);margin-left:4px}.vft-form-item.is-error .vft-select-v2__wrapper,.vft-form-item.is-error .vft-select-v2__wrapper:focus,.vft-form-item.is-error .vft-textarea__inner,.vft-form-item.is-error .vft-textarea__inner:focus{box-shadow:0 0 0 1px var(--vft-danger-color) inset}.vft-form-item.is-error .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-danger-color) inset}.vft-form-item.is-error .vft-input-group__append .vft-input__wrapper,.vft-form-item.is-error .vft-input-group__prepend .vft-input__wrapper{box-shadow:0 0 0 1px transparent inset}.vft-form-item.is-error .vft-input__validateIcon{color:var(--vft-danger-color)}.vft-form-item--feedback .vft-input__validateIcon{display:inline-flex}
1
+ .vft-form{--vft-form-label-font-size:var(--vft-font-size-base)}.vft-form--label-left .vft-form-item__label{justify-content:flex-start}.vft-form--label-top .vft-form-item{display:block}.vft-form--label-top .vft-form-item .vft-form-item__label{display:block;height:auto;text-align:left;margin-bottom:8px;line-height:22px}.vft-form--inline .vft-form-item{display:inline-flex;vertical-align:middle;margin-right:32px}.vft-form--inline.vft-form--label-top{display:flex;flex-wrap:wrap}.vft-form--inline.vft-form--label-top .vft-form-item{display:block}.vft-form--large.vft-form--label-top .vft-form-item .vft-form-item__label{margin-bottom:12px;line-height:22px}.vft-form--default.vft-form--label-top .vft-form-item .vft-form-item__label{margin-bottom:8px;line-height:22px}.vft-form--small.vft-form--label-top .vft-form-item .vft-form-item__label{margin-bottom:4px;line-height:20px}.vft-form-item{display:flex;--font-size:14px;margin-bottom:18px}.vft-form-item .vft-form-item{margin-bottom:0}.vft-form-item .vft-input__validateIcon{display:none}.vft-form-item--large{--font-size:14px;--vft-form-label-font-size:var(--font-size);margin-bottom:22px}.vft-form-item--large .vft-form-item__label{height:40px;line-height:40px}.vft-form-item--large .vft-form-item__content{line-height:40px}.vft-form-item--large .vft-form-item__error{padding-top:4px}.vft-form-item--default{--font-size:14px;--vft-form-label-font-size:var(--font-size);margin-bottom:18px}.vft-form-item--default .vft-form-item__label{height:32px;line-height:32px}.vft-form-item--default .vft-form-item__content{line-height:32px}.vft-form-item--default .vft-form-item__error{padding-top:2px}.vft-form-item--small{--font-size:12px;--vft-form-label-font-size:var(--font-size);margin-bottom:18px}.vft-form-item--small .vft-form-item__label{height:24px;line-height:24px}.vft-form-item--small .vft-form-item__content{line-height:24px}.vft-form-item--small .vft-form-item__error{padding-top:2px}.vft-form-item__label-wrap{display:flex}.vft-form-item__label{display:inline-flex;justify-content:flex-end;align-items:flex-start;flex:0 0 auto;font-size:var(--vft-form-label-font-size);color:var(--vft-text-regular-color);height:32px;line-height:32px;padding:0 12px 0 0;box-sizing:border-box}.vft-form-item__content{display:flex;flex-wrap:wrap;align-items:center;flex:1;line-height:32px;position:relative;font-size:var(--font-size);min-width:0}.vft-form-item__content .vft-input-group{vertical-align:top}.vft-form-item__error{color:var(--vft-danger-color);font-size:12px;line-height:1;padding-top:2px;position:absolute;top:100%;left:0}.vft-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.vft-form-item.is-required:not(.is-no-asterisk).asterisk-left>.vft-form-item__label-wrap>.vft-form-item__label:before,.vft-form-item.is-required:not(.is-no-asterisk).asterisk-left>.vft-form-item__label:before{content:"*";color:var(--vft-danger-color);margin-right:4px}.vft-form-item.is-required:not(.is-no-asterisk).asterisk-right>.vft-form-item__label-wrap>.vft-form-item__label:after,.vft-form-item.is-required:not(.is-no-asterisk).asterisk-right>.vft-form-item__label:after{content:"*";color:var(--vft-danger-color);margin-left:4px}.vft-form-item.is-error .vft-select-v2__wrapper,.vft-form-item.is-error .vft-select-v2__wrapper:focus,.vft-form-item.is-error .vft-textarea__inner,.vft-form-item.is-error .vft-textarea__inner:focus{border:1px solid var(--vft-danger-color)}.vft-form-item.is-error .vft-input__wrapper{border:1px solid var(--vft-danger-color)}.vft-form-item.is-error .vft-input-group__append .vft-input__wrapper,.vft-form-item.is-error .vft-input-group__prepend .vft-input__wrapper{border:1px solid transparent}.vft-form-item.is-error .vft-input__validateIcon{color:var(--vft-danger-color)}.vft-form-item--feedback .vft-input__validateIcon{display:inline-flex}
@@ -0,0 +1 @@
1
+ .vft-image-viewer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0}.vft-image-viewer__wrapper i{font-size:inherit!important;cursor:pointer}.vft-image-viewer__btn{position:absolute;z-index:1;display:flex;align-items:center;justify-content:center;border-radius:50%;opacity:.8;cursor:pointer;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-image-viewer__btn .vft-icon{font-size:inherit;cursor:pointer}.vft-image-viewer__close{top:40px;right:40px;width:40px;height:40px;font-size:40px}.vft-image-viewer__canvas{position:static;width:100%;height:100%;display:flex;justify-content:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-image-viewer__actions{left:50%;bottom:30px;transform:translateX(-50%);width:282px;height:44px;padding:0 23px;background-color:var(--vft-text-color-regular);border-color:#fff;border-radius:22px}.vft-image-viewer__actions__inner{width:100%;height:100%;text-align:justify;cursor:default;font-size:23px;color:#fff;display:flex;align-items:center;justify-content:space-around}.vft-image-viewer__prev{top:50%;transform:translateY(-50%);left:40px;width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__next{top:50%;transform:translateY(-50%);right:40px;text-indent:2px;width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__close{width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__mask{position:absolute;width:100%;height:100%;top:0;left:0;opacity:.5;background:#000}.viewer-fade-enter-active{animation:viewer-fade-in var(--vft-transition-duration)}.viewer-fade-leave-active{animation:viewer-fade-out var(--vft-transition-duration)}@keyframes viewer-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes viewer-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}