@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
|
@@ -16,9 +16,5 @@ export declare function useCustomColumns({ getTableProps, tableMethods, getProps
|
|
|
16
16
|
getProps: ComputedRef<TtTableFormProps>;
|
|
17
17
|
}): {
|
|
18
18
|
initCustomSetting: () => Promise<void>;
|
|
19
|
-
saveColumns: (
|
|
20
|
-
columnKey: string;
|
|
21
|
-
columns: string[];
|
|
22
|
-
userId: string | number;
|
|
23
|
-
}) => Promise<any>;
|
|
19
|
+
saveColumns: (json: string) => Promise<any>;
|
|
24
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 & {});
|
|
41
40
|
readonly maxHeight: number | string;
|
|
42
41
|
readonly distance: number;
|
|
43
42
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
44
43
|
readonly wrapClass: string | string[];
|
|
45
44
|
readonly viewClass: string | string[];
|
|
46
45
|
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;
|
|
52
51
|
readonly native?: boolean | undefined;
|
|
53
52
|
readonly noresize?: boolean | undefined;
|
|
54
53
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
62
62
|
$attrs: {
|
|
63
63
|
[x: string]: unknown;
|
|
64
64
|
};
|
|
@@ -80,28 +80,20 @@ 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
|
-
};
|
|
89
83
|
height: {
|
|
90
84
|
type: import('vue').PropType<string | number>;
|
|
91
85
|
default: string;
|
|
92
86
|
};
|
|
93
|
-
tag: {
|
|
94
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
tabindex: {
|
|
98
|
-
type: import('vue').PropType<string | number>;
|
|
99
|
-
default: undefined;
|
|
100
|
-
};
|
|
101
87
|
maxHeight: {
|
|
102
88
|
type: import('vue').PropType<string | number>;
|
|
103
89
|
default: string;
|
|
104
90
|
};
|
|
91
|
+
ariaLabel: {
|
|
92
|
+
type: import('vue').PropType<string>;
|
|
93
|
+
};
|
|
94
|
+
role: {
|
|
95
|
+
type: import('vue').PropType<string>;
|
|
96
|
+
};
|
|
105
97
|
distance: {
|
|
106
98
|
type: import('vue').PropType<number>;
|
|
107
99
|
default: number;
|
|
@@ -128,6 +120,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
128
120
|
noresize: {
|
|
129
121
|
type: import('vue').PropType<boolean>;
|
|
130
122
|
};
|
|
123
|
+
tag: {
|
|
124
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
131
127
|
always: {
|
|
132
128
|
type: import('vue').PropType<boolean>;
|
|
133
129
|
};
|
|
@@ -135,6 +131,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
135
131
|
type: import('vue').PropType<number>;
|
|
136
132
|
default: number;
|
|
137
133
|
};
|
|
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,28 +206,20 @@ 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
|
-
};
|
|
215
209
|
height: {
|
|
216
210
|
type: import('vue').PropType<string | number>;
|
|
217
211
|
default: string;
|
|
218
212
|
};
|
|
219
|
-
tag: {
|
|
220
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
221
|
-
default: string;
|
|
222
|
-
};
|
|
223
|
-
tabindex: {
|
|
224
|
-
type: import('vue').PropType<string | number>;
|
|
225
|
-
default: undefined;
|
|
226
|
-
};
|
|
227
213
|
maxHeight: {
|
|
228
214
|
type: import('vue').PropType<string | number>;
|
|
229
215
|
default: string;
|
|
230
216
|
};
|
|
217
|
+
ariaLabel: {
|
|
218
|
+
type: import('vue').PropType<string>;
|
|
219
|
+
};
|
|
220
|
+
role: {
|
|
221
|
+
type: import('vue').PropType<string>;
|
|
222
|
+
};
|
|
231
223
|
distance: {
|
|
232
224
|
type: import('vue').PropType<number>;
|
|
233
225
|
default: number;
|
|
@@ -254,6 +246,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
254
246
|
noresize: {
|
|
255
247
|
type: import('vue').PropType<boolean>;
|
|
256
248
|
};
|
|
249
|
+
tag: {
|
|
250
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
251
|
+
default: string;
|
|
252
|
+
};
|
|
257
253
|
always: {
|
|
258
254
|
type: import('vue').PropType<boolean>;
|
|
259
255
|
};
|
|
@@ -261,6 +257,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
261
257
|
type: import('vue').PropType<number>;
|
|
262
258
|
default: number;
|
|
263
259
|
};
|
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & 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 & {});
|
|
304
303
|
readonly maxHeight: number | string;
|
|
305
304
|
readonly distance: number;
|
|
306
305
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
307
306
|
readonly wrapClass: string | string[];
|
|
308
307
|
readonly viewClass: string | string[];
|
|
309
308
|
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;
|
|
315
314
|
readonly native?: boolean | undefined;
|
|
316
315
|
readonly noresize?: boolean | undefined;
|
|
317
316
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
325
325
|
$attrs: {
|
|
326
326
|
[x: string]: unknown;
|
|
327
327
|
};
|
|
@@ -343,28 +343,20 @@ 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
|
-
};
|
|
352
346
|
height: {
|
|
353
347
|
type: import('vue').PropType<string | number>;
|
|
354
348
|
default: string;
|
|
355
349
|
};
|
|
356
|
-
tag: {
|
|
357
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
358
|
-
default: string;
|
|
359
|
-
};
|
|
360
|
-
tabindex: {
|
|
361
|
-
type: import('vue').PropType<string | number>;
|
|
362
|
-
default: undefined;
|
|
363
|
-
};
|
|
364
350
|
maxHeight: {
|
|
365
351
|
type: import('vue').PropType<string | number>;
|
|
366
352
|
default: string;
|
|
367
353
|
};
|
|
354
|
+
ariaLabel: {
|
|
355
|
+
type: import('vue').PropType<string>;
|
|
356
|
+
};
|
|
357
|
+
role: {
|
|
358
|
+
type: import('vue').PropType<string>;
|
|
359
|
+
};
|
|
368
360
|
distance: {
|
|
369
361
|
type: import('vue').PropType<number>;
|
|
370
362
|
default: number;
|
|
@@ -391,6 +383,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
391
383
|
noresize: {
|
|
392
384
|
type: import('vue').PropType<boolean>;
|
|
393
385
|
};
|
|
386
|
+
tag: {
|
|
387
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
388
|
+
default: string;
|
|
389
|
+
};
|
|
394
390
|
always: {
|
|
395
391
|
type: import('vue').PropType<boolean>;
|
|
396
392
|
};
|
|
@@ -398,6 +394,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
398
394
|
type: import('vue').PropType<number>;
|
|
399
395
|
default: number;
|
|
400
396
|
};
|
|
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,28 +469,20 @@ 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
|
-
};
|
|
478
472
|
height: {
|
|
479
473
|
type: import('vue').PropType<string | number>;
|
|
480
474
|
default: string;
|
|
481
475
|
};
|
|
482
|
-
tag: {
|
|
483
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
484
|
-
default: string;
|
|
485
|
-
};
|
|
486
|
-
tabindex: {
|
|
487
|
-
type: import('vue').PropType<string | number>;
|
|
488
|
-
default: undefined;
|
|
489
|
-
};
|
|
490
476
|
maxHeight: {
|
|
491
477
|
type: import('vue').PropType<string | number>;
|
|
492
478
|
default: string;
|
|
493
479
|
};
|
|
480
|
+
ariaLabel: {
|
|
481
|
+
type: import('vue').PropType<string>;
|
|
482
|
+
};
|
|
483
|
+
role: {
|
|
484
|
+
type: import('vue').PropType<string>;
|
|
485
|
+
};
|
|
494
486
|
distance: {
|
|
495
487
|
type: import('vue').PropType<number>;
|
|
496
488
|
default: number;
|
|
@@ -517,6 +509,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
517
509
|
noresize: {
|
|
518
510
|
type: import('vue').PropType<boolean>;
|
|
519
511
|
};
|
|
512
|
+
tag: {
|
|
513
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
514
|
+
default: string;
|
|
515
|
+
};
|
|
520
516
|
always: {
|
|
521
517
|
type: import('vue').PropType<boolean>;
|
|
522
518
|
};
|
|
@@ -524,6 +520,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
524
520
|
type: import('vue').PropType<number>;
|
|
525
521
|
default: number;
|
|
526
522
|
};
|
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & 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 & {});
|
|
568
567
|
readonly maxHeight: number | string;
|
|
569
568
|
readonly distance: number;
|
|
570
569
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
571
570
|
readonly wrapClass: string | string[];
|
|
572
571
|
readonly viewClass: string | string[];
|
|
573
572
|
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;
|
|
579
578
|
readonly native?: boolean | undefined;
|
|
580
579
|
readonly noresize?: boolean | undefined;
|
|
581
580
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
589
589
|
$attrs: {
|
|
590
590
|
[x: string]: unknown;
|
|
591
591
|
};
|
|
@@ -607,28 +607,20 @@ 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
|
-
};
|
|
616
610
|
height: {
|
|
617
611
|
type: import('vue').PropType<string | number>;
|
|
618
612
|
default: string;
|
|
619
613
|
};
|
|
620
|
-
tag: {
|
|
621
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
622
|
-
default: string;
|
|
623
|
-
};
|
|
624
|
-
tabindex: {
|
|
625
|
-
type: import('vue').PropType<string | number>;
|
|
626
|
-
default: undefined;
|
|
627
|
-
};
|
|
628
614
|
maxHeight: {
|
|
629
615
|
type: import('vue').PropType<string | number>;
|
|
630
616
|
default: string;
|
|
631
617
|
};
|
|
618
|
+
ariaLabel: {
|
|
619
|
+
type: import('vue').PropType<string>;
|
|
620
|
+
};
|
|
621
|
+
role: {
|
|
622
|
+
type: import('vue').PropType<string>;
|
|
623
|
+
};
|
|
632
624
|
distance: {
|
|
633
625
|
type: import('vue').PropType<number>;
|
|
634
626
|
default: number;
|
|
@@ -655,6 +647,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
655
647
|
noresize: {
|
|
656
648
|
type: import('vue').PropType<boolean>;
|
|
657
649
|
};
|
|
650
|
+
tag: {
|
|
651
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
652
|
+
default: string;
|
|
653
|
+
};
|
|
658
654
|
always: {
|
|
659
655
|
type: import('vue').PropType<boolean>;
|
|
660
656
|
};
|
|
@@ -662,6 +658,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
662
658
|
type: import('vue').PropType<number>;
|
|
663
659
|
default: number;
|
|
664
660
|
};
|
|
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,28 +733,20 @@ 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
|
-
};
|
|
742
736
|
height: {
|
|
743
737
|
type: import('vue').PropType<string | number>;
|
|
744
738
|
default: string;
|
|
745
739
|
};
|
|
746
|
-
tag: {
|
|
747
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
748
|
-
default: string;
|
|
749
|
-
};
|
|
750
|
-
tabindex: {
|
|
751
|
-
type: import('vue').PropType<string | number>;
|
|
752
|
-
default: undefined;
|
|
753
|
-
};
|
|
754
740
|
maxHeight: {
|
|
755
741
|
type: import('vue').PropType<string | number>;
|
|
756
742
|
default: string;
|
|
757
743
|
};
|
|
744
|
+
ariaLabel: {
|
|
745
|
+
type: import('vue').PropType<string>;
|
|
746
|
+
};
|
|
747
|
+
role: {
|
|
748
|
+
type: import('vue').PropType<string>;
|
|
749
|
+
};
|
|
758
750
|
distance: {
|
|
759
751
|
type: import('vue').PropType<number>;
|
|
760
752
|
default: number;
|
|
@@ -781,6 +773,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
781
773
|
noresize: {
|
|
782
774
|
type: import('vue').PropType<boolean>;
|
|
783
775
|
};
|
|
776
|
+
tag: {
|
|
777
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
778
|
+
default: string;
|
|
779
|
+
};
|
|
784
780
|
always: {
|
|
785
781
|
type: import('vue').PropType<boolean>;
|
|
786
782
|
};
|
|
@@ -788,6 +784,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
788
784
|
type: import('vue').PropType<number>;
|
|
789
785
|
default: number;
|
|
790
786
|
};
|
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & 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 & {});
|
|
831
830
|
readonly maxHeight: number | string;
|
|
832
831
|
readonly distance: number;
|
|
833
832
|
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
834
833
|
readonly wrapClass: string | string[];
|
|
835
834
|
readonly viewClass: string | string[];
|
|
836
835
|
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;
|
|
842
841
|
readonly native?: boolean | undefined;
|
|
843
842
|
readonly noresize?: boolean | undefined;
|
|
844
843
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
|
|
852
852
|
$attrs: {
|
|
853
853
|
[x: string]: unknown;
|
|
854
854
|
};
|
|
@@ -870,28 +870,20 @@ 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
|
-
};
|
|
879
873
|
height: {
|
|
880
874
|
type: import('vue').PropType<string | number>;
|
|
881
875
|
default: string;
|
|
882
876
|
};
|
|
883
|
-
tag: {
|
|
884
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
885
|
-
default: string;
|
|
886
|
-
};
|
|
887
|
-
tabindex: {
|
|
888
|
-
type: import('vue').PropType<string | number>;
|
|
889
|
-
default: undefined;
|
|
890
|
-
};
|
|
891
877
|
maxHeight: {
|
|
892
878
|
type: import('vue').PropType<string | number>;
|
|
893
879
|
default: string;
|
|
894
880
|
};
|
|
881
|
+
ariaLabel: {
|
|
882
|
+
type: import('vue').PropType<string>;
|
|
883
|
+
};
|
|
884
|
+
role: {
|
|
885
|
+
type: import('vue').PropType<string>;
|
|
886
|
+
};
|
|
895
887
|
distance: {
|
|
896
888
|
type: import('vue').PropType<number>;
|
|
897
889
|
default: number;
|
|
@@ -918,6 +910,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
918
910
|
noresize: {
|
|
919
911
|
type: import('vue').PropType<boolean>;
|
|
920
912
|
};
|
|
913
|
+
tag: {
|
|
914
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
915
|
+
default: string;
|
|
916
|
+
};
|
|
921
917
|
always: {
|
|
922
918
|
type: import('vue').PropType<boolean>;
|
|
923
919
|
};
|
|
@@ -925,6 +921,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
925
921
|
type: import('vue').PropType<number>;
|
|
926
922
|
default: number;
|
|
927
923
|
};
|
|
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,28 +996,20 @@ 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
|
-
};
|
|
1005
999
|
height: {
|
|
1006
1000
|
type: import('vue').PropType<string | number>;
|
|
1007
1001
|
default: string;
|
|
1008
1002
|
};
|
|
1009
|
-
tag: {
|
|
1010
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1011
|
-
default: string;
|
|
1012
|
-
};
|
|
1013
|
-
tabindex: {
|
|
1014
|
-
type: import('vue').PropType<string | number>;
|
|
1015
|
-
default: undefined;
|
|
1016
|
-
};
|
|
1017
1003
|
maxHeight: {
|
|
1018
1004
|
type: import('vue').PropType<string | number>;
|
|
1019
1005
|
default: string;
|
|
1020
1006
|
};
|
|
1007
|
+
ariaLabel: {
|
|
1008
|
+
type: import('vue').PropType<string>;
|
|
1009
|
+
};
|
|
1010
|
+
role: {
|
|
1011
|
+
type: import('vue').PropType<string>;
|
|
1012
|
+
};
|
|
1021
1013
|
distance: {
|
|
1022
1014
|
type: import('vue').PropType<number>;
|
|
1023
1015
|
default: number;
|
|
@@ -1044,6 +1036,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
1044
1036
|
noresize: {
|
|
1045
1037
|
type: import('vue').PropType<boolean>;
|
|
1046
1038
|
};
|
|
1039
|
+
tag: {
|
|
1040
|
+
type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
1041
|
+
default: string;
|
|
1042
|
+
};
|
|
1047
1043
|
always: {
|
|
1048
1044
|
type: import('vue').PropType<boolean>;
|
|
1049
1045
|
};
|
|
@@ -1051,6 +1047,10 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
1051
1047
|
type: import('vue').PropType<number>;
|
|
1052
1048
|
default: number;
|
|
1053
1049
|
};
|
|
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" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & 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?: ("Home" | "PrevJump" | "PrevPage" | "Number" | "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?: ("Home" | "PrevJump" | "PrevPage" | "Number" | "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;
|