cosey 0.10.17 → 0.10.19
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/components/copy/copy.d.ts +1 -1
- package/components/copy/index.d.ts +3 -3
- package/components/editor/contents/widget-popover.d.ts +203 -265
- package/components/field/components/remote-select/remote-select.api.d.ts +3 -3
- package/components/field/components/remote-select/remote-select.d.ts +5 -5
- package/components/field/field.api.d.ts +5 -5
- package/components/form/form-item.api.d.ts +9 -44
- package/components/form/form-item.vue.js +2 -2
- package/components/form/form.api.d.ts +9 -58
- package/components/form/form.d.ts +24 -122
- package/components/form/index.d.ts +54 -201
- package/components/form-dialog/form-dialog.api.d.ts +17 -108
- package/components/form-dialog/form-dialog.d.ts +36 -218
- package/components/form-drawer/form-drawer.api.d.ts +24 -133
- package/components/form-drawer/form-drawer.d.ts +53 -271
- package/components/form-drawer/index.d.ts +102 -423
- package/components/form-group/form-group.api.d.ts +6 -27
- package/components/form-group/form-group.d.ts +13 -55
- package/components/form-group/index.d.ts +24 -87
- package/components/form-list/form-list.api.d.ts +9 -44
- package/components/form-list/form-list.vue.js +2 -2
- package/components/form-list/index.d.ts +9 -9
- package/components/form-query/form-query.api.d.ts +9 -58
- package/components/form-query/form-query.d.ts +24 -122
- package/components/form-query/index.d.ts +45 -192
- package/components/image-card/image-card.api.d.ts +12 -68
- package/components/image-card/image-card.d.ts +27 -139
- package/components/image-card/index.d.ts +45 -213
- package/components/remote-select/index.d.ts +144 -614
- package/components/remote-select/remote-select.api.d.ts +33 -158
- package/components/remote-select/remote-select.d.ts +69 -318
- package/components/remote-select/remote-select.js +1 -1
- package/components/remote-select/remote-select.style.js +3 -1
- package/components/stack-dialog/index.d.ts +81 -396
- package/components/stack-dialog/stack-dialog.api.d.ts +17 -122
- package/components/stack-dialog/stack-dialog.d.ts +44 -254
- package/components/table/index.d.ts +72 -170
- package/components/table/table-column/table-column.api.d.ts +13 -13
- package/components/table/table-column/table-column.d.ts +7 -7
- package/components/table/table-export/table-export.api.d.ts +17 -108
- package/components/table/table-export/table-export.d.ts +36 -218
- package/components/table/table-footer/index.d.ts +3 -3
- package/components/table/table-query/table-query.api.d.ts +9 -58
- package/components/table/table-query/table-query.d.ts +24 -122
- package/components/table/table.d.ts +18 -18
- package/components/table/table.vue.d.ts +36 -36
- package/components/week-range-picker/index.d.ts +331 -466
- package/components/week-range-picker/week-range-picker.api.d.ts +106 -151
- package/components/week-range-picker/week-range-picker.d.ts +212 -302
- package/layout/layout-menu/layout-menu.vue.js +4 -3
- package/layout/layout-menu/style/index.js +3 -0
- package/locale/lang/ar.d.ts +6 -0
- package/locale/lang/en.d.ts +6 -0
- package/locale/lang/zh-cn.d.ts +9 -3
- package/package.json +10 -3
|
@@ -2,41 +2,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2
2
|
modelValue: {
|
|
3
3
|
type: import("vue").PropType<Date[]>;
|
|
4
4
|
};
|
|
5
|
-
showNow:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
9
|
-
__epPropKey: true;
|
|
10
|
-
} & {
|
|
11
|
-
readonly default: true;
|
|
12
|
-
};
|
|
13
|
-
showConfirm: {
|
|
14
|
-
readonly type: import("vue").PropType<boolean>;
|
|
15
|
-
readonly required: false;
|
|
16
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
17
|
-
__epPropKey: true;
|
|
18
|
-
} & {
|
|
19
|
-
readonly default: true;
|
|
20
|
-
};
|
|
21
|
-
showFooter: {
|
|
22
|
-
readonly type: import("vue").PropType<boolean>;
|
|
23
|
-
readonly required: false;
|
|
24
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
25
|
-
__epPropKey: true;
|
|
26
|
-
} & {
|
|
27
|
-
readonly default: true;
|
|
28
|
-
};
|
|
5
|
+
showNow: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
6
|
+
showConfirm: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7
|
+
showFooter: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
29
8
|
showWeekNumber: BooleanConstructor;
|
|
30
9
|
ariaLabel: StringConstructor;
|
|
31
10
|
emptyValues: ArrayConstructor;
|
|
32
|
-
valueOnClear:
|
|
33
|
-
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
34
|
-
readonly required: false;
|
|
35
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
36
|
-
__epPropKey: true;
|
|
37
|
-
} & {
|
|
38
|
-
readonly default: undefined;
|
|
39
|
-
};
|
|
11
|
+
valueOnClear: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
40
12
|
disabledDate: {
|
|
41
13
|
readonly type: import("vue").PropType<Function>;
|
|
42
14
|
readonly required: false;
|
|
@@ -49,48 +21,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
49
21
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
50
22
|
__epPropKey: true;
|
|
51
23
|
};
|
|
52
|
-
shortcuts:
|
|
53
|
-
readonly type: import("vue").PropType<unknown[]>;
|
|
54
|
-
readonly required: false;
|
|
55
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
56
|
-
__epPropKey: true;
|
|
57
|
-
} & {
|
|
58
|
-
readonly default: () => never[];
|
|
59
|
-
};
|
|
24
|
+
shortcuts: import("element-plus/es/utils/index.mjs").EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
60
25
|
arrowControl: BooleanConstructor;
|
|
61
|
-
tabindex:
|
|
62
|
-
|
|
63
|
-
readonly required: false;
|
|
64
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
65
|
-
__epPropKey: true;
|
|
66
|
-
} & {
|
|
67
|
-
readonly default: 0;
|
|
68
|
-
};
|
|
69
|
-
validateEvent: {
|
|
70
|
-
readonly type: import("vue").PropType<boolean>;
|
|
71
|
-
readonly required: false;
|
|
72
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
73
|
-
__epPropKey: true;
|
|
74
|
-
} & {
|
|
75
|
-
readonly default: true;
|
|
76
|
-
};
|
|
26
|
+
tabindex: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
27
|
+
validateEvent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
77
28
|
unlinkPanels: BooleanConstructor;
|
|
78
|
-
placement:
|
|
79
|
-
|
|
80
|
-
readonly required: false;
|
|
81
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
82
|
-
__epPropKey: true;
|
|
83
|
-
} & {
|
|
84
|
-
readonly default: "bottom";
|
|
85
|
-
};
|
|
86
|
-
fallbackPlacements: {
|
|
87
|
-
readonly type: import("vue").PropType<Placement[]>;
|
|
88
|
-
readonly required: false;
|
|
89
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
90
|
-
__epPropKey: true;
|
|
91
|
-
} & {
|
|
92
|
-
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
93
|
-
};
|
|
29
|
+
placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], Placement, unknown, "bottom", boolean>;
|
|
30
|
+
fallbackPlacements: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Placement[]) | (() => Placement[]) | ((new (...args: any[]) => Placement[]) | (() => Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
94
31
|
disabledHours: {
|
|
95
32
|
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
96
33
|
readonly required: false;
|
|
@@ -109,31 +46,94 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
109
46
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
110
47
|
__epPropKey: true;
|
|
111
48
|
};
|
|
112
|
-
automaticDropdown:
|
|
113
|
-
readonly type: import("vue").PropType<boolean>;
|
|
114
|
-
readonly required: false;
|
|
115
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
116
|
-
__epPropKey: true;
|
|
117
|
-
} & {
|
|
118
|
-
readonly default: true;
|
|
119
|
-
};
|
|
49
|
+
automaticDropdown: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
120
50
|
id: {
|
|
121
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
51
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>>;
|
|
122
52
|
readonly required: false;
|
|
123
53
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
124
54
|
__epPropKey: true;
|
|
125
55
|
};
|
|
126
56
|
name: {
|
|
127
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
57
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>>;
|
|
128
58
|
readonly required: false;
|
|
129
59
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
130
60
|
__epPropKey: true;
|
|
131
61
|
};
|
|
132
62
|
popperClass: {
|
|
133
|
-
readonly type: import("vue").PropType<string | {
|
|
63
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | {
|
|
64
|
+
[x: string]: boolean;
|
|
65
|
+
} | (string | {
|
|
66
|
+
[x: string]: boolean;
|
|
67
|
+
} | (string | {
|
|
68
|
+
[x: string]: boolean;
|
|
69
|
+
} | (string | {
|
|
70
|
+
[x: string]: boolean;
|
|
71
|
+
} | (string | {
|
|
72
|
+
[x: string]: boolean;
|
|
73
|
+
} | (string | {
|
|
74
|
+
[x: string]: boolean;
|
|
75
|
+
} | (string | {
|
|
76
|
+
[x: string]: boolean;
|
|
77
|
+
} | (string | {
|
|
78
|
+
[x: string]: boolean;
|
|
79
|
+
} | (string | {
|
|
80
|
+
[x: string]: boolean;
|
|
81
|
+
} | (string | {
|
|
82
|
+
[x: string]: boolean;
|
|
83
|
+
} | (string | {
|
|
84
|
+
[x: string]: boolean;
|
|
85
|
+
} | (string | {
|
|
86
|
+
[x: string]: boolean;
|
|
87
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
88
|
+
[x: string]: boolean;
|
|
89
|
+
} | (string | {
|
|
90
|
+
[x: string]: boolean;
|
|
91
|
+
} | (string | {
|
|
92
|
+
[x: string]: boolean;
|
|
93
|
+
} | (string | {
|
|
94
|
+
[x: string]: boolean;
|
|
95
|
+
} | (string | {
|
|
96
|
+
[x: string]: boolean;
|
|
97
|
+
} | (string | {
|
|
98
|
+
[x: string]: boolean;
|
|
99
|
+
} | (string | {
|
|
100
|
+
[x: string]: boolean;
|
|
101
|
+
} | (string | {
|
|
102
|
+
[x: string]: boolean;
|
|
103
|
+
} | (string | {
|
|
104
|
+
[x: string]: boolean;
|
|
105
|
+
} | (string | {
|
|
106
|
+
[x: string]: boolean;
|
|
107
|
+
} | (string | {
|
|
108
|
+
[x: string]: boolean;
|
|
109
|
+
} | (string | {
|
|
110
|
+
[x: string]: boolean;
|
|
111
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | ((new (...args: any[]) => string | {
|
|
112
|
+
[x: string]: boolean;
|
|
113
|
+
} | (string | {
|
|
114
|
+
[x: string]: boolean;
|
|
115
|
+
} | (string | {
|
|
116
|
+
[x: string]: boolean;
|
|
117
|
+
} | (string | {
|
|
118
|
+
[x: string]: boolean;
|
|
119
|
+
} | (string | {
|
|
120
|
+
[x: string]: boolean;
|
|
121
|
+
} | (string | {
|
|
122
|
+
[x: string]: boolean;
|
|
123
|
+
} | (string | {
|
|
124
|
+
[x: string]: boolean;
|
|
125
|
+
} | (string | {
|
|
126
|
+
[x: string]: boolean;
|
|
127
|
+
} | (string | {
|
|
128
|
+
[x: string]: boolean;
|
|
129
|
+
} | (string | {
|
|
130
|
+
[x: string]: boolean;
|
|
131
|
+
} | (string | {
|
|
134
132
|
[x: string]: boolean;
|
|
135
133
|
} | (string | {
|
|
136
134
|
[x: string]: boolean;
|
|
135
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
136
|
+
[x: string]: boolean;
|
|
137
137
|
} | (string | {
|
|
138
138
|
[x: string]: boolean;
|
|
139
139
|
} | (string | {
|
|
@@ -150,15 +150,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
150
150
|
[x: string]: boolean;
|
|
151
151
|
} | (string | {
|
|
152
152
|
[x: string]: boolean;
|
|
153
|
-
} | (string |
|
|
153
|
+
} | (string | {
|
|
154
|
+
[x: string]: boolean;
|
|
155
|
+
} | (string | {
|
|
154
156
|
[x: string]: boolean;
|
|
155
|
-
}
|
|
157
|
+
} | (string | {
|
|
158
|
+
[x: string]: boolean;
|
|
159
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]))[], unknown, unknown>>;
|
|
156
160
|
readonly required: false;
|
|
157
161
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
158
162
|
__epPropKey: true;
|
|
159
163
|
};
|
|
160
164
|
popperStyle: {
|
|
161
|
-
readonly type: import("vue").PropType<import("vue").StyleValue
|
|
165
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown>>;
|
|
162
166
|
readonly required: false;
|
|
163
167
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
164
168
|
__epPropKey: true;
|
|
@@ -167,86 +171,37 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
167
171
|
valueFormat: StringConstructor;
|
|
168
172
|
dateFormat: StringConstructor;
|
|
169
173
|
timeFormat: StringConstructor;
|
|
170
|
-
type:
|
|
171
|
-
|
|
172
|
-
readonly required: false;
|
|
173
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
174
|
-
__epPropKey: true;
|
|
175
|
-
} & {
|
|
176
|
-
readonly default: "";
|
|
177
|
-
};
|
|
178
|
-
clearable: {
|
|
179
|
-
readonly type: import("vue").PropType<boolean>;
|
|
180
|
-
readonly required: false;
|
|
181
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
182
|
-
__epPropKey: true;
|
|
183
|
-
} & {
|
|
184
|
-
readonly default: true;
|
|
185
|
-
};
|
|
174
|
+
type: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
175
|
+
clearable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
186
176
|
clearIcon: {
|
|
187
|
-
readonly type: import("vue").PropType<string | import("vue").Component
|
|
177
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
188
178
|
readonly required: false;
|
|
189
179
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
190
180
|
__epPropKey: true;
|
|
191
181
|
};
|
|
192
|
-
editable:
|
|
193
|
-
|
|
194
|
-
readonly required: false;
|
|
195
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
196
|
-
__epPropKey: true;
|
|
197
|
-
} & {
|
|
198
|
-
readonly default: true;
|
|
199
|
-
};
|
|
200
|
-
prefixIcon: {
|
|
201
|
-
readonly type: import("vue").PropType<string | import("vue").Component>;
|
|
202
|
-
readonly required: false;
|
|
203
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
204
|
-
__epPropKey: true;
|
|
205
|
-
} & {
|
|
206
|
-
readonly default: "";
|
|
207
|
-
};
|
|
182
|
+
editable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
183
|
+
prefixIcon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "", boolean>;
|
|
208
184
|
size: {
|
|
209
|
-
readonly type: import("vue").PropType<"" | "
|
|
185
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
210
186
|
readonly required: false;
|
|
211
187
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
212
188
|
__epPropKey: true;
|
|
213
189
|
};
|
|
214
190
|
readonly: BooleanConstructor;
|
|
215
191
|
disabled: BooleanConstructor;
|
|
216
|
-
placeholder:
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
220
|
-
__epPropKey: true;
|
|
221
|
-
} & {
|
|
222
|
-
readonly default: "";
|
|
223
|
-
};
|
|
224
|
-
popperOptions: {
|
|
225
|
-
readonly type: import("vue").PropType<any>;
|
|
226
|
-
readonly required: false;
|
|
227
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
228
|
-
__epPropKey: true;
|
|
229
|
-
} & {
|
|
230
|
-
readonly default: () => {};
|
|
231
|
-
};
|
|
232
|
-
rangeSeparator: {
|
|
233
|
-
readonly type: import("vue").PropType<string>;
|
|
234
|
-
readonly required: false;
|
|
235
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
236
|
-
__epPropKey: true;
|
|
237
|
-
} & {
|
|
238
|
-
readonly default: "-";
|
|
239
|
-
};
|
|
192
|
+
placeholder: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
193
|
+
popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
194
|
+
rangeSeparator: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
240
195
|
startPlaceholder: StringConstructor;
|
|
241
196
|
endPlaceholder: StringConstructor;
|
|
242
197
|
defaultValue: {
|
|
243
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
198
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
244
199
|
readonly required: false;
|
|
245
200
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
246
201
|
__epPropKey: true;
|
|
247
202
|
};
|
|
248
203
|
defaultTime: {
|
|
249
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
204
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
250
205
|
readonly required: false;
|
|
251
206
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
252
207
|
__epPropKey: true;
|
|
@@ -259,41 +214,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
259
214
|
modelValue: {
|
|
260
215
|
type: import("vue").PropType<Date[]>;
|
|
261
216
|
};
|
|
262
|
-
showNow:
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
266
|
-
__epPropKey: true;
|
|
267
|
-
} & {
|
|
268
|
-
readonly default: true;
|
|
269
|
-
};
|
|
270
|
-
showConfirm: {
|
|
271
|
-
readonly type: import("vue").PropType<boolean>;
|
|
272
|
-
readonly required: false;
|
|
273
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
274
|
-
__epPropKey: true;
|
|
275
|
-
} & {
|
|
276
|
-
readonly default: true;
|
|
277
|
-
};
|
|
278
|
-
showFooter: {
|
|
279
|
-
readonly type: import("vue").PropType<boolean>;
|
|
280
|
-
readonly required: false;
|
|
281
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
282
|
-
__epPropKey: true;
|
|
283
|
-
} & {
|
|
284
|
-
readonly default: true;
|
|
285
|
-
};
|
|
217
|
+
showNow: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
218
|
+
showConfirm: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
219
|
+
showFooter: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
286
220
|
showWeekNumber: BooleanConstructor;
|
|
287
221
|
ariaLabel: StringConstructor;
|
|
288
222
|
emptyValues: ArrayConstructor;
|
|
289
|
-
valueOnClear:
|
|
290
|
-
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
291
|
-
readonly required: false;
|
|
292
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
293
|
-
__epPropKey: true;
|
|
294
|
-
} & {
|
|
295
|
-
readonly default: undefined;
|
|
296
|
-
};
|
|
223
|
+
valueOnClear: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
297
224
|
disabledDate: {
|
|
298
225
|
readonly type: import("vue").PropType<Function>;
|
|
299
226
|
readonly required: false;
|
|
@@ -306,48 +233,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
306
233
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
307
234
|
__epPropKey: true;
|
|
308
235
|
};
|
|
309
|
-
shortcuts:
|
|
310
|
-
readonly type: import("vue").PropType<unknown[]>;
|
|
311
|
-
readonly required: false;
|
|
312
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
313
|
-
__epPropKey: true;
|
|
314
|
-
} & {
|
|
315
|
-
readonly default: () => never[];
|
|
316
|
-
};
|
|
236
|
+
shortcuts: import("element-plus/es/utils/index.mjs").EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
317
237
|
arrowControl: BooleanConstructor;
|
|
318
|
-
tabindex:
|
|
319
|
-
|
|
320
|
-
readonly required: false;
|
|
321
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
322
|
-
__epPropKey: true;
|
|
323
|
-
} & {
|
|
324
|
-
readonly default: 0;
|
|
325
|
-
};
|
|
326
|
-
validateEvent: {
|
|
327
|
-
readonly type: import("vue").PropType<boolean>;
|
|
328
|
-
readonly required: false;
|
|
329
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
330
|
-
__epPropKey: true;
|
|
331
|
-
} & {
|
|
332
|
-
readonly default: true;
|
|
333
|
-
};
|
|
238
|
+
tabindex: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
239
|
+
validateEvent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
334
240
|
unlinkPanels: BooleanConstructor;
|
|
335
|
-
placement:
|
|
336
|
-
|
|
337
|
-
readonly required: false;
|
|
338
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
339
|
-
__epPropKey: true;
|
|
340
|
-
} & {
|
|
341
|
-
readonly default: "bottom";
|
|
342
|
-
};
|
|
343
|
-
fallbackPlacements: {
|
|
344
|
-
readonly type: import("vue").PropType<Placement[]>;
|
|
345
|
-
readonly required: false;
|
|
346
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
347
|
-
__epPropKey: true;
|
|
348
|
-
} & {
|
|
349
|
-
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
350
|
-
};
|
|
241
|
+
placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], Placement, unknown, "bottom", boolean>;
|
|
242
|
+
fallbackPlacements: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Placement[]) | (() => Placement[]) | ((new (...args: any[]) => Placement[]) | (() => Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
351
243
|
disabledHours: {
|
|
352
244
|
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
353
245
|
readonly required: false;
|
|
@@ -366,31 +258,94 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
366
258
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
367
259
|
__epPropKey: true;
|
|
368
260
|
};
|
|
369
|
-
automaticDropdown:
|
|
370
|
-
readonly type: import("vue").PropType<boolean>;
|
|
371
|
-
readonly required: false;
|
|
372
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
373
|
-
__epPropKey: true;
|
|
374
|
-
} & {
|
|
375
|
-
readonly default: true;
|
|
376
|
-
};
|
|
261
|
+
automaticDropdown: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
377
262
|
id: {
|
|
378
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
263
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>>;
|
|
379
264
|
readonly required: false;
|
|
380
265
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
381
266
|
__epPropKey: true;
|
|
382
267
|
};
|
|
383
268
|
name: {
|
|
384
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
269
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>>;
|
|
385
270
|
readonly required: false;
|
|
386
271
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
387
272
|
__epPropKey: true;
|
|
388
273
|
};
|
|
389
274
|
popperClass: {
|
|
390
|
-
readonly type: import("vue").PropType<string | {
|
|
275
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | {
|
|
276
|
+
[x: string]: boolean;
|
|
277
|
+
} | (string | {
|
|
278
|
+
[x: string]: boolean;
|
|
279
|
+
} | (string | {
|
|
280
|
+
[x: string]: boolean;
|
|
281
|
+
} | (string | {
|
|
282
|
+
[x: string]: boolean;
|
|
283
|
+
} | (string | {
|
|
284
|
+
[x: string]: boolean;
|
|
285
|
+
} | (string | {
|
|
286
|
+
[x: string]: boolean;
|
|
287
|
+
} | (string | {
|
|
288
|
+
[x: string]: boolean;
|
|
289
|
+
} | (string | {
|
|
290
|
+
[x: string]: boolean;
|
|
291
|
+
} | (string | {
|
|
292
|
+
[x: string]: boolean;
|
|
293
|
+
} | (string | {
|
|
294
|
+
[x: string]: boolean;
|
|
295
|
+
} | (string | {
|
|
296
|
+
[x: string]: boolean;
|
|
297
|
+
} | (string | {
|
|
298
|
+
[x: string]: boolean;
|
|
299
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
300
|
+
[x: string]: boolean;
|
|
301
|
+
} | (string | {
|
|
302
|
+
[x: string]: boolean;
|
|
303
|
+
} | (string | {
|
|
304
|
+
[x: string]: boolean;
|
|
305
|
+
} | (string | {
|
|
306
|
+
[x: string]: boolean;
|
|
307
|
+
} | (string | {
|
|
308
|
+
[x: string]: boolean;
|
|
309
|
+
} | (string | {
|
|
310
|
+
[x: string]: boolean;
|
|
311
|
+
} | (string | {
|
|
312
|
+
[x: string]: boolean;
|
|
313
|
+
} | (string | {
|
|
314
|
+
[x: string]: boolean;
|
|
315
|
+
} | (string | {
|
|
316
|
+
[x: string]: boolean;
|
|
317
|
+
} | (string | {
|
|
318
|
+
[x: string]: boolean;
|
|
319
|
+
} | (string | {
|
|
320
|
+
[x: string]: boolean;
|
|
321
|
+
} | (string | {
|
|
322
|
+
[x: string]: boolean;
|
|
323
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | ((new (...args: any[]) => string | {
|
|
324
|
+
[x: string]: boolean;
|
|
325
|
+
} | (string | {
|
|
326
|
+
[x: string]: boolean;
|
|
327
|
+
} | (string | {
|
|
328
|
+
[x: string]: boolean;
|
|
329
|
+
} | (string | {
|
|
330
|
+
[x: string]: boolean;
|
|
331
|
+
} | (string | {
|
|
332
|
+
[x: string]: boolean;
|
|
333
|
+
} | (string | {
|
|
334
|
+
[x: string]: boolean;
|
|
335
|
+
} | (string | {
|
|
336
|
+
[x: string]: boolean;
|
|
337
|
+
} | (string | {
|
|
338
|
+
[x: string]: boolean;
|
|
339
|
+
} | (string | {
|
|
340
|
+
[x: string]: boolean;
|
|
341
|
+
} | (string | {
|
|
342
|
+
[x: string]: boolean;
|
|
343
|
+
} | (string | {
|
|
391
344
|
[x: string]: boolean;
|
|
392
345
|
} | (string | {
|
|
393
346
|
[x: string]: boolean;
|
|
347
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
348
|
+
[x: string]: boolean;
|
|
394
349
|
} | (string | {
|
|
395
350
|
[x: string]: boolean;
|
|
396
351
|
} | (string | {
|
|
@@ -407,15 +362,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
407
362
|
[x: string]: boolean;
|
|
408
363
|
} | (string | {
|
|
409
364
|
[x: string]: boolean;
|
|
410
|
-
} | (string |
|
|
365
|
+
} | (string | {
|
|
366
|
+
[x: string]: boolean;
|
|
367
|
+
} | (string | {
|
|
411
368
|
[x: string]: boolean;
|
|
412
|
-
}
|
|
369
|
+
} | (string | {
|
|
370
|
+
[x: string]: boolean;
|
|
371
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]))[], unknown, unknown>>;
|
|
413
372
|
readonly required: false;
|
|
414
373
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
415
374
|
__epPropKey: true;
|
|
416
375
|
};
|
|
417
376
|
popperStyle: {
|
|
418
|
-
readonly type: import("vue").PropType<import("vue").StyleValue
|
|
377
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown>>;
|
|
419
378
|
readonly required: false;
|
|
420
379
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
421
380
|
__epPropKey: true;
|
|
@@ -424,86 +383,37 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
424
383
|
valueFormat: StringConstructor;
|
|
425
384
|
dateFormat: StringConstructor;
|
|
426
385
|
timeFormat: StringConstructor;
|
|
427
|
-
type:
|
|
428
|
-
|
|
429
|
-
readonly required: false;
|
|
430
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
431
|
-
__epPropKey: true;
|
|
432
|
-
} & {
|
|
433
|
-
readonly default: "";
|
|
434
|
-
};
|
|
435
|
-
clearable: {
|
|
436
|
-
readonly type: import("vue").PropType<boolean>;
|
|
437
|
-
readonly required: false;
|
|
438
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
439
|
-
__epPropKey: true;
|
|
440
|
-
} & {
|
|
441
|
-
readonly default: true;
|
|
442
|
-
};
|
|
386
|
+
type: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
387
|
+
clearable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
443
388
|
clearIcon: {
|
|
444
|
-
readonly type: import("vue").PropType<string | import("vue").Component
|
|
389
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
445
390
|
readonly required: false;
|
|
446
391
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
447
392
|
__epPropKey: true;
|
|
448
393
|
};
|
|
449
|
-
editable:
|
|
450
|
-
|
|
451
|
-
readonly required: false;
|
|
452
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
453
|
-
__epPropKey: true;
|
|
454
|
-
} & {
|
|
455
|
-
readonly default: true;
|
|
456
|
-
};
|
|
457
|
-
prefixIcon: {
|
|
458
|
-
readonly type: import("vue").PropType<string | import("vue").Component>;
|
|
459
|
-
readonly required: false;
|
|
460
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
461
|
-
__epPropKey: true;
|
|
462
|
-
} & {
|
|
463
|
-
readonly default: "";
|
|
464
|
-
};
|
|
394
|
+
editable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
395
|
+
prefixIcon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "", boolean>;
|
|
465
396
|
size: {
|
|
466
|
-
readonly type: import("vue").PropType<"" | "
|
|
397
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
467
398
|
readonly required: false;
|
|
468
399
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
469
400
|
__epPropKey: true;
|
|
470
401
|
};
|
|
471
402
|
readonly: BooleanConstructor;
|
|
472
403
|
disabled: BooleanConstructor;
|
|
473
|
-
placeholder:
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
477
|
-
__epPropKey: true;
|
|
478
|
-
} & {
|
|
479
|
-
readonly default: "";
|
|
480
|
-
};
|
|
481
|
-
popperOptions: {
|
|
482
|
-
readonly type: import("vue").PropType<any>;
|
|
483
|
-
readonly required: false;
|
|
484
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
485
|
-
__epPropKey: true;
|
|
486
|
-
} & {
|
|
487
|
-
readonly default: () => {};
|
|
488
|
-
};
|
|
489
|
-
rangeSeparator: {
|
|
490
|
-
readonly type: import("vue").PropType<string>;
|
|
491
|
-
readonly required: false;
|
|
492
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
493
|
-
__epPropKey: true;
|
|
494
|
-
} & {
|
|
495
|
-
readonly default: "-";
|
|
496
|
-
};
|
|
404
|
+
placeholder: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
405
|
+
popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
406
|
+
rangeSeparator: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
497
407
|
startPlaceholder: StringConstructor;
|
|
498
408
|
endPlaceholder: StringConstructor;
|
|
499
409
|
defaultValue: {
|
|
500
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
410
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
501
411
|
readonly required: false;
|
|
502
412
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
503
413
|
__epPropKey: true;
|
|
504
414
|
};
|
|
505
415
|
defaultTime: {
|
|
506
|
-
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
416
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
507
417
|
readonly required: false;
|
|
508
418
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
509
419
|
__epPropKey: true;
|
|
@@ -519,21 +429,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
519
429
|
placement: any;
|
|
520
430
|
fallbackPlacements: Placement[];
|
|
521
431
|
popperOptions: any;
|
|
522
|
-
tabindex: string | number
|
|
523
|
-
validateEvent:
|
|
432
|
+
tabindex: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
433
|
+
validateEvent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
524
434
|
readonly: boolean;
|
|
525
|
-
clearable:
|
|
526
|
-
prefixIcon: string | import("vue").Component
|
|
527
|
-
valueOnClear: string | number | boolean | Function | null
|
|
528
|
-
showNow:
|
|
529
|
-
showConfirm:
|
|
530
|
-
showFooter:
|
|
435
|
+
clearable: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
436
|
+
prefixIcon: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
437
|
+
valueOnClear: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
438
|
+
showNow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
439
|
+
showConfirm: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
440
|
+
showFooter: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
531
441
|
showWeekNumber: boolean;
|
|
532
442
|
shortcuts: unknown[];
|
|
533
443
|
arrowControl: boolean;
|
|
534
444
|
unlinkPanels: boolean;
|
|
535
|
-
automaticDropdown:
|
|
536
|
-
editable:
|
|
445
|
+
automaticDropdown: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
446
|
+
editable: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
537
447
|
rangeSeparator: string;
|
|
538
448
|
isRange: boolean;
|
|
539
449
|
}, import("vue").SlotsType<import("./week-range-picker.api").WeekRangePickerSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|