vft 0.0.73 → 0.0.76

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 (369) hide show
  1. package/attributes.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/es/component.js +67 -48
  4. package/es/components/affix/affix.js +45 -0
  5. package/es/components/affix/affix.vue.js +4 -0
  6. package/es/components/affix/affix.vue2.js +83 -0
  7. package/es/components/affix/index.js +12 -0
  8. package/es/components/affix/style/css.js +2 -0
  9. package/es/components/affix/style/index.js +2 -0
  10. package/es/components/back-top/back-top.vue2.js +10 -2
  11. package/es/components/button/button.vue2.js +58 -59
  12. package/es/components/button/use-button.js +26 -20
  13. package/es/components/card/card.vue.js +4 -0
  14. package/es/components/card/card.vue2.js +44 -0
  15. package/es/components/card/index.js +12 -0
  16. package/es/components/card/instance.js +1 -0
  17. package/es/components/card/style/css.js +2 -0
  18. package/es/components/card/style/index.js +2 -0
  19. package/es/components/check-tag/check-tag.vue.js +4 -0
  20. package/es/components/check-tag/check-tag.vue2.js +35 -0
  21. package/es/components/check-tag/index.js +12 -0
  22. package/es/components/check-tag/style/css.js +2 -0
  23. package/es/components/check-tag/style/index.js +2 -0
  24. package/es/components/color-picker/color-picker.vue2.js +1 -1
  25. package/es/components/context-menu/context-menu.vue2.js +10 -2
  26. package/es/components/date-picker/composables/use-month-range-header.js +1 -1
  27. package/es/components/date-picker/constants.js +16 -2
  28. package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +37 -34
  29. package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +0 -1
  30. package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +177 -178
  31. package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +328 -336
  32. package/es/components/date-picker/date-picker.js +18 -18
  33. package/es/components/date-picker/index.js +5 -4
  34. package/es/components/date-picker/props/shared.js +1 -1
  35. package/es/components/date-time-select/date-time-select.vue2.js +59 -59
  36. package/es/components/dialog/dialog.vue2.js +12 -12
  37. package/es/components/dialog/hooks/use-dialog.js +4 -4
  38. package/es/components/dropdown/dropdown-menu.vue2.js +4 -4
  39. package/es/components/footer-layout/footer-layout.vue2.js +10 -2
  40. package/es/components/header-layout/header-layout.vue2.js +10 -2
  41. package/es/components/horizontal-menu/constants.js +4 -0
  42. package/es/components/horizontal-menu/horizontal-menu.vue2.js +153 -86
  43. package/es/components/horizontal-menu/index.js +7 -5
  44. package/es/components/index.js +228 -194
  45. package/es/components/md-container/md-container.vue2.js +10 -2
  46. package/es/components/menu/menu-item.vue2.js +58 -58
  47. package/es/components/menu/menu.vue2.js +72 -68
  48. package/es/components/menu/sub-menu.vue2.js +139 -117
  49. package/es/components/multiple-tabs/multiple-tabs.vue2.js +35 -26
  50. package/es/components/option/style/css.js +2 -0
  51. package/es/components/option/style/index.js +2 -0
  52. package/es/components/option-group/style/css.js +2 -0
  53. package/es/components/option-group/style/index.js +2 -0
  54. package/es/components/popconfirm/index.js +12 -0
  55. package/es/components/popconfirm/popconfirm.vue.js +4 -0
  56. package/es/components/popconfirm/popconfirm.vue2.js +112 -0
  57. package/es/components/popconfirm/style/css.js +6 -0
  58. package/es/components/popconfirm/style/index.js +6 -0
  59. package/es/components/popover/style/index.js +1 -1
  60. package/es/components/result/result.vue2.js +10 -2
  61. package/es/components/roving-focus-group/roving-focus-item.vue2.js +1 -1
  62. package/es/components/search/style/css.js +2 -0
  63. package/es/components/search/style/index.js +2 -0
  64. package/es/components/select/index.js +22 -0
  65. package/es/components/select/option-group.vue.js +25 -0
  66. package/es/components/select/option-group.vue2.js +53 -0
  67. package/es/components/select/option.vue.js +27 -0
  68. package/es/components/select/option.vue2.js +58 -0
  69. package/es/components/select/options.js +34 -0
  70. package/es/components/select/select-dropdown.vue.js +15 -0
  71. package/es/components/select/select-dropdown.vue2.js +32 -0
  72. package/es/components/select/select.vue.js +327 -0
  73. package/es/components/select/select.vue2.js +348 -0
  74. package/es/components/select/style/css.js +8 -0
  75. package/es/components/select/style/index.js +8 -0
  76. package/es/components/select/token.js +5 -0
  77. package/es/components/select/useOption.js +71 -0
  78. package/es/components/select/useSelect.js +414 -0
  79. package/es/components/select-v2/select-dropdown.js +1 -1
  80. package/es/components/select-v2/useSelect.js +269 -269
  81. package/es/components/side-menu/side-menu.vue2.js +153 -142
  82. package/es/components/skeleton/index.js +16 -0
  83. package/es/components/skeleton/skeleton-item.vue.js +4 -0
  84. package/es/components/skeleton/skeleton-item.vue2.js +31 -0
  85. package/es/components/skeleton/skeleton.vue.js +4 -0
  86. package/es/components/skeleton/skeleton.vue2.js +55 -0
  87. package/es/components/skeleton/style/css.js +3 -0
  88. package/es/components/skeleton/style/index.js +3 -0
  89. package/es/components/skeleton-item/style/css.js +2 -0
  90. package/es/components/skeleton-item/style/index.js +2 -0
  91. package/es/components/space/index.js +17 -0
  92. package/es/components/space/item.js +24 -0
  93. package/es/components/space/space.js +182 -0
  94. package/es/components/space/style/css.js +2 -0
  95. package/es/components/space/style/index.js +2 -0
  96. package/es/components/space/use-space.js +44 -0
  97. package/es/components/switch/switch.vue2.js +1 -1
  98. package/es/components/tabs/tab-nav.vue2.js +30 -22
  99. package/es/components/tabs/tabs.vue2.js +37 -37
  100. package/es/components/time-picker/common/picker.vue2.js +241 -257
  101. package/es/components/time-picker/common/props.js +10 -6
  102. package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +1 -1
  103. package/es/components/time-picker/time-picker.js +10 -10
  104. package/es/components/time-select/time-select.vue2.js +38 -42
  105. package/es/components/tooltip/content.vue2.js +1 -1
  106. package/es/components/tree/index.js +14 -0
  107. package/es/components/tree/model/node.js +248 -0
  108. package/es/components/tree/model/tree-store.js +197 -0
  109. package/es/components/tree/model/useDragNode.js +71 -0
  110. package/es/components/tree/model/useKeydown.js +81 -0
  111. package/es/components/tree/model/useNodeExpandEventBroadcast.js +19 -0
  112. package/es/components/tree/model/util.js +21 -0
  113. package/es/components/tree/style/css.js +3 -0
  114. package/es/components/tree/style/index.js +3 -0
  115. package/es/components/tree/tree-node-content.vue.js +4 -0
  116. package/es/components/tree/tree-node-content.vue2.js +28 -0
  117. package/es/components/tree/tree-node.vue.js +98 -0
  118. package/es/components/tree/tree-node.vue2.js +152 -0
  119. package/es/components/tree/tree.type.js +1 -0
  120. package/es/components/tree/tree.vue.js +48 -0
  121. package/es/components/tree/tree.vue2.js +268 -0
  122. package/es/components/tree-select/cache-options.js +32 -0
  123. package/es/components/tree-select/index.js +9 -0
  124. package/es/components/tree-select/select.js +38 -0
  125. package/es/components/tree-select/style/css.js +11 -0
  126. package/es/components/tree-select/style/index.js +11 -0
  127. package/es/components/tree-select/tree-select-option.js +21 -0
  128. package/es/components/tree-select/tree-select.vue.js +4 -0
  129. package/es/components/tree-select/tree-select.vue2.js +81 -0
  130. package/es/components/tree-select/tree.js +137 -0
  131. package/es/components/tree-select/utils.js +45 -0
  132. package/es/hooks/index.js +25 -21
  133. package/es/hooks/use-focus/index.js +9 -0
  134. package/es/hooks/use-throttle-render/index.js +21 -0
  135. package/es/index.js +408 -368
  136. package/es/package.json.js +1 -1
  137. package/es/utils/helper.js +5 -2
  138. package/es/utils/index.js +48 -46
  139. package/lib/component.cjs +1 -1
  140. package/lib/components/affix/affix.cjs +1 -0
  141. package/lib/components/affix/affix.vue.cjs +1 -0
  142. package/lib/components/affix/affix.vue2.cjs +1 -0
  143. package/lib/components/affix/index.cjs +1 -0
  144. package/lib/components/affix/style/css.cjs +1 -0
  145. package/lib/components/affix/style/index.cjs +1 -0
  146. package/lib/components/back-top/back-top.vue2.cjs +1 -1
  147. package/lib/components/button/button.vue2.cjs +1 -1
  148. package/lib/components/button/use-button.cjs +1 -1
  149. package/lib/components/card/card.vue.cjs +1 -0
  150. package/lib/components/card/card.vue2.cjs +1 -0
  151. package/lib/components/card/index.cjs +1 -0
  152. package/lib/components/card/instance.cjs +1 -0
  153. package/lib/components/card/style/css.cjs +1 -0
  154. package/lib/components/card/style/index.cjs +1 -0
  155. package/lib/components/check-tag/check-tag.vue.cjs +1 -0
  156. package/lib/components/check-tag/check-tag.vue2.cjs +1 -0
  157. package/lib/components/check-tag/index.cjs +1 -0
  158. package/lib/components/check-tag/style/css.cjs +1 -0
  159. package/lib/components/check-tag/style/index.cjs +1 -0
  160. package/lib/components/color-picker/color-picker.vue2.cjs +1 -1
  161. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  162. package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -1
  163. package/lib/components/date-picker/constants.cjs +1 -1
  164. package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -1
  165. package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -1
  166. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -1
  167. package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -1
  168. package/lib/components/date-picker/date-picker.cjs +1 -1
  169. package/lib/components/date-picker/index.cjs +1 -1
  170. package/lib/components/date-picker/props/shared.cjs +1 -1
  171. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  172. package/lib/components/dialog/dialog.vue2.cjs +1 -1
  173. package/lib/components/dialog/hooks/use-dialog.cjs +1 -1
  174. package/lib/components/dropdown/dropdown-menu.vue2.cjs +1 -1
  175. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  176. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  177. package/lib/components/horizontal-menu/constants.cjs +1 -0
  178. package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -1
  179. package/lib/components/horizontal-menu/index.cjs +1 -1
  180. package/lib/components/index.cjs +1 -1
  181. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  182. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  183. package/lib/components/menu/menu.vue2.cjs +1 -1
  184. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  185. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  186. package/lib/components/option/style/css.cjs +1 -0
  187. package/lib/components/option/style/index.cjs +1 -0
  188. package/lib/components/option-group/style/css.cjs +1 -0
  189. package/lib/components/option-group/style/index.cjs +1 -0
  190. package/lib/components/popconfirm/index.cjs +1 -0
  191. package/lib/components/popconfirm/popconfirm.vue.cjs +1 -0
  192. package/lib/components/popconfirm/popconfirm.vue2.cjs +1 -0
  193. package/lib/components/popconfirm/style/css.cjs +1 -0
  194. package/lib/components/popconfirm/style/index.cjs +1 -0
  195. package/lib/components/popover/style/index.cjs +1 -1
  196. package/lib/components/result/result.vue2.cjs +1 -1
  197. package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -1
  198. package/lib/components/search/style/css.cjs +1 -1
  199. package/lib/components/search/style/index.cjs +1 -1
  200. package/lib/components/select/index.cjs +1 -0
  201. package/lib/components/select/option-group.vue.cjs +1 -0
  202. package/lib/components/select/option-group.vue2.cjs +1 -0
  203. package/lib/components/select/option.vue.cjs +1 -0
  204. package/lib/components/select/option.vue2.cjs +1 -0
  205. package/lib/components/select/options.cjs +1 -0
  206. package/lib/components/select/select-dropdown.vue.cjs +1 -0
  207. package/lib/components/select/select-dropdown.vue2.cjs +1 -0
  208. package/lib/components/select/select.vue.cjs +1 -0
  209. package/lib/components/select/select.vue2.cjs +1 -0
  210. package/lib/components/select/style/css.cjs +1 -0
  211. package/lib/components/select/style/index.cjs +1 -0
  212. package/lib/components/select/token.cjs +1 -0
  213. package/lib/components/select/useOption.cjs +1 -0
  214. package/lib/components/select/useSelect.cjs +1 -0
  215. package/lib/components/select-v2/select-dropdown.cjs +1 -1
  216. package/lib/components/select-v2/useSelect.cjs +1 -1
  217. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  218. package/lib/components/skeleton/index.cjs +1 -0
  219. package/lib/components/skeleton/skeleton-item.vue.cjs +1 -0
  220. package/lib/components/skeleton/skeleton-item.vue2.cjs +1 -0
  221. package/lib/components/skeleton/skeleton.vue.cjs +1 -0
  222. package/lib/components/skeleton/skeleton.vue2.cjs +1 -0
  223. package/lib/components/skeleton/style/css.cjs +1 -0
  224. package/lib/components/skeleton/style/index.cjs +1 -0
  225. package/lib/components/skeleton-item/style/css.cjs +1 -0
  226. package/lib/components/skeleton-item/style/index.cjs +1 -0
  227. package/lib/components/space/index.cjs +1 -0
  228. package/lib/components/space/item.cjs +1 -0
  229. package/lib/components/space/space.cjs +1 -0
  230. package/lib/components/space/style/css.cjs +1 -0
  231. package/lib/components/space/style/index.cjs +1 -0
  232. package/lib/components/space/use-space.cjs +1 -0
  233. package/lib/components/switch/switch.vue2.cjs +1 -1
  234. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  235. package/lib/components/tabs/tabs.vue2.cjs +1 -1
  236. package/lib/components/time-picker/common/picker.vue2.cjs +1 -1
  237. package/lib/components/time-picker/common/props.cjs +1 -1
  238. package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -1
  239. package/lib/components/time-picker/time-picker.cjs +1 -1
  240. package/lib/components/time-select/time-select.vue2.cjs +1 -1
  241. package/lib/components/tooltip/content.vue2.cjs +1 -1
  242. package/lib/components/tree/index.cjs +1 -0
  243. package/lib/components/tree/model/node.cjs +1 -0
  244. package/lib/components/tree/model/tree-store.cjs +1 -0
  245. package/lib/components/tree/model/useDragNode.cjs +1 -0
  246. package/lib/components/tree/model/useKeydown.cjs +1 -0
  247. package/lib/components/tree/model/useNodeExpandEventBroadcast.cjs +1 -0
  248. package/lib/components/tree/model/util.cjs +1 -0
  249. package/lib/components/tree/style/css.cjs +1 -0
  250. package/lib/components/tree/style/index.cjs +1 -0
  251. package/lib/components/tree/tree-node-content.vue.cjs +1 -0
  252. package/lib/components/tree/tree-node-content.vue2.cjs +1 -0
  253. package/lib/components/tree/tree-node.vue.cjs +1 -0
  254. package/lib/components/tree/tree-node.vue2.cjs +1 -0
  255. package/lib/components/tree/tree.type.cjs +1 -0
  256. package/lib/components/tree/tree.vue.cjs +1 -0
  257. package/lib/components/tree/tree.vue2.cjs +1 -0
  258. package/lib/components/tree-select/cache-options.cjs +1 -0
  259. package/lib/components/tree-select/index.cjs +1 -0
  260. package/lib/components/tree-select/select.cjs +1 -0
  261. package/lib/components/tree-select/style/css.cjs +1 -0
  262. package/lib/components/tree-select/style/index.cjs +1 -0
  263. package/lib/components/tree-select/tree-select-option.cjs +1 -0
  264. package/lib/components/tree-select/tree-select.vue.cjs +1 -0
  265. package/lib/components/tree-select/tree-select.vue2.cjs +1 -0
  266. package/lib/components/tree-select/tree.cjs +1 -0
  267. package/lib/components/tree-select/utils.cjs +1 -0
  268. package/lib/hooks/index.cjs +1 -1
  269. package/lib/hooks/use-focus/index.cjs +1 -0
  270. package/lib/hooks/use-throttle-render/index.cjs +1 -0
  271. package/lib/index.cjs +1 -1
  272. package/lib/package.json.cjs +1 -1
  273. package/lib/utils/helper.cjs +1 -1
  274. package/lib/utils/index.cjs +1 -1
  275. package/package.json +1 -1
  276. package/tags.json +1 -1
  277. package/theme-style/base.css +1 -1
  278. package/theme-style/index.css +1 -1
  279. package/theme-style/src/alert.scss +1 -1
  280. package/theme-style/src/autocomplete.scss +2 -2
  281. package/theme-style/src/breadcrumb.scss +4 -4
  282. package/theme-style/src/calendar.scss +2 -2
  283. package/theme-style/src/card.scss +1 -1
  284. package/theme-style/src/carousel.scss +1 -1
  285. package/theme-style/src/cascader.scss +3 -3
  286. package/theme-style/src/check-tag.scss +3 -3
  287. package/theme-style/src/checkbox.scss +1 -1
  288. package/theme-style/src/color-picker.scss +2 -2
  289. package/theme-style/src/common/var.scss +527 -521
  290. package/theme-style/src/date-picker/date-picker.scss +1 -1
  291. package/theme-style/src/date-picker/date-range-picker.scss +2 -2
  292. package/theme-style/src/date-picker/date-table.scss +1 -1
  293. package/theme-style/src/date-picker/month-table.scss +2 -2
  294. package/theme-style/src/date-picker/picker-panel.scss +4 -5
  295. package/theme-style/src/date-picker/picker.scss +7 -9
  296. package/theme-style/src/date-picker/time-picker.scss +2 -2
  297. package/theme-style/src/date-picker/time-spinner.scss +6 -8
  298. package/theme-style/src/date-picker/year-table.scss +3 -3
  299. package/theme-style/src/date-time-select.scss +3 -4
  300. package/theme-style/src/descriptions-item.scss +4 -4
  301. package/theme-style/src/descriptions.scss +2 -2
  302. package/theme-style/src/header-layout.scss +1 -1
  303. package/theme-style/src/horizontal-menu.scss +27 -39
  304. package/theme-style/src/image-viewer.scss +1 -1
  305. package/theme-style/src/index.scss +3 -0
  306. package/theme-style/src/input-number.scss +1 -1
  307. package/theme-style/src/menu.scss +76 -66
  308. package/theme-style/src/mixins/_var.scss +2 -2
  309. package/theme-style/src/mixins/mixins.scss +2 -2
  310. package/theme-style/src/popconfirm.scss +16 -0
  311. package/theme-style/src/popper.scss +4 -2
  312. package/theme-style/src/progress.scss +1 -1
  313. package/theme-style/src/reset.scss +3 -3
  314. package/theme-style/src/result.scss +2 -2
  315. package/theme-style/src/select-dropdown-v2.scss +1 -1
  316. package/theme-style/src/select-dropdown.scss +1 -1
  317. package/theme-style/src/select-v2.scss +2 -2
  318. package/theme-style/src/select.scss +4 -5
  319. package/theme-style/src/side-menu.scss +0 -1
  320. package/theme-style/src/skeleton-item.scss +83 -0
  321. package/theme-style/src/skeleton.scss +44 -0
  322. package/theme-style/src/step.scss +10 -10
  323. package/theme-style/src/tabs.scss +15 -155
  324. package/theme-style/src/timeline-item.scss +2 -2
  325. package/theme-style/src/transfer.scss +5 -5
  326. package/theme-style/src/tree.scss +2 -5
  327. package/theme-style/src/upload.scss +11 -11
  328. package/theme-style/src/var.scss +1 -1
  329. package/theme-style/vft-alert.css +1 -1
  330. package/theme-style/vft-autocomplete.css +1 -1
  331. package/theme-style/vft-breadcrumb.css +1 -1
  332. package/theme-style/vft-calendar.css +1 -1
  333. package/theme-style/vft-card.css +1 -1
  334. package/theme-style/vft-carousel.css +1 -1
  335. package/theme-style/vft-cascader.css +1 -1
  336. package/theme-style/vft-check-tag.css +1 -1
  337. package/theme-style/vft-checkbox.css +1 -1
  338. package/theme-style/vft-color-picker.css +1 -1
  339. package/theme-style/vft-date-picker.css +1 -1
  340. package/theme-style/vft-date-time-select.css +1 -1
  341. package/theme-style/vft-descriptions-item.css +1 -1
  342. package/theme-style/vft-descriptions.css +1 -1
  343. package/theme-style/vft-header-layout.css +1 -1
  344. package/theme-style/vft-horizontal-menu.css +1 -1
  345. package/theme-style/vft-image-viewer.css +1 -1
  346. package/theme-style/vft-input-number.css +1 -1
  347. package/theme-style/vft-menu.css +1 -1
  348. package/theme-style/vft-popconfirm.css +1 -0
  349. package/theme-style/vft-popper.css +1 -1
  350. package/theme-style/vft-progress.css +1 -1
  351. package/theme-style/vft-reset.css +1 -1
  352. package/theme-style/vft-result.css +1 -1
  353. package/theme-style/vft-select-dropdown-v2.css +1 -1
  354. package/theme-style/vft-select-dropdown.css +1 -1
  355. package/theme-style/vft-select-v2.css +1 -1
  356. package/theme-style/vft-select.css +1 -1
  357. package/theme-style/vft-side-menu.css +1 -1
  358. package/theme-style/vft-skeleton-item.css +1 -0
  359. package/theme-style/vft-skeleton.css +1 -0
  360. package/theme-style/vft-step.css +1 -1
  361. package/theme-style/vft-tabs.css +1 -1
  362. package/theme-style/vft-time-picker.css +1 -1
  363. package/theme-style/vft-time-select.css +1 -1
  364. package/theme-style/vft-timeline-item.css +1 -1
  365. package/theme-style/vft-transfer.css +1 -1
  366. package/theme-style/vft-tree.css +1 -1
  367. package/theme-style/vft-upload.css +1 -1
  368. package/theme-style/vft-var.css +1 -1
  369. package/web-types.json +1 -1
package/es/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import o from "./defaults.js";
1
+ import e from "./defaults.js";
2
2
  import { VftDivider as m } from "./components/divider/index.js";
3
3
  import { VftIcon as x, VftIcon as i } from "./components/icon/index.js";
4
4
  import { VftAvatar as n } from "./components/avatar/index.js";
@@ -6,395 +6,435 @@ import { VftEmpty as V } from "./components/empty/index.js";
6
6
  import { VftResult as u } from "./components/result/index.js";
7
7
  import { VftTabPane as C, VftTabs as g } from "./components/tabs/index.js";
8
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
- import { VftPopover as S } from "./components/popover/index.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";
9
+ import { VftCollapseTransition as E } from "./components/collapse-transition/index.js";
10
+ import { VftTooltip as S } from "./components/tooltip/index.js";
11
+ import { VftPopover as b } from "./components/popover/index.js";
12
+ import { VftMenu as F, VftMenuItem as _, VftMenuItemGroup as K, VftSubMenu as N } from "./components/menu/index.js";
13
+ import { createContextMenu as O, destroyContextMenu as L } from "./components/context-menu/createContextMenu.js";
14
+ import { useContextMenu as h } from "./components/context-menu/useContextMenu.js";
15
+ import { VftMultipleTabs as k } from "./components/multiple-tabs/index.js";
16
16
  import { VftHeaderLayout as z } from "./components/header-layout/index.js";
17
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";
18
+ import { VftIframeLayout as H } from "./components/iframe-layout/index.js";
19
+ import { VftRouterViewContent as U } from "./components/router-view-content/index.js";
20
20
  import { VftLogo as j } from "./components/logo/index.js";
21
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";
149
- const r = o.install, t = o.version;
22
+ import { VftAside as X, VftContainer as $, VftFooter as ee, VftHeader as oe, VftMain as re } from "./components/container/index.js";
23
+ import { VftConfigProvider as fe } from "./components/config-provider/index.js";
24
+ import { VftDescriptions as me, VftDescriptionsItem as ae } from "./components/descriptions/index.js";
25
+ import { VftFullScreen as ie } from "./components/full-screen/index.js";
26
+ import { VftIconText as ne } from "./components/icon-text/index.js";
27
+ import { VftImage as Ve } from "./components/image/index.js";
28
+ import { VftInput as ue } from "./components/input/index.js";
29
+ import { VftLink as Ce } from "./components/link/index.js";
30
+ import { VftPagination as Te } from "./components/pagination/index.js";
31
+ import { VftTag as Pe } from "./components/tag/index.js";
32
+ import { VftSideMenu as De } from "./components/side-menu/index.js";
33
+ import { VftQrcode as ye } from "./components/qrcode/index.js";
34
+ import { VftOverlay as Me } from "./components/overlay/index.js";
35
+ import { VftClamp as _e } from "./components/clamp/index.js";
36
+ import { VftClampToggle as Ne } from "./components/clamp-toggle/index.js";
37
+ import { VftPageWrapper as Oe } from "./components/page-wrapper/index.js";
38
+ import { VftException as Re } from "./components/exception/index.js";
39
+ import { VftSearch as Ae } from "./components/search/index.js";
40
+ import { VftForm as we, VftFormItem as ze } from "./components/form/index.js";
41
+ import { VftButton as Ye, VftButtonGroup as Be } from "./components/button/index.js";
42
+ import { VftCheckbox as Je, VftCheckboxButton as Ue, VftCheckboxGroup as We } from "./components/checkbox/index.js";
43
+ import { VftRadio as Ze, VftRadioButton as qe, VftRadioGroup as Qe } from "./components/radio/index.js";
44
+ import { VftSwitch as $e } from "./components/switch/index.js";
45
+ import { VftColorPicker as oo } from "./components/color-picker/index.js";
46
+ import { VftScrollbar as to } from "./components/scrollbar/index.js";
47
+ import { VftDropdown as po, VftDropdownItem as mo, VftDropdownMenu as ao } from "./components/dropdown/index.js";
48
+ import { default as io } from "./components/virtual-list/components/fixed-size-list.js";
49
+ import { default as no } from "./components/virtual-list/components/dynamic-size-list.js";
50
+ import { default as Vo } from "./components/virtual-list/components/fixed-size-grid.js";
51
+ import { default as co } from "./components/virtual-list/components/dynamic-size-grid.js";
52
+ import { virtualizedGridProps as go, virtualizedListProps as To, virtualizedProps as Io, virtualizedScrollbarProps as Po } from "./components/virtual-list/props.js";
53
+ import { VftSelectV2 as Do } from "./components/select-v2/index.js";
54
+ import { VftOption as yo, VftOptionGroup as bo, VftSelect as Mo } from "./components/select/index.js";
55
+ import { VftTreeSelect as _o } from "./components/tree-select/index.js";
56
+ import { VftVerifyCode as No } from "./components/verify-code/index.js";
57
+ import { VftTable as Oo } from "./components/table/index.js";
58
+ import { VftImageViewer as Ro } from "./components/image-viewer/index.js";
59
+ import { VftListCell as Ao } from "./components/list-cell/index.js";
60
+ import { VftDialog as wo } from "./components/dialog/index.js";
61
+ import { VftDateTimeSelect as Go } from "./components/date-time-select/index.js";
62
+ import { VftCol as Bo } from "./components/col/index.js";
63
+ import { VftRow as Jo } from "./components/row/index.js";
64
+ import { VftHorizontalMenu as Wo } from "./components/horizontal-menu/index.js";
65
+ import { VftTimePicker as Zo } from "./components/time-picker/index.js";
66
+ import { VftDatePicker as Qo } from "./components/date-picker/index.js";
67
+ import { VftCheckTag as $o } from "./components/check-tag/index.js";
68
+ import { VftTree as or } from "./components/tree/index.js";
69
+ import { VftSkeleton as tr, VftSkeletonItem as fr } from "./components/skeleton/index.js";
70
+ import { VftSpace as mr } from "./components/space/index.js";
71
+ import { VftCard as xr } from "./components/card/index.js";
72
+ import { VftPopconfirm as sr } from "./components/popconfirm/index.js";
73
+ import { VftMdContainer as lr } from "./components/md-container/index.js";
74
+ import { VftMdComment as dr } from "./components/md-comment/index.js";
75
+ import { VftMdTabs as cr } from "./components/md-tabs/index.js";
76
+ import { VftMdVuePlayground as gr } from "./components/md-vue-playground/index.js";
77
+ import { VftMdCodeDemo as Ir } from "./components/md-code-demo/index.js";
78
+ import { VftMdCodeTabs as Er } from "./components/md-code-tabs/index.js";
79
+ import { VftMessage as Sr, VftMessage as yr } from "./components/message/index.js";
80
+ import { VftLoading as Mr } from "./components/loading/index.js";
81
+ import { EVENT_CODE as _r } from "./constants/aria.js";
82
+ import { WEEK_DAYS as Nr, datePickTypes as vr } from "./constants/date.js";
83
+ import { CHANGE_EVENT as Lr, INPUT_EVENT as Rr, UPDATE_MODEL_EVENT as hr } from "./constants/event.js";
84
+ import { INSTALLED_KEY as kr } from "./constants/key.js";
85
+ import { componentSizeMap as zr, componentSizes as Gr } from "./constants/size.js";
86
+ import { _bem as Br, defaultNamespace as Hr, namespaceContextKey as Jr, useGetDerivedNamespace as Ur, useNamespace as Wr } from "./hooks/use-namespace/index.js";
87
+ import { useCursor as Zr } from "./hooks/use-cursor/index.js";
88
+ import { usePopper as Qr } from "./hooks/use-popper/index.js";
89
+ import { defaultInitialZIndex as $r, useZIndex as et, zIndexContextKey as ot } from "./hooks/use-z-index/index.js";
90
+ import { FORWARD_REF_INJECTION_KEY as tt, useForwardRef as ft, useForwardRefDirective as pt } from "./hooks/use-forward-ref/index.js";
91
+ import { ID_INJECTION_KEY as at, useId as xt, useIdInjection as it } from "./hooks/use-id/index.js";
92
+ import { usePopperContainer as nt, usePopperContainerId as lt } from "./hooks/use-popper-container/index.js";
93
+ import { useDelayedToggle as dt } from "./hooks/use-delayed-toggle/index.js";
94
+ import { useTimeout as ct } from "./hooks/use-timeout/index.js";
95
+ import { useOrderedChildren as gt } from "./hooks/use-ordered-children/index.js";
96
+ import { createModelToggleComposable as It, useModelToggle as Pt, useModelToggleEmits as Et } from "./hooks/use-model-toggle/index.js";
97
+ import { useProp as St } from "./hooks/use-prop/index.js";
98
+ import { SIZE_INJECTION_KEY as bt, useGlobalSize as Mt } from "./hooks/use-size/index.js";
99
+ import { useDraggable as _t } from "./hooks/use-draggable/index.js";
100
+ import { useLockscreen as Nt } from "./hooks/use-lockscreen/index.js";
101
+ import { useSameTarget as Ot } from "./hooks/use-same-target/index.js";
102
+ import { useThrottleRender as Rt } from "./hooks/use-throttle-render/index.js";
103
+ import { useFocus as At } from "./hooks/use-focus/index.js";
104
+ import { withInstall as wt, withInstallDirective as zt, withInstallFunction as Gt, withNoopInstall as Yt } from "./utils/vue/install.js";
105
+ import { PatchFlags as Ht, ensureOnlyChild as Jt, flattedChildren as Ut, getFirstValidNode as Wt, getNormalizedProps as jt, isComment as Zt, isFragment as qt, isTemplate as Qt, isText as Xt, isValidElementNode as $t, renderBlock as ef, renderIf as of } from "./utils/vue/vnode.js";
106
+ import { composeRefs as tf } from "./utils/vue/refs.js";
107
+ import { buildProp as pf, buildProps as mf, definePropType as af, epPropKey as xf, isEpProp as sf } from "./utils/vue/props/runtime.js";
108
+ import { cAF as lf, rAF as Vf } from "./utils/vue/raf.js";
109
+ import { escapeStringRegexp as uf } from "./utils/vue/data-helper.js";
110
+ import { getComponentSize as Cf, getSizeType as gf, isValidComponentSize as Tf } from "./utils/helper.js";
111
+ import { debugWarn as Pf, throwError as Ef } from "./utils/error.js";
112
+ import { composeEventHandlers as Sf, whenMouse as yf } from "./utils/event.js";
113
+ import { mutable as Mf } from "./utils/typescript.js";
114
+ import { cssVarValue as _f, generateCssVars as Kf, primaryColor as Nf, setCssVar as vf, setPrimaryColorCssvars as Of } from "./utils/ns-cover.js";
115
+ import { getProp as Rf } from "./utils/objects.js";
116
+ import { getClientXY as Af, getOffsetTop as kf, getOffsetTopDistance as wf, isInContainer as zf } from "./utils/dom/position.js";
117
+ import { getScrollBarWidth as Yf, getScrollContainer as Bf, isScroll as Hf, scrollIntoView as Jf } from "./utils/dom/scroll.js";
118
+ import { makeInstaller as Wf } from "./make-installer.js";
119
+ import { CompResolver as Zf } from "./comp-resolver.js";
120
+ import { default as Qf } from "dayjs";
121
+ import { default as $f } from "./components/time-picker/common/picker.vue2.js";
122
+ import { default as op } from "./components/time-picker/time-picker-com/panel-time-pick.vue2.js";
123
+ import { EmptyEnum as tp } from "./components/empty/constants.js";
124
+ import { TabsRootContextKey as pp } from "./components/tabs/types.js";
125
+ import { default as ap } from "./components/popper/arrow.vue2.js";
126
+ import { default as ip } from "./components/popper/trigger.vue2.js";
127
+ import { default as np } from "./components/popper/content.vue2.js";
128
+ import { TOOLTIP_INJECTION_KEY as Vp } from "./components/tooltip/constants.js";
129
+ import { useTabDropdown as up } from "./components/multiple-tabs/use/use-tab-dropdown.js";
130
+ import { initAffixTabs as Cp, useTabsDrag as gp } from "./components/multiple-tabs/use/use-multiple-tabs.js";
131
+ import { configProviderContextKey as Ip, messageConfig as Pp } from "./components/config-provider/constants.js";
132
+ import { provideGlobalConfig as Dp, useGlobalComponentSettings as Sp, useGlobalConfig as yp } from "./components/config-provider/hooks/use-global-config.js";
133
+ import { usePagination as Mp, vftPaginationKey as Fp } from "./components/pagination/usePagination.js";
134
+ import { formItemValidateStates as Kp } from "./components/form/types.js";
135
+ import { formContextKey as vp, formItemContextKey as Op } from "./components/form/constants.js";
136
+ import { useDisabled as Rp, useFormDisabled as hp, useFormSize as Ap, useSize as kp } from "./components/form/hooks/use-form-common-props.js";
137
+ import { useFormItem as zp, useFormItemInputId as Gp } from "./components/form/hooks/use-form-item.js";
138
+ import { buttonGroupContextKey as Bp } from "./components/button/constants.js";
139
+ import { checkboxGroupContextKey as Jp } from "./components/checkbox/constants.js";
140
+ import { radioGroupKey as Wp } from "./components/radio/constants.js";
141
+ import { BAR_MAP as Zp, GAP as qp, renderThumbStyle as Qp } from "./components/scrollbar/util.js";
142
+ import { scrollbarContextKey as $p } from "./components/scrollbar/constants.js";
143
+ import { DROPDOWN_INJECTION_KEY as om } from "./components/dropdown/tokens.js";
144
+ import { VftCollection as tm, VftCollectionItem as fm } from "./components/dropdown/types.js";
145
+ import { OnlyChild as mm } from "./components/slot/only-child.js";
146
+ import { default as xm } from "./components/dropdown/dropdown-item-impl.vue.js";
147
+ import { selectV2InjectionKey as sm } from "./components/select-v2/token.js";
148
+ import { selectGroupKey as lm, selectKey as Vm } from "./components/select/token.js";
149
+ import { useDialog as um } from "./components/dialog/hooks/use-dialog.js";
150
+ import { dialogInjectionKey as Cm } from "./components/dialog/constants.js";
151
+ import { rowContextKey as Tm } from "./components/row/constants.js";
152
+ import { MenuTypeEnum as Pm } from "./components/horizontal-menu/constants.js";
153
+ import { buildTimeList as Dm, dateEquals as Sm, extractDateFormat as ym, extractTimeFormat as bm, formatter as Mm, makeList as Fm, parseDate as _m, rangeArr as Km, valueEquals as Nm } from "./components/time-picker/utils.js";
154
+ import { DEFAULT_FORMATS_DATE as Om, DEFAULT_FORMATS_DATEPICKER as Lm, DEFAULT_FORMATS_TIME as Rm, timeUnits as hm } from "./components/time-picker/constants.js";
155
+ import { timePickerDefaultProps as km } from "./components/time-picker/common/props.js";
156
+ import { ROOT_PICKER_INJECTION_KEY as zm, datePickerConfig as Gm } from "./components/date-picker/constants.js";
157
+ import { datePickerProps as Bm } from "./components/date-picker/props/date-picker.js";
158
+ import { dragEventsKey as Jm, useDragNodeHandler as Um } from "./components/tree/model/useDragNode.js";
159
+ import { getChildState as jm } from "./components/tree/model/node.js";
160
+ import { spaceProps as qm } from "./components/space/space.js";
161
+ import { useSpace as Xm } from "./components/space/use-space.js";
162
+ import { messageDefaults as ea, messageTypes as oa } from "./components/message/types.js";
163
+ import { vLoading as ta, createLoadingDirective as fa, vLoading as pa } from "./components/loading/directive.js";
164
+ import { Loading as aa } from "./components/loading/service.js";
165
+ const r = e.install, t = e.version;
150
166
  export {
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,
167
+ Zp as BAR_MAP,
168
+ Lr as CHANGE_EVENT,
169
+ $f as CommonPicker,
170
+ Zf as CompResolver,
171
+ Om as DEFAULT_FORMATS_DATE,
172
+ Lm as DEFAULT_FORMATS_DATEPICKER,
173
+ Rm as DEFAULT_FORMATS_TIME,
174
+ om as DROPDOWN_INJECTION_KEY,
175
+ co as DynamicSizeGrid,
176
+ no as DynamicSizeList,
177
+ _r as EVENT_CODE,
178
+ tp as EmptyEnum,
179
+ tt as FORWARD_REF_INJECTION_KEY,
180
+ Vo as FixedSizeGrid,
181
+ io as FixedSizeList,
182
+ qp as GAP,
183
+ at as ID_INJECTION_KEY,
184
+ Rr as INPUT_EVENT,
185
+ kr as INSTALLED_KEY,
170
186
  x as Icon,
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,
187
+ Pm as MenuTypeEnum,
188
+ Sr as Message,
189
+ Ht as PatchFlags,
190
+ zm as ROOT_PICKER_INJECTION_KEY,
191
+ bt as SIZE_INJECTION_KEY,
192
+ Vp as TOOLTIP_INJECTION_KEY,
193
+ pp as TabsRootContextKey,
194
+ op as TimePickPanel,
195
+ hr as UPDATE_MODEL_EVENT,
179
196
  X as VftAside,
180
197
  n as VftAvatar,
181
198
  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,
199
+ Ye as VftButton,
200
+ Be as VftButtonGroup,
201
+ xr as VftCard,
202
+ $o as VftCheckTag,
203
+ Je as VftCheckbox,
204
+ Ue as VftCheckboxButton,
205
+ We as VftCheckboxGroup,
206
+ _e as VftClamp,
207
+ Ne as VftClampToggle,
208
+ Bo as VftCol,
209
+ E as VftCollapseTransition,
210
+ oo as VftColorPicker,
211
+ fe as VftConfigProvider,
193
212
  $ as VftContainer,
194
- Ue as VftDatePicker,
195
- Ae as VftDateTimeSelect,
196
- mo as VftDescriptions,
197
- ao as VftDescriptionsItem,
198
- Ke as VftDialog,
213
+ Qo as VftDatePicker,
214
+ Go as VftDateTimeSelect,
215
+ me as VftDescriptions,
216
+ ae as VftDescriptionsItem,
217
+ wo as VftDialog,
199
218
  m as VftDivider,
200
- me as VftDropdown,
201
- Fp as VftDropdownCollection,
202
- _p as VftDropdownCollectionItem,
203
- ae as VftDropdownItem,
204
- Kp as VftDropdownItemImpl,
205
- xe as VftDropdownMenu,
219
+ po as VftDropdown,
220
+ tm as VftDropdownCollection,
221
+ fm as VftDropdownCollectionItem,
222
+ mo as VftDropdownItem,
223
+ xm as VftDropdownItemImpl,
224
+ ao as VftDropdownMenu,
206
225
  V as VftEmpty,
207
- Ro as VftException,
208
- oo as VftFooter,
226
+ Re as VftException,
227
+ ee as VftFooter,
209
228
  Y as VftFooterLayout,
210
- zo as VftForm,
211
- Go as VftFormItem,
212
- io as VftFullScreen,
213
- eo as VftHeader,
229
+ we as VftForm,
230
+ ze as VftFormItem,
231
+ ie as VftFullScreen,
232
+ oe as VftHeader,
214
233
  z as VftHeaderLayout,
215
- Ge as VftHorizontalMenu,
234
+ Wo as VftHorizontalMenu,
216
235
  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,
236
+ ne as VftIconText,
237
+ H as VftIframeLayout,
238
+ Ve as VftImage,
239
+ Ro as VftImageViewer,
240
+ ue as VftInput,
241
+ Ce as VftLink,
242
+ Ao as VftListCell,
243
+ Mr as VftLoading,
244
+ ta as VftLoadingDirective,
245
+ aa as VftLoadingService,
227
246
  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,
247
+ re as VftMain,
248
+ Ir as VftMdCodeDemo,
249
+ Er as VftMdCodeTabs,
250
+ dr as VftMdComment,
251
+ lr as VftMdContainer,
252
+ cr as VftMdTabs,
253
+ gr as VftMdVuePlayground,
235
254
  F as VftMenu,
236
255
  _ 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,
244
- S as VftPopover,
256
+ K as VftMenuItemGroup,
257
+ yr as VftMessage,
258
+ k as VftMultipleTabs,
259
+ mm as VftOnlyChild,
260
+ yo as VftOption,
261
+ bo as VftOptionGroup,
262
+ Me as VftOverlay,
263
+ Oe as VftPageWrapper,
264
+ Te as VftPagination,
265
+ sr as VftPopconfirm,
266
+ b as VftPopover,
245
267
  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,
268
+ ap as VftPopperArrow,
269
+ np as VftPopperContent,
270
+ ip as VftPopperTrigger,
271
+ ye as VftQrcode,
272
+ Ze as VftRadio,
273
+ qe as VftRadioButton,
274
+ Qe as VftRadioGroup,
253
275
  u as VftResult,
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,
276
+ U as VftRouterViewContent,
277
+ Jo as VftRow,
278
+ to as VftScrollbar,
279
+ Ae as VftSearch,
280
+ Mo as VftSelect,
281
+ Do as VftSelectV2,
282
+ De as VftSideMenu,
283
+ tr as VftSkeleton,
284
+ fr as VftSkeletonItem,
285
+ mr as VftSpace,
286
+ N as VftSubMenu,
287
+ $e as VftSwitch,
262
288
  C as VftTabPane,
263
- Me as VftTable,
289
+ Oo as VftTable,
264
290
  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,
282
- K as createContextMenu,
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,
291
- o as default,
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,
291
+ Pe as VftTag,
292
+ Zo as VftTimePicker,
293
+ S as VftTooltip,
294
+ or as VftTree,
295
+ _o as VftTreeSelect,
296
+ No as VftVerifyCode,
297
+ Nr as WEEK_DAYS,
298
+ Br as _bem,
299
+ pf as buildProp,
300
+ mf as buildProps,
301
+ Dm as buildTimeList,
302
+ Bp as buttonGroupContextKey,
303
+ lf as cAF,
304
+ Jp as checkboxGroupContextKey,
305
+ zr as componentSizeMap,
306
+ Gr as componentSizes,
307
+ Sf as composeEventHandlers,
308
+ tf as composeRefs,
309
+ Ip as configProviderContextKey,
310
+ O as createContextMenu,
311
+ fa as createLoadingDirective,
312
+ It as createModelToggleComposable,
313
+ _f as cssVarValue,
314
+ Sm as dateEquals,
315
+ vr as datePickTypes,
316
+ Gm as datePickerConfig,
317
+ Bm as datePickerProps,
318
+ Qf as dayjs,
319
+ Pf as debugWarn,
320
+ e as default,
321
+ $r as defaultInitialZIndex,
322
+ Hr as defaultNamespace,
323
+ af as definePropType,
324
+ L as destroyContextMenu,
325
+ Cm as dialogInjectionKey,
326
+ Jm as dragEventsKey,
327
+ Jt as ensureOnlyChild,
328
+ xf as epPropKey,
329
+ uf as escapeStringRegexp,
330
+ ym as extractDateFormat,
331
+ bm as extractTimeFormat,
332
+ Ut as flattedChildren,
333
+ vp as formContextKey,
334
+ Op as formItemContextKey,
335
+ Kp as formItemValidateStates,
336
+ Mm as formatter,
337
+ Kf as generateCssVars,
338
+ jm as getChildState,
339
+ Af as getClientXY,
340
+ Cf as getComponentSize,
341
+ Wt as getFirstValidNode,
342
+ jt as getNormalizedProps,
343
+ kf as getOffsetTop,
344
+ wf as getOffsetTopDistance,
345
+ Rf as getProp,
346
+ Yf as getScrollBarWidth,
347
+ Bf as getScrollContainer,
348
+ gf as getSizeType,
349
+ Cp as initAffixTabs,
318
350
  r as install,
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,
351
+ Zt as isComment,
352
+ sf as isEpProp,
353
+ qt as isFragment,
354
+ zf as isInContainer,
355
+ Hf as isScroll,
356
+ Qt as isTemplate,
357
+ Xt as isText,
358
+ Tf as isValidComponentSize,
359
+ $t as isValidElementNode,
360
+ Wf as makeInstaller,
361
+ Fm as makeList,
362
+ Pp as messageConfig,
363
+ ea as messageDefaults,
364
+ oa as messageTypes,
365
+ Mf as mutable,
366
+ Jr as namespaceContextKey,
367
+ _m as parseDate,
368
+ Nf as primaryColor,
369
+ Dp as provideGlobalConfig,
370
+ Vf as rAF,
371
+ Wp as radioGroupKey,
372
+ Km as rangeArr,
373
+ ef as renderBlock,
374
+ of as renderIf,
375
+ Qp as renderThumbStyle,
376
+ Tm as rowContextKey,
377
+ Jf as scrollIntoView,
378
+ $p as scrollbarContextKey,
379
+ lm as selectGroupKey,
380
+ Vm as selectKey,
381
+ sm as selectV2InjectionKey,
382
+ vf as setCssVar,
383
+ Of as setPrimaryColorCssvars,
384
+ qm as spaceProps,
385
+ Ef as throwError,
386
+ km as timePickerDefaultProps,
387
+ hm as timeUnits,
388
+ h as useContextMenu,
389
+ Zr as useCursor,
390
+ dt as useDelayedToggle,
391
+ um as useDialog,
392
+ Rp as useDisabled,
393
+ Um as useDragNodeHandler,
394
+ _t as useDraggable,
395
+ At as useFocus,
396
+ hp as useFormDisabled,
397
+ zp as useFormItem,
398
+ Gp as useFormItemInputId,
399
+ Ap as useFormSize,
400
+ ft as useForwardRef,
401
+ pt as useForwardRefDirective,
402
+ Ur as useGetDerivedNamespace,
403
+ Sp as useGlobalComponentSettings,
404
+ yp as useGlobalConfig,
405
+ Mt as useGlobalSize,
406
+ xt as useId,
407
+ it as useIdInjection,
408
+ Nt as useLockscreen,
409
+ Pt as useModelToggle,
410
+ Et as useModelToggleEmits,
411
+ Wr as useNamespace,
412
+ gt as useOrderedChildren,
413
+ Mp as usePagination,
414
+ Qr as usePopper,
415
+ nt as usePopperContainer,
416
+ lt as usePopperContainerId,
417
+ St as useProp,
418
+ Ot as useSameTarget,
419
+ kp as useSize,
420
+ Xm as useSpace,
421
+ up as useTabDropdown,
422
+ gp as useTabsDrag,
423
+ Rt as useThrottleRender,
424
+ ct as useTimeout,
425
+ et as useZIndex,
426
+ pa as vLoading,
427
+ Nm as valueEquals,
388
428
  t as version,
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
429
+ Fp as vftPaginationKey,
430
+ go as virtualizedGridProps,
431
+ To as virtualizedListProps,
432
+ Io as virtualizedProps,
433
+ Po as virtualizedScrollbarProps,
434
+ yf as whenMouse,
435
+ wt as withInstall,
436
+ zt as withInstallDirective,
437
+ Gt as withInstallFunction,
438
+ Yt as withNoopInstall,
439
+ ot as zIndexContextKey
400
440
  };