@dazhicheng/ui 1.5.4 → 1.5.5
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 +175 -175
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +194 -194
- 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/props.d.ts +2 -2
- 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/index.js +484 -477
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/components/tt-form-adapter/component/index.d.ts +0 -13
- package/dist/components/tt-form-adapter/index.d.ts +0 -36
- package/dist/components/tt-table/src/hooks/useCache.d.ts +0 -20
|
@@ -37,28 +37,28 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
37
37
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
38
38
|
}> & Omit<{
|
|
39
39
|
readonly height: number | string;
|
|
40
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
40
41
|
readonly maxHeight: number | string;
|
|
41
42
|
readonly distance: number;
|
|
42
43
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
43
44
|
readonly wrapClass: string | string[];
|
|
44
45
|
readonly viewClass: string | string[];
|
|
45
46
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
46
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
47
47
|
readonly minSize: number;
|
|
48
48
|
readonly id?: string | undefined;
|
|
49
49
|
readonly ariaLabel?: string | undefined;
|
|
50
50
|
readonly role?: string | undefined;
|
|
51
|
+
readonly tabindex?: number | string | undefined;
|
|
51
52
|
readonly native?: boolean | undefined;
|
|
52
53
|
readonly noresize?: boolean | undefined;
|
|
53
54
|
readonly always?: boolean | undefined;
|
|
54
|
-
readonly tabindex?: number | string | undefined;
|
|
55
55
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
56
56
|
onScroll?: ((args_0: {
|
|
57
57
|
scrollTop: number;
|
|
58
58
|
scrollLeft: number;
|
|
59
59
|
}) => any) | undefined | undefined;
|
|
60
60
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
61
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
61
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
|
|
62
62
|
$attrs: {
|
|
63
63
|
[x: string]: unknown;
|
|
64
64
|
};
|
|
@@ -80,19 +80,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
80
80
|
id: {
|
|
81
81
|
type: import('vue').PropType<string>;
|
|
82
82
|
};
|
|
83
|
+
ariaLabel: {
|
|
84
|
+
type: import('vue').PropType<string>;
|
|
85
|
+
};
|
|
86
|
+
role: {
|
|
87
|
+
type: import('vue').PropType<string>;
|
|
88
|
+
};
|
|
83
89
|
height: {
|
|
84
90
|
type: import('vue').PropType<string | number>;
|
|
85
91
|
default: string;
|
|
86
92
|
};
|
|
87
|
-
|
|
88
|
-
type: import('vue').PropType<
|
|
93
|
+
tag: {
|
|
94
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
89
95
|
default: string;
|
|
90
96
|
};
|
|
91
|
-
|
|
92
|
-
type: import('vue').PropType<string>;
|
|
97
|
+
tabindex: {
|
|
98
|
+
type: import('vue').PropType<string | number>;
|
|
99
|
+
default: undefined;
|
|
93
100
|
};
|
|
94
|
-
|
|
95
|
-
type: import('vue').PropType<string>;
|
|
101
|
+
maxHeight: {
|
|
102
|
+
type: import('vue').PropType<string | number>;
|
|
103
|
+
default: string;
|
|
96
104
|
};
|
|
97
105
|
distance: {
|
|
98
106
|
type: import('vue').PropType<number>;
|
|
@@ -120,10 +128,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
120
128
|
noresize: {
|
|
121
129
|
type: import('vue').PropType<boolean>;
|
|
122
130
|
};
|
|
123
|
-
tag: {
|
|
124
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
125
|
-
default: string;
|
|
126
|
-
};
|
|
127
131
|
always: {
|
|
128
132
|
type: import('vue').PropType<boolean>;
|
|
129
133
|
};
|
|
@@ -131,10 +135,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
131
135
|
type: import('vue').PropType<number>;
|
|
132
136
|
default: number;
|
|
133
137
|
};
|
|
134
|
-
tabindex: {
|
|
135
|
-
type: import('vue').PropType<string | number>;
|
|
136
|
-
default: undefined;
|
|
137
|
-
};
|
|
138
138
|
ariaOrientation: {
|
|
139
139
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
140
140
|
};
|
|
@@ -206,19 +206,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
206
206
|
id: {
|
|
207
207
|
type: import('vue').PropType<string>;
|
|
208
208
|
};
|
|
209
|
+
ariaLabel: {
|
|
210
|
+
type: import('vue').PropType<string>;
|
|
211
|
+
};
|
|
212
|
+
role: {
|
|
213
|
+
type: import('vue').PropType<string>;
|
|
214
|
+
};
|
|
209
215
|
height: {
|
|
210
216
|
type: import('vue').PropType<string | number>;
|
|
211
217
|
default: string;
|
|
212
218
|
};
|
|
213
|
-
|
|
214
|
-
type: import('vue').PropType<
|
|
219
|
+
tag: {
|
|
220
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
215
221
|
default: string;
|
|
216
222
|
};
|
|
217
|
-
|
|
218
|
-
type: import('vue').PropType<string>;
|
|
223
|
+
tabindex: {
|
|
224
|
+
type: import('vue').PropType<string | number>;
|
|
225
|
+
default: undefined;
|
|
219
226
|
};
|
|
220
|
-
|
|
221
|
-
type: import('vue').PropType<string>;
|
|
227
|
+
maxHeight: {
|
|
228
|
+
type: import('vue').PropType<string | number>;
|
|
229
|
+
default: string;
|
|
222
230
|
};
|
|
223
231
|
distance: {
|
|
224
232
|
type: import('vue').PropType<number>;
|
|
@@ -246,10 +254,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
246
254
|
noresize: {
|
|
247
255
|
type: import('vue').PropType<boolean>;
|
|
248
256
|
};
|
|
249
|
-
tag: {
|
|
250
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
251
|
-
default: string;
|
|
252
|
-
};
|
|
253
257
|
always: {
|
|
254
258
|
type: import('vue').PropType<boolean>;
|
|
255
259
|
};
|
|
@@ -257,10 +261,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
257
261
|
type: import('vue').PropType<number>;
|
|
258
262
|
default: number;
|
|
259
263
|
};
|
|
260
|
-
tabindex: {
|
|
261
|
-
type: import('vue').PropType<string | number>;
|
|
262
|
-
default: undefined;
|
|
263
|
-
};
|
|
264
264
|
ariaOrientation: {
|
|
265
265
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
266
266
|
};
|
|
@@ -270,7 +270,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
270
270
|
scrollLeft: number;
|
|
271
271
|
}) => any) | undefined;
|
|
272
272
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
273
|
-
}, "height" | "
|
|
273
|
+
}, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
274
274
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
275
275
|
update: () => void;
|
|
276
276
|
scrollTo: {
|
|
@@ -300,28 +300,28 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
300
300
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
301
301
|
}> & Omit<{
|
|
302
302
|
readonly height: number | string;
|
|
303
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
303
304
|
readonly maxHeight: number | string;
|
|
304
305
|
readonly distance: number;
|
|
305
306
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
306
307
|
readonly wrapClass: string | string[];
|
|
307
308
|
readonly viewClass: string | string[];
|
|
308
309
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
309
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
310
310
|
readonly minSize: number;
|
|
311
311
|
readonly id?: string | undefined;
|
|
312
312
|
readonly ariaLabel?: string | undefined;
|
|
313
313
|
readonly role?: string | undefined;
|
|
314
|
+
readonly tabindex?: number | string | undefined;
|
|
314
315
|
readonly native?: boolean | undefined;
|
|
315
316
|
readonly noresize?: boolean | undefined;
|
|
316
317
|
readonly always?: boolean | undefined;
|
|
317
|
-
readonly tabindex?: number | string | undefined;
|
|
318
318
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
319
319
|
onScroll?: ((args_0: {
|
|
320
320
|
scrollTop: number;
|
|
321
321
|
scrollLeft: number;
|
|
322
322
|
}) => any) | undefined | undefined;
|
|
323
323
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
324
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
324
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
|
|
325
325
|
$attrs: {
|
|
326
326
|
[x: string]: unknown;
|
|
327
327
|
};
|
|
@@ -343,19 +343,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
343
343
|
id: {
|
|
344
344
|
type: import('vue').PropType<string>;
|
|
345
345
|
};
|
|
346
|
+
ariaLabel: {
|
|
347
|
+
type: import('vue').PropType<string>;
|
|
348
|
+
};
|
|
349
|
+
role: {
|
|
350
|
+
type: import('vue').PropType<string>;
|
|
351
|
+
};
|
|
346
352
|
height: {
|
|
347
353
|
type: import('vue').PropType<string | number>;
|
|
348
354
|
default: string;
|
|
349
355
|
};
|
|
350
|
-
|
|
351
|
-
type: import('vue').PropType<
|
|
356
|
+
tag: {
|
|
357
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
352
358
|
default: string;
|
|
353
359
|
};
|
|
354
|
-
|
|
355
|
-
type: import('vue').PropType<string>;
|
|
360
|
+
tabindex: {
|
|
361
|
+
type: import('vue').PropType<string | number>;
|
|
362
|
+
default: undefined;
|
|
356
363
|
};
|
|
357
|
-
|
|
358
|
-
type: import('vue').PropType<string>;
|
|
364
|
+
maxHeight: {
|
|
365
|
+
type: import('vue').PropType<string | number>;
|
|
366
|
+
default: string;
|
|
359
367
|
};
|
|
360
368
|
distance: {
|
|
361
369
|
type: import('vue').PropType<number>;
|
|
@@ -383,10 +391,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
383
391
|
noresize: {
|
|
384
392
|
type: import('vue').PropType<boolean>;
|
|
385
393
|
};
|
|
386
|
-
tag: {
|
|
387
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
388
|
-
default: string;
|
|
389
|
-
};
|
|
390
394
|
always: {
|
|
391
395
|
type: import('vue').PropType<boolean>;
|
|
392
396
|
};
|
|
@@ -394,10 +398,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
394
398
|
type: import('vue').PropType<number>;
|
|
395
399
|
default: number;
|
|
396
400
|
};
|
|
397
|
-
tabindex: {
|
|
398
|
-
type: import('vue').PropType<string | number>;
|
|
399
|
-
default: undefined;
|
|
400
|
-
};
|
|
401
401
|
ariaOrientation: {
|
|
402
402
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
403
403
|
};
|
|
@@ -469,19 +469,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
469
469
|
id: {
|
|
470
470
|
type: import('vue').PropType<string>;
|
|
471
471
|
};
|
|
472
|
+
ariaLabel: {
|
|
473
|
+
type: import('vue').PropType<string>;
|
|
474
|
+
};
|
|
475
|
+
role: {
|
|
476
|
+
type: import('vue').PropType<string>;
|
|
477
|
+
};
|
|
472
478
|
height: {
|
|
473
479
|
type: import('vue').PropType<string | number>;
|
|
474
480
|
default: string;
|
|
475
481
|
};
|
|
476
|
-
|
|
477
|
-
type: import('vue').PropType<
|
|
482
|
+
tag: {
|
|
483
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
478
484
|
default: string;
|
|
479
485
|
};
|
|
480
|
-
|
|
481
|
-
type: import('vue').PropType<string>;
|
|
486
|
+
tabindex: {
|
|
487
|
+
type: import('vue').PropType<string | number>;
|
|
488
|
+
default: undefined;
|
|
482
489
|
};
|
|
483
|
-
|
|
484
|
-
type: import('vue').PropType<string>;
|
|
490
|
+
maxHeight: {
|
|
491
|
+
type: import('vue').PropType<string | number>;
|
|
492
|
+
default: string;
|
|
485
493
|
};
|
|
486
494
|
distance: {
|
|
487
495
|
type: import('vue').PropType<number>;
|
|
@@ -509,10 +517,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
509
517
|
noresize: {
|
|
510
518
|
type: import('vue').PropType<boolean>;
|
|
511
519
|
};
|
|
512
|
-
tag: {
|
|
513
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
514
|
-
default: string;
|
|
515
|
-
};
|
|
516
520
|
always: {
|
|
517
521
|
type: import('vue').PropType<boolean>;
|
|
518
522
|
};
|
|
@@ -520,10 +524,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
520
524
|
type: import('vue').PropType<number>;
|
|
521
525
|
default: number;
|
|
522
526
|
};
|
|
523
|
-
tabindex: {
|
|
524
|
-
type: import('vue').PropType<string | number>;
|
|
525
|
-
default: undefined;
|
|
526
|
-
};
|
|
527
527
|
ariaOrientation: {
|
|
528
528
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
529
529
|
};
|
|
@@ -533,7 +533,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
533
533
|
scrollLeft: number;
|
|
534
534
|
}) => any) | undefined;
|
|
535
535
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
536
|
-
}, "height" | "
|
|
536
|
+
}, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
537
537
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
538
538
|
update: () => void;
|
|
539
539
|
scrollTo: {
|
|
@@ -564,28 +564,28 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
564
564
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
565
565
|
}> & Omit<{
|
|
566
566
|
readonly height: number | string;
|
|
567
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
567
568
|
readonly maxHeight: number | string;
|
|
568
569
|
readonly distance: number;
|
|
569
570
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
570
571
|
readonly wrapClass: string | string[];
|
|
571
572
|
readonly viewClass: string | string[];
|
|
572
573
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
573
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
574
574
|
readonly minSize: number;
|
|
575
575
|
readonly id?: string | undefined;
|
|
576
576
|
readonly ariaLabel?: string | undefined;
|
|
577
577
|
readonly role?: string | undefined;
|
|
578
|
+
readonly tabindex?: number | string | undefined;
|
|
578
579
|
readonly native?: boolean | undefined;
|
|
579
580
|
readonly noresize?: boolean | undefined;
|
|
580
581
|
readonly always?: boolean | undefined;
|
|
581
|
-
readonly tabindex?: number | string | undefined;
|
|
582
582
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
583
583
|
onScroll?: ((args_0: {
|
|
584
584
|
scrollTop: number;
|
|
585
585
|
scrollLeft: number;
|
|
586
586
|
}) => any) | undefined | undefined;
|
|
587
587
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
588
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
588
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
|
|
589
589
|
$attrs: {
|
|
590
590
|
[x: string]: unknown;
|
|
591
591
|
};
|
|
@@ -607,19 +607,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
607
607
|
id: {
|
|
608
608
|
type: import('vue').PropType<string>;
|
|
609
609
|
};
|
|
610
|
+
ariaLabel: {
|
|
611
|
+
type: import('vue').PropType<string>;
|
|
612
|
+
};
|
|
613
|
+
role: {
|
|
614
|
+
type: import('vue').PropType<string>;
|
|
615
|
+
};
|
|
610
616
|
height: {
|
|
611
617
|
type: import('vue').PropType<string | number>;
|
|
612
618
|
default: string;
|
|
613
619
|
};
|
|
614
|
-
|
|
615
|
-
type: import('vue').PropType<
|
|
620
|
+
tag: {
|
|
621
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
616
622
|
default: string;
|
|
617
623
|
};
|
|
618
|
-
|
|
619
|
-
type: import('vue').PropType<string>;
|
|
624
|
+
tabindex: {
|
|
625
|
+
type: import('vue').PropType<string | number>;
|
|
626
|
+
default: undefined;
|
|
620
627
|
};
|
|
621
|
-
|
|
622
|
-
type: import('vue').PropType<string>;
|
|
628
|
+
maxHeight: {
|
|
629
|
+
type: import('vue').PropType<string | number>;
|
|
630
|
+
default: string;
|
|
623
631
|
};
|
|
624
632
|
distance: {
|
|
625
633
|
type: import('vue').PropType<number>;
|
|
@@ -647,10 +655,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
647
655
|
noresize: {
|
|
648
656
|
type: import('vue').PropType<boolean>;
|
|
649
657
|
};
|
|
650
|
-
tag: {
|
|
651
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
652
|
-
default: string;
|
|
653
|
-
};
|
|
654
658
|
always: {
|
|
655
659
|
type: import('vue').PropType<boolean>;
|
|
656
660
|
};
|
|
@@ -658,10 +662,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
658
662
|
type: import('vue').PropType<number>;
|
|
659
663
|
default: number;
|
|
660
664
|
};
|
|
661
|
-
tabindex: {
|
|
662
|
-
type: import('vue').PropType<string | number>;
|
|
663
|
-
default: undefined;
|
|
664
|
-
};
|
|
665
665
|
ariaOrientation: {
|
|
666
666
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
667
667
|
};
|
|
@@ -733,19 +733,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
733
733
|
id: {
|
|
734
734
|
type: import('vue').PropType<string>;
|
|
735
735
|
};
|
|
736
|
+
ariaLabel: {
|
|
737
|
+
type: import('vue').PropType<string>;
|
|
738
|
+
};
|
|
739
|
+
role: {
|
|
740
|
+
type: import('vue').PropType<string>;
|
|
741
|
+
};
|
|
736
742
|
height: {
|
|
737
743
|
type: import('vue').PropType<string | number>;
|
|
738
744
|
default: string;
|
|
739
745
|
};
|
|
740
|
-
|
|
741
|
-
type: import('vue').PropType<
|
|
746
|
+
tag: {
|
|
747
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
742
748
|
default: string;
|
|
743
749
|
};
|
|
744
|
-
|
|
745
|
-
type: import('vue').PropType<string>;
|
|
750
|
+
tabindex: {
|
|
751
|
+
type: import('vue').PropType<string | number>;
|
|
752
|
+
default: undefined;
|
|
746
753
|
};
|
|
747
|
-
|
|
748
|
-
type: import('vue').PropType<string>;
|
|
754
|
+
maxHeight: {
|
|
755
|
+
type: import('vue').PropType<string | number>;
|
|
756
|
+
default: string;
|
|
749
757
|
};
|
|
750
758
|
distance: {
|
|
751
759
|
type: import('vue').PropType<number>;
|
|
@@ -773,10 +781,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
773
781
|
noresize: {
|
|
774
782
|
type: import('vue').PropType<boolean>;
|
|
775
783
|
};
|
|
776
|
-
tag: {
|
|
777
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
778
|
-
default: string;
|
|
779
|
-
};
|
|
780
784
|
always: {
|
|
781
785
|
type: import('vue').PropType<boolean>;
|
|
782
786
|
};
|
|
@@ -784,10 +788,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
784
788
|
type: import('vue').PropType<number>;
|
|
785
789
|
default: number;
|
|
786
790
|
};
|
|
787
|
-
tabindex: {
|
|
788
|
-
type: import('vue').PropType<string | number>;
|
|
789
|
-
default: undefined;
|
|
790
|
-
};
|
|
791
791
|
ariaOrientation: {
|
|
792
792
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
793
793
|
};
|
|
@@ -797,7 +797,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
797
797
|
scrollLeft: number;
|
|
798
798
|
}) => any) | undefined;
|
|
799
799
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
800
|
-
}, "height" | "
|
|
800
|
+
}, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
801
801
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
802
802
|
update: () => void;
|
|
803
803
|
scrollTo: {
|
|
@@ -827,28 +827,28 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
827
827
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
828
828
|
}> & Omit<{
|
|
829
829
|
readonly height: number | string;
|
|
830
|
+
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
830
831
|
readonly maxHeight: number | string;
|
|
831
832
|
readonly distance: number;
|
|
832
833
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
833
834
|
readonly wrapClass: string | string[];
|
|
834
835
|
readonly viewClass: string | string[];
|
|
835
836
|
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
836
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
837
837
|
readonly minSize: number;
|
|
838
838
|
readonly id?: string | undefined;
|
|
839
839
|
readonly ariaLabel?: string | undefined;
|
|
840
840
|
readonly role?: string | undefined;
|
|
841
|
+
readonly tabindex?: number | string | undefined;
|
|
841
842
|
readonly native?: boolean | undefined;
|
|
842
843
|
readonly noresize?: boolean | undefined;
|
|
843
844
|
readonly always?: boolean | undefined;
|
|
844
|
-
readonly tabindex?: number | string | undefined;
|
|
845
845
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
846
846
|
onScroll?: ((args_0: {
|
|
847
847
|
scrollTop: number;
|
|
848
848
|
scrollLeft: number;
|
|
849
849
|
}) => any) | undefined | undefined;
|
|
850
850
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
851
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "
|
|
851
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
|
|
852
852
|
$attrs: {
|
|
853
853
|
[x: string]: unknown;
|
|
854
854
|
};
|
|
@@ -870,19 +870,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
870
870
|
id: {
|
|
871
871
|
type: import('vue').PropType<string>;
|
|
872
872
|
};
|
|
873
|
+
ariaLabel: {
|
|
874
|
+
type: import('vue').PropType<string>;
|
|
875
|
+
};
|
|
876
|
+
role: {
|
|
877
|
+
type: import('vue').PropType<string>;
|
|
878
|
+
};
|
|
873
879
|
height: {
|
|
874
880
|
type: import('vue').PropType<string | number>;
|
|
875
881
|
default: string;
|
|
876
882
|
};
|
|
877
|
-
|
|
878
|
-
type: import('vue').PropType<
|
|
883
|
+
tag: {
|
|
884
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
879
885
|
default: string;
|
|
880
886
|
};
|
|
881
|
-
|
|
882
|
-
type: import('vue').PropType<string>;
|
|
887
|
+
tabindex: {
|
|
888
|
+
type: import('vue').PropType<string | number>;
|
|
889
|
+
default: undefined;
|
|
883
890
|
};
|
|
884
|
-
|
|
885
|
-
type: import('vue').PropType<string>;
|
|
891
|
+
maxHeight: {
|
|
892
|
+
type: import('vue').PropType<string | number>;
|
|
893
|
+
default: string;
|
|
886
894
|
};
|
|
887
895
|
distance: {
|
|
888
896
|
type: import('vue').PropType<number>;
|
|
@@ -910,10 +918,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
910
918
|
noresize: {
|
|
911
919
|
type: import('vue').PropType<boolean>;
|
|
912
920
|
};
|
|
913
|
-
tag: {
|
|
914
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
915
|
-
default: string;
|
|
916
|
-
};
|
|
917
921
|
always: {
|
|
918
922
|
type: import('vue').PropType<boolean>;
|
|
919
923
|
};
|
|
@@ -921,10 +925,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
921
925
|
type: import('vue').PropType<number>;
|
|
922
926
|
default: number;
|
|
923
927
|
};
|
|
924
|
-
tabindex: {
|
|
925
|
-
type: import('vue').PropType<string | number>;
|
|
926
|
-
default: undefined;
|
|
927
|
-
};
|
|
928
928
|
ariaOrientation: {
|
|
929
929
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
930
930
|
};
|
|
@@ -996,19 +996,27 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
996
996
|
id: {
|
|
997
997
|
type: import('vue').PropType<string>;
|
|
998
998
|
};
|
|
999
|
+
ariaLabel: {
|
|
1000
|
+
type: import('vue').PropType<string>;
|
|
1001
|
+
};
|
|
1002
|
+
role: {
|
|
1003
|
+
type: import('vue').PropType<string>;
|
|
1004
|
+
};
|
|
999
1005
|
height: {
|
|
1000
1006
|
type: import('vue').PropType<string | number>;
|
|
1001
1007
|
default: string;
|
|
1002
1008
|
};
|
|
1003
|
-
|
|
1004
|
-
type: import('vue').PropType<
|
|
1009
|
+
tag: {
|
|
1010
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1005
1011
|
default: string;
|
|
1006
1012
|
};
|
|
1007
|
-
|
|
1008
|
-
type: import('vue').PropType<string>;
|
|
1013
|
+
tabindex: {
|
|
1014
|
+
type: import('vue').PropType<string | number>;
|
|
1015
|
+
default: undefined;
|
|
1009
1016
|
};
|
|
1010
|
-
|
|
1011
|
-
type: import('vue').PropType<string>;
|
|
1017
|
+
maxHeight: {
|
|
1018
|
+
type: import('vue').PropType<string | number>;
|
|
1019
|
+
default: string;
|
|
1012
1020
|
};
|
|
1013
1021
|
distance: {
|
|
1014
1022
|
type: import('vue').PropType<number>;
|
|
@@ -1036,10 +1044,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
1036
1044
|
noresize: {
|
|
1037
1045
|
type: import('vue').PropType<boolean>;
|
|
1038
1046
|
};
|
|
1039
|
-
tag: {
|
|
1040
|
-
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
1041
|
-
default: string;
|
|
1042
|
-
};
|
|
1043
1047
|
always: {
|
|
1044
1048
|
type: import('vue').PropType<boolean>;
|
|
1045
1049
|
};
|
|
@@ -1047,10 +1051,6 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
1047
1051
|
type: import('vue').PropType<number>;
|
|
1048
1052
|
default: number;
|
|
1049
1053
|
};
|
|
1050
|
-
tabindex: {
|
|
1051
|
-
type: import('vue').PropType<string | number>;
|
|
1052
|
-
default: undefined;
|
|
1053
|
-
};
|
|
1054
1054
|
ariaOrientation: {
|
|
1055
1055
|
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1056
1056
|
};
|
|
@@ -1060,7 +1060,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
1060
1060
|
scrollLeft: number;
|
|
1061
1061
|
}) => any) | undefined;
|
|
1062
1062
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1063
|
-
}, "height" | "
|
|
1063
|
+
}, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
1064
1064
|
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
1065
1065
|
update: () => void;
|
|
1066
1066
|
scrollTo: {
|
|
@@ -23,7 +23,7 @@ export declare function usePagination(refProps: ComputedRef<TtTableProps>, emit:
|
|
|
23
23
|
total?: string | ((params: import("vxe-pc-ui").VxePagerSlotTypes.TotalSlotParams) => import('vxe-pc-ui').VxeComponentSlotType | import('vxe-pc-ui').VxeComponentSlotType[]) | undefined;
|
|
24
24
|
} | undefined;
|
|
25
25
|
size?: import("vxe-pc-ui").VxePagerPropTypes.Size | undefined;
|
|
26
|
-
layouts?: ("
|
|
26
|
+
layouts?: ("Number" | "Home" | "PrevJump" | "PrevPage" | "JumpNumber" | "NextPage" | "NextJump" | "End" | "Sizes" | "Jump" | "FullJump" | "PageCount" | "Total")[] | undefined;
|
|
27
27
|
currentPage?: import("vxe-pc-ui").VxePagerPropTypes.CurrentPage | undefined;
|
|
28
28
|
loading?: import("vxe-pc-ui").VxePagerPropTypes.Loading | undefined;
|
|
29
29
|
pageSize?: import("vxe-pc-ui").VxePagerPropTypes.PageSize | undefined;
|
|
@@ -68,7 +68,7 @@ export declare function usePagination(refProps: ComputedRef<TtTableProps>, emit:
|
|
|
68
68
|
total?: string | ((params: import("vxe-pc-ui").VxePagerSlotTypes.TotalSlotParams) => import('vxe-pc-ui').VxeComponentSlotType | import('vxe-pc-ui').VxeComponentSlotType[]) | undefined;
|
|
69
69
|
} | undefined;
|
|
70
70
|
size?: import("vxe-pc-ui").VxePagerPropTypes.Size | undefined;
|
|
71
|
-
layouts?: ("
|
|
71
|
+
layouts?: ("Number" | "Home" | "PrevJump" | "PrevPage" | "JumpNumber" | "NextPage" | "NextJump" | "End" | "Sizes" | "Jump" | "FullJump" | "PageCount" | "Total")[] | undefined;
|
|
72
72
|
currentPage?: import("vxe-pc-ui").VxePagerPropTypes.CurrentPage | undefined;
|
|
73
73
|
loading?: import("vxe-pc-ui").VxePagerPropTypes.Loading | undefined;
|
|
74
74
|
pageSize?: import("vxe-pc-ui").VxePagerPropTypes.PageSize | undefined;
|
|
@@ -55,7 +55,7 @@ export declare const tableProps: {
|
|
|
55
55
|
* @deprecated
|
|
56
56
|
*/
|
|
57
57
|
resultCode: {
|
|
58
|
-
type: (
|
|
58
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
59
59
|
default: number;
|
|
60
60
|
};
|
|
61
61
|
/** 请求后的回调 */
|
|
@@ -385,7 +385,7 @@ export declare const tableOtherProps: {
|
|
|
385
385
|
* 表格的高度;支持铺满父容器或者固定高度,如果设置 auto 为铺满父容器(如果设置为 auto,则必须确保存在父节点且不允许存在相邻元素)
|
|
386
386
|
*/
|
|
387
387
|
height: {
|
|
388
|
-
type: (
|
|
388
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
389
389
|
default: undefined;
|
|
390
390
|
};
|
|
391
391
|
/**
|