@dazhicheng/ui 1.5.109 → 1.5.111
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/api/dataTypeContext.d.ts +1 -1
- package/dist/components/tt-button/index.d.ts +259 -1204
- package/dist/components/tt-button/index.vue.d.ts +148 -688
- package/dist/components/tt-drawer/index.d.ts +457 -2389
- package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +290 -1394
- package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +1 -1
- package/dist/components/tt-form/src/hooks/useSelectCollapse.d.ts +14 -0
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +198 -1170
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +99 -585
- package/dist/components/tt-image/index.d.ts +8 -8
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +4 -4
- package/dist/components/tt-image/tt-image.d.ts +12 -12
- package/dist/components/tt-modal/index.d.ts +30 -30
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +12 -12
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +5 -5
- package/dist/components/tt-panel-select/src/components/PanelLeft.vue.d.ts +17 -0
- package/dist/components/tt-panel-select/src/components/PanelMiddle.vue.d.ts +162 -0
- package/dist/components/tt-panel-select/src/components/PanelRight.vue.d.ts +15 -0
- package/dist/components/tt-panel-select/src/components/panel.types.d.ts +12 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectData.d.ts +28 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectData.shared.d.ts +1 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectSelection.d.ts +21 -0
- package/dist/components/tt-panel-select/src/props.d.ts +41 -0
- package/dist/components/tt-table/index.d.ts +52 -322
- package/dist/components/tt-table/src/Table.vue.d.ts +104 -644
- package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +1 -1
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +199 -1171
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +104 -644
- package/dist/components/tt-upload/index.d.ts +47 -47
- package/dist/components/tt-upload/src/TtUpload.d.ts +47 -47
- package/dist/components/tt-upload/src/typing.d.ts +24 -24
- package/dist/hooks/useFormSchemasLink.d.ts +3 -18
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9874 -9098
- package/dist/style.css +1 -1
- package/package.json +12 -12
|
@@ -12,37 +12,28 @@ declare function __VLS_template(): {
|
|
|
12
12
|
buttonRef: ({
|
|
13
13
|
$: import('vue').ComponentInternalInstance;
|
|
14
14
|
$data: {};
|
|
15
|
-
$props:
|
|
16
|
-
text: boolean;
|
|
17
|
-
disabled: boolean;
|
|
18
|
-
round: boolean;
|
|
19
|
-
type: import('element-plus').ButtonType;
|
|
20
|
-
tag: string | import('vue').Component;
|
|
21
|
-
plain: boolean;
|
|
22
|
-
autoInsertSpace: boolean;
|
|
23
|
-
nativeType: import('element-plus').ButtonNativeType;
|
|
24
|
-
loadingIcon: string | import('vue').Component;
|
|
25
|
-
}> & Omit<{
|
|
26
|
-
readonly type: import('element-plus').ButtonType;
|
|
27
|
-
readonly nativeType: import('element-plus').ButtonNativeType;
|
|
28
|
-
readonly tag: string | import('vue').Component;
|
|
29
|
-
readonly link?: boolean | undefined;
|
|
30
|
-
readonly icon?: (string | import('vue').Component) | undefined;
|
|
31
|
-
readonly plain?: boolean | undefined;
|
|
32
|
-
readonly dark?: boolean | undefined;
|
|
33
|
-
readonly text?: boolean | undefined;
|
|
34
|
-
readonly disabled?: boolean | undefined;
|
|
15
|
+
$props: {
|
|
35
16
|
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
36
|
-
readonly
|
|
37
|
-
readonly
|
|
17
|
+
readonly disabled?: boolean | undefined;
|
|
18
|
+
readonly type?: import('element-plus').ButtonType | undefined;
|
|
19
|
+
readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
20
|
+
readonly nativeType?: import('element-plus').ButtonNativeType | undefined;
|
|
38
21
|
readonly loading?: boolean | undefined;
|
|
39
|
-
readonly loadingIcon?:
|
|
22
|
+
readonly loadingIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
23
|
+
readonly plain?: boolean | undefined;
|
|
24
|
+
readonly text?: boolean | undefined;
|
|
25
|
+
readonly link?: boolean | undefined;
|
|
40
26
|
readonly bg?: boolean | undefined;
|
|
41
27
|
readonly autofocus?: boolean | undefined;
|
|
42
28
|
readonly round?: boolean | undefined;
|
|
29
|
+
readonly circle?: boolean | undefined;
|
|
30
|
+
readonly dashed?: boolean | undefined;
|
|
31
|
+
readonly color?: string | undefined;
|
|
32
|
+
readonly dark?: boolean | undefined;
|
|
43
33
|
readonly autoInsertSpace?: boolean | undefined;
|
|
44
|
-
|
|
45
|
-
|
|
34
|
+
readonly tag?: (string | import('vue').Component) | undefined;
|
|
35
|
+
readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
36
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
46
37
|
$attrs: {
|
|
47
38
|
[x: string]: unknown;
|
|
48
39
|
};
|
|
@@ -57,90 +48,27 @@ declare function __VLS_template(): {
|
|
|
57
48
|
$host: Element | null;
|
|
58
49
|
$emit: (event: "click", evt: MouseEvent) => void;
|
|
59
50
|
$el: any;
|
|
60
|
-
$options: import('vue').ComponentOptionsBase<Readonly<
|
|
61
|
-
type: {
|
|
62
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
link: {
|
|
66
|
-
type: import('vue').PropType<boolean>;
|
|
67
|
-
};
|
|
68
|
-
icon: {
|
|
69
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
70
|
-
};
|
|
71
|
-
plain: {
|
|
72
|
-
type: import('vue').PropType<boolean>;
|
|
73
|
-
default: undefined;
|
|
74
|
-
};
|
|
75
|
-
dark: {
|
|
76
|
-
type: import('vue').PropType<boolean>;
|
|
77
|
-
};
|
|
78
|
-
text: {
|
|
79
|
-
type: import('vue').PropType<boolean>;
|
|
80
|
-
default: undefined;
|
|
81
|
-
};
|
|
82
|
-
disabled: {
|
|
83
|
-
type: import('vue').PropType<boolean>;
|
|
84
|
-
default: undefined;
|
|
85
|
-
};
|
|
86
|
-
size: {
|
|
87
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
88
|
-
};
|
|
89
|
-
circle: {
|
|
90
|
-
type: import('vue').PropType<boolean>;
|
|
91
|
-
};
|
|
92
|
-
color: {
|
|
93
|
-
type: import('vue').PropType<string>;
|
|
94
|
-
};
|
|
95
|
-
nativeType: {
|
|
96
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
loading: {
|
|
100
|
-
type: import('vue').PropType<boolean>;
|
|
101
|
-
};
|
|
102
|
-
loadingIcon: {
|
|
103
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
104
|
-
default: any;
|
|
105
|
-
};
|
|
106
|
-
bg: {
|
|
107
|
-
type: import('vue').PropType<boolean>;
|
|
108
|
-
};
|
|
109
|
-
autofocus: {
|
|
110
|
-
type: import('vue').PropType<boolean>;
|
|
111
|
-
};
|
|
112
|
-
round: {
|
|
113
|
-
type: import('vue').PropType<boolean>;
|
|
114
|
-
default: undefined;
|
|
115
|
-
};
|
|
116
|
-
autoInsertSpace: {
|
|
117
|
-
type: import('vue').PropType<boolean>;
|
|
118
|
-
default: undefined;
|
|
119
|
-
};
|
|
120
|
-
tag: {
|
|
121
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
122
|
-
default: string;
|
|
123
|
-
};
|
|
124
|
-
}>> & {
|
|
51
|
+
$options: import('vue').ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{
|
|
125
52
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
126
|
-
}
|
|
127
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
128
|
-
size: import('vue').ComputedRef<"" | "
|
|
129
|
-
type: import('vue').ComputedRef<"
|
|
53
|
+
}>, {
|
|
54
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
55
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
56
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
130
57
|
disabled: import('vue').ComputedRef<boolean>;
|
|
131
58
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
132
|
-
},
|
|
59
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
133
60
|
click: (evt: MouseEvent) => void;
|
|
134
61
|
}, string, {
|
|
62
|
+
type: import('element-plus').ButtonType;
|
|
135
63
|
text: boolean;
|
|
136
64
|
disabled: boolean;
|
|
137
65
|
round: boolean;
|
|
138
|
-
|
|
139
|
-
|
|
66
|
+
dashed: boolean;
|
|
67
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
68
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
140
69
|
plain: boolean;
|
|
141
70
|
autoInsertSpace: boolean;
|
|
142
|
-
|
|
143
|
-
loadingIcon: string | import('vue').Component;
|
|
71
|
+
tag: string | import('vue').Component;
|
|
144
72
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
145
73
|
beforeCreate?: (() => void) | (() => void)[];
|
|
146
74
|
created?: (() => void) | (() => void)[];
|
|
@@ -162,85 +90,22 @@ declare function __VLS_template(): {
|
|
|
162
90
|
$nextTick: typeof import('vue').nextTick;
|
|
163
91
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
164
92
|
} & Readonly<{
|
|
93
|
+
type: import('element-plus').ButtonType;
|
|
165
94
|
text: boolean;
|
|
166
95
|
disabled: boolean;
|
|
167
96
|
round: boolean;
|
|
168
|
-
|
|
169
|
-
|
|
97
|
+
dashed: boolean;
|
|
98
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
99
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
170
100
|
plain: boolean;
|
|
171
101
|
autoInsertSpace: boolean;
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
175
|
-
type: {
|
|
176
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
177
|
-
default: string;
|
|
178
|
-
};
|
|
179
|
-
link: {
|
|
180
|
-
type: import('vue').PropType<boolean>;
|
|
181
|
-
};
|
|
182
|
-
icon: {
|
|
183
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
184
|
-
};
|
|
185
|
-
plain: {
|
|
186
|
-
type: import('vue').PropType<boolean>;
|
|
187
|
-
default: undefined;
|
|
188
|
-
};
|
|
189
|
-
dark: {
|
|
190
|
-
type: import('vue').PropType<boolean>;
|
|
191
|
-
};
|
|
192
|
-
text: {
|
|
193
|
-
type: import('vue').PropType<boolean>;
|
|
194
|
-
default: undefined;
|
|
195
|
-
};
|
|
196
|
-
disabled: {
|
|
197
|
-
type: import('vue').PropType<boolean>;
|
|
198
|
-
default: undefined;
|
|
199
|
-
};
|
|
200
|
-
size: {
|
|
201
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
202
|
-
};
|
|
203
|
-
circle: {
|
|
204
|
-
type: import('vue').PropType<boolean>;
|
|
205
|
-
};
|
|
206
|
-
color: {
|
|
207
|
-
type: import('vue').PropType<string>;
|
|
208
|
-
};
|
|
209
|
-
nativeType: {
|
|
210
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
211
|
-
default: string;
|
|
212
|
-
};
|
|
213
|
-
loading: {
|
|
214
|
-
type: import('vue').PropType<boolean>;
|
|
215
|
-
};
|
|
216
|
-
loadingIcon: {
|
|
217
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
218
|
-
default: any;
|
|
219
|
-
};
|
|
220
|
-
bg: {
|
|
221
|
-
type: import('vue').PropType<boolean>;
|
|
222
|
-
};
|
|
223
|
-
autofocus: {
|
|
224
|
-
type: import('vue').PropType<boolean>;
|
|
225
|
-
};
|
|
226
|
-
round: {
|
|
227
|
-
type: import('vue').PropType<boolean>;
|
|
228
|
-
default: undefined;
|
|
229
|
-
};
|
|
230
|
-
autoInsertSpace: {
|
|
231
|
-
type: import('vue').PropType<boolean>;
|
|
232
|
-
default: undefined;
|
|
233
|
-
};
|
|
234
|
-
tag: {
|
|
235
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
236
|
-
default: string;
|
|
237
|
-
};
|
|
238
|
-
}>> & {
|
|
102
|
+
tag: string | import('vue').Component;
|
|
103
|
+
}> & Omit<Readonly<ButtonProps> & Readonly<{
|
|
239
104
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
240
|
-
}
|
|
241
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
242
|
-
size: import('vue').ComputedRef<"" | "
|
|
243
|
-
type: import('vue').ComputedRef<"
|
|
105
|
+
}>, "type" | "plain" | "text" | "disabled" | "size" | "ref" | "nativeType" | "loadingIcon" | "round" | "dashed" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
106
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
107
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
108
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
244
109
|
disabled: import('vue').ComputedRef<boolean>;
|
|
245
110
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
246
111
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -262,37 +127,28 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
262
127
|
buttonRef: import('vue').Ref<({
|
|
263
128
|
$: import('vue').ComponentInternalInstance;
|
|
264
129
|
$data: {};
|
|
265
|
-
$props:
|
|
266
|
-
text: boolean;
|
|
267
|
-
disabled: boolean;
|
|
268
|
-
round: boolean;
|
|
269
|
-
type: import('element-plus').ButtonType;
|
|
270
|
-
tag: string | import('vue').Component;
|
|
271
|
-
plain: boolean;
|
|
272
|
-
autoInsertSpace: boolean;
|
|
273
|
-
nativeType: import('element-plus').ButtonNativeType;
|
|
274
|
-
loadingIcon: string | import('vue').Component;
|
|
275
|
-
}> & Omit<{
|
|
276
|
-
readonly type: import('element-plus').ButtonType;
|
|
277
|
-
readonly nativeType: import('element-plus').ButtonNativeType;
|
|
278
|
-
readonly tag: string | import('vue').Component;
|
|
279
|
-
readonly link?: boolean | undefined;
|
|
280
|
-
readonly icon?: (string | import('vue').Component) | undefined;
|
|
281
|
-
readonly plain?: boolean | undefined;
|
|
282
|
-
readonly dark?: boolean | undefined;
|
|
283
|
-
readonly text?: boolean | undefined;
|
|
284
|
-
readonly disabled?: boolean | undefined;
|
|
130
|
+
$props: {
|
|
285
131
|
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
286
|
-
readonly
|
|
287
|
-
readonly
|
|
132
|
+
readonly disabled?: boolean | undefined;
|
|
133
|
+
readonly type?: import('element-plus').ButtonType | undefined;
|
|
134
|
+
readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
135
|
+
readonly nativeType?: import('element-plus').ButtonNativeType | undefined;
|
|
288
136
|
readonly loading?: boolean | undefined;
|
|
289
|
-
readonly loadingIcon?:
|
|
137
|
+
readonly loadingIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
138
|
+
readonly plain?: boolean | undefined;
|
|
139
|
+
readonly text?: boolean | undefined;
|
|
140
|
+
readonly link?: boolean | undefined;
|
|
290
141
|
readonly bg?: boolean | undefined;
|
|
291
142
|
readonly autofocus?: boolean | undefined;
|
|
292
143
|
readonly round?: boolean | undefined;
|
|
144
|
+
readonly circle?: boolean | undefined;
|
|
145
|
+
readonly dashed?: boolean | undefined;
|
|
146
|
+
readonly color?: string | undefined;
|
|
147
|
+
readonly dark?: boolean | undefined;
|
|
293
148
|
readonly autoInsertSpace?: boolean | undefined;
|
|
294
|
-
|
|
295
|
-
|
|
149
|
+
readonly tag?: (string | import('vue').Component) | undefined;
|
|
150
|
+
readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
151
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
296
152
|
$attrs: {
|
|
297
153
|
[x: string]: unknown;
|
|
298
154
|
};
|
|
@@ -307,90 +163,27 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
307
163
|
$host: Element | null;
|
|
308
164
|
$emit: (event: "click", evt: MouseEvent) => void;
|
|
309
165
|
$el: any;
|
|
310
|
-
$options: import('vue').ComponentOptionsBase<Readonly<
|
|
311
|
-
type: {
|
|
312
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
313
|
-
default: string;
|
|
314
|
-
};
|
|
315
|
-
link: {
|
|
316
|
-
type: import('vue').PropType<boolean>;
|
|
317
|
-
};
|
|
318
|
-
icon: {
|
|
319
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
320
|
-
};
|
|
321
|
-
plain: {
|
|
322
|
-
type: import('vue').PropType<boolean>;
|
|
323
|
-
default: undefined;
|
|
324
|
-
};
|
|
325
|
-
dark: {
|
|
326
|
-
type: import('vue').PropType<boolean>;
|
|
327
|
-
};
|
|
328
|
-
text: {
|
|
329
|
-
type: import('vue').PropType<boolean>;
|
|
330
|
-
default: undefined;
|
|
331
|
-
};
|
|
332
|
-
disabled: {
|
|
333
|
-
type: import('vue').PropType<boolean>;
|
|
334
|
-
default: undefined;
|
|
335
|
-
};
|
|
336
|
-
size: {
|
|
337
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
338
|
-
};
|
|
339
|
-
circle: {
|
|
340
|
-
type: import('vue').PropType<boolean>;
|
|
341
|
-
};
|
|
342
|
-
color: {
|
|
343
|
-
type: import('vue').PropType<string>;
|
|
344
|
-
};
|
|
345
|
-
nativeType: {
|
|
346
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
347
|
-
default: string;
|
|
348
|
-
};
|
|
349
|
-
loading: {
|
|
350
|
-
type: import('vue').PropType<boolean>;
|
|
351
|
-
};
|
|
352
|
-
loadingIcon: {
|
|
353
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
354
|
-
default: any;
|
|
355
|
-
};
|
|
356
|
-
bg: {
|
|
357
|
-
type: import('vue').PropType<boolean>;
|
|
358
|
-
};
|
|
359
|
-
autofocus: {
|
|
360
|
-
type: import('vue').PropType<boolean>;
|
|
361
|
-
};
|
|
362
|
-
round: {
|
|
363
|
-
type: import('vue').PropType<boolean>;
|
|
364
|
-
default: undefined;
|
|
365
|
-
};
|
|
366
|
-
autoInsertSpace: {
|
|
367
|
-
type: import('vue').PropType<boolean>;
|
|
368
|
-
default: undefined;
|
|
369
|
-
};
|
|
370
|
-
tag: {
|
|
371
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
372
|
-
default: string;
|
|
373
|
-
};
|
|
374
|
-
}>> & {
|
|
166
|
+
$options: import('vue').ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{
|
|
375
167
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
376
|
-
}
|
|
377
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
378
|
-
size: import('vue').ComputedRef<"" | "
|
|
379
|
-
type: import('vue').ComputedRef<"
|
|
168
|
+
}>, {
|
|
169
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
170
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
171
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
380
172
|
disabled: import('vue').ComputedRef<boolean>;
|
|
381
173
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
382
|
-
},
|
|
174
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
383
175
|
click: (evt: MouseEvent) => void;
|
|
384
176
|
}, string, {
|
|
177
|
+
type: import('element-plus').ButtonType;
|
|
385
178
|
text: boolean;
|
|
386
179
|
disabled: boolean;
|
|
387
180
|
round: boolean;
|
|
388
|
-
|
|
389
|
-
|
|
181
|
+
dashed: boolean;
|
|
182
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
183
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
390
184
|
plain: boolean;
|
|
391
185
|
autoInsertSpace: boolean;
|
|
392
|
-
|
|
393
|
-
loadingIcon: string | import('vue').Component;
|
|
186
|
+
tag: string | import('vue').Component;
|
|
394
187
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
395
188
|
beforeCreate?: (() => void) | (() => void)[];
|
|
396
189
|
created?: (() => void) | (() => void)[];
|
|
@@ -412,85 +205,22 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
412
205
|
$nextTick: typeof import('vue').nextTick;
|
|
413
206
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
414
207
|
} & Readonly<{
|
|
208
|
+
type: import('element-plus').ButtonType;
|
|
415
209
|
text: boolean;
|
|
416
210
|
disabled: boolean;
|
|
417
211
|
round: boolean;
|
|
418
|
-
|
|
419
|
-
|
|
212
|
+
dashed: boolean;
|
|
213
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
214
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
420
215
|
plain: boolean;
|
|
421
216
|
autoInsertSpace: boolean;
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
425
|
-
type: {
|
|
426
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
427
|
-
default: string;
|
|
428
|
-
};
|
|
429
|
-
link: {
|
|
430
|
-
type: import('vue').PropType<boolean>;
|
|
431
|
-
};
|
|
432
|
-
icon: {
|
|
433
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
434
|
-
};
|
|
435
|
-
plain: {
|
|
436
|
-
type: import('vue').PropType<boolean>;
|
|
437
|
-
default: undefined;
|
|
438
|
-
};
|
|
439
|
-
dark: {
|
|
440
|
-
type: import('vue').PropType<boolean>;
|
|
441
|
-
};
|
|
442
|
-
text: {
|
|
443
|
-
type: import('vue').PropType<boolean>;
|
|
444
|
-
default: undefined;
|
|
445
|
-
};
|
|
446
|
-
disabled: {
|
|
447
|
-
type: import('vue').PropType<boolean>;
|
|
448
|
-
default: undefined;
|
|
449
|
-
};
|
|
450
|
-
size: {
|
|
451
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
452
|
-
};
|
|
453
|
-
circle: {
|
|
454
|
-
type: import('vue').PropType<boolean>;
|
|
455
|
-
};
|
|
456
|
-
color: {
|
|
457
|
-
type: import('vue').PropType<string>;
|
|
458
|
-
};
|
|
459
|
-
nativeType: {
|
|
460
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
461
|
-
default: string;
|
|
462
|
-
};
|
|
463
|
-
loading: {
|
|
464
|
-
type: import('vue').PropType<boolean>;
|
|
465
|
-
};
|
|
466
|
-
loadingIcon: {
|
|
467
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
468
|
-
default: any;
|
|
469
|
-
};
|
|
470
|
-
bg: {
|
|
471
|
-
type: import('vue').PropType<boolean>;
|
|
472
|
-
};
|
|
473
|
-
autofocus: {
|
|
474
|
-
type: import('vue').PropType<boolean>;
|
|
475
|
-
};
|
|
476
|
-
round: {
|
|
477
|
-
type: import('vue').PropType<boolean>;
|
|
478
|
-
default: undefined;
|
|
479
|
-
};
|
|
480
|
-
autoInsertSpace: {
|
|
481
|
-
type: import('vue').PropType<boolean>;
|
|
482
|
-
default: undefined;
|
|
483
|
-
};
|
|
484
|
-
tag: {
|
|
485
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
486
|
-
default: string;
|
|
487
|
-
};
|
|
488
|
-
}>> & {
|
|
217
|
+
tag: string | import('vue').Component;
|
|
218
|
+
}> & Omit<Readonly<ButtonProps> & Readonly<{
|
|
489
219
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
490
|
-
}
|
|
491
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
492
|
-
size: import('vue').ComputedRef<"" | "
|
|
493
|
-
type: import('vue').ComputedRef<"
|
|
220
|
+
}>, "type" | "plain" | "text" | "disabled" | "size" | "ref" | "nativeType" | "loadingIcon" | "round" | "dashed" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
221
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
222
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
223
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
494
224
|
disabled: import('vue').ComputedRef<boolean>;
|
|
495
225
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
496
226
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -504,37 +234,28 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
504
234
|
}) | null, ({
|
|
505
235
|
$: import('vue').ComponentInternalInstance;
|
|
506
236
|
$data: {};
|
|
507
|
-
$props:
|
|
508
|
-
text: boolean;
|
|
509
|
-
disabled: boolean;
|
|
510
|
-
round: boolean;
|
|
511
|
-
type: import('element-plus').ButtonType;
|
|
512
|
-
tag: string | import('vue').Component;
|
|
513
|
-
plain: boolean;
|
|
514
|
-
autoInsertSpace: boolean;
|
|
515
|
-
nativeType: import('element-plus').ButtonNativeType;
|
|
516
|
-
loadingIcon: string | import('vue').Component;
|
|
517
|
-
}> & Omit<{
|
|
518
|
-
readonly type: import('element-plus').ButtonType;
|
|
519
|
-
readonly nativeType: import('element-plus').ButtonNativeType;
|
|
520
|
-
readonly tag: string | import('vue').Component;
|
|
521
|
-
readonly link?: boolean | undefined;
|
|
522
|
-
readonly icon?: (string | import('vue').Component) | undefined;
|
|
523
|
-
readonly plain?: boolean | undefined;
|
|
524
|
-
readonly dark?: boolean | undefined;
|
|
525
|
-
readonly text?: boolean | undefined;
|
|
526
|
-
readonly disabled?: boolean | undefined;
|
|
237
|
+
$props: {
|
|
527
238
|
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
528
|
-
readonly
|
|
529
|
-
readonly
|
|
239
|
+
readonly disabled?: boolean | undefined;
|
|
240
|
+
readonly type?: import('element-plus').ButtonType | undefined;
|
|
241
|
+
readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
242
|
+
readonly nativeType?: import('element-plus').ButtonNativeType | undefined;
|
|
530
243
|
readonly loading?: boolean | undefined;
|
|
531
|
-
readonly loadingIcon?:
|
|
244
|
+
readonly loadingIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
245
|
+
readonly plain?: boolean | undefined;
|
|
246
|
+
readonly text?: boolean | undefined;
|
|
247
|
+
readonly link?: boolean | undefined;
|
|
532
248
|
readonly bg?: boolean | undefined;
|
|
533
249
|
readonly autofocus?: boolean | undefined;
|
|
534
250
|
readonly round?: boolean | undefined;
|
|
251
|
+
readonly circle?: boolean | undefined;
|
|
252
|
+
readonly dashed?: boolean | undefined;
|
|
253
|
+
readonly color?: string | undefined;
|
|
254
|
+
readonly dark?: boolean | undefined;
|
|
535
255
|
readonly autoInsertSpace?: boolean | undefined;
|
|
536
|
-
|
|
537
|
-
|
|
256
|
+
readonly tag?: (string | import('vue').Component) | undefined;
|
|
257
|
+
readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
258
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
538
259
|
$attrs: {
|
|
539
260
|
[x: string]: unknown;
|
|
540
261
|
};
|
|
@@ -549,90 +270,27 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
549
270
|
$host: Element | null;
|
|
550
271
|
$emit: (event: "click", evt: MouseEvent) => void;
|
|
551
272
|
$el: any;
|
|
552
|
-
$options: import('vue').ComponentOptionsBase<Readonly<
|
|
553
|
-
type: {
|
|
554
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
555
|
-
default: string;
|
|
556
|
-
};
|
|
557
|
-
link: {
|
|
558
|
-
type: import('vue').PropType<boolean>;
|
|
559
|
-
};
|
|
560
|
-
icon: {
|
|
561
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
562
|
-
};
|
|
563
|
-
plain: {
|
|
564
|
-
type: import('vue').PropType<boolean>;
|
|
565
|
-
default: undefined;
|
|
566
|
-
};
|
|
567
|
-
dark: {
|
|
568
|
-
type: import('vue').PropType<boolean>;
|
|
569
|
-
};
|
|
570
|
-
text: {
|
|
571
|
-
type: import('vue').PropType<boolean>;
|
|
572
|
-
default: undefined;
|
|
573
|
-
};
|
|
574
|
-
disabled: {
|
|
575
|
-
type: import('vue').PropType<boolean>;
|
|
576
|
-
default: undefined;
|
|
577
|
-
};
|
|
578
|
-
size: {
|
|
579
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
580
|
-
};
|
|
581
|
-
circle: {
|
|
582
|
-
type: import('vue').PropType<boolean>;
|
|
583
|
-
};
|
|
584
|
-
color: {
|
|
585
|
-
type: import('vue').PropType<string>;
|
|
586
|
-
};
|
|
587
|
-
nativeType: {
|
|
588
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
589
|
-
default: string;
|
|
590
|
-
};
|
|
591
|
-
loading: {
|
|
592
|
-
type: import('vue').PropType<boolean>;
|
|
593
|
-
};
|
|
594
|
-
loadingIcon: {
|
|
595
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
596
|
-
default: any;
|
|
597
|
-
};
|
|
598
|
-
bg: {
|
|
599
|
-
type: import('vue').PropType<boolean>;
|
|
600
|
-
};
|
|
601
|
-
autofocus: {
|
|
602
|
-
type: import('vue').PropType<boolean>;
|
|
603
|
-
};
|
|
604
|
-
round: {
|
|
605
|
-
type: import('vue').PropType<boolean>;
|
|
606
|
-
default: undefined;
|
|
607
|
-
};
|
|
608
|
-
autoInsertSpace: {
|
|
609
|
-
type: import('vue').PropType<boolean>;
|
|
610
|
-
default: undefined;
|
|
611
|
-
};
|
|
612
|
-
tag: {
|
|
613
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
614
|
-
default: string;
|
|
615
|
-
};
|
|
616
|
-
}>> & {
|
|
273
|
+
$options: import('vue').ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{
|
|
617
274
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
618
|
-
}
|
|
619
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
620
|
-
size: import('vue').ComputedRef<"" | "
|
|
621
|
-
type: import('vue').ComputedRef<"
|
|
275
|
+
}>, {
|
|
276
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
277
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
278
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
622
279
|
disabled: import('vue').ComputedRef<boolean>;
|
|
623
280
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
624
|
-
},
|
|
281
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
625
282
|
click: (evt: MouseEvent) => void;
|
|
626
283
|
}, string, {
|
|
284
|
+
type: import('element-plus').ButtonType;
|
|
627
285
|
text: boolean;
|
|
628
286
|
disabled: boolean;
|
|
629
287
|
round: boolean;
|
|
630
|
-
|
|
631
|
-
|
|
288
|
+
dashed: boolean;
|
|
289
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
290
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
632
291
|
plain: boolean;
|
|
633
292
|
autoInsertSpace: boolean;
|
|
634
|
-
|
|
635
|
-
loadingIcon: string | import('vue').Component;
|
|
293
|
+
tag: string | import('vue').Component;
|
|
636
294
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
637
295
|
beforeCreate?: (() => void) | (() => void)[];
|
|
638
296
|
created?: (() => void) | (() => void)[];
|
|
@@ -654,85 +312,22 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
654
312
|
$nextTick: typeof import('vue').nextTick;
|
|
655
313
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
656
314
|
} & Readonly<{
|
|
315
|
+
type: import('element-plus').ButtonType;
|
|
657
316
|
text: boolean;
|
|
658
317
|
disabled: boolean;
|
|
659
318
|
round: boolean;
|
|
660
|
-
|
|
661
|
-
|
|
319
|
+
dashed: boolean;
|
|
320
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
321
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
662
322
|
plain: boolean;
|
|
663
323
|
autoInsertSpace: boolean;
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
667
|
-
type: {
|
|
668
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
669
|
-
default: string;
|
|
670
|
-
};
|
|
671
|
-
link: {
|
|
672
|
-
type: import('vue').PropType<boolean>;
|
|
673
|
-
};
|
|
674
|
-
icon: {
|
|
675
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
676
|
-
};
|
|
677
|
-
plain: {
|
|
678
|
-
type: import('vue').PropType<boolean>;
|
|
679
|
-
default: undefined;
|
|
680
|
-
};
|
|
681
|
-
dark: {
|
|
682
|
-
type: import('vue').PropType<boolean>;
|
|
683
|
-
};
|
|
684
|
-
text: {
|
|
685
|
-
type: import('vue').PropType<boolean>;
|
|
686
|
-
default: undefined;
|
|
687
|
-
};
|
|
688
|
-
disabled: {
|
|
689
|
-
type: import('vue').PropType<boolean>;
|
|
690
|
-
default: undefined;
|
|
691
|
-
};
|
|
692
|
-
size: {
|
|
693
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
694
|
-
};
|
|
695
|
-
circle: {
|
|
696
|
-
type: import('vue').PropType<boolean>;
|
|
697
|
-
};
|
|
698
|
-
color: {
|
|
699
|
-
type: import('vue').PropType<string>;
|
|
700
|
-
};
|
|
701
|
-
nativeType: {
|
|
702
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
703
|
-
default: string;
|
|
704
|
-
};
|
|
705
|
-
loading: {
|
|
706
|
-
type: import('vue').PropType<boolean>;
|
|
707
|
-
};
|
|
708
|
-
loadingIcon: {
|
|
709
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
710
|
-
default: any;
|
|
711
|
-
};
|
|
712
|
-
bg: {
|
|
713
|
-
type: import('vue').PropType<boolean>;
|
|
714
|
-
};
|
|
715
|
-
autofocus: {
|
|
716
|
-
type: import('vue').PropType<boolean>;
|
|
717
|
-
};
|
|
718
|
-
round: {
|
|
719
|
-
type: import('vue').PropType<boolean>;
|
|
720
|
-
default: undefined;
|
|
721
|
-
};
|
|
722
|
-
autoInsertSpace: {
|
|
723
|
-
type: import('vue').PropType<boolean>;
|
|
724
|
-
default: undefined;
|
|
725
|
-
};
|
|
726
|
-
tag: {
|
|
727
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
728
|
-
default: string;
|
|
729
|
-
};
|
|
730
|
-
}>> & {
|
|
324
|
+
tag: string | import('vue').Component;
|
|
325
|
+
}> & Omit<Readonly<ButtonProps> & Readonly<{
|
|
731
326
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
732
|
-
}
|
|
733
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
734
|
-
size: import('vue').ComputedRef<"" | "
|
|
735
|
-
type: import('vue').ComputedRef<"
|
|
327
|
+
}>, "type" | "plain" | "text" | "disabled" | "size" | "ref" | "nativeType" | "loadingIcon" | "round" | "dashed" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
328
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
329
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
330
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
736
331
|
disabled: import('vue').ComputedRef<boolean>;
|
|
737
332
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
738
333
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -754,37 +349,28 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
754
349
|
buttonRef: ({
|
|
755
350
|
$: import('vue').ComponentInternalInstance;
|
|
756
351
|
$data: {};
|
|
757
|
-
$props:
|
|
758
|
-
text: boolean;
|
|
759
|
-
disabled: boolean;
|
|
760
|
-
round: boolean;
|
|
761
|
-
type: import('element-plus').ButtonType;
|
|
762
|
-
tag: string | import('vue').Component;
|
|
763
|
-
plain: boolean;
|
|
764
|
-
autoInsertSpace: boolean;
|
|
765
|
-
nativeType: import('element-plus').ButtonNativeType;
|
|
766
|
-
loadingIcon: string | import('vue').Component;
|
|
767
|
-
}> & Omit<{
|
|
768
|
-
readonly type: import('element-plus').ButtonType;
|
|
769
|
-
readonly nativeType: import('element-plus').ButtonNativeType;
|
|
770
|
-
readonly tag: string | import('vue').Component;
|
|
771
|
-
readonly link?: boolean | undefined;
|
|
772
|
-
readonly icon?: (string | import('vue').Component) | undefined;
|
|
773
|
-
readonly plain?: boolean | undefined;
|
|
774
|
-
readonly dark?: boolean | undefined;
|
|
775
|
-
readonly text?: boolean | undefined;
|
|
776
|
-
readonly disabled?: boolean | undefined;
|
|
352
|
+
$props: {
|
|
777
353
|
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
778
|
-
readonly
|
|
779
|
-
readonly
|
|
354
|
+
readonly disabled?: boolean | undefined;
|
|
355
|
+
readonly type?: import('element-plus').ButtonType | undefined;
|
|
356
|
+
readonly icon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
357
|
+
readonly nativeType?: import('element-plus').ButtonNativeType | undefined;
|
|
780
358
|
readonly loading?: boolean | undefined;
|
|
781
|
-
readonly loadingIcon?:
|
|
359
|
+
readonly loadingIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
360
|
+
readonly plain?: boolean | undefined;
|
|
361
|
+
readonly text?: boolean | undefined;
|
|
362
|
+
readonly link?: boolean | undefined;
|
|
782
363
|
readonly bg?: boolean | undefined;
|
|
783
364
|
readonly autofocus?: boolean | undefined;
|
|
784
365
|
readonly round?: boolean | undefined;
|
|
366
|
+
readonly circle?: boolean | undefined;
|
|
367
|
+
readonly dashed?: boolean | undefined;
|
|
368
|
+
readonly color?: string | undefined;
|
|
369
|
+
readonly dark?: boolean | undefined;
|
|
785
370
|
readonly autoInsertSpace?: boolean | undefined;
|
|
786
|
-
|
|
787
|
-
|
|
371
|
+
readonly tag?: (string | import('vue').Component) | undefined;
|
|
372
|
+
readonly onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
373
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
788
374
|
$attrs: {
|
|
789
375
|
[x: string]: unknown;
|
|
790
376
|
};
|
|
@@ -799,90 +385,27 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
799
385
|
$host: Element | null;
|
|
800
386
|
$emit: (event: "click", evt: MouseEvent) => void;
|
|
801
387
|
$el: any;
|
|
802
|
-
$options: import('vue').ComponentOptionsBase<Readonly<
|
|
803
|
-
type: {
|
|
804
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
805
|
-
default: string;
|
|
806
|
-
};
|
|
807
|
-
link: {
|
|
808
|
-
type: import('vue').PropType<boolean>;
|
|
809
|
-
};
|
|
810
|
-
icon: {
|
|
811
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
812
|
-
};
|
|
813
|
-
plain: {
|
|
814
|
-
type: import('vue').PropType<boolean>;
|
|
815
|
-
default: undefined;
|
|
816
|
-
};
|
|
817
|
-
dark: {
|
|
818
|
-
type: import('vue').PropType<boolean>;
|
|
819
|
-
};
|
|
820
|
-
text: {
|
|
821
|
-
type: import('vue').PropType<boolean>;
|
|
822
|
-
default: undefined;
|
|
823
|
-
};
|
|
824
|
-
disabled: {
|
|
825
|
-
type: import('vue').PropType<boolean>;
|
|
826
|
-
default: undefined;
|
|
827
|
-
};
|
|
828
|
-
size: {
|
|
829
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
830
|
-
};
|
|
831
|
-
circle: {
|
|
832
|
-
type: import('vue').PropType<boolean>;
|
|
833
|
-
};
|
|
834
|
-
color: {
|
|
835
|
-
type: import('vue').PropType<string>;
|
|
836
|
-
};
|
|
837
|
-
nativeType: {
|
|
838
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
839
|
-
default: string;
|
|
840
|
-
};
|
|
841
|
-
loading: {
|
|
842
|
-
type: import('vue').PropType<boolean>;
|
|
843
|
-
};
|
|
844
|
-
loadingIcon: {
|
|
845
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
846
|
-
default: any;
|
|
847
|
-
};
|
|
848
|
-
bg: {
|
|
849
|
-
type: import('vue').PropType<boolean>;
|
|
850
|
-
};
|
|
851
|
-
autofocus: {
|
|
852
|
-
type: import('vue').PropType<boolean>;
|
|
853
|
-
};
|
|
854
|
-
round: {
|
|
855
|
-
type: import('vue').PropType<boolean>;
|
|
856
|
-
default: undefined;
|
|
857
|
-
};
|
|
858
|
-
autoInsertSpace: {
|
|
859
|
-
type: import('vue').PropType<boolean>;
|
|
860
|
-
default: undefined;
|
|
861
|
-
};
|
|
862
|
-
tag: {
|
|
863
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
864
|
-
default: string;
|
|
865
|
-
};
|
|
866
|
-
}>> & {
|
|
388
|
+
$options: import('vue').ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{
|
|
867
389
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
868
|
-
}
|
|
869
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
870
|
-
size: import('vue').ComputedRef<"" | "
|
|
871
|
-
type: import('vue').ComputedRef<"
|
|
390
|
+
}>, {
|
|
391
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
392
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
393
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
872
394
|
disabled: import('vue').ComputedRef<boolean>;
|
|
873
395
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
874
|
-
},
|
|
396
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
875
397
|
click: (evt: MouseEvent) => void;
|
|
876
398
|
}, string, {
|
|
399
|
+
type: import('element-plus').ButtonType;
|
|
877
400
|
text: boolean;
|
|
878
401
|
disabled: boolean;
|
|
879
402
|
round: boolean;
|
|
880
|
-
|
|
881
|
-
|
|
403
|
+
dashed: boolean;
|
|
404
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
405
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
882
406
|
plain: boolean;
|
|
883
407
|
autoInsertSpace: boolean;
|
|
884
|
-
|
|
885
|
-
loadingIcon: string | import('vue').Component;
|
|
408
|
+
tag: string | import('vue').Component;
|
|
886
409
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
887
410
|
beforeCreate?: (() => void) | (() => void)[];
|
|
888
411
|
created?: (() => void) | (() => void)[];
|
|
@@ -904,85 +427,22 @@ declare const __VLS_component: import('vue').DefineComponent<Partial<ButtonProps
|
|
|
904
427
|
$nextTick: typeof import('vue').nextTick;
|
|
905
428
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
906
429
|
} & Readonly<{
|
|
430
|
+
type: import('element-plus').ButtonType;
|
|
907
431
|
text: boolean;
|
|
908
432
|
disabled: boolean;
|
|
909
433
|
round: boolean;
|
|
910
|
-
|
|
911
|
-
|
|
434
|
+
dashed: boolean;
|
|
435
|
+
nativeType: import('element-plus').ButtonNativeType;
|
|
436
|
+
loadingIcon: import('element-plus/es/utils/index.mjs').IconPropType;
|
|
912
437
|
plain: boolean;
|
|
913
438
|
autoInsertSpace: boolean;
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
917
|
-
type: {
|
|
918
|
-
type: import('vue').PropType<"" | "text" | "info" | "default" | "primary" | "success" | "warning" | "danger">;
|
|
919
|
-
default: string;
|
|
920
|
-
};
|
|
921
|
-
link: {
|
|
922
|
-
type: import('vue').PropType<boolean>;
|
|
923
|
-
};
|
|
924
|
-
icon: {
|
|
925
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
926
|
-
};
|
|
927
|
-
plain: {
|
|
928
|
-
type: import('vue').PropType<boolean>;
|
|
929
|
-
default: undefined;
|
|
930
|
-
};
|
|
931
|
-
dark: {
|
|
932
|
-
type: import('vue').PropType<boolean>;
|
|
933
|
-
};
|
|
934
|
-
text: {
|
|
935
|
-
type: import('vue').PropType<boolean>;
|
|
936
|
-
default: undefined;
|
|
937
|
-
};
|
|
938
|
-
disabled: {
|
|
939
|
-
type: import('vue').PropType<boolean>;
|
|
940
|
-
default: undefined;
|
|
941
|
-
};
|
|
942
|
-
size: {
|
|
943
|
-
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
944
|
-
};
|
|
945
|
-
circle: {
|
|
946
|
-
type: import('vue').PropType<boolean>;
|
|
947
|
-
};
|
|
948
|
-
color: {
|
|
949
|
-
type: import('vue').PropType<string>;
|
|
950
|
-
};
|
|
951
|
-
nativeType: {
|
|
952
|
-
type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
953
|
-
default: string;
|
|
954
|
-
};
|
|
955
|
-
loading: {
|
|
956
|
-
type: import('vue').PropType<boolean>;
|
|
957
|
-
};
|
|
958
|
-
loadingIcon: {
|
|
959
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
960
|
-
default: any;
|
|
961
|
-
};
|
|
962
|
-
bg: {
|
|
963
|
-
type: import('vue').PropType<boolean>;
|
|
964
|
-
};
|
|
965
|
-
autofocus: {
|
|
966
|
-
type: import('vue').PropType<boolean>;
|
|
967
|
-
};
|
|
968
|
-
round: {
|
|
969
|
-
type: import('vue').PropType<boolean>;
|
|
970
|
-
default: undefined;
|
|
971
|
-
};
|
|
972
|
-
autoInsertSpace: {
|
|
973
|
-
type: import('vue').PropType<boolean>;
|
|
974
|
-
default: undefined;
|
|
975
|
-
};
|
|
976
|
-
tag: {
|
|
977
|
-
type: import('vue').PropType<string | import('vue').Component>;
|
|
978
|
-
default: string;
|
|
979
|
-
};
|
|
980
|
-
}>> & {
|
|
439
|
+
tag: string | import('vue').Component;
|
|
440
|
+
}> & Omit<Readonly<ButtonProps> & Readonly<{
|
|
981
441
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
982
|
-
}
|
|
983
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
984
|
-
size: import('vue').ComputedRef<"" | "
|
|
985
|
-
type: import('vue').ComputedRef<"
|
|
442
|
+
}>, "type" | "plain" | "text" | "disabled" | "size" | "ref" | "nativeType" | "loadingIcon" | "round" | "dashed" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
443
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
444
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
445
|
+
type: import('vue').ComputedRef<"default" | "" | "info" | "primary" | "success" | "warning" | "text" | "danger">;
|
|
986
446
|
disabled: import('vue').ComputedRef<boolean>;
|
|
987
447
|
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
988
448
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|