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
|
@@ -3,138 +3,138 @@ export declare const weekRangePickerProps: {
|
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: PropType<Date[]>;
|
|
5
5
|
};
|
|
6
|
-
showNow:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
10
|
-
__epPropKey: true;
|
|
11
|
-
} & {
|
|
12
|
-
readonly default: true;
|
|
13
|
-
};
|
|
14
|
-
showConfirm: {
|
|
15
|
-
readonly type: PropType<boolean>;
|
|
16
|
-
readonly required: false;
|
|
17
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
18
|
-
__epPropKey: true;
|
|
19
|
-
} & {
|
|
20
|
-
readonly default: true;
|
|
21
|
-
};
|
|
22
|
-
showFooter: {
|
|
23
|
-
readonly type: PropType<boolean>;
|
|
24
|
-
readonly required: false;
|
|
25
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
26
|
-
__epPropKey: true;
|
|
27
|
-
} & {
|
|
28
|
-
readonly default: true;
|
|
29
|
-
};
|
|
6
|
+
showNow: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
7
|
+
showConfirm: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
8
|
+
showFooter: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
30
9
|
showWeekNumber: BooleanConstructor;
|
|
31
10
|
ariaLabel: StringConstructor;
|
|
32
11
|
emptyValues: ArrayConstructor;
|
|
33
|
-
valueOnClear:
|
|
34
|
-
readonly type: PropType<string | number | boolean | Function | null>;
|
|
35
|
-
readonly required: false;
|
|
36
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
37
|
-
__epPropKey: true;
|
|
38
|
-
} & {
|
|
39
|
-
readonly default: undefined;
|
|
40
|
-
};
|
|
12
|
+
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>;
|
|
41
13
|
disabledDate: {
|
|
42
|
-
readonly type: PropType<Function>;
|
|
14
|
+
readonly type: import("vue").PropType<Function>;
|
|
43
15
|
readonly required: false;
|
|
44
16
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
45
17
|
__epPropKey: true;
|
|
46
18
|
};
|
|
47
19
|
cellClassName: {
|
|
48
|
-
readonly type: PropType<Function>;
|
|
20
|
+
readonly type: import("vue").PropType<Function>;
|
|
49
21
|
readonly required: false;
|
|
50
22
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
51
23
|
__epPropKey: true;
|
|
52
24
|
};
|
|
53
|
-
shortcuts:
|
|
54
|
-
readonly type: PropType<unknown[]>;
|
|
55
|
-
readonly required: false;
|
|
56
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
57
|
-
__epPropKey: true;
|
|
58
|
-
} & {
|
|
59
|
-
readonly default: () => never[];
|
|
60
|
-
};
|
|
25
|
+
shortcuts: import("element-plus/es/utils/index.mjs").EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
61
26
|
arrowControl: BooleanConstructor;
|
|
62
|
-
tabindex:
|
|
63
|
-
|
|
64
|
-
readonly required: false;
|
|
65
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
66
|
-
__epPropKey: true;
|
|
67
|
-
} & {
|
|
68
|
-
readonly default: 0;
|
|
69
|
-
};
|
|
70
|
-
validateEvent: {
|
|
71
|
-
readonly type: PropType<boolean>;
|
|
72
|
-
readonly required: false;
|
|
73
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
74
|
-
__epPropKey: true;
|
|
75
|
-
} & {
|
|
76
|
-
readonly default: true;
|
|
77
|
-
};
|
|
27
|
+
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>;
|
|
28
|
+
validateEvent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
78
29
|
unlinkPanels: BooleanConstructor;
|
|
79
|
-
placement:
|
|
80
|
-
|
|
81
|
-
readonly required: false;
|
|
82
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
|
-
__epPropKey: true;
|
|
84
|
-
} & {
|
|
85
|
-
readonly default: "bottom";
|
|
86
|
-
};
|
|
87
|
-
fallbackPlacements: {
|
|
88
|
-
readonly type: PropType<Placement[]>;
|
|
89
|
-
readonly required: false;
|
|
90
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
91
|
-
__epPropKey: true;
|
|
92
|
-
} & {
|
|
93
|
-
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
94
|
-
};
|
|
30
|
+
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>;
|
|
31
|
+
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>;
|
|
95
32
|
disabledHours: {
|
|
96
|
-
readonly type: PropType<import("element-plus").GetDisabledHours>;
|
|
33
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
97
34
|
readonly required: false;
|
|
98
35
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
99
36
|
__epPropKey: true;
|
|
100
37
|
};
|
|
101
38
|
disabledMinutes: {
|
|
102
|
-
readonly type: PropType<import("element-plus").GetDisabledMinutes>;
|
|
39
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledMinutes>;
|
|
103
40
|
readonly required: false;
|
|
104
41
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
105
42
|
__epPropKey: true;
|
|
106
43
|
};
|
|
107
44
|
disabledSeconds: {
|
|
108
|
-
readonly type: PropType<import("element-plus").GetDisabledSeconds>;
|
|
109
|
-
readonly required: false;
|
|
110
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
111
|
-
__epPropKey: true;
|
|
112
|
-
};
|
|
113
|
-
automaticDropdown: {
|
|
114
|
-
readonly type: PropType<boolean>;
|
|
45
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledSeconds>;
|
|
115
46
|
readonly required: false;
|
|
116
47
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
117
48
|
__epPropKey: true;
|
|
118
|
-
} & {
|
|
119
|
-
readonly default: true;
|
|
120
49
|
};
|
|
50
|
+
automaticDropdown: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
121
51
|
id: {
|
|
122
|
-
readonly type: PropType<import("element-plus").SingleOrRange<string>>;
|
|
52
|
+
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>>;
|
|
123
53
|
readonly required: false;
|
|
124
54
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
125
55
|
__epPropKey: true;
|
|
126
56
|
};
|
|
127
57
|
name: {
|
|
128
|
-
readonly type: PropType<import("element-plus").SingleOrRange<string>>;
|
|
58
|
+
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>>;
|
|
129
59
|
readonly required: false;
|
|
130
60
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
131
61
|
__epPropKey: true;
|
|
132
62
|
};
|
|
133
63
|
popperClass: {
|
|
134
|
-
readonly type: PropType<string | {
|
|
64
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | {
|
|
65
|
+
[x: string]: boolean;
|
|
66
|
+
} | (string | {
|
|
67
|
+
[x: string]: boolean;
|
|
68
|
+
} | (string | {
|
|
69
|
+
[x: string]: boolean;
|
|
70
|
+
} | (string | {
|
|
71
|
+
[x: string]: boolean;
|
|
72
|
+
} | (string | {
|
|
73
|
+
[x: string]: boolean;
|
|
74
|
+
} | (string | {
|
|
75
|
+
[x: string]: boolean;
|
|
76
|
+
} | (string | {
|
|
77
|
+
[x: string]: boolean;
|
|
78
|
+
} | (string | {
|
|
79
|
+
[x: string]: boolean;
|
|
80
|
+
} | (string | {
|
|
81
|
+
[x: string]: boolean;
|
|
82
|
+
} | (string | {
|
|
83
|
+
[x: string]: boolean;
|
|
84
|
+
} | (string | {
|
|
85
|
+
[x: string]: boolean;
|
|
86
|
+
} | (string | {
|
|
87
|
+
[x: string]: boolean;
|
|
88
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
89
|
+
[x: string]: boolean;
|
|
90
|
+
} | (string | {
|
|
91
|
+
[x: string]: boolean;
|
|
92
|
+
} | (string | {
|
|
93
|
+
[x: string]: boolean;
|
|
94
|
+
} | (string | {
|
|
95
|
+
[x: string]: boolean;
|
|
96
|
+
} | (string | {
|
|
97
|
+
[x: string]: boolean;
|
|
98
|
+
} | (string | {
|
|
99
|
+
[x: string]: boolean;
|
|
100
|
+
} | (string | {
|
|
101
|
+
[x: string]: boolean;
|
|
102
|
+
} | (string | {
|
|
103
|
+
[x: string]: boolean;
|
|
104
|
+
} | (string | {
|
|
105
|
+
[x: string]: boolean;
|
|
106
|
+
} | (string | {
|
|
107
|
+
[x: string]: boolean;
|
|
108
|
+
} | (string | {
|
|
109
|
+
[x: string]: boolean;
|
|
110
|
+
} | (string | {
|
|
111
|
+
[x: string]: boolean;
|
|
112
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | ((new (...args: any[]) => string | {
|
|
113
|
+
[x: string]: boolean;
|
|
114
|
+
} | (string | {
|
|
115
|
+
[x: string]: boolean;
|
|
116
|
+
} | (string | {
|
|
117
|
+
[x: string]: boolean;
|
|
118
|
+
} | (string | {
|
|
119
|
+
[x: string]: boolean;
|
|
120
|
+
} | (string | {
|
|
121
|
+
[x: string]: boolean;
|
|
122
|
+
} | (string | {
|
|
123
|
+
[x: string]: boolean;
|
|
124
|
+
} | (string | {
|
|
125
|
+
[x: string]: boolean;
|
|
126
|
+
} | (string | {
|
|
127
|
+
[x: string]: boolean;
|
|
128
|
+
} | (string | {
|
|
129
|
+
[x: string]: boolean;
|
|
130
|
+
} | (string | {
|
|
131
|
+
[x: string]: boolean;
|
|
132
|
+
} | (string | {
|
|
135
133
|
[x: string]: boolean;
|
|
136
134
|
} | (string | {
|
|
137
135
|
[x: string]: boolean;
|
|
136
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
137
|
+
[x: string]: boolean;
|
|
138
138
|
} | (string | {
|
|
139
139
|
[x: string]: boolean;
|
|
140
140
|
} | (string | {
|
|
@@ -151,15 +151,19 @@ export declare const weekRangePickerProps: {
|
|
|
151
151
|
[x: string]: boolean;
|
|
152
152
|
} | (string | {
|
|
153
153
|
[x: string]: boolean;
|
|
154
|
-
} | (string |
|
|
154
|
+
} | (string | {
|
|
155
|
+
[x: string]: boolean;
|
|
156
|
+
} | (string | {
|
|
155
157
|
[x: string]: boolean;
|
|
156
|
-
}
|
|
158
|
+
} | (string | {
|
|
159
|
+
[x: string]: boolean;
|
|
160
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]))[], unknown, unknown>>;
|
|
157
161
|
readonly required: false;
|
|
158
162
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
159
163
|
__epPropKey: true;
|
|
160
164
|
};
|
|
161
165
|
popperStyle: {
|
|
162
|
-
readonly type: PropType<import("vue").StyleValue
|
|
166
|
+
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>>;
|
|
163
167
|
readonly required: false;
|
|
164
168
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
165
169
|
__epPropKey: true;
|
|
@@ -168,86 +172,37 @@ export declare const weekRangePickerProps: {
|
|
|
168
172
|
valueFormat: StringConstructor;
|
|
169
173
|
dateFormat: StringConstructor;
|
|
170
174
|
timeFormat: StringConstructor;
|
|
171
|
-
type:
|
|
172
|
-
|
|
173
|
-
readonly required: false;
|
|
174
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
175
|
-
__epPropKey: true;
|
|
176
|
-
} & {
|
|
177
|
-
readonly default: "";
|
|
178
|
-
};
|
|
179
|
-
clearable: {
|
|
180
|
-
readonly type: PropType<boolean>;
|
|
181
|
-
readonly required: false;
|
|
182
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
183
|
-
__epPropKey: true;
|
|
184
|
-
} & {
|
|
185
|
-
readonly default: true;
|
|
186
|
-
};
|
|
175
|
+
type: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
176
|
+
clearable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
187
177
|
clearIcon: {
|
|
188
|
-
readonly type: PropType<string | import("vue").Component
|
|
178
|
+
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>>;
|
|
189
179
|
readonly required: false;
|
|
190
180
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
191
181
|
__epPropKey: true;
|
|
192
182
|
};
|
|
193
|
-
editable:
|
|
194
|
-
|
|
195
|
-
readonly required: false;
|
|
196
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
197
|
-
__epPropKey: true;
|
|
198
|
-
} & {
|
|
199
|
-
readonly default: true;
|
|
200
|
-
};
|
|
201
|
-
prefixIcon: {
|
|
202
|
-
readonly type: PropType<string | import("vue").Component>;
|
|
203
|
-
readonly required: false;
|
|
204
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
205
|
-
__epPropKey: true;
|
|
206
|
-
} & {
|
|
207
|
-
readonly default: "";
|
|
208
|
-
};
|
|
183
|
+
editable: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
184
|
+
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>;
|
|
209
185
|
size: {
|
|
210
|
-
readonly type: PropType<"" | "
|
|
186
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
211
187
|
readonly required: false;
|
|
212
188
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
213
189
|
__epPropKey: true;
|
|
214
190
|
};
|
|
215
191
|
readonly: BooleanConstructor;
|
|
216
192
|
disabled: BooleanConstructor;
|
|
217
|
-
placeholder:
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
221
|
-
__epPropKey: true;
|
|
222
|
-
} & {
|
|
223
|
-
readonly default: "";
|
|
224
|
-
};
|
|
225
|
-
popperOptions: {
|
|
226
|
-
readonly type: PropType<any>;
|
|
227
|
-
readonly required: false;
|
|
228
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
229
|
-
__epPropKey: true;
|
|
230
|
-
} & {
|
|
231
|
-
readonly default: () => {};
|
|
232
|
-
};
|
|
233
|
-
rangeSeparator: {
|
|
234
|
-
readonly type: PropType<string>;
|
|
235
|
-
readonly required: false;
|
|
236
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
237
|
-
__epPropKey: true;
|
|
238
|
-
} & {
|
|
239
|
-
readonly default: "-";
|
|
240
|
-
};
|
|
193
|
+
placeholder: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
194
|
+
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>;
|
|
195
|
+
rangeSeparator: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
241
196
|
startPlaceholder: StringConstructor;
|
|
242
197
|
endPlaceholder: StringConstructor;
|
|
243
198
|
defaultValue: {
|
|
244
|
-
readonly type: PropType<import("element-plus").SingleOrRange<Date>>;
|
|
199
|
+
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>>;
|
|
245
200
|
readonly required: false;
|
|
246
201
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
247
202
|
__epPropKey: true;
|
|
248
203
|
};
|
|
249
204
|
defaultTime: {
|
|
250
|
-
readonly type: PropType<import("element-plus").SingleOrRange<Date>>;
|
|
205
|
+
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>>;
|
|
251
206
|
readonly required: false;
|
|
252
207
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
253
208
|
__epPropKey: true;
|