@dazhicheng/ui 1.5.1 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/tt-button/index.d.ts +476 -476
- package/dist/components/tt-button/index.vue.d.ts +272 -272
- package/dist/components/tt-checkbox/index.d.ts +5 -5
- package/dist/components/tt-checkbox/index.vue.d.ts +2 -2
- package/dist/components/tt-drawer/index.d.ts +540 -540
- package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +297 -297
- package/dist/components/tt-form/src/form/RenderContent.vue.d.ts +2 -2
- package/dist/components/tt-form/src/form-render/dependencies.d.ts +118 -118
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +196 -196
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +98 -98
- package/dist/components/tt-icon/index.d.ts +3 -3
- package/dist/components/tt-icon/index.vue.d.ts +1 -1
- package/dist/components/tt-image/index.d.ts +5 -5
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +2 -2
- package/dist/components/tt-image/tt-image.d.ts +5 -5
- package/dist/components/tt-loading/index.d.ts +3 -3
- package/dist/components/tt-loading/src/loading.vue.d.ts +3 -3
- package/dist/components/tt-modal/index.d.ts +184 -184
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +101 -101
- package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +10 -10
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +33 -33
- package/dist/components/tt-part/index.d.ts +12 -12
- package/dist/components/tt-part/index.vue.d.ts +4 -4
- package/dist/components/tt-select/src/Select.vue.d.ts +89 -89
- package/dist/components/tt-select/src/components/SelectTable.vue.d.ts +7 -7
- package/dist/components/tt-select/src/components/Table.vue.d.ts +9 -9
- package/dist/components/tt-table/src/Table.vue.d.ts +185 -179
- package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +1 -1
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +198 -228
- package/dist/components/tt-table/src/hooks/useCustomColumns.d.ts +1 -5
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +128 -128
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +7 -8
- package/dist/components/tt-table/src/props.d.ts +8 -5
- package/dist/components/tt-table/src/toolProps.d.ts +3 -21
- package/dist/components/tt-table/src/types/table.d.ts +8 -11
- package/dist/components/tt-table/src/types/tableTools.d.ts +2 -13
- package/dist/components/tt-text/index.d.ts +3 -3
- package/dist/components/tt-text/index.vue.d.ts +1 -1
- package/dist/components/tt-validate/src/Field.d.ts +4 -4
- package/dist/components/tt-validate/src/Form.d.ts +1 -1
- package/dist/components/tt-validate/src/utils/assertions.d.ts +1 -1
- package/dist/components/types.d.ts +10 -33
- package/dist/index.js +5942 -5976
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -43,28 +43,28 @@ declare function __VLS_template(): {
|
|
|
43
43
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
44
44
|
}> & Omit<{
|
|
45
45
|
readonly height: number | string;
|
|
46
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
47
46
|
readonly maxHeight: number | string;
|
|
48
47
|
readonly distance: number;
|
|
49
48
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
50
49
|
readonly wrapClass: string | string[];
|
|
51
50
|
readonly viewClass: string | string[];
|
|
52
51
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
52
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
53
53
|
readonly minSize: number;
|
|
54
54
|
readonly id?: string | undefined;
|
|
55
55
|
readonly ariaLabel?: string | undefined;
|
|
56
56
|
readonly role?: string | undefined;
|
|
57
|
-
readonly tabindex?: number | string | undefined;
|
|
58
57
|
readonly native?: boolean | undefined;
|
|
59
58
|
readonly noresize?: boolean | undefined;
|
|
60
59
|
readonly always?: boolean | undefined;
|
|
60
|
+
readonly tabindex?: number | string | undefined;
|
|
61
61
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
62
62
|
onScroll?: ((args_0: {
|
|
63
63
|
scrollTop: number;
|
|
64
64
|
scrollLeft: number;
|
|
65
65
|
}) => any) | undefined | undefined;
|
|
66
66
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
67
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
67
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
68
68
|
$attrs: {
|
|
69
69
|
[x: string]: unknown;
|
|
70
70
|
};
|
|
@@ -86,28 +86,20 @@ declare function __VLS_template(): {
|
|
|
86
86
|
id: {
|
|
87
87
|
type: import('vue').PropType<string>;
|
|
88
88
|
};
|
|
89
|
-
ariaLabel: {
|
|
90
|
-
type: import('vue').PropType<string>;
|
|
91
|
-
};
|
|
92
|
-
role: {
|
|
93
|
-
type: import('vue').PropType<string>;
|
|
94
|
-
};
|
|
95
89
|
height: {
|
|
96
90
|
type: import('vue').PropType<string | number>;
|
|
97
91
|
default: string;
|
|
98
92
|
};
|
|
99
|
-
tag: {
|
|
100
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
101
|
-
default: string;
|
|
102
|
-
};
|
|
103
|
-
tabindex: {
|
|
104
|
-
type: import('vue').PropType<string | number>;
|
|
105
|
-
default: undefined;
|
|
106
|
-
};
|
|
107
93
|
maxHeight: {
|
|
108
94
|
type: import('vue').PropType<string | number>;
|
|
109
95
|
default: string;
|
|
110
96
|
};
|
|
97
|
+
ariaLabel: {
|
|
98
|
+
type: import('vue').PropType<string>;
|
|
99
|
+
};
|
|
100
|
+
role: {
|
|
101
|
+
type: import('vue').PropType<string>;
|
|
102
|
+
};
|
|
111
103
|
distance: {
|
|
112
104
|
type: import('vue').PropType<number>;
|
|
113
105
|
default: number;
|
|
@@ -134,6 +126,10 @@ declare function __VLS_template(): {
|
|
|
134
126
|
noresize: {
|
|
135
127
|
type: import('vue').PropType<boolean>;
|
|
136
128
|
};
|
|
129
|
+
tag: {
|
|
130
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
137
133
|
always: {
|
|
138
134
|
type: import('vue').PropType<boolean>;
|
|
139
135
|
};
|
|
@@ -141,6 +137,10 @@ declare function __VLS_template(): {
|
|
|
141
137
|
type: import('vue').PropType<number>;
|
|
142
138
|
default: number;
|
|
143
139
|
};
|
|
140
|
+
tabindex: {
|
|
141
|
+
type: import('vue').PropType<string | number>;
|
|
142
|
+
default: undefined;
|
|
143
|
+
};
|
|
144
144
|
ariaOrientation: {
|
|
145
145
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
146
146
|
};
|
|
@@ -212,28 +212,20 @@ declare function __VLS_template(): {
|
|
|
212
212
|
id: {
|
|
213
213
|
type: import('vue').PropType<string>;
|
|
214
214
|
};
|
|
215
|
-
ariaLabel: {
|
|
216
|
-
type: import('vue').PropType<string>;
|
|
217
|
-
};
|
|
218
|
-
role: {
|
|
219
|
-
type: import('vue').PropType<string>;
|
|
220
|
-
};
|
|
221
215
|
height: {
|
|
222
216
|
type: import('vue').PropType<string | number>;
|
|
223
217
|
default: string;
|
|
224
218
|
};
|
|
225
|
-
tag: {
|
|
226
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
227
|
-
default: string;
|
|
228
|
-
};
|
|
229
|
-
tabindex: {
|
|
230
|
-
type: import('vue').PropType<string | number>;
|
|
231
|
-
default: undefined;
|
|
232
|
-
};
|
|
233
219
|
maxHeight: {
|
|
234
220
|
type: import('vue').PropType<string | number>;
|
|
235
221
|
default: string;
|
|
236
222
|
};
|
|
223
|
+
ariaLabel: {
|
|
224
|
+
type: import('vue').PropType<string>;
|
|
225
|
+
};
|
|
226
|
+
role: {
|
|
227
|
+
type: import('vue').PropType<string>;
|
|
228
|
+
};
|
|
237
229
|
distance: {
|
|
238
230
|
type: import('vue').PropType<number>;
|
|
239
231
|
default: number;
|
|
@@ -260,6 +252,10 @@ declare function __VLS_template(): {
|
|
|
260
252
|
noresize: {
|
|
261
253
|
type: import('vue').PropType<boolean>;
|
|
262
254
|
};
|
|
255
|
+
tag: {
|
|
256
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
257
|
+
default: string;
|
|
258
|
+
};
|
|
263
259
|
always: {
|
|
264
260
|
type: import('vue').PropType<boolean>;
|
|
265
261
|
};
|
|
@@ -267,6 +263,10 @@ declare function __VLS_template(): {
|
|
|
267
263
|
type: import('vue').PropType<number>;
|
|
268
264
|
default: number;
|
|
269
265
|
};
|
|
266
|
+
tabindex: {
|
|
267
|
+
type: import('vue').PropType<string | number>;
|
|
268
|
+
default: undefined;
|
|
269
|
+
};
|
|
270
270
|
ariaOrientation: {
|
|
271
271
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
272
272
|
};
|
|
@@ -276,7 +276,7 @@ declare function __VLS_template(): {
|
|
|
276
276
|
scrollLeft: number;
|
|
277
277
|
}) => any) | undefined;
|
|
278
278
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
279
|
-
}, "height" | "
|
|
279
|
+
}, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
|
|
280
280
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
281
281
|
update: () => void;
|
|
282
282
|
scrollTo: {
|
|
@@ -307,28 +307,28 @@ declare function __VLS_template(): {
|
|
|
307
307
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
308
308
|
}> & Omit<{
|
|
309
309
|
readonly height: number | string;
|
|
310
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
311
310
|
readonly maxHeight: number | string;
|
|
312
311
|
readonly distance: number;
|
|
313
312
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
314
313
|
readonly wrapClass: string | string[];
|
|
315
314
|
readonly viewClass: string | string[];
|
|
316
315
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
316
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
317
317
|
readonly minSize: number;
|
|
318
318
|
readonly id?: string | undefined;
|
|
319
319
|
readonly ariaLabel?: string | undefined;
|
|
320
320
|
readonly role?: string | undefined;
|
|
321
|
-
readonly tabindex?: number | string | undefined;
|
|
322
321
|
readonly native?: boolean | undefined;
|
|
323
322
|
readonly noresize?: boolean | undefined;
|
|
324
323
|
readonly always?: boolean | undefined;
|
|
324
|
+
readonly tabindex?: number | string | undefined;
|
|
325
325
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
326
326
|
onScroll?: ((args_0: {
|
|
327
327
|
scrollTop: number;
|
|
328
328
|
scrollLeft: number;
|
|
329
329
|
}) => any) | undefined | undefined;
|
|
330
330
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
331
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
331
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
332
332
|
$attrs: {
|
|
333
333
|
[x: string]: unknown;
|
|
334
334
|
};
|
|
@@ -350,28 +350,20 @@ declare function __VLS_template(): {
|
|
|
350
350
|
id: {
|
|
351
351
|
type: import('vue').PropType<string>;
|
|
352
352
|
};
|
|
353
|
-
ariaLabel: {
|
|
354
|
-
type: import('vue').PropType<string>;
|
|
355
|
-
};
|
|
356
|
-
role: {
|
|
357
|
-
type: import('vue').PropType<string>;
|
|
358
|
-
};
|
|
359
353
|
height: {
|
|
360
354
|
type: import('vue').PropType<string | number>;
|
|
361
355
|
default: string;
|
|
362
356
|
};
|
|
363
|
-
tag: {
|
|
364
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
365
|
-
default: string;
|
|
366
|
-
};
|
|
367
|
-
tabindex: {
|
|
368
|
-
type: import('vue').PropType<string | number>;
|
|
369
|
-
default: undefined;
|
|
370
|
-
};
|
|
371
357
|
maxHeight: {
|
|
372
358
|
type: import('vue').PropType<string | number>;
|
|
373
359
|
default: string;
|
|
374
360
|
};
|
|
361
|
+
ariaLabel: {
|
|
362
|
+
type: import('vue').PropType<string>;
|
|
363
|
+
};
|
|
364
|
+
role: {
|
|
365
|
+
type: import('vue').PropType<string>;
|
|
366
|
+
};
|
|
375
367
|
distance: {
|
|
376
368
|
type: import('vue').PropType<number>;
|
|
377
369
|
default: number;
|
|
@@ -398,6 +390,10 @@ declare function __VLS_template(): {
|
|
|
398
390
|
noresize: {
|
|
399
391
|
type: import('vue').PropType<boolean>;
|
|
400
392
|
};
|
|
393
|
+
tag: {
|
|
394
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
395
|
+
default: string;
|
|
396
|
+
};
|
|
401
397
|
always: {
|
|
402
398
|
type: import('vue').PropType<boolean>;
|
|
403
399
|
};
|
|
@@ -405,6 +401,10 @@ declare function __VLS_template(): {
|
|
|
405
401
|
type: import('vue').PropType<number>;
|
|
406
402
|
default: number;
|
|
407
403
|
};
|
|
404
|
+
tabindex: {
|
|
405
|
+
type: import('vue').PropType<string | number>;
|
|
406
|
+
default: undefined;
|
|
407
|
+
};
|
|
408
408
|
ariaOrientation: {
|
|
409
409
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
410
410
|
};
|
|
@@ -476,28 +476,20 @@ declare function __VLS_template(): {
|
|
|
476
476
|
id: {
|
|
477
477
|
type: import('vue').PropType<string>;
|
|
478
478
|
};
|
|
479
|
-
ariaLabel: {
|
|
480
|
-
type: import('vue').PropType<string>;
|
|
481
|
-
};
|
|
482
|
-
role: {
|
|
483
|
-
type: import('vue').PropType<string>;
|
|
484
|
-
};
|
|
485
479
|
height: {
|
|
486
480
|
type: import('vue').PropType<string | number>;
|
|
487
481
|
default: string;
|
|
488
482
|
};
|
|
489
|
-
tag: {
|
|
490
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
491
|
-
default: string;
|
|
492
|
-
};
|
|
493
|
-
tabindex: {
|
|
494
|
-
type: import('vue').PropType<string | number>;
|
|
495
|
-
default: undefined;
|
|
496
|
-
};
|
|
497
483
|
maxHeight: {
|
|
498
484
|
type: import('vue').PropType<string | number>;
|
|
499
485
|
default: string;
|
|
500
486
|
};
|
|
487
|
+
ariaLabel: {
|
|
488
|
+
type: import('vue').PropType<string>;
|
|
489
|
+
};
|
|
490
|
+
role: {
|
|
491
|
+
type: import('vue').PropType<string>;
|
|
492
|
+
};
|
|
501
493
|
distance: {
|
|
502
494
|
type: import('vue').PropType<number>;
|
|
503
495
|
default: number;
|
|
@@ -524,6 +516,10 @@ declare function __VLS_template(): {
|
|
|
524
516
|
noresize: {
|
|
525
517
|
type: import('vue').PropType<boolean>;
|
|
526
518
|
};
|
|
519
|
+
tag: {
|
|
520
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
521
|
+
default: string;
|
|
522
|
+
};
|
|
527
523
|
always: {
|
|
528
524
|
type: import('vue').PropType<boolean>;
|
|
529
525
|
};
|
|
@@ -531,6 +527,10 @@ declare function __VLS_template(): {
|
|
|
531
527
|
type: import('vue').PropType<number>;
|
|
532
528
|
default: number;
|
|
533
529
|
};
|
|
530
|
+
tabindex: {
|
|
531
|
+
type: import('vue').PropType<string | number>;
|
|
532
|
+
default: undefined;
|
|
533
|
+
};
|
|
534
534
|
ariaOrientation: {
|
|
535
535
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
536
536
|
};
|
|
@@ -540,7 +540,7 @@ declare function __VLS_template(): {
|
|
|
540
540
|
scrollLeft: number;
|
|
541
541
|
}) => any) | undefined;
|
|
542
542
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
543
|
-
}, "height" | "
|
|
543
|
+
}, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
|
|
544
544
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
545
545
|
update: () => void;
|
|
546
546
|
scrollTo: {
|
|
@@ -585,7 +585,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
585
585
|
default: () => never[];
|
|
586
586
|
};
|
|
587
587
|
height: {
|
|
588
|
-
type: (
|
|
588
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
589
589
|
default: undefined;
|
|
590
590
|
};
|
|
591
591
|
showOverflow: {
|
|
@@ -633,7 +633,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
633
633
|
};
|
|
634
634
|
showLineHeight: {
|
|
635
635
|
type: BooleanConstructor;
|
|
636
|
-
default: () =>
|
|
636
|
+
default: () => any;
|
|
637
637
|
};
|
|
638
638
|
notSetColumnField: any;
|
|
639
639
|
filterNoVisibleField: any;
|
|
@@ -648,7 +648,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
648
648
|
};
|
|
649
649
|
immediate: any;
|
|
650
650
|
resultCode: {
|
|
651
|
-
type: (
|
|
651
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
652
652
|
default: number;
|
|
653
653
|
};
|
|
654
654
|
afterFetch: {
|
|
@@ -754,7 +754,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
754
754
|
default: () => string | undefined;
|
|
755
755
|
};
|
|
756
756
|
isHanderSubmit: any;
|
|
757
|
-
columnsKey:
|
|
757
|
+
columnsKey: {
|
|
758
|
+
type: import('vue').PropType<string | (() => string)>;
|
|
759
|
+
default: string;
|
|
760
|
+
};
|
|
758
761
|
useHttpCache: {
|
|
759
762
|
type: BooleanConstructor;
|
|
760
763
|
default: () => boolean | undefined;
|
|
@@ -863,7 +866,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
863
866
|
default: () => never[];
|
|
864
867
|
};
|
|
865
868
|
height: {
|
|
866
|
-
type: (
|
|
869
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
867
870
|
default: undefined;
|
|
868
871
|
};
|
|
869
872
|
showOverflow: {
|
|
@@ -911,7 +914,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
911
914
|
};
|
|
912
915
|
showLineHeight: {
|
|
913
916
|
type: BooleanConstructor;
|
|
914
|
-
default: () =>
|
|
917
|
+
default: () => any;
|
|
915
918
|
};
|
|
916
919
|
notSetColumnField: any;
|
|
917
920
|
filterNoVisibleField: any;
|
|
@@ -926,7 +929,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
926
929
|
};
|
|
927
930
|
immediate: any;
|
|
928
931
|
resultCode: {
|
|
929
|
-
type: (
|
|
932
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
930
933
|
default: number;
|
|
931
934
|
};
|
|
932
935
|
afterFetch: {
|
|
@@ -1032,7 +1035,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1032
1035
|
default: () => string | undefined;
|
|
1033
1036
|
};
|
|
1034
1037
|
isHanderSubmit: any;
|
|
1035
|
-
columnsKey:
|
|
1038
|
+
columnsKey: {
|
|
1039
|
+
type: import('vue').PropType<string | (() => string)>;
|
|
1040
|
+
default: string;
|
|
1041
|
+
};
|
|
1036
1042
|
useHttpCache: {
|
|
1037
1043
|
type: BooleanConstructor;
|
|
1038
1044
|
default: () => boolean | undefined;
|
|
@@ -1062,20 +1068,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1062
1068
|
default: undefined;
|
|
1063
1069
|
};
|
|
1064
1070
|
}>> & Readonly<{}>, {
|
|
1065
|
-
|
|
1066
|
-
|
|
1071
|
+
currentPageField: string;
|
|
1072
|
+
pageSizeField: string;
|
|
1073
|
+
totalField: string;
|
|
1074
|
+
dataField: string;
|
|
1075
|
+
tableRowId: string;
|
|
1076
|
+
resultCode: string | number;
|
|
1077
|
+
loadingText: string;
|
|
1078
|
+
emptyText: string;
|
|
1079
|
+
noSearchText: string;
|
|
1080
|
+
useHttpCache: boolean;
|
|
1081
|
+
showSetting: boolean;
|
|
1082
|
+
showRefresh: boolean;
|
|
1067
1083
|
size: import('vxe-pc-ui').VxeComponentSizeType | undefined;
|
|
1068
|
-
|
|
1069
|
-
height: string | number;
|
|
1070
|
-
modelValue: unknown[];
|
|
1084
|
+
columnsKey: string | (() => string);
|
|
1071
1085
|
total: any;
|
|
1072
|
-
|
|
1073
|
-
pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
|
|
1074
|
-
showPager: any;
|
|
1075
|
-
showCheckbox: any;
|
|
1086
|
+
data: import('vue').MaybeRef<any[]> | undefined;
|
|
1076
1087
|
columns: import('vue').MaybeRef<VxeTableDefines.ColumnOptions<any>[]> | undefined;
|
|
1088
|
+
pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
|
|
1077
1089
|
toolbarConfig: import("vxe-table").VxeGridPropTypes.ToolbarConfig | undefined;
|
|
1078
1090
|
zoomConfig: import("vxe-table").VxeGridPropTypes.ZoomConfig | undefined;
|
|
1091
|
+
height: string | number;
|
|
1079
1092
|
showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
1080
1093
|
showHeaderOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
1081
1094
|
radioConfig: import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row>;
|
|
@@ -1083,13 +1096,30 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1083
1096
|
menuConfig: import("vxe-table").VxeTablePropTypes.MenuConfig<any>;
|
|
1084
1097
|
mouseConfig: import("vxe-table").VxeTablePropTypes.MouseConfig;
|
|
1085
1098
|
keyboardConfig: import("vxe-table").VxeTablePropTypes.KeyboardConfig<any>;
|
|
1086
|
-
|
|
1087
|
-
|
|
1099
|
+
afterFetch: ((data: import("vxe-table").VxeTablePropTypes.Row[], res: globalThis.Recordable) => Promise<import("vxe-table").VxeTablePropTypes.Row[]>) | undefined;
|
|
1100
|
+
beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
|
|
1101
|
+
title: any;
|
|
1102
|
+
toolTipErrorPlacement: "top" | "bottom" | "left" | "right";
|
|
1103
|
+
showToolbar: any;
|
|
1104
|
+
columnsFieldSort: any;
|
|
1105
|
+
columnsFieldNoSort: any;
|
|
1106
|
+
showSetColumn: boolean;
|
|
1107
|
+
showLineHeight: boolean;
|
|
1108
|
+
notSetColumnField: any;
|
|
1109
|
+
filterNoVisibleField: any;
|
|
1110
|
+
showTableAlert: any;
|
|
1111
|
+
api: (...arg: any[]) => Promise<any>;
|
|
1112
|
+
searchInfo: Record<string, any>;
|
|
1113
|
+
immediate: any;
|
|
1114
|
+
isScrollFetch: boolean;
|
|
1115
|
+
showScrollFetchLoading: boolean;
|
|
1116
|
+
showCheckbox: any;
|
|
1088
1117
|
showRadio: any;
|
|
1089
1118
|
showIndex: any;
|
|
1090
1119
|
isCellResize: any;
|
|
1091
1120
|
isColumnsDrag: any;
|
|
1092
1121
|
isCellSort: any;
|
|
1122
|
+
isAreaCheckData: any;
|
|
1093
1123
|
showAction: any;
|
|
1094
1124
|
actionWidth: any;
|
|
1095
1125
|
actionTitle: any;
|
|
@@ -1098,49 +1128,25 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1098
1128
|
checkboxColumnProps: VxeTableDefines.ColumnOptions<any>;
|
|
1099
1129
|
rowDragColumnProps: VxeTableDefines.ColumnOptions<any>;
|
|
1100
1130
|
radioColumnProps: VxeTableDefines.ColumnOptions<any>;
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
columnsFieldSort: any;
|
|
1104
|
-
columnsFieldNoSort: any;
|
|
1105
|
-
notSetColumnField: any;
|
|
1106
|
-
filterNoVisibleField: any;
|
|
1107
|
-
showTableAlert: any;
|
|
1108
|
-
isRowDrag: any;
|
|
1109
|
-
treeNode: any;
|
|
1110
|
-
isScrollFetch: boolean;
|
|
1111
|
-
showScrollFetchLoading: boolean;
|
|
1112
|
-
tableRowId: string;
|
|
1113
|
-
currentPageField: string;
|
|
1114
|
-
pageSizeField: string;
|
|
1115
|
-
totalField: string;
|
|
1116
|
-
dataField: string;
|
|
1131
|
+
showPager: any;
|
|
1132
|
+
modelValue: unknown[];
|
|
1117
1133
|
showTitle: any;
|
|
1118
1134
|
autoHeight: any;
|
|
1119
1135
|
offsetHeight: any;
|
|
1120
|
-
|
|
1136
|
+
leftSlotWidth: any;
|
|
1137
|
+
rightSlotWidth: any;
|
|
1121
1138
|
emptyImageStyle: any;
|
|
1122
1139
|
emptyImageStatus: "no-data" | "no-search";
|
|
1123
1140
|
isHanderSubmit: any;
|
|
1124
|
-
columnsKey: any;
|
|
1125
|
-
showSetting: boolean;
|
|
1126
|
-
showSetColumn: boolean;
|
|
1127
|
-
leftSlotWidth: any;
|
|
1128
|
-
rightSlotWidth: any;
|
|
1129
|
-
showLineHeight: boolean;
|
|
1130
|
-
showRefresh: boolean;
|
|
1131
|
-
useHttpCache: boolean;
|
|
1132
1141
|
defaultDisplayFields: string[];
|
|
1142
|
+
isRowDrag: any;
|
|
1143
|
+
treeNode: any;
|
|
1144
|
+
clearTreeExpand: any;
|
|
1133
1145
|
isI18n: any;
|
|
1134
1146
|
isDataCloneDeep: any;
|
|
1135
1147
|
useSearchForm: any;
|
|
1136
|
-
testId: string;
|
|
1137
|
-
toolTipErrorPlacement: "top" | "bottom" | "left" | "right";
|
|
1138
|
-
isAreaCheckData: any;
|
|
1139
|
-
api: (...arg: any[]) => Promise<any>;
|
|
1140
|
-
resultCode: string | number;
|
|
1141
|
-
afterFetch: ((data: import("vxe-table").VxeTablePropTypes.Row[], res: globalThis.Recordable) => Promise<import("vxe-table").VxeTablePropTypes.Row[]>) | undefined;
|
|
1142
|
-
beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
|
|
1143
1148
|
disabledTeleport: any;
|
|
1149
|
+
testId: string;
|
|
1144
1150
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
1145
1151
|
wrapRef: HTMLDivElement;
|
|
1146
1152
|
xGrid: (import('vxe-table').VxeGridMethods<any> & {
|
|
@@ -1163,28 +1169,28 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1163
1169
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1164
1170
|
}> & Omit<{
|
|
1165
1171
|
readonly height: number | string;
|
|
1166
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1167
1172
|
readonly maxHeight: number | string;
|
|
1168
1173
|
readonly distance: number;
|
|
1169
1174
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1170
1175
|
readonly wrapClass: string | string[];
|
|
1171
1176
|
readonly viewClass: string | string[];
|
|
1172
1177
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1178
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1173
1179
|
readonly minSize: number;
|
|
1174
1180
|
readonly id?: string | undefined;
|
|
1175
1181
|
readonly ariaLabel?: string | undefined;
|
|
1176
1182
|
readonly role?: string | undefined;
|
|
1177
|
-
readonly tabindex?: number | string | undefined;
|
|
1178
1183
|
readonly native?: boolean | undefined;
|
|
1179
1184
|
readonly noresize?: boolean | undefined;
|
|
1180
1185
|
readonly always?: boolean | undefined;
|
|
1186
|
+
readonly tabindex?: number | string | undefined;
|
|
1181
1187
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
1182
1188
|
onScroll?: ((args_0: {
|
|
1183
1189
|
scrollTop: number;
|
|
1184
1190
|
scrollLeft: number;
|
|
1185
1191
|
}) => any) | undefined | undefined;
|
|
1186
1192
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1187
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
1193
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
1188
1194
|
$attrs: {
|
|
1189
1195
|
[x: string]: unknown;
|
|
1190
1196
|
};
|
|
@@ -1206,28 +1212,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1206
1212
|
id: {
|
|
1207
1213
|
type: import('vue').PropType<string>;
|
|
1208
1214
|
};
|
|
1209
|
-
ariaLabel: {
|
|
1210
|
-
type: import('vue').PropType<string>;
|
|
1211
|
-
};
|
|
1212
|
-
role: {
|
|
1213
|
-
type: import('vue').PropType<string>;
|
|
1214
|
-
};
|
|
1215
1215
|
height: {
|
|
1216
1216
|
type: import('vue').PropType<string | number>;
|
|
1217
1217
|
default: string;
|
|
1218
1218
|
};
|
|
1219
|
-
tag: {
|
|
1220
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1221
|
-
default: string;
|
|
1222
|
-
};
|
|
1223
|
-
tabindex: {
|
|
1224
|
-
type: import('vue').PropType<string | number>;
|
|
1225
|
-
default: undefined;
|
|
1226
|
-
};
|
|
1227
1219
|
maxHeight: {
|
|
1228
1220
|
type: import('vue').PropType<string | number>;
|
|
1229
1221
|
default: string;
|
|
1230
1222
|
};
|
|
1223
|
+
ariaLabel: {
|
|
1224
|
+
type: import('vue').PropType<string>;
|
|
1225
|
+
};
|
|
1226
|
+
role: {
|
|
1227
|
+
type: import('vue').PropType<string>;
|
|
1228
|
+
};
|
|
1231
1229
|
distance: {
|
|
1232
1230
|
type: import('vue').PropType<number>;
|
|
1233
1231
|
default: number;
|
|
@@ -1254,6 +1252,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1254
1252
|
noresize: {
|
|
1255
1253
|
type: import('vue').PropType<boolean>;
|
|
1256
1254
|
};
|
|
1255
|
+
tag: {
|
|
1256
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
1257
|
+
default: string;
|
|
1258
|
+
};
|
|
1257
1259
|
always: {
|
|
1258
1260
|
type: import('vue').PropType<boolean>;
|
|
1259
1261
|
};
|
|
@@ -1261,6 +1263,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1261
1263
|
type: import('vue').PropType<number>;
|
|
1262
1264
|
default: number;
|
|
1263
1265
|
};
|
|
1266
|
+
tabindex: {
|
|
1267
|
+
type: import('vue').PropType<string | number>;
|
|
1268
|
+
default: undefined;
|
|
1269
|
+
};
|
|
1264
1270
|
ariaOrientation: {
|
|
1265
1271
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1266
1272
|
};
|
|
@@ -1332,28 +1338,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1332
1338
|
id: {
|
|
1333
1339
|
type: import('vue').PropType<string>;
|
|
1334
1340
|
};
|
|
1335
|
-
ariaLabel: {
|
|
1336
|
-
type: import('vue').PropType<string>;
|
|
1337
|
-
};
|
|
1338
|
-
role: {
|
|
1339
|
-
type: import('vue').PropType<string>;
|
|
1340
|
-
};
|
|
1341
1341
|
height: {
|
|
1342
1342
|
type: import('vue').PropType<string | number>;
|
|
1343
1343
|
default: string;
|
|
1344
1344
|
};
|
|
1345
|
-
tag: {
|
|
1346
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1347
|
-
default: string;
|
|
1348
|
-
};
|
|
1349
|
-
tabindex: {
|
|
1350
|
-
type: import('vue').PropType<string | number>;
|
|
1351
|
-
default: undefined;
|
|
1352
|
-
};
|
|
1353
1345
|
maxHeight: {
|
|
1354
1346
|
type: import('vue').PropType<string | number>;
|
|
1355
1347
|
default: string;
|
|
1356
1348
|
};
|
|
1349
|
+
ariaLabel: {
|
|
1350
|
+
type: import('vue').PropType<string>;
|
|
1351
|
+
};
|
|
1352
|
+
role: {
|
|
1353
|
+
type: import('vue').PropType<string>;
|
|
1354
|
+
};
|
|
1357
1355
|
distance: {
|
|
1358
1356
|
type: import('vue').PropType<number>;
|
|
1359
1357
|
default: number;
|
|
@@ -1380,6 +1378,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1380
1378
|
noresize: {
|
|
1381
1379
|
type: import('vue').PropType<boolean>;
|
|
1382
1380
|
};
|
|
1381
|
+
tag: {
|
|
1382
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
1383
|
+
default: string;
|
|
1384
|
+
};
|
|
1383
1385
|
always: {
|
|
1384
1386
|
type: import('vue').PropType<boolean>;
|
|
1385
1387
|
};
|
|
@@ -1387,6 +1389,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1387
1389
|
type: import('vue').PropType<number>;
|
|
1388
1390
|
default: number;
|
|
1389
1391
|
};
|
|
1392
|
+
tabindex: {
|
|
1393
|
+
type: import('vue').PropType<string | number>;
|
|
1394
|
+
default: undefined;
|
|
1395
|
+
};
|
|
1390
1396
|
ariaOrientation: {
|
|
1391
1397
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1392
1398
|
};
|
|
@@ -1396,7 +1402,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1396
1402
|
scrollLeft: number;
|
|
1397
1403
|
}) => any) | undefined;
|
|
1398
1404
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1399
|
-
}, "height" | "
|
|
1405
|
+
}, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
|
|
1400
1406
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
1401
1407
|
update: () => void;
|
|
1402
1408
|
scrollTo: {
|
|
@@ -1427,28 +1433,28 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1427
1433
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1428
1434
|
}> & Omit<{
|
|
1429
1435
|
readonly height: number | string;
|
|
1430
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1431
1436
|
readonly maxHeight: number | string;
|
|
1432
1437
|
readonly distance: number;
|
|
1433
1438
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1434
1439
|
readonly wrapClass: string | string[];
|
|
1435
1440
|
readonly viewClass: string | string[];
|
|
1436
1441
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1442
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1437
1443
|
readonly minSize: number;
|
|
1438
1444
|
readonly id?: string | undefined;
|
|
1439
1445
|
readonly ariaLabel?: string | undefined;
|
|
1440
1446
|
readonly role?: string | undefined;
|
|
1441
|
-
readonly tabindex?: number | string | undefined;
|
|
1442
1447
|
readonly native?: boolean | undefined;
|
|
1443
1448
|
readonly noresize?: boolean | undefined;
|
|
1444
1449
|
readonly always?: boolean | undefined;
|
|
1450
|
+
readonly tabindex?: number | string | undefined;
|
|
1445
1451
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
1446
1452
|
onScroll?: ((args_0: {
|
|
1447
1453
|
scrollTop: number;
|
|
1448
1454
|
scrollLeft: number;
|
|
1449
1455
|
}) => any) | undefined | undefined;
|
|
1450
1456
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1451
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
1457
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
1452
1458
|
$attrs: {
|
|
1453
1459
|
[x: string]: unknown;
|
|
1454
1460
|
};
|
|
@@ -1470,28 +1476,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1470
1476
|
id: {
|
|
1471
1477
|
type: import('vue').PropType<string>;
|
|
1472
1478
|
};
|
|
1473
|
-
ariaLabel: {
|
|
1474
|
-
type: import('vue').PropType<string>;
|
|
1475
|
-
};
|
|
1476
|
-
role: {
|
|
1477
|
-
type: import('vue').PropType<string>;
|
|
1478
|
-
};
|
|
1479
1479
|
height: {
|
|
1480
1480
|
type: import('vue').PropType<string | number>;
|
|
1481
1481
|
default: string;
|
|
1482
1482
|
};
|
|
1483
|
-
tag: {
|
|
1484
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1485
|
-
default: string;
|
|
1486
|
-
};
|
|
1487
|
-
tabindex: {
|
|
1488
|
-
type: import('vue').PropType<string | number>;
|
|
1489
|
-
default: undefined;
|
|
1490
|
-
};
|
|
1491
1483
|
maxHeight: {
|
|
1492
1484
|
type: import('vue').PropType<string | number>;
|
|
1493
1485
|
default: string;
|
|
1494
1486
|
};
|
|
1487
|
+
ariaLabel: {
|
|
1488
|
+
type: import('vue').PropType<string>;
|
|
1489
|
+
};
|
|
1490
|
+
role: {
|
|
1491
|
+
type: import('vue').PropType<string>;
|
|
1492
|
+
};
|
|
1495
1493
|
distance: {
|
|
1496
1494
|
type: import('vue').PropType<number>;
|
|
1497
1495
|
default: number;
|
|
@@ -1518,6 +1516,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1518
1516
|
noresize: {
|
|
1519
1517
|
type: import('vue').PropType<boolean>;
|
|
1520
1518
|
};
|
|
1519
|
+
tag: {
|
|
1520
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
1521
|
+
default: string;
|
|
1522
|
+
};
|
|
1521
1523
|
always: {
|
|
1522
1524
|
type: import('vue').PropType<boolean>;
|
|
1523
1525
|
};
|
|
@@ -1525,6 +1527,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1525
1527
|
type: import('vue').PropType<number>;
|
|
1526
1528
|
default: number;
|
|
1527
1529
|
};
|
|
1530
|
+
tabindex: {
|
|
1531
|
+
type: import('vue').PropType<string | number>;
|
|
1532
|
+
default: undefined;
|
|
1533
|
+
};
|
|
1528
1534
|
ariaOrientation: {
|
|
1529
1535
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1530
1536
|
};
|
|
@@ -1596,28 +1602,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1596
1602
|
id: {
|
|
1597
1603
|
type: import('vue').PropType<string>;
|
|
1598
1604
|
};
|
|
1599
|
-
ariaLabel: {
|
|
1600
|
-
type: import('vue').PropType<string>;
|
|
1601
|
-
};
|
|
1602
|
-
role: {
|
|
1603
|
-
type: import('vue').PropType<string>;
|
|
1604
|
-
};
|
|
1605
1605
|
height: {
|
|
1606
1606
|
type: import('vue').PropType<string | number>;
|
|
1607
1607
|
default: string;
|
|
1608
1608
|
};
|
|
1609
|
-
tag: {
|
|
1610
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1611
|
-
default: string;
|
|
1612
|
-
};
|
|
1613
|
-
tabindex: {
|
|
1614
|
-
type: import('vue').PropType<string | number>;
|
|
1615
|
-
default: undefined;
|
|
1616
|
-
};
|
|
1617
1609
|
maxHeight: {
|
|
1618
1610
|
type: import('vue').PropType<string | number>;
|
|
1619
1611
|
default: string;
|
|
1620
1612
|
};
|
|
1613
|
+
ariaLabel: {
|
|
1614
|
+
type: import('vue').PropType<string>;
|
|
1615
|
+
};
|
|
1616
|
+
role: {
|
|
1617
|
+
type: import('vue').PropType<string>;
|
|
1618
|
+
};
|
|
1621
1619
|
distance: {
|
|
1622
1620
|
type: import('vue').PropType<number>;
|
|
1623
1621
|
default: number;
|
|
@@ -1644,6 +1642,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1644
1642
|
noresize: {
|
|
1645
1643
|
type: import('vue').PropType<boolean>;
|
|
1646
1644
|
};
|
|
1645
|
+
tag: {
|
|
1646
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
1647
|
+
default: string;
|
|
1648
|
+
};
|
|
1647
1649
|
always: {
|
|
1648
1650
|
type: import('vue').PropType<boolean>;
|
|
1649
1651
|
};
|
|
@@ -1651,6 +1653,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1651
1653
|
type: import('vue').PropType<number>;
|
|
1652
1654
|
default: number;
|
|
1653
1655
|
};
|
|
1656
|
+
tabindex: {
|
|
1657
|
+
type: import('vue').PropType<string | number>;
|
|
1658
|
+
default: undefined;
|
|
1659
|
+
};
|
|
1654
1660
|
ariaOrientation: {
|
|
1655
1661
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1656
1662
|
};
|
|
@@ -1660,7 +1666,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1660
1666
|
scrollLeft: number;
|
|
1661
1667
|
}) => any) | undefined;
|
|
1662
1668
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1663
|
-
}, "height" | "
|
|
1669
|
+
}, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
|
|
1664
1670
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
1665
1671
|
update: () => void;
|
|
1666
1672
|
scrollTo: {
|