vft 0.0.317 → 0.0.319
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.
- package/dist/index.css +1 -1
- package/es/component.js +157 -155
- package/es/components/avatar-stack/avatar-stack.vue.d.ts +12 -0
- package/es/components/avatar-stack/avatar-stack.vue.js +4 -0
- package/es/components/avatar-stack/avatar-stack.vue2.js +70 -0
- package/es/components/avatar-stack/index.d.ts +43 -0
- package/es/components/avatar-stack/index.js +12 -0
- package/es/components/avatar-stack/style/css.d.ts +4 -0
- package/es/components/avatar-stack/style/css.js +6 -0
- package/es/components/avatar-stack/style/index.d.ts +4 -0
- package/es/components/avatar-stack/style/index.js +6 -0
- package/es/components/avatar-stack/types.d.ts +19 -0
- package/es/components/avatar-stack/types.js +1 -0
- package/es/components/color-picker/color-picker.vue2.js +1 -1
- package/es/components/index.d.ts +13 -12
- package/es/components/index.js +421 -419
- package/es/components/list-cell/list-cell.vue2.js +36 -36
- package/es/components/super-form/component-map.d.ts +6 -0
- package/es/components/super-form/component-map.js +42 -30
- package/es/components/super-form/style/css.d.ts +6 -0
- package/es/components/super-form/style/css.js +15 -6
- package/es/components/super-form/style/index.d.ts +6 -0
- package/es/components/super-form/style/index.js +16 -7
- package/es/components/super-form/super-form-item.vue2.js +217 -199
- package/es/components/super-form/use/helper.js +137 -23
- package/es/components/table/style/css.js +15 -6
- package/es/components/table/style/index.js +16 -7
- package/es/components/tree/index.d.ts +5 -5
- package/es/components/tree/tree.vue.d.ts +2 -2
- package/es/components/upload/index.d.ts +15 -15
- package/es/components/upload/upload-content.vue.d.ts +1 -1
- package/es/components/upload/upload-content.vue2.js +51 -47
- package/es/components/upload/upload-list.vue2.js +70 -66
- package/es/components/upload/upload.vue.d.ts +1 -1
- package/es/components/upload/upload.vue2.js +30 -30
- package/es/index.js +562 -560
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/component.cjs +1 -1
- package/lib/components/avatar-stack/avatar-stack.vue.cjs +1 -0
- package/lib/components/avatar-stack/avatar-stack.vue.d.ts +12 -0
- package/lib/components/avatar-stack/avatar-stack.vue2.cjs +1 -0
- package/lib/components/avatar-stack/index.cjs +1 -0
- package/lib/components/avatar-stack/index.d.ts +43 -0
- package/lib/components/avatar-stack/style/css.cjs +1 -0
- package/lib/components/avatar-stack/style/css.d.ts +4 -0
- package/lib/components/avatar-stack/style/index.cjs +1 -0
- package/lib/components/avatar-stack/style/index.d.ts +4 -0
- package/lib/components/avatar-stack/types.cjs +1 -0
- package/lib/components/avatar-stack/types.d.ts +19 -0
- package/lib/components/color-picker/color-picker.vue2.cjs +1 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/index.d.ts +13 -12
- package/lib/components/list-cell/list-cell.vue2.cjs +1 -1
- package/lib/components/super-form/component-map.cjs +1 -1
- package/lib/components/super-form/component-map.d.ts +6 -0
- package/lib/components/super-form/style/css.cjs +1 -1
- package/lib/components/super-form/style/css.d.ts +6 -0
- package/lib/components/super-form/style/index.cjs +1 -1
- package/lib/components/super-form/style/index.d.ts +6 -0
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/super-form/use/helper.cjs +1 -1
- package/lib/components/table/style/css.cjs +1 -1
- package/lib/components/table/style/index.cjs +1 -1
- package/lib/components/tree/index.d.ts +5 -5
- package/lib/components/tree/tree.vue.d.ts +2 -2
- package/lib/components/upload/index.d.ts +15 -15
- package/lib/components/upload/upload-content.vue.d.ts +1 -1
- package/lib/components/upload/upload-content.vue2.cjs +1 -1
- package/lib/components/upload/upload-list.vue2.cjs +1 -1
- package/lib/components/upload/upload.vue.d.ts +1 -1
- package/lib/components/upload/upload.vue2.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +5 -5
- package/theme-style/index.css +1 -1
- package/theme-style/src/avatar-stack.scss +38 -0
- package/theme-style/src/common/var.scss +16 -2
- package/theme-style/src/index.scss +1 -0
- package/theme-style/src/super-form.scss +6 -1
- package/theme-style/vft-avatar-stack.css +1 -0
- package/theme-style/vft-super-form.css +1 -1
- package/web-types.json +1 -1
package/es/components/index.js
CHANGED
|
@@ -1,430 +1,432 @@
|
|
|
1
1
|
import { VftAlert as t } from "./alert/index.js";
|
|
2
2
|
import { VftAvatar as p } from "./avatar/index.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
3
|
+
import { VftAvatarStack as a } from "./avatar-stack/index.js";
|
|
4
|
+
import { VftBacktop as i } from "./backtop/index.js";
|
|
5
|
+
import { VftButton as s, VftButtonGroup as V } from "./button/index.js";
|
|
6
|
+
import { VftCard as u } from "./card/index.js";
|
|
7
|
+
import { VftCascader as c } from "./cascader/index.js";
|
|
8
|
+
import { VftCascaderPanel as E } from "./cascader-panel/index.js";
|
|
9
|
+
import { VftCheckTag as I } from "./check-tag/index.js";
|
|
10
|
+
import { VftCheckbox as g, VftCheckboxButton as D, VftCheckboxGroup as _ } from "./checkbox/index.js";
|
|
11
|
+
import { VftClamp as M } from "./clamp/index.js";
|
|
12
|
+
import { VftClampToggle as y } from "./clamp-toggle/index.js";
|
|
13
|
+
import { VftClampTooltip as L } from "./clamp-tooltip/index.js";
|
|
14
|
+
import { VftCol as b } from "./col/index.js";
|
|
15
|
+
import { VftCollapseTransition as N } from "./collapse-transition/index.js";
|
|
16
|
+
import { VftColorPicker as k } from "./color-picker/index.js";
|
|
17
|
+
import { VftConfigProvider as G } from "./config-provider/index.js";
|
|
18
|
+
import { VftAside as h, VftContainer as z, VftFooter as H, VftHeader as B, VftMain as U } from "./container/index.js";
|
|
19
|
+
import { createContextMenu as Y, destroyContextMenu as q } from "./context-menu/createContextMenu.js";
|
|
20
|
+
import { VftIcon as j } from "./icon/index.js";
|
|
20
21
|
import "vue";
|
|
21
|
-
import { useContextMenu as
|
|
22
|
-
import { VftDatePicker as
|
|
23
|
-
import { VftDateTimeSelect as
|
|
24
|
-
import { VftDescriptions as
|
|
25
|
-
import { VftDialog as
|
|
26
|
-
import { VftDivider as
|
|
27
|
-
import { VftDrawer as
|
|
28
|
-
import { VftDropdown as
|
|
29
|
-
import { VftEmpty as
|
|
30
|
-
import { VftFooterLayout as
|
|
31
|
-
import { VftForm as
|
|
32
|
-
import { VftFullScreen as
|
|
33
|
-
import { VftHeaderLayout as
|
|
34
|
-
import { VftHorizontalMenu as
|
|
35
|
-
import { VftIconText as
|
|
36
|
-
import { VftIframeLayout as
|
|
37
|
-
import { VftImage as
|
|
38
|
-
import { VftImageViewer as
|
|
39
|
-
import { VftInput as
|
|
40
|
-
import { VftInputNumber as
|
|
41
|
-
import { VftLink as
|
|
42
|
-
import { VftListCell as
|
|
43
|
-
import { VftLogo as
|
|
44
|
-
import { VftMenu as
|
|
45
|
-
import { VftNotification as Xo } from "./notification/index.js";
|
|
22
|
+
import { useContextMenu as X } from "./context-menu/useContextMenu.js";
|
|
23
|
+
import { VftDatePicker as $ } from "./date-picker/index.js";
|
|
24
|
+
import { VftDateTimeSelect as ro } from "./date-time-select/index.js";
|
|
25
|
+
import { VftDescriptions as to, VftDescriptionsItem as fo } from "./descriptions/index.js";
|
|
26
|
+
import { VftDialog as mo } from "./dialog/index.js";
|
|
27
|
+
import { VftDivider as xo } from "./divider/index.js";
|
|
28
|
+
import { VftDrawer as no } from "./drawer/index.js";
|
|
29
|
+
import { VftDropdown as Vo, VftDropdownItem as lo, VftDropdownMenu as uo } from "./dropdown/index.js";
|
|
30
|
+
import { VftEmpty as Co } from "./empty/index.js";
|
|
31
|
+
import { VftFooterLayout as To } from "./footer-layout/index.js";
|
|
32
|
+
import { VftForm as Po, VftFormItem as go } from "./form/index.js";
|
|
33
|
+
import { VftFullScreen as _o } from "./full-screen/index.js";
|
|
34
|
+
import { VftHeaderLayout as Mo } from "./header-layout/index.js";
|
|
35
|
+
import { VftHorizontalMenu as yo } from "./horizontal-menu/index.js";
|
|
36
|
+
import { VftIconText as Lo } from "./icon-text/index.js";
|
|
37
|
+
import { VftIframeLayout as bo } from "./iframe-layout/index.js";
|
|
38
|
+
import { VftImage as No } from "./image/index.js";
|
|
39
|
+
import { VftImageViewer as ko } from "./image-viewer/index.js";
|
|
40
|
+
import { VftInput as Go } from "./input/index.js";
|
|
41
|
+
import { VftInputNumber as ho } from "./input-number/index.js";
|
|
42
|
+
import { VftLink as Ho } from "./link/index.js";
|
|
43
|
+
import { VftListCell as Uo } from "./list-cell/index.js";
|
|
44
|
+
import { VftLogo as Yo } from "./logo/index.js";
|
|
45
|
+
import { VftMenu as Wo, VftMenuItem as jo, VftMenuItemGroup as Qo, VftSubMenu as Xo } from "./menu/index.js";
|
|
46
46
|
import { VftMultipleTabs as $o } from "./multiple-tabs/index.js";
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
47
|
+
import { VftNotification as rr } from "./notification/index.js";
|
|
48
|
+
import { VftOverlay as tr } from "./overlay/index.js";
|
|
49
|
+
import { VftPageWrapper as pr } from "./page-wrapper/index.js";
|
|
50
|
+
import { VftPagination as ar } from "./pagination/index.js";
|
|
51
|
+
import { VftPopconfirm as ir } from "./popconfirm/index.js";
|
|
52
|
+
import { VftPopover as sr } from "./popover/index.js";
|
|
53
|
+
import { VftPopper as lr } from "./popper/index.js";
|
|
54
|
+
import { VftQrcode as dr } from "./qrcode/index.js";
|
|
55
|
+
import { VftRadio as Cr, VftRadioButton as Er, VftRadioGroup as Tr } from "./radio/index.js";
|
|
56
|
+
import { VftResult as Pr } from "./result/index.js";
|
|
57
|
+
import { VftRouterViewContent as Dr } from "./router-view-content/index.js";
|
|
58
|
+
import { VftRow as Sr } from "./row/index.js";
|
|
59
|
+
import { VftScrollbar as Fr } from "./scrollbar/index.js";
|
|
60
|
+
import { VftSearch as Ar } from "./search/index.js";
|
|
61
|
+
import { VftSelect as Kr } from "./select/index.js";
|
|
62
|
+
import { VftSideMenu as Rr } from "./side-menu/index.js";
|
|
63
|
+
import { VftSkeleton as Or, VftSkeletonItem as kr } from "./skeleton/index.js";
|
|
64
|
+
import { VftSlider as Gr } from "./slider/index.js";
|
|
65
|
+
import { VftSpace as hr } from "./space/index.js";
|
|
66
|
+
import { VftStep as Hr, VftSteps as Br } from "./steps/index.js";
|
|
67
|
+
import { VftSwitch as Jr } from "./switch/index.js";
|
|
68
|
+
import { VftTable as qr } from "./table/index.js";
|
|
69
|
+
import { VftTabPane as jr, VftTabs as Qr } from "./tabs/index.js";
|
|
70
|
+
import { VftTag as Zr } from "./tag/index.js";
|
|
71
|
+
import { VftTimePicker as oe } from "./time-picker/index.js";
|
|
72
|
+
import { VftTooltip as ee } from "./tooltip/index.js";
|
|
73
|
+
import { VftTree as fe } from "./tree/index.js";
|
|
74
|
+
import { VftVerifyCode as me } from "./verify-code/index.js";
|
|
75
|
+
import { default as xe } from "./virtual-list/components/fixed-size-list.js";
|
|
76
|
+
import { default as ne } from "./virtual-list/components/dynamic-size-list.js";
|
|
77
|
+
import { default as Ve } from "./virtual-list/components/fixed-size-grid.js";
|
|
78
|
+
import { default as ue } from "./virtual-list/components/dynamic-size-grid.js";
|
|
79
|
+
import { virtualizedGridProps as ce, virtualizedListProps as Ce, virtualizedProps as Ee, virtualizedScrollbarProps as Te } from "./virtual-list/props.js";
|
|
80
|
+
import { VftAutocomplete as Pe } from "./autocomplete/index.js";
|
|
81
|
+
import { VftBreadcrumb as De, VftBreadcrumbItem as _e } from "./breadcrumb/index.js";
|
|
82
|
+
import { VftCarousel as Me, VftCarouselItem as Fe } from "./carousel/index.js";
|
|
83
|
+
import { VftCollapse as Ae, VftCollapseItem as Le } from "./collapse/index.js";
|
|
84
|
+
import { VftCountdown as be } from "./countdown/index.js";
|
|
85
|
+
import { VftInputTag as Ne } from "./input-tag/index.js";
|
|
86
|
+
import { VftModal as ke } from "./modal/index.js";
|
|
87
|
+
import { VftProgress as Ge } from "./progress/index.js";
|
|
88
|
+
import { VftSegmented as he } from "./segmented/index.js";
|
|
89
|
+
import { VftStatistic as He } from "./statistic/index.js";
|
|
90
|
+
import { VftSuperForm as Ue } from "./super-form/index.js";
|
|
91
|
+
import { VftTimeline as Ye, VftTimelineItem as qe } from "./timeline/index.js";
|
|
92
92
|
import { VftTransfer as je } from "./transfer/index.js";
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import { default as gt } from "./popper/
|
|
106
|
-
import { default as _t } from "./popper/
|
|
107
|
-
import { default as Mt } from "./
|
|
108
|
-
import { default as yt } from "./time-picker/
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import { initAffixTabs as
|
|
128
|
-
import { useTabDropdown as
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import { LEFT_CHECK_CHANGE_EVENT as
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
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 Et } from "./message/index.js";
|
|
104
|
+
import { VftProgressI as It } from "./progress-i/index.js";
|
|
105
|
+
import { default as gt } from "./popper/arrow.vue2.js";
|
|
106
|
+
import { default as _t } from "./popper/content.vue2.js";
|
|
107
|
+
import { default as Mt } from "./popper/trigger.vue2.js";
|
|
108
|
+
import { default as yt } from "./time-picker/common/picker.vue2.js";
|
|
109
|
+
import { default as Lt } from "./time-picker/time-picker-com/panel-time-pick.vue2.js";
|
|
110
|
+
import { buttonGroupContextKey as bt } from "./button/constants.js";
|
|
111
|
+
import { cascaderEmits as Nt, cascaderProps as Ot } from "./cascader/cascader.js";
|
|
112
|
+
import { CASCADER_PANEL_INJECTION_KEY as vt } from "./cascader-panel/types.js";
|
|
113
|
+
import { CommonProps as wt, DefaultProps as ht, cascaderPanelEmits as zt, cascaderPanelProps as Ht, useCascaderConfig as Bt } from "./cascader-panel/config.js";
|
|
114
|
+
import { checkboxGroupContextKey as Jt } from "./checkbox/constants.js";
|
|
115
|
+
import { configProviderContextKey as qt, messageConfig as Wt } from "./config-provider/constants.js";
|
|
116
|
+
import { provideGlobalConfig as Qt, useGlobalComponentSettings as Xt, useGlobalConfig as Zt } from "./config-provider/hooks/use-global-config.js";
|
|
117
|
+
import { ROOT_PICKER_INJECTION_KEY as of, ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY as rf } from "./date-picker/constants.js";
|
|
118
|
+
import { datePickerProps as tf } from "./date-picker/props/date-picker.js";
|
|
119
|
+
import { dialogInjectionKey as pf } from "./dialog/constants.js";
|
|
120
|
+
import { useDialog as af } from "./dialog/hooks/use-dialog.js";
|
|
121
|
+
import { DROPDOWN_INJECTION_KEY as nf } from "./dropdown/tokens.js";
|
|
122
|
+
import { EmptyEnum as Vf } from "./empty/constants.js";
|
|
123
|
+
import { formContextKey as uf, formItemContextKey as df } from "./form/constants.js";
|
|
124
|
+
import { useDisabled as Cf, useFormDisabled as Ef, useFormSize as Tf, useSize as If } from "./form/hooks/use-form-common-props.js";
|
|
125
|
+
import { useFormItem as gf, useFormItemInputId as Df } from "./form/hooks/use-form-item.js";
|
|
126
|
+
import { MenuTypeEnum as Sf } from "./horizontal-menu/constants.js";
|
|
127
|
+
import { initAffixTabs as Ff, useTabsDrag as yf } from "./multiple-tabs/use/use-multiple-tabs.js";
|
|
128
|
+
import { useTabDropdown as Lf } from "./multiple-tabs/use/use-tab-dropdown.js";
|
|
129
|
+
import { notificationEmits as bf, notificationProps as Rf, notificationTypes as Nf } from "./notification/notification.js";
|
|
130
|
+
import { usePagination as kf, vftPaginationKey as vf } from "./pagination/usePagination.js";
|
|
131
|
+
import { radioGroupKey as wf } from "./radio/constants.js";
|
|
132
|
+
import { rowContextKey as zf } from "./row/constants.js";
|
|
133
|
+
import { scrollbarContextKey as Bf } from "./scrollbar/constants.js";
|
|
134
|
+
import { BAR_MAP as Jf, GAP as Yf, renderThumbStyle as qf } from "./scrollbar/util.js";
|
|
135
|
+
import { selectV2InjectionKey as jf } from "./select/token.js";
|
|
136
|
+
import { sliderContextKey as Xf } from "./slider/constants.js";
|
|
137
|
+
import { sliderEmits as $f } from "./slider/slider.js";
|
|
138
|
+
import { spaceProps as rp } from "./space/space.js";
|
|
139
|
+
import { useSpace as tp } from "./space/use-space.js";
|
|
140
|
+
import { ACTION_FIELD as pp, CHECKED_FIELD as mp, CREATE_TIME_FIELD as ap, DATE_FIELD as xp, DATE_TIME_FIELD as ip, ID_FIELD as np, NAME_FIELD as sp, SEQ_FIELD as Vp, STATUS_FIELD as lp, UPDATE_TIME_FIELD as up } from "./table/field.js";
|
|
141
|
+
import { useTable as cp } from "./table/use/use-table.js";
|
|
142
|
+
import { addRequire as Ep, removeRequire as Tp, selectMapping as Ip } from "./table/utils.js";
|
|
143
|
+
import { TabsRootContextKey as gp } from "./tabs/types.js";
|
|
144
|
+
import { timePickerDefaultProps as _p, timePickerRangeTriggerProps as Sp, timePickerRngeTriggerProps as Mp } from "./time-picker/common/props.js";
|
|
145
|
+
import { DEFAULT_FORMATS_DATE as yp, DEFAULT_FORMATS_DATEPICKER as Ap, DEFAULT_FORMATS_TIME as Lp, PICKER_BASE_INJECTION_KEY as Kp, PICKER_POPPER_OPTIONS_INJECTION_KEY as bp, timeUnits as Rp } from "./time-picker/constants.js";
|
|
146
|
+
import { buildTimeList as Op, dateEquals as kp, dayOrDaysToDate as vp, extractDateFormat as Gp, extractTimeFormat as wp, formatter as hp, makeList as zp, parseDate as Hp, rangeArr as Bp, valueEquals as Up } from "./time-picker/utils.js";
|
|
147
|
+
import { TOOLTIP_INJECTION_KEY as Yp } from "./tooltip/constants.js";
|
|
148
|
+
import { getChildState as Wp } from "./tree/model/node.js";
|
|
149
|
+
import { dragEventsKey as Qp, useDragNodeHandler as Xp } from "./tree/model/useDragNode.js";
|
|
150
|
+
import { breadcrumbKey as $p } from "./breadcrumb/constants.js";
|
|
151
|
+
import { CAROUSEL_ITEM_NAME as rm, carouselContextKey as em } from "./carousel/constants.js";
|
|
152
|
+
import { collapseEmits as fm, collapseProps as pm, emitChangeFn as mm } from "./collapse/collapse.js";
|
|
153
|
+
import { collapseItemProps as xm } from "./collapse/collapse-item.js";
|
|
154
|
+
import { collapseContextKey as nm } from "./collapse/constants.js";
|
|
155
|
+
import { countdownEmits as Vm, countdownProps as lm } from "./countdown/countdown.js";
|
|
156
|
+
import { inputTagEmits as dm, inputTagProps as cm } from "./input-tag/input-tag.js";
|
|
157
|
+
import { useModal as Em, useModalInner as Tm } from "./modal/use/use-modal.js";
|
|
158
|
+
import { defaultProps as Pm, segmentedEmits as gm, segmentedProps as Dm } from "./segmented/segmented.js";
|
|
159
|
+
import { FormCompEnum as Sm, add as Mm, componentMap as Fm, del as ym, isDatePicker as Am, isInput as Lm, isRangePicker as Km } from "./super-form/component-map.js";
|
|
160
|
+
import { getDynamicProps as Rm, useForm as Nm } from "./super-form/use/use-form.js";
|
|
161
|
+
import { LEFT_CHECK_CHANGE_EVENT as km, RIGHT_CHECK_CHANGE_EVENT as vm, transferCheckedChangeFn as Gm, transferEmits as wm, transferProps as hm } from "./transfer/transfer.js";
|
|
162
|
+
import { genFileId as Hm, uploadContextKey as Bm } from "./upload/constants.js";
|
|
163
|
+
import { watermarkProps as Jm } from "./watermark/watermark.js";
|
|
164
|
+
import { vLoading as qm, createLoadingDirective as Wm, vLoading as jm } from "./loading/directive.js";
|
|
165
|
+
import { Loading as Xm } from "./loading/service.js";
|
|
166
|
+
import { messageDefaults as $m, messageTypes as oa } from "./message/types.js";
|
|
166
167
|
export {
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
168
|
+
pp as ACTION_FIELD,
|
|
169
|
+
Jf as BAR_MAP,
|
|
170
|
+
rm as CAROUSEL_ITEM_NAME,
|
|
171
|
+
vt as CASCADER_PANEL_INJECTION_KEY,
|
|
172
|
+
mp as CHECKED_FIELD,
|
|
173
|
+
ap as CREATE_TIME_FIELD,
|
|
174
|
+
yt as CommonPicker,
|
|
175
|
+
wt as CommonProps,
|
|
176
|
+
xp as DATE_FIELD,
|
|
177
|
+
ip as DATE_TIME_FIELD,
|
|
178
|
+
yp as DEFAULT_FORMATS_DATE,
|
|
179
|
+
Ap as DEFAULT_FORMATS_DATEPICKER,
|
|
180
|
+
Lp as DEFAULT_FORMATS_TIME,
|
|
181
|
+
nf as DROPDOWN_INJECTION_KEY,
|
|
182
|
+
ht as DefaultProps,
|
|
183
|
+
ue as DynamicSizeGrid,
|
|
184
|
+
ne as DynamicSizeList,
|
|
185
|
+
Vf as EmptyEnum,
|
|
186
|
+
Ve as FixedSizeGrid,
|
|
187
|
+
xe as FixedSizeList,
|
|
188
|
+
Sm as FormCompEnum,
|
|
189
|
+
Yf as GAP,
|
|
190
|
+
np as ID_FIELD,
|
|
191
|
+
km as LEFT_CHECK_CHANGE_EVENT,
|
|
192
|
+
Sf as MenuTypeEnum,
|
|
193
|
+
Ct as Message,
|
|
194
|
+
sp as NAME_FIELD,
|
|
195
|
+
Kp as PICKER_BASE_INJECTION_KEY,
|
|
196
|
+
bp as PICKER_POPPER_OPTIONS_INJECTION_KEY,
|
|
197
|
+
vm as RIGHT_CHECK_CHANGE_EVENT,
|
|
198
|
+
of as ROOT_PICKER_INJECTION_KEY,
|
|
199
|
+
rf as ROOT_PICKER_IS_DEFAULT_FORMAT_INJECTION_KEY,
|
|
200
|
+
Vp as SEQ_FIELD,
|
|
201
|
+
lp as STATUS_FIELD,
|
|
202
|
+
Yp as TOOLTIP_INJECTION_KEY,
|
|
203
|
+
gp as TabsRootContextKey,
|
|
204
|
+
Lt as TimePickPanel,
|
|
205
|
+
up as UPDATE_TIME_FIELD,
|
|
205
206
|
t as VftAlert,
|
|
206
|
-
|
|
207
|
-
|
|
207
|
+
h as VftAside,
|
|
208
|
+
Pe as VftAutocomplete,
|
|
208
209
|
p as VftAvatar,
|
|
209
|
-
a as
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
V as
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
I as
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
_ as
|
|
224
|
-
M as
|
|
225
|
-
y as
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
N as
|
|
231
|
-
k as
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
$ as
|
|
236
|
-
ro as
|
|
237
|
-
|
|
238
|
-
fo as
|
|
239
|
-
mo as
|
|
240
|
-
xo as
|
|
241
|
-
no as
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
uo as
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
To as
|
|
248
|
-
|
|
249
|
-
go as
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
Mo as
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
bo as
|
|
257
|
-
No as
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
Go as
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
Ho as
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
rt as
|
|
271
|
-
tt as
|
|
272
|
-
pt as
|
|
273
|
-
at as
|
|
274
|
-
it as
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
210
|
+
a as VftAvatarStack,
|
|
211
|
+
i as VftBacktop,
|
|
212
|
+
De as VftBreadcrumb,
|
|
213
|
+
_e as VftBreadcrumbItem,
|
|
214
|
+
s as VftButton,
|
|
215
|
+
V as VftButtonGroup,
|
|
216
|
+
u as VftCard,
|
|
217
|
+
Me as VftCarousel,
|
|
218
|
+
Fe as VftCarouselItem,
|
|
219
|
+
c as VftCascader,
|
|
220
|
+
E as VftCascaderPanel,
|
|
221
|
+
I as VftCheckTag,
|
|
222
|
+
g as VftCheckbox,
|
|
223
|
+
D as VftCheckboxButton,
|
|
224
|
+
_ as VftCheckboxGroup,
|
|
225
|
+
M as VftClamp,
|
|
226
|
+
y as VftClampToggle,
|
|
227
|
+
L as VftClampTooltip,
|
|
228
|
+
b as VftCol,
|
|
229
|
+
Ae as VftCollapse,
|
|
230
|
+
Le as VftCollapseItem,
|
|
231
|
+
N as VftCollapseTransition,
|
|
232
|
+
k as VftColorPicker,
|
|
233
|
+
G as VftConfigProvider,
|
|
234
|
+
z as VftContainer,
|
|
235
|
+
be as VftCountdown,
|
|
236
|
+
$ as VftDatePicker,
|
|
237
|
+
ro as VftDateTimeSelect,
|
|
238
|
+
to as VftDescriptions,
|
|
239
|
+
fo as VftDescriptionsItem,
|
|
240
|
+
mo as VftDialog,
|
|
241
|
+
xo as VftDivider,
|
|
242
|
+
no as VftDrawer,
|
|
243
|
+
Vo as VftDropdown,
|
|
244
|
+
lo as VftDropdownItem,
|
|
245
|
+
uo as VftDropdownMenu,
|
|
246
|
+
Co as VftEmpty,
|
|
247
|
+
H as VftFooter,
|
|
248
|
+
To as VftFooterLayout,
|
|
249
|
+
Po as VftForm,
|
|
250
|
+
go as VftFormItem,
|
|
251
|
+
_o as VftFullScreen,
|
|
252
|
+
B as VftHeader,
|
|
253
|
+
Mo as VftHeaderLayout,
|
|
254
|
+
yo as VftHorizontalMenu,
|
|
255
|
+
j as VftIcon,
|
|
256
|
+
Lo as VftIconText,
|
|
257
|
+
bo as VftIframeLayout,
|
|
258
|
+
No as VftImage,
|
|
259
|
+
ko as VftImageViewer,
|
|
260
|
+
lt as VftInfiniteScroll,
|
|
261
|
+
Go as VftInput,
|
|
262
|
+
ho as VftInputNumber,
|
|
263
|
+
Ne as VftInputTag,
|
|
264
|
+
Ho as VftLink,
|
|
265
|
+
Uo as VftListCell,
|
|
266
|
+
dt as VftLoading,
|
|
267
|
+
qm as VftLoadingDirective,
|
|
268
|
+
Xm as VftLoadingService,
|
|
269
|
+
Yo as VftLogo,
|
|
270
|
+
U as VftMain,
|
|
271
|
+
rt as VftMdCodeDemo,
|
|
272
|
+
tt as VftMdCodeTabs,
|
|
273
|
+
pt as VftMdComment,
|
|
274
|
+
at as VftMdContainer,
|
|
275
|
+
it as VftMdTabs,
|
|
276
|
+
st as VftMdVuePlayground,
|
|
277
|
+
Wo as VftMenu,
|
|
278
|
+
jo as VftMenuItem,
|
|
279
|
+
Qo as VftMenuItemGroup,
|
|
280
|
+
Et as VftMessage,
|
|
281
|
+
ke as VftModal,
|
|
280
282
|
$o as VftMultipleTabs,
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
283
|
+
rr as VftNotification,
|
|
284
|
+
tr as VftOverlay,
|
|
285
|
+
pr as VftPageWrapper,
|
|
286
|
+
ar as VftPagination,
|
|
287
|
+
ir as VftPopconfirm,
|
|
288
|
+
sr as VftPopover,
|
|
289
|
+
lr as VftPopper,
|
|
290
|
+
gt as VftPopperArrow,
|
|
291
|
+
_t as VftPopperContent,
|
|
292
|
+
Mt as VftPopperTrigger,
|
|
293
|
+
Ge as VftProgress,
|
|
294
|
+
It as VftProgressI,
|
|
295
|
+
dr as VftQrcode,
|
|
296
|
+
Cr as VftRadio,
|
|
297
|
+
Er as VftRadioButton,
|
|
298
|
+
Tr as VftRadioGroup,
|
|
299
|
+
Pr as VftResult,
|
|
300
|
+
Dr as VftRouterViewContent,
|
|
301
|
+
Sr as VftRow,
|
|
302
|
+
Fr as VftScrollbar,
|
|
303
|
+
Ar as VftSearch,
|
|
304
|
+
he as VftSegmented,
|
|
305
|
+
Kr as VftSelect,
|
|
306
|
+
Rr as VftSideMenu,
|
|
307
|
+
Or as VftSkeleton,
|
|
308
|
+
kr as VftSkeletonItem,
|
|
309
|
+
Gr as VftSlider,
|
|
310
|
+
hr as VftSpace,
|
|
311
|
+
He as VftStatistic,
|
|
312
|
+
Hr as VftStep,
|
|
313
|
+
Br as VftSteps,
|
|
314
|
+
Xo as VftSubMenu,
|
|
315
|
+
Ue as VftSuperForm,
|
|
316
|
+
Jr as VftSwitch,
|
|
317
|
+
jr as VftTabPane,
|
|
318
|
+
qr as VftTable,
|
|
319
|
+
Qr as VftTabs,
|
|
320
|
+
Zr as VftTag,
|
|
321
|
+
oe as VftTimePicker,
|
|
322
|
+
Ye as VftTimeline,
|
|
323
|
+
qe as VftTimelineItem,
|
|
324
|
+
ee as VftTooltip,
|
|
323
325
|
je as VftTransfer,
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
326
|
+
fe as VftTree,
|
|
327
|
+
Xe as VftUpload,
|
|
328
|
+
me as VftVerifyCode,
|
|
329
|
+
$e as VftWatermark,
|
|
330
|
+
Mm as add,
|
|
331
|
+
Ep as addRequire,
|
|
332
|
+
$p as breadcrumbKey,
|
|
333
|
+
Op as buildTimeList,
|
|
334
|
+
bt as buttonGroupContextKey,
|
|
335
|
+
em as carouselContextKey,
|
|
336
|
+
Nt as cascaderEmits,
|
|
337
|
+
zt as cascaderPanelEmits,
|
|
338
|
+
Ht as cascaderPanelProps,
|
|
339
|
+
Ot as cascaderProps,
|
|
340
|
+
Jt as checkboxGroupContextKey,
|
|
341
|
+
nm as collapseContextKey,
|
|
342
|
+
fm as collapseEmits,
|
|
343
|
+
xm as collapseItemProps,
|
|
344
|
+
pm as collapseProps,
|
|
345
|
+
Fm as componentMap,
|
|
346
|
+
qt as configProviderContextKey,
|
|
347
|
+
Vm as countdownEmits,
|
|
348
|
+
lm as countdownProps,
|
|
349
|
+
Y as createContextMenu,
|
|
350
|
+
Wm as createLoadingDirective,
|
|
351
|
+
kp as dateEquals,
|
|
352
|
+
tf as datePickerProps,
|
|
353
|
+
vp as dayOrDaysToDate,
|
|
354
|
+
Pm as defaultProps,
|
|
355
|
+
ym as del,
|
|
356
|
+
q as destroyContextMenu,
|
|
357
|
+
pf as dialogInjectionKey,
|
|
358
|
+
Qp as dragEventsKey,
|
|
359
|
+
mm as emitChangeFn,
|
|
360
|
+
Gp as extractDateFormat,
|
|
361
|
+
wp as extractTimeFormat,
|
|
362
|
+
uf as formContextKey,
|
|
363
|
+
df as formItemContextKey,
|
|
364
|
+
hp as formatter,
|
|
365
|
+
Hm as genFileId,
|
|
366
|
+
Wp as getChildState,
|
|
367
|
+
Rm as getDynamicProps,
|
|
368
|
+
Ff as initAffixTabs,
|
|
369
|
+
dm as inputTagEmits,
|
|
370
|
+
cm as inputTagProps,
|
|
371
|
+
Am as isDatePicker,
|
|
372
|
+
Lm as isInput,
|
|
373
|
+
Km as isRangePicker,
|
|
374
|
+
zp as makeList,
|
|
375
|
+
Wt as messageConfig,
|
|
376
|
+
$m as messageDefaults,
|
|
377
|
+
oa as messageTypes,
|
|
378
|
+
bf as notificationEmits,
|
|
379
|
+
Rf as notificationProps,
|
|
380
|
+
Nf as notificationTypes,
|
|
381
|
+
Hp as parseDate,
|
|
382
|
+
Qt as provideGlobalConfig,
|
|
383
|
+
wf as radioGroupKey,
|
|
384
|
+
Bp as rangeArr,
|
|
385
|
+
Tp as removeRequire,
|
|
386
|
+
qf as renderThumbStyle,
|
|
387
|
+
zf as rowContextKey,
|
|
388
|
+
Bf as scrollbarContextKey,
|
|
389
|
+
gm as segmentedEmits,
|
|
390
|
+
Dm as segmentedProps,
|
|
391
|
+
Ip as selectMapping,
|
|
392
|
+
jf as selectV2InjectionKey,
|
|
393
|
+
Xf as sliderContextKey,
|
|
394
|
+
$f as sliderEmits,
|
|
395
|
+
rp as spaceProps,
|
|
396
|
+
_p as timePickerDefaultProps,
|
|
397
|
+
Sp as timePickerRangeTriggerProps,
|
|
398
|
+
Mp as timePickerRngeTriggerProps,
|
|
399
|
+
Rp as timeUnits,
|
|
400
|
+
Gm as transferCheckedChangeFn,
|
|
401
|
+
wm as transferEmits,
|
|
402
|
+
hm as transferProps,
|
|
403
|
+
Bm as uploadContextKey,
|
|
404
|
+
Bt as useCascaderConfig,
|
|
405
|
+
X as useContextMenu,
|
|
406
|
+
af as useDialog,
|
|
407
|
+
Cf as useDisabled,
|
|
408
|
+
Xp as useDragNodeHandler,
|
|
409
|
+
Nm as useForm,
|
|
410
|
+
Ef as useFormDisabled,
|
|
411
|
+
gf as useFormItem,
|
|
412
|
+
Df as useFormItemInputId,
|
|
413
|
+
Tf as useFormSize,
|
|
414
|
+
Xt as useGlobalComponentSettings,
|
|
415
|
+
Zt as useGlobalConfig,
|
|
416
|
+
Em as useModal,
|
|
417
|
+
Tm as useModalInner,
|
|
418
|
+
kf as usePagination,
|
|
419
|
+
If as useSize,
|
|
420
|
+
tp as useSpace,
|
|
421
|
+
Lf as useTabDropdown,
|
|
422
|
+
cp as useTable,
|
|
423
|
+
yf as useTabsDrag,
|
|
424
|
+
jm as vLoading,
|
|
425
|
+
Up as valueEquals,
|
|
426
|
+
vf as vftPaginationKey,
|
|
427
|
+
ce as virtualizedGridProps,
|
|
428
|
+
Ce as virtualizedListProps,
|
|
429
|
+
Ee as virtualizedProps,
|
|
430
|
+
Te as virtualizedScrollbarProps,
|
|
431
|
+
Jm as watermarkProps
|
|
430
432
|
};
|