yahee-components 0.0.68 → 0.0.70
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/es/_virtual/_plugin-vue_export-helper.js +9 -0
- package/es/complex-search/complex-search.vue.js +197 -324
- package/es/complex-search/complex-search.vue2.js +182 -2
- package/es/complex-search/index.js +5 -5
- package/package.json +1 -1
- package/types/src/complex-search/complex-search.vue.d.ts +3 -0
- package/types/src/complex-search/index.d.ts +7 -0
- package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +4 -4
- package/types/src/drop-down-condition/index.d.ts +4 -4
- package/types/src/installs.d.ts +2251 -0
- package/types/src/utils/vue-helpers.d.ts +7 -0
- package/es/node_modules/.pnpm/element-plus@2.10.2_vue@3.5.17_typescript@5.8.3_/node_modules/element-plus/es/locale/lang/zh-cn.js +0 -181
|
@@ -0,0 +1,2251 @@
|
|
|
1
|
+
import { SFCWithInstall } from './utils/typescript';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, ShallowRef, ComputedRef, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, CreateComponentPublicInstanceWithMixins, CSSProperties } from 'vue';
|
|
3
|
+
import { InputProps } from './input';
|
|
4
|
+
import { InputAutoSize, ScrollbarDirection, UploadFile, UploadFiles, UploadProgressEvent, UploadUserFile, UploadRequestHandler, UploadRawFile, UploadStatus, TooltipTriggerType, PopperEffect, Placement, Options, ButtonProps, Translator, TooltipInstance } from 'element-plus';
|
|
5
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
6
|
+
import { CopyProps } from './copy';
|
|
7
|
+
import { ImageUploadProps } from './image-upload';
|
|
8
|
+
import { OperationLogProps } from './operation-log';
|
|
9
|
+
import { AnnexUploadProps } from './annex-upload';
|
|
10
|
+
import { Option } from './static/CommonObject';
|
|
11
|
+
import { DropdownEntity } from './drop-down-condition/drop-down-condition';
|
|
12
|
+
import { data } from './country-platform-shop-condition/country-platform-shop-condition';
|
|
13
|
+
declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
14
|
+
focus: () => void;
|
|
15
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (value: string) => any;
|
|
17
|
+
}, string, PublicProps, Readonly< InputProps> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
|
19
|
+
}>, {
|
|
20
|
+
modelValue: string;
|
|
21
|
+
disabled: boolean;
|
|
22
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
23
|
+
inputRef: {
|
|
24
|
+
$: ComponentInternalInstance;
|
|
25
|
+
$data: {};
|
|
26
|
+
$props: Partial<{
|
|
27
|
+
readonly disabled: boolean;
|
|
28
|
+
readonly id: string;
|
|
29
|
+
readonly type: string;
|
|
30
|
+
readonly modelValue: string | number;
|
|
31
|
+
readonly tabindex: string | number;
|
|
32
|
+
readonly readonly: boolean;
|
|
33
|
+
readonly autosize: InputAutoSize;
|
|
34
|
+
readonly autocomplete: string;
|
|
35
|
+
readonly containerRole: string;
|
|
36
|
+
readonly validateEvent: boolean;
|
|
37
|
+
readonly inputStyle: StyleValue;
|
|
38
|
+
readonly rows: number;
|
|
39
|
+
readonly clearable: boolean;
|
|
40
|
+
readonly showPassword: boolean;
|
|
41
|
+
readonly showWordLimit: boolean;
|
|
42
|
+
readonly autofocus: boolean;
|
|
43
|
+
}> & Omit<{
|
|
44
|
+
readonly modelValue: string | number;
|
|
45
|
+
readonly disabled: boolean;
|
|
46
|
+
readonly type: string;
|
|
47
|
+
readonly autosize: false;
|
|
48
|
+
readonly autocomplete: string;
|
|
49
|
+
readonly readonly: boolean;
|
|
50
|
+
readonly clearable: boolean;
|
|
51
|
+
readonly showPassword: boolean;
|
|
52
|
+
readonly showWordLimit: boolean;
|
|
53
|
+
readonly tabindex: string | number;
|
|
54
|
+
readonly validateEvent: boolean;
|
|
55
|
+
readonly inputStyle: StyleValue;
|
|
56
|
+
readonly autofocus: boolean;
|
|
57
|
+
readonly rows: number;
|
|
58
|
+
readonly resize?: "none" | "both" | "horizontal" | "vertical";
|
|
59
|
+
readonly ariaLabel?: string;
|
|
60
|
+
readonly id?: string;
|
|
61
|
+
readonly size?: "" | "default" | "small" | "large";
|
|
62
|
+
readonly maxlength?: string | number;
|
|
63
|
+
readonly minlength?: string | number;
|
|
64
|
+
readonly formatter?: Function;
|
|
65
|
+
readonly parser?: Function;
|
|
66
|
+
readonly placeholder?: string;
|
|
67
|
+
readonly form?: string;
|
|
68
|
+
readonly suffixIcon?: unknown;
|
|
69
|
+
readonly prefixIcon?: unknown;
|
|
70
|
+
readonly containerRole?: string;
|
|
71
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
72
|
+
onChange?: ((value: string) => any) | undefined;
|
|
73
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
74
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
75
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
76
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
77
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
78
|
+
onInput?: ((value: string) => any) | undefined;
|
|
79
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
80
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
81
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
82
|
+
onClear?: (() => any) | undefined;
|
|
83
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "modelValue" | "disabled" | "type" | "id" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "tabindex" | "validateEvent" | "inputStyle" | "autofocus" | "rows">;
|
|
84
|
+
$attrs: {
|
|
85
|
+
[x: string]: unknown;
|
|
86
|
+
};
|
|
87
|
+
$refs: {
|
|
88
|
+
[x: string]: unknown;
|
|
89
|
+
};
|
|
90
|
+
$slots: Readonly<{
|
|
91
|
+
[name: string]: Slot<any>;
|
|
92
|
+
}>;
|
|
93
|
+
$root: ComponentPublicInstance | null;
|
|
94
|
+
$parent: ComponentPublicInstance | null;
|
|
95
|
+
$host: Element | null;
|
|
96
|
+
$emit: ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", value: string) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "clear") => void);
|
|
97
|
+
$el: any;
|
|
98
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
99
|
+
readonly ariaLabel: StringConstructor;
|
|
100
|
+
readonly id: {
|
|
101
|
+
readonly type: PropType<string>;
|
|
102
|
+
readonly required: false;
|
|
103
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
104
|
+
__epPropKey: true;
|
|
105
|
+
} & {
|
|
106
|
+
readonly default: undefined;
|
|
107
|
+
};
|
|
108
|
+
readonly size: {
|
|
109
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
110
|
+
readonly required: false;
|
|
111
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
112
|
+
__epPropKey: true;
|
|
113
|
+
};
|
|
114
|
+
readonly disabled: BooleanConstructor;
|
|
115
|
+
readonly modelValue: {
|
|
116
|
+
readonly type: PropType<string | number>;
|
|
117
|
+
readonly required: false;
|
|
118
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
119
|
+
__epPropKey: true;
|
|
120
|
+
} & {
|
|
121
|
+
readonly default: "";
|
|
122
|
+
};
|
|
123
|
+
readonly maxlength: {
|
|
124
|
+
readonly type: PropType<string | number>;
|
|
125
|
+
readonly required: false;
|
|
126
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
127
|
+
__epPropKey: true;
|
|
128
|
+
};
|
|
129
|
+
readonly minlength: {
|
|
130
|
+
readonly type: PropType<string | number>;
|
|
131
|
+
readonly required: false;
|
|
132
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
133
|
+
__epPropKey: true;
|
|
134
|
+
};
|
|
135
|
+
readonly type: {
|
|
136
|
+
readonly type: PropType<string>;
|
|
137
|
+
readonly required: false;
|
|
138
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
139
|
+
__epPropKey: true;
|
|
140
|
+
} & {
|
|
141
|
+
readonly default: "text";
|
|
142
|
+
};
|
|
143
|
+
readonly resize: {
|
|
144
|
+
readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
145
|
+
readonly required: false;
|
|
146
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
147
|
+
__epPropKey: true;
|
|
148
|
+
};
|
|
149
|
+
readonly autosize: {
|
|
150
|
+
readonly type: PropType<unknown>;
|
|
151
|
+
readonly required: false;
|
|
152
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
153
|
+
__epPropKey: true;
|
|
154
|
+
} & {
|
|
155
|
+
readonly default: false;
|
|
156
|
+
};
|
|
157
|
+
readonly autocomplete: {
|
|
158
|
+
readonly type: PropType<string>;
|
|
159
|
+
readonly required: false;
|
|
160
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
161
|
+
__epPropKey: true;
|
|
162
|
+
} & {
|
|
163
|
+
readonly default: "off";
|
|
164
|
+
};
|
|
165
|
+
readonly formatter: {
|
|
166
|
+
readonly type: PropType<Function>;
|
|
167
|
+
readonly required: false;
|
|
168
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
169
|
+
__epPropKey: true;
|
|
170
|
+
};
|
|
171
|
+
readonly parser: {
|
|
172
|
+
readonly type: PropType<Function>;
|
|
173
|
+
readonly required: false;
|
|
174
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
175
|
+
__epPropKey: true;
|
|
176
|
+
};
|
|
177
|
+
readonly placeholder: {
|
|
178
|
+
readonly type: PropType<string>;
|
|
179
|
+
readonly required: false;
|
|
180
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
181
|
+
__epPropKey: true;
|
|
182
|
+
};
|
|
183
|
+
readonly form: {
|
|
184
|
+
readonly type: PropType<string>;
|
|
185
|
+
readonly required: false;
|
|
186
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
187
|
+
__epPropKey: true;
|
|
188
|
+
};
|
|
189
|
+
readonly readonly: BooleanConstructor;
|
|
190
|
+
readonly clearable: BooleanConstructor;
|
|
191
|
+
readonly showPassword: BooleanConstructor;
|
|
192
|
+
readonly showWordLimit: BooleanConstructor;
|
|
193
|
+
readonly suffixIcon: {
|
|
194
|
+
readonly type: PropType<unknown>;
|
|
195
|
+
readonly required: false;
|
|
196
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
197
|
+
__epPropKey: true;
|
|
198
|
+
};
|
|
199
|
+
readonly prefixIcon: {
|
|
200
|
+
readonly type: PropType<unknown>;
|
|
201
|
+
readonly required: false;
|
|
202
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
203
|
+
__epPropKey: true;
|
|
204
|
+
};
|
|
205
|
+
readonly containerRole: {
|
|
206
|
+
readonly type: PropType<string>;
|
|
207
|
+
readonly required: false;
|
|
208
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
209
|
+
__epPropKey: true;
|
|
210
|
+
} & {
|
|
211
|
+
readonly default: undefined;
|
|
212
|
+
};
|
|
213
|
+
readonly tabindex: {
|
|
214
|
+
readonly type: PropType<string | number>;
|
|
215
|
+
readonly required: false;
|
|
216
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
217
|
+
__epPropKey: true;
|
|
218
|
+
} & {
|
|
219
|
+
readonly default: 0;
|
|
220
|
+
};
|
|
221
|
+
readonly validateEvent: {
|
|
222
|
+
readonly type: PropType<boolean>;
|
|
223
|
+
readonly required: false;
|
|
224
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
225
|
+
__epPropKey: true;
|
|
226
|
+
} & {
|
|
227
|
+
readonly default: true;
|
|
228
|
+
};
|
|
229
|
+
readonly inputStyle: {
|
|
230
|
+
readonly type: PropType<StyleValue>;
|
|
231
|
+
readonly required: false;
|
|
232
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
233
|
+
__epPropKey: true;
|
|
234
|
+
} & {
|
|
235
|
+
readonly default: () => {};
|
|
236
|
+
};
|
|
237
|
+
readonly autofocus: BooleanConstructor;
|
|
238
|
+
readonly rows: {
|
|
239
|
+
readonly type: PropType<number>;
|
|
240
|
+
readonly required: false;
|
|
241
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
242
|
+
__epPropKey: true;
|
|
243
|
+
} & {
|
|
244
|
+
readonly default: 2;
|
|
245
|
+
};
|
|
246
|
+
}>> & {
|
|
247
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
248
|
+
onChange?: ((value: string) => any) | undefined;
|
|
249
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
250
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
251
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
252
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
253
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
254
|
+
onInput?: ((value: string) => any) | undefined;
|
|
255
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
256
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
257
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
258
|
+
onClear?: (() => any) | undefined;
|
|
259
|
+
}, {
|
|
260
|
+
input: ShallowRef<HTMLInputElement | undefined>;
|
|
261
|
+
textarea: ShallowRef<HTMLTextAreaElement | undefined>;
|
|
262
|
+
ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
263
|
+
textareaStyle: ComputedRef<StyleValue>;
|
|
264
|
+
autosize: Ref<InputAutoSize>;
|
|
265
|
+
isComposing: Ref<boolean>;
|
|
266
|
+
focus: () => void | undefined;
|
|
267
|
+
blur: () => void | undefined;
|
|
268
|
+
select: () => void;
|
|
269
|
+
clear: () => void;
|
|
270
|
+
resizeTextarea: () => void;
|
|
271
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
272
|
+
input: (value: string) => void;
|
|
273
|
+
clear: () => void;
|
|
274
|
+
"update:modelValue": (value: string) => void;
|
|
275
|
+
change: (value: string) => void;
|
|
276
|
+
blur: (evt: FocusEvent) => void;
|
|
277
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
278
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
279
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
280
|
+
focus: (evt: FocusEvent) => void;
|
|
281
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
282
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
283
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
284
|
+
}, string, {
|
|
285
|
+
readonly disabled: boolean;
|
|
286
|
+
readonly id: string;
|
|
287
|
+
readonly type: string;
|
|
288
|
+
readonly modelValue: string | number;
|
|
289
|
+
readonly tabindex: string | number;
|
|
290
|
+
readonly readonly: boolean;
|
|
291
|
+
readonly autosize: InputAutoSize;
|
|
292
|
+
readonly autocomplete: string;
|
|
293
|
+
readonly containerRole: string;
|
|
294
|
+
readonly validateEvent: boolean;
|
|
295
|
+
readonly inputStyle: StyleValue;
|
|
296
|
+
readonly rows: number;
|
|
297
|
+
readonly clearable: boolean;
|
|
298
|
+
readonly showPassword: boolean;
|
|
299
|
+
readonly showWordLimit: boolean;
|
|
300
|
+
readonly autofocus: boolean;
|
|
301
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
302
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
303
|
+
created?: (() => void) | (() => void)[];
|
|
304
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
305
|
+
mounted?: (() => void) | (() => void)[];
|
|
306
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
307
|
+
updated?: (() => void) | (() => void)[];
|
|
308
|
+
activated?: (() => void) | (() => void)[];
|
|
309
|
+
deactivated?: (() => void) | (() => void)[];
|
|
310
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
311
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
312
|
+
destroyed?: (() => void) | (() => void)[];
|
|
313
|
+
unmounted?: (() => void) | (() => void)[];
|
|
314
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
315
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
316
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
317
|
+
};
|
|
318
|
+
$forceUpdate: () => void;
|
|
319
|
+
$nextTick: nextTick;
|
|
320
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
321
|
+
} & Readonly<{
|
|
322
|
+
readonly disabled: boolean;
|
|
323
|
+
readonly id: string;
|
|
324
|
+
readonly type: string;
|
|
325
|
+
readonly modelValue: string | number;
|
|
326
|
+
readonly tabindex: string | number;
|
|
327
|
+
readonly readonly: boolean;
|
|
328
|
+
readonly autosize: InputAutoSize;
|
|
329
|
+
readonly autocomplete: string;
|
|
330
|
+
readonly containerRole: string;
|
|
331
|
+
readonly validateEvent: boolean;
|
|
332
|
+
readonly inputStyle: StyleValue;
|
|
333
|
+
readonly rows: number;
|
|
334
|
+
readonly clearable: boolean;
|
|
335
|
+
readonly showPassword: boolean;
|
|
336
|
+
readonly showWordLimit: boolean;
|
|
337
|
+
readonly autofocus: boolean;
|
|
338
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
|
339
|
+
readonly ariaLabel: StringConstructor;
|
|
340
|
+
readonly id: {
|
|
341
|
+
readonly type: PropType<string>;
|
|
342
|
+
readonly required: false;
|
|
343
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
344
|
+
__epPropKey: true;
|
|
345
|
+
} & {
|
|
346
|
+
readonly default: undefined;
|
|
347
|
+
};
|
|
348
|
+
readonly size: {
|
|
349
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
350
|
+
readonly required: false;
|
|
351
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
352
|
+
__epPropKey: true;
|
|
353
|
+
};
|
|
354
|
+
readonly disabled: BooleanConstructor;
|
|
355
|
+
readonly modelValue: {
|
|
356
|
+
readonly type: PropType<string | number>;
|
|
357
|
+
readonly required: false;
|
|
358
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
359
|
+
__epPropKey: true;
|
|
360
|
+
} & {
|
|
361
|
+
readonly default: "";
|
|
362
|
+
};
|
|
363
|
+
readonly maxlength: {
|
|
364
|
+
readonly type: PropType<string | number>;
|
|
365
|
+
readonly required: false;
|
|
366
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
367
|
+
__epPropKey: true;
|
|
368
|
+
};
|
|
369
|
+
readonly minlength: {
|
|
370
|
+
readonly type: PropType<string | number>;
|
|
371
|
+
readonly required: false;
|
|
372
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
373
|
+
__epPropKey: true;
|
|
374
|
+
};
|
|
375
|
+
readonly type: {
|
|
376
|
+
readonly type: PropType<string>;
|
|
377
|
+
readonly required: false;
|
|
378
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
379
|
+
__epPropKey: true;
|
|
380
|
+
} & {
|
|
381
|
+
readonly default: "text";
|
|
382
|
+
};
|
|
383
|
+
readonly resize: {
|
|
384
|
+
readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
385
|
+
readonly required: false;
|
|
386
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
387
|
+
__epPropKey: true;
|
|
388
|
+
};
|
|
389
|
+
readonly autosize: {
|
|
390
|
+
readonly type: PropType<unknown>;
|
|
391
|
+
readonly required: false;
|
|
392
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
393
|
+
__epPropKey: true;
|
|
394
|
+
} & {
|
|
395
|
+
readonly default: false;
|
|
396
|
+
};
|
|
397
|
+
readonly autocomplete: {
|
|
398
|
+
readonly type: PropType<string>;
|
|
399
|
+
readonly required: false;
|
|
400
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
401
|
+
__epPropKey: true;
|
|
402
|
+
} & {
|
|
403
|
+
readonly default: "off";
|
|
404
|
+
};
|
|
405
|
+
readonly formatter: {
|
|
406
|
+
readonly type: PropType<Function>;
|
|
407
|
+
readonly required: false;
|
|
408
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
409
|
+
__epPropKey: true;
|
|
410
|
+
};
|
|
411
|
+
readonly parser: {
|
|
412
|
+
readonly type: PropType<Function>;
|
|
413
|
+
readonly required: false;
|
|
414
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
415
|
+
__epPropKey: true;
|
|
416
|
+
};
|
|
417
|
+
readonly placeholder: {
|
|
418
|
+
readonly type: PropType<string>;
|
|
419
|
+
readonly required: false;
|
|
420
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
421
|
+
__epPropKey: true;
|
|
422
|
+
};
|
|
423
|
+
readonly form: {
|
|
424
|
+
readonly type: PropType<string>;
|
|
425
|
+
readonly required: false;
|
|
426
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
427
|
+
__epPropKey: true;
|
|
428
|
+
};
|
|
429
|
+
readonly readonly: BooleanConstructor;
|
|
430
|
+
readonly clearable: BooleanConstructor;
|
|
431
|
+
readonly showPassword: BooleanConstructor;
|
|
432
|
+
readonly showWordLimit: BooleanConstructor;
|
|
433
|
+
readonly suffixIcon: {
|
|
434
|
+
readonly type: PropType<unknown>;
|
|
435
|
+
readonly required: false;
|
|
436
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
437
|
+
__epPropKey: true;
|
|
438
|
+
};
|
|
439
|
+
readonly prefixIcon: {
|
|
440
|
+
readonly type: PropType<unknown>;
|
|
441
|
+
readonly required: false;
|
|
442
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
443
|
+
__epPropKey: true;
|
|
444
|
+
};
|
|
445
|
+
readonly containerRole: {
|
|
446
|
+
readonly type: PropType<string>;
|
|
447
|
+
readonly required: false;
|
|
448
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
449
|
+
__epPropKey: true;
|
|
450
|
+
} & {
|
|
451
|
+
readonly default: undefined;
|
|
452
|
+
};
|
|
453
|
+
readonly tabindex: {
|
|
454
|
+
readonly type: PropType<string | number>;
|
|
455
|
+
readonly required: false;
|
|
456
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
457
|
+
__epPropKey: true;
|
|
458
|
+
} & {
|
|
459
|
+
readonly default: 0;
|
|
460
|
+
};
|
|
461
|
+
readonly validateEvent: {
|
|
462
|
+
readonly type: PropType<boolean>;
|
|
463
|
+
readonly required: false;
|
|
464
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
465
|
+
__epPropKey: true;
|
|
466
|
+
} & {
|
|
467
|
+
readonly default: true;
|
|
468
|
+
};
|
|
469
|
+
readonly inputStyle: {
|
|
470
|
+
readonly type: PropType<StyleValue>;
|
|
471
|
+
readonly required: false;
|
|
472
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
473
|
+
__epPropKey: true;
|
|
474
|
+
} & {
|
|
475
|
+
readonly default: () => {};
|
|
476
|
+
};
|
|
477
|
+
readonly autofocus: BooleanConstructor;
|
|
478
|
+
readonly rows: {
|
|
479
|
+
readonly type: PropType<number>;
|
|
480
|
+
readonly required: false;
|
|
481
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
482
|
+
__epPropKey: true;
|
|
483
|
+
} & {
|
|
484
|
+
readonly default: 2;
|
|
485
|
+
};
|
|
486
|
+
}>> & {
|
|
487
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
488
|
+
onChange?: ((value: string) => any) | undefined;
|
|
489
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
490
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
491
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
492
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
493
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
494
|
+
onInput?: ((value: string) => any) | undefined;
|
|
495
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
496
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
497
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
498
|
+
onClear?: (() => any) | undefined;
|
|
499
|
+
}, "blur" | "focus" | "input" | "select" | "modelValue" | "disabled" | "type" | "id" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "tabindex" | "validateEvent" | "inputStyle" | "autofocus" | "rows" | "clear" | "textarea" | "ref" | "textareaStyle" | "isComposing" | "resizeTextarea"> & ShallowUnwrapRef<{
|
|
500
|
+
input: ShallowRef<HTMLInputElement | undefined>;
|
|
501
|
+
textarea: ShallowRef<HTMLTextAreaElement | undefined>;
|
|
502
|
+
ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
503
|
+
textareaStyle: ComputedRef<StyleValue>;
|
|
504
|
+
autosize: Ref<InputAutoSize>;
|
|
505
|
+
isComposing: Ref<boolean>;
|
|
506
|
+
focus: () => void | undefined;
|
|
507
|
+
blur: () => void | undefined;
|
|
508
|
+
select: () => void;
|
|
509
|
+
clear: () => void;
|
|
510
|
+
resizeTextarea: () => void;
|
|
511
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
512
|
+
$slots: {
|
|
513
|
+
prepend?(_: {}): any;
|
|
514
|
+
prefix?(_: {}): any;
|
|
515
|
+
suffix?(_: {}): any;
|
|
516
|
+
append?(_: {}): any;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
}, HTMLDivElement>> & Record<string, any>) | ( SFCWithInstall<DefineComponent> & Record<string, any>) | ( SFCWithInstall<{
|
|
520
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< CopyProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
521
|
+
message: string;
|
|
522
|
+
content: string;
|
|
523
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
524
|
+
P: {};
|
|
525
|
+
B: {};
|
|
526
|
+
D: {};
|
|
527
|
+
C: {};
|
|
528
|
+
M: {};
|
|
529
|
+
Defaults: {};
|
|
530
|
+
}, Readonly< CopyProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
531
|
+
message: string;
|
|
532
|
+
content: string;
|
|
533
|
+
}>;
|
|
534
|
+
__isFragment?: never;
|
|
535
|
+
__isTeleport?: never;
|
|
536
|
+
__isSuspense?: never;
|
|
537
|
+
} & ComponentOptionsBase<Readonly< CopyProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
538
|
+
message: string;
|
|
539
|
+
content: string;
|
|
540
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
541
|
+
$slots: {
|
|
542
|
+
default?(_: {}): any;
|
|
543
|
+
};
|
|
544
|
+
})> & Record<string, any>) | ( SFCWithInstall<{
|
|
545
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ImageUploadProps> & Readonly<{
|
|
546
|
+
onChange?: (...args: any[]) => any;
|
|
547
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
548
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
549
|
+
change: (...args: any[]) => void;
|
|
550
|
+
"update:modelValue": (...args: any[]) => void;
|
|
551
|
+
}, PublicProps, {
|
|
552
|
+
modelValue: {
|
|
553
|
+
index: number;
|
|
554
|
+
fileId: string;
|
|
555
|
+
fileName: string;
|
|
556
|
+
};
|
|
557
|
+
fileType: string;
|
|
558
|
+
showDelete: boolean;
|
|
559
|
+
zoom: number;
|
|
560
|
+
imgSize: {
|
|
561
|
+
width: number;
|
|
562
|
+
height: number;
|
|
563
|
+
};
|
|
564
|
+
limitImgSize: boolean;
|
|
565
|
+
limitFileSize: boolean;
|
|
566
|
+
fileSize: number;
|
|
567
|
+
fileSizeUnit: "kb" | "KB" | "mb" | "MB";
|
|
568
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
569
|
+
P: {};
|
|
570
|
+
B: {};
|
|
571
|
+
D: {};
|
|
572
|
+
C: {};
|
|
573
|
+
M: {};
|
|
574
|
+
Defaults: {};
|
|
575
|
+
}, Readonly< ImageUploadProps> & Readonly<{
|
|
576
|
+
onChange?: (...args: any[]) => any;
|
|
577
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
578
|
+
}>, {}, {}, {}, {}, {
|
|
579
|
+
modelValue: {
|
|
580
|
+
index: number;
|
|
581
|
+
fileId: string;
|
|
582
|
+
fileName: string;
|
|
583
|
+
};
|
|
584
|
+
fileType: string;
|
|
585
|
+
showDelete: boolean;
|
|
586
|
+
zoom: number;
|
|
587
|
+
imgSize: {
|
|
588
|
+
width: number;
|
|
589
|
+
height: number;
|
|
590
|
+
};
|
|
591
|
+
limitImgSize: boolean;
|
|
592
|
+
limitFileSize: boolean;
|
|
593
|
+
fileSize: number;
|
|
594
|
+
fileSizeUnit: "kb" | "KB" | "mb" | "MB";
|
|
595
|
+
}>;
|
|
596
|
+
__isFragment?: never;
|
|
597
|
+
__isTeleport?: never;
|
|
598
|
+
__isSuspense?: never;
|
|
599
|
+
} & ComponentOptionsBase<Readonly< ImageUploadProps> & Readonly<{
|
|
600
|
+
onChange?: (...args: any[]) => any;
|
|
601
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
602
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
603
|
+
change: (...args: any[]) => void;
|
|
604
|
+
"update:modelValue": (...args: any[]) => void;
|
|
605
|
+
}, string, {
|
|
606
|
+
modelValue: {
|
|
607
|
+
index: number;
|
|
608
|
+
fileId: string;
|
|
609
|
+
fileName: string;
|
|
610
|
+
};
|
|
611
|
+
fileType: string;
|
|
612
|
+
showDelete: boolean;
|
|
613
|
+
zoom: number;
|
|
614
|
+
imgSize: {
|
|
615
|
+
width: number;
|
|
616
|
+
height: number;
|
|
617
|
+
};
|
|
618
|
+
limitImgSize: boolean;
|
|
619
|
+
limitFileSize: boolean;
|
|
620
|
+
fileSize: number;
|
|
621
|
+
fileSizeUnit: "kb" | "KB" | "mb" | "MB";
|
|
622
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
623
|
+
$slots: {
|
|
624
|
+
default?(_: {
|
|
625
|
+
value: string;
|
|
626
|
+
}): any;
|
|
627
|
+
};
|
|
628
|
+
})> & Record<string, any>) | ( SFCWithInstall<DefineComponent<OperationLogProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< OperationLogProps> & Readonly<{}>, {
|
|
629
|
+
businessKey: string;
|
|
630
|
+
businessName: string;
|
|
631
|
+
ifShowDocument: boolean;
|
|
632
|
+
topHeight: number;
|
|
633
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
634
|
+
logForm: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
635
|
+
businessKey: {
|
|
636
|
+
type: StringConstructor;
|
|
637
|
+
default: string;
|
|
638
|
+
};
|
|
639
|
+
businessName: {
|
|
640
|
+
type: StringConstructor;
|
|
641
|
+
default: string;
|
|
642
|
+
};
|
|
643
|
+
}>> & Readonly<{
|
|
644
|
+
onFilterChange?: (...args: any[]) => any;
|
|
645
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
646
|
+
filterChange: (...args: any[]) => void;
|
|
647
|
+
}, PublicProps, {
|
|
648
|
+
businessKey: string;
|
|
649
|
+
businessName: string;
|
|
650
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
651
|
+
P: {};
|
|
652
|
+
B: {};
|
|
653
|
+
D: {};
|
|
654
|
+
C: {};
|
|
655
|
+
M: {};
|
|
656
|
+
Defaults: {};
|
|
657
|
+
}, Readonly< ExtractPropTypes<{
|
|
658
|
+
businessKey: {
|
|
659
|
+
type: StringConstructor;
|
|
660
|
+
default: string;
|
|
661
|
+
};
|
|
662
|
+
businessName: {
|
|
663
|
+
type: StringConstructor;
|
|
664
|
+
default: string;
|
|
665
|
+
};
|
|
666
|
+
}>> & Readonly<{
|
|
667
|
+
onFilterChange?: (...args: any[]) => any;
|
|
668
|
+
}>, {}, {}, {}, {}, {
|
|
669
|
+
businessKey: string;
|
|
670
|
+
businessName: string;
|
|
671
|
+
}>;
|
|
672
|
+
infiniteList: {
|
|
673
|
+
$: ComponentInternalInstance;
|
|
674
|
+
$data: {};
|
|
675
|
+
$props: Partial<{
|
|
676
|
+
readonly height: string | number;
|
|
677
|
+
readonly maxHeight: string | number;
|
|
678
|
+
readonly always: boolean;
|
|
679
|
+
readonly tabindex: string | number;
|
|
680
|
+
readonly minSize: number;
|
|
681
|
+
readonly native: boolean;
|
|
682
|
+
readonly wrapStyle: StyleValue;
|
|
683
|
+
readonly wrapClass: string | unknown[];
|
|
684
|
+
readonly viewClass: string | unknown[];
|
|
685
|
+
readonly viewStyle: string | unknown[] | Record<string, any>;
|
|
686
|
+
readonly tag: string;
|
|
687
|
+
readonly noresize: boolean;
|
|
688
|
+
}> & Omit<{
|
|
689
|
+
readonly tag: string;
|
|
690
|
+
readonly always: boolean;
|
|
691
|
+
readonly height: string | number;
|
|
692
|
+
readonly maxHeight: string | number;
|
|
693
|
+
readonly native: boolean;
|
|
694
|
+
readonly wrapStyle: StyleValue;
|
|
695
|
+
readonly wrapClass: string | unknown[];
|
|
696
|
+
readonly viewClass: string | unknown[];
|
|
697
|
+
readonly viewStyle: string | unknown[] | Record<string, any>;
|
|
698
|
+
readonly noresize: boolean;
|
|
699
|
+
readonly minSize: number;
|
|
700
|
+
readonly ariaLabel?: string;
|
|
701
|
+
readonly id?: string;
|
|
702
|
+
readonly tabindex?: string | number;
|
|
703
|
+
readonly role?: string;
|
|
704
|
+
readonly ariaOrientation?: string;
|
|
705
|
+
onScroll?: ((args_0: {
|
|
706
|
+
scrollTop: number;
|
|
707
|
+
scrollLeft: number;
|
|
708
|
+
}) => any) | undefined;
|
|
709
|
+
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
710
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "tabindex" | "tag" | "always" | "height" | "maxHeight" | "native" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "noresize" | "minSize">;
|
|
711
|
+
$attrs: {
|
|
712
|
+
[x: string]: unknown;
|
|
713
|
+
};
|
|
714
|
+
$refs: {
|
|
715
|
+
[x: string]: unknown;
|
|
716
|
+
};
|
|
717
|
+
$slots: Readonly<{
|
|
718
|
+
[name: string]: Slot<any>;
|
|
719
|
+
}>;
|
|
720
|
+
$root: ComponentPublicInstance | null;
|
|
721
|
+
$parent: ComponentPublicInstance | null;
|
|
722
|
+
$host: Element | null;
|
|
723
|
+
$emit: ((event: "scroll", args_0: {
|
|
724
|
+
scrollTop: number;
|
|
725
|
+
scrollLeft: number;
|
|
726
|
+
}) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
|
|
727
|
+
$el: any;
|
|
728
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
729
|
+
readonly ariaLabel: StringConstructor;
|
|
730
|
+
readonly ariaOrientation: {
|
|
731
|
+
readonly type: PropType<string>;
|
|
732
|
+
readonly required: false;
|
|
733
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
|
+
__epPropKey: true;
|
|
735
|
+
};
|
|
736
|
+
readonly height: {
|
|
737
|
+
readonly type: PropType<string | number>;
|
|
738
|
+
readonly required: false;
|
|
739
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
740
|
+
__epPropKey: true;
|
|
741
|
+
} & {
|
|
742
|
+
readonly default: "";
|
|
743
|
+
};
|
|
744
|
+
readonly maxHeight: {
|
|
745
|
+
readonly type: PropType<string | number>;
|
|
746
|
+
readonly required: false;
|
|
747
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
748
|
+
__epPropKey: true;
|
|
749
|
+
} & {
|
|
750
|
+
readonly default: "";
|
|
751
|
+
};
|
|
752
|
+
readonly native: {
|
|
753
|
+
readonly type: PropType<boolean>;
|
|
754
|
+
readonly required: false;
|
|
755
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
756
|
+
__epPropKey: true;
|
|
757
|
+
} & {
|
|
758
|
+
readonly default: false;
|
|
759
|
+
};
|
|
760
|
+
readonly wrapStyle: {
|
|
761
|
+
readonly type: PropType<StyleValue>;
|
|
762
|
+
readonly required: false;
|
|
763
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
764
|
+
__epPropKey: true;
|
|
765
|
+
} & {
|
|
766
|
+
readonly default: "";
|
|
767
|
+
};
|
|
768
|
+
readonly wrapClass: {
|
|
769
|
+
readonly type: PropType<string | unknown[]>;
|
|
770
|
+
readonly required: false;
|
|
771
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
772
|
+
__epPropKey: true;
|
|
773
|
+
} & {
|
|
774
|
+
readonly default: "";
|
|
775
|
+
};
|
|
776
|
+
readonly viewClass: {
|
|
777
|
+
readonly type: PropType<string | unknown[]>;
|
|
778
|
+
readonly required: false;
|
|
779
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
780
|
+
__epPropKey: true;
|
|
781
|
+
} & {
|
|
782
|
+
readonly default: "";
|
|
783
|
+
};
|
|
784
|
+
readonly viewStyle: {
|
|
785
|
+
readonly type: PropType<string | unknown[] | Record<string, any>>;
|
|
786
|
+
readonly required: false;
|
|
787
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
788
|
+
__epPropKey: true;
|
|
789
|
+
} & {
|
|
790
|
+
readonly default: "";
|
|
791
|
+
};
|
|
792
|
+
readonly noresize: BooleanConstructor;
|
|
793
|
+
readonly tag: {
|
|
794
|
+
readonly type: PropType<string>;
|
|
795
|
+
readonly required: false;
|
|
796
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
797
|
+
__epPropKey: true;
|
|
798
|
+
} & {
|
|
799
|
+
readonly default: "div";
|
|
800
|
+
};
|
|
801
|
+
readonly always: BooleanConstructor;
|
|
802
|
+
readonly minSize: {
|
|
803
|
+
readonly type: PropType<number>;
|
|
804
|
+
readonly required: false;
|
|
805
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
806
|
+
__epPropKey: true;
|
|
807
|
+
} & {
|
|
808
|
+
readonly default: 20;
|
|
809
|
+
};
|
|
810
|
+
readonly tabindex: {
|
|
811
|
+
readonly type: PropType<string | number>;
|
|
812
|
+
readonly required: false;
|
|
813
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
814
|
+
__epPropKey: true;
|
|
815
|
+
} & {
|
|
816
|
+
readonly default: undefined;
|
|
817
|
+
};
|
|
818
|
+
readonly id: StringConstructor;
|
|
819
|
+
readonly role: StringConstructor;
|
|
820
|
+
}>> & {
|
|
821
|
+
onScroll?: ((args_0: {
|
|
822
|
+
scrollTop: number;
|
|
823
|
+
scrollLeft: number;
|
|
824
|
+
}) => any) | undefined;
|
|
825
|
+
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
826
|
+
}, {
|
|
827
|
+
wrapRef: Ref<HTMLDivElement | undefined>;
|
|
828
|
+
update: () => void;
|
|
829
|
+
scrollTo: {
|
|
830
|
+
(xCord: number, yCord?: number): void;
|
|
831
|
+
(options: ScrollToOptions): void;
|
|
832
|
+
};
|
|
833
|
+
setScrollTop: (value: number) => void;
|
|
834
|
+
setScrollLeft: (value: number) => void;
|
|
835
|
+
handleScroll: () => void;
|
|
836
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
837
|
+
scroll: (args_0: {
|
|
838
|
+
scrollTop: number;
|
|
839
|
+
scrollLeft: number;
|
|
840
|
+
}) => void;
|
|
841
|
+
"end-reached": (direction: ScrollbarDirection) => void;
|
|
842
|
+
}, string, {
|
|
843
|
+
readonly height: string | number;
|
|
844
|
+
readonly maxHeight: string | number;
|
|
845
|
+
readonly always: boolean;
|
|
846
|
+
readonly tabindex: string | number;
|
|
847
|
+
readonly minSize: number;
|
|
848
|
+
readonly native: boolean;
|
|
849
|
+
readonly wrapStyle: StyleValue;
|
|
850
|
+
readonly wrapClass: string | unknown[];
|
|
851
|
+
readonly viewClass: string | unknown[];
|
|
852
|
+
readonly viewStyle: string | unknown[] | Record<string, any>;
|
|
853
|
+
readonly tag: string;
|
|
854
|
+
readonly noresize: boolean;
|
|
855
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
856
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
857
|
+
created?: (() => void) | (() => void)[];
|
|
858
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
859
|
+
mounted?: (() => void) | (() => void)[];
|
|
860
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
861
|
+
updated?: (() => void) | (() => void)[];
|
|
862
|
+
activated?: (() => void) | (() => void)[];
|
|
863
|
+
deactivated?: (() => void) | (() => void)[];
|
|
864
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
865
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
866
|
+
destroyed?: (() => void) | (() => void)[];
|
|
867
|
+
unmounted?: (() => void) | (() => void)[];
|
|
868
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
869
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
870
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
871
|
+
};
|
|
872
|
+
$forceUpdate: () => void;
|
|
873
|
+
$nextTick: nextTick;
|
|
874
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
875
|
+
} & Readonly<{
|
|
876
|
+
readonly height: string | number;
|
|
877
|
+
readonly maxHeight: string | number;
|
|
878
|
+
readonly always: boolean;
|
|
879
|
+
readonly tabindex: string | number;
|
|
880
|
+
readonly minSize: number;
|
|
881
|
+
readonly native: boolean;
|
|
882
|
+
readonly wrapStyle: StyleValue;
|
|
883
|
+
readonly wrapClass: string | unknown[];
|
|
884
|
+
readonly viewClass: string | unknown[];
|
|
885
|
+
readonly viewStyle: string | unknown[] | Record<string, any>;
|
|
886
|
+
readonly tag: string;
|
|
887
|
+
readonly noresize: boolean;
|
|
888
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
|
889
|
+
readonly ariaLabel: StringConstructor;
|
|
890
|
+
readonly ariaOrientation: {
|
|
891
|
+
readonly type: PropType<string>;
|
|
892
|
+
readonly required: false;
|
|
893
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
894
|
+
__epPropKey: true;
|
|
895
|
+
};
|
|
896
|
+
readonly height: {
|
|
897
|
+
readonly type: PropType<string | number>;
|
|
898
|
+
readonly required: false;
|
|
899
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
900
|
+
__epPropKey: true;
|
|
901
|
+
} & {
|
|
902
|
+
readonly default: "";
|
|
903
|
+
};
|
|
904
|
+
readonly maxHeight: {
|
|
905
|
+
readonly type: PropType<string | number>;
|
|
906
|
+
readonly required: false;
|
|
907
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
908
|
+
__epPropKey: true;
|
|
909
|
+
} & {
|
|
910
|
+
readonly default: "";
|
|
911
|
+
};
|
|
912
|
+
readonly native: {
|
|
913
|
+
readonly type: PropType<boolean>;
|
|
914
|
+
readonly required: false;
|
|
915
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
916
|
+
__epPropKey: true;
|
|
917
|
+
} & {
|
|
918
|
+
readonly default: false;
|
|
919
|
+
};
|
|
920
|
+
readonly wrapStyle: {
|
|
921
|
+
readonly type: PropType<StyleValue>;
|
|
922
|
+
readonly required: false;
|
|
923
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
924
|
+
__epPropKey: true;
|
|
925
|
+
} & {
|
|
926
|
+
readonly default: "";
|
|
927
|
+
};
|
|
928
|
+
readonly wrapClass: {
|
|
929
|
+
readonly type: PropType<string | unknown[]>;
|
|
930
|
+
readonly required: false;
|
|
931
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
932
|
+
__epPropKey: true;
|
|
933
|
+
} & {
|
|
934
|
+
readonly default: "";
|
|
935
|
+
};
|
|
936
|
+
readonly viewClass: {
|
|
937
|
+
readonly type: PropType<string | unknown[]>;
|
|
938
|
+
readonly required: false;
|
|
939
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
940
|
+
__epPropKey: true;
|
|
941
|
+
} & {
|
|
942
|
+
readonly default: "";
|
|
943
|
+
};
|
|
944
|
+
readonly viewStyle: {
|
|
945
|
+
readonly type: PropType<string | unknown[] | Record<string, any>>;
|
|
946
|
+
readonly required: false;
|
|
947
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
948
|
+
__epPropKey: true;
|
|
949
|
+
} & {
|
|
950
|
+
readonly default: "";
|
|
951
|
+
};
|
|
952
|
+
readonly noresize: BooleanConstructor;
|
|
953
|
+
readonly tag: {
|
|
954
|
+
readonly type: PropType<string>;
|
|
955
|
+
readonly required: false;
|
|
956
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
957
|
+
__epPropKey: true;
|
|
958
|
+
} & {
|
|
959
|
+
readonly default: "div";
|
|
960
|
+
};
|
|
961
|
+
readonly always: BooleanConstructor;
|
|
962
|
+
readonly minSize: {
|
|
963
|
+
readonly type: PropType<number>;
|
|
964
|
+
readonly required: false;
|
|
965
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
966
|
+
__epPropKey: true;
|
|
967
|
+
} & {
|
|
968
|
+
readonly default: 20;
|
|
969
|
+
};
|
|
970
|
+
readonly tabindex: {
|
|
971
|
+
readonly type: PropType<string | number>;
|
|
972
|
+
readonly required: false;
|
|
973
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
974
|
+
__epPropKey: true;
|
|
975
|
+
} & {
|
|
976
|
+
readonly default: undefined;
|
|
977
|
+
};
|
|
978
|
+
readonly id: StringConstructor;
|
|
979
|
+
readonly role: StringConstructor;
|
|
980
|
+
}>> & {
|
|
981
|
+
onScroll?: ((args_0: {
|
|
982
|
+
scrollTop: number;
|
|
983
|
+
scrollLeft: number;
|
|
984
|
+
}) => any) | undefined;
|
|
985
|
+
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
986
|
+
}, "tabindex" | "tag" | "always" | "height" | "maxHeight" | "native" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "noresize" | "minSize" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & ShallowUnwrapRef<{
|
|
987
|
+
wrapRef: Ref<HTMLDivElement | undefined>;
|
|
988
|
+
update: () => void;
|
|
989
|
+
scrollTo: {
|
|
990
|
+
(xCord: number, yCord?: number): void;
|
|
991
|
+
(options: ScrollToOptions): void;
|
|
992
|
+
};
|
|
993
|
+
setScrollTop: (value: number) => void;
|
|
994
|
+
setScrollLeft: (value: number) => void;
|
|
995
|
+
handleScroll: () => void;
|
|
996
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
997
|
+
$slots: {
|
|
998
|
+
default?(_: {}): any;
|
|
999
|
+
};
|
|
1000
|
+
};
|
|
1001
|
+
logText: HTMLTextAreaElement;
|
|
1002
|
+
}, HTMLDivElement>> & Record<string, any>) | ( SFCWithInstall<{
|
|
1003
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< AnnexUploadProps> & Readonly<{
|
|
1004
|
+
onChange?: (...args: any[]) => any;
|
|
1005
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
1006
|
+
onSuccess?: (...args: any[]) => any;
|
|
1007
|
+
onRemove?: (...args: any[]) => any;
|
|
1008
|
+
}>, {
|
|
1009
|
+
clearFiles: () => Promise<void>;
|
|
1010
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1011
|
+
change: (...args: any[]) => void;
|
|
1012
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1013
|
+
success: (...args: any[]) => void;
|
|
1014
|
+
remove: (...args: any[]) => void;
|
|
1015
|
+
}, PublicProps, {
|
|
1016
|
+
modelValue: {
|
|
1017
|
+
index: number;
|
|
1018
|
+
fileId: string;
|
|
1019
|
+
fileName: string;
|
|
1020
|
+
}[];
|
|
1021
|
+
validateEvent: boolean;
|
|
1022
|
+
fileType: string;
|
|
1023
|
+
limitFileSize: boolean;
|
|
1024
|
+
fileSize: number;
|
|
1025
|
+
fileSizeUnit: "kb" | "KB" | "mb" | "MB";
|
|
1026
|
+
accept: string;
|
|
1027
|
+
fileList: {
|
|
1028
|
+
name: string;
|
|
1029
|
+
url: string;
|
|
1030
|
+
}[];
|
|
1031
|
+
limit: number;
|
|
1032
|
+
showList: boolean;
|
|
1033
|
+
checkRealType: boolean;
|
|
1034
|
+
uploadType: "upload" | "import";
|
|
1035
|
+
showTips: boolean;
|
|
1036
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1037
|
+
uploadRef: {
|
|
1038
|
+
$: ComponentInternalInstance;
|
|
1039
|
+
$data: {};
|
|
1040
|
+
$props: Partial<{
|
|
1041
|
+
readonly data: unknown;
|
|
1042
|
+
readonly disabled: boolean;
|
|
1043
|
+
readonly drag: boolean;
|
|
1044
|
+
readonly multiple: boolean;
|
|
1045
|
+
readonly name: string;
|
|
1046
|
+
readonly onChange: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1047
|
+
readonly onError: (error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1048
|
+
readonly onProgress: (evt: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1049
|
+
readonly method: string;
|
|
1050
|
+
readonly action: string;
|
|
1051
|
+
readonly withCredentials: boolean;
|
|
1052
|
+
readonly showFileList: boolean;
|
|
1053
|
+
readonly accept: string;
|
|
1054
|
+
readonly fileList: UploadUserFile[];
|
|
1055
|
+
readonly autoUpload: boolean;
|
|
1056
|
+
readonly listType: "text" | "picture" | "picture-card";
|
|
1057
|
+
readonly httpRequest: UploadRequestHandler;
|
|
1058
|
+
readonly beforeUpload: (rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob>;
|
|
1059
|
+
readonly onRemove: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1060
|
+
readonly onPreview: (uploadFile: UploadFile) => void;
|
|
1061
|
+
readonly onSuccess: (response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1062
|
+
readonly onExceed: (files: File[], uploadFiles: UploadUserFile[]) => void;
|
|
1063
|
+
}> & Omit<{
|
|
1064
|
+
readonly drag: boolean;
|
|
1065
|
+
readonly disabled: boolean;
|
|
1066
|
+
readonly name: string;
|
|
1067
|
+
readonly data: {};
|
|
1068
|
+
readonly onChange: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1069
|
+
readonly onError: (error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1070
|
+
readonly onProgress: (evt: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1071
|
+
readonly multiple: boolean;
|
|
1072
|
+
readonly method: string;
|
|
1073
|
+
readonly withCredentials: boolean;
|
|
1074
|
+
readonly beforeUpload: (rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob>;
|
|
1075
|
+
readonly onRemove: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1076
|
+
readonly onPreview: (uploadFile: UploadFile) => void;
|
|
1077
|
+
readonly onSuccess: (response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1078
|
+
readonly onExceed: (files: File[], uploadFiles: UploadUserFile[]) => void;
|
|
1079
|
+
readonly action: string;
|
|
1080
|
+
readonly showFileList: boolean;
|
|
1081
|
+
readonly accept: string;
|
|
1082
|
+
readonly fileList: UploadUserFile[];
|
|
1083
|
+
readonly autoUpload: boolean;
|
|
1084
|
+
readonly listType: "text" | "picture" | "picture-card";
|
|
1085
|
+
readonly httpRequest: UploadRequestHandler;
|
|
1086
|
+
readonly headers?: Record<string, any> | Headers;
|
|
1087
|
+
readonly beforeRemove?: (uploadFile: UploadFile, uploadFiles: UploadFiles) => boolean | Promise<boolean>;
|
|
1088
|
+
readonly crossorigin?: "" | "anonymous" | "use-credentials";
|
|
1089
|
+
readonly limit?: number;
|
|
1090
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "drag" | "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "multiple" | "method" | "withCredentials" | "beforeUpload" | "onRemove" | "onPreview" | "onSuccess" | "onExceed" | "action" | "showFileList" | "accept" | "fileList" | "autoUpload" | "listType" | "httpRequest">;
|
|
1091
|
+
$attrs: {
|
|
1092
|
+
[x: string]: unknown;
|
|
1093
|
+
};
|
|
1094
|
+
$refs: {
|
|
1095
|
+
[x: string]: unknown;
|
|
1096
|
+
};
|
|
1097
|
+
$slots: Readonly<{
|
|
1098
|
+
[name: string]: Slot<any>;
|
|
1099
|
+
}>;
|
|
1100
|
+
$root: ComponentPublicInstance | null;
|
|
1101
|
+
$parent: ComponentPublicInstance | null;
|
|
1102
|
+
$host: Element | null;
|
|
1103
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
1104
|
+
$el: any;
|
|
1105
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
1106
|
+
readonly beforeUpload: {
|
|
1107
|
+
readonly type: PropType<(rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob>>;
|
|
1108
|
+
readonly required: false;
|
|
1109
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1110
|
+
__epPropKey: true;
|
|
1111
|
+
} & {
|
|
1112
|
+
readonly default: () => void;
|
|
1113
|
+
};
|
|
1114
|
+
readonly beforeRemove: {
|
|
1115
|
+
readonly type: PropType<(uploadFile: UploadFile, uploadFiles: UploadFiles) => boolean | Promise<boolean>>;
|
|
1116
|
+
readonly required: false;
|
|
1117
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1118
|
+
__epPropKey: true;
|
|
1119
|
+
};
|
|
1120
|
+
readonly onRemove: {
|
|
1121
|
+
readonly type: PropType<(uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1122
|
+
readonly required: false;
|
|
1123
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1124
|
+
__epPropKey: true;
|
|
1125
|
+
} & {
|
|
1126
|
+
readonly default: () => void;
|
|
1127
|
+
};
|
|
1128
|
+
readonly onChange: {
|
|
1129
|
+
readonly type: PropType<(uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1130
|
+
readonly required: false;
|
|
1131
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1132
|
+
__epPropKey: true;
|
|
1133
|
+
} & {
|
|
1134
|
+
readonly default: () => void;
|
|
1135
|
+
};
|
|
1136
|
+
readonly onPreview: {
|
|
1137
|
+
readonly type: PropType<(uploadFile: UploadFile) => void>;
|
|
1138
|
+
readonly required: false;
|
|
1139
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1140
|
+
__epPropKey: true;
|
|
1141
|
+
} & {
|
|
1142
|
+
readonly default: () => void;
|
|
1143
|
+
};
|
|
1144
|
+
readonly onSuccess: {
|
|
1145
|
+
readonly type: PropType<(response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1146
|
+
readonly required: false;
|
|
1147
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1148
|
+
__epPropKey: true;
|
|
1149
|
+
} & {
|
|
1150
|
+
readonly default: () => void;
|
|
1151
|
+
};
|
|
1152
|
+
readonly onProgress: {
|
|
1153
|
+
readonly type: PropType<(evt: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1154
|
+
readonly required: false;
|
|
1155
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1156
|
+
__epPropKey: true;
|
|
1157
|
+
} & {
|
|
1158
|
+
readonly default: () => void;
|
|
1159
|
+
};
|
|
1160
|
+
readonly onError: {
|
|
1161
|
+
readonly type: PropType<(error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1162
|
+
readonly required: false;
|
|
1163
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1164
|
+
__epPropKey: true;
|
|
1165
|
+
} & {
|
|
1166
|
+
readonly default: () => void;
|
|
1167
|
+
};
|
|
1168
|
+
readonly onExceed: {
|
|
1169
|
+
readonly type: PropType<(files: File[], uploadFiles: UploadUserFile[]) => void>;
|
|
1170
|
+
readonly required: false;
|
|
1171
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1172
|
+
__epPropKey: true;
|
|
1173
|
+
} & {
|
|
1174
|
+
readonly default: () => void;
|
|
1175
|
+
};
|
|
1176
|
+
readonly crossorigin: {
|
|
1177
|
+
readonly type: PropType<"" | "anonymous" | "use-credentials">;
|
|
1178
|
+
readonly required: false;
|
|
1179
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1180
|
+
__epPropKey: true;
|
|
1181
|
+
};
|
|
1182
|
+
readonly action: {
|
|
1183
|
+
readonly type: PropType<string>;
|
|
1184
|
+
readonly required: false;
|
|
1185
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1186
|
+
__epPropKey: true;
|
|
1187
|
+
} & {
|
|
1188
|
+
readonly default: "#";
|
|
1189
|
+
};
|
|
1190
|
+
readonly headers: {
|
|
1191
|
+
readonly type: PropType<Record<string, any> | Headers>;
|
|
1192
|
+
readonly required: false;
|
|
1193
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1194
|
+
__epPropKey: true;
|
|
1195
|
+
};
|
|
1196
|
+
readonly method: {
|
|
1197
|
+
readonly type: PropType<string>;
|
|
1198
|
+
readonly required: false;
|
|
1199
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1200
|
+
__epPropKey: true;
|
|
1201
|
+
} & {
|
|
1202
|
+
readonly default: "post";
|
|
1203
|
+
};
|
|
1204
|
+
readonly data: {
|
|
1205
|
+
readonly type: PropType<unknown>;
|
|
1206
|
+
readonly required: false;
|
|
1207
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1208
|
+
__epPropKey: true;
|
|
1209
|
+
} & {
|
|
1210
|
+
readonly default: () => {};
|
|
1211
|
+
};
|
|
1212
|
+
readonly multiple: BooleanConstructor;
|
|
1213
|
+
readonly name: {
|
|
1214
|
+
readonly type: PropType<string>;
|
|
1215
|
+
readonly required: false;
|
|
1216
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1217
|
+
__epPropKey: true;
|
|
1218
|
+
} & {
|
|
1219
|
+
readonly default: "file";
|
|
1220
|
+
};
|
|
1221
|
+
readonly drag: BooleanConstructor;
|
|
1222
|
+
readonly withCredentials: BooleanConstructor;
|
|
1223
|
+
readonly showFileList: {
|
|
1224
|
+
readonly type: PropType<boolean>;
|
|
1225
|
+
readonly required: false;
|
|
1226
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1227
|
+
__epPropKey: true;
|
|
1228
|
+
} & {
|
|
1229
|
+
readonly default: true;
|
|
1230
|
+
};
|
|
1231
|
+
readonly accept: {
|
|
1232
|
+
readonly type: PropType<string>;
|
|
1233
|
+
readonly required: false;
|
|
1234
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1235
|
+
__epPropKey: true;
|
|
1236
|
+
} & {
|
|
1237
|
+
readonly default: "";
|
|
1238
|
+
};
|
|
1239
|
+
readonly fileList: {
|
|
1240
|
+
readonly type: PropType< UploadUserFile[]>;
|
|
1241
|
+
readonly required: false;
|
|
1242
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1243
|
+
__epPropKey: true;
|
|
1244
|
+
} & {
|
|
1245
|
+
readonly default: () => [];
|
|
1246
|
+
};
|
|
1247
|
+
readonly autoUpload: {
|
|
1248
|
+
readonly type: PropType<boolean>;
|
|
1249
|
+
readonly required: false;
|
|
1250
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1251
|
+
__epPropKey: true;
|
|
1252
|
+
} & {
|
|
1253
|
+
readonly default: true;
|
|
1254
|
+
};
|
|
1255
|
+
readonly listType: {
|
|
1256
|
+
readonly type: PropType<"text" | "picture" | "picture-card">;
|
|
1257
|
+
readonly required: false;
|
|
1258
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1259
|
+
__epPropKey: true;
|
|
1260
|
+
} & {
|
|
1261
|
+
readonly default: "text";
|
|
1262
|
+
};
|
|
1263
|
+
readonly httpRequest: {
|
|
1264
|
+
readonly type: PropType<UploadRequestHandler>;
|
|
1265
|
+
readonly required: false;
|
|
1266
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1267
|
+
__epPropKey: true;
|
|
1268
|
+
} & {
|
|
1269
|
+
readonly default: UploadRequestHandler;
|
|
1270
|
+
};
|
|
1271
|
+
readonly disabled: BooleanConstructor;
|
|
1272
|
+
readonly limit: NumberConstructor;
|
|
1273
|
+
}>>, {
|
|
1274
|
+
abort: (file: UploadFile) => void;
|
|
1275
|
+
submit: () => void;
|
|
1276
|
+
clearFiles: (states?: UploadStatus[]) => void;
|
|
1277
|
+
handleStart: (rawFile: UploadRawFile) => void;
|
|
1278
|
+
handleRemove: (file: UploadFile | UploadRawFile, rawFile?: UploadRawFile) => void;
|
|
1279
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
|
|
1280
|
+
readonly data: unknown;
|
|
1281
|
+
readonly disabled: boolean;
|
|
1282
|
+
readonly drag: boolean;
|
|
1283
|
+
readonly multiple: boolean;
|
|
1284
|
+
readonly name: string;
|
|
1285
|
+
readonly onChange: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1286
|
+
readonly onError: (error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1287
|
+
readonly onProgress: (evt: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1288
|
+
readonly method: string;
|
|
1289
|
+
readonly action: string;
|
|
1290
|
+
readonly withCredentials: boolean;
|
|
1291
|
+
readonly showFileList: boolean;
|
|
1292
|
+
readonly accept: string;
|
|
1293
|
+
readonly fileList: UploadUserFile[];
|
|
1294
|
+
readonly autoUpload: boolean;
|
|
1295
|
+
readonly listType: "text" | "picture" | "picture-card";
|
|
1296
|
+
readonly httpRequest: UploadRequestHandler;
|
|
1297
|
+
readonly beforeUpload: (rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob>;
|
|
1298
|
+
readonly onRemove: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1299
|
+
readonly onPreview: (uploadFile: UploadFile) => void;
|
|
1300
|
+
readonly onSuccess: (response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1301
|
+
readonly onExceed: (files: File[], uploadFiles: UploadUserFile[]) => void;
|
|
1302
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1303
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1304
|
+
created?: (() => void) | (() => void)[];
|
|
1305
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1306
|
+
mounted?: (() => void) | (() => void)[];
|
|
1307
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1308
|
+
updated?: (() => void) | (() => void)[];
|
|
1309
|
+
activated?: (() => void) | (() => void)[];
|
|
1310
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1311
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1312
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1313
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1314
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1315
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1316
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1317
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1318
|
+
};
|
|
1319
|
+
$forceUpdate: () => void;
|
|
1320
|
+
$nextTick: nextTick;
|
|
1321
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1322
|
+
} & Readonly<{
|
|
1323
|
+
readonly data: unknown;
|
|
1324
|
+
readonly disabled: boolean;
|
|
1325
|
+
readonly drag: boolean;
|
|
1326
|
+
readonly multiple: boolean;
|
|
1327
|
+
readonly name: string;
|
|
1328
|
+
readonly onChange: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1329
|
+
readonly onError: (error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1330
|
+
readonly onProgress: (evt: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1331
|
+
readonly method: string;
|
|
1332
|
+
readonly action: string;
|
|
1333
|
+
readonly withCredentials: boolean;
|
|
1334
|
+
readonly showFileList: boolean;
|
|
1335
|
+
readonly accept: string;
|
|
1336
|
+
readonly fileList: UploadUserFile[];
|
|
1337
|
+
readonly autoUpload: boolean;
|
|
1338
|
+
readonly listType: "text" | "picture" | "picture-card";
|
|
1339
|
+
readonly httpRequest: UploadRequestHandler;
|
|
1340
|
+
readonly beforeUpload: (rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob>;
|
|
1341
|
+
readonly onRemove: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1342
|
+
readonly onPreview: (uploadFile: UploadFile) => void;
|
|
1343
|
+
readonly onSuccess: (response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
|
1344
|
+
readonly onExceed: (files: File[], uploadFiles: UploadUserFile[]) => void;
|
|
1345
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
|
1346
|
+
readonly beforeUpload: {
|
|
1347
|
+
readonly type: PropType<(rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob>>;
|
|
1348
|
+
readonly required: false;
|
|
1349
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1350
|
+
__epPropKey: true;
|
|
1351
|
+
} & {
|
|
1352
|
+
readonly default: () => void;
|
|
1353
|
+
};
|
|
1354
|
+
readonly beforeRemove: {
|
|
1355
|
+
readonly type: PropType<(uploadFile: UploadFile, uploadFiles: UploadFiles) => boolean | Promise<boolean>>;
|
|
1356
|
+
readonly required: false;
|
|
1357
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1358
|
+
__epPropKey: true;
|
|
1359
|
+
};
|
|
1360
|
+
readonly onRemove: {
|
|
1361
|
+
readonly type: PropType<(uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1362
|
+
readonly required: false;
|
|
1363
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1364
|
+
__epPropKey: true;
|
|
1365
|
+
} & {
|
|
1366
|
+
readonly default: () => void;
|
|
1367
|
+
};
|
|
1368
|
+
readonly onChange: {
|
|
1369
|
+
readonly type: PropType<(uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1370
|
+
readonly required: false;
|
|
1371
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1372
|
+
__epPropKey: true;
|
|
1373
|
+
} & {
|
|
1374
|
+
readonly default: () => void;
|
|
1375
|
+
};
|
|
1376
|
+
readonly onPreview: {
|
|
1377
|
+
readonly type: PropType<(uploadFile: UploadFile) => void>;
|
|
1378
|
+
readonly required: false;
|
|
1379
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1380
|
+
__epPropKey: true;
|
|
1381
|
+
} & {
|
|
1382
|
+
readonly default: () => void;
|
|
1383
|
+
};
|
|
1384
|
+
readonly onSuccess: {
|
|
1385
|
+
readonly type: PropType<(response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1386
|
+
readonly required: false;
|
|
1387
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1388
|
+
__epPropKey: true;
|
|
1389
|
+
} & {
|
|
1390
|
+
readonly default: () => void;
|
|
1391
|
+
};
|
|
1392
|
+
readonly onProgress: {
|
|
1393
|
+
readonly type: PropType<(evt: UploadProgressEvent, uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1394
|
+
readonly required: false;
|
|
1395
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1396
|
+
__epPropKey: true;
|
|
1397
|
+
} & {
|
|
1398
|
+
readonly default: () => void;
|
|
1399
|
+
};
|
|
1400
|
+
readonly onError: {
|
|
1401
|
+
readonly type: PropType<(error: Error, uploadFile: UploadFile, uploadFiles: UploadFiles) => void>;
|
|
1402
|
+
readonly required: false;
|
|
1403
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1404
|
+
__epPropKey: true;
|
|
1405
|
+
} & {
|
|
1406
|
+
readonly default: () => void;
|
|
1407
|
+
};
|
|
1408
|
+
readonly onExceed: {
|
|
1409
|
+
readonly type: PropType<(files: File[], uploadFiles: UploadUserFile[]) => void>;
|
|
1410
|
+
readonly required: false;
|
|
1411
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1412
|
+
__epPropKey: true;
|
|
1413
|
+
} & {
|
|
1414
|
+
readonly default: () => void;
|
|
1415
|
+
};
|
|
1416
|
+
readonly crossorigin: {
|
|
1417
|
+
readonly type: PropType<"" | "anonymous" | "use-credentials">;
|
|
1418
|
+
readonly required: false;
|
|
1419
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1420
|
+
__epPropKey: true;
|
|
1421
|
+
};
|
|
1422
|
+
readonly action: {
|
|
1423
|
+
readonly type: PropType<string>;
|
|
1424
|
+
readonly required: false;
|
|
1425
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1426
|
+
__epPropKey: true;
|
|
1427
|
+
} & {
|
|
1428
|
+
readonly default: "#";
|
|
1429
|
+
};
|
|
1430
|
+
readonly headers: {
|
|
1431
|
+
readonly type: PropType<Record<string, any> | Headers>;
|
|
1432
|
+
readonly required: false;
|
|
1433
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1434
|
+
__epPropKey: true;
|
|
1435
|
+
};
|
|
1436
|
+
readonly method: {
|
|
1437
|
+
readonly type: PropType<string>;
|
|
1438
|
+
readonly required: false;
|
|
1439
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1440
|
+
__epPropKey: true;
|
|
1441
|
+
} & {
|
|
1442
|
+
readonly default: "post";
|
|
1443
|
+
};
|
|
1444
|
+
readonly data: {
|
|
1445
|
+
readonly type: PropType<unknown>;
|
|
1446
|
+
readonly required: false;
|
|
1447
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1448
|
+
__epPropKey: true;
|
|
1449
|
+
} & {
|
|
1450
|
+
readonly default: () => {};
|
|
1451
|
+
};
|
|
1452
|
+
readonly multiple: BooleanConstructor;
|
|
1453
|
+
readonly name: {
|
|
1454
|
+
readonly type: PropType<string>;
|
|
1455
|
+
readonly required: false;
|
|
1456
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1457
|
+
__epPropKey: true;
|
|
1458
|
+
} & {
|
|
1459
|
+
readonly default: "file";
|
|
1460
|
+
};
|
|
1461
|
+
readonly drag: BooleanConstructor;
|
|
1462
|
+
readonly withCredentials: BooleanConstructor;
|
|
1463
|
+
readonly showFileList: {
|
|
1464
|
+
readonly type: PropType<boolean>;
|
|
1465
|
+
readonly required: false;
|
|
1466
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1467
|
+
__epPropKey: true;
|
|
1468
|
+
} & {
|
|
1469
|
+
readonly default: true;
|
|
1470
|
+
};
|
|
1471
|
+
readonly accept: {
|
|
1472
|
+
readonly type: PropType<string>;
|
|
1473
|
+
readonly required: false;
|
|
1474
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1475
|
+
__epPropKey: true;
|
|
1476
|
+
} & {
|
|
1477
|
+
readonly default: "";
|
|
1478
|
+
};
|
|
1479
|
+
readonly fileList: {
|
|
1480
|
+
readonly type: PropType< UploadUserFile[]>;
|
|
1481
|
+
readonly required: false;
|
|
1482
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1483
|
+
__epPropKey: true;
|
|
1484
|
+
} & {
|
|
1485
|
+
readonly default: () => [];
|
|
1486
|
+
};
|
|
1487
|
+
readonly autoUpload: {
|
|
1488
|
+
readonly type: PropType<boolean>;
|
|
1489
|
+
readonly required: false;
|
|
1490
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1491
|
+
__epPropKey: true;
|
|
1492
|
+
} & {
|
|
1493
|
+
readonly default: true;
|
|
1494
|
+
};
|
|
1495
|
+
readonly listType: {
|
|
1496
|
+
readonly type: PropType<"text" | "picture" | "picture-card">;
|
|
1497
|
+
readonly required: false;
|
|
1498
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1499
|
+
__epPropKey: true;
|
|
1500
|
+
} & {
|
|
1501
|
+
readonly default: "text";
|
|
1502
|
+
};
|
|
1503
|
+
readonly httpRequest: {
|
|
1504
|
+
readonly type: PropType<UploadRequestHandler>;
|
|
1505
|
+
readonly required: false;
|
|
1506
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1507
|
+
__epPropKey: true;
|
|
1508
|
+
} & {
|
|
1509
|
+
readonly default: UploadRequestHandler;
|
|
1510
|
+
};
|
|
1511
|
+
readonly disabled: BooleanConstructor;
|
|
1512
|
+
readonly limit: NumberConstructor;
|
|
1513
|
+
}>>, "abort" | "drag" | "submit" | "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "multiple" | "method" | "withCredentials" | "beforeUpload" | "onRemove" | "onPreview" | "onSuccess" | "onExceed" | "action" | "showFileList" | "accept" | "fileList" | "autoUpload" | "listType" | "httpRequest" | "clearFiles" | "handleStart" | "handleRemove"> & ShallowUnwrapRef<{
|
|
1514
|
+
abort: (file: UploadFile) => void;
|
|
1515
|
+
submit: () => void;
|
|
1516
|
+
clearFiles: (states?: UploadStatus[]) => void;
|
|
1517
|
+
handleStart: (rawFile: UploadRawFile) => void;
|
|
1518
|
+
handleRemove: (file: UploadFile | UploadRawFile, rawFile?: UploadRawFile) => void;
|
|
1519
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
1520
|
+
$slots: {
|
|
1521
|
+
file?(_: {
|
|
1522
|
+
file: UploadFile;
|
|
1523
|
+
index: number;
|
|
1524
|
+
}): any;
|
|
1525
|
+
file?(_: {
|
|
1526
|
+
file: UploadFile;
|
|
1527
|
+
index: number;
|
|
1528
|
+
}): any;
|
|
1529
|
+
trigger?(_: {}): any;
|
|
1530
|
+
trigger?(_: {}): any;
|
|
1531
|
+
default?(_: {}): any;
|
|
1532
|
+
default?(_: {}): any;
|
|
1533
|
+
default?(_: {}): any;
|
|
1534
|
+
tip?(_: {}): any;
|
|
1535
|
+
};
|
|
1536
|
+
};
|
|
1537
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
1538
|
+
P: {};
|
|
1539
|
+
B: {};
|
|
1540
|
+
D: {};
|
|
1541
|
+
C: {};
|
|
1542
|
+
M: {};
|
|
1543
|
+
Defaults: {};
|
|
1544
|
+
}, Readonly< AnnexUploadProps> & Readonly<{
|
|
1545
|
+
onChange?: (...args: any[]) => any;
|
|
1546
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
1547
|
+
onSuccess?: (...args: any[]) => any;
|
|
1548
|
+
onRemove?: (...args: any[]) => any;
|
|
1549
|
+
}>, {
|
|
1550
|
+
clearFiles: () => Promise<void>;
|
|
1551
|
+
}, {}, {}, {}, {
|
|
1552
|
+
modelValue: {
|
|
1553
|
+
index: number;
|
|
1554
|
+
fileId: string;
|
|
1555
|
+
fileName: string;
|
|
1556
|
+
}[];
|
|
1557
|
+
validateEvent: boolean;
|
|
1558
|
+
fileType: string;
|
|
1559
|
+
limitFileSize: boolean;
|
|
1560
|
+
fileSize: number;
|
|
1561
|
+
fileSizeUnit: "kb" | "KB" | "mb" | "MB";
|
|
1562
|
+
accept: string;
|
|
1563
|
+
fileList: {
|
|
1564
|
+
name: string;
|
|
1565
|
+
url: string;
|
|
1566
|
+
}[];
|
|
1567
|
+
limit: number;
|
|
1568
|
+
showList: boolean;
|
|
1569
|
+
checkRealType: boolean;
|
|
1570
|
+
uploadType: "upload" | "import";
|
|
1571
|
+
showTips: boolean;
|
|
1572
|
+
}>;
|
|
1573
|
+
__isFragment?: never;
|
|
1574
|
+
__isTeleport?: never;
|
|
1575
|
+
__isSuspense?: never;
|
|
1576
|
+
} & ComponentOptionsBase<Readonly< AnnexUploadProps> & Readonly<{
|
|
1577
|
+
onChange?: (...args: any[]) => any;
|
|
1578
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
1579
|
+
onSuccess?: (...args: any[]) => any;
|
|
1580
|
+
onRemove?: (...args: any[]) => any;
|
|
1581
|
+
}>, {
|
|
1582
|
+
clearFiles: () => Promise<void>;
|
|
1583
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1584
|
+
change: (...args: any[]) => void;
|
|
1585
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1586
|
+
success: (...args: any[]) => void;
|
|
1587
|
+
remove: (...args: any[]) => void;
|
|
1588
|
+
}, string, {
|
|
1589
|
+
modelValue: {
|
|
1590
|
+
index: number;
|
|
1591
|
+
fileId: string;
|
|
1592
|
+
fileName: string;
|
|
1593
|
+
}[];
|
|
1594
|
+
validateEvent: boolean;
|
|
1595
|
+
fileType: string;
|
|
1596
|
+
limitFileSize: boolean;
|
|
1597
|
+
fileSize: number;
|
|
1598
|
+
fileSizeUnit: "kb" | "KB" | "mb" | "MB";
|
|
1599
|
+
accept: string;
|
|
1600
|
+
fileList: {
|
|
1601
|
+
name: string;
|
|
1602
|
+
url: string;
|
|
1603
|
+
}[];
|
|
1604
|
+
limit: number;
|
|
1605
|
+
showList: boolean;
|
|
1606
|
+
checkRealType: boolean;
|
|
1607
|
+
uploadType: "upload" | "import";
|
|
1608
|
+
showTips: boolean;
|
|
1609
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1610
|
+
$slots: {
|
|
1611
|
+
default?(_: {}): any;
|
|
1612
|
+
tip?(_: {}): any;
|
|
1613
|
+
};
|
|
1614
|
+
})> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
|
|
1615
|
+
multiSelectList?: Array<any>;
|
|
1616
|
+
selectList: Array< Option>;
|
|
1617
|
+
countList?: Array<any>;
|
|
1618
|
+
totalCount?: number;
|
|
1619
|
+
hasNum?: boolean;
|
|
1620
|
+
displayRangeInput?: boolean;
|
|
1621
|
+
rangeLabel?: string;
|
|
1622
|
+
rangeStartKey?: string;
|
|
1623
|
+
rangeEndKey?: string;
|
|
1624
|
+
rangeDelimiter?: string;
|
|
1625
|
+
allIsCheckbox?: boolean;
|
|
1626
|
+
allIsEmpty?: boolean;
|
|
1627
|
+
translateUserId?: boolean;
|
|
1628
|
+
staticSearch?: boolean;
|
|
1629
|
+
label?: string;
|
|
1630
|
+
noNeedRefreshNumFilterName?: string;
|
|
1631
|
+
filterKey: string;
|
|
1632
|
+
defaultValues?: Array<string | number | boolean>;
|
|
1633
|
+
showTotal?: boolean;
|
|
1634
|
+
}, {
|
|
1635
|
+
clickAllSelected: () => void;
|
|
1636
|
+
resetAllCheckedValueAndSelectAll: () => void;
|
|
1637
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1638
|
+
filterChange: (...args: any[]) => void;
|
|
1639
|
+
setNoNeedRefreshNumFilterName: (...args: any[]) => void;
|
|
1640
|
+
}, string, PublicProps, Readonly<{
|
|
1641
|
+
multiSelectList?: Array<any>;
|
|
1642
|
+
selectList: Array< Option>;
|
|
1643
|
+
countList?: Array<any>;
|
|
1644
|
+
totalCount?: number;
|
|
1645
|
+
hasNum?: boolean;
|
|
1646
|
+
displayRangeInput?: boolean;
|
|
1647
|
+
rangeLabel?: string;
|
|
1648
|
+
rangeStartKey?: string;
|
|
1649
|
+
rangeEndKey?: string;
|
|
1650
|
+
rangeDelimiter?: string;
|
|
1651
|
+
allIsCheckbox?: boolean;
|
|
1652
|
+
allIsEmpty?: boolean;
|
|
1653
|
+
translateUserId?: boolean;
|
|
1654
|
+
staticSearch?: boolean;
|
|
1655
|
+
label?: string;
|
|
1656
|
+
noNeedRefreshNumFilterName?: string;
|
|
1657
|
+
filterKey: string;
|
|
1658
|
+
defaultValues?: Array<string | number | boolean>;
|
|
1659
|
+
showTotal?: boolean;
|
|
1660
|
+
}> & Readonly<{
|
|
1661
|
+
onFilterChange?: (...args: any[]) => any;
|
|
1662
|
+
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
1663
|
+
}>, {
|
|
1664
|
+
label: string;
|
|
1665
|
+
filterKey: string;
|
|
1666
|
+
multiSelectList: Array<any>;
|
|
1667
|
+
countList: Array<any>;
|
|
1668
|
+
hasNum: boolean;
|
|
1669
|
+
selectList: Array< Option>;
|
|
1670
|
+
totalCount: number;
|
|
1671
|
+
displayRangeInput: boolean;
|
|
1672
|
+
rangeLabel: string;
|
|
1673
|
+
rangeStartKey: string;
|
|
1674
|
+
rangeEndKey: string;
|
|
1675
|
+
rangeDelimiter: string;
|
|
1676
|
+
allIsEmpty: boolean;
|
|
1677
|
+
staticSearch: boolean;
|
|
1678
|
+
noNeedRefreshNumFilterName: string;
|
|
1679
|
+
defaultValues: Array<string | number | boolean>;
|
|
1680
|
+
showTotal: boolean;
|
|
1681
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1682
|
+
itemRefs: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1683
|
+
multiSelectList: Array<any>;
|
|
1684
|
+
countList?: Array<any>;
|
|
1685
|
+
item: Option;
|
|
1686
|
+
hasNum: boolean;
|
|
1687
|
+
allIsCheckbox?: boolean;
|
|
1688
|
+
translateUserId: boolean;
|
|
1689
|
+
}> & Readonly<{
|
|
1690
|
+
onResetAllCheckedValue?: (...args: any[]) => any;
|
|
1691
|
+
onSetSelectedStatusMap?: (...args: any[]) => any;
|
|
1692
|
+
onResetRange?: (...args: any[]) => any;
|
|
1693
|
+
onResetIsSelectAll?: (...args: any[]) => any;
|
|
1694
|
+
onNotifyParent?: (...args: any[]) => any;
|
|
1695
|
+
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
1696
|
+
}>, {
|
|
1697
|
+
resetValue: () => void;
|
|
1698
|
+
getValue: () => Option;
|
|
1699
|
+
setCurrentValue: (val: boolean) => void;
|
|
1700
|
+
setCheckboxValue: (val: boolean) => void;
|
|
1701
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1702
|
+
resetAllCheckedValue: (...args: any[]) => void;
|
|
1703
|
+
setSelectedStatusMap: (...args: any[]) => void;
|
|
1704
|
+
resetRange: (...args: any[]) => void;
|
|
1705
|
+
resetIsSelectAll: (...args: any[]) => void;
|
|
1706
|
+
notifyParent: (...args: any[]) => void;
|
|
1707
|
+
setNoNeedRefreshNumFilterName: (...args: any[]) => void;
|
|
1708
|
+
}, PublicProps, {
|
|
1709
|
+
item: Option;
|
|
1710
|
+
multiSelectList: Array<any>;
|
|
1711
|
+
hasNum: boolean;
|
|
1712
|
+
allIsCheckbox: boolean;
|
|
1713
|
+
translateUserId: boolean;
|
|
1714
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1715
|
+
P: {};
|
|
1716
|
+
B: {};
|
|
1717
|
+
D: {};
|
|
1718
|
+
C: {};
|
|
1719
|
+
M: {};
|
|
1720
|
+
Defaults: {};
|
|
1721
|
+
}, Readonly<{
|
|
1722
|
+
multiSelectList: Array<any>;
|
|
1723
|
+
countList?: Array<any>;
|
|
1724
|
+
item: Option;
|
|
1725
|
+
hasNum: boolean;
|
|
1726
|
+
allIsCheckbox?: boolean;
|
|
1727
|
+
translateUserId: boolean;
|
|
1728
|
+
}> & Readonly<{
|
|
1729
|
+
onResetAllCheckedValue?: (...args: any[]) => any;
|
|
1730
|
+
onSetSelectedStatusMap?: (...args: any[]) => any;
|
|
1731
|
+
onResetRange?: (...args: any[]) => any;
|
|
1732
|
+
onResetIsSelectAll?: (...args: any[]) => any;
|
|
1733
|
+
onNotifyParent?: (...args: any[]) => any;
|
|
1734
|
+
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
1735
|
+
}>, {
|
|
1736
|
+
resetValue: () => void;
|
|
1737
|
+
getValue: () => Option;
|
|
1738
|
+
setCurrentValue: (val: boolean) => void;
|
|
1739
|
+
setCheckboxValue: (val: boolean) => void;
|
|
1740
|
+
}, {}, {}, {}, {
|
|
1741
|
+
item: Option;
|
|
1742
|
+
multiSelectList: Array<any>;
|
|
1743
|
+
hasNum: boolean;
|
|
1744
|
+
allIsCheckbox: boolean;
|
|
1745
|
+
translateUserId: boolean;
|
|
1746
|
+
}>[];
|
|
1747
|
+
}, HTMLDivElement>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
|
|
1748
|
+
selectList: Option[];
|
|
1749
|
+
countList?: any[];
|
|
1750
|
+
enumEntity: string;
|
|
1751
|
+
filterKey: string;
|
|
1752
|
+
totalCount?: number;
|
|
1753
|
+
noNeedRefreshNumFilterName?: string;
|
|
1754
|
+
allIsCheckbox?: boolean;
|
|
1755
|
+
allIsEmpty?: boolean;
|
|
1756
|
+
translateUserId?: boolean;
|
|
1757
|
+
initFilters: (...args: any[]) => any;
|
|
1758
|
+
defaultValues?: (string | boolean | number)[];
|
|
1759
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1760
|
+
filterChange: (...args: any[]) => void;
|
|
1761
|
+
setNoNeedRefreshNumFilterName: (...args: any[]) => void;
|
|
1762
|
+
}, string, PublicProps, Readonly<{
|
|
1763
|
+
selectList: Option[];
|
|
1764
|
+
countList?: any[];
|
|
1765
|
+
enumEntity: string;
|
|
1766
|
+
filterKey: string;
|
|
1767
|
+
totalCount?: number;
|
|
1768
|
+
noNeedRefreshNumFilterName?: string;
|
|
1769
|
+
allIsCheckbox?: boolean;
|
|
1770
|
+
allIsEmpty?: boolean;
|
|
1771
|
+
translateUserId?: boolean;
|
|
1772
|
+
initFilters: (...args: any[]) => any;
|
|
1773
|
+
defaultValues?: (string | boolean | number)[];
|
|
1774
|
+
}> & Readonly<{
|
|
1775
|
+
onFilterChange?: (...args: any[]) => any;
|
|
1776
|
+
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
1777
|
+
}>, {
|
|
1778
|
+
filterKey: string;
|
|
1779
|
+
countList: any[];
|
|
1780
|
+
selectList: Option[];
|
|
1781
|
+
totalCount: number;
|
|
1782
|
+
noNeedRefreshNumFilterName: string;
|
|
1783
|
+
defaultValues: (string | boolean | number)[];
|
|
1784
|
+
enumEntity: string;
|
|
1785
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
|
|
1786
|
+
filterList?: Array< DropdownEntity>;
|
|
1787
|
+
totalCount?: number;
|
|
1788
|
+
level1Count?: Array<{
|
|
1789
|
+
value: string;
|
|
1790
|
+
count: number;
|
|
1791
|
+
}>;
|
|
1792
|
+
level2Count?: Array<{
|
|
1793
|
+
value: string;
|
|
1794
|
+
count: number;
|
|
1795
|
+
}>;
|
|
1796
|
+
filterKey: string;
|
|
1797
|
+
enumEntity: string;
|
|
1798
|
+
noNeedRefreshNumFilterName?: string;
|
|
1799
|
+
initFilters?: Function;
|
|
1800
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1801
|
+
filterChange: (...args: any[]) => void;
|
|
1802
|
+
setNoNeedRefreshNumFilterName: (...args: any[]) => void;
|
|
1803
|
+
}, string, PublicProps, Readonly<{
|
|
1804
|
+
filterList?: Array< DropdownEntity>;
|
|
1805
|
+
totalCount?: number;
|
|
1806
|
+
level1Count?: Array<{
|
|
1807
|
+
value: string;
|
|
1808
|
+
count: number;
|
|
1809
|
+
}>;
|
|
1810
|
+
level2Count?: Array<{
|
|
1811
|
+
value: string;
|
|
1812
|
+
count: number;
|
|
1813
|
+
}>;
|
|
1814
|
+
filterKey: string;
|
|
1815
|
+
enumEntity: string;
|
|
1816
|
+
noNeedRefreshNumFilterName?: string;
|
|
1817
|
+
initFilters?: Function;
|
|
1818
|
+
}> & Readonly<{
|
|
1819
|
+
onFilterChange?: (...args: any[]) => any;
|
|
1820
|
+
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
1821
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1822
|
+
dropdown1: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
1823
|
+
readonly trigger: {
|
|
1824
|
+
readonly type: PropType< TooltipTriggerType | TooltipTriggerType[]>;
|
|
1825
|
+
readonly required: false;
|
|
1826
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1827
|
+
__epPropKey: true;
|
|
1828
|
+
} & {
|
|
1829
|
+
readonly default: "hover";
|
|
1830
|
+
};
|
|
1831
|
+
readonly triggerKeys: {
|
|
1832
|
+
readonly type: PropType<string[]>;
|
|
1833
|
+
readonly required: false;
|
|
1834
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1835
|
+
__epPropKey: true;
|
|
1836
|
+
} & {
|
|
1837
|
+
readonly default: () => string[];
|
|
1838
|
+
};
|
|
1839
|
+
readonly effect: {
|
|
1840
|
+
readonly default: "light";
|
|
1841
|
+
readonly type: PropType<PopperEffect>;
|
|
1842
|
+
readonly required: false;
|
|
1843
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1844
|
+
readonly __epPropKey: true;
|
|
1845
|
+
};
|
|
1846
|
+
readonly type: {
|
|
1847
|
+
readonly type: PropType<"" | "default" | "text" | "success" | "primary" | "warning" | "info" | "danger">;
|
|
1848
|
+
readonly required: false;
|
|
1849
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1850
|
+
__epPropKey: true;
|
|
1851
|
+
};
|
|
1852
|
+
readonly placement: {
|
|
1853
|
+
readonly type: PropType<Placement>;
|
|
1854
|
+
readonly required: false;
|
|
1855
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1856
|
+
__epPropKey: true;
|
|
1857
|
+
} & {
|
|
1858
|
+
readonly default: "bottom";
|
|
1859
|
+
};
|
|
1860
|
+
readonly popperOptions: {
|
|
1861
|
+
readonly type: PropType<Partial< Options>>;
|
|
1862
|
+
readonly required: false;
|
|
1863
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1864
|
+
__epPropKey: true;
|
|
1865
|
+
} & {
|
|
1866
|
+
readonly default: () => {};
|
|
1867
|
+
};
|
|
1868
|
+
readonly id: StringConstructor;
|
|
1869
|
+
readonly size: {
|
|
1870
|
+
readonly type: PropType<string>;
|
|
1871
|
+
readonly required: false;
|
|
1872
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1873
|
+
__epPropKey: true;
|
|
1874
|
+
} & {
|
|
1875
|
+
readonly default: "";
|
|
1876
|
+
};
|
|
1877
|
+
readonly splitButton: BooleanConstructor;
|
|
1878
|
+
readonly hideOnClick: {
|
|
1879
|
+
readonly type: PropType<boolean>;
|
|
1880
|
+
readonly required: false;
|
|
1881
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1882
|
+
__epPropKey: true;
|
|
1883
|
+
} & {
|
|
1884
|
+
readonly default: true;
|
|
1885
|
+
};
|
|
1886
|
+
readonly loop: {
|
|
1887
|
+
readonly type: PropType<boolean>;
|
|
1888
|
+
readonly required: false;
|
|
1889
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1890
|
+
__epPropKey: true;
|
|
1891
|
+
} & {
|
|
1892
|
+
readonly default: true;
|
|
1893
|
+
};
|
|
1894
|
+
readonly showTimeout: {
|
|
1895
|
+
readonly type: PropType<number>;
|
|
1896
|
+
readonly required: false;
|
|
1897
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1898
|
+
__epPropKey: true;
|
|
1899
|
+
} & {
|
|
1900
|
+
readonly default: 150;
|
|
1901
|
+
};
|
|
1902
|
+
readonly hideTimeout: {
|
|
1903
|
+
readonly type: PropType<number>;
|
|
1904
|
+
readonly required: false;
|
|
1905
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1906
|
+
__epPropKey: true;
|
|
1907
|
+
} & {
|
|
1908
|
+
readonly default: 150;
|
|
1909
|
+
};
|
|
1910
|
+
readonly tabindex: {
|
|
1911
|
+
readonly type: PropType<string | number>;
|
|
1912
|
+
readonly required: false;
|
|
1913
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1914
|
+
__epPropKey: true;
|
|
1915
|
+
} & {
|
|
1916
|
+
readonly default: 0;
|
|
1917
|
+
};
|
|
1918
|
+
readonly maxHeight: {
|
|
1919
|
+
readonly type: PropType<string | number>;
|
|
1920
|
+
readonly required: false;
|
|
1921
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1922
|
+
__epPropKey: true;
|
|
1923
|
+
} & {
|
|
1924
|
+
readonly default: "";
|
|
1925
|
+
};
|
|
1926
|
+
readonly popperClass: {
|
|
1927
|
+
readonly type: PropType<string>;
|
|
1928
|
+
readonly required: false;
|
|
1929
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1930
|
+
__epPropKey: true;
|
|
1931
|
+
} & {
|
|
1932
|
+
readonly default: "";
|
|
1933
|
+
};
|
|
1934
|
+
readonly disabled: BooleanConstructor;
|
|
1935
|
+
readonly role: {
|
|
1936
|
+
readonly type: PropType<"dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation">;
|
|
1937
|
+
readonly required: false;
|
|
1938
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1939
|
+
__epPropKey: true;
|
|
1940
|
+
} & {
|
|
1941
|
+
readonly default: "menu";
|
|
1942
|
+
};
|
|
1943
|
+
readonly buttonProps: {
|
|
1944
|
+
readonly type: PropType<Partial< ButtonProps>>;
|
|
1945
|
+
readonly required: false;
|
|
1946
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1947
|
+
__epPropKey: true;
|
|
1948
|
+
};
|
|
1949
|
+
readonly teleported: {
|
|
1950
|
+
readonly type: PropType<boolean>;
|
|
1951
|
+
readonly required: false;
|
|
1952
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1953
|
+
__epPropKey: true;
|
|
1954
|
+
} & {
|
|
1955
|
+
readonly default: true;
|
|
1956
|
+
};
|
|
1957
|
+
readonly persistent: {
|
|
1958
|
+
readonly type: PropType<boolean>;
|
|
1959
|
+
readonly required: false;
|
|
1960
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1961
|
+
__epPropKey: true;
|
|
1962
|
+
} & {
|
|
1963
|
+
readonly default: true;
|
|
1964
|
+
};
|
|
1965
|
+
}>> & {
|
|
1966
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
1967
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1968
|
+
onCommand?: ((...args: any[]) => any) | undefined;
|
|
1969
|
+
}, {
|
|
1970
|
+
t: Translator;
|
|
1971
|
+
ns: {
|
|
1972
|
+
namespace: ComputedRef<string>;
|
|
1973
|
+
b: (blockSuffix?: string) => string;
|
|
1974
|
+
e: (element?: string) => string;
|
|
1975
|
+
m: (modifier?: string) => string;
|
|
1976
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
1977
|
+
em: (element?: string, modifier?: string) => string;
|
|
1978
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
1979
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
1980
|
+
is: {
|
|
1981
|
+
(name: string, state: boolean | undefined): string;
|
|
1982
|
+
(name: string): string;
|
|
1983
|
+
};
|
|
1984
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1985
|
+
cssVarName: (name: string) => string;
|
|
1986
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1987
|
+
cssVarBlockName: (name: string) => string;
|
|
1988
|
+
};
|
|
1989
|
+
scrollbar: Ref<null>;
|
|
1990
|
+
wrapStyle: ComputedRef<CSSProperties>;
|
|
1991
|
+
dropdownTriggerKls: ComputedRef<string[]>;
|
|
1992
|
+
dropdownSize: ComputedRef<"" | "small" | "default" | "large">;
|
|
1993
|
+
triggerId: ComputedRef<string>;
|
|
1994
|
+
currentTabId: Ref<string | null>;
|
|
1995
|
+
handleCurrentTabIdChange: (id: string) => void;
|
|
1996
|
+
handlerMainButtonClick: (event: MouseEvent) => void;
|
|
1997
|
+
handleEntryFocus: (e: Event) => void;
|
|
1998
|
+
handleClose: () => void;
|
|
1999
|
+
handleOpen: () => void;
|
|
2000
|
+
handleBeforeShowTooltip: () => void;
|
|
2001
|
+
handleShowTooltip: (event?: Event) => void;
|
|
2002
|
+
handleBeforeHideTooltip: () => void;
|
|
2003
|
+
onFocusAfterTrapped: (e: Event) => void;
|
|
2004
|
+
popperRef: Ref< TooltipInstance | undefined>;
|
|
2005
|
+
contentRef: Ref<HTMLElement | undefined>;
|
|
2006
|
+
triggeringElementRef: Ref<any>;
|
|
2007
|
+
referenceElementRef: Ref<any>;
|
|
2008
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "visible-change" | "command")[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
2009
|
+
readonly disabled: boolean;
|
|
2010
|
+
readonly maxHeight: string | number;
|
|
2011
|
+
readonly size: string;
|
|
2012
|
+
readonly placement: Placement;
|
|
2013
|
+
readonly effect: PopperEffect;
|
|
2014
|
+
readonly trigger: TooltipTriggerType | TooltipTriggerType[];
|
|
2015
|
+
readonly tabindex: string | number;
|
|
2016
|
+
readonly role: "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation";
|
|
2017
|
+
readonly loop: boolean;
|
|
2018
|
+
readonly popperOptions: Partial< Options>;
|
|
2019
|
+
readonly popperClass: string;
|
|
2020
|
+
readonly triggerKeys: string[];
|
|
2021
|
+
readonly teleported: boolean;
|
|
2022
|
+
readonly persistent: boolean;
|
|
2023
|
+
readonly hideOnClick: boolean;
|
|
2024
|
+
readonly showTimeout: number;
|
|
2025
|
+
readonly hideTimeout: number;
|
|
2026
|
+
readonly splitButton: boolean;
|
|
2027
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
2028
|
+
P: {};
|
|
2029
|
+
B: {};
|
|
2030
|
+
D: {};
|
|
2031
|
+
C: {};
|
|
2032
|
+
M: {};
|
|
2033
|
+
Defaults: {};
|
|
2034
|
+
}, Readonly< ExtractPropTypes<{
|
|
2035
|
+
readonly trigger: {
|
|
2036
|
+
readonly type: PropType< TooltipTriggerType | TooltipTriggerType[]>;
|
|
2037
|
+
readonly required: false;
|
|
2038
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2039
|
+
__epPropKey: true;
|
|
2040
|
+
} & {
|
|
2041
|
+
readonly default: "hover";
|
|
2042
|
+
};
|
|
2043
|
+
readonly triggerKeys: {
|
|
2044
|
+
readonly type: PropType<string[]>;
|
|
2045
|
+
readonly required: false;
|
|
2046
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2047
|
+
__epPropKey: true;
|
|
2048
|
+
} & {
|
|
2049
|
+
readonly default: () => string[];
|
|
2050
|
+
};
|
|
2051
|
+
readonly effect: {
|
|
2052
|
+
readonly default: "light";
|
|
2053
|
+
readonly type: PropType<PopperEffect>;
|
|
2054
|
+
readonly required: false;
|
|
2055
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2056
|
+
readonly __epPropKey: true;
|
|
2057
|
+
};
|
|
2058
|
+
readonly type: {
|
|
2059
|
+
readonly type: PropType<"" | "default" | "text" | "success" | "primary" | "warning" | "info" | "danger">;
|
|
2060
|
+
readonly required: false;
|
|
2061
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2062
|
+
__epPropKey: true;
|
|
2063
|
+
};
|
|
2064
|
+
readonly placement: {
|
|
2065
|
+
readonly type: PropType<Placement>;
|
|
2066
|
+
readonly required: false;
|
|
2067
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2068
|
+
__epPropKey: true;
|
|
2069
|
+
} & {
|
|
2070
|
+
readonly default: "bottom";
|
|
2071
|
+
};
|
|
2072
|
+
readonly popperOptions: {
|
|
2073
|
+
readonly type: PropType<Partial< Options>>;
|
|
2074
|
+
readonly required: false;
|
|
2075
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2076
|
+
__epPropKey: true;
|
|
2077
|
+
} & {
|
|
2078
|
+
readonly default: () => {};
|
|
2079
|
+
};
|
|
2080
|
+
readonly id: StringConstructor;
|
|
2081
|
+
readonly size: {
|
|
2082
|
+
readonly type: PropType<string>;
|
|
2083
|
+
readonly required: false;
|
|
2084
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2085
|
+
__epPropKey: true;
|
|
2086
|
+
} & {
|
|
2087
|
+
readonly default: "";
|
|
2088
|
+
};
|
|
2089
|
+
readonly splitButton: BooleanConstructor;
|
|
2090
|
+
readonly hideOnClick: {
|
|
2091
|
+
readonly type: PropType<boolean>;
|
|
2092
|
+
readonly required: false;
|
|
2093
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2094
|
+
__epPropKey: true;
|
|
2095
|
+
} & {
|
|
2096
|
+
readonly default: true;
|
|
2097
|
+
};
|
|
2098
|
+
readonly loop: {
|
|
2099
|
+
readonly type: PropType<boolean>;
|
|
2100
|
+
readonly required: false;
|
|
2101
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2102
|
+
__epPropKey: true;
|
|
2103
|
+
} & {
|
|
2104
|
+
readonly default: true;
|
|
2105
|
+
};
|
|
2106
|
+
readonly showTimeout: {
|
|
2107
|
+
readonly type: PropType<number>;
|
|
2108
|
+
readonly required: false;
|
|
2109
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2110
|
+
__epPropKey: true;
|
|
2111
|
+
} & {
|
|
2112
|
+
readonly default: 150;
|
|
2113
|
+
};
|
|
2114
|
+
readonly hideTimeout: {
|
|
2115
|
+
readonly type: PropType<number>;
|
|
2116
|
+
readonly required: false;
|
|
2117
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2118
|
+
__epPropKey: true;
|
|
2119
|
+
} & {
|
|
2120
|
+
readonly default: 150;
|
|
2121
|
+
};
|
|
2122
|
+
readonly tabindex: {
|
|
2123
|
+
readonly type: PropType<string | number>;
|
|
2124
|
+
readonly required: false;
|
|
2125
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2126
|
+
__epPropKey: true;
|
|
2127
|
+
} & {
|
|
2128
|
+
readonly default: 0;
|
|
2129
|
+
};
|
|
2130
|
+
readonly maxHeight: {
|
|
2131
|
+
readonly type: PropType<string | number>;
|
|
2132
|
+
readonly required: false;
|
|
2133
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2134
|
+
__epPropKey: true;
|
|
2135
|
+
} & {
|
|
2136
|
+
readonly default: "";
|
|
2137
|
+
};
|
|
2138
|
+
readonly popperClass: {
|
|
2139
|
+
readonly type: PropType<string>;
|
|
2140
|
+
readonly required: false;
|
|
2141
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2142
|
+
__epPropKey: true;
|
|
2143
|
+
} & {
|
|
2144
|
+
readonly default: "";
|
|
2145
|
+
};
|
|
2146
|
+
readonly disabled: BooleanConstructor;
|
|
2147
|
+
readonly role: {
|
|
2148
|
+
readonly type: PropType<"dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation">;
|
|
2149
|
+
readonly required: false;
|
|
2150
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2151
|
+
__epPropKey: true;
|
|
2152
|
+
} & {
|
|
2153
|
+
readonly default: "menu";
|
|
2154
|
+
};
|
|
2155
|
+
readonly buttonProps: {
|
|
2156
|
+
readonly type: PropType<Partial< ButtonProps>>;
|
|
2157
|
+
readonly required: false;
|
|
2158
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2159
|
+
__epPropKey: true;
|
|
2160
|
+
};
|
|
2161
|
+
readonly teleported: {
|
|
2162
|
+
readonly type: PropType<boolean>;
|
|
2163
|
+
readonly required: false;
|
|
2164
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2165
|
+
__epPropKey: true;
|
|
2166
|
+
} & {
|
|
2167
|
+
readonly default: true;
|
|
2168
|
+
};
|
|
2169
|
+
readonly persistent: {
|
|
2170
|
+
readonly type: PropType<boolean>;
|
|
2171
|
+
readonly required: false;
|
|
2172
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2173
|
+
__epPropKey: true;
|
|
2174
|
+
} & {
|
|
2175
|
+
readonly default: true;
|
|
2176
|
+
};
|
|
2177
|
+
}>> & {
|
|
2178
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
2179
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
2180
|
+
onCommand?: ((...args: any[]) => any) | undefined;
|
|
2181
|
+
}, {
|
|
2182
|
+
t: Translator;
|
|
2183
|
+
ns: {
|
|
2184
|
+
namespace: ComputedRef<string>;
|
|
2185
|
+
b: (blockSuffix?: string) => string;
|
|
2186
|
+
e: (element?: string) => string;
|
|
2187
|
+
m: (modifier?: string) => string;
|
|
2188
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
2189
|
+
em: (element?: string, modifier?: string) => string;
|
|
2190
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
2191
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
2192
|
+
is: {
|
|
2193
|
+
(name: string, state: boolean | undefined): string;
|
|
2194
|
+
(name: string): string;
|
|
2195
|
+
};
|
|
2196
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
2197
|
+
cssVarName: (name: string) => string;
|
|
2198
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
2199
|
+
cssVarBlockName: (name: string) => string;
|
|
2200
|
+
};
|
|
2201
|
+
scrollbar: Ref<null>;
|
|
2202
|
+
wrapStyle: ComputedRef<CSSProperties>;
|
|
2203
|
+
dropdownTriggerKls: ComputedRef<string[]>;
|
|
2204
|
+
dropdownSize: ComputedRef<"" | "small" | "default" | "large">;
|
|
2205
|
+
triggerId: ComputedRef<string>;
|
|
2206
|
+
currentTabId: Ref<string | null>;
|
|
2207
|
+
handleCurrentTabIdChange: (id: string) => void;
|
|
2208
|
+
handlerMainButtonClick: (event: MouseEvent) => void;
|
|
2209
|
+
handleEntryFocus: (e: Event) => void;
|
|
2210
|
+
handleClose: () => void;
|
|
2211
|
+
handleOpen: () => void;
|
|
2212
|
+
handleBeforeShowTooltip: () => void;
|
|
2213
|
+
handleShowTooltip: (event?: Event) => void;
|
|
2214
|
+
handleBeforeHideTooltip: () => void;
|
|
2215
|
+
onFocusAfterTrapped: (e: Event) => void;
|
|
2216
|
+
popperRef: Ref< TooltipInstance | undefined>;
|
|
2217
|
+
contentRef: Ref<HTMLElement | undefined>;
|
|
2218
|
+
triggeringElementRef: Ref<any>;
|
|
2219
|
+
referenceElementRef: Ref<any>;
|
|
2220
|
+
}, {}, {}, {}, {
|
|
2221
|
+
readonly disabled: boolean;
|
|
2222
|
+
readonly maxHeight: string | number;
|
|
2223
|
+
readonly size: string;
|
|
2224
|
+
readonly placement: Placement;
|
|
2225
|
+
readonly effect: PopperEffect;
|
|
2226
|
+
readonly trigger: TooltipTriggerType | TooltipTriggerType[];
|
|
2227
|
+
readonly tabindex: string | number;
|
|
2228
|
+
readonly role: "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation";
|
|
2229
|
+
readonly loop: boolean;
|
|
2230
|
+
readonly popperOptions: Partial< Options>;
|
|
2231
|
+
readonly popperClass: string;
|
|
2232
|
+
readonly triggerKeys: string[];
|
|
2233
|
+
readonly teleported: boolean;
|
|
2234
|
+
readonly persistent: boolean;
|
|
2235
|
+
readonly hideOnClick: boolean;
|
|
2236
|
+
readonly showTimeout: number;
|
|
2237
|
+
readonly hideTimeout: number;
|
|
2238
|
+
readonly splitButton: boolean;
|
|
2239
|
+
}>;
|
|
2240
|
+
}, HTMLDivElement>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
|
|
2241
|
+
xyFilters?: data;
|
|
2242
|
+
filterKey: string;
|
|
2243
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2244
|
+
filterChange: (...args: any[]) => void;
|
|
2245
|
+
}, string, PublicProps, Readonly<{
|
|
2246
|
+
xyFilters?: data;
|
|
2247
|
+
filterKey: string;
|
|
2248
|
+
}> & Readonly<{
|
|
2249
|
+
onFilterChange?: (...args: any[]) => any;
|
|
2250
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>> & Record<string, any>))[];
|
|
2251
|
+
export default _default;
|