vft 0.0.496 → 0.0.498

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 (146) hide show
  1. package/dist/index.css +1 -1
  2. package/es/component.js +18 -16
  3. package/es/components/autocomplete/autocomplete.vue.d.ts +2 -2
  4. package/es/components/autocomplete/index.d.ts +6 -6
  5. package/es/components/button/index.d.ts +9 -9
  6. package/es/components/index.d.ts +1 -0
  7. package/es/components/index.js +257 -255
  8. package/es/components/modal/index.d.ts +6 -0
  9. package/es/components/modal/modal.vue.d.ts +3 -0
  10. package/es/components/modal/modal.vue2.js +12 -12
  11. package/es/components/popconfirm/index.d.ts +15 -15
  12. package/es/components/popconfirm/popconfirm.vue.d.ts +1 -1
  13. package/es/components/select/defaults.d.ts +4 -0
  14. package/es/components/select/defaults.js +7 -3
  15. package/es/components/select/index.d.ts +13 -4
  16. package/es/components/select/select.vue.d.ts +13 -4
  17. package/es/components/select/select.vue.js +9 -8
  18. package/es/components/select/select.vue2.js +40 -29
  19. package/es/components/select/token.d.ts +4 -1
  20. package/es/components/select/useSelect.d.ts +4 -4
  21. package/es/components/super-form/index.d.ts +9 -0
  22. package/es/components/super-form/style/css.d.ts +1 -0
  23. package/es/components/super-form/style/css.js +2 -0
  24. package/es/components/super-form/style/index.d.ts +1 -0
  25. package/es/components/super-form/style/index.js +2 -0
  26. package/es/components/super-form/super-form-item.vue2.js +355 -255
  27. package/es/components/super-form/super-form.vue2.js +1 -1
  28. package/es/components/super-form/types.d.ts +26 -1
  29. package/es/components/super-form/use/helper.js +37 -36
  30. package/es/components/super-form/use/use-form-events.js +126 -125
  31. package/es/components/table/index.d.ts +9 -6
  32. package/es/components/table/style/css.js +2 -0
  33. package/es/components/table/style/index.js +2 -0
  34. package/es/components/table/table.vue.d.ts +2 -1
  35. package/es/components/table/table.vue2.js +99 -94
  36. package/es/components/table/types.d.ts +5 -3
  37. package/es/components/table/use/use-data-source.d.ts +6 -4
  38. package/es/components/table/use/use-data-source.js +150 -148
  39. package/es/components/table/use/use-table.js +8 -8
  40. package/es/components/tree/index.d.ts +71 -71
  41. package/es/components/tree/tree-node.vue.d.ts +1 -1
  42. package/es/components/tree/tree.type.d.ts +2 -0
  43. package/es/components/tree/tree.vue.d.ts +14 -14
  44. package/es/components/tree-select/cache-options.d.ts +20 -0
  45. package/es/components/tree-select/cache-options.js +30 -0
  46. package/es/components/tree-select/index.d.ts +8 -0
  47. package/es/components/tree-select/index.js +10 -0
  48. package/es/components/tree-select/instance.d.ts +5 -0
  49. package/es/components/tree-select/instance.js +1 -0
  50. package/es/components/tree-select/select.d.ts +10 -0
  51. package/es/components/tree-select/select.js +129 -0
  52. package/es/components/tree-select/style/css.d.ts +4 -0
  53. package/es/components/tree-select/style/css.js +11 -0
  54. package/es/components/tree-select/style/index.d.ts +4 -0
  55. package/es/components/tree-select/style/index.js +11 -0
  56. package/es/components/tree-select/tree-select-option.d.ts +42 -0
  57. package/es/components/tree-select/tree-select-option.js +35 -0
  58. package/es/components/tree-select/tree-select.vue.d.ts +4 -0
  59. package/es/components/tree-select/tree-select.vue.js +5 -0
  60. package/es/components/tree-select/tree-select.vue2.js +155 -0
  61. package/es/components/tree-select/tree.d.ts +11 -0
  62. package/es/components/tree-select/tree.js +201 -0
  63. package/es/components/tree-select/utils.d.ts +10 -0
  64. package/es/components/tree-select/utils.js +45 -0
  65. package/es/index.js +1 -0
  66. package/es/package.json.d.ts +1 -1
  67. package/es/package.json.js +1 -1
  68. package/es/script.css +1 -1
  69. package/es/utils/form-register.d.ts +1 -0
  70. package/es/utils/form-register.js +11 -10
  71. package/lib/component.cjs +1 -1
  72. package/lib/components/autocomplete/autocomplete.vue.d.ts +2 -2
  73. package/lib/components/autocomplete/index.d.ts +6 -6
  74. package/lib/components/button/index.d.ts +9 -9
  75. package/lib/components/index.cjs +1 -1
  76. package/lib/components/index.d.ts +1 -0
  77. package/lib/components/modal/index.d.ts +6 -0
  78. package/lib/components/modal/modal.vue.d.ts +3 -0
  79. package/lib/components/modal/modal.vue2.cjs +1 -1
  80. package/lib/components/popconfirm/index.d.ts +15 -15
  81. package/lib/components/popconfirm/popconfirm.vue.d.ts +1 -1
  82. package/lib/components/select/defaults.cjs +1 -1
  83. package/lib/components/select/defaults.d.ts +4 -0
  84. package/lib/components/select/index.d.ts +13 -4
  85. package/lib/components/select/select.vue.cjs +1 -1
  86. package/lib/components/select/select.vue.d.ts +13 -4
  87. package/lib/components/select/select.vue2.cjs +1 -1
  88. package/lib/components/select/token.d.ts +4 -1
  89. package/lib/components/select/useSelect.d.ts +4 -4
  90. package/lib/components/super-form/index.d.ts +9 -0
  91. package/lib/components/super-form/style/css.cjs +1 -1
  92. package/lib/components/super-form/style/css.d.ts +1 -0
  93. package/lib/components/super-form/style/index.cjs +1 -1
  94. package/lib/components/super-form/style/index.d.ts +1 -0
  95. package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
  96. package/lib/components/super-form/super-form.vue2.cjs +1 -1
  97. package/lib/components/super-form/types.d.ts +26 -1
  98. package/lib/components/super-form/use/helper.cjs +1 -1
  99. package/lib/components/super-form/use/use-form-events.cjs +1 -1
  100. package/lib/components/table/index.d.ts +9 -6
  101. package/lib/components/table/style/css.cjs +1 -1
  102. package/lib/components/table/style/index.cjs +1 -1
  103. package/lib/components/table/table.vue.d.ts +2 -1
  104. package/lib/components/table/table.vue2.cjs +1 -1
  105. package/lib/components/table/types.d.ts +5 -3
  106. package/lib/components/table/use/use-data-source.cjs +1 -1
  107. package/lib/components/table/use/use-data-source.d.ts +6 -4
  108. package/lib/components/table/use/use-table.cjs +1 -1
  109. package/lib/components/tree/index.d.ts +71 -71
  110. package/lib/components/tree/tree-node.vue.d.ts +1 -1
  111. package/lib/components/tree/tree.type.d.ts +2 -0
  112. package/lib/components/tree/tree.vue.d.ts +14 -14
  113. package/lib/components/tree-select/cache-options.cjs +1 -0
  114. package/lib/components/tree-select/cache-options.d.ts +20 -0
  115. package/lib/components/tree-select/index.cjs +1 -0
  116. package/lib/components/tree-select/index.d.ts +8 -0
  117. package/lib/components/tree-select/instance.cjs +1 -0
  118. package/lib/components/tree-select/instance.d.ts +5 -0
  119. package/lib/components/tree-select/select.cjs +1 -0
  120. package/lib/components/tree-select/select.d.ts +10 -0
  121. package/lib/components/tree-select/style/css.cjs +1 -0
  122. package/lib/components/tree-select/style/css.d.ts +4 -0
  123. package/lib/components/tree-select/style/index.cjs +1 -0
  124. package/lib/components/tree-select/style/index.d.ts +4 -0
  125. package/lib/components/tree-select/tree-select-option.cjs +1 -0
  126. package/lib/components/tree-select/tree-select-option.d.ts +42 -0
  127. package/lib/components/tree-select/tree-select.vue.cjs +1 -0
  128. package/lib/components/tree-select/tree-select.vue.d.ts +4 -0
  129. package/lib/components/tree-select/tree-select.vue2.cjs +1 -0
  130. package/lib/components/tree-select/tree.cjs +1 -0
  131. package/lib/components/tree-select/tree.d.ts +11 -0
  132. package/lib/components/tree-select/utils.cjs +1 -0
  133. package/lib/components/tree-select/utils.d.ts +10 -0
  134. package/lib/index.cjs +1 -1
  135. package/lib/package.json.cjs +1 -1
  136. package/lib/package.json.d.ts +1 -1
  137. package/lib/script.css +1 -1
  138. package/lib/utils/form-register.cjs +1 -1
  139. package/lib/utils/form-register.d.ts +1 -0
  140. package/package.json +5 -5
  141. package/theme-style/index.css +1 -1
  142. package/theme-style/src/cascader.scss +1 -12
  143. package/theme-style/src/tree-select.scss +10 -1
  144. package/theme-style/vft-cascader.css +1 -1
  145. package/theme-style/vft-tree-select.css +1 -1
  146. package/web-types.json +1 -1
@@ -5,7 +5,7 @@ import { VftBacktop as i } from "./backtop/index.js";
5
5
  import { VftButton as s, VftButtonGroup as V } from "./button/index.js";
6
6
  import { VftCard as u } from "./card/index.js";
7
7
  import { VftCascader as c } from "./cascader/index.js";
8
- import { VftCascaderPanel as P } from "./cascader-panel/index.js";
8
+ import { VftCascaderPanel as T } from "./cascader-panel/index.js";
9
9
  import { VftCheckTag as g } from "./check-tag/index.js";
10
10
  import { VftCheckbox as I, VftCheckboxButton as D, VftCheckboxGroup as S } from "./checkbox/index.js";
11
11
  import { VftClamp as y } from "./clamp/index.js";
@@ -28,7 +28,7 @@ import { VftDialog as xo } from "./dialog/index.js";
28
28
  import { VftDivider as no } from "./divider/index.js";
29
29
  import { VftDrawer as Vo } from "./drawer/index.js";
30
30
  import { VftDropdown as uo, VftDropdownItem as co, VftDropdownMenu as Co } from "./dropdown/index.js";
31
- import { VftEmpty as To } from "./empty/index.js";
31
+ import { VftEmpty as Po } from "./empty/index.js";
32
32
  import { VftFooterLayout as Eo } from "./footer-layout/index.js";
33
33
  import { VftForm as Do, VftFormItem as So } from "./form/index.js";
34
34
  import { VftFullScreen as yo } from "./full-screen/index.js";
@@ -53,7 +53,7 @@ import { VftPopconfirm as sr } from "./popconfirm/index.js";
53
53
  import { VftPopover as lr } from "./popover/index.js";
54
54
  import { VftPopper as dr } from "./popper/index.js";
55
55
  import { VftQrcode as Cr } from "./qrcode/index.js";
56
- import { VftRadio as Tr, VftRadioButton as gr, VftRadioGroup as Er } from "./radio/index.js";
56
+ import { VftRadio as Pr, VftRadioButton as gr, VftRadioGroup as Er } from "./radio/index.js";
57
57
  import { VftResult as Dr } from "./result/index.js";
58
58
  import { VftRouterViewContent as _r } from "./router-view-content/index.js";
59
59
  import { VftRow as Mr } from "./row/index.js";
@@ -72,141 +72,142 @@ import { VftTag as oe } from "./tag/index.js";
72
72
  import { VftTimePicker as ee } from "./time-picker/index.js";
73
73
  import { VftTooltip as fe } from "./tooltip/index.js";
74
74
  import { VftTree as me } from "./tree/index.js";
75
- import { VftVerifyCode as xe } from "./verify-code/index.js";
76
- import { default as ne } from "./virtual-list/components/fixed-size-list.js";
77
- import { default as Ve } from "./virtual-list/components/dynamic-size-list.js";
78
- import { default as ue } from "./virtual-list/components/fixed-size-grid.js";
79
- import { default as ce } from "./virtual-list/components/dynamic-size-grid.js";
80
- import { virtualizedGridProps as Pe, virtualizedListProps as Te, virtualizedProps as ge, virtualizedScrollbarProps as Ee } from "./virtual-list/props.js";
81
- import { VftAutocomplete as De } from "./autocomplete/index.js";
82
- import { VftBreadcrumb as _e, VftBreadcrumbItem as ye } from "./breadcrumb/index.js";
83
- import { VftCarousel as Ae, VftCarouselItem as Ke } from "./carousel/index.js";
84
- import { VftCollapse as Re, VftCollapseItem as Fe } from "./collapse/index.js";
85
- import { VftCountdown as Oe } from "./countdown/index.js";
86
- import { VftInputTag as ke } from "./input-tag/index.js";
87
- import { VftModal as Ge } from "./modal/index.js";
88
- import { VftProgress as he } from "./progress/index.js";
89
- import { VftSegmented as Be } from "./segmented/index.js";
90
- import { VftStatistic as Ue } from "./statistic/index.js";
91
- import { VftTimeline as Ye, VftTimelineItem as qe } from "./timeline/index.js";
92
- import { VftTransfer as je } from "./transfer/index.js";
93
- import { VftUpload as Xe } from "./upload/index.js";
94
- import { VftWatermark as $e } from "./watermark/index.js";
95
- import { VftMdCodeDemo as rt } from "./md-code-demo/index.js";
96
- import { VftMdCodeTabs as tt } from "./md-code-tabs/index.js";
97
- import { VftMdComment as pt } from "./md-comment/index.js";
98
- import { VftMdContainer as at } from "./md-container/index.js";
99
- import { VftMdTabs as it } from "./md-tabs/index.js";
100
- import { VftMdVuePlayground as st } from "./md-vue-playground/index.js";
101
- import { VftInfiniteScroll as lt } from "./infinite-scroll/index.js";
102
- import { VftLoading as dt } from "./loading/index.js";
103
- import { VftMessage as Ct, VftMessage as Pt } from "./message/index.js";
104
- import { VftProgressI as gt } from "./progress-i/index.js";
105
- import { VftSuperForm as It } from "./super-form/index.js";
106
- import { default as St } from "./popper/arrow.vue2.js";
107
- import { default as yt } from "./popper/content.vue2.js";
108
- import { default as At } from "./popper/trigger.vue2.js";
109
- import { default as bt } from "./time-picker/common/picker.vue2.js";
110
- import { default as Ft } from "./time-picker/time-picker-com/panel-time-pick.vue2.js";
111
- import { buttonGroupContextKey as Ot } from "./button/constants.js";
112
- import { cascaderEmits as kt, cascaderProps as vt } from "./cascader/cascader.js";
113
- import { CASCADER_PANEL_INJECTION_KEY as wt } from "./cascader-panel/types.js";
114
- import { CommonProps as zt, DefaultProps as Bt, cascaderPanelEmits as Ht, cascaderPanelProps as Ut, useCascaderConfig as Jt } from "./cascader-panel/config.js";
115
- import { checkboxGroupContextKey as qt } from "./checkbox/constants.js";
116
- import { configProviderContextKey as jt, messageConfig as Qt } from "./config-provider/constants.js";
117
- import { provideGlobalConfig as Zt, useGlobalComponentSettings as $t, useGlobalConfig as of } from "./config-provider/hooks/use-global-config.js";
118
- import { ROOT_PICKER_INJECTION_KEY as ef, ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY as tf } from "./date-picker/constants.js";
119
- import { datePickerProps as pf } from "./date-picker/props/date-picker.js";
120
- import { DEFAULT_DIALOG_TRANSITION as af, dialogInjectionKey as xf } from "./dialog/constants.js";
121
- import { useDialog as sf } from "./dialog/use-dialog.js";
122
- import { DROPDOWN_INJECTION_KEY as lf } from "./dropdown/tokens.js";
123
- import { EmptyEnum as df } from "./empty/constants.js";
124
- import { formContextKey as Cf, formItemContextKey as Pf } from "./form/constants.js";
125
- import { useDisabled as gf, useFormDisabled as Ef, useFormSize as If, useSize as Df } from "./form/hooks/use-form-common-props.js";
126
- import { useFormItem as _f, useFormItemInputId as yf } from "./form/hooks/use-form-item.js";
127
- import { MenuTypeEnum as Af } from "./horizontal-menu/constants.js";
128
- import { initAffixTabs as bf, useTabsDrag as Rf } from "./multiple-tabs/use/use-multiple-tabs.js";
129
- import { useTabDropdown as Lf } from "./multiple-tabs/use/use-tab-dropdown.js";
130
- import { notificationEmits as Nf, notificationProps as kf, notificationTypes as vf } from "./notification/notification.js";
131
- import { usePagination as wf, vftPaginationKey as hf } from "./pagination/usePagination.js";
132
- import { radioGroupKey as Bf } from "./radio/constants.js";
133
- import { rowContextKey as Uf } from "./row/constants.js";
134
- import { scrollbarContextKey as Yf } from "./scrollbar/constants.js";
135
- import { BAR_MAP as Wf, GAP as jf, renderThumbStyle as Qf } from "./scrollbar/util.js";
136
- import { selectV2InjectionKey as Zf } from "./select/token.js";
137
- import { sliderContextKey as op } from "./slider/constants.js";
138
- import { sliderEmits as ep } from "./slider/slider.js";
139
- import { spaceProps as fp } from "./space/space.js";
140
- import { useSpace as mp } from "./space/use-space.js";
141
- import { addRequire as xp, removeRequire as ip, selectMapping as np } from "./table/utils.js";
142
- import { TabsRootContextKey as Vp } from "./tabs/types.js";
143
- import { timePickerDefaultProps as up, timePickerRangeTriggerProps as dp, timePickerRngeTriggerProps as cp } from "./time-picker/common/props.js";
144
- import { DEFAULT_FORMATS_DATE as Pp, DEFAULT_FORMATS_DATEPICKER as Tp, DEFAULT_FORMATS_TIME as gp, PICKER_BASE_INJECTION_KEY as Ep, PICKER_POPPER_OPTIONS_INJECTION_KEY as Ip, timeUnits as Dp } from "./time-picker/constants.js";
145
- import { buildTimeList as _p, dateEquals as yp, dayOrDaysToDate as Mp, extractDateFormat as Ap, extractTimeFormat as Kp, formatter as bp, makeList as Rp, parseDate as Fp, rangeArr as Lp, valueEquals as Op } from "./time-picker/utils.js";
146
- import { TOOLTIP_INJECTION_KEY as kp } from "./tooltip/constants.js";
147
- import { getChildState as Gp } from "./tree/model/node.js";
148
- import { dragEventsKey as hp, useDragNodeHandler as zp } from "./tree/model/useDragNode.js";
149
- import { breadcrumbKey as Hp } from "./breadcrumb/constants.js";
150
- import { CAROUSEL_ITEM_NAME as Jp, carouselContextKey as Yp } from "./carousel/constants.js";
151
- import { collapseEmits as Wp, collapseProps as jp, emitChangeFn as Qp } from "./collapse/collapse.js";
152
- import { collapseItemProps as Zp } from "./collapse/collapse-item.js";
153
- import { collapseContextKey as om } from "./collapse/constants.js";
154
- import { countdownEmits as em, countdownProps as tm } from "./countdown/countdown.js";
155
- import { inputTagEmits as pm, inputTagProps as mm } from "./input-tag/input-tag.js";
156
- import { useModal as xm, useModalInner as im } from "./modal/use/use-modal.js";
157
- import { defaultProps as sm, segmentedEmits as Vm, segmentedProps as lm } from "./segmented/segmented.js";
158
- import { LEFT_CHECK_CHANGE_EVENT as dm, RIGHT_CHECK_CHANGE_EVENT as cm, transferCheckedChangeFn as Cm, transferEmits as Pm, transferProps as Tm } from "./transfer/transfer.js";
159
- import { genFileId as Em, uploadContextKey as Im } from "./upload/constants.js";
160
- import { watermarkProps as Sm } from "./watermark/watermark.js";
161
- import { vLoading as ym, createLoadingDirective as Mm, vLoading as Am } from "./loading/directive.js";
162
- import { Loading as bm } from "./loading/service.js";
163
- import { messageDefaults as Fm, messageTypes as Lm } from "./message/types.js";
164
- import { isDatePicker as Nm, isInput as km, isRangePicker as vm } from "./super-form/component-map.js";
165
- import { getDynamicProps as wm, useForm as hm } from "./super-form/use/use-form.js";
75
+ import { VftTreeSelect as xe } from "./tree-select/index.js";
76
+ import { VftVerifyCode as ne } from "./verify-code/index.js";
77
+ import { default as Ve } from "./virtual-list/components/fixed-size-list.js";
78
+ import { default as ue } from "./virtual-list/components/dynamic-size-list.js";
79
+ import { default as ce } from "./virtual-list/components/fixed-size-grid.js";
80
+ import { default as Te } from "./virtual-list/components/dynamic-size-grid.js";
81
+ import { virtualizedGridProps as ge, virtualizedListProps as Ee, virtualizedProps as Ie, virtualizedScrollbarProps as De } from "./virtual-list/props.js";
82
+ import { VftAutocomplete as _e } from "./autocomplete/index.js";
83
+ import { VftBreadcrumb as Me, VftBreadcrumbItem as Ae } from "./breadcrumb/index.js";
84
+ import { VftCarousel as be, VftCarouselItem as Re } from "./carousel/index.js";
85
+ import { VftCollapse as Le, VftCollapseItem as Oe } from "./collapse/index.js";
86
+ import { VftCountdown as ke } from "./countdown/index.js";
87
+ import { VftInputTag as Ge } from "./input-tag/index.js";
88
+ import { VftModal as he } from "./modal/index.js";
89
+ import { VftProgress as Be } from "./progress/index.js";
90
+ import { VftSegmented as Ue } from "./segmented/index.js";
91
+ import { VftStatistic as Ye } from "./statistic/index.js";
92
+ import { VftTimeline as We, VftTimelineItem as je } from "./timeline/index.js";
93
+ import { VftTransfer as Xe } from "./transfer/index.js";
94
+ import { VftUpload as $e } from "./upload/index.js";
95
+ import { VftWatermark as rt } from "./watermark/index.js";
96
+ import { VftMdCodeDemo as tt } from "./md-code-demo/index.js";
97
+ import { VftMdCodeTabs as pt } from "./md-code-tabs/index.js";
98
+ import { VftMdComment as at } from "./md-comment/index.js";
99
+ import { VftMdContainer as it } from "./md-container/index.js";
100
+ import { VftMdTabs as st } from "./md-tabs/index.js";
101
+ import { VftMdVuePlayground as lt } from "./md-vue-playground/index.js";
102
+ import { VftInfiniteScroll as dt } from "./infinite-scroll/index.js";
103
+ import { VftLoading as Ct } from "./loading/index.js";
104
+ import { VftMessage as Pt, VftMessage as gt } from "./message/index.js";
105
+ import { VftProgressI as It } from "./progress-i/index.js";
106
+ import { VftSuperForm as St } from "./super-form/index.js";
107
+ import { default as yt } from "./popper/arrow.vue2.js";
108
+ import { default as At } from "./popper/content.vue2.js";
109
+ import { default as bt } from "./popper/trigger.vue2.js";
110
+ import { default as Ft } from "./time-picker/common/picker.vue2.js";
111
+ import { default as Ot } from "./time-picker/time-picker-com/panel-time-pick.vue2.js";
112
+ import { buttonGroupContextKey as kt } from "./button/constants.js";
113
+ import { cascaderEmits as Gt, cascaderProps as wt } from "./cascader/cascader.js";
114
+ import { CASCADER_PANEL_INJECTION_KEY as zt } from "./cascader-panel/types.js";
115
+ import { CommonProps as Ht, DefaultProps as Ut, cascaderPanelEmits as Jt, cascaderPanelProps as Yt, useCascaderConfig as qt } from "./cascader-panel/config.js";
116
+ import { checkboxGroupContextKey as jt } from "./checkbox/constants.js";
117
+ import { configProviderContextKey as Xt, messageConfig as Zt } from "./config-provider/constants.js";
118
+ import { provideGlobalConfig as of, useGlobalComponentSettings as rf, useGlobalConfig as ef } from "./config-provider/hooks/use-global-config.js";
119
+ import { ROOT_PICKER_INJECTION_KEY as ff, ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY as pf } from "./date-picker/constants.js";
120
+ import { datePickerProps as af } from "./date-picker/props/date-picker.js";
121
+ import { DEFAULT_DIALOG_TRANSITION as nf, dialogInjectionKey as sf } from "./dialog/constants.js";
122
+ import { useDialog as lf } from "./dialog/use-dialog.js";
123
+ import { DROPDOWN_INJECTION_KEY as df } from "./dropdown/tokens.js";
124
+ import { EmptyEnum as Cf } from "./empty/constants.js";
125
+ import { formContextKey as Pf, formItemContextKey as gf } from "./form/constants.js";
126
+ import { useDisabled as If, useFormDisabled as Df, useFormSize as Sf, useSize as _f } from "./form/hooks/use-form-common-props.js";
127
+ import { useFormItem as Mf, useFormItemInputId as Af } from "./form/hooks/use-form-item.js";
128
+ import { MenuTypeEnum as bf } from "./horizontal-menu/constants.js";
129
+ import { initAffixTabs as Ff, useTabsDrag as Lf } from "./multiple-tabs/use/use-multiple-tabs.js";
130
+ import { useTabDropdown as Nf } from "./multiple-tabs/use/use-tab-dropdown.js";
131
+ import { notificationEmits as vf, notificationProps as Gf, notificationTypes as wf } from "./notification/notification.js";
132
+ import { usePagination as zf, vftPaginationKey as Bf } from "./pagination/usePagination.js";
133
+ import { radioGroupKey as Uf } from "./radio/constants.js";
134
+ import { rowContextKey as Yf } from "./row/constants.js";
135
+ import { scrollbarContextKey as Wf } from "./scrollbar/constants.js";
136
+ import { BAR_MAP as Qf, GAP as Xf, renderThumbStyle as Zf } from "./scrollbar/util.js";
137
+ import { selectV2InjectionKey as op } from "./select/token.js";
138
+ import { sliderContextKey as ep } from "./slider/constants.js";
139
+ import { sliderEmits as fp } from "./slider/slider.js";
140
+ import { spaceProps as mp } from "./space/space.js";
141
+ import { useSpace as xp } from "./space/use-space.js";
142
+ import { addRequire as np, removeRequire as sp, selectMapping as Vp } from "./table/utils.js";
143
+ import { TabsRootContextKey as up } from "./tabs/types.js";
144
+ import { timePickerDefaultProps as cp, timePickerRangeTriggerProps as Cp, timePickerRngeTriggerProps as Tp } from "./time-picker/common/props.js";
145
+ import { DEFAULT_FORMATS_DATE as gp, DEFAULT_FORMATS_DATEPICKER as Ep, DEFAULT_FORMATS_TIME as Ip, PICKER_BASE_INJECTION_KEY as Dp, PICKER_POPPER_OPTIONS_INJECTION_KEY as Sp, timeUnits as _p } from "./time-picker/constants.js";
146
+ import { buildTimeList as Mp, dateEquals as Ap, dayOrDaysToDate as Kp, extractDateFormat as bp, extractTimeFormat as Rp, formatter as Fp, makeList as Lp, parseDate as Op, rangeArr as Np, valueEquals as kp } from "./time-picker/utils.js";
147
+ import { TOOLTIP_INJECTION_KEY as Gp } from "./tooltip/constants.js";
148
+ import { getChildState as hp } from "./tree/model/node.js";
149
+ import { dragEventsKey as Bp, useDragNodeHandler as Hp } from "./tree/model/useDragNode.js";
150
+ import { breadcrumbKey as Jp } from "./breadcrumb/constants.js";
151
+ import { CAROUSEL_ITEM_NAME as qp, carouselContextKey as Wp } from "./carousel/constants.js";
152
+ import { collapseEmits as Qp, collapseProps as Xp, emitChangeFn as Zp } from "./collapse/collapse.js";
153
+ import { collapseItemProps as om } from "./collapse/collapse-item.js";
154
+ import { collapseContextKey as em } from "./collapse/constants.js";
155
+ import { countdownEmits as fm, countdownProps as pm } from "./countdown/countdown.js";
156
+ import { inputTagEmits as am, inputTagProps as xm } from "./input-tag/input-tag.js";
157
+ import { useModal as nm, useModalInner as sm } from "./modal/use/use-modal.js";
158
+ import { defaultProps as lm, segmentedEmits as um, segmentedProps as dm } from "./segmented/segmented.js";
159
+ import { LEFT_CHECK_CHANGE_EVENT as Cm, RIGHT_CHECK_CHANGE_EVENT as Tm, transferCheckedChangeFn as Pm, transferEmits as gm, transferProps as Em } from "./transfer/transfer.js";
160
+ import { genFileId as Dm, uploadContextKey as Sm } from "./upload/constants.js";
161
+ import { watermarkProps as ym } from "./watermark/watermark.js";
162
+ import { vLoading as Am, createLoadingDirective as Km, vLoading as bm } from "./loading/directive.js";
163
+ import { Loading as Fm } from "./loading/service.js";
164
+ import { messageDefaults as Om, messageTypes as Nm } from "./message/types.js";
165
+ import { isDatePicker as vm, isInput as Gm, isRangePicker as wm } from "./super-form/component-map.js";
166
+ import { getDynamicProps as zm, useForm as Bm } from "./super-form/use/use-form.js";
166
167
  export {
167
- Wf as BAR_MAP,
168
- Jp as CAROUSEL_ITEM_NAME,
169
- wt as CASCADER_PANEL_INJECTION_KEY,
170
- bt as CommonPicker,
171
- zt as CommonProps,
172
- af as DEFAULT_DIALOG_TRANSITION,
173
- Pp as DEFAULT_FORMATS_DATE,
174
- Tp as DEFAULT_FORMATS_DATEPICKER,
175
- gp as DEFAULT_FORMATS_TIME,
176
- lf as DROPDOWN_INJECTION_KEY,
177
- Bt as DefaultProps,
178
- ce as DynamicSizeGrid,
179
- Ve as DynamicSizeList,
180
- df as EmptyEnum,
181
- ue as FixedSizeGrid,
182
- ne as FixedSizeList,
183
- jf as GAP,
184
- dm as LEFT_CHECK_CHANGE_EVENT,
185
- Af as MenuTypeEnum,
186
- Ct as Message,
187
- Ep as PICKER_BASE_INJECTION_KEY,
188
- Ip as PICKER_POPPER_OPTIONS_INJECTION_KEY,
189
- cm as RIGHT_CHECK_CHANGE_EVENT,
190
- ef as ROOT_PICKER_INJECTION_KEY,
191
- tf as ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY,
192
- kp as TOOLTIP_INJECTION_KEY,
193
- Vp as TabsRootContextKey,
194
- Ft as TimePickPanel,
168
+ Qf as BAR_MAP,
169
+ qp as CAROUSEL_ITEM_NAME,
170
+ zt as CASCADER_PANEL_INJECTION_KEY,
171
+ Ft as CommonPicker,
172
+ Ht as CommonProps,
173
+ nf as DEFAULT_DIALOG_TRANSITION,
174
+ gp as DEFAULT_FORMATS_DATE,
175
+ Ep as DEFAULT_FORMATS_DATEPICKER,
176
+ Ip as DEFAULT_FORMATS_TIME,
177
+ df as DROPDOWN_INJECTION_KEY,
178
+ Ut as DefaultProps,
179
+ Te as DynamicSizeGrid,
180
+ ue as DynamicSizeList,
181
+ Cf as EmptyEnum,
182
+ ce as FixedSizeGrid,
183
+ Ve as FixedSizeList,
184
+ Xf as GAP,
185
+ Cm as LEFT_CHECK_CHANGE_EVENT,
186
+ bf as MenuTypeEnum,
187
+ Pt as Message,
188
+ Dp as PICKER_BASE_INJECTION_KEY,
189
+ Sp as PICKER_POPPER_OPTIONS_INJECTION_KEY,
190
+ Tm as RIGHT_CHECK_CHANGE_EVENT,
191
+ ff as ROOT_PICKER_INJECTION_KEY,
192
+ pf as ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY,
193
+ Gp as TOOLTIP_INJECTION_KEY,
194
+ up as TabsRootContextKey,
195
+ Ot as TimePickPanel,
195
196
  t as VftAlert,
196
197
  B as VftAside,
197
- De as VftAutocomplete,
198
+ _e as VftAutocomplete,
198
199
  p as VftAvatar,
199
200
  a as VftAvatarStack,
200
201
  i as VftBacktop,
201
- _e as VftBreadcrumb,
202
- ye as VftBreadcrumbItem,
202
+ Me as VftBreadcrumb,
203
+ Ae as VftBreadcrumbItem,
203
204
  s as VftButton,
204
205
  V as VftButtonGroup,
205
206
  u as VftCard,
206
- Ae as VftCarousel,
207
- Ke as VftCarouselItem,
207
+ be as VftCarousel,
208
+ Re as VftCarouselItem,
208
209
  c as VftCascader,
209
- P as VftCascaderPanel,
210
+ T as VftCascaderPanel,
210
211
  g as VftCheckTag,
211
212
  I as VftCheckbox,
212
213
  D as VftCheckboxButton,
@@ -216,13 +217,13 @@ export {
216
217
  F as VftClampTooltip,
217
218
  A as VftClientOnly,
218
219
  O as VftCol,
219
- Re as VftCollapse,
220
- Fe as VftCollapseItem,
220
+ Le as VftCollapse,
221
+ Oe as VftCollapseItem,
221
222
  k as VftCollapseTransition,
222
223
  G as VftColorPicker,
223
224
  h as VftConfigProvider,
224
225
  H as VftContainer,
225
- Oe as VftCountdown,
226
+ ke as VftCountdown,
226
227
  ro as VftDatePicker,
227
228
  to as VftDateTimeSelect,
228
229
  po as VftDescriptions,
@@ -233,7 +234,7 @@ export {
233
234
  uo as VftDropdown,
234
235
  co as VftDropdownItem,
235
236
  Co as VftDropdownMenu,
236
- To as VftEmpty,
237
+ Po as VftEmpty,
237
238
  U as VftFooter,
238
239
  Eo as VftFooterLayout,
239
240
  Do as VftForm,
@@ -247,28 +248,28 @@ export {
247
248
  Oo as VftIframeLayout,
248
249
  ko as VftImage,
249
250
  Go as VftImageViewer,
250
- lt as VftInfiniteScroll,
251
+ dt as VftInfiniteScroll,
251
252
  ho as VftInput,
252
253
  Bo as VftInputNumber,
253
- ke as VftInputTag,
254
+ Ge as VftInputTag,
254
255
  Uo as VftLink,
255
256
  Yo as VftListCell,
256
- dt as VftLoading,
257
- ym as VftLoadingDirective,
258
- bm as VftLoadingService,
257
+ Ct as VftLoading,
258
+ Am as VftLoadingDirective,
259
+ Fm as VftLoadingService,
259
260
  Wo as VftLogo,
260
261
  Y as VftMain,
261
- rt as VftMdCodeDemo,
262
- tt as VftMdCodeTabs,
263
- pt as VftMdComment,
264
- at as VftMdContainer,
265
- it as VftMdTabs,
266
- st as VftMdVuePlayground,
262
+ tt as VftMdCodeDemo,
263
+ pt as VftMdCodeTabs,
264
+ at as VftMdComment,
265
+ it as VftMdContainer,
266
+ st as VftMdTabs,
267
+ lt as VftMdVuePlayground,
267
268
  Qo as VftMenu,
268
269
  Xo as VftMenuItem,
269
270
  Zo as VftMenuItemGroup,
270
- Pt as VftMessage,
271
- Ge as VftModal,
271
+ gt as VftMessage,
272
+ he as VftModal,
272
273
  rr as VftMultipleTabs,
273
274
  tr as VftNotification,
274
275
  pr as VftOverlay,
@@ -277,13 +278,13 @@ export {
277
278
  sr as VftPopconfirm,
278
279
  lr as VftPopover,
279
280
  dr as VftPopper,
280
- St as VftPopperArrow,
281
- yt as VftPopperContent,
282
- At as VftPopperTrigger,
283
- he as VftProgress,
284
- gt as VftProgressI,
281
+ yt as VftPopperArrow,
282
+ At as VftPopperContent,
283
+ bt as VftPopperTrigger,
284
+ Be as VftProgress,
285
+ It as VftProgressI,
285
286
  Cr as VftQrcode,
286
- Tr as VftRadio,
287
+ Pr as VftRadio,
287
288
  gr as VftRadioButton,
288
289
  Er as VftRadioGroup,
289
290
  Dr as VftResult,
@@ -291,128 +292,129 @@ export {
291
292
  Mr as VftRow,
292
293
  Kr as VftScrollbar,
293
294
  Rr as VftSearch,
294
- Be as VftSegmented,
295
+ Ue as VftSegmented,
295
296
  Lr as VftSelect,
296
297
  Nr as VftSideMenu,
297
298
  vr as VftSkeleton,
298
299
  Gr as VftSkeletonItem,
299
300
  hr as VftSlider,
300
301
  Br as VftSpace,
301
- Ue as VftStatistic,
302
+ Ye as VftStatistic,
302
303
  Ur as VftStep,
303
304
  Jr as VftSteps,
304
305
  $o as VftSubMenu,
305
- It as VftSuperForm,
306
+ St as VftSuperForm,
306
307
  qr as VftSwitch,
307
308
  Xr as VftTabPane,
308
309
  jr as VftTable,
309
310
  Zr as VftTabs,
310
311
  oe as VftTag,
311
312
  ee as VftTimePicker,
312
- Ye as VftTimeline,
313
- qe as VftTimelineItem,
313
+ We as VftTimeline,
314
+ je as VftTimelineItem,
314
315
  fe as VftTooltip,
315
- je as VftTransfer,
316
+ Xe as VftTransfer,
316
317
  me as VftTree,
317
- Xe as VftUpload,
318
- xe as VftVerifyCode,
319
- $e as VftWatermark,
320
- xp as addRequire,
321
- Hp as breadcrumbKey,
322
- _p as buildTimeList,
323
- Ot as buttonGroupContextKey,
324
- Yp as carouselContextKey,
325
- kt as cascaderEmits,
326
- Ht as cascaderPanelEmits,
327
- Ut as cascaderPanelProps,
328
- vt as cascaderProps,
329
- qt as checkboxGroupContextKey,
330
- om as collapseContextKey,
331
- Wp as collapseEmits,
332
- Zp as collapseItemProps,
333
- jp as collapseProps,
334
- jt as configProviderContextKey,
335
- em as countdownEmits,
336
- tm as countdownProps,
318
+ xe as VftTreeSelect,
319
+ $e as VftUpload,
320
+ ne as VftVerifyCode,
321
+ rt as VftWatermark,
322
+ np as addRequire,
323
+ Jp as breadcrumbKey,
324
+ Mp as buildTimeList,
325
+ kt as buttonGroupContextKey,
326
+ Wp as carouselContextKey,
327
+ Gt as cascaderEmits,
328
+ Jt as cascaderPanelEmits,
329
+ Yt as cascaderPanelProps,
330
+ wt as cascaderProps,
331
+ jt as checkboxGroupContextKey,
332
+ em as collapseContextKey,
333
+ Qp as collapseEmits,
334
+ om as collapseItemProps,
335
+ Xp as collapseProps,
336
+ Xt as configProviderContextKey,
337
+ fm as countdownEmits,
338
+ pm as countdownProps,
337
339
  W as createContextMenu,
338
- Mm as createLoadingDirective,
339
- yp as dateEquals,
340
- pf as datePickerProps,
341
- Mp as dayOrDaysToDate,
342
- sm as defaultProps,
340
+ Km as createLoadingDirective,
341
+ Ap as dateEquals,
342
+ af as datePickerProps,
343
+ Kp as dayOrDaysToDate,
344
+ lm as defaultProps,
343
345
  j as destroyContextMenu,
344
- xf as dialogInjectionKey,
345
- hp as dragEventsKey,
346
- Qp as emitChangeFn,
347
- Ap as extractDateFormat,
348
- Kp as extractTimeFormat,
349
- Cf as formContextKey,
350
- Pf as formItemContextKey,
351
- bp as formatter,
352
- Em as genFileId,
353
- Gp as getChildState,
354
- wm as getDynamicProps,
355
- bf as initAffixTabs,
356
- pm as inputTagEmits,
357
- mm as inputTagProps,
358
- Nm as isDatePicker,
359
- km as isInput,
360
- vm as isRangePicker,
361
- Rp as makeList,
362
- Qt as messageConfig,
363
- Fm as messageDefaults,
364
- Lm as messageTypes,
365
- Nf as notificationEmits,
366
- kf as notificationProps,
367
- vf as notificationTypes,
368
- Fp as parseDate,
369
- Zt as provideGlobalConfig,
370
- Bf as radioGroupKey,
371
- Lp as rangeArr,
372
- ip as removeRequire,
373
- Qf as renderThumbStyle,
374
- Uf as rowContextKey,
375
- Yf as scrollbarContextKey,
376
- Vm as segmentedEmits,
377
- lm as segmentedProps,
378
- np as selectMapping,
379
- Zf as selectV2InjectionKey,
380
- op as sliderContextKey,
381
- ep as sliderEmits,
382
- fp as spaceProps,
383
- up as timePickerDefaultProps,
384
- dp as timePickerRangeTriggerProps,
385
- cp as timePickerRngeTriggerProps,
386
- Dp as timeUnits,
387
- Cm as transferCheckedChangeFn,
388
- Pm as transferEmits,
389
- Tm as transferProps,
390
- Im as uploadContextKey,
391
- Jt as useCascaderConfig,
346
+ sf as dialogInjectionKey,
347
+ Bp as dragEventsKey,
348
+ Zp as emitChangeFn,
349
+ bp as extractDateFormat,
350
+ Rp as extractTimeFormat,
351
+ Pf as formContextKey,
352
+ gf as formItemContextKey,
353
+ Fp as formatter,
354
+ Dm as genFileId,
355
+ hp as getChildState,
356
+ zm as getDynamicProps,
357
+ Ff as initAffixTabs,
358
+ am as inputTagEmits,
359
+ xm as inputTagProps,
360
+ vm as isDatePicker,
361
+ Gm as isInput,
362
+ wm as isRangePicker,
363
+ Lp as makeList,
364
+ Zt as messageConfig,
365
+ Om as messageDefaults,
366
+ Nm as messageTypes,
367
+ vf as notificationEmits,
368
+ Gf as notificationProps,
369
+ wf as notificationTypes,
370
+ Op as parseDate,
371
+ of as provideGlobalConfig,
372
+ Uf as radioGroupKey,
373
+ Np as rangeArr,
374
+ sp as removeRequire,
375
+ Zf as renderThumbStyle,
376
+ Yf as rowContextKey,
377
+ Wf as scrollbarContextKey,
378
+ um as segmentedEmits,
379
+ dm as segmentedProps,
380
+ Vp as selectMapping,
381
+ op as selectV2InjectionKey,
382
+ ep as sliderContextKey,
383
+ fp as sliderEmits,
384
+ mp as spaceProps,
385
+ cp as timePickerDefaultProps,
386
+ Cp as timePickerRangeTriggerProps,
387
+ Tp as timePickerRngeTriggerProps,
388
+ _p as timeUnits,
389
+ Pm as transferCheckedChangeFn,
390
+ gm as transferEmits,
391
+ Em as transferProps,
392
+ Sm as uploadContextKey,
393
+ qt as useCascaderConfig,
392
394
  $ as useContextMenu,
393
- sf as useDialog,
394
- gf as useDisabled,
395
- zp as useDragNodeHandler,
396
- hm as useForm,
397
- Ef as useFormDisabled,
398
- _f as useFormItem,
399
- yf as useFormItemInputId,
400
- If as useFormSize,
401
- $t as useGlobalComponentSettings,
402
- of as useGlobalConfig,
403
- xm as useModal,
404
- im as useModalInner,
405
- wf as usePagination,
406
- Df as useSize,
407
- mp as useSpace,
408
- Lf as useTabDropdown,
409
- Rf as useTabsDrag,
410
- Am as vLoading,
411
- Op as valueEquals,
412
- hf as vftPaginationKey,
413
- Pe as virtualizedGridProps,
414
- Te as virtualizedListProps,
415
- ge as virtualizedProps,
416
- Ee as virtualizedScrollbarProps,
417
- Sm as watermarkProps
395
+ lf as useDialog,
396
+ If as useDisabled,
397
+ Hp as useDragNodeHandler,
398
+ Bm as useForm,
399
+ Df as useFormDisabled,
400
+ Mf as useFormItem,
401
+ Af as useFormItemInputId,
402
+ Sf as useFormSize,
403
+ rf as useGlobalComponentSettings,
404
+ ef as useGlobalConfig,
405
+ nm as useModal,
406
+ sm as useModalInner,
407
+ zf as usePagination,
408
+ _f as useSize,
409
+ xp as useSpace,
410
+ Nf as useTabDropdown,
411
+ Lf as useTabsDrag,
412
+ bm as vLoading,
413
+ kp as valueEquals,
414
+ Bf as vftPaginationKey,
415
+ ge as virtualizedGridProps,
416
+ Ee as virtualizedListProps,
417
+ Ie as virtualizedProps,
418
+ De as virtualizedScrollbarProps,
419
+ ym as watermarkProps
418
420
  };