@jari-ace/element-plus-component 0.5.6 → 0.6.0
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/components/autoComplete/JaAutoComplete.vue.d.ts +856 -1163
- package/dist/components/autoComplete/JaAutoComplete.vue.d.ts.map +1 -1
- package/dist/components/avatar/JaAvatar.vue.d.ts +3 -4
- package/dist/components/avatar/JaAvatar.vue.d.ts.map +1 -1
- package/dist/components/avatar/JaAvatar.vue.js +2 -10
- package/dist/components/avatar/JaAvatar.vue.js.map +1 -1
- package/dist/components/button/JaButton.vue.d.ts +354 -246
- package/dist/components/button/JaButton.vue.d.ts.map +1 -1
- package/dist/components/checkbox/JaCheckbox.vue.d.ts +212 -176
- package/dist/components/checkbox/JaCheckbox.vue.d.ts.map +1 -1
- package/dist/components/checkboxGroup/JaCheckboxGroup.vue.d.ts +262 -222
- package/dist/components/checkboxGroup/JaCheckboxGroup.vue.d.ts.map +1 -1
- package/dist/components/departmentPicker/src/DepartmentPicker.vue.js +2 -2
- package/dist/components/departmentPicker/src/DepartmentPicker.vue.js.map +1 -1
- package/dist/components/dropdownButton/JaDropdownButton.vue.d.ts +400 -268
- package/dist/components/dropdownButton/JaDropdownButton.vue.d.ts.map +1 -1
- package/dist/components/flowShell/FlowFormShell.vue.d.ts +339 -0
- package/dist/components/flowShell/FlowFormShell.vue.d.ts.map +1 -1
- package/dist/components/flowShell/FlowFormShell.vue.js +137 -50
- package/dist/components/flowShell/FlowFormShell.vue.js.map +1 -1
- package/dist/components/formItem/JaFormItem.vue.d.ts +228 -186
- package/dist/components/formItem/JaFormItem.vue.d.ts.map +1 -1
- package/dist/components/input/JaInput.vue.d.ts +595 -581
- package/dist/components/input/JaInput.vue.d.ts.map +1 -1
- package/dist/components/input/JaInput.vue.js +4 -2
- package/dist/components/input/JaInput.vue.js.map +1 -1
- package/dist/components/inputNumber/JaInputNumber.vue.d.ts +428 -276
- package/dist/components/inputNumber/JaInputNumber.vue.d.ts.map +1 -1
- package/dist/components/radioGroup/JaRadioGroup.vue.d.ts +246 -155
- package/dist/components/radioGroup/JaRadioGroup.vue.d.ts.map +1 -1
- package/dist/components/rolePicker/baseRolePicker.vue.d.ts +984 -12
- package/dist/components/rolePicker/baseRolePicker.vue.d.ts.map +1 -1
- package/dist/components/scrollbar/Scrollbar.vue.d.ts +332 -194
- package/dist/components/scrollbar/Scrollbar.vue.d.ts.map +1 -1
- package/dist/components/switch/JaSwitch.vue.d.ts +378 -317
- package/dist/components/switch/JaSwitch.vue.d.ts.map +1 -1
- package/dist/components/upload/JaUploader.vue.d.ts +51 -3
- package/dist/components/upload/JaUploader.vue.d.ts.map +1 -1
- package/dist/components/upload/JaUploader.vue.js +12 -0
- package/dist/components/upload/JaUploader.vue.js.map +1 -1
- package/dist/components/upload/index.d.ts +31 -0
- package/dist/components/upload/index.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.d.ts +9 -0
- package/dist/components/upload/uploader.vue.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.js +20 -14
- package/dist/components/upload/uploader.vue.js.map +1 -1
- package/dist/components/userGroupPicker/src/UserGroupPicker.vue.js +2 -2
- package/dist/components/userGroupPicker/src/UserGroupPicker.vue.js.map +1 -1
- package/dist/components/userGroupTree/src/userGroupTree.vue.d.ts +416 -324
- package/dist/components/userGroupTree/src/userGroupTree.vue.d.ts.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.js +9788 -9548
- package/lib/index.umd.cjs +34 -34
- package/package.json +2 -2
- package/packages/components/avatar/JaAvatar.vue +7 -16
- package/packages/components/departmentPicker/src/DepartmentPicker.vue +1 -1
- package/packages/components/flowShell/FlowFormShell.vue +98 -8
- package/packages/components/input/JaInput.vue +2 -1
- package/packages/components/upload/JaUploader.vue +39 -5
- package/packages/components/upload/uploader.vue +51 -38
- package/packages/components/userGroupPicker/src/UserGroupPicker.vue +1 -1
|
@@ -25,42 +25,36 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
25
25
|
$: import("vue").ComponentInternalInstance;
|
|
26
26
|
$data: {};
|
|
27
27
|
$props: Partial<{
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
readonly autofocus: boolean;
|
|
38
|
-
readonly tag: unknown;
|
|
39
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
40
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
41
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "reset" | "submit" | "button", unknown>;
|
|
42
|
-
readonly loadingIcon: unknown;
|
|
28
|
+
text: boolean;
|
|
29
|
+
disabled: boolean;
|
|
30
|
+
round: boolean;
|
|
31
|
+
type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
32
|
+
tag: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
33
|
+
plain: boolean;
|
|
34
|
+
autoInsertSpace: boolean;
|
|
35
|
+
nativeType: "reset" | "submit" | "button";
|
|
36
|
+
loadingIcon: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
43
37
|
}> & Omit<{
|
|
44
|
-
readonly type:
|
|
45
|
-
readonly
|
|
46
|
-
readonly
|
|
47
|
-
readonly
|
|
48
|
-
readonly
|
|
49
|
-
readonly
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly circle: boolean;
|
|
53
|
-
readonly tag: "button";
|
|
54
|
-
readonly size?: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>;
|
|
38
|
+
readonly type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
39
|
+
readonly nativeType: "reset" | "submit" | "button";
|
|
40
|
+
readonly tag: string;
|
|
41
|
+
readonly link?: boolean;
|
|
42
|
+
readonly size?: "" | "default" | "small" | "large";
|
|
43
|
+
readonly loading?: boolean;
|
|
44
|
+
readonly disabled?: boolean;
|
|
45
|
+
readonly dark?: boolean;
|
|
55
46
|
readonly icon?: unknown;
|
|
56
47
|
readonly loadingIcon?: any;
|
|
57
|
-
readonly plain?:
|
|
58
|
-
readonly text?:
|
|
59
|
-
readonly
|
|
48
|
+
readonly plain?: boolean;
|
|
49
|
+
readonly text?: boolean;
|
|
50
|
+
readonly bg?: boolean;
|
|
51
|
+
readonly autofocus?: boolean;
|
|
52
|
+
readonly round?: boolean;
|
|
53
|
+
readonly circle?: boolean;
|
|
60
54
|
readonly color?: string;
|
|
61
|
-
readonly autoInsertSpace?:
|
|
55
|
+
readonly autoInsertSpace?: boolean;
|
|
62
56
|
onClick?: (evt: MouseEvent) => any;
|
|
63
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "
|
|
57
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "nativeType" | "loadingIcon" | "plain" | "text" | "round" | "autoInsertSpace" | "tag">;
|
|
64
58
|
$attrs: {
|
|
65
59
|
[x: string]: unknown;
|
|
66
60
|
};
|
|
@@ -76,60 +70,89 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
76
70
|
$emit: (event: "click", evt: MouseEvent) => void;
|
|
77
71
|
$el: any;
|
|
78
72
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
readonly validator: (val: unknown) => boolean;
|
|
83
|
-
__epPropKey: true;
|
|
73
|
+
type: {
|
|
74
|
+
type: import("vue").PropType<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
75
|
+
default: string;
|
|
84
76
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
77
|
+
link: {
|
|
78
|
+
type: import("vue").PropType<boolean>;
|
|
79
|
+
};
|
|
80
|
+
size: {
|
|
81
|
+
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
82
|
+
};
|
|
83
|
+
loading: {
|
|
84
|
+
type: import("vue").PropType<boolean>;
|
|
85
|
+
};
|
|
86
|
+
disabled: {
|
|
87
|
+
type: import("vue").PropType<boolean>;
|
|
88
|
+
default: undefined;
|
|
89
|
+
};
|
|
90
|
+
dark: {
|
|
91
|
+
type: import("vue").PropType<boolean>;
|
|
92
|
+
};
|
|
93
|
+
icon: {
|
|
94
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
95
|
+
};
|
|
96
|
+
nativeType: {
|
|
97
|
+
type: import("vue").PropType<"reset" | "submit" | "button">;
|
|
98
|
+
default: string;
|
|
99
|
+
};
|
|
100
|
+
loadingIcon: {
|
|
101
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
102
|
+
default: any;
|
|
103
|
+
};
|
|
104
|
+
plain: {
|
|
105
|
+
type: import("vue").PropType<boolean>;
|
|
106
|
+
default: undefined;
|
|
107
|
+
};
|
|
108
|
+
text: {
|
|
109
|
+
type: import("vue").PropType<boolean>;
|
|
110
|
+
default: undefined;
|
|
111
|
+
};
|
|
112
|
+
bg: {
|
|
113
|
+
type: import("vue").PropType<boolean>;
|
|
114
|
+
};
|
|
115
|
+
autofocus: {
|
|
116
|
+
type: import("vue").PropType<boolean>;
|
|
117
|
+
};
|
|
118
|
+
round: {
|
|
119
|
+
type: import("vue").PropType<boolean>;
|
|
120
|
+
default: undefined;
|
|
121
|
+
};
|
|
122
|
+
circle: {
|
|
123
|
+
type: import("vue").PropType<boolean>;
|
|
124
|
+
};
|
|
125
|
+
color: {
|
|
126
|
+
type: import("vue").PropType<string>;
|
|
127
|
+
};
|
|
128
|
+
autoInsertSpace: {
|
|
129
|
+
type: import("vue").PropType<boolean>;
|
|
130
|
+
default: undefined;
|
|
131
|
+
};
|
|
132
|
+
tag: {
|
|
133
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
134
|
+
default: string;
|
|
92
135
|
};
|
|
93
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
94
|
-
readonly loading: BooleanConstructor;
|
|
95
|
-
readonly loadingIcon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, () => any, boolean>;
|
|
96
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
97
|
-
readonly text: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
98
|
-
readonly link: BooleanConstructor;
|
|
99
|
-
readonly bg: BooleanConstructor;
|
|
100
|
-
readonly autofocus: BooleanConstructor;
|
|
101
|
-
readonly round: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
102
|
-
readonly circle: BooleanConstructor;
|
|
103
|
-
readonly color: StringConstructor;
|
|
104
|
-
readonly dark: BooleanConstructor;
|
|
105
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
106
|
-
readonly tag: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, "button", boolean>;
|
|
107
136
|
}>> & {
|
|
108
137
|
onClick?: (evt: MouseEvent) => any;
|
|
109
138
|
}, {
|
|
110
139
|
ref: import("vue").Ref<HTMLButtonElement, HTMLButtonElement>;
|
|
111
140
|
size: import("vue").ComputedRef<"" | "default" | "small" | "large">;
|
|
112
|
-
type: import("vue").ComputedRef<
|
|
141
|
+
type: import("vue").ComputedRef<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
113
142
|
disabled: import("vue").ComputedRef<boolean>;
|
|
114
143
|
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
115
144
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
116
145
|
click: (evt: MouseEvent) => void;
|
|
117
146
|
}, string, {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
readonly autofocus: boolean;
|
|
128
|
-
readonly tag: unknown;
|
|
129
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
130
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
131
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "reset" | "submit" | "button", unknown>;
|
|
132
|
-
readonly loadingIcon: unknown;
|
|
147
|
+
text: boolean;
|
|
148
|
+
disabled: boolean;
|
|
149
|
+
round: boolean;
|
|
150
|
+
type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
151
|
+
tag: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
152
|
+
plain: boolean;
|
|
153
|
+
autoInsertSpace: boolean;
|
|
154
|
+
nativeType: "reset" | "submit" | "button";
|
|
155
|
+
loadingIcon: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
133
156
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
134
157
|
beforeCreate?: (() => void) | (() => void)[];
|
|
135
158
|
created?: (() => void) | (() => void)[];
|
|
@@ -151,104 +174,129 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
151
174
|
$nextTick: typeof import("vue").nextTick;
|
|
152
175
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
153
176
|
} & Readonly<{
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
readonly autofocus: boolean;
|
|
164
|
-
readonly tag: unknown;
|
|
165
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
166
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
167
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "reset" | "submit" | "button", unknown>;
|
|
168
|
-
readonly loadingIcon: unknown;
|
|
177
|
+
text: boolean;
|
|
178
|
+
disabled: boolean;
|
|
179
|
+
round: boolean;
|
|
180
|
+
type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
181
|
+
tag: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
182
|
+
plain: boolean;
|
|
183
|
+
autoInsertSpace: boolean;
|
|
184
|
+
nativeType: "reset" | "submit" | "button";
|
|
185
|
+
loadingIcon: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
169
186
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
readonly validator: (val: unknown) => boolean;
|
|
174
|
-
__epPropKey: true;
|
|
187
|
+
type: {
|
|
188
|
+
type: import("vue").PropType<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
189
|
+
default: string;
|
|
175
190
|
};
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
191
|
+
link: {
|
|
192
|
+
type: import("vue").PropType<boolean>;
|
|
193
|
+
};
|
|
194
|
+
size: {
|
|
195
|
+
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
196
|
+
};
|
|
197
|
+
loading: {
|
|
198
|
+
type: import("vue").PropType<boolean>;
|
|
199
|
+
};
|
|
200
|
+
disabled: {
|
|
201
|
+
type: import("vue").PropType<boolean>;
|
|
202
|
+
default: undefined;
|
|
203
|
+
};
|
|
204
|
+
dark: {
|
|
205
|
+
type: import("vue").PropType<boolean>;
|
|
206
|
+
};
|
|
207
|
+
icon: {
|
|
208
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
209
|
+
};
|
|
210
|
+
nativeType: {
|
|
211
|
+
type: import("vue").PropType<"reset" | "submit" | "button">;
|
|
212
|
+
default: string;
|
|
213
|
+
};
|
|
214
|
+
loadingIcon: {
|
|
215
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
216
|
+
default: any;
|
|
217
|
+
};
|
|
218
|
+
plain: {
|
|
219
|
+
type: import("vue").PropType<boolean>;
|
|
220
|
+
default: undefined;
|
|
221
|
+
};
|
|
222
|
+
text: {
|
|
223
|
+
type: import("vue").PropType<boolean>;
|
|
224
|
+
default: undefined;
|
|
225
|
+
};
|
|
226
|
+
bg: {
|
|
227
|
+
type: import("vue").PropType<boolean>;
|
|
228
|
+
};
|
|
229
|
+
autofocus: {
|
|
230
|
+
type: import("vue").PropType<boolean>;
|
|
231
|
+
};
|
|
232
|
+
round: {
|
|
233
|
+
type: import("vue").PropType<boolean>;
|
|
234
|
+
default: undefined;
|
|
235
|
+
};
|
|
236
|
+
circle: {
|
|
237
|
+
type: import("vue").PropType<boolean>;
|
|
238
|
+
};
|
|
239
|
+
color: {
|
|
240
|
+
type: import("vue").PropType<string>;
|
|
241
|
+
};
|
|
242
|
+
autoInsertSpace: {
|
|
243
|
+
type: import("vue").PropType<boolean>;
|
|
244
|
+
default: undefined;
|
|
245
|
+
};
|
|
246
|
+
tag: {
|
|
247
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
248
|
+
default: string;
|
|
183
249
|
};
|
|
184
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
185
|
-
readonly loading: BooleanConstructor;
|
|
186
|
-
readonly loadingIcon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, () => any, boolean>;
|
|
187
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
188
|
-
readonly text: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
189
|
-
readonly link: BooleanConstructor;
|
|
190
|
-
readonly bg: BooleanConstructor;
|
|
191
|
-
readonly autofocus: BooleanConstructor;
|
|
192
|
-
readonly round: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
193
|
-
readonly circle: BooleanConstructor;
|
|
194
|
-
readonly color: StringConstructor;
|
|
195
|
-
readonly dark: BooleanConstructor;
|
|
196
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
197
|
-
readonly tag: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, "button", boolean>;
|
|
198
250
|
}>> & {
|
|
199
251
|
onClick?: (evt: MouseEvent) => any;
|
|
200
|
-
}, "type" | "
|
|
252
|
+
}, "type" | "size" | "ref" | "disabled" | "nativeType" | "loadingIcon" | "plain" | "text" | "round" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import("vue").ShallowUnwrapRef<{
|
|
201
253
|
ref: import("vue").Ref<HTMLButtonElement, HTMLButtonElement>;
|
|
202
254
|
size: import("vue").ComputedRef<"" | "default" | "small" | "large">;
|
|
203
|
-
type: import("vue").ComputedRef<
|
|
255
|
+
type: import("vue").ComputedRef<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
204
256
|
disabled: import("vue").ComputedRef<boolean>;
|
|
205
257
|
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
206
258
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
207
259
|
$slots: {
|
|
208
|
-
loading
|
|
209
|
-
|
|
210
|
-
|
|
260
|
+
loading?: (props: {}) => any;
|
|
261
|
+
} & {
|
|
262
|
+
icon?: (props: {}) => any;
|
|
263
|
+
} & {
|
|
264
|
+
default?: (props: {}) => any;
|
|
211
265
|
};
|
|
212
266
|
}, {
|
|
213
267
|
$: import("vue").ComponentInternalInstance;
|
|
214
268
|
$data: {};
|
|
215
269
|
$props: Partial<{
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
readonly autofocus: boolean;
|
|
226
|
-
readonly tag: unknown;
|
|
227
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
228
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
229
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "reset" | "submit" | "button", unknown>;
|
|
230
|
-
readonly loadingIcon: unknown;
|
|
270
|
+
text: boolean;
|
|
271
|
+
disabled: boolean;
|
|
272
|
+
round: boolean;
|
|
273
|
+
type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
274
|
+
tag: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
275
|
+
plain: boolean;
|
|
276
|
+
autoInsertSpace: boolean;
|
|
277
|
+
nativeType: "reset" | "submit" | "button";
|
|
278
|
+
loadingIcon: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
231
279
|
}> & Omit<{
|
|
232
|
-
readonly type:
|
|
233
|
-
readonly
|
|
234
|
-
readonly
|
|
235
|
-
readonly
|
|
236
|
-
readonly
|
|
237
|
-
readonly
|
|
238
|
-
readonly
|
|
239
|
-
readonly
|
|
240
|
-
readonly circle: boolean;
|
|
241
|
-
readonly tag: "button";
|
|
242
|
-
readonly size?: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>;
|
|
280
|
+
readonly type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
281
|
+
readonly nativeType: "reset" | "submit" | "button";
|
|
282
|
+
readonly tag: string;
|
|
283
|
+
readonly link?: boolean;
|
|
284
|
+
readonly size?: "" | "default" | "small" | "large";
|
|
285
|
+
readonly loading?: boolean;
|
|
286
|
+
readonly disabled?: boolean;
|
|
287
|
+
readonly dark?: boolean;
|
|
243
288
|
readonly icon?: unknown;
|
|
244
289
|
readonly loadingIcon?: any;
|
|
245
|
-
readonly plain?:
|
|
246
|
-
readonly text?:
|
|
247
|
-
readonly
|
|
290
|
+
readonly plain?: boolean;
|
|
291
|
+
readonly text?: boolean;
|
|
292
|
+
readonly bg?: boolean;
|
|
293
|
+
readonly autofocus?: boolean;
|
|
294
|
+
readonly round?: boolean;
|
|
295
|
+
readonly circle?: boolean;
|
|
248
296
|
readonly color?: string;
|
|
249
|
-
readonly autoInsertSpace?:
|
|
297
|
+
readonly autoInsertSpace?: boolean;
|
|
250
298
|
onClick?: (evt: MouseEvent) => any;
|
|
251
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "
|
|
299
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "nativeType" | "loadingIcon" | "plain" | "text" | "round" | "autoInsertSpace" | "tag">;
|
|
252
300
|
$attrs: {
|
|
253
301
|
[x: string]: unknown;
|
|
254
302
|
};
|
|
@@ -264,60 +312,89 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
264
312
|
$emit: (event: "click", evt: MouseEvent) => void;
|
|
265
313
|
$el: any;
|
|
266
314
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
315
|
+
type: {
|
|
316
|
+
type: import("vue").PropType<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
317
|
+
default: string;
|
|
318
|
+
};
|
|
319
|
+
link: {
|
|
320
|
+
type: import("vue").PropType<boolean>;
|
|
321
|
+
};
|
|
322
|
+
size: {
|
|
323
|
+
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
324
|
+
};
|
|
325
|
+
loading: {
|
|
326
|
+
type: import("vue").PropType<boolean>;
|
|
327
|
+
};
|
|
328
|
+
disabled: {
|
|
329
|
+
type: import("vue").PropType<boolean>;
|
|
330
|
+
default: undefined;
|
|
331
|
+
};
|
|
332
|
+
dark: {
|
|
333
|
+
type: import("vue").PropType<boolean>;
|
|
334
|
+
};
|
|
335
|
+
icon: {
|
|
336
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
337
|
+
};
|
|
338
|
+
nativeType: {
|
|
339
|
+
type: import("vue").PropType<"reset" | "submit" | "button">;
|
|
340
|
+
default: string;
|
|
341
|
+
};
|
|
342
|
+
loadingIcon: {
|
|
343
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
344
|
+
default: any;
|
|
345
|
+
};
|
|
346
|
+
plain: {
|
|
347
|
+
type: import("vue").PropType<boolean>;
|
|
348
|
+
default: undefined;
|
|
349
|
+
};
|
|
350
|
+
text: {
|
|
351
|
+
type: import("vue").PropType<boolean>;
|
|
352
|
+
default: undefined;
|
|
353
|
+
};
|
|
354
|
+
bg: {
|
|
355
|
+
type: import("vue").PropType<boolean>;
|
|
356
|
+
};
|
|
357
|
+
autofocus: {
|
|
358
|
+
type: import("vue").PropType<boolean>;
|
|
272
359
|
};
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
360
|
+
round: {
|
|
361
|
+
type: import("vue").PropType<boolean>;
|
|
362
|
+
default: undefined;
|
|
363
|
+
};
|
|
364
|
+
circle: {
|
|
365
|
+
type: import("vue").PropType<boolean>;
|
|
366
|
+
};
|
|
367
|
+
color: {
|
|
368
|
+
type: import("vue").PropType<string>;
|
|
369
|
+
};
|
|
370
|
+
autoInsertSpace: {
|
|
371
|
+
type: import("vue").PropType<boolean>;
|
|
372
|
+
default: undefined;
|
|
373
|
+
};
|
|
374
|
+
tag: {
|
|
375
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
376
|
+
default: string;
|
|
280
377
|
};
|
|
281
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
282
|
-
readonly loading: BooleanConstructor;
|
|
283
|
-
readonly loadingIcon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, () => any, boolean>;
|
|
284
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
285
|
-
readonly text: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
286
|
-
readonly link: BooleanConstructor;
|
|
287
|
-
readonly bg: BooleanConstructor;
|
|
288
|
-
readonly autofocus: BooleanConstructor;
|
|
289
|
-
readonly round: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
290
|
-
readonly circle: BooleanConstructor;
|
|
291
|
-
readonly color: StringConstructor;
|
|
292
|
-
readonly dark: BooleanConstructor;
|
|
293
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
294
|
-
readonly tag: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, "button", boolean>;
|
|
295
378
|
}>> & {
|
|
296
379
|
onClick?: (evt: MouseEvent) => any;
|
|
297
380
|
}, {
|
|
298
381
|
ref: import("vue").Ref<HTMLButtonElement, HTMLButtonElement>;
|
|
299
382
|
size: import("vue").ComputedRef<"" | "default" | "small" | "large">;
|
|
300
|
-
type: import("vue").ComputedRef<
|
|
383
|
+
type: import("vue").ComputedRef<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
301
384
|
disabled: import("vue").ComputedRef<boolean>;
|
|
302
385
|
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
303
386
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
304
387
|
click: (evt: MouseEvent) => void;
|
|
305
388
|
}, string, {
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
readonly autofocus: boolean;
|
|
316
|
-
readonly tag: unknown;
|
|
317
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
318
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
319
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "reset" | "submit" | "button", unknown>;
|
|
320
|
-
readonly loadingIcon: unknown;
|
|
389
|
+
text: boolean;
|
|
390
|
+
disabled: boolean;
|
|
391
|
+
round: boolean;
|
|
392
|
+
type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
393
|
+
tag: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
394
|
+
plain: boolean;
|
|
395
|
+
autoInsertSpace: boolean;
|
|
396
|
+
nativeType: "reset" | "submit" | "button";
|
|
397
|
+
loadingIcon: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
321
398
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
322
399
|
beforeCreate?: (() => void) | (() => void)[];
|
|
323
400
|
created?: (() => void) | (() => void)[];
|
|
@@ -339,63 +416,94 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
339
416
|
$nextTick: typeof import("vue").nextTick;
|
|
340
417
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
341
418
|
} & Readonly<{
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
readonly autofocus: boolean;
|
|
352
|
-
readonly tag: unknown;
|
|
353
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
354
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
355
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "reset" | "submit" | "button", unknown>;
|
|
356
|
-
readonly loadingIcon: unknown;
|
|
419
|
+
text: boolean;
|
|
420
|
+
disabled: boolean;
|
|
421
|
+
round: boolean;
|
|
422
|
+
type: "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
423
|
+
tag: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
424
|
+
plain: boolean;
|
|
425
|
+
autoInsertSpace: boolean;
|
|
426
|
+
nativeType: "reset" | "submit" | "button";
|
|
427
|
+
loadingIcon: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
357
428
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
readonly validator: (val: unknown) => boolean;
|
|
362
|
-
__epPropKey: true;
|
|
429
|
+
type: {
|
|
430
|
+
type: import("vue").PropType<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
431
|
+
default: string;
|
|
363
432
|
};
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
433
|
+
link: {
|
|
434
|
+
type: import("vue").PropType<boolean>;
|
|
435
|
+
};
|
|
436
|
+
size: {
|
|
437
|
+
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
438
|
+
};
|
|
439
|
+
loading: {
|
|
440
|
+
type: import("vue").PropType<boolean>;
|
|
441
|
+
};
|
|
442
|
+
disabled: {
|
|
443
|
+
type: import("vue").PropType<boolean>;
|
|
444
|
+
default: undefined;
|
|
445
|
+
};
|
|
446
|
+
dark: {
|
|
447
|
+
type: import("vue").PropType<boolean>;
|
|
448
|
+
};
|
|
449
|
+
icon: {
|
|
450
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
451
|
+
};
|
|
452
|
+
nativeType: {
|
|
453
|
+
type: import("vue").PropType<"reset" | "submit" | "button">;
|
|
454
|
+
default: string;
|
|
455
|
+
};
|
|
456
|
+
loadingIcon: {
|
|
457
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
458
|
+
default: any;
|
|
459
|
+
};
|
|
460
|
+
plain: {
|
|
461
|
+
type: import("vue").PropType<boolean>;
|
|
462
|
+
default: undefined;
|
|
463
|
+
};
|
|
464
|
+
text: {
|
|
465
|
+
type: import("vue").PropType<boolean>;
|
|
466
|
+
default: undefined;
|
|
467
|
+
};
|
|
468
|
+
bg: {
|
|
469
|
+
type: import("vue").PropType<boolean>;
|
|
470
|
+
};
|
|
471
|
+
autofocus: {
|
|
472
|
+
type: import("vue").PropType<boolean>;
|
|
473
|
+
};
|
|
474
|
+
round: {
|
|
475
|
+
type: import("vue").PropType<boolean>;
|
|
476
|
+
default: undefined;
|
|
477
|
+
};
|
|
478
|
+
circle: {
|
|
479
|
+
type: import("vue").PropType<boolean>;
|
|
480
|
+
};
|
|
481
|
+
color: {
|
|
482
|
+
type: import("vue").PropType<string>;
|
|
483
|
+
};
|
|
484
|
+
autoInsertSpace: {
|
|
485
|
+
type: import("vue").PropType<boolean>;
|
|
486
|
+
default: undefined;
|
|
487
|
+
};
|
|
488
|
+
tag: {
|
|
489
|
+
type: import("vue").PropType<string | import("vue").Component>;
|
|
490
|
+
default: string;
|
|
371
491
|
};
|
|
372
|
-
readonly nativeType: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
373
|
-
readonly loading: BooleanConstructor;
|
|
374
|
-
readonly loadingIcon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, () => any, boolean>;
|
|
375
|
-
readonly plain: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
376
|
-
readonly text: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
377
|
-
readonly link: BooleanConstructor;
|
|
378
|
-
readonly bg: BooleanConstructor;
|
|
379
|
-
readonly autofocus: BooleanConstructor;
|
|
380
|
-
readonly round: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
381
|
-
readonly circle: BooleanConstructor;
|
|
382
|
-
readonly color: StringConstructor;
|
|
383
|
-
readonly dark: BooleanConstructor;
|
|
384
|
-
readonly autoInsertSpace: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
385
|
-
readonly tag: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown, "button", boolean>;
|
|
386
492
|
}>> & {
|
|
387
493
|
onClick?: (evt: MouseEvent) => any;
|
|
388
|
-
}, "type" | "
|
|
494
|
+
}, "type" | "size" | "ref" | "disabled" | "nativeType" | "loadingIcon" | "plain" | "text" | "round" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import("vue").ShallowUnwrapRef<{
|
|
389
495
|
ref: import("vue").Ref<HTMLButtonElement, HTMLButtonElement>;
|
|
390
496
|
size: import("vue").ComputedRef<"" | "default" | "small" | "large">;
|
|
391
|
-
type: import("vue").ComputedRef<
|
|
497
|
+
type: import("vue").ComputedRef<"" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger">;
|
|
392
498
|
disabled: import("vue").ComputedRef<boolean>;
|
|
393
499
|
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
394
500
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
395
501
|
$slots: {
|
|
396
|
-
loading
|
|
397
|
-
|
|
398
|
-
|
|
502
|
+
loading?: (props: {}) => any;
|
|
503
|
+
} & {
|
|
504
|
+
icon?: (props: {}) => any;
|
|
505
|
+
} & {
|
|
506
|
+
default?: (props: {}) => any;
|
|
399
507
|
};
|
|
400
508
|
}>;
|
|
401
509
|
elDropdown: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -422,13 +530,13 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
422
530
|
readonly __epPropKey: true;
|
|
423
531
|
};
|
|
424
532
|
readonly type: {
|
|
425
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() =>
|
|
533
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | ((new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger"))[], unknown, unknown>>;
|
|
426
534
|
readonly required: false;
|
|
427
535
|
readonly validator: (val: unknown) => boolean;
|
|
428
536
|
__epPropKey: true;
|
|
429
537
|
};
|
|
430
|
-
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() =>
|
|
431
|
-
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) =>
|
|
538
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown, "bottom", boolean>;
|
|
539
|
+
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>) | ((new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>))[], unknown, unknown, () => {}, boolean>;
|
|
432
540
|
readonly id: StringConstructor;
|
|
433
541
|
readonly size: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
434
542
|
readonly splitButton: BooleanConstructor;
|
|
@@ -534,7 +642,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
534
642
|
__epPropKey: true;
|
|
535
643
|
};
|
|
536
644
|
readonly popperStyle: {
|
|
537
|
-
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>>;
|
|
645
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown>>;
|
|
538
646
|
readonly required: false;
|
|
539
647
|
readonly validator: (val: unknown) => boolean;
|
|
540
648
|
__epPropKey: true;
|
|
@@ -548,6 +656,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
548
656
|
__epPropKey: true;
|
|
549
657
|
};
|
|
550
658
|
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
659
|
+
readonly appendTo: {
|
|
660
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
661
|
+
readonly required: false;
|
|
662
|
+
readonly validator: (val: unknown) => boolean;
|
|
663
|
+
__epPropKey: true;
|
|
664
|
+
};
|
|
551
665
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
552
666
|
}>> & {
|
|
553
667
|
onClick?: (...args: any[]) => any;
|
|
@@ -590,20 +704,20 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
590
704
|
contentRef: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
591
705
|
triggeringElementRef: import("vue").Ref<any, any>;
|
|
592
706
|
referenceElementRef: import("vue").Ref<any, any>;
|
|
593
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "visible-change" | "command")[], import("vue").
|
|
707
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "visible-change" | "command")[], import("vue").PublicProps, {
|
|
594
708
|
readonly disabled: boolean;
|
|
595
709
|
readonly 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>;
|
|
596
710
|
readonly maxHeight: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
597
711
|
readonly size: string;
|
|
598
|
-
readonly placement: any
|
|
712
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown>;
|
|
599
713
|
readonly effect: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").PopperEffect) | ((new (...args: any[]) => string) | (() => import("element-plus").PopperEffect))[], unknown, unknown>;
|
|
600
714
|
readonly role: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation", unknown>;
|
|
715
|
+
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
601
716
|
readonly trigger: import("element-plus/es/utils/typescript.mjs").Arrayable<"click" | "contextmenu" | "hover">;
|
|
602
717
|
readonly virtualTriggering: boolean;
|
|
603
718
|
readonly loop: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
604
|
-
readonly popperOptions:
|
|
719
|
+
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
605
720
|
readonly triggerKeys: string[];
|
|
606
|
-
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
607
721
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
608
722
|
readonly showArrow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
609
723
|
readonly hideOnClick: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -641,13 +755,13 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
641
755
|
readonly __epPropKey: true;
|
|
642
756
|
};
|
|
643
757
|
readonly type: {
|
|
644
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() =>
|
|
758
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | ((new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger"))[], unknown, unknown>>;
|
|
645
759
|
readonly required: false;
|
|
646
760
|
readonly validator: (val: unknown) => boolean;
|
|
647
761
|
__epPropKey: true;
|
|
648
762
|
};
|
|
649
|
-
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() =>
|
|
650
|
-
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) =>
|
|
763
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown, "bottom", boolean>;
|
|
764
|
+
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>) | ((new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>))[], unknown, unknown, () => {}, boolean>;
|
|
651
765
|
readonly id: StringConstructor;
|
|
652
766
|
readonly size: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
653
767
|
readonly splitButton: BooleanConstructor;
|
|
@@ -753,7 +867,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
753
867
|
__epPropKey: true;
|
|
754
868
|
};
|
|
755
869
|
readonly popperStyle: {
|
|
756
|
-
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>>;
|
|
870
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown>>;
|
|
757
871
|
readonly required: false;
|
|
758
872
|
readonly validator: (val: unknown) => boolean;
|
|
759
873
|
__epPropKey: true;
|
|
@@ -767,6 +881,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
767
881
|
__epPropKey: true;
|
|
768
882
|
};
|
|
769
883
|
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
884
|
+
readonly appendTo: {
|
|
885
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
886
|
+
readonly required: false;
|
|
887
|
+
readonly validator: (val: unknown) => boolean;
|
|
888
|
+
__epPropKey: true;
|
|
889
|
+
};
|
|
770
890
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
771
891
|
}>> & {
|
|
772
892
|
onClick?: (...args: any[]) => any;
|
|
@@ -814,15 +934,15 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
814
934
|
readonly 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>;
|
|
815
935
|
readonly maxHeight: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
816
936
|
readonly size: string;
|
|
817
|
-
readonly placement: any
|
|
937
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown>;
|
|
818
938
|
readonly effect: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").PopperEffect) | ((new (...args: any[]) => string) | (() => import("element-plus").PopperEffect))[], unknown, unknown>;
|
|
819
939
|
readonly role: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation", unknown>;
|
|
940
|
+
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
820
941
|
readonly trigger: import("element-plus/es/utils/typescript.mjs").Arrayable<"click" | "contextmenu" | "hover">;
|
|
821
942
|
readonly virtualTriggering: boolean;
|
|
822
943
|
readonly loop: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
823
|
-
readonly popperOptions:
|
|
944
|
+
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
824
945
|
readonly triggerKeys: string[];
|
|
825
|
-
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
826
946
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
827
947
|
readonly showArrow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
828
948
|
readonly hideOnClick: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -853,13 +973,13 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
853
973
|
readonly __epPropKey: true;
|
|
854
974
|
};
|
|
855
975
|
readonly type: {
|
|
856
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() =>
|
|
976
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | ((new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger"))[], unknown, unknown>>;
|
|
857
977
|
readonly required: false;
|
|
858
978
|
readonly validator: (val: unknown) => boolean;
|
|
859
979
|
__epPropKey: true;
|
|
860
980
|
};
|
|
861
|
-
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() =>
|
|
862
|
-
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) =>
|
|
981
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown, "bottom", boolean>;
|
|
982
|
+
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>) | ((new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>))[], unknown, unknown, () => {}, boolean>;
|
|
863
983
|
readonly id: StringConstructor;
|
|
864
984
|
readonly size: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
865
985
|
readonly splitButton: BooleanConstructor;
|
|
@@ -965,7 +1085,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
965
1085
|
__epPropKey: true;
|
|
966
1086
|
};
|
|
967
1087
|
readonly popperStyle: {
|
|
968
|
-
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>>;
|
|
1088
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown>>;
|
|
969
1089
|
readonly required: false;
|
|
970
1090
|
readonly validator: (val: unknown) => boolean;
|
|
971
1091
|
__epPropKey: true;
|
|
@@ -979,6 +1099,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
979
1099
|
__epPropKey: true;
|
|
980
1100
|
};
|
|
981
1101
|
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1102
|
+
readonly appendTo: {
|
|
1103
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
1104
|
+
readonly required: false;
|
|
1105
|
+
readonly validator: (val: unknown) => boolean;
|
|
1106
|
+
__epPropKey: true;
|
|
1107
|
+
};
|
|
982
1108
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
983
1109
|
}>> & {
|
|
984
1110
|
onClick?: (...args: any[]) => any;
|
|
@@ -1021,20 +1147,20 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
1021
1147
|
contentRef: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
1022
1148
|
triggeringElementRef: import("vue").Ref<any, any>;
|
|
1023
1149
|
referenceElementRef: import("vue").Ref<any, any>;
|
|
1024
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "visible-change" | "command")[], import("vue").
|
|
1150
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "visible-change" | "command")[], import("vue").PublicProps, {
|
|
1025
1151
|
readonly disabled: boolean;
|
|
1026
1152
|
readonly 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>;
|
|
1027
1153
|
readonly maxHeight: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
1028
1154
|
readonly size: string;
|
|
1029
|
-
readonly placement: any
|
|
1155
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown>;
|
|
1030
1156
|
readonly effect: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").PopperEffect) | ((new (...args: any[]) => string) | (() => import("element-plus").PopperEffect))[], unknown, unknown>;
|
|
1031
1157
|
readonly role: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation", unknown>;
|
|
1158
|
+
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1032
1159
|
readonly trigger: import("element-plus/es/utils/typescript.mjs").Arrayable<"click" | "contextmenu" | "hover">;
|
|
1033
1160
|
readonly virtualTriggering: boolean;
|
|
1034
1161
|
readonly loop: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1035
|
-
readonly popperOptions:
|
|
1162
|
+
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
1036
1163
|
readonly triggerKeys: string[];
|
|
1037
|
-
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1038
1164
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1039
1165
|
readonly showArrow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1040
1166
|
readonly hideOnClick: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -1072,13 +1198,13 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
1072
1198
|
readonly __epPropKey: true;
|
|
1073
1199
|
};
|
|
1074
1200
|
readonly type: {
|
|
1075
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() =>
|
|
1201
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | ((new (...args: any[]) => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger") | (() => "" | "default" | "info" | "warning" | "success" | "text" | "primary" | "danger"))[], unknown, unknown>>;
|
|
1076
1202
|
readonly required: false;
|
|
1077
1203
|
readonly validator: (val: unknown) => boolean;
|
|
1078
1204
|
__epPropKey: true;
|
|
1079
1205
|
};
|
|
1080
|
-
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() =>
|
|
1081
|
-
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) =>
|
|
1206
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown, "bottom", boolean>;
|
|
1207
|
+
readonly popperOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>) | ((new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>))[], unknown, unknown, () => {}, boolean>;
|
|
1082
1208
|
readonly id: StringConstructor;
|
|
1083
1209
|
readonly size: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1084
1210
|
readonly splitButton: BooleanConstructor;
|
|
@@ -1184,7 +1310,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
1184
1310
|
__epPropKey: true;
|
|
1185
1311
|
};
|
|
1186
1312
|
readonly popperStyle: {
|
|
1187
|
-
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>>;
|
|
1313
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | false | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown>>;
|
|
1188
1314
|
readonly required: false;
|
|
1189
1315
|
readonly validator: (val: unknown) => boolean;
|
|
1190
1316
|
__epPropKey: true;
|
|
@@ -1198,6 +1324,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
1198
1324
|
__epPropKey: true;
|
|
1199
1325
|
};
|
|
1200
1326
|
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1327
|
+
readonly appendTo: {
|
|
1328
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
1329
|
+
readonly required: false;
|
|
1330
|
+
readonly validator: (val: unknown) => boolean;
|
|
1331
|
+
__epPropKey: true;
|
|
1332
|
+
};
|
|
1201
1333
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1202
1334
|
}>> & {
|
|
1203
1335
|
onClick?: (...args: any[]) => any;
|
|
@@ -1245,15 +1377,15 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaDropdown
|
|
|
1245
1377
|
readonly 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>;
|
|
1246
1378
|
readonly maxHeight: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
1247
1379
|
readonly size: string;
|
|
1248
|
-
readonly placement: any
|
|
1380
|
+
readonly placement: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], unknown, unknown>;
|
|
1249
1381
|
readonly effect: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").PopperEffect) | ((new (...args: any[]) => string) | (() => import("element-plus").PopperEffect))[], unknown, unknown>;
|
|
1250
1382
|
readonly role: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation", unknown>;
|
|
1383
|
+
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1251
1384
|
readonly trigger: import("element-plus/es/utils/typescript.mjs").Arrayable<"click" | "contextmenu" | "hover">;
|
|
1252
1385
|
readonly virtualTriggering: boolean;
|
|
1253
1386
|
readonly loop: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1254
|
-
readonly popperOptions:
|
|
1387
|
+
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
1255
1388
|
readonly triggerKeys: string[];
|
|
1256
|
-
readonly teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1257
1389
|
readonly persistent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1258
1390
|
readonly showArrow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1259
1391
|
readonly hideOnClick: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|