vft 0.0.249 → 0.0.252

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 (582) hide show
  1. package/dist/index.css +1 -1
  2. package/es/components/alert/alert.vue.d.ts +1 -11
  3. package/es/components/alert/alert.vue2.js +13 -65
  4. package/es/components/alert/index.d.ts +28 -76
  5. package/es/components/autocomplete/autocomplete.vue.d.ts +14 -14
  6. package/es/components/autocomplete/autocomplete.vue2.js +194 -199
  7. package/es/components/autocomplete/index.d.ts +42 -42
  8. package/es/components/backtop/backtop.vue.d.ts +1 -15
  9. package/es/components/backtop/backtop.vue2.js +17 -106
  10. package/es/components/backtop/index.d.ts +3 -9
  11. package/es/components/backtop/types.d.ts +14 -0
  12. package/es/components/backtop/types.js +1 -0
  13. package/es/components/button/button-custom.d.ts +1 -1
  14. package/es/components/button/button.vue.d.ts +3 -50
  15. package/es/components/button/button.vue2.js +1 -1
  16. package/es/components/button/index.d.ts +39 -40
  17. package/es/components/button/types.d.ts +47 -1
  18. package/es/components/button/use-button.d.ts +5 -5
  19. package/es/components/card/index.d.ts +3 -3
  20. package/es/components/carousel/carousel.vue.d.ts +1 -1
  21. package/es/components/carousel/index.d.ts +18 -18
  22. package/es/components/carousel/use-carousel.js +2 -3
  23. package/es/components/checkbox/checkbox-group.vue.d.ts +1 -1
  24. package/es/components/checkbox/index.d.ts +42 -42
  25. package/es/components/color-picker/components/hue-slider.vue.d.ts +3 -3
  26. package/es/components/color-picker/components/predefine.vue.d.ts +3 -3
  27. package/es/components/color-picker/components/sv-panel.vue.d.ts +3 -3
  28. package/es/components/config-provider/hooks/use-global-config.d.ts +3 -3
  29. package/es/components/context-menu/context-menu.vue2.js +36 -124
  30. package/es/components/context-menu/index.js +5 -101
  31. package/es/components/context-menu/types.d.ts +1 -1
  32. package/es/components/context-menu/types.js +1 -98
  33. package/es/components/date-picker/composables/use-basic-date-table.d.ts +188 -0
  34. package/es/components/date-picker/composables/use-basic-date-table.js +183 -0
  35. package/es/components/date-picker/composables/use-month-range-header.d.ts +1 -1
  36. package/es/components/date-picker/composables/use-panel-date-range.d.ts +29 -0
  37. package/es/components/date-picker/composables/use-panel-date-range.js +72 -0
  38. package/es/components/date-picker/composables/use-range-picker.d.ts +46 -42
  39. package/es/components/date-picker/composables/use-range-picker.js +65 -52
  40. package/es/components/date-picker/composables/use-shortcut.js +4 -4
  41. package/es/components/date-picker/composables/use-year-range-header.d.ts +16 -0
  42. package/es/components/date-picker/composables/use-year-range-header.js +35 -0
  43. package/es/components/date-picker/constants.d.ts +2 -15
  44. package/es/components/date-picker/constants.js +3 -16
  45. package/es/components/date-picker/date-picker-com/basic-cell-render.d.ts +3 -1
  46. package/es/components/date-picker/date-picker-com/basic-cell-render.js +16 -19
  47. package/es/components/date-picker/date-picker-com/basic-date-table.vue.d.ts +14 -23
  48. package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +73 -176
  49. package/es/components/date-picker/date-picker-com/basic-month-table.vue.d.ts +2 -2
  50. package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +93 -71
  51. package/es/components/date-picker/date-picker-com/basic-year-table.vue.d.ts +50 -9
  52. package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +108 -57
  53. package/es/components/date-picker/date-picker-com/panel-date-pick.vue.d.ts +13 -3
  54. package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +329 -277
  55. package/es/components/date-picker/date-picker-com/panel-date-range.vue.d.ts +16 -3
  56. package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +422 -281
  57. package/es/components/date-picker/date-picker-com/panel-month-range.vue.d.ts +6 -3
  58. package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +137 -113
  59. package/es/components/date-picker/date-picker-com/panel-year-range.vue.d.ts +35 -0
  60. package/es/components/date-picker/date-picker-com/panel-year-range.vue.js +4 -0
  61. package/es/components/date-picker/date-picker-com/panel-year-range.vue2.js +210 -0
  62. package/es/components/date-picker/date-picker.d.ts +70 -40
  63. package/es/components/date-picker/date-picker.js +59 -50
  64. package/es/components/date-picker/date-picker.type.d.ts +2 -1
  65. package/es/components/date-picker/index.d.ts +126 -68
  66. package/es/components/date-picker/index.js +7 -7
  67. package/es/components/date-picker/instance.d.ts +9 -0
  68. package/es/components/date-picker/instance.js +1 -0
  69. package/es/components/date-picker/panel-utils.d.ts +48 -0
  70. package/es/components/date-picker/panel-utils.js +9 -6
  71. package/es/components/date-picker/props/basic-cell.d.ts +2 -1
  72. package/es/components/date-picker/props/basic-date-table.d.ts +7 -2
  73. package/es/components/date-picker/props/basic-date-table.js +6 -5
  74. package/es/components/date-picker/props/basic-month-table.d.ts +3 -2
  75. package/es/components/date-picker/props/basic-year-table.d.ts +23 -5
  76. package/es/components/date-picker/props/basic-year-table.js +5 -6
  77. package/es/components/date-picker/props/date-picker.d.ts +26 -12
  78. package/es/components/date-picker/props/date-picker.js +3 -0
  79. package/es/components/date-picker/props/panel-date-pick.d.ts +6 -1
  80. package/es/components/date-picker/props/panel-date-range.d.ts +7 -1
  81. package/es/components/date-picker/props/panel-month-range.d.ts +3 -1
  82. package/es/components/date-picker/props/panel-month-range.js +7 -3
  83. package/es/components/date-picker/props/panel-year-range.d.ts +14 -0
  84. package/es/components/date-picker/props/panel-year-range.js +17 -0
  85. package/es/components/date-picker/props/shared.d.ts +9 -2
  86. package/es/components/date-picker/props/shared.js +29 -12
  87. package/es/components/date-picker/style/css.d.ts +4 -0
  88. package/es/components/date-picker/style/css.js +5 -0
  89. package/es/components/date-picker/utils.d.ts +9 -2
  90. package/es/components/date-picker/utils.js +66 -33
  91. package/es/components/date-time-select/date-time-select.vue2.js +1 -1
  92. package/es/components/date-time-select/index.d.ts +1 -0
  93. package/es/components/date-time-select/types.d.ts +4 -0
  94. package/es/components/dialog/dialog-content.vue2.js +2 -3
  95. package/es/components/dropdown/dropdown-item-impl.vue.d.ts +4 -4
  96. package/es/components/dropdown/dropdown-item-impl.vue.js +12 -12
  97. package/es/components/dropdown/dropdown-item-impl.vue2.js +6 -6
  98. package/es/components/dropdown/dropdown.vue.d.ts +6 -29
  99. package/es/components/dropdown/dropdown.vue2.js +146 -149
  100. package/es/components/footer-layout/footer-layout.vue2.js +19 -108
  101. package/es/components/form/form-item.vue.d.ts +2 -3
  102. package/es/components/form/form-item.vue2.js +140 -135
  103. package/es/components/form/form-label-wrap.js +27 -27
  104. package/es/components/form/form.vue2.js +71 -65
  105. package/es/components/form/hooks/use-form-common-props.js +3 -4
  106. package/es/components/form/hooks/use-form-item.js +12 -13
  107. package/es/components/form/index.d.ts +75 -48
  108. package/es/components/form/types.d.ts +7 -1
  109. package/es/components/form/utils.d.ts +1 -1
  110. package/es/components/form/utils.js +33 -28
  111. package/es/components/header-layout/header-layout.vue2.js +26 -114
  112. package/es/components/icon/icon.vue2.js +20 -19
  113. package/es/components/icon/index.d.ts +0 -1
  114. package/es/components/icon/index.js +3 -4
  115. package/es/components/index.js +323 -319
  116. package/es/components/input/input.vue2.js +4 -4
  117. package/es/components/link/index.d.ts +3 -3
  118. package/es/components/md-code-demo/md-code-demo.js +12 -13
  119. package/es/components/md-container/md-container.vue2.js +52 -138
  120. package/es/components/md-vue-playground/md-vue-playground.vue2.js +17 -17
  121. package/es/components/menu/index.js +1 -1
  122. package/es/components/menu/menu-item.vue.d.ts +1 -1
  123. package/es/components/menu/menu-item.vue2.js +45 -132
  124. package/es/components/menu/sub-menu.vue.d.ts +2 -1
  125. package/es/components/menu/sub-menu.vue2.js +76 -163
  126. package/es/components/modal/index.d.ts +33 -45
  127. package/es/components/modal/modal-footer-action.vue2.js +26 -112
  128. package/es/components/modal/modal.vue.d.ts +2 -2
  129. package/es/components/multiple-tabs/multiple-tabs.vue2.js +57 -144
  130. package/es/components/multiple-tabs/tab-content.vue2.js +19 -113
  131. package/es/components/multiple-tabs/use/use-tab-dropdown.js +37 -132
  132. package/es/components/popconfirm/index.d.ts +24 -24
  133. package/es/components/popconfirm/popconfirm.vue.d.ts +2 -2
  134. package/es/components/popover/index.d.ts +5 -5
  135. package/es/components/popover/popover.vue.d.ts +2 -2
  136. package/es/components/popper/composables/use-content.js +2 -3
  137. package/es/components/popper/trigger.vue2.js +7 -8
  138. package/es/components/progress/index.d.ts +3 -3
  139. package/es/components/result/result.vue.d.ts +1 -1
  140. package/es/components/result/result.vue2.js +20 -109
  141. package/es/components/roving-focus-group/index.js +11 -11
  142. package/es/components/roving-focus-group/roving-focus-group.vue.js +5 -5
  143. package/es/components/roving-focus-group/roving-focus-item.vue2.js +2 -3
  144. package/es/components/scrollbar/index.js +9 -10
  145. package/es/components/select/defaults.d.ts +99 -15
  146. package/es/components/select/defaults.js +90 -12
  147. package/es/components/select/group-item.vue.d.ts +10 -5
  148. package/es/components/select/group-item.vue.js +9 -19
  149. package/es/components/select/group-item.vue2.js +4 -2
  150. package/es/components/select/index.d.ts +2782 -0
  151. package/es/components/select/index.js +2 -2
  152. package/es/components/select/option-item.vue.d.ts +40 -26
  153. package/es/components/select/option-item.vue.js +12 -12
  154. package/es/components/select/option-item.vue2.js +15 -12
  155. package/es/components/select/select-dropdown.d.ts +29 -3
  156. package/es/components/select/select-dropdown.js +120 -129
  157. package/es/components/select/select.types.d.ts +19 -11
  158. package/es/components/select/select.vue.d.ts +2778 -0
  159. package/es/components/select/select.vue.js +261 -251
  160. package/es/components/select/select.vue2.js +49 -45
  161. package/es/components/select/token.d.ts +10 -12
  162. package/es/components/select/token.js +4 -2
  163. package/es/components/select/useAllowCreate.d.ts +3 -3
  164. package/es/components/select/useAllowCreate.js +32 -29
  165. package/es/components/select/useOption.d.ts +3 -3
  166. package/es/components/select/useProps.d.ts +21 -0
  167. package/es/components/select/useProps.js +22 -0
  168. package/es/components/select/useSelect.d.ts +940 -121
  169. package/es/components/select/useSelect.js +396 -302
  170. package/es/components/side-menu/side-menu.vue2.js +77 -165
  171. package/es/components/steps/index.d.ts +12 -12
  172. package/es/components/super-form/component-map.js +52 -141
  173. package/es/components/super-form/style/css.js +4 -4
  174. package/es/components/super-form/super-form-action.vue2.js +39 -126
  175. package/es/components/super-form/super-form-item.vue2.js +161 -248
  176. package/es/components/super-form/super-form.vue.d.ts +1 -1
  177. package/es/components/super-form/super-form.vue2.js +116 -202
  178. package/es/components/super-form/types.d.ts +3 -1
  179. package/es/components/switch/index.d.ts +6 -6
  180. package/es/components/table/field.js +82 -176
  181. package/es/components/table/index.d.ts +24 -24
  182. package/es/components/table/table.vue.d.ts +1 -1
  183. package/es/components/tabs/tab-nav.vue.d.ts +2 -2
  184. package/es/components/tabs/tab-nav.vue2.js +98 -187
  185. package/es/components/tabs/tabs.vue.d.ts +2 -1
  186. package/es/components/time-picker/common/picker-range-trigger.vue.d.ts +84 -0
  187. package/es/components/time-picker/common/picker-range-trigger.vue.js +4 -0
  188. package/es/components/time-picker/common/picker-range-trigger.vue2.js +100 -0
  189. package/es/components/time-picker/common/picker.vue.d.ts +71 -41
  190. package/es/components/time-picker/common/picker.vue2.js +285 -289
  191. package/es/components/time-picker/common/props.d.ts +76 -12
  192. package/es/components/time-picker/common/props.js +78 -35
  193. package/es/components/time-picker/composables/use-time-panel.d.ts +4 -4
  194. package/es/components/time-picker/composables/use-time-picker.d.ts +28 -29
  195. package/es/components/time-picker/constants.d.ts +5 -0
  196. package/es/components/time-picker/constants.js +15 -10
  197. package/es/components/time-picker/index.d.ts +120 -74
  198. package/es/components/time-picker/index.js +28 -23
  199. package/es/components/time-picker/props/basic-time-spinner.d.ts +5 -4
  200. package/es/components/time-picker/props/panel-time-picker.d.ts +2 -1
  201. package/es/components/time-picker/props/panel-time-range.d.ts +2 -1
  202. package/es/components/time-picker/props/shared.d.ts +4 -5
  203. package/es/components/time-picker/style/css.d.ts +3 -0
  204. package/es/components/time-picker/style/css.js +3 -0
  205. package/es/components/time-picker/style/index.d.ts +3 -0
  206. package/es/components/time-picker/style/index.js +3 -0
  207. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.d.ts +6 -6
  208. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +135 -128
  209. package/es/components/time-picker/time-picker-com/panel-time-pick.vue.d.ts +4 -4
  210. package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +36 -35
  211. package/es/components/time-picker/time-picker-com/panel-time-range.vue.d.ts +4 -4
  212. package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +109 -108
  213. package/es/components/time-picker/time-picker.d.ts +60 -37
  214. package/es/components/time-picker/time-picker.js +28 -30
  215. package/es/components/time-picker/utils.d.ts +5 -2
  216. package/es/components/time-picker/utils.js +17 -16
  217. package/es/components/time-select/time-select.vue.d.ts +1 -1
  218. package/es/components/timeline/index.d.ts +6 -6
  219. package/es/components/tooltip/content.vue2.js +47 -48
  220. package/es/components/tooltip/index.d.ts +3 -3
  221. package/es/components/tooltip/tooltip.vue.d.ts +1 -1
  222. package/es/components/tooltip/tooltip.vue2.js +77 -78
  223. package/es/components/tooltip/utils.js +4 -5
  224. package/es/components/tree/tree-node.vue.d.ts +33 -33
  225. package/es/components/tree/tree-node.vue.js +11 -11
  226. package/es/components/tree/tree-node.vue2.js +15 -15
  227. package/es/components/upload/index.d.ts +15 -15
  228. package/es/components/upload/upload-content.vue.d.ts +1 -1
  229. package/es/components/upload/upload.vue.d.ts +1 -1
  230. package/es/components/virtual-list/builders/build-grid.d.ts +9 -9
  231. package/es/components/virtual-list/builders/build-grid.js +222 -214
  232. package/es/components/virtual-list/builders/build-list.d.ts +13 -13
  233. package/es/components/virtual-list/builders/build-list.js +206 -198
  234. package/es/components/virtual-list/components/dynamic-size-grid.d.ts +6 -6
  235. package/es/components/virtual-list/components/dynamic-size-grid.js +12 -12
  236. package/es/components/virtual-list/components/dynamic-size-list.d.ts +13 -12
  237. package/es/components/virtual-list/components/dynamic-size-list.js +7 -7
  238. package/es/components/virtual-list/components/fixed-size-grid.d.ts +6 -6
  239. package/es/components/virtual-list/components/fixed-size-list.d.ts +13 -12
  240. package/es/components/virtual-list/components/fixed-size-list.js +8 -8
  241. package/es/components/virtual-list/components/scrollbar.js +59 -66
  242. package/es/components/virtual-list/defaults.d.ts +0 -4
  243. package/es/components/virtual-list/defaults.js +11 -15
  244. package/es/components/virtual-list/hooks/use-cache.d.ts +1 -1
  245. package/es/components/virtual-list/hooks/use-cache.js +6 -6
  246. package/es/components/virtual-list/hooks/use-wheel.js +1 -1
  247. package/es/components/virtual-list/index.d.ts +6 -4
  248. package/es/components/virtual-list/index.js +4 -4
  249. package/es/components/virtual-list/props.d.ts +11 -7
  250. package/es/components/virtual-list/props.js +24 -30
  251. package/es/components/virtual-list/types.d.ts +1 -1
  252. package/es/components/virtual-list/utils.d.ts +1 -2
  253. package/es/components/virtual-list/utils.js +16 -18
  254. package/es/hooks/index.d.ts +3 -1
  255. package/es/hooks/index.js +49 -46
  256. package/es/hooks/use-calc-input-width/index.d.ts +7 -0
  257. package/es/hooks/use-calc-input-width/index.js +17 -0
  258. package/es/hooks/use-composition/index.d.ts +12 -0
  259. package/es/hooks/use-composition/index.js +28 -0
  260. package/es/hooks/use-delayed-toggle/index.d.ts +8 -4
  261. package/es/hooks/use-delayed-toggle/index.js +52 -17
  262. package/es/hooks/use-empty-values/index.d.ts +16 -0
  263. package/es/hooks/use-empty-values/index.js +37 -0
  264. package/es/hooks/use-focus-controller/index.d.ts +27 -0
  265. package/es/hooks/use-focus-controller/index.js +38 -0
  266. package/es/hooks/use-id/index.d.ts +1 -1
  267. package/es/hooks/use-id/index.js +11 -11
  268. package/es/hooks/use-namespace/index.d.ts +5 -6
  269. package/es/hooks/use-namespace/index.js +13 -15
  270. package/es/index.js +459 -451
  271. package/es/package.json.d.ts +2 -2
  272. package/es/package.json.js +1 -1
  273. package/es/utils/helper.d.ts +1 -0
  274. package/es/utils/helper.js +3 -2
  275. package/es/utils/index.js +49 -48
  276. package/lib/components/alert/alert.vue.d.ts +1 -11
  277. package/lib/components/alert/alert.vue2.cjs +1 -1
  278. package/lib/components/alert/index.d.ts +28 -76
  279. package/lib/components/autocomplete/autocomplete.vue.d.ts +14 -14
  280. package/lib/components/autocomplete/autocomplete.vue2.cjs +1 -1
  281. package/lib/components/autocomplete/index.d.ts +42 -42
  282. package/lib/components/backtop/backtop.vue.d.ts +1 -15
  283. package/lib/components/backtop/backtop.vue2.cjs +1 -1
  284. package/lib/components/backtop/index.d.ts +3 -9
  285. package/lib/components/backtop/types.cjs +1 -0
  286. package/lib/components/backtop/types.d.ts +14 -0
  287. package/lib/components/button/button-custom.d.ts +1 -1
  288. package/lib/components/button/button.vue.d.ts +3 -50
  289. package/lib/components/button/button.vue2.cjs +1 -1
  290. package/lib/components/button/index.d.ts +39 -40
  291. package/lib/components/button/types.d.ts +47 -1
  292. package/lib/components/button/use-button.d.ts +5 -5
  293. package/lib/components/card/index.d.ts +3 -3
  294. package/lib/components/carousel/carousel.vue.d.ts +1 -1
  295. package/lib/components/carousel/index.d.ts +18 -18
  296. package/lib/components/carousel/use-carousel.cjs +1 -1
  297. package/lib/components/checkbox/checkbox-group.vue.d.ts +1 -1
  298. package/lib/components/checkbox/index.d.ts +42 -42
  299. package/lib/components/color-picker/components/hue-slider.vue.d.ts +3 -3
  300. package/lib/components/color-picker/components/predefine.vue.d.ts +3 -3
  301. package/lib/components/color-picker/components/sv-panel.vue.d.ts +3 -3
  302. package/lib/components/config-provider/hooks/use-global-config.d.ts +3 -3
  303. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  304. package/lib/components/context-menu/index.cjs +1 -1
  305. package/lib/components/context-menu/types.cjs +1 -1
  306. package/lib/components/context-menu/types.d.ts +1 -1
  307. package/lib/components/date-picker/composables/use-basic-date-table.cjs +1 -0
  308. package/lib/components/date-picker/composables/use-basic-date-table.d.ts +188 -0
  309. package/lib/components/date-picker/composables/use-month-range-header.d.ts +1 -1
  310. package/lib/components/date-picker/composables/use-panel-date-range.cjs +1 -0
  311. package/lib/components/date-picker/composables/use-panel-date-range.d.ts +29 -0
  312. package/lib/components/date-picker/composables/use-range-picker.cjs +1 -1
  313. package/lib/components/date-picker/composables/use-range-picker.d.ts +46 -42
  314. package/lib/components/date-picker/composables/use-shortcut.cjs +1 -1
  315. package/lib/components/date-picker/composables/use-year-range-header.cjs +1 -0
  316. package/lib/components/date-picker/composables/use-year-range-header.d.ts +16 -0
  317. package/lib/components/date-picker/constants.cjs +1 -1
  318. package/lib/components/date-picker/constants.d.ts +2 -15
  319. package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -1
  320. package/lib/components/date-picker/date-picker-com/basic-cell-render.d.ts +3 -1
  321. package/lib/components/date-picker/date-picker-com/basic-date-table.vue.d.ts +14 -23
  322. package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -1
  323. package/lib/components/date-picker/date-picker-com/basic-month-table.vue.d.ts +2 -2
  324. package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -1
  325. package/lib/components/date-picker/date-picker-com/basic-year-table.vue.d.ts +50 -9
  326. package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -1
  327. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.d.ts +13 -3
  328. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -1
  329. package/lib/components/date-picker/date-picker-com/panel-date-range.vue.d.ts +16 -3
  330. package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -1
  331. package/lib/components/date-picker/date-picker-com/panel-month-range.vue.d.ts +6 -3
  332. package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -1
  333. package/lib/components/date-picker/date-picker-com/panel-year-range.vue.cjs +1 -0
  334. package/lib/components/date-picker/date-picker-com/panel-year-range.vue.d.ts +35 -0
  335. package/lib/components/date-picker/date-picker-com/panel-year-range.vue2.cjs +1 -0
  336. package/lib/components/date-picker/date-picker.cjs +1 -1
  337. package/lib/components/date-picker/date-picker.d.ts +70 -40
  338. package/lib/components/date-picker/date-picker.type.d.ts +2 -1
  339. package/lib/components/date-picker/index.cjs +1 -1
  340. package/lib/components/date-picker/index.d.ts +126 -68
  341. package/lib/components/date-picker/instance.cjs +1 -0
  342. package/lib/components/date-picker/instance.d.ts +9 -0
  343. package/lib/components/date-picker/panel-utils.cjs +1 -1
  344. package/lib/components/date-picker/panel-utils.d.ts +48 -0
  345. package/lib/components/date-picker/props/basic-cell.d.ts +2 -1
  346. package/lib/components/date-picker/props/basic-date-table.cjs +1 -1
  347. package/lib/components/date-picker/props/basic-date-table.d.ts +7 -2
  348. package/lib/components/date-picker/props/basic-month-table.d.ts +3 -2
  349. package/lib/components/date-picker/props/basic-year-table.cjs +1 -1
  350. package/lib/components/date-picker/props/basic-year-table.d.ts +23 -5
  351. package/lib/components/date-picker/props/date-picker.d.ts +26 -12
  352. package/lib/components/date-picker/props/panel-date-pick.d.ts +6 -1
  353. package/lib/components/date-picker/props/panel-date-range.d.ts +7 -1
  354. package/lib/components/date-picker/props/panel-month-range.cjs +1 -1
  355. package/lib/components/date-picker/props/panel-month-range.d.ts +3 -1
  356. package/lib/components/date-picker/props/panel-year-range.cjs +1 -0
  357. package/lib/components/date-picker/props/panel-year-range.d.ts +14 -0
  358. package/lib/components/date-picker/props/shared.cjs +1 -1
  359. package/lib/components/date-picker/props/shared.d.ts +9 -2
  360. package/lib/components/date-picker/style/css.cjs +1 -1
  361. package/lib/components/date-picker/style/css.d.ts +4 -0
  362. package/lib/components/date-picker/utils.cjs +1 -1
  363. package/lib/components/date-picker/utils.d.ts +9 -2
  364. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  365. package/lib/components/date-time-select/index.d.ts +1 -0
  366. package/lib/components/date-time-select/types.d.ts +4 -0
  367. package/lib/components/dialog/dialog-content.vue2.cjs +1 -1
  368. package/lib/components/dropdown/dropdown-item-impl.vue.cjs +1 -1
  369. package/lib/components/dropdown/dropdown-item-impl.vue.d.ts +4 -4
  370. package/lib/components/dropdown/dropdown-item-impl.vue2.cjs +1 -1
  371. package/lib/components/dropdown/dropdown.vue.d.ts +6 -29
  372. package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
  373. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  374. package/lib/components/form/form-item.vue.d.ts +2 -3
  375. package/lib/components/form/form-item.vue2.cjs +1 -1
  376. package/lib/components/form/form-label-wrap.cjs +1 -1
  377. package/lib/components/form/form.vue2.cjs +1 -1
  378. package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
  379. package/lib/components/form/hooks/use-form-item.cjs +1 -1
  380. package/lib/components/form/index.d.ts +75 -48
  381. package/lib/components/form/types.d.ts +7 -1
  382. package/lib/components/form/utils.cjs +1 -1
  383. package/lib/components/form/utils.d.ts +1 -1
  384. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  385. package/lib/components/icon/icon.vue2.cjs +1 -1
  386. package/lib/components/icon/index.cjs +1 -1
  387. package/lib/components/icon/index.d.ts +0 -1
  388. package/lib/components/index.cjs +1 -1
  389. package/lib/components/input/input.vue2.cjs +1 -1
  390. package/lib/components/link/index.d.ts +3 -3
  391. package/lib/components/md-code-demo/md-code-demo.cjs +1 -1
  392. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  393. package/lib/components/md-vue-playground/md-vue-playground.vue2.cjs +1 -1
  394. package/lib/components/menu/menu-item.vue.d.ts +1 -1
  395. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  396. package/lib/components/menu/sub-menu.vue.d.ts +2 -1
  397. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  398. package/lib/components/modal/index.d.ts +33 -45
  399. package/lib/components/modal/modal-footer-action.vue2.cjs +1 -1
  400. package/lib/components/modal/modal.vue.d.ts +2 -2
  401. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  402. package/lib/components/multiple-tabs/tab-content.vue2.cjs +1 -1
  403. package/lib/components/multiple-tabs/use/use-tab-dropdown.cjs +1 -1
  404. package/lib/components/popconfirm/index.d.ts +24 -24
  405. package/lib/components/popconfirm/popconfirm.vue.d.ts +2 -2
  406. package/lib/components/popover/index.d.ts +5 -5
  407. package/lib/components/popover/popover.vue.d.ts +2 -2
  408. package/lib/components/popper/composables/use-content.cjs +1 -1
  409. package/lib/components/popper/trigger.vue2.cjs +1 -1
  410. package/lib/components/progress/index.d.ts +3 -3
  411. package/lib/components/result/result.vue.d.ts +1 -1
  412. package/lib/components/result/result.vue2.cjs +1 -1
  413. package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -1
  414. package/lib/components/scrollbar/index.cjs +1 -1
  415. package/lib/components/select/defaults.cjs +1 -1
  416. package/lib/components/select/defaults.d.ts +99 -15
  417. package/lib/components/select/group-item.vue.cjs +1 -1
  418. package/lib/components/select/group-item.vue.d.ts +10 -5
  419. package/lib/components/select/group-item.vue2.cjs +1 -1
  420. package/lib/components/select/index.cjs +1 -1
  421. package/lib/components/select/index.d.ts +2782 -0
  422. package/lib/components/select/option-item.vue.cjs +1 -1
  423. package/lib/components/select/option-item.vue.d.ts +40 -26
  424. package/lib/components/select/option-item.vue2.cjs +1 -1
  425. package/lib/components/select/select-dropdown.cjs +1 -1
  426. package/lib/components/select/select-dropdown.d.ts +29 -3
  427. package/lib/components/select/select.types.d.ts +19 -11
  428. package/lib/components/select/select.vue.cjs +1 -1
  429. package/lib/components/select/select.vue.d.ts +2778 -0
  430. package/lib/components/select/select.vue2.cjs +1 -1
  431. package/lib/components/select/token.cjs +1 -1
  432. package/lib/components/select/token.d.ts +10 -12
  433. package/lib/components/select/useAllowCreate.cjs +1 -1
  434. package/lib/components/select/useAllowCreate.d.ts +3 -3
  435. package/lib/components/select/useOption.d.ts +3 -3
  436. package/lib/components/select/useProps.cjs +1 -0
  437. package/lib/components/select/useProps.d.ts +21 -0
  438. package/lib/components/select/useSelect.cjs +1 -1
  439. package/lib/components/select/useSelect.d.ts +940 -121
  440. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  441. package/lib/components/steps/index.d.ts +12 -12
  442. package/lib/components/super-form/component-map.cjs +1 -1
  443. package/lib/components/super-form/style/css.cjs +1 -1
  444. package/lib/components/super-form/super-form-action.vue2.cjs +1 -1
  445. package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
  446. package/lib/components/super-form/super-form.vue.d.ts +1 -1
  447. package/lib/components/super-form/super-form.vue2.cjs +1 -1
  448. package/lib/components/super-form/types.d.ts +3 -1
  449. package/lib/components/switch/index.d.ts +6 -6
  450. package/lib/components/table/field.cjs +1 -1
  451. package/lib/components/table/index.d.ts +24 -24
  452. package/lib/components/table/table.vue.d.ts +1 -1
  453. package/lib/components/tabs/tab-nav.vue.d.ts +2 -2
  454. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  455. package/lib/components/tabs/tabs.vue.d.ts +2 -1
  456. package/lib/components/time-picker/common/picker-range-trigger.vue.cjs +1 -0
  457. package/lib/components/time-picker/common/picker-range-trigger.vue.d.ts +84 -0
  458. package/lib/components/time-picker/common/picker-range-trigger.vue2.cjs +1 -0
  459. package/lib/components/time-picker/common/picker.vue.d.ts +71 -41
  460. package/lib/components/time-picker/common/picker.vue2.cjs +1 -1
  461. package/lib/components/time-picker/common/props.cjs +1 -1
  462. package/lib/components/time-picker/common/props.d.ts +76 -12
  463. package/lib/components/time-picker/composables/use-time-panel.d.ts +4 -4
  464. package/lib/components/time-picker/composables/use-time-picker.d.ts +28 -29
  465. package/lib/components/time-picker/constants.cjs +1 -1
  466. package/lib/components/time-picker/constants.d.ts +5 -0
  467. package/lib/components/time-picker/index.cjs +1 -1
  468. package/lib/components/time-picker/index.d.ts +120 -74
  469. package/lib/components/time-picker/props/basic-time-spinner.d.ts +5 -4
  470. package/lib/components/time-picker/props/panel-time-picker.d.ts +2 -1
  471. package/lib/components/time-picker/props/panel-time-range.d.ts +2 -1
  472. package/lib/components/time-picker/props/shared.d.ts +4 -5
  473. package/lib/components/time-picker/style/css.cjs +1 -1
  474. package/lib/components/time-picker/style/css.d.ts +3 -0
  475. package/lib/components/time-picker/style/index.cjs +1 -1
  476. package/lib/components/time-picker/style/index.d.ts +3 -0
  477. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.d.ts +6 -6
  478. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -1
  479. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.d.ts +4 -4
  480. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -1
  481. package/lib/components/time-picker/time-picker-com/panel-time-range.vue.d.ts +4 -4
  482. package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -1
  483. package/lib/components/time-picker/time-picker.cjs +1 -1
  484. package/lib/components/time-picker/time-picker.d.ts +60 -37
  485. package/lib/components/time-picker/utils.cjs +1 -1
  486. package/lib/components/time-picker/utils.d.ts +5 -2
  487. package/lib/components/time-select/time-select.vue.d.ts +1 -1
  488. package/lib/components/timeline/index.d.ts +6 -6
  489. package/lib/components/tooltip/content.vue2.cjs +1 -1
  490. package/lib/components/tooltip/index.d.ts +3 -3
  491. package/lib/components/tooltip/tooltip.vue.d.ts +1 -1
  492. package/lib/components/tooltip/tooltip.vue2.cjs +1 -1
  493. package/lib/components/tooltip/utils.cjs +1 -1
  494. package/lib/components/tree/tree-node.vue.cjs +1 -1
  495. package/lib/components/tree/tree-node.vue.d.ts +33 -33
  496. package/lib/components/tree/tree-node.vue2.cjs +1 -1
  497. package/lib/components/upload/index.d.ts +15 -15
  498. package/lib/components/upload/upload-content.vue.d.ts +1 -1
  499. package/lib/components/upload/upload.vue.d.ts +1 -1
  500. package/lib/components/virtual-list/builders/build-grid.cjs +1 -1
  501. package/lib/components/virtual-list/builders/build-grid.d.ts +9 -9
  502. package/lib/components/virtual-list/builders/build-list.cjs +1 -1
  503. package/lib/components/virtual-list/builders/build-list.d.ts +13 -13
  504. package/lib/components/virtual-list/components/dynamic-size-grid.cjs +1 -1
  505. package/lib/components/virtual-list/components/dynamic-size-grid.d.ts +6 -6
  506. package/lib/components/virtual-list/components/dynamic-size-list.cjs +1 -1
  507. package/lib/components/virtual-list/components/dynamic-size-list.d.ts +13 -12
  508. package/lib/components/virtual-list/components/fixed-size-grid.d.ts +6 -6
  509. package/lib/components/virtual-list/components/fixed-size-list.cjs +1 -1
  510. package/lib/components/virtual-list/components/fixed-size-list.d.ts +13 -12
  511. package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
  512. package/lib/components/virtual-list/defaults.cjs +1 -1
  513. package/lib/components/virtual-list/defaults.d.ts +0 -4
  514. package/lib/components/virtual-list/hooks/use-cache.cjs +1 -1
  515. package/lib/components/virtual-list/hooks/use-cache.d.ts +1 -1
  516. package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -1
  517. package/lib/components/virtual-list/index.cjs +1 -1
  518. package/lib/components/virtual-list/index.d.ts +6 -4
  519. package/lib/components/virtual-list/props.cjs +1 -1
  520. package/lib/components/virtual-list/props.d.ts +11 -7
  521. package/lib/components/virtual-list/types.d.ts +1 -1
  522. package/lib/components/virtual-list/utils.cjs +1 -1
  523. package/lib/components/virtual-list/utils.d.ts +1 -2
  524. package/lib/hooks/index.cjs +1 -1
  525. package/lib/hooks/index.d.ts +3 -1
  526. package/lib/hooks/use-calc-input-width/index.cjs +1 -0
  527. package/lib/hooks/use-calc-input-width/index.d.ts +7 -0
  528. package/lib/hooks/use-composition/index.cjs +1 -0
  529. package/lib/hooks/use-composition/index.d.ts +12 -0
  530. package/lib/hooks/use-delayed-toggle/index.cjs +1 -1
  531. package/lib/hooks/use-delayed-toggle/index.d.ts +8 -4
  532. package/lib/hooks/use-empty-values/index.cjs +1 -0
  533. package/lib/hooks/use-empty-values/index.d.ts +16 -0
  534. package/lib/hooks/use-focus-controller/index.cjs +1 -0
  535. package/lib/hooks/use-focus-controller/index.d.ts +27 -0
  536. package/lib/hooks/use-id/index.cjs +2 -2
  537. package/lib/hooks/use-id/index.d.ts +1 -1
  538. package/lib/hooks/use-namespace/index.cjs +1 -1
  539. package/lib/hooks/use-namespace/index.d.ts +5 -6
  540. package/lib/index.cjs +1 -1
  541. package/lib/package.json.cjs +1 -1
  542. package/lib/package.json.d.ts +2 -2
  543. package/lib/utils/helper.cjs +1 -1
  544. package/lib/utils/helper.d.ts +1 -0
  545. package/lib/utils/index.cjs +1 -1
  546. package/package.json +5 -5
  547. package/theme-style/index.css +1 -1
  548. package/theme-style/src/common/var.scss +41 -0
  549. package/theme-style/src/date-picker/date-picker.scss +31 -31
  550. package/theme-style/src/date-picker/date-range-picker.scss +60 -37
  551. package/theme-style/src/date-picker/date-table.scss +20 -20
  552. package/theme-style/src/date-picker/month-table.scss +40 -25
  553. package/theme-style/src/date-picker/picker-panel.scss +27 -28
  554. package/theme-style/src/date-picker/picker.scss +60 -56
  555. package/theme-style/src/date-picker/time-picker.scss +21 -21
  556. package/theme-style/src/date-picker/time-range-picker.scss +6 -6
  557. package/theme-style/src/date-picker/time-spinner.scss +24 -22
  558. package/theme-style/src/date-picker/year-table.scss +61 -14
  559. package/theme-style/src/option-group.scss +7 -28
  560. package/theme-style/src/option.scss +46 -12
  561. package/theme-style/src/select-dropdown-v2.scss +31 -37
  562. package/theme-style/src/select.scss +136 -220
  563. package/theme-style/src/tabs.scss +6 -66
  564. package/theme-style/src/tabss.scss +4 -4
  565. package/theme-style/vft-date-picker.css +1 -1
  566. package/theme-style/vft-option-group.css +1 -1
  567. package/theme-style/vft-option.css +1 -1
  568. package/theme-style/vft-select-dropdown-v2.css +1 -1
  569. package/theme-style/vft-select.css +1 -1
  570. package/theme-style/vft-tabs.css +1 -1
  571. package/theme-style/vft-tabss.css +1 -1
  572. package/theme-style/vft-time-picker.css +1 -1
  573. package/theme-style/vft-time-select.css +1 -1
  574. package/web-types.json +1 -1
  575. package/es/components/select/useInput.d.ts +0 -5
  576. package/es/components/select/useInput.js +0 -20
  577. package/es/components/select/util.d.ts +0 -2
  578. package/es/components/select/util.js +0 -18
  579. package/lib/components/select/useInput.cjs +0 -1
  580. package/lib/components/select/useInput.d.ts +0 -5
  581. package/lib/components/select/util.cjs +0 -1
  582. package/lib/components/select/util.d.ts +0 -2
package/es/index.js CHANGED
@@ -2,502 +2,510 @@ import e from "./defaults.js";
2
2
  import { CompResolver as a } from "./comp-resolver.js";
3
3
  import { makeInstaller as i } from "./make-installer.js";
4
4
  import { VftAlert as n } from "./components/alert/index.js";
5
- import { VftAvatar as V } from "./components/avatar/index.js";
5
+ import { VftAvatar as u } from "./components/avatar/index.js";
6
6
  import { VftBacktop as d } from "./components/backtop/index.js";
7
- import { VftButton as I, VftButtonGroup as C } from "./components/button/index.js";
8
- import { VftCard as T } from "./components/card/index.js";
9
- import { VftCheckTag as D } from "./components/check-tag/index.js";
10
- import { VftCheckbox as S, VftCheckboxButton as F, VftCheckboxGroup as _ } from "./components/checkbox/index.js";
7
+ import { VftButton as E, VftButtonGroup as c } from "./components/button/index.js";
8
+ import { VftCard as C } from "./components/card/index.js";
9
+ import { VftCheckTag as P } from "./components/check-tag/index.js";
10
+ import { VftCheckbox as _, VftCheckboxButton as S, VftCheckboxGroup as F } from "./components/checkbox/index.js";
11
11
  import { VftClamp as M } from "./components/clamp/index.js";
12
- import { VftClampToggle as L } from "./components/clamp-toggle/index.js";
13
- import { VftClampTooltip as A } from "./components/clamp-tooltip/index.js";
14
- import { VftCol as v } from "./components/col/index.js";
15
- import { VftCollapseTransition as O } from "./components/collapse-transition/index.js";
12
+ import { VftClampToggle as b } from "./components/clamp-toggle/index.js";
13
+ import { VftClampTooltip as L } from "./components/clamp-tooltip/index.js";
14
+ import { VftCol as R } from "./components/col/index.js";
15
+ import { VftCollapseTransition as v } from "./components/collapse-transition/index.js";
16
16
  import { VftColorPicker as h } from "./components/color-picker/index.js";
17
17
  import { VftConfigProvider as z } from "./components/config-provider/index.js";
18
- import { VftAside as Y, VftContainer as U, VftFooter as B, VftHeader as H, VftMain as J } from "./components/container/index.js";
18
+ import { VftAside as Y, VftContainer as J, VftFooter as U, VftHeader as B, VftMain as H } from "./components/container/index.js";
19
19
  import { createContextMenu as j, destroyContextMenu as q } from "./components/context-menu/createContextMenu.js";
20
+ import { VftIcon as Q } from "./components/icon/index.js";
20
21
  import "vue";
21
- import { useContextMenu as Q } from "./components/context-menu/useContextMenu.js";
22
- import { VftDatePicker as $ } from "./components/date-picker/index.js";
23
- import { VftDateTimeSelect as oe } from "./components/date-time-select/index.js";
24
- import { VftDescriptions as te, VftDescriptionsItem as fe } from "./components/descriptions/index.js";
25
- import { VftDialog as me } from "./components/dialog/index.js";
26
- import { VftDivider as xe } from "./components/divider/index.js";
27
- import { VftDrawer as se } from "./components/drawer/index.js";
28
- import { VftDropdown as le, VftDropdownItem as Ve, VftDropdownMenu as ue } from "./components/dropdown/index.js";
22
+ import { useContextMenu as $ } from "./components/context-menu/useContextMenu.js";
23
+ import { VftDatePicker as oe } from "./components/date-picker/index.js";
24
+ import { VftDateTimeSelect as te } from "./components/date-time-select/index.js";
25
+ import { VftDescriptions as pe, VftDescriptionsItem as me } from "./components/descriptions/index.js";
26
+ import { VftDialog as xe } from "./components/dialog/index.js";
27
+ import { VftDivider as se } from "./components/divider/index.js";
28
+ import { VftDrawer as le } from "./components/drawer/index.js";
29
+ import { VftDropdown as Ve, VftDropdownItem as de, VftDropdownMenu as Ie } from "./components/dropdown/index.js";
29
30
  import { VftEmpty as ce } from "./components/empty/index.js";
30
31
  import { VftException as Ce } from "./components/exception/index.js";
31
- import { VftFooterLayout as Te } from "./components/footer-layout/index.js";
32
- import { VftForm as De, VftFormItem as Pe } from "./components/form/index.js";
33
- import { VftFullScreen as Fe } from "./components/full-screen/index.js";
34
- import { VftHeaderLayout as ye } from "./components/header-layout/index.js";
35
- import { VftHorizontalMenu as be } from "./components/horizontal-menu/index.js";
36
- import { VftIcon as Ne, VftIcon as Ae } from "./components/icon/index.js";
37
- import { VftIconText as ve } from "./components/icon-text/index.js";
32
+ import { VftFooterLayout as Pe } from "./components/footer-layout/index.js";
33
+ import { VftForm as _e, VftFormItem as Se } from "./components/form/index.js";
34
+ import { VftFullScreen as ye } from "./components/full-screen/index.js";
35
+ import { VftHeaderLayout as Ne } from "./components/header-layout/index.js";
36
+ import { VftHorizontalMenu as Ae } from "./components/horizontal-menu/index.js";
37
+ import { VftIconText as Ke } from "./components/icon-text/index.js";
38
38
  import { VftIframeLayout as Oe } from "./components/iframe-layout/index.js";
39
- import { VftImage as he, VftPImage as we } from "./components/image/index.js";
40
- import { VftImageViewer as Ge } from "./components/image-viewer/index.js";
41
- import { VftInput as Ue } from "./components/input/index.js";
42
- import { VftInputNumber as He } from "./components/input-number/index.js";
43
- import { VftLink as We } from "./components/link/index.js";
44
- import { VftListCell as qe } from "./components/list-cell/index.js";
45
- import { VftLogo as Qe } from "./components/logo/index.js";
46
- import { VftMenu as $e, VftMenuItem as eo, VftMenuItemGroup as oo, VftSubMenu as ro } from "./components/menu/index.js";
47
- import { VftMultipleTabs as fo } from "./components/multiple-tabs/index.js";
48
- import { VftOverlay as mo } from "./components/overlay/index.js";
49
- import { VftPageWrapper as xo } from "./components/page-wrapper/index.js";
50
- import { VftPagination as so } from "./components/pagination/index.js";
51
- import { VftPopconfirm as lo } from "./components/popconfirm/index.js";
39
+ import { VftImage as ke, VftPImage as he } from "./components/image/index.js";
40
+ import { VftImageViewer as ze } from "./components/image-viewer/index.js";
41
+ import { VftInput as Ye } from "./components/input/index.js";
42
+ import { VftInputNumber as Ue } from "./components/input-number/index.js";
43
+ import { VftLink as He } from "./components/link/index.js";
44
+ import { VftListCell as je } from "./components/list-cell/index.js";
45
+ import { VftLogo as Ze } from "./components/logo/index.js";
46
+ import { VftMenu as Xe, VftMenuItem as $e, VftMenuItemGroup as eo, VftSubMenu as oo } from "./components/menu/index.js";
47
+ import { VftMultipleTabs as to } from "./components/multiple-tabs/index.js";
48
+ import { VftOverlay as po } from "./components/overlay/index.js";
49
+ import { VftPageWrapper as ao } from "./components/page-wrapper/index.js";
50
+ import { VftPagination as io } from "./components/pagination/index.js";
51
+ import { VftPopconfirm as no } from "./components/popconfirm/index.js";
52
52
  import { VftPopover as uo } from "./components/popover/index.js";
53
53
  import { VftPopper as Io } from "./components/popper/index.js";
54
- import { VftQrcode as Eo } from "./components/qrcode/index.js";
55
- import { VftRadio as go, VftRadioButton as Do, VftRadioGroup as Po } from "./components/radio/index.js";
56
- import { VftResult as Fo } from "./components/result/index.js";
57
- import { VftRouterViewContent as yo } from "./components/router-view-content/index.js";
58
- import { VftRow as bo } from "./components/row/index.js";
59
- import { VftScrollbar as No } from "./components/scrollbar/index.js";
60
- import { VftSearch as Ko } from "./components/search/index.js";
54
+ import { VftQrcode as co } from "./components/qrcode/index.js";
55
+ import { VftRadio as Co, VftRadioButton as go, VftRadioGroup as Po } from "./components/radio/index.js";
56
+ import { VftResult as _o } from "./components/result/index.js";
57
+ import { VftRouterViewContent as Fo } from "./components/router-view-content/index.js";
58
+ import { VftRow as Mo } from "./components/row/index.js";
59
+ import { VftScrollbar as bo } from "./components/scrollbar/index.js";
60
+ import { VftSearch as Lo } from "./components/search/index.js";
61
61
  import { VftSelect as Ro } from "./components/select/index.js";
62
- import { VftSideMenu as ko } from "./components/side-menu/index.js";
63
- import { VftSkeleton as wo, VftSkeletonItem as zo } from "./components/skeleton/index.js";
64
- import { VftSlider as Yo } from "./components/slider/index.js";
65
- import { VftSpace as Bo } from "./components/space/index.js";
66
- import { VftSwitch as Jo } from "./components/switch/index.js";
67
- import { VftTable as jo } from "./components/table/index.js";
68
- import { VftTabPane as Zo, VftTabs as Qo } from "./components/tabs/index.js";
69
- import { VftTag as $o } from "./components/tag/index.js";
70
- import { VftTimePicker as or } from "./components/time-picker/index.js";
71
- import { VftTooltip as tr } from "./components/tooltip/index.js";
72
- import { VftTree as pr } from "./components/tree/index.js";
73
- import { VftVerifyCode as ar } from "./components/verify-code/index.js";
74
- import { default as ir } from "./components/virtual-list/components/dynamic-size-grid.js";
75
- import { default as nr } from "./components/virtual-list/components/dynamic-size-list.js";
76
- import { default as Vr } from "./components/virtual-list/components/fixed-size-grid.js";
77
- import { default as dr } from "./components/virtual-list/components/fixed-size-list.js";
78
- import { virtualizedGridProps as Ir, virtualizedListProps as Cr, virtualizedProps as Er, virtualizedScrollbarProps as Tr } from "./components/virtual-list/props.js";
79
- import { VftStep as Dr, VftSteps as Pr } from "./components/steps/index.js";
80
- import { VftAutocomplete as Fr } from "./components/autocomplete/index.js";
81
- import { VftModal as yr } from "./components/modal/index.js";
82
- import { VftProgress as br } from "./components/progress/index.js";
83
- import { VftSuperForm as Nr } from "./components/super-form/index.js";
84
- import { VftUpload as Kr } from "./components/upload/index.js";
62
+ import { VftSideMenu as vo } from "./components/side-menu/index.js";
63
+ import { VftSkeleton as ho, VftSkeletonItem as wo } from "./components/skeleton/index.js";
64
+ import { VftSlider as Go } from "./components/slider/index.js";
65
+ import { VftSpace as Jo } from "./components/space/index.js";
66
+ import { VftSwitch as Bo } from "./components/switch/index.js";
67
+ import { VftTable as Wo } from "./components/table/index.js";
68
+ import { VftTabPane as qo, VftTabs as Zo } from "./components/tabs/index.js";
69
+ import { VftTag as Xo } from "./components/tag/index.js";
70
+ import { VftTimePicker as er } from "./components/time-picker/index.js";
71
+ import { VftTooltip as rr } from "./components/tooltip/index.js";
72
+ import { VftTree as fr } from "./components/tree/index.js";
73
+ import { VftVerifyCode as mr } from "./components/verify-code/index.js";
74
+ import { default as xr } from "./components/virtual-list/components/fixed-size-list.js";
75
+ import { default as sr } from "./components/virtual-list/components/dynamic-size-list.js";
76
+ import { default as lr } from "./components/virtual-list/components/fixed-size-grid.js";
77
+ import { default as Vr } from "./components/virtual-list/components/dynamic-size-grid.js";
78
+ import { virtualizedGridProps as Ir, virtualizedListProps as Er, virtualizedProps as cr, virtualizedScrollbarProps as Tr } from "./components/virtual-list/props.js";
79
+ import { VftStep as gr, VftSteps as Pr } from "./components/steps/index.js";
80
+ import { VftAutocomplete as _r } from "./components/autocomplete/index.js";
81
+ import { VftModal as Fr } from "./components/modal/index.js";
82
+ import { VftProgress as Mr } from "./components/progress/index.js";
83
+ import { VftSuperForm as br } from "./components/super-form/index.js";
84
+ import { VftUpload as Lr } from "./components/upload/index.js";
85
85
  import { VftCarousel as Rr, VftCarouselItem as Or } from "./components/carousel/index.js";
86
- import { VftTimeline as hr, VftTimelineItem as wr } from "./components/timeline/index.js";
87
- import { VftMdCodeDemo as Gr } from "./components/md-code-demo/index.js";
88
- import { VftMdCodeTabs as Ur } from "./components/md-code-tabs/index.js";
89
- import { VftMdComment as Hr } from "./components/md-comment/index.js";
90
- import { VftMdContainer as Wr } from "./components/md-container/index.js";
91
- import { VftMdTabs as qr } from "./components/md-tabs/index.js";
92
- import { VftMdVuePlayground as Qr } from "./components/md-vue-playground/index.js";
93
- import { VftLoading as $r } from "./components/loading/index.js";
94
- import { VftMessage as ot, VftMessage as rt } from "./components/message/index.js";
95
- import { VftInfiniteScroll as ft } from "./components/infinite-scroll/index.js";
96
- import { VftProgressI as mt } from "./components/progress-i/index.js";
97
- import { EVENT_CODE as xt } from "./constants/aria.js";
98
- import { WEEK_DAYS as st, datePickTypes as nt } from "./constants/date.js";
99
- import { CHANGE_EVENT as Vt, INPUT_EVENT as ut, UPDATE_MODEL_EVENT as dt } from "./constants/event.js";
86
+ import { VftTimeline as kr, VftTimelineItem as hr } from "./components/timeline/index.js";
87
+ import { VftMdCodeDemo as zr } from "./components/md-code-demo/index.js";
88
+ import { VftMdCodeTabs as Yr } from "./components/md-code-tabs/index.js";
89
+ import { VftMdComment as Ur } from "./components/md-comment/index.js";
90
+ import { VftMdContainer as Hr } from "./components/md-container/index.js";
91
+ import { VftMdTabs as jr } from "./components/md-tabs/index.js";
92
+ import { VftMdVuePlayground as Zr } from "./components/md-vue-playground/index.js";
93
+ import { VftLoading as Xr } from "./components/loading/index.js";
94
+ import { VftMessage as et, VftMessage as ot } from "./components/message/index.js";
95
+ import { VftInfiniteScroll as tt } from "./components/infinite-scroll/index.js";
96
+ import { VftProgressI as pt } from "./components/progress-i/index.js";
97
+ import { EVENT_CODE as at } from "./constants/aria.js";
98
+ import { WEEK_DAYS as it, datePickTypes as st } from "./constants/date.js";
99
+ import { CHANGE_EVENT as lt, INPUT_EVENT as ut, UPDATE_MODEL_EVENT as Vt } from "./constants/event.js";
100
100
  import { INSTALLED_KEY as It } from "./constants/key.js";
101
- import { componentSizeMap as Et, componentSizes as Tt } from "./constants/size.js";
102
- import { useAttrs as Dt } from "./hooks/use-attrs/index.js";
103
- import { useDelayedToggle as St } from "./hooks/use-delayed-toggle/index.js";
104
- import { useDraggable as _t } from "./hooks/use-draggable/index.js";
105
- import { useFocus as Mt } from "./hooks/use-focus/index.js";
106
- import { FORWARD_REF_INJECTION_KEY as Lt, useForwardRef as Nt, useForwardRefDirective as At } from "./hooks/use-forward-ref/index.js";
107
- import { ID_INJECTION_KEY as vt, useId as Rt, useIdInjection as Ot } from "./hooks/use-id/index.js";
108
- import { useLockscreen as ht } from "./hooks/use-lockscreen/index.js";
109
- import { createModelToggleComposable as zt, useModelToggle as Gt, useModelToggleEmits as Yt } from "./hooks/use-model-toggle/index.js";
110
- import { _bem as Bt, defaultNamespace as Ht, namespaceContextKey as Jt, useGetDerivedNamespace as Wt, useNamespace as jt } from "./hooks/use-namespace/index.js";
111
- import { useOrderedChildren as Zt } from "./hooks/use-ordered-children/index.js";
112
- import { usePopper as Xt } from "./hooks/use-popper/index.js";
113
- import { usePopperContainer as ef, usePopperContainerId as of } from "./hooks/use-popper-container/index.js";
114
- import { useSameTarget as tf } from "./hooks/use-same-target/index.js";
115
- import { SIZE_INJECTION_KEY as pf, useGlobalSize as mf } from "./hooks/use-size/index.js";
116
- import { useThrottleRender as xf } from "./hooks/use-throttle-render/index.js";
117
- import { useTimeout as nf } from "./hooks/use-timeout/index.js";
118
- import { ZINDEX_INJECTION_KEY as Vf, defaultInitialZIndex as uf, useZIndex as df, zIndexContextKey as cf } from "./hooks/use-z-index/index.js";
119
- import { attemptFocus as Cf, focusNode as Ef, getSibling as Tf, isFocusable as gf, isLeaf as Df, isVisible as Pf, obtainAllFocusableElements as Sf, triggerEvent as Ff } from "./utils/dom/aria.js";
120
- import { getClientXY as yf, getOffsetTop as Mf, getOffsetTopDistance as bf, isInContainer as Lf } from "./utils/dom/position.js";
121
- import { getScrollBarWidth as Af, getScrollContainer as Kf, isScroll as vf, scrollIntoView as Rf } from "./utils/dom/scroll.js";
122
- import { debugWarn as kf, throwError as hf } from "./utils/error.js";
123
- import { composeEventHandlers as zf, whenMouse as Gf } from "./utils/event.js";
124
- import { getComponentSize as Uf, getSizeType as Bf, isValidComponentSize as Hf } from "./utils/helper.js";
125
- import { cssVarValue as Wf, generateCssVars as jf, primaryColor as qf, setCssVar as Zf, setPrimaryColorCssvars as Qf } from "./utils/ns-cover.js";
126
- import { mutable as $f } from "./utils/typescript.js";
127
- import { escapeStringRegexp as op } from "./utils/vue/data-helper.js";
128
- import { withInstall as tp, withInstallDirective as fp, withInstallFunction as pp, withNoopInstall as mp } from "./utils/vue/install.js";
129
- import { buildProp as xp, buildProps as ip, definePropType as sp, epPropKey as np, isEpProp as lp } from "./utils/vue/props/runtime.js";
130
- import { cAF as up, rAF as dp } from "./utils/vue/raf.js";
131
- import { composeRefs as Ip } from "./utils/vue/refs.js";
132
- import { PatchFlags as Ep, ensureOnlyChild as Tp, flattedChildren as gp, getFirstValidNode as Dp, getNormalizedProps as Pp, isComment as Sp, isFragment as Fp, isTemplate as _p, isText as yp, isValidElementNode as Mp, renderBlock as bp, renderIf as Lp } from "./utils/vue/vnode.js";
133
- import { default as Ap } from "dayjs";
134
- import { default as vp } from "./components/popper/arrow.vue2.js";
135
- import { default as Op } from "./components/popper/content.vue2.js";
136
- import { default as hp } from "./components/popper/trigger.vue2.js";
137
- import { default as zp } from "./components/time-picker/common/picker.vue2.js";
138
- import { default as Yp } from "./components/time-picker/time-picker-com/panel-time-pick.vue2.js";
139
- import { buttonGroupContextKey as Bp } from "./components/button/constants.js";
140
- import { checkboxGroupContextKey as Jp } from "./components/checkbox/constants.js";
141
- import { configProviderContextKey as jp, messageConfig as qp } from "./components/config-provider/constants.js";
142
- import { provideGlobalConfig as Qp, useGlobalComponentSettings as Xp, useGlobalConfig as $p } from "./components/config-provider/hooks/use-global-config.js";
143
- import { ROOT_PICKER_INJECTION_KEY as om, datePickerConfig as rm } from "./components/date-picker/constants.js";
144
- import { datePickerProps as fm } from "./components/date-picker/props/date-picker.js";
145
- import { dialogInjectionKey as mm } from "./components/dialog/constants.js";
146
- import { useDialog as xm } from "./components/dialog/hooks/use-dialog.js";
147
- import { DROPDOWN_INJECTION_KEY as sm } from "./components/dropdown/tokens.js";
148
- import { EmptyEnum as lm } from "./components/empty/constants.js";
149
- import { formContextKey as um, formItemContextKey as dm } from "./components/form/constants.js";
150
- import { useDisabled as Im, useFormDisabled as Cm, useFormSize as Em, useSize as Tm } from "./components/form/hooks/use-form-common-props.js";
151
- import { useFormItem as Dm, useFormItemInputId as Pm } from "./components/form/hooks/use-form-item.js";
152
- import { MenuTypeEnum as Fm } from "./components/horizontal-menu/constants.js";
153
- import { initAffixTabs as ym, useTabsDrag as Mm } from "./components/multiple-tabs/use/use-multiple-tabs.js";
154
- import { useTabDropdown as Lm } from "./components/multiple-tabs/use/use-tab-dropdown.js";
155
- import { usePagination as Am, vftPaginationKey as Km } from "./components/pagination/usePagination.js";
156
- import { radioGroupKey as Rm } from "./components/radio/constants.js";
157
- import { rowContextKey as km } from "./components/row/constants.js";
158
- import { scrollbarContextKey as wm } from "./components/scrollbar/constants.js";
159
- import { BAR_MAP as Gm, GAP as Ym, renderThumbStyle as Um } from "./components/scrollbar/util.js";
160
- import { selectInjectionKey as Hm } from "./components/select/token.js";
161
- import { sliderContextKey as Wm } from "./components/slider/constants.js";
162
- import { sliderEmits as qm } from "./components/slider/slider.js";
163
- import { spaceProps as Qm } from "./components/space/space.js";
164
- import { useSpace as $m } from "./components/space/use-space.js";
165
- import { ACTION_FIELD as oa, CHECKED_FIELD as ra, CREATE_TIME_FIELD as ta, DATE_FIELD as fa, DATE_TIME_FIELD as pa, ID_FIELD as ma, NAME_FIELD as aa, SEQ_FIELD as xa, STATUS_FIELD as ia, UPDATE_TIME_FIELD as sa } from "./components/table/field.js";
166
- import { useTable as la } from "./components/table/use/use-table.js";
167
- import { addRequire as ua, removeRequire as da, selectMapping as ca } from "./components/table/utils.js";
168
- import { TabsRootContextKey as Ca } from "./components/tabs/types.js";
169
- import { timePickerDefaultProps as Ta } from "./components/time-picker/common/props.js";
170
- import { DEFAULT_FORMATS_DATE as Da, DEFAULT_FORMATS_DATEPICKER as Pa, DEFAULT_FORMATS_TIME as Sa, timeUnits as Fa } from "./components/time-picker/constants.js";
171
- import { buildTimeList as ya, dateEquals as Ma, extractDateFormat as ba, extractTimeFormat as La, formatter as Na, makeList as Aa, parseDate as Ka, rangeArr as va, valueEquals as Ra } from "./components/time-picker/utils.js";
172
- import { TOOLTIP_INJECTION_KEY as ka } from "./components/tooltip/constants.js";
173
- import { getChildState as wa } from "./components/tree/model/node.js";
174
- import { dragEventsKey as Ga, useDragNodeHandler as Ya } from "./components/tree/model/useDragNode.js";
175
- import { useModal as Ba, useModalInner as Ha } from "./components/modal/use/use-modal.js";
176
- import { FormCompEnum as Wa, add as ja, componentMap as qa, del as Za, isDatePicker as Qa, isInput as Xa, isRangePicker as $a } from "./components/super-form/component-map.js";
177
- import { getDynamicProps as ox, useForm as rx } from "./components/super-form/use/use-form.js";
178
- import { genFileId as fx, uploadContextKey as px } from "./components/upload/constants.js";
179
- import { carouselContextKey as ax } from "./components/carousel/constants.js";
180
- import { vLoading as ix, createLoadingDirective as sx, vLoading as nx } from "./components/loading/directive.js";
181
- import { Loading as Vx } from "./components/loading/service.js";
182
- import { messageDefaults as dx, messageTypes as cx } from "./components/message/types.js";
101
+ import { componentSizeMap as ct, componentSizes as Tt } from "./constants/size.js";
102
+ import { useAttrs as gt } from "./hooks/use-attrs/index.js";
103
+ import { useDraggable as Dt } from "./hooks/use-draggable/index.js";
104
+ import { useFocus as St } from "./hooks/use-focus/index.js";
105
+ import { FORWARD_REF_INJECTION_KEY as yt, useForwardRef as Mt, useForwardRefDirective as Nt } from "./hooks/use-forward-ref/index.js";
106
+ import { ID_INJECTION_KEY as At, useId as Lt, useIdInjection as Kt } from "./hooks/use-id/index.js";
107
+ import { useLockscreen as Ot } from "./hooks/use-lockscreen/index.js";
108
+ import { createModelToggleComposable as kt, useModelToggle as ht, useModelToggleEmits as wt } from "./hooks/use-model-toggle/index.js";
109
+ import { defaultNamespace as Gt, namespaceContextKey as Yt, useGetDerivedNamespace as Jt, useNamespace as Ut } from "./hooks/use-namespace/index.js";
110
+ import { useOrderedChildren as Ht } from "./hooks/use-ordered-children/index.js";
111
+ import { usePopper as jt } from "./hooks/use-popper/index.js";
112
+ import { usePopperContainer as Zt, usePopperContainerId as Qt } from "./hooks/use-popper-container/index.js";
113
+ import { useSameTarget as $t } from "./hooks/use-same-target/index.js";
114
+ import { SIZE_INJECTION_KEY as of, useGlobalSize as rf } from "./hooks/use-size/index.js";
115
+ import { useThrottleRender as ff } from "./hooks/use-throttle-render/index.js";
116
+ import { useTimeout as mf } from "./hooks/use-timeout/index.js";
117
+ import { ZINDEX_INJECTION_KEY as xf, defaultInitialZIndex as sf, useZIndex as nf, zIndexContextKey as lf } from "./hooks/use-z-index/index.js";
118
+ import { useCalcInputWidth as Vf } from "./hooks/use-calc-input-width/index.js";
119
+ import { useComposition as If } from "./hooks/use-composition/index.js";
120
+ import { useFocusController as cf } from "./hooks/use-focus-controller/index.js";
121
+ import { attemptFocus as Cf, focusNode as gf, getSibling as Pf, isFocusable as Df, isLeaf as _f, isVisible as Sf, obtainAllFocusableElements as Ff, triggerEvent as yf } from "./utils/dom/aria.js";
122
+ import { getClientXY as Nf, getOffsetTop as bf, getOffsetTopDistance as Af, isInContainer as Lf } from "./utils/dom/position.js";
123
+ import { getScrollBarWidth as Rf, getScrollContainer as Of, isScroll as vf, scrollIntoView as kf } from "./utils/dom/scroll.js";
124
+ import { debugWarn as wf, throwError as zf } from "./utils/error.js";
125
+ import { composeEventHandlers as Yf, whenMouse as Jf } from "./utils/event.js";
126
+ import { castArray as Bf, getComponentSize as Hf, getSizeType as Wf, isValidComponentSize as jf } from "./utils/helper.js";
127
+ import { cssVarValue as Zf, generateCssVars as Qf, primaryColor as Xf, setCssVar as $f, setPrimaryColorCssvars as ep } from "./utils/ns-cover.js";
128
+ import { mutable as rp } from "./utils/typescript.js";
129
+ import { escapeStringRegexp as fp } from "./utils/vue/data-helper.js";
130
+ import { withInstall as mp, withInstallDirective as ap, withInstallFunction as xp, withNoopInstall as ip } from "./utils/vue/install.js";
131
+ import { buildProp as np, buildProps as lp, definePropType as up, epPropKey as Vp, isEpProp as dp } from "./utils/vue/props/runtime.js";
132
+ import { cAF as Ep, rAF as cp } from "./utils/vue/raf.js";
133
+ import { composeRefs as Cp } from "./utils/vue/refs.js";
134
+ import { PatchFlags as Pp, ensureOnlyChild as Dp, flattedChildren as _p, getFirstValidNode as Sp, getNormalizedProps as Fp, isComment as yp, isFragment as Mp, isTemplate as Np, isText as bp, isValidElementNode as Ap, renderBlock as Lp, renderIf as Kp } from "./utils/vue/vnode.js";
135
+ import { default as Op } from "dayjs";
136
+ import { default as kp } from "./components/popper/arrow.vue2.js";
137
+ import { default as wp } from "./components/popper/content.vue2.js";
138
+ import { default as Gp } from "./components/popper/trigger.vue2.js";
139
+ import { default as Jp } from "./components/time-picker/common/picker.vue2.js";
140
+ import { default as Bp } from "./components/time-picker/time-picker-com/panel-time-pick.vue2.js";
141
+ import { buttonGroupContextKey as Wp } from "./components/button/constants.js";
142
+ import { checkboxGroupContextKey as qp } from "./components/checkbox/constants.js";
143
+ import { configProviderContextKey as Qp, messageConfig as Xp } from "./components/config-provider/constants.js";
144
+ import { provideGlobalConfig as em, useGlobalComponentSettings as om, useGlobalConfig as rm } from "./components/config-provider/hooks/use-global-config.js";
145
+ import { ROOT_PICKER_INJECTION_KEY as fm, ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY as pm } from "./components/date-picker/constants.js";
146
+ import { datePickerProps as am } from "./components/date-picker/props/date-picker.js";
147
+ import { dialogInjectionKey as im } from "./components/dialog/constants.js";
148
+ import { useDialog as nm } from "./components/dialog/hooks/use-dialog.js";
149
+ import { DROPDOWN_INJECTION_KEY as um } from "./components/dropdown/tokens.js";
150
+ import { EmptyEnum as dm } from "./components/empty/constants.js";
151
+ import { formContextKey as Em, formItemContextKey as cm } from "./components/form/constants.js";
152
+ import { useDisabled as Cm, useFormDisabled as gm, useFormSize as Pm, useSize as Dm } from "./components/form/hooks/use-form-common-props.js";
153
+ import { useFormItem as Sm, useFormItemInputId as Fm } from "./components/form/hooks/use-form-item.js";
154
+ import { MenuTypeEnum as Mm } from "./components/horizontal-menu/constants.js";
155
+ import { initAffixTabs as bm, useTabsDrag as Am } from "./components/multiple-tabs/use/use-multiple-tabs.js";
156
+ import { useTabDropdown as Km } from "./components/multiple-tabs/use/use-tab-dropdown.js";
157
+ import { usePagination as Om, vftPaginationKey as vm } from "./components/pagination/usePagination.js";
158
+ import { radioGroupKey as hm } from "./components/radio/constants.js";
159
+ import { rowContextKey as zm } from "./components/row/constants.js";
160
+ import { scrollbarContextKey as Ym } from "./components/scrollbar/constants.js";
161
+ import { BAR_MAP as Um, GAP as Bm, renderThumbStyle as Hm } from "./components/scrollbar/util.js";
162
+ import { selectV2InjectionKey as jm } from "./components/select/token.js";
163
+ import { sliderContextKey as Zm } from "./components/slider/constants.js";
164
+ import { sliderEmits as Xm } from "./components/slider/slider.js";
165
+ import { spaceProps as ea } from "./components/space/space.js";
166
+ import { useSpace as ra } from "./components/space/use-space.js";
167
+ import { ACTION_FIELD as fa, CHECKED_FIELD as pa, CREATE_TIME_FIELD as ma, DATE_FIELD as aa, DATE_TIME_FIELD as xa, ID_FIELD as ia, NAME_FIELD as sa, SEQ_FIELD as na, STATUS_FIELD as la, UPDATE_TIME_FIELD as ua } from "./components/table/field.js";
168
+ import { useTable as da } from "./components/table/use/use-table.js";
169
+ import { addRequire as Ea, removeRequire as ca, selectMapping as Ta } from "./components/table/utils.js";
170
+ import { TabsRootContextKey as ga } from "./components/tabs/types.js";
171
+ import { timePickerDefaultProps as Da, timePickerRangeTriggerProps as _a, timePickerRngeTriggerProps as Sa } from "./components/time-picker/common/props.js";
172
+ import { DEFAULT_FORMATS_DATE as ya, DEFAULT_FORMATS_DATEPICKER as Ma, DEFAULT_FORMATS_TIME as Na, PICKER_BASE_INJECTION_KEY as ba, PICKER_POPPER_OPTIONS_INJECTION_KEY as Aa, timeUnits as La } from "./components/time-picker/constants.js";
173
+ import { buildTimeList as Ra, dateEquals as Oa, dayOrDaysToDate as va, extractDateFormat as ka, extractTimeFormat as ha, formatter as wa, makeList as za, parseDate as Ga, rangeArr as Ya, valueEquals as Ja } from "./components/time-picker/utils.js";
174
+ import { TOOLTIP_INJECTION_KEY as Ba } from "./components/tooltip/constants.js";
175
+ import { getChildState as Wa } from "./components/tree/model/node.js";
176
+ import { dragEventsKey as qa, useDragNodeHandler as Za } from "./components/tree/model/useDragNode.js";
177
+ import { useModal as Xa, useModalInner as $a } from "./components/modal/use/use-modal.js";
178
+ import { FormCompEnum as ox, add as rx, componentMap as tx, del as fx, isDatePicker as px, isInput as mx, isRangePicker as ax } from "./components/super-form/component-map.js";
179
+ import { getDynamicProps as ix, useForm as sx } from "./components/super-form/use/use-form.js";
180
+ import { genFileId as lx, uploadContextKey as ux } from "./components/upload/constants.js";
181
+ import { carouselContextKey as dx } from "./components/carousel/constants.js";
182
+ import { vLoading as Ex, createLoadingDirective as cx, vLoading as Tx } from "./components/loading/directive.js";
183
+ import { Loading as gx } from "./components/loading/service.js";
184
+ import { messageDefaults as Dx, messageTypes as _x } from "./components/message/types.js";
183
185
  const t = e.install, f = e.version;
184
186
  export {
185
- oa as ACTION_FIELD,
186
- Gm as BAR_MAP,
187
- Vt as CHANGE_EVENT,
188
- ra as CHECKED_FIELD,
189
- ta as CREATE_TIME_FIELD,
190
- zp as CommonPicker,
187
+ fa as ACTION_FIELD,
188
+ Um as BAR_MAP,
189
+ lt as CHANGE_EVENT,
190
+ pa as CHECKED_FIELD,
191
+ ma as CREATE_TIME_FIELD,
192
+ Jp as CommonPicker,
191
193
  a as CompResolver,
192
- fa as DATE_FIELD,
193
- pa as DATE_TIME_FIELD,
194
- Da as DEFAULT_FORMATS_DATE,
195
- Pa as DEFAULT_FORMATS_DATEPICKER,
196
- Sa as DEFAULT_FORMATS_TIME,
197
- sm as DROPDOWN_INJECTION_KEY,
198
- ir as DynamicSizeGrid,
199
- nr as DynamicSizeList,
200
- xt as EVENT_CODE,
201
- lm as EmptyEnum,
202
- Lt as FORWARD_REF_INJECTION_KEY,
203
- Vr as FixedSizeGrid,
204
- dr as FixedSizeList,
205
- Wa as FormCompEnum,
206
- Ym as GAP,
207
- ma as ID_FIELD,
208
- vt as ID_INJECTION_KEY,
194
+ aa as DATE_FIELD,
195
+ xa as DATE_TIME_FIELD,
196
+ ya as DEFAULT_FORMATS_DATE,
197
+ Ma as DEFAULT_FORMATS_DATEPICKER,
198
+ Na as DEFAULT_FORMATS_TIME,
199
+ um as DROPDOWN_INJECTION_KEY,
200
+ Vr as DynamicSizeGrid,
201
+ sr as DynamicSizeList,
202
+ at as EVENT_CODE,
203
+ dm as EmptyEnum,
204
+ yt as FORWARD_REF_INJECTION_KEY,
205
+ lr as FixedSizeGrid,
206
+ xr as FixedSizeList,
207
+ ox as FormCompEnum,
208
+ Bm as GAP,
209
+ ia as ID_FIELD,
210
+ At as ID_INJECTION_KEY,
209
211
  ut as INPUT_EVENT,
210
212
  It as INSTALLED_KEY,
211
- Ne as Icon,
212
- Fm as MenuTypeEnum,
213
- ot as Message,
214
- aa as NAME_FIELD,
215
- Ep as PatchFlags,
216
- om as ROOT_PICKER_INJECTION_KEY,
217
- xa as SEQ_FIELD,
218
- pf as SIZE_INJECTION_KEY,
219
- ia as STATUS_FIELD,
220
- ka as TOOLTIP_INJECTION_KEY,
221
- Ca as TabsRootContextKey,
222
- Yp as TimePickPanel,
223
- dt as UPDATE_MODEL_EVENT,
224
- sa as UPDATE_TIME_FIELD,
213
+ Mm as MenuTypeEnum,
214
+ et as Message,
215
+ sa as NAME_FIELD,
216
+ ba as PICKER_BASE_INJECTION_KEY,
217
+ Aa as PICKER_POPPER_OPTIONS_INJECTION_KEY,
218
+ Pp as PatchFlags,
219
+ fm as ROOT_PICKER_INJECTION_KEY,
220
+ pm as ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY,
221
+ na as SEQ_FIELD,
222
+ of as SIZE_INJECTION_KEY,
223
+ la as STATUS_FIELD,
224
+ Ba as TOOLTIP_INJECTION_KEY,
225
+ ga as TabsRootContextKey,
226
+ Bp as TimePickPanel,
227
+ Vt as UPDATE_MODEL_EVENT,
228
+ ua as UPDATE_TIME_FIELD,
225
229
  n as VftAlert,
226
230
  Y as VftAside,
227
- Fr as VftAutocomplete,
228
- V as VftAvatar,
231
+ _r as VftAutocomplete,
232
+ u as VftAvatar,
229
233
  d as VftBacktop,
230
- I as VftButton,
231
- C as VftButtonGroup,
232
- T as VftCard,
234
+ E as VftButton,
235
+ c as VftButtonGroup,
236
+ C as VftCard,
233
237
  Rr as VftCarousel,
234
238
  Or as VftCarouselItem,
235
- D as VftCheckTag,
236
- S as VftCheckbox,
237
- F as VftCheckboxButton,
238
- _ as VftCheckboxGroup,
239
+ P as VftCheckTag,
240
+ _ as VftCheckbox,
241
+ S as VftCheckboxButton,
242
+ F as VftCheckboxGroup,
239
243
  M as VftClamp,
240
- L as VftClampToggle,
241
- A as VftClampTooltip,
242
- v as VftCol,
243
- O as VftCollapseTransition,
244
+ b as VftClampToggle,
245
+ L as VftClampTooltip,
246
+ R as VftCol,
247
+ v as VftCollapseTransition,
244
248
  h as VftColorPicker,
245
249
  z as VftConfigProvider,
246
- U as VftContainer,
247
- $ as VftDatePicker,
248
- oe as VftDateTimeSelect,
249
- te as VftDescriptions,
250
- fe as VftDescriptionsItem,
251
- me as VftDialog,
252
- xe as VftDivider,
253
- se as VftDrawer,
254
- le as VftDropdown,
255
- Ve as VftDropdownItem,
256
- ue as VftDropdownMenu,
250
+ J as VftContainer,
251
+ oe as VftDatePicker,
252
+ te as VftDateTimeSelect,
253
+ pe as VftDescriptions,
254
+ me as VftDescriptionsItem,
255
+ xe as VftDialog,
256
+ se as VftDivider,
257
+ le as VftDrawer,
258
+ Ve as VftDropdown,
259
+ de as VftDropdownItem,
260
+ Ie as VftDropdownMenu,
257
261
  ce as VftEmpty,
258
262
  Ce as VftException,
259
- B as VftFooter,
260
- Te as VftFooterLayout,
261
- De as VftForm,
262
- Pe as VftFormItem,
263
- Fe as VftFullScreen,
264
- H as VftHeader,
265
- ye as VftHeaderLayout,
266
- be as VftHorizontalMenu,
267
- Ae as VftIcon,
268
- ve as VftIconText,
263
+ U as VftFooter,
264
+ Pe as VftFooterLayout,
265
+ _e as VftForm,
266
+ Se as VftFormItem,
267
+ ye as VftFullScreen,
268
+ B as VftHeader,
269
+ Ne as VftHeaderLayout,
270
+ Ae as VftHorizontalMenu,
271
+ Q as VftIcon,
272
+ Ke as VftIconText,
269
273
  Oe as VftIframeLayout,
270
- he as VftImage,
271
- Ge as VftImageViewer,
272
- ft as VftInfiniteScroll,
273
- Ue as VftInput,
274
- He as VftInputNumber,
275
- We as VftLink,
276
- qe as VftListCell,
277
- $r as VftLoading,
278
- ix as VftLoadingDirective,
279
- Vx as VftLoadingService,
280
- Qe as VftLogo,
281
- J as VftMain,
282
- Gr as VftMdCodeDemo,
283
- Ur as VftMdCodeTabs,
284
- Hr as VftMdComment,
285
- Wr as VftMdContainer,
286
- qr as VftMdTabs,
287
- Qr as VftMdVuePlayground,
288
- $e as VftMenu,
289
- eo as VftMenuItem,
290
- oo as VftMenuItemGroup,
291
- rt as VftMessage,
292
- yr as VftModal,
293
- fo as VftMultipleTabs,
294
- mo as VftOverlay,
295
- we as VftPImage,
296
- xo as VftPageWrapper,
297
- so as VftPagination,
298
- lo as VftPopconfirm,
274
+ ke as VftImage,
275
+ ze as VftImageViewer,
276
+ tt as VftInfiniteScroll,
277
+ Ye as VftInput,
278
+ Ue as VftInputNumber,
279
+ He as VftLink,
280
+ je as VftListCell,
281
+ Xr as VftLoading,
282
+ Ex as VftLoadingDirective,
283
+ gx as VftLoadingService,
284
+ Ze as VftLogo,
285
+ H as VftMain,
286
+ zr as VftMdCodeDemo,
287
+ Yr as VftMdCodeTabs,
288
+ Ur as VftMdComment,
289
+ Hr as VftMdContainer,
290
+ jr as VftMdTabs,
291
+ Zr as VftMdVuePlayground,
292
+ Xe as VftMenu,
293
+ $e as VftMenuItem,
294
+ eo as VftMenuItemGroup,
295
+ ot as VftMessage,
296
+ Fr as VftModal,
297
+ to as VftMultipleTabs,
298
+ po as VftOverlay,
299
+ he as VftPImage,
300
+ ao as VftPageWrapper,
301
+ io as VftPagination,
302
+ no as VftPopconfirm,
299
303
  uo as VftPopover,
300
304
  Io as VftPopper,
301
- vp as VftPopperArrow,
302
- Op as VftPopperContent,
303
- hp as VftPopperTrigger,
304
- br as VftProgress,
305
- mt as VftProgressI,
306
- Eo as VftQrcode,
307
- go as VftRadio,
308
- Do as VftRadioButton,
305
+ kp as VftPopperArrow,
306
+ wp as VftPopperContent,
307
+ Gp as VftPopperTrigger,
308
+ Mr as VftProgress,
309
+ pt as VftProgressI,
310
+ co as VftQrcode,
311
+ Co as VftRadio,
312
+ go as VftRadioButton,
309
313
  Po as VftRadioGroup,
310
- Fo as VftResult,
311
- yo as VftRouterViewContent,
312
- bo as VftRow,
313
- No as VftScrollbar,
314
- Ko as VftSearch,
314
+ _o as VftResult,
315
+ Fo as VftRouterViewContent,
316
+ Mo as VftRow,
317
+ bo as VftScrollbar,
318
+ Lo as VftSearch,
315
319
  Ro as VftSelect,
316
- ko as VftSideMenu,
317
- wo as VftSkeleton,
318
- zo as VftSkeletonItem,
319
- Yo as VftSlider,
320
- Bo as VftSpace,
321
- Dr as VftStep,
320
+ vo as VftSideMenu,
321
+ ho as VftSkeleton,
322
+ wo as VftSkeletonItem,
323
+ Go as VftSlider,
324
+ Jo as VftSpace,
325
+ gr as VftStep,
322
326
  Pr as VftSteps,
323
- ro as VftSubMenu,
324
- Nr as VftSuperForm,
325
- Jo as VftSwitch,
326
- Zo as VftTabPane,
327
- jo as VftTable,
328
- Qo as VftTabs,
329
- $o as VftTag,
330
- or as VftTimePicker,
331
- hr as VftTimeline,
332
- wr as VftTimelineItem,
333
- tr as VftTooltip,
334
- pr as VftTree,
335
- Kr as VftUpload,
336
- ar as VftVerifyCode,
337
- st as WEEK_DAYS,
338
- Vf as ZINDEX_INJECTION_KEY,
339
- Bt as _bem,
340
- ja as add,
341
- ua as addRequire,
327
+ oo as VftSubMenu,
328
+ br as VftSuperForm,
329
+ Bo as VftSwitch,
330
+ qo as VftTabPane,
331
+ Wo as VftTable,
332
+ Zo as VftTabs,
333
+ Xo as VftTag,
334
+ er as VftTimePicker,
335
+ kr as VftTimeline,
336
+ hr as VftTimelineItem,
337
+ rr as VftTooltip,
338
+ fr as VftTree,
339
+ Lr as VftUpload,
340
+ mr as VftVerifyCode,
341
+ it as WEEK_DAYS,
342
+ xf as ZINDEX_INJECTION_KEY,
343
+ rx as add,
344
+ Ea as addRequire,
342
345
  Cf as attemptFocus,
343
- xp as buildProp,
344
- ip as buildProps,
345
- ya as buildTimeList,
346
- Bp as buttonGroupContextKey,
347
- up as cAF,
348
- ax as carouselContextKey,
349
- Jp as checkboxGroupContextKey,
350
- qa as componentMap,
351
- Et as componentSizeMap,
346
+ np as buildProp,
347
+ lp as buildProps,
348
+ Ra as buildTimeList,
349
+ Wp as buttonGroupContextKey,
350
+ Ep as cAF,
351
+ dx as carouselContextKey,
352
+ Bf as castArray,
353
+ qp as checkboxGroupContextKey,
354
+ tx as componentMap,
355
+ ct as componentSizeMap,
352
356
  Tt as componentSizes,
353
- zf as composeEventHandlers,
354
- Ip as composeRefs,
355
- jp as configProviderContextKey,
357
+ Yf as composeEventHandlers,
358
+ Cp as composeRefs,
359
+ Qp as configProviderContextKey,
356
360
  j as createContextMenu,
357
- sx as createLoadingDirective,
358
- zt as createModelToggleComposable,
359
- Wf as cssVarValue,
360
- Ma as dateEquals,
361
- nt as datePickTypes,
362
- rm as datePickerConfig,
363
- fm as datePickerProps,
364
- Ap as dayjs,
365
- kf as debugWarn,
361
+ cx as createLoadingDirective,
362
+ kt as createModelToggleComposable,
363
+ Zf as cssVarValue,
364
+ Oa as dateEquals,
365
+ st as datePickTypes,
366
+ am as datePickerProps,
367
+ va as dayOrDaysToDate,
368
+ Op as dayjs,
369
+ wf as debugWarn,
366
370
  e as default,
367
- uf as defaultInitialZIndex,
368
- Ht as defaultNamespace,
369
- sp as definePropType,
370
- Za as del,
371
+ sf as defaultInitialZIndex,
372
+ Gt as defaultNamespace,
373
+ up as definePropType,
374
+ fx as del,
371
375
  q as destroyContextMenu,
372
- mm as dialogInjectionKey,
373
- Ga as dragEventsKey,
374
- Tp as ensureOnlyChild,
375
- np as epPropKey,
376
- op as escapeStringRegexp,
377
- ba as extractDateFormat,
378
- La as extractTimeFormat,
379
- gp as flattedChildren,
380
- Ef as focusNode,
381
- um as formContextKey,
382
- dm as formItemContextKey,
383
- Na as formatter,
384
- fx as genFileId,
385
- jf as generateCssVars,
386
- wa as getChildState,
387
- yf as getClientXY,
388
- Uf as getComponentSize,
389
- ox as getDynamicProps,
390
- Dp as getFirstValidNode,
391
- Pp as getNormalizedProps,
392
- Mf as getOffsetTop,
393
- bf as getOffsetTopDistance,
394
- Af as getScrollBarWidth,
395
- Kf as getScrollContainer,
396
- Tf as getSibling,
397
- Bf as getSizeType,
398
- ym as initAffixTabs,
376
+ im as dialogInjectionKey,
377
+ qa as dragEventsKey,
378
+ Dp as ensureOnlyChild,
379
+ Vp as epPropKey,
380
+ fp as escapeStringRegexp,
381
+ ka as extractDateFormat,
382
+ ha as extractTimeFormat,
383
+ _p as flattedChildren,
384
+ gf as focusNode,
385
+ Em as formContextKey,
386
+ cm as formItemContextKey,
387
+ wa as formatter,
388
+ lx as genFileId,
389
+ Qf as generateCssVars,
390
+ Wa as getChildState,
391
+ Nf as getClientXY,
392
+ Hf as getComponentSize,
393
+ ix as getDynamicProps,
394
+ Sp as getFirstValidNode,
395
+ Fp as getNormalizedProps,
396
+ bf as getOffsetTop,
397
+ Af as getOffsetTopDistance,
398
+ Rf as getScrollBarWidth,
399
+ Of as getScrollContainer,
400
+ Pf as getSibling,
401
+ Wf as getSizeType,
402
+ bm as initAffixTabs,
399
403
  t as install,
400
- Sp as isComment,
401
- Qa as isDatePicker,
402
- lp as isEpProp,
403
- gf as isFocusable,
404
- Fp as isFragment,
404
+ yp as isComment,
405
+ px as isDatePicker,
406
+ dp as isEpProp,
407
+ Df as isFocusable,
408
+ Mp as isFragment,
405
409
  Lf as isInContainer,
406
- Xa as isInput,
407
- Df as isLeaf,
408
- $a as isRangePicker,
410
+ mx as isInput,
411
+ _f as isLeaf,
412
+ ax as isRangePicker,
409
413
  vf as isScroll,
410
- _p as isTemplate,
411
- yp as isText,
412
- Hf as isValidComponentSize,
413
- Mp as isValidElementNode,
414
- Pf as isVisible,
414
+ Np as isTemplate,
415
+ bp as isText,
416
+ jf as isValidComponentSize,
417
+ Ap as isValidElementNode,
418
+ Sf as isVisible,
415
419
  i as makeInstaller,
416
- Aa as makeList,
417
- qp as messageConfig,
418
- dx as messageDefaults,
419
- cx as messageTypes,
420
- $f as mutable,
421
- Jt as namespaceContextKey,
422
- Sf as obtainAllFocusableElements,
423
- Ka as parseDate,
424
- qf as primaryColor,
425
- Qp as provideGlobalConfig,
426
- dp as rAF,
427
- Rm as radioGroupKey,
428
- va as rangeArr,
429
- da as removeRequire,
430
- bp as renderBlock,
431
- Lp as renderIf,
432
- Um as renderThumbStyle,
433
- km as rowContextKey,
434
- Rf as scrollIntoView,
435
- wm as scrollbarContextKey,
436
- Hm as selectInjectionKey,
437
- ca as selectMapping,
438
- Zf as setCssVar,
439
- Qf as setPrimaryColorCssvars,
440
- Wm as sliderContextKey,
441
- qm as sliderEmits,
442
- Qm as spaceProps,
443
- hf as throwError,
444
- Ta as timePickerDefaultProps,
445
- Fa as timeUnits,
446
- Ff as triggerEvent,
447
- px as uploadContextKey,
448
- Dt as useAttrs,
449
- Q as useContextMenu,
450
- St as useDelayedToggle,
451
- xm as useDialog,
452
- Im as useDisabled,
453
- Ya as useDragNodeHandler,
454
- _t as useDraggable,
455
- Mt as useFocus,
456
- rx as useForm,
457
- Cm as useFormDisabled,
458
- Dm as useFormItem,
459
- Pm as useFormItemInputId,
460
- Em as useFormSize,
461
- Nt as useForwardRef,
462
- At as useForwardRefDirective,
463
- Wt as useGetDerivedNamespace,
464
- Xp as useGlobalComponentSettings,
465
- $p as useGlobalConfig,
466
- mf as useGlobalSize,
467
- Rt as useId,
468
- Ot as useIdInjection,
469
- ht as useLockscreen,
470
- Ba as useModal,
471
- Ha as useModalInner,
472
- Gt as useModelToggle,
473
- Yt as useModelToggleEmits,
474
- jt as useNamespace,
475
- Zt as useOrderedChildren,
476
- Am as usePagination,
477
- Xt as usePopper,
478
- ef as usePopperContainer,
479
- of as usePopperContainerId,
480
- tf as useSameTarget,
481
- Tm as useSize,
482
- $m as useSpace,
483
- Lm as useTabDropdown,
484
- la as useTable,
485
- Mm as useTabsDrag,
486
- xf as useThrottleRender,
487
- nf as useTimeout,
488
- df as useZIndex,
489
- nx as vLoading,
490
- Ra as valueEquals,
420
+ za as makeList,
421
+ Xp as messageConfig,
422
+ Dx as messageDefaults,
423
+ _x as messageTypes,
424
+ rp as mutable,
425
+ Yt as namespaceContextKey,
426
+ Ff as obtainAllFocusableElements,
427
+ Ga as parseDate,
428
+ Xf as primaryColor,
429
+ em as provideGlobalConfig,
430
+ cp as rAF,
431
+ hm as radioGroupKey,
432
+ Ya as rangeArr,
433
+ ca as removeRequire,
434
+ Lp as renderBlock,
435
+ Kp as renderIf,
436
+ Hm as renderThumbStyle,
437
+ zm as rowContextKey,
438
+ kf as scrollIntoView,
439
+ Ym as scrollbarContextKey,
440
+ Ta as selectMapping,
441
+ jm as selectV2InjectionKey,
442
+ $f as setCssVar,
443
+ ep as setPrimaryColorCssvars,
444
+ Zm as sliderContextKey,
445
+ Xm as sliderEmits,
446
+ ea as spaceProps,
447
+ zf as throwError,
448
+ Da as timePickerDefaultProps,
449
+ _a as timePickerRangeTriggerProps,
450
+ Sa as timePickerRngeTriggerProps,
451
+ La as timeUnits,
452
+ yf as triggerEvent,
453
+ ux as uploadContextKey,
454
+ gt as useAttrs,
455
+ Vf as useCalcInputWidth,
456
+ If as useComposition,
457
+ $ as useContextMenu,
458
+ nm as useDialog,
459
+ Cm as useDisabled,
460
+ Za as useDragNodeHandler,
461
+ Dt as useDraggable,
462
+ St as useFocus,
463
+ cf as useFocusController,
464
+ sx as useForm,
465
+ gm as useFormDisabled,
466
+ Sm as useFormItem,
467
+ Fm as useFormItemInputId,
468
+ Pm as useFormSize,
469
+ Mt as useForwardRef,
470
+ Nt as useForwardRefDirective,
471
+ Jt as useGetDerivedNamespace,
472
+ om as useGlobalComponentSettings,
473
+ rm as useGlobalConfig,
474
+ rf as useGlobalSize,
475
+ Lt as useId,
476
+ Kt as useIdInjection,
477
+ Ot as useLockscreen,
478
+ Xa as useModal,
479
+ $a as useModalInner,
480
+ ht as useModelToggle,
481
+ wt as useModelToggleEmits,
482
+ Ut as useNamespace,
483
+ Ht as useOrderedChildren,
484
+ Om as usePagination,
485
+ jt as usePopper,
486
+ Zt as usePopperContainer,
487
+ Qt as usePopperContainerId,
488
+ $t as useSameTarget,
489
+ Dm as useSize,
490
+ ra as useSpace,
491
+ Km as useTabDropdown,
492
+ da as useTable,
493
+ Am as useTabsDrag,
494
+ ff as useThrottleRender,
495
+ mf as useTimeout,
496
+ nf as useZIndex,
497
+ Tx as vLoading,
498
+ Ja as valueEquals,
491
499
  f as version,
492
- Km as vftPaginationKey,
500
+ vm as vftPaginationKey,
493
501
  Ir as virtualizedGridProps,
494
- Cr as virtualizedListProps,
495
- Er as virtualizedProps,
502
+ Er as virtualizedListProps,
503
+ cr as virtualizedProps,
496
504
  Tr as virtualizedScrollbarProps,
497
- Gf as whenMouse,
498
- tp as withInstall,
499
- fp as withInstallDirective,
500
- pp as withInstallFunction,
501
- mp as withNoopInstall,
502
- cf as zIndexContextKey
505
+ Jf as whenMouse,
506
+ mp as withInstall,
507
+ ap as withInstallDirective,
508
+ xp as withInstallFunction,
509
+ ip as withNoopInstall,
510
+ lf as zIndexContextKey
503
511
  };