vft 0.0.71 → 0.0.72

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 (408) hide show
  1. package/attributes.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/es/component.js +56 -40
  4. package/es/components/aside/style/css.js +2 -0
  5. package/es/components/aside/style/index.js +2 -0
  6. package/es/components/back-top/back-top.vue2.js +8 -2
  7. package/es/components/col/col.vue.js +4 -0
  8. package/es/components/col/col.vue2.js +60 -0
  9. package/es/components/col/index.js +12 -0
  10. package/es/components/col/style/css.js +2 -0
  11. package/es/components/col/style/index.js +2 -0
  12. package/es/components/col/types.js +1 -0
  13. package/es/components/color-picker/utils/color.js +41 -51
  14. package/es/components/container/aside.vue.js +4 -0
  15. package/es/components/container/aside.vue2.js +37 -0
  16. package/es/components/container/container.vue.js +4 -0
  17. package/es/components/container/container.vue2.js +33 -0
  18. package/es/components/container/footer.vue.js +4 -0
  19. package/es/components/container/footer.vue2.js +39 -0
  20. package/es/components/container/header.vue.js +4 -0
  21. package/es/components/container/header.vue2.js +39 -0
  22. package/es/components/container/index.js +25 -0
  23. package/es/components/container/main.vue.js +4 -0
  24. package/es/components/container/main.vue2.js +26 -0
  25. package/es/components/container/style/css.js +6 -0
  26. package/es/components/container/style/index.js +6 -0
  27. package/es/components/context-menu/context-menu.vue2.js +20 -14
  28. package/es/components/date-picker/composables/use-month-range-header.js +29 -0
  29. package/es/components/date-picker/composables/use-range-picker.js +68 -0
  30. package/es/components/date-picker/composables/use-shortcut.js +24 -0
  31. package/es/components/date-picker/constants.js +4 -0
  32. package/es/components/date-picker/date-picker-com/basic-cell-render.js +37 -0
  33. package/es/components/date-picker/date-picker-com/basic-date-table.vue.js +4 -0
  34. package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +206 -0
  35. package/es/components/date-picker/date-picker-com/basic-month-table.vue.js +4 -0
  36. package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +131 -0
  37. package/es/components/date-picker/date-picker-com/basic-year-table.vue.js +4 -0
  38. package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +85 -0
  39. package/es/components/date-picker/date-picker-com/panel-date-pick.vue.js +4 -0
  40. package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +455 -0
  41. package/es/components/date-picker/date-picker-com/panel-date-range.vue.js +4 -0
  42. package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +383 -0
  43. package/es/components/date-picker/date-picker-com/panel-month-range.vue.js +4 -0
  44. package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +170 -0
  45. package/es/components/date-picker/date-picker.js +81 -0
  46. package/es/components/date-picker/date-picker.type.js +1 -0
  47. package/es/components/date-picker/index.js +14 -0
  48. package/es/components/date-picker/panel-utils.js +17 -0
  49. package/es/components/date-picker/props/basic-cell.js +14 -0
  50. package/es/components/date-picker/props/basic-date-table.js +18 -0
  51. package/es/components/date-picker/props/basic-month-table.js +14 -0
  52. package/es/components/date-picker/props/basic-year-table.js +15 -0
  53. package/es/components/date-picker/props/date-picker.js +18 -0
  54. package/es/components/date-picker/props/panel-date-pick.js +23 -0
  55. package/es/components/date-picker/props/panel-date-range.js +14 -0
  56. package/es/components/date-picker/props/panel-month-range.js +14 -0
  57. package/es/components/date-picker/props/shared.js +56 -0
  58. package/es/components/date-picker/style/css.js +2 -0
  59. package/es/components/date-picker/style/index.js +7 -0
  60. package/es/components/date-picker/utils.js +49 -0
  61. package/es/components/date-time-select/date-time-select.vue2.js +70 -62
  62. package/es/components/date-time-select/style/index.js +6 -0
  63. package/es/components/footer/style/css.js +2 -0
  64. package/es/components/footer/style/index.js +2 -0
  65. package/es/components/footer-layout/footer-layout.vue2.js +105 -35
  66. package/es/components/header/style/css.js +2 -0
  67. package/es/components/header/style/index.js +2 -0
  68. package/es/components/header-layout/header-layout.vue2.js +122 -37
  69. package/es/components/horizontal-menu/horizontal-menu.vue.js +4 -0
  70. package/es/components/horizontal-menu/horizontal-menu.vue2.js +115 -0
  71. package/es/components/horizontal-menu/index.js +12 -0
  72. package/es/components/horizontal-menu/style/css.js +6 -0
  73. package/es/components/horizontal-menu/style/index.js +6 -0
  74. package/es/components/index.js +254 -209
  75. package/es/components/input/input.vue2.js +184 -178
  76. package/es/components/link/link.vue2.js +24 -24
  77. package/es/components/logo/logo.vue2.js +21 -21
  78. package/es/components/main/style/css.js +2 -0
  79. package/es/components/main/style/index.js +2 -0
  80. package/es/components/md-container/md-container.vue2.js +65 -59
  81. package/es/components/md-container/toc.js +1 -1
  82. package/es/components/menu/menu-item.vue2.js +89 -62
  83. package/es/components/menu/menu.vue2.js +100 -106
  84. package/es/components/menu/sub-menu.vue2.js +83 -76
  85. package/es/components/menu/utils/menu-item.js +15 -19
  86. package/es/components/menu/utils/submenu.js +20 -25
  87. package/es/components/multiple-tabs/multiple-tabs.vue2.js +45 -39
  88. package/es/components/result/result.vue2.js +8 -2
  89. package/es/components/row/constants.js +4 -0
  90. package/es/components/row/index.js +14 -0
  91. package/es/components/row/row.vue.js +4 -0
  92. package/es/components/row/row.vue2.js +49 -0
  93. package/es/components/row/style/css.js +2 -0
  94. package/es/components/row/style/index.js +2 -0
  95. package/es/components/row/types.js +1 -0
  96. package/es/components/search/search.vue2.js +126 -114
  97. package/es/components/side-menu/side-menu.vue2.js +212 -146
  98. package/es/components/side-menu/use-drag-line.js +29 -28
  99. package/es/components/tabs/tab-nav.vue2.js +48 -42
  100. package/es/components/time-picker/common/picker.vue.js +4 -0
  101. package/es/components/time-picker/common/picker.vue2.js +438 -0
  102. package/es/components/time-picker/common/props.js +201 -0
  103. package/es/components/time-picker/composables/use-time-panel.js +60 -0
  104. package/es/components/time-picker/composables/use-time-picker.js +40 -0
  105. package/es/components/time-picker/constants.js +17 -0
  106. package/es/components/time-picker/index.js +31 -0
  107. package/es/components/time-picker/props/basic-time-spinner.js +31 -0
  108. package/es/components/time-picker/props/panel-time-picker.js +17 -0
  109. package/es/components/time-picker/props/panel-time-range.js +16 -0
  110. package/es/components/time-picker/props/shared.js +40 -0
  111. package/es/components/time-picker/style/css.js +2 -0
  112. package/es/components/time-picker/style/index.js +2 -0
  113. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.js +4 -0
  114. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +227 -0
  115. package/es/components/time-picker/time-picker-com/panel-time-pick.vue.js +4 -0
  116. package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +107 -0
  117. package/es/components/time-picker/time-picker-com/panel-time-range.vue.js +4 -0
  118. package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +190 -0
  119. package/es/components/time-picker/time-picker.js +70 -0
  120. package/es/components/time-picker/types.js +1 -0
  121. package/es/components/time-picker/utils.js +35 -0
  122. package/es/components/time-select/style/css.js +2 -0
  123. package/es/components/time-select/style/index.js +2 -0
  124. package/es/components/time-select/time-select.js +54 -0
  125. package/es/components/time-select/time-select.vue.js +4 -0
  126. package/es/components/time-select/time-select.vue2.js +104 -0
  127. package/es/components/time-select/utils.js +40 -0
  128. package/es/components/tooltip/index.js +5 -3
  129. package/es/index.js +381 -336
  130. package/es/package.json.js +1 -1
  131. package/global.d.ts +73 -2
  132. package/lib/component.cjs +1 -1
  133. package/lib/components/aside/style/css.cjs +1 -0
  134. package/lib/components/aside/style/index.cjs +1 -0
  135. package/lib/components/back-top/back-top.vue2.cjs +1 -1
  136. package/lib/components/col/col.vue.cjs +1 -0
  137. package/lib/components/col/col.vue2.cjs +1 -0
  138. package/lib/components/col/index.cjs +1 -0
  139. package/lib/components/col/style/css.cjs +1 -0
  140. package/lib/components/col/style/index.cjs +1 -0
  141. package/lib/components/col/types.cjs +1 -0
  142. package/lib/components/color-picker/utils/color.cjs +1 -1
  143. package/lib/components/container/aside.vue.cjs +1 -0
  144. package/lib/components/container/aside.vue2.cjs +1 -0
  145. package/lib/components/container/container.vue.cjs +1 -0
  146. package/lib/components/container/container.vue2.cjs +1 -0
  147. package/lib/components/container/footer.vue.cjs +1 -0
  148. package/lib/components/container/footer.vue2.cjs +1 -0
  149. package/lib/components/container/header.vue.cjs +1 -0
  150. package/lib/components/container/header.vue2.cjs +1 -0
  151. package/lib/components/container/index.cjs +1 -0
  152. package/lib/components/container/main.vue.cjs +1 -0
  153. package/lib/components/container/main.vue2.cjs +1 -0
  154. package/lib/components/container/style/css.cjs +1 -0
  155. package/lib/components/container/style/index.cjs +1 -0
  156. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  157. package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -0
  158. package/lib/components/date-picker/composables/use-range-picker.cjs +1 -0
  159. package/lib/components/date-picker/composables/use-shortcut.cjs +1 -0
  160. package/lib/components/date-picker/constants.cjs +1 -0
  161. package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -0
  162. package/lib/components/date-picker/date-picker-com/basic-date-table.vue.cjs +1 -0
  163. package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -0
  164. package/lib/components/date-picker/date-picker-com/basic-month-table.vue.cjs +1 -0
  165. package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -0
  166. package/lib/components/date-picker/date-picker-com/basic-year-table.vue.cjs +1 -0
  167. package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -0
  168. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.cjs +1 -0
  169. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -0
  170. package/lib/components/date-picker/date-picker-com/panel-date-range.vue.cjs +1 -0
  171. package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -0
  172. package/lib/components/date-picker/date-picker-com/panel-month-range.vue.cjs +1 -0
  173. package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -0
  174. package/lib/components/date-picker/date-picker.cjs +1 -0
  175. package/lib/components/date-picker/date-picker.type.cjs +1 -0
  176. package/lib/components/date-picker/index.cjs +1 -0
  177. package/lib/components/date-picker/panel-utils.cjs +1 -0
  178. package/lib/components/date-picker/props/basic-cell.cjs +1 -0
  179. package/lib/components/date-picker/props/basic-date-table.cjs +1 -0
  180. package/lib/components/date-picker/props/basic-month-table.cjs +1 -0
  181. package/lib/components/date-picker/props/basic-year-table.cjs +1 -0
  182. package/lib/components/date-picker/props/date-picker.cjs +1 -0
  183. package/lib/components/date-picker/props/panel-date-pick.cjs +1 -0
  184. package/lib/components/date-picker/props/panel-date-range.cjs +1 -0
  185. package/lib/components/date-picker/props/panel-month-range.cjs +1 -0
  186. package/lib/components/date-picker/props/shared.cjs +1 -0
  187. package/lib/components/date-picker/style/css.cjs +1 -0
  188. package/lib/components/date-picker/style/index.cjs +1 -0
  189. package/lib/components/date-picker/utils.cjs +1 -0
  190. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  191. package/lib/components/date-time-select/style/index.cjs +1 -1
  192. package/lib/components/footer/style/css.cjs +1 -0
  193. package/lib/components/footer/style/index.cjs +1 -0
  194. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  195. package/lib/components/header/style/css.cjs +1 -0
  196. package/lib/components/header/style/index.cjs +1 -0
  197. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  198. package/lib/components/horizontal-menu/horizontal-menu.vue.cjs +1 -0
  199. package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -0
  200. package/lib/components/horizontal-menu/index.cjs +1 -0
  201. package/lib/components/horizontal-menu/style/css.cjs +1 -0
  202. package/lib/components/horizontal-menu/style/index.cjs +1 -0
  203. package/lib/components/index.cjs +1 -1
  204. package/lib/components/input/input.vue2.cjs +1 -1
  205. package/lib/components/link/link.vue2.cjs +1 -1
  206. package/lib/components/logo/logo.vue2.cjs +1 -1
  207. package/lib/components/main/style/css.cjs +1 -0
  208. package/lib/components/main/style/index.cjs +1 -0
  209. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  210. package/lib/components/md-container/toc.cjs +1 -1
  211. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  212. package/lib/components/menu/menu.vue2.cjs +1 -1
  213. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  214. package/lib/components/menu/utils/menu-item.cjs +1 -1
  215. package/lib/components/menu/utils/submenu.cjs +1 -1
  216. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  217. package/lib/components/result/result.vue2.cjs +1 -1
  218. package/lib/components/row/constants.cjs +1 -0
  219. package/lib/components/row/index.cjs +1 -0
  220. package/lib/components/row/row.vue.cjs +1 -0
  221. package/lib/components/row/row.vue2.cjs +1 -0
  222. package/lib/components/row/style/css.cjs +1 -0
  223. package/lib/components/row/style/index.cjs +1 -0
  224. package/lib/components/row/types.cjs +1 -0
  225. package/lib/components/search/search.vue2.cjs +1 -1
  226. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  227. package/lib/components/side-menu/use-drag-line.cjs +1 -1
  228. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  229. package/lib/components/time-picker/common/picker.vue.cjs +1 -0
  230. package/lib/components/time-picker/common/picker.vue2.cjs +1 -0
  231. package/lib/components/time-picker/common/props.cjs +1 -0
  232. package/lib/components/time-picker/composables/use-time-panel.cjs +1 -0
  233. package/lib/components/time-picker/composables/use-time-picker.cjs +1 -0
  234. package/lib/components/time-picker/constants.cjs +1 -0
  235. package/lib/components/time-picker/index.cjs +1 -0
  236. package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -0
  237. package/lib/components/time-picker/props/panel-time-picker.cjs +1 -0
  238. package/lib/components/time-picker/props/panel-time-range.cjs +1 -0
  239. package/lib/components/time-picker/props/shared.cjs +1 -0
  240. package/lib/components/time-picker/style/css.cjs +1 -0
  241. package/lib/components/time-picker/style/index.cjs +1 -0
  242. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.cjs +1 -0
  243. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -0
  244. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.cjs +1 -0
  245. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -0
  246. package/lib/components/time-picker/time-picker-com/panel-time-range.vue.cjs +1 -0
  247. package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -0
  248. package/lib/components/time-picker/time-picker.cjs +1 -0
  249. package/lib/components/time-picker/types.cjs +1 -0
  250. package/lib/components/time-picker/utils.cjs +1 -0
  251. package/lib/components/time-select/style/css.cjs +1 -0
  252. package/lib/components/time-select/style/index.cjs +1 -0
  253. package/lib/components/time-select/time-select.cjs +1 -0
  254. package/lib/components/time-select/time-select.vue.cjs +1 -0
  255. package/lib/components/time-select/time-select.vue2.cjs +1 -0
  256. package/lib/components/time-select/utils.cjs +1 -0
  257. package/lib/components/tooltip/index.cjs +1 -1
  258. package/lib/index.cjs +1 -1
  259. package/lib/package.json.cjs +1 -1
  260. package/package.json +7 -7
  261. package/tags.json +1 -1
  262. package/theme-style/base.css +1 -1
  263. package/theme-style/display.css +1 -0
  264. package/theme-style/index.css +1 -1
  265. package/theme-style/src/affix.scss +7 -0
  266. package/theme-style/src/aside.scss +8 -0
  267. package/theme-style/src/autocomplete.scss +83 -0
  268. package/theme-style/src/back-top.scss +7 -6
  269. package/theme-style/src/badge.scss +57 -0
  270. package/theme-style/src/breadcrumb-item.scss +0 -0
  271. package/theme-style/src/breadcrumb.scss +61 -0
  272. package/theme-style/src/calendar.scss +80 -0
  273. package/theme-style/src/card.scss +38 -0
  274. package/theme-style/src/carousel-item.scss +50 -0
  275. package/theme-style/src/carousel.scss +174 -0
  276. package/theme-style/src/cascader-panel.scss +138 -0
  277. package/theme-style/src/cascader.scss +216 -0
  278. package/theme-style/src/check-tag.scss +29 -0
  279. package/theme-style/src/col.scss +52 -0
  280. package/theme-style/src/collapse-item.scss +0 -0
  281. package/theme-style/src/collapse.scss +67 -0
  282. package/theme-style/src/color-picker.scss +2 -2
  283. package/theme-style/src/common/popup.scss +47 -0
  284. package/theme-style/src/common/var.scss +381 -6
  285. package/theme-style/src/container.scss +14 -0
  286. package/theme-style/src/date-picker/date-picker.scss +110 -0
  287. package/theme-style/src/date-picker/date-range-picker.scss +113 -0
  288. package/theme-style/src/date-picker/date-table.scss +162 -0
  289. package/theme-style/src/date-picker/month-table.scss +90 -0
  290. package/theme-style/src/date-picker/picker-panel.scss +131 -0
  291. package/theme-style/src/date-picker/picker.scss +210 -0
  292. package/theme-style/src/date-picker/time-picker.scss +90 -0
  293. package/theme-style/src/date-picker/time-range-picker.scss +33 -0
  294. package/theme-style/src/date-picker/time-spinner.scss +111 -0
  295. package/theme-style/src/date-picker/year-table.scss +60 -0
  296. package/theme-style/src/date-picker.scss +9 -0
  297. package/theme-style/src/date-time-select.scss +1 -1
  298. package/theme-style/src/display.scss +12 -0
  299. package/theme-style/src/drawer.scss +160 -0
  300. package/theme-style/src/footer-layout.scss +4 -9
  301. package/theme-style/src/footer.scss +11 -0
  302. package/theme-style/src/header-layout.scss +26 -15
  303. package/theme-style/src/header.scss +11 -0
  304. package/theme-style/src/horizontal-menu.scss +90 -0
  305. package/theme-style/src/icon.scss +6 -6
  306. package/theme-style/src/index.scss +123 -76
  307. package/theme-style/src/infinite-scroll.scss +0 -0
  308. package/theme-style/src/input-number.scss +175 -0
  309. package/theme-style/src/input.scss +2 -4
  310. package/theme-style/src/list-cell.scss +3 -3
  311. package/theme-style/src/loading.scss +1 -1
  312. package/theme-style/src/main.scss +10 -0
  313. package/theme-style/src/md/code.scss +3 -3
  314. package/theme-style/src/md/demo-block.scss +2 -2
  315. package/theme-style/src/md/pswp.scss +4 -4
  316. package/theme-style/src/md/scroll-bar.scss +1 -1
  317. package/theme-style/src/md/table.scss +3 -3
  318. package/theme-style/src/md/toc.scss +3 -3
  319. package/theme-style/src/md-container.scss +6 -8
  320. package/theme-style/src/menu.scss +43 -17
  321. package/theme-style/src/message-box.scss +258 -0
  322. package/theme-style/src/mixins/_col.scss +38 -0
  323. package/theme-style/src/mixins/mixins.scss +25 -0
  324. package/theme-style/src/notification.scss +105 -0
  325. package/theme-style/src/option.scss +36 -0
  326. package/theme-style/src/pagination.scss +0 -2
  327. package/theme-style/src/progress.scss +169 -0
  328. package/theme-style/src/rate.scss +101 -0
  329. package/theme-style/src/reset.scss +92 -0
  330. package/theme-style/src/row.scss +31 -0
  331. package/theme-style/src/search.scss +6 -5
  332. package/theme-style/src/select-dropdown.scss +2 -2
  333. package/theme-style/src/side-menu.scss +9 -3
  334. package/theme-style/src/slider.scss +211 -0
  335. package/theme-style/src/space.scss +20 -0
  336. package/theme-style/src/spinner.scss +43 -0
  337. package/theme-style/src/statistic.scss +35 -0
  338. package/theme-style/src/step.scss +316 -0
  339. package/theme-style/src/steps.scss +21 -0
  340. package/theme-style/src/tabs.scss +2 -2
  341. package/theme-style/src/time-picker.scss +5 -0
  342. package/theme-style/src/time-select.scss +37 -0
  343. package/theme-style/src/timeline-item.scss +85 -0
  344. package/theme-style/src/timeline.scss +46 -0
  345. package/theme-style/src/transfer.scss +206 -0
  346. package/theme-style/src/tree-select.scss +36 -0
  347. package/theme-style/src/tree.scss +131 -0
  348. package/theme-style/src/upload.scss +621 -0
  349. package/theme-style/vft-affix.css +1 -0
  350. package/theme-style/vft-aside.css +1 -0
  351. package/theme-style/vft-autocomplete.css +1 -0
  352. package/theme-style/vft-back-top.css +1 -1
  353. package/theme-style/vft-badge.css +1 -0
  354. package/theme-style/vft-breadcrumb-item.css +0 -0
  355. package/theme-style/vft-breadcrumb.css +1 -0
  356. package/theme-style/vft-calendar.css +1 -0
  357. package/theme-style/vft-card.css +1 -0
  358. package/theme-style/vft-carousel-item.css +1 -0
  359. package/theme-style/vft-carousel.css +1 -0
  360. package/theme-style/vft-cascader-panel.css +1 -0
  361. package/theme-style/vft-cascader.css +1 -0
  362. package/theme-style/vft-check-tag.css +1 -0
  363. package/theme-style/vft-col.css +1 -0
  364. package/theme-style/vft-collapse-item.css +0 -0
  365. package/theme-style/vft-collapse.css +1 -0
  366. package/theme-style/vft-color-picker.css +1 -1
  367. package/theme-style/vft-container.css +1 -0
  368. package/theme-style/vft-date-picker.css +1 -0
  369. package/theme-style/vft-drawer.css +1 -0
  370. package/theme-style/vft-footer-layout.css +1 -1
  371. package/theme-style/vft-footer.css +1 -0
  372. package/theme-style/vft-header-layout.css +1 -1
  373. package/theme-style/vft-header.css +1 -0
  374. package/theme-style/vft-horizontal-menu.css +1 -0
  375. package/theme-style/vft-infinite-scroll.css +0 -0
  376. package/theme-style/vft-input-number.css +1 -0
  377. package/theme-style/vft-main.css +1 -0
  378. package/theme-style/vft-md-container.css +1 -1
  379. package/theme-style/vft-menu.css +1 -1
  380. package/theme-style/vft-message-box.css +1 -0
  381. package/theme-style/vft-notification.css +1 -0
  382. package/theme-style/vft-option.css +1 -0
  383. package/theme-style/vft-pagination.css +1 -1
  384. package/theme-style/vft-progress.css +1 -0
  385. package/theme-style/vft-rate.css +1 -0
  386. package/theme-style/vft-reset.css +1 -0
  387. package/theme-style/vft-row.css +1 -0
  388. package/theme-style/vft-search.css +1 -1
  389. package/theme-style/vft-select-dropdown.css +1 -1
  390. package/theme-style/vft-select.css +1 -1
  391. package/theme-style/vft-side-menu.css +1 -1
  392. package/theme-style/vft-slider.css +1 -0
  393. package/theme-style/vft-space.css +1 -0
  394. package/theme-style/vft-spinner.css +1 -0
  395. package/theme-style/vft-statistic.css +1 -0
  396. package/theme-style/vft-step.css +1 -0
  397. package/theme-style/vft-steps.css +1 -0
  398. package/theme-style/vft-time-picker.css +1 -0
  399. package/theme-style/vft-time-select.css +1 -0
  400. package/theme-style/vft-timeline-item.css +1 -0
  401. package/theme-style/vft-timeline.css +1 -0
  402. package/theme-style/vft-transfer.css +1 -0
  403. package/theme-style/vft-tree-select.css +1 -0
  404. package/theme-style/vft-tree.css +1 -0
  405. package/theme-style/vft-upload.css +1 -0
  406. package/theme-style/vft-var.css +1 -1
  407. package/web-types.json +1 -1
  408. package/theme-style/src/md/list.scss +0 -21
package/es/index.js CHANGED
@@ -1,355 +1,400 @@
1
1
  import o from "./defaults.js";
2
2
  import { VftDivider as m } from "./components/divider/index.js";
3
- import { VftIcon as x, VftIcon as s } from "./components/icon/index.js";
3
+ import { VftIcon as x, VftIcon as i } from "./components/icon/index.js";
4
4
  import { VftAvatar as n } from "./components/avatar/index.js";
5
5
  import { VftEmpty as V } from "./components/empty/index.js";
6
6
  import { VftResult as u } from "./components/result/index.js";
7
- import { VftTabPane as g, VftTabs as C } from "./components/tabs/index.js";
8
- import { VftPopper as T } from "./components/popper/index.js";
9
- import { VftCollapseTransition as D } from "./components/collapse-transition/index.js";
10
- import { VftTooltip as E } from "./components/tooltip/index.js";
7
+ import { VftTabPane as C, VftTabs as g } from "./components/tabs/index.js";
8
+ import { VftPopper as I } from "./components/popper/index.js";
9
+ import { VftCollapseTransition as P } from "./components/collapse-transition/index.js";
10
+ import { VftTooltip as y } from "./components/tooltip/index.js";
11
11
  import { VftPopover as S } from "./components/popover/index.js";
12
- import { VftMenu as v, VftMenuItem as N, VftMenuItemGroup as h, VftSubMenu as w } from "./components/menu/index.js";
13
- import { createContextMenu as K, destroyContextMenu as L } from "./components/context-menu/createContextMenu.js";
14
- import { useContextMenu as G } from "./components/context-menu/useContextMenu.js";
15
- import { VftMultipleTabs as O } from "./components/multiple-tabs/index.js";
16
- import { VftHeaderLayout as A } from "./components/header-layout/index.js";
17
- import { VftFooterLayout as B } from "./components/footer-layout/index.js";
18
- import { VftIframeLayout as W } from "./components/iframe-layout/index.js";
19
- import { VftRouterViewContent as J } from "./components/router-view-content/index.js";
20
- import { VftLogo as Z } from "./components/logo/index.js";
21
- import { VftBackTop as Q } from "./components/back-top/index.js";
22
- import { VftConfigProvider as q } from "./components/config-provider/index.js";
23
- import { VftDescriptions as oo, VftDescriptionsItem as eo } from "./components/descriptions/index.js";
24
- import { VftFullScreen as to } from "./components/full-screen/index.js";
25
- import { VftIconText as po } from "./components/icon-text/index.js";
26
- import { VftImage as ao } from "./components/image/index.js";
27
- import { VftInput as so } from "./components/input/index.js";
28
- import { VftLink as no } from "./components/link/index.js";
29
- import { VftPagination as Vo } from "./components/pagination/index.js";
30
- import { VftTag as co } from "./components/tag/index.js";
31
- import { VftSideMenu as Co } from "./components/side-menu/index.js";
32
- import { VftQrcode as To } from "./components/qrcode/index.js";
33
- import { VftOverlay as Do } from "./components/overlay/index.js";
34
- import { VftClamp as Eo } from "./components/clamp/index.js";
35
- import { VftClampToggle as So } from "./components/clamp-toggle/index.js";
36
- import { VftPageWrapper as vo } from "./components/page-wrapper/index.js";
37
- import { VftException as ho } from "./components/exception/index.js";
38
- import { VftSearch as Fo } from "./components/search/index.js";
39
- import { VftForm as Lo, VftFormItem as _o } from "./components/form/index.js";
40
- import { VftButton as zo, VftButtonGroup as Oo } from "./components/button/index.js";
41
- import { VftCheckbox as Ao, VftCheckboxButton as ko, VftCheckboxGroup as Bo } from "./components/checkbox/index.js";
42
- import { VftRadio as Wo, VftRadioButton as jo, VftRadioGroup as Jo } from "./components/radio/index.js";
43
- import { VftSwitch as Zo } from "./components/switch/index.js";
44
- import { VftColorPicker as Qo } from "./components/color-picker/index.js";
45
- import { VftScrollbar as qo } from "./components/scrollbar/index.js";
46
- import { VftDropdown as oe, VftDropdownItem as ee, VftDropdownMenu as re } from "./components/dropdown/index.js";
47
- import { default as fe } from "./components/virtual-list/components/fixed-size-list.js";
48
- import { default as me } from "./components/virtual-list/components/dynamic-size-list.js";
49
- import { default as xe } from "./components/virtual-list/components/fixed-size-grid.js";
50
- import { default as ie } from "./components/virtual-list/components/dynamic-size-grid.js";
51
- import { virtualizedGridProps as le, virtualizedListProps as Ve, virtualizedProps as de, virtualizedScrollbarProps as ue } from "./components/virtual-list/props.js";
52
- import { VftSelectV2 as ge } from "./components/select-v2/index.js";
53
- import { VftVerifyCode as Ie } from "./components/verify-code/index.js";
54
- import { VftTable as ye } from "./components/table/index.js";
55
- import { VftImageViewer as Pe } from "./components/image-viewer/index.js";
56
- import { VftListCell as be } from "./components/list-cell/index.js";
57
- import { VftDialog as Me } from "./components/dialog/index.js";
58
- import { VftDateTimeSelect as Ne } from "./components/date-time-select/index.js";
59
- import { VftMdContainer as we } from "./components/md-container/index.js";
60
- import { VftMdComment as Ke } from "./components/md-comment/index.js";
61
- import { VftMdTabs as _e } from "./components/md-tabs/index.js";
62
- import { VftMdVuePlayground as ze } from "./components/md-vue-playground/index.js";
63
- import { VftMdCodeDemo as Re } from "./components/md-code-demo/index.js";
64
- import { VftMdCodeTabs as ke } from "./components/md-code-tabs/index.js";
65
- import { VftMessage as Ye, VftMessage as We } from "./components/message/index.js";
66
- import { VftLoading as Je } from "./components/loading/index.js";
67
- import { EVENT_CODE as Ze } from "./constants/aria.js";
68
- import { WEEK_DAYS as Qe, datePickTypes as Xe } from "./constants/date.js";
69
- import { CHANGE_EVENT as $e, INPUT_EVENT as or, UPDATE_MODEL_EVENT as er } from "./constants/event.js";
70
- import { INSTALLED_KEY as tr } from "./constants/key.js";
71
- import { componentSizeMap as pr, componentSizes as mr } from "./constants/size.js";
72
- import { _bem as xr, defaultNamespace as sr, namespaceContextKey as ir, useGetDerivedNamespace as nr, useNamespace as lr } from "./hooks/use-namespace/index.js";
73
- import { useCursor as dr } from "./hooks/use-cursor/index.js";
74
- import { usePopper as cr } from "./hooks/use-popper/index.js";
75
- import { defaultInitialZIndex as Cr, useZIndex as Ir, zIndexContextKey as Tr } from "./hooks/use-z-index/index.js";
76
- import { FORWARD_REF_INJECTION_KEY as Dr, useForwardRef as Pr, useForwardRefDirective as Er } from "./hooks/use-forward-ref/index.js";
77
- import { ID_INJECTION_KEY as Sr, useId as Mr, useIdInjection as vr } from "./hooks/use-id/index.js";
78
- import { usePopperContainer as hr, usePopperContainerId as wr } from "./hooks/use-popper-container/index.js";
79
- import { useDelayedToggle as Kr } from "./hooks/use-delayed-toggle/index.js";
80
- import { useTimeout as _r } from "./hooks/use-timeout/index.js";
81
- import { useOrderedChildren as zr } from "./hooks/use-ordered-children/index.js";
82
- import { createModelToggleComposable as Rr, useModelToggle as Ar, useModelToggleEmits as kr } from "./hooks/use-model-toggle/index.js";
83
- import { useProp as Yr } from "./hooks/use-prop/index.js";
84
- import { SIZE_INJECTION_KEY as jr, useGlobalSize as Jr } from "./hooks/use-size/index.js";
85
- import { useDraggable as Zr } from "./hooks/use-draggable/index.js";
86
- import { useLockscreen as Qr } from "./hooks/use-lockscreen/index.js";
87
- import { useSameTarget as qr } from "./hooks/use-same-target/index.js";
88
- import { withInstall as ot, withInstallDirective as et, withInstallFunction as rt, withNoopInstall as tt } from "./utils/vue/install.js";
89
- import { PatchFlags as pt, ensureOnlyChild as mt, flattedChildren as at, getFirstValidNode as xt, getNormalizedProps as st, isComment as it, isFragment as nt, isTemplate as lt, isText as Vt, isValidElementNode as dt, renderBlock as ut, renderIf as ct } from "./utils/vue/vnode.js";
90
- import { composeRefs as Ct } from "./utils/vue/refs.js";
91
- import { buildProp as Tt, buildProps as yt, definePropType as Dt, epPropKey as Pt, isEpProp as Et } from "./utils/vue/props/runtime.js";
92
- import { cAF as St, rAF as Mt } from "./utils/vue/raf.js";
93
- import { escapeStringRegexp as Nt } from "./utils/vue/data-helper.js";
94
- import { getSizeType as wt } from "./utils/helper.js";
95
- import { debugWarn as Kt, throwError as Lt } from "./utils/error.js";
96
- import { composeEventHandlers as Gt, whenMouse as zt } from "./utils/event.js";
97
- import { mutable as Rt } from "./utils/typescript.js";
98
- import { cssVarValue as kt, generateCssVars as Bt, primaryColor as Yt, setCssVar as Wt, setPrimaryColorCssvars as jt } from "./utils/ns-cover.js";
99
- import { getProp as Ht } from "./utils/objects.js";
100
- import { getClientXY as Ut, getOffsetTop as Qt, getOffsetTopDistance as Xt, isInContainer as qt } from "./utils/dom/position.js";
101
- import { getScrollBarWidth as of, getScrollContainer as ef, isScroll as rf, scrollIntoView as tf } from "./utils/dom/scroll.js";
102
- import { makeInstaller as pf } from "./make-installer.js";
103
- import { CompResolver as af } from "./comp-resolver.js";
104
- import { default as sf } from "dayjs";
105
- import { EmptyEnum as lf } from "./components/empty/constants.js";
106
- import { TabsRootContextKey as df } from "./components/tabs/types.js";
107
- import { default as cf } from "./components/popper/arrow.vue2.js";
108
- import { default as Cf } from "./components/popper/trigger.vue2.js";
109
- import { default as Tf } from "./components/popper/content.vue2.js";
110
- import { useTabDropdown as Df } from "./components/multiple-tabs/use/use-tab-dropdown.js";
111
- import { initAffixTabs as Ef, useTabsDrag as bf } from "./components/multiple-tabs/use/use-multiple-tabs.js";
112
- import { configProviderContextKey as Mf, messageConfig as vf } from "./components/config-provider/constants.js";
113
- import { provideGlobalConfig as hf, useGlobalComponentSettings as wf, useGlobalConfig as Ff } from "./components/config-provider/hooks/use-global-config.js";
114
- import { usePagination as Lf, vftPaginationKey as _f } from "./components/pagination/usePagination.js";
115
- import { formItemValidateStates as zf } from "./components/form/types.js";
116
- import { formContextKey as Rf, formItemContextKey as Af } from "./components/form/constants.js";
117
- import { useDisabled as Bf, useFormDisabled as Yf, useFormSize as Wf, useSize as jf } from "./components/form/hooks/use-form-common-props.js";
118
- import { useFormItem as Hf, useFormItemInputId as Zf } from "./components/form/hooks/use-form-item.js";
119
- import { buttonGroupContextKey as Qf } from "./components/button/constants.js";
120
- import { checkboxGroupContextKey as qf } from "./components/checkbox/constants.js";
121
- import { radioGroupKey as op } from "./components/radio/constants.js";
122
- import { BAR_MAP as rp, GAP as tp, renderThumbStyle as fp } from "./components/scrollbar/util.js";
123
- import { scrollbarContextKey as mp } from "./components/scrollbar/constants.js";
124
- import { DROPDOWN_INJECTION_KEY as xp } from "./components/dropdown/tokens.js";
125
- import { VftCollection as ip, VftCollectionItem as np } from "./components/dropdown/types.js";
126
- import { OnlyChild as Vp } from "./components/slot/only-child.js";
127
- import { default as up } from "./components/dropdown/dropdown-item-impl.vue.js";
128
- import { selectV2InjectionKey as gp } from "./components/select-v2/token.js";
129
- import { useDialog as Ip } from "./components/dialog/hooks/use-dialog.js";
130
- import { dialogInjectionKey as yp } from "./components/dialog/constants.js";
131
- import { messageDefaults as Pp, messageTypes as Ep } from "./components/message/types.js";
132
- import { vLoading as Sp, createLoadingDirective as Mp, vLoading as vp } from "./components/loading/directive.js";
133
- import { Loading as hp } from "./components/loading/service.js";
12
+ import { VftMenu as F, VftMenuItem as _, VftMenuItemGroup as N, VftSubMenu as v } from "./components/menu/index.js";
13
+ import { createContextMenu as K, destroyContextMenu as O } from "./components/context-menu/createContextMenu.js";
14
+ import { useContextMenu as R } from "./components/context-menu/useContextMenu.js";
15
+ import { VftMultipleTabs as h } from "./components/multiple-tabs/index.js";
16
+ import { VftHeaderLayout as z } from "./components/header-layout/index.js";
17
+ import { VftFooterLayout as Y } from "./components/footer-layout/index.js";
18
+ import { VftIframeLayout as J } from "./components/iframe-layout/index.js";
19
+ import { VftRouterViewContent as W } from "./components/router-view-content/index.js";
20
+ import { VftLogo as j } from "./components/logo/index.js";
21
+ import { VftBackTop as q } from "./components/back-top/index.js";
22
+ import { VftAside as X, VftContainer as $, VftFooter as oo, VftHeader as eo, VftMain as ro } from "./components/container/index.js";
23
+ import { VftConfigProvider as fo } from "./components/config-provider/index.js";
24
+ import { VftDescriptions as mo, VftDescriptionsItem as ao } from "./components/descriptions/index.js";
25
+ import { VftFullScreen as io } from "./components/full-screen/index.js";
26
+ import { VftIconText as no } from "./components/icon-text/index.js";
27
+ import { VftImage as Vo } from "./components/image/index.js";
28
+ import { VftInput as co } from "./components/input/index.js";
29
+ import { VftLink as go } from "./components/link/index.js";
30
+ import { VftPagination as Io } from "./components/pagination/index.js";
31
+ import { VftTag as Po } from "./components/tag/index.js";
32
+ import { VftSideMenu as yo } from "./components/side-menu/index.js";
33
+ import { VftQrcode as So } from "./components/qrcode/index.js";
34
+ import { VftOverlay as Fo } from "./components/overlay/index.js";
35
+ import { VftClamp as No } from "./components/clamp/index.js";
36
+ import { VftClampToggle as Lo } from "./components/clamp-toggle/index.js";
37
+ import { VftPageWrapper as Oo } from "./components/page-wrapper/index.js";
38
+ import { VftException as Ro } from "./components/exception/index.js";
39
+ import { VftSearch as ho } from "./components/search/index.js";
40
+ import { VftForm as zo, VftFormItem as Go } from "./components/form/index.js";
41
+ import { VftButton as Bo, VftButtonGroup as Jo } from "./components/button/index.js";
42
+ import { VftCheckbox as Wo, VftCheckboxButton as Ho, VftCheckboxGroup as jo } from "./components/checkbox/index.js";
43
+ import { VftRadio as qo, VftRadioButton as Qo, VftRadioGroup as Xo } from "./components/radio/index.js";
44
+ import { VftSwitch as oe } from "./components/switch/index.js";
45
+ import { VftColorPicker as re } from "./components/color-picker/index.js";
46
+ import { VftScrollbar as fe } from "./components/scrollbar/index.js";
47
+ import { VftDropdown as me, VftDropdownItem as ae, VftDropdownMenu as xe } from "./components/dropdown/index.js";
48
+ import { default as se } from "./components/virtual-list/components/fixed-size-list.js";
49
+ import { default as le } from "./components/virtual-list/components/dynamic-size-list.js";
50
+ import { default as de } from "./components/virtual-list/components/fixed-size-grid.js";
51
+ import { default as ce } from "./components/virtual-list/components/dynamic-size-grid.js";
52
+ import { virtualizedGridProps as ge, virtualizedListProps as Te, virtualizedProps as Ie, virtualizedScrollbarProps as Ee } from "./components/virtual-list/props.js";
53
+ import { VftSelectV2 as De } from "./components/select-v2/index.js";
54
+ import { VftVerifyCode as be } from "./components/verify-code/index.js";
55
+ import { VftTable as Me } from "./components/table/index.js";
56
+ import { VftImageViewer as _e } from "./components/image-viewer/index.js";
57
+ import { VftListCell as ve } from "./components/list-cell/index.js";
58
+ import { VftDialog as Ke } from "./components/dialog/index.js";
59
+ import { VftDateTimeSelect as Ae } from "./components/date-time-select/index.js";
60
+ import { VftCol as we } from "./components/col/index.js";
61
+ import { VftRow as ke } from "./components/row/index.js";
62
+ import { VftHorizontalMenu as Ge } from "./components/horizontal-menu/index.js";
63
+ import { VftTimePicker as Be } from "./components/time-picker/index.js";
64
+ import { VftDatePicker as Ue } from "./components/date-picker/index.js";
65
+ import { VftMdContainer as He } from "./components/md-container/index.js";
66
+ import { VftMdComment as Ze } from "./components/md-comment/index.js";
67
+ import { VftMdTabs as Qe } from "./components/md-tabs/index.js";
68
+ import { VftMdVuePlayground as $e } from "./components/md-vue-playground/index.js";
69
+ import { VftMdCodeDemo as er } from "./components/md-code-demo/index.js";
70
+ import { VftMdCodeTabs as tr } from "./components/md-code-tabs/index.js";
71
+ import { VftMessage as pr, VftMessage as mr } from "./components/message/index.js";
72
+ import { VftLoading as xr } from "./components/loading/index.js";
73
+ import { EVENT_CODE as sr } from "./constants/aria.js";
74
+ import { WEEK_DAYS as lr, datePickTypes as Vr } from "./constants/date.js";
75
+ import { CHANGE_EVENT as ur, INPUT_EVENT as cr, UPDATE_MODEL_EVENT as Cr } from "./constants/event.js";
76
+ import { INSTALLED_KEY as Tr } from "./constants/key.js";
77
+ import { componentSizeMap as Er, componentSizes as Pr } from "./constants/size.js";
78
+ import { _bem as yr, defaultNamespace as br, namespaceContextKey as Sr, useGetDerivedNamespace as Mr, useNamespace as Fr } from "./hooks/use-namespace/index.js";
79
+ import { useCursor as Nr } from "./hooks/use-cursor/index.js";
80
+ import { usePopper as Lr } from "./hooks/use-popper/index.js";
81
+ import { defaultInitialZIndex as Or, useZIndex as Ar, zIndexContextKey as Rr } from "./hooks/use-z-index/index.js";
82
+ import { FORWARD_REF_INJECTION_KEY as hr, useForwardRef as kr, useForwardRefDirective as zr } from "./hooks/use-forward-ref/index.js";
83
+ import { ID_INJECTION_KEY as Yr, useId as Br, useIdInjection as Jr } from "./hooks/use-id/index.js";
84
+ import { usePopperContainer as Wr, usePopperContainerId as Hr } from "./hooks/use-popper-container/index.js";
85
+ import { useDelayedToggle as Zr } from "./hooks/use-delayed-toggle/index.js";
86
+ import { useTimeout as Qr } from "./hooks/use-timeout/index.js";
87
+ import { useOrderedChildren as $r } from "./hooks/use-ordered-children/index.js";
88
+ import { createModelToggleComposable as et, useModelToggle as rt, useModelToggleEmits as tt } from "./hooks/use-model-toggle/index.js";
89
+ import { useProp as pt } from "./hooks/use-prop/index.js";
90
+ import { SIZE_INJECTION_KEY as at, useGlobalSize as xt } from "./hooks/use-size/index.js";
91
+ import { useDraggable as st } from "./hooks/use-draggable/index.js";
92
+ import { useLockscreen as lt } from "./hooks/use-lockscreen/index.js";
93
+ import { useSameTarget as dt } from "./hooks/use-same-target/index.js";
94
+ import { withInstall as ct, withInstallDirective as Ct, withInstallFunction as gt, withNoopInstall as Tt } from "./utils/vue/install.js";
95
+ import { PatchFlags as Et, ensureOnlyChild as Pt, flattedChildren as Dt, getFirstValidNode as yt, getNormalizedProps as bt, isComment as St, isFragment as Mt, isTemplate as Ft, isText as _t, isValidElementNode as Nt, renderBlock as vt, renderIf as Lt } from "./utils/vue/vnode.js";
96
+ import { composeRefs as Ot } from "./utils/vue/refs.js";
97
+ import { buildProp as Rt, buildProps as wt, definePropType as ht, epPropKey as kt, isEpProp as zt } from "./utils/vue/props/runtime.js";
98
+ import { cAF as Yt, rAF as Bt } from "./utils/vue/raf.js";
99
+ import { escapeStringRegexp as Ut } from "./utils/vue/data-helper.js";
100
+ import { getSizeType as Ht } from "./utils/helper.js";
101
+ import { debugWarn as Zt, throwError as qt } from "./utils/error.js";
102
+ import { composeEventHandlers as Xt, whenMouse as $t } from "./utils/event.js";
103
+ import { mutable as ef } from "./utils/typescript.js";
104
+ import { cssVarValue as tf, generateCssVars as ff, primaryColor as pf, setCssVar as mf, setPrimaryColorCssvars as af } from "./utils/ns-cover.js";
105
+ import { getProp as sf } from "./utils/objects.js";
106
+ import { getClientXY as lf, getOffsetTop as Vf, getOffsetTopDistance as df, isInContainer as uf } from "./utils/dom/position.js";
107
+ import { getScrollBarWidth as Cf, getScrollContainer as gf, isScroll as Tf, scrollIntoView as If } from "./utils/dom/scroll.js";
108
+ import { makeInstaller as Pf } from "./make-installer.js";
109
+ import { CompResolver as yf } from "./comp-resolver.js";
110
+ import { default as Sf } from "dayjs";
111
+ import { EmptyEnum as Ff } from "./components/empty/constants.js";
112
+ import { TabsRootContextKey as Nf } from "./components/tabs/types.js";
113
+ import { default as Lf } from "./components/popper/arrow.vue2.js";
114
+ import { default as Of } from "./components/popper/trigger.vue2.js";
115
+ import { default as Rf } from "./components/popper/content.vue2.js";
116
+ import { TOOLTIP_INJECTION_KEY as hf } from "./components/tooltip/constants.js";
117
+ import { useTabDropdown as zf } from "./components/multiple-tabs/use/use-tab-dropdown.js";
118
+ import { initAffixTabs as Yf, useTabsDrag as Bf } from "./components/multiple-tabs/use/use-multiple-tabs.js";
119
+ import { configProviderContextKey as Uf, messageConfig as Wf } from "./components/config-provider/constants.js";
120
+ import { provideGlobalConfig as jf, useGlobalComponentSettings as Zf, useGlobalConfig as qf } from "./components/config-provider/hooks/use-global-config.js";
121
+ import { usePagination as Xf, vftPaginationKey as $f } from "./components/pagination/usePagination.js";
122
+ import { formItemValidateStates as ep } from "./components/form/types.js";
123
+ import { formContextKey as tp, formItemContextKey as fp } from "./components/form/constants.js";
124
+ import { useDisabled as mp, useFormDisabled as ap, useFormSize as xp, useSize as ip } from "./components/form/hooks/use-form-common-props.js";
125
+ import { useFormItem as np, useFormItemInputId as lp } from "./components/form/hooks/use-form-item.js";
126
+ import { buttonGroupContextKey as dp } from "./components/button/constants.js";
127
+ import { checkboxGroupContextKey as cp } from "./components/checkbox/constants.js";
128
+ import { radioGroupKey as gp } from "./components/radio/constants.js";
129
+ import { BAR_MAP as Ip, GAP as Ep, renderThumbStyle as Pp } from "./components/scrollbar/util.js";
130
+ import { scrollbarContextKey as yp } from "./components/scrollbar/constants.js";
131
+ import { DROPDOWN_INJECTION_KEY as Sp } from "./components/dropdown/tokens.js";
132
+ import { VftCollection as Fp, VftCollectionItem as _p } from "./components/dropdown/types.js";
133
+ import { OnlyChild as vp } from "./components/slot/only-child.js";
134
+ import { default as Kp } from "./components/dropdown/dropdown-item-impl.vue.js";
135
+ import { selectV2InjectionKey as Ap } from "./components/select-v2/token.js";
136
+ import { useDialog as wp } from "./components/dialog/hooks/use-dialog.js";
137
+ import { dialogInjectionKey as kp } from "./components/dialog/constants.js";
138
+ import { rowContextKey as Gp } from "./components/row/constants.js";
139
+ import { buildTimeList as Bp, dateEquals as Jp, extractDateFormat as Up, extractTimeFormat as Wp, formatter as Hp, makeList as jp, parseDate as Zp, rangeArr as qp, valueEquals as Qp } from "./components/time-picker/utils.js";
140
+ import { DEFAULT_FORMATS_DATE as $p, DEFAULT_FORMATS_DATEPICKER as om, DEFAULT_FORMATS_TIME as em, timeUnits as rm } from "./components/time-picker/constants.js";
141
+ import { timePickerDefaultProps as fm } from "./components/time-picker/common/props.js";
142
+ import { default as mm } from "./components/time-picker/common/picker.vue2.js";
143
+ import { default as xm } from "./components/time-picker/time-picker-com/panel-time-pick.vue2.js";
144
+ import { ROOT_PICKER_INJECTION_KEY as sm } from "./components/date-picker/constants.js";
145
+ import { datePickerProps as lm } from "./components/date-picker/props/date-picker.js";
146
+ import { messageDefaults as dm, messageTypes as um } from "./components/message/types.js";
147
+ import { vLoading as Cm, createLoadingDirective as gm, vLoading as Tm } from "./components/loading/directive.js";
148
+ import { Loading as Em } from "./components/loading/service.js";
134
149
  const r = o.install, t = o.version;
135
150
  export {
136
- rp as BAR_MAP,
137
- $e as CHANGE_EVENT,
138
- af as CompResolver,
139
- xp as DROPDOWN_INJECTION_KEY,
140
- ie as DynamicSizeGrid,
141
- me as DynamicSizeList,
142
- Ze as EVENT_CODE,
143
- lf as EmptyEnum,
144
- Dr as FORWARD_REF_INJECTION_KEY,
145
- xe as FixedSizeGrid,
146
- fe as FixedSizeList,
147
- tp as GAP,
148
- Sr as ID_INJECTION_KEY,
149
- or as INPUT_EVENT,
150
- tr as INSTALLED_KEY,
151
+ Ip as BAR_MAP,
152
+ ur as CHANGE_EVENT,
153
+ mm as CommonPicker,
154
+ yf as CompResolver,
155
+ $p as DEFAULT_FORMATS_DATE,
156
+ om as DEFAULT_FORMATS_DATEPICKER,
157
+ em as DEFAULT_FORMATS_TIME,
158
+ Sp as DROPDOWN_INJECTION_KEY,
159
+ ce as DynamicSizeGrid,
160
+ le as DynamicSizeList,
161
+ sr as EVENT_CODE,
162
+ Ff as EmptyEnum,
163
+ hr as FORWARD_REF_INJECTION_KEY,
164
+ de as FixedSizeGrid,
165
+ se as FixedSizeList,
166
+ Ep as GAP,
167
+ Yr as ID_INJECTION_KEY,
168
+ cr as INPUT_EVENT,
169
+ Tr as INSTALLED_KEY,
151
170
  x as Icon,
152
- Ye as Message,
153
- pt as PatchFlags,
154
- jr as SIZE_INJECTION_KEY,
155
- df as TabsRootContextKey,
156
- er as UPDATE_MODEL_EVENT,
171
+ pr as Message,
172
+ Et as PatchFlags,
173
+ sm as ROOT_PICKER_INJECTION_KEY,
174
+ at as SIZE_INJECTION_KEY,
175
+ hf as TOOLTIP_INJECTION_KEY,
176
+ Nf as TabsRootContextKey,
177
+ xm as TimePickPanel,
178
+ Cr as UPDATE_MODEL_EVENT,
179
+ X as VftAside,
157
180
  n as VftAvatar,
158
- Q as VftBackTop,
159
- zo as VftButton,
160
- Oo as VftButtonGroup,
161
- Ao as VftCheckbox,
162
- ko as VftCheckboxButton,
163
- Bo as VftCheckboxGroup,
164
- Eo as VftClamp,
165
- So as VftClampToggle,
166
- D as VftCollapseTransition,
167
- Qo as VftColorPicker,
168
- q as VftConfigProvider,
169
- Ne as VftDateTimeSelect,
170
- oo as VftDescriptions,
171
- eo as VftDescriptionsItem,
172
- Me as VftDialog,
181
+ q as VftBackTop,
182
+ Bo as VftButton,
183
+ Jo as VftButtonGroup,
184
+ Wo as VftCheckbox,
185
+ Ho as VftCheckboxButton,
186
+ jo as VftCheckboxGroup,
187
+ No as VftClamp,
188
+ Lo as VftClampToggle,
189
+ we as VftCol,
190
+ P as VftCollapseTransition,
191
+ re as VftColorPicker,
192
+ fo as VftConfigProvider,
193
+ $ as VftContainer,
194
+ Ue as VftDatePicker,
195
+ Ae as VftDateTimeSelect,
196
+ mo as VftDescriptions,
197
+ ao as VftDescriptionsItem,
198
+ Ke as VftDialog,
173
199
  m as VftDivider,
174
- oe as VftDropdown,
175
- ip as VftDropdownCollection,
176
- np as VftDropdownCollectionItem,
177
- ee as VftDropdownItem,
178
- up as VftDropdownItemImpl,
179
- re as VftDropdownMenu,
200
+ me as VftDropdown,
201
+ Fp as VftDropdownCollection,
202
+ _p as VftDropdownCollectionItem,
203
+ ae as VftDropdownItem,
204
+ Kp as VftDropdownItemImpl,
205
+ xe as VftDropdownMenu,
180
206
  V as VftEmpty,
181
- ho as VftException,
182
- B as VftFooterLayout,
183
- Lo as VftForm,
184
- _o as VftFormItem,
185
- to as VftFullScreen,
186
- A as VftHeaderLayout,
187
- s as VftIcon,
188
- po as VftIconText,
189
- W as VftIframeLayout,
190
- ao as VftImage,
191
- Pe as VftImageViewer,
192
- so as VftInput,
193
- no as VftLink,
194
- be as VftListCell,
195
- Je as VftLoading,
196
- Sp as VftLoadingDirective,
197
- hp as VftLoadingService,
198
- Z as VftLogo,
199
- Re as VftMdCodeDemo,
200
- ke as VftMdCodeTabs,
201
- Ke as VftMdComment,
202
- we as VftMdContainer,
203
- _e as VftMdTabs,
204
- ze as VftMdVuePlayground,
205
- v as VftMenu,
206
- N as VftMenuItem,
207
- h as VftMenuItemGroup,
208
- We as VftMessage,
209
- O as VftMultipleTabs,
210
- Vp as VftOnlyChild,
211
- Do as VftOverlay,
212
- vo as VftPageWrapper,
213
- Vo as VftPagination,
207
+ Ro as VftException,
208
+ oo as VftFooter,
209
+ Y as VftFooterLayout,
210
+ zo as VftForm,
211
+ Go as VftFormItem,
212
+ io as VftFullScreen,
213
+ eo as VftHeader,
214
+ z as VftHeaderLayout,
215
+ Ge as VftHorizontalMenu,
216
+ i as VftIcon,
217
+ no as VftIconText,
218
+ J as VftIframeLayout,
219
+ Vo as VftImage,
220
+ _e as VftImageViewer,
221
+ co as VftInput,
222
+ go as VftLink,
223
+ ve as VftListCell,
224
+ xr as VftLoading,
225
+ Cm as VftLoadingDirective,
226
+ Em as VftLoadingService,
227
+ j as VftLogo,
228
+ ro as VftMain,
229
+ er as VftMdCodeDemo,
230
+ tr as VftMdCodeTabs,
231
+ Ze as VftMdComment,
232
+ He as VftMdContainer,
233
+ Qe as VftMdTabs,
234
+ $e as VftMdVuePlayground,
235
+ F as VftMenu,
236
+ _ as VftMenuItem,
237
+ N as VftMenuItemGroup,
238
+ mr as VftMessage,
239
+ h as VftMultipleTabs,
240
+ vp as VftOnlyChild,
241
+ Fo as VftOverlay,
242
+ Oo as VftPageWrapper,
243
+ Io as VftPagination,
214
244
  S as VftPopover,
215
- T as VftPopper,
216
- cf as VftPopperArrow,
217
- Tf as VftPopperContent,
218
- Cf as VftPopperTrigger,
219
- To as VftQrcode,
220
- Wo as VftRadio,
221
- jo as VftRadioButton,
222
- Jo as VftRadioGroup,
245
+ I as VftPopper,
246
+ Lf as VftPopperArrow,
247
+ Rf as VftPopperContent,
248
+ Of as VftPopperTrigger,
249
+ So as VftQrcode,
250
+ qo as VftRadio,
251
+ Qo as VftRadioButton,
252
+ Xo as VftRadioGroup,
223
253
  u as VftResult,
224
- J as VftRouterViewContent,
225
- qo as VftScrollbar,
226
- Fo as VftSearch,
227
- ge as VftSelectV2,
228
- Co as VftSideMenu,
229
- w as VftSubMenu,
230
- Zo as VftSwitch,
231
- g as VftTabPane,
232
- ye as VftTable,
233
- C as VftTabs,
234
- co as VftTag,
235
- E as VftTooltip,
236
- Ie as VftVerifyCode,
237
- Qe as WEEK_DAYS,
238
- xr as _bem,
239
- Tt as buildProp,
240
- yt as buildProps,
241
- Qf as buttonGroupContextKey,
242
- St as cAF,
243
- qf as checkboxGroupContextKey,
244
- pr as componentSizeMap,
245
- mr as componentSizes,
246
- Gt as composeEventHandlers,
247
- Ct as composeRefs,
248
- Mf as configProviderContextKey,
254
+ W as VftRouterViewContent,
255
+ ke as VftRow,
256
+ fe as VftScrollbar,
257
+ ho as VftSearch,
258
+ De as VftSelectV2,
259
+ yo as VftSideMenu,
260
+ v as VftSubMenu,
261
+ oe as VftSwitch,
262
+ C as VftTabPane,
263
+ Me as VftTable,
264
+ g as VftTabs,
265
+ Po as VftTag,
266
+ Be as VftTimePicker,
267
+ y as VftTooltip,
268
+ be as VftVerifyCode,
269
+ lr as WEEK_DAYS,
270
+ yr as _bem,
271
+ Rt as buildProp,
272
+ wt as buildProps,
273
+ Bp as buildTimeList,
274
+ dp as buttonGroupContextKey,
275
+ Yt as cAF,
276
+ cp as checkboxGroupContextKey,
277
+ Er as componentSizeMap,
278
+ Pr as componentSizes,
279
+ Xt as composeEventHandlers,
280
+ Ot as composeRefs,
281
+ Uf as configProviderContextKey,
249
282
  K as createContextMenu,
250
- Mp as createLoadingDirective,
251
- Rr as createModelToggleComposable,
252
- kt as cssVarValue,
253
- Xe as datePickTypes,
254
- sf as dayjs,
255
- Kt as debugWarn,
283
+ gm as createLoadingDirective,
284
+ et as createModelToggleComposable,
285
+ tf as cssVarValue,
286
+ Jp as dateEquals,
287
+ Vr as datePickTypes,
288
+ lm as datePickerProps,
289
+ Sf as dayjs,
290
+ Zt as debugWarn,
256
291
  o as default,
257
- Cr as defaultInitialZIndex,
258
- sr as defaultNamespace,
259
- Dt as definePropType,
260
- L as destroyContextMenu,
261
- yp as dialogInjectionKey,
262
- mt as ensureOnlyChild,
263
- Pt as epPropKey,
264
- Nt as escapeStringRegexp,
265
- at as flattedChildren,
266
- Rf as formContextKey,
267
- Af as formItemContextKey,
268
- zf as formItemValidateStates,
269
- Bt as generateCssVars,
270
- Ut as getClientXY,
271
- xt as getFirstValidNode,
272
- st as getNormalizedProps,
273
- Qt as getOffsetTop,
274
- Xt as getOffsetTopDistance,
275
- Ht as getProp,
276
- of as getScrollBarWidth,
277
- ef as getScrollContainer,
278
- wt as getSizeType,
279
- Ef as initAffixTabs,
292
+ Or as defaultInitialZIndex,
293
+ br as defaultNamespace,
294
+ ht as definePropType,
295
+ O as destroyContextMenu,
296
+ kp as dialogInjectionKey,
297
+ Pt as ensureOnlyChild,
298
+ kt as epPropKey,
299
+ Ut as escapeStringRegexp,
300
+ Up as extractDateFormat,
301
+ Wp as extractTimeFormat,
302
+ Dt as flattedChildren,
303
+ tp as formContextKey,
304
+ fp as formItemContextKey,
305
+ ep as formItemValidateStates,
306
+ Hp as formatter,
307
+ ff as generateCssVars,
308
+ lf as getClientXY,
309
+ yt as getFirstValidNode,
310
+ bt as getNormalizedProps,
311
+ Vf as getOffsetTop,
312
+ df as getOffsetTopDistance,
313
+ sf as getProp,
314
+ Cf as getScrollBarWidth,
315
+ gf as getScrollContainer,
316
+ Ht as getSizeType,
317
+ Yf as initAffixTabs,
280
318
  r as install,
281
- it as isComment,
282
- Et as isEpProp,
283
- nt as isFragment,
284
- qt as isInContainer,
285
- rf as isScroll,
286
- lt as isTemplate,
287
- Vt as isText,
288
- dt as isValidElementNode,
289
- pf as makeInstaller,
290
- vf as messageConfig,
291
- Pp as messageDefaults,
292
- Ep as messageTypes,
293
- Rt as mutable,
294
- ir as namespaceContextKey,
295
- Yt as primaryColor,
296
- hf as provideGlobalConfig,
297
- Mt as rAF,
298
- op as radioGroupKey,
299
- ut as renderBlock,
300
- ct as renderIf,
301
- fp as renderThumbStyle,
302
- tf as scrollIntoView,
303
- mp as scrollbarContextKey,
304
- gp as selectV2InjectionKey,
305
- Wt as setCssVar,
306
- jt as setPrimaryColorCssvars,
307
- Lt as throwError,
308
- G as useContextMenu,
309
- dr as useCursor,
310
- Kr as useDelayedToggle,
311
- Ip as useDialog,
312
- Bf as useDisabled,
313
- Zr as useDraggable,
314
- Yf as useFormDisabled,
315
- Hf as useFormItem,
316
- Zf as useFormItemInputId,
317
- Wf as useFormSize,
318
- Pr as useForwardRef,
319
- Er as useForwardRefDirective,
320
- nr as useGetDerivedNamespace,
321
- wf as useGlobalComponentSettings,
322
- Ff as useGlobalConfig,
323
- Jr as useGlobalSize,
324
- Mr as useId,
325
- vr as useIdInjection,
326
- Qr as useLockscreen,
327
- Ar as useModelToggle,
328
- kr as useModelToggleEmits,
329
- lr as useNamespace,
330
- zr as useOrderedChildren,
331
- Lf as usePagination,
332
- cr as usePopper,
333
- hr as usePopperContainer,
334
- wr as usePopperContainerId,
335
- Yr as useProp,
336
- qr as useSameTarget,
337
- jf as useSize,
338
- Df as useTabDropdown,
339
- bf as useTabsDrag,
340
- _r as useTimeout,
341
- Ir as useZIndex,
342
- vp as vLoading,
319
+ St as isComment,
320
+ zt as isEpProp,
321
+ Mt as isFragment,
322
+ uf as isInContainer,
323
+ Tf as isScroll,
324
+ Ft as isTemplate,
325
+ _t as isText,
326
+ Nt as isValidElementNode,
327
+ Pf as makeInstaller,
328
+ jp as makeList,
329
+ Wf as messageConfig,
330
+ dm as messageDefaults,
331
+ um as messageTypes,
332
+ ef as mutable,
333
+ Sr as namespaceContextKey,
334
+ Zp as parseDate,
335
+ pf as primaryColor,
336
+ jf as provideGlobalConfig,
337
+ Bt as rAF,
338
+ gp as radioGroupKey,
339
+ qp as rangeArr,
340
+ vt as renderBlock,
341
+ Lt as renderIf,
342
+ Pp as renderThumbStyle,
343
+ Gp as rowContextKey,
344
+ If as scrollIntoView,
345
+ yp as scrollbarContextKey,
346
+ Ap as selectV2InjectionKey,
347
+ mf as setCssVar,
348
+ af as setPrimaryColorCssvars,
349
+ qt as throwError,
350
+ fm as timePickerDefaultProps,
351
+ rm as timeUnits,
352
+ R as useContextMenu,
353
+ Nr as useCursor,
354
+ Zr as useDelayedToggle,
355
+ wp as useDialog,
356
+ mp as useDisabled,
357
+ st as useDraggable,
358
+ ap as useFormDisabled,
359
+ np as useFormItem,
360
+ lp as useFormItemInputId,
361
+ xp as useFormSize,
362
+ kr as useForwardRef,
363
+ zr as useForwardRefDirective,
364
+ Mr as useGetDerivedNamespace,
365
+ Zf as useGlobalComponentSettings,
366
+ qf as useGlobalConfig,
367
+ xt as useGlobalSize,
368
+ Br as useId,
369
+ Jr as useIdInjection,
370
+ lt as useLockscreen,
371
+ rt as useModelToggle,
372
+ tt as useModelToggleEmits,
373
+ Fr as useNamespace,
374
+ $r as useOrderedChildren,
375
+ Xf as usePagination,
376
+ Lr as usePopper,
377
+ Wr as usePopperContainer,
378
+ Hr as usePopperContainerId,
379
+ pt as useProp,
380
+ dt as useSameTarget,
381
+ ip as useSize,
382
+ zf as useTabDropdown,
383
+ Bf as useTabsDrag,
384
+ Qr as useTimeout,
385
+ Ar as useZIndex,
386
+ Tm as vLoading,
387
+ Qp as valueEquals,
343
388
  t as version,
344
- _f as vftPaginationKey,
345
- le as virtualizedGridProps,
346
- Ve as virtualizedListProps,
347
- de as virtualizedProps,
348
- ue as virtualizedScrollbarProps,
349
- zt as whenMouse,
350
- ot as withInstall,
351
- et as withInstallDirective,
352
- rt as withInstallFunction,
353
- tt as withNoopInstall,
354
- Tr as zIndexContextKey
389
+ $f as vftPaginationKey,
390
+ ge as virtualizedGridProps,
391
+ Te as virtualizedListProps,
392
+ Ie as virtualizedProps,
393
+ Ee as virtualizedScrollbarProps,
394
+ $t as whenMouse,
395
+ ct as withInstall,
396
+ Ct as withInstallDirective,
397
+ gt as withInstallFunction,
398
+ Tt as withNoopInstall,
399
+ Rr as zIndexContextKey
355
400
  };