@dazhicheng/ui 1.5.108 → 1.5.110
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 +259 -1204
- package/dist/components/tt-button/index.vue.d.ts +148 -688
- package/dist/components/tt-drawer/index.d.ts +457 -2389
- package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +290 -1394
- package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +1 -1
- package/dist/components/tt-form/src/hooks/useSelectCollapse.d.ts +14 -0
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +198 -1170
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +99 -585
- package/dist/components/tt-image/index.d.ts +8 -8
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +4 -4
- package/dist/components/tt-image/tt-image.d.ts +12 -12
- package/dist/components/tt-modal/index.d.ts +30 -30
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +12 -12
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +5 -5
- package/dist/components/tt-panel-select/src/components/PanelLeft.vue.d.ts +17 -0
- package/dist/components/tt-panel-select/src/components/PanelMiddle.vue.d.ts +162 -0
- package/dist/components/tt-panel-select/src/components/PanelRight.vue.d.ts +15 -0
- package/dist/components/tt-panel-select/src/components/panel.types.d.ts +12 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectSelection.d.ts +1 -0
- package/dist/components/tt-table/index.d.ts +52 -322
- package/dist/components/tt-table/src/Table.vue.d.ts +104 -644
- package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +1 -1
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +199 -1171
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +104 -644
- package/dist/components/tt-upload/index.d.ts +47 -47
- package/dist/components/tt-upload/src/TtUpload.d.ts +47 -47
- package/dist/components/tt-upload/src/typing.d.ts +24 -24
- package/dist/index.js +9357 -9111
- package/dist/style.css +1 -1
- package/package.json +12 -12
- package/dist/components/tt-panel-select/index.d.ts +0 -15
- package/dist/components/tt-panel-select/src/components/Panel.vue.d.ts +0 -33
- package/dist/components/tt-panel-select/src/index.vue.d.ts +0 -14
|
@@ -24,41 +24,30 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
24
24
|
leftSlotScrollbarRef: Ref<({
|
|
25
25
|
$: import('vue').ComponentInternalInstance;
|
|
26
26
|
$data: {};
|
|
27
|
-
$props:
|
|
28
|
-
|
|
29
|
-
height
|
|
30
|
-
maxHeight
|
|
31
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
32
|
-
minSize: number;
|
|
33
|
-
distance: number;
|
|
34
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
35
|
-
wrapClass: string | string[];
|
|
36
|
-
viewClass: string | string[];
|
|
37
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
38
|
-
}> & Omit<{
|
|
39
|
-
readonly height: number | string;
|
|
40
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
41
|
-
readonly maxHeight: number | string;
|
|
42
|
-
readonly distance: number;
|
|
43
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
44
|
-
readonly wrapClass: string | string[];
|
|
45
|
-
readonly viewClass: string | string[];
|
|
46
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
47
|
-
readonly minSize: number;
|
|
48
|
-
readonly id?: string | undefined;
|
|
49
|
-
readonly ariaLabel?: string | undefined;
|
|
50
|
-
readonly role?: string | undefined;
|
|
51
|
-
readonly tabindex?: number | string | undefined;
|
|
27
|
+
$props: {
|
|
28
|
+
readonly distance?: number | undefined;
|
|
29
|
+
readonly height?: number | string | undefined;
|
|
30
|
+
readonly maxHeight?: number | string | undefined;
|
|
52
31
|
readonly native?: boolean | undefined;
|
|
32
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
33
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
34
|
+
readonly viewClass?: string | string[] | undefined;
|
|
35
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
53
36
|
readonly noresize?: boolean | undefined;
|
|
37
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
54
38
|
readonly always?: boolean | undefined;
|
|
39
|
+
readonly minSize?: number | undefined;
|
|
40
|
+
readonly tabindex?: number | string | undefined;
|
|
41
|
+
readonly id?: string | undefined;
|
|
42
|
+
readonly role?: string | undefined;
|
|
43
|
+
readonly ariaLabel?: string | undefined;
|
|
55
44
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
56
|
-
onScroll?: ((args_0: {
|
|
45
|
+
readonly onScroll?: ((args_0: {
|
|
57
46
|
scrollTop: number;
|
|
58
47
|
scrollLeft: number;
|
|
59
48
|
}) => any) | undefined | undefined;
|
|
60
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
61
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
49
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
50
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
62
51
|
$attrs: {
|
|
63
52
|
[x: string]: unknown;
|
|
64
53
|
};
|
|
@@ -76,76 +65,14 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
76
65
|
scrollLeft: number;
|
|
77
66
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
78
67
|
$el: any;
|
|
79
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
80
|
-
id: {
|
|
81
|
-
type: import('vue').PropType<string>;
|
|
82
|
-
};
|
|
83
|
-
ariaLabel: {
|
|
84
|
-
type: import('vue').PropType<string>;
|
|
85
|
-
};
|
|
86
|
-
role: {
|
|
87
|
-
type: import('vue').PropType<string>;
|
|
88
|
-
};
|
|
89
|
-
height: {
|
|
90
|
-
type: import('vue').PropType<string | number>;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
tabindex: {
|
|
94
|
-
type: import('vue').PropType<string | number>;
|
|
95
|
-
default: undefined;
|
|
96
|
-
};
|
|
97
|
-
tag: {
|
|
98
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
99
|
-
default: string;
|
|
100
|
-
};
|
|
101
|
-
maxHeight: {
|
|
102
|
-
type: import('vue').PropType<string | number>;
|
|
103
|
-
default: string;
|
|
104
|
-
};
|
|
105
|
-
distance: {
|
|
106
|
-
type: import('vue').PropType<number>;
|
|
107
|
-
default: number;
|
|
108
|
-
};
|
|
109
|
-
native: {
|
|
110
|
-
type: import('vue').PropType<boolean>;
|
|
111
|
-
};
|
|
112
|
-
wrapStyle: {
|
|
113
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
114
|
-
default: string;
|
|
115
|
-
};
|
|
116
|
-
wrapClass: {
|
|
117
|
-
type: import('vue').PropType<string | string[]>;
|
|
118
|
-
default: string;
|
|
119
|
-
};
|
|
120
|
-
viewClass: {
|
|
121
|
-
type: import('vue').PropType<string | string[]>;
|
|
122
|
-
default: string;
|
|
123
|
-
};
|
|
124
|
-
viewStyle: {
|
|
125
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
126
|
-
default: string;
|
|
127
|
-
};
|
|
128
|
-
noresize: {
|
|
129
|
-
type: import('vue').PropType<boolean>;
|
|
130
|
-
};
|
|
131
|
-
always: {
|
|
132
|
-
type: import('vue').PropType<boolean>;
|
|
133
|
-
};
|
|
134
|
-
minSize: {
|
|
135
|
-
type: import('vue').PropType<number>;
|
|
136
|
-
default: number;
|
|
137
|
-
};
|
|
138
|
-
ariaOrientation: {
|
|
139
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
140
|
-
};
|
|
141
|
-
}>> & {
|
|
68
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
142
69
|
onScroll?: ((args_0: {
|
|
143
70
|
scrollTop: number;
|
|
144
71
|
scrollLeft: number;
|
|
145
72
|
}) => any) | undefined;
|
|
146
73
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
147
|
-
}
|
|
148
|
-
wrapRef:
|
|
74
|
+
}>, {
|
|
75
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
149
76
|
update: () => void;
|
|
150
77
|
scrollTo: {
|
|
151
78
|
(xCord: number, yCord?: number): void;
|
|
@@ -154,7 +81,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
154
81
|
setScrollTop: (value: number) => void;
|
|
155
82
|
setScrollLeft: (value: number) => void;
|
|
156
83
|
handleScroll: () => void;
|
|
157
|
-
},
|
|
84
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
158
85
|
scroll: (args_0: {
|
|
159
86
|
scrollTop: number;
|
|
160
87
|
scrollLeft: number;
|
|
@@ -165,12 +92,12 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
165
92
|
height: number | string;
|
|
166
93
|
maxHeight: number | string;
|
|
167
94
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
168
|
-
minSize: number;
|
|
169
95
|
distance: number;
|
|
170
96
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
171
97
|
wrapClass: string | string[];
|
|
172
98
|
viewClass: string | string[];
|
|
173
99
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
100
|
+
minSize: number;
|
|
174
101
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
175
102
|
beforeCreate?: (() => void) | (() => void)[];
|
|
176
103
|
created?: (() => void) | (() => void)[];
|
|
@@ -196,82 +123,20 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
196
123
|
height: number | string;
|
|
197
124
|
maxHeight: number | string;
|
|
198
125
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
199
|
-
minSize: number;
|
|
200
126
|
distance: number;
|
|
201
127
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
202
128
|
wrapClass: string | string[];
|
|
203
129
|
viewClass: string | string[];
|
|
204
130
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
type: import('vue').PropType<string>;
|
|
208
|
-
};
|
|
209
|
-
ariaLabel: {
|
|
210
|
-
type: import('vue').PropType<string>;
|
|
211
|
-
};
|
|
212
|
-
role: {
|
|
213
|
-
type: import('vue').PropType<string>;
|
|
214
|
-
};
|
|
215
|
-
height: {
|
|
216
|
-
type: import('vue').PropType<string | number>;
|
|
217
|
-
default: string;
|
|
218
|
-
};
|
|
219
|
-
tabindex: {
|
|
220
|
-
type: import('vue').PropType<string | number>;
|
|
221
|
-
default: undefined;
|
|
222
|
-
};
|
|
223
|
-
tag: {
|
|
224
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
225
|
-
default: string;
|
|
226
|
-
};
|
|
227
|
-
maxHeight: {
|
|
228
|
-
type: import('vue').PropType<string | number>;
|
|
229
|
-
default: string;
|
|
230
|
-
};
|
|
231
|
-
distance: {
|
|
232
|
-
type: import('vue').PropType<number>;
|
|
233
|
-
default: number;
|
|
234
|
-
};
|
|
235
|
-
native: {
|
|
236
|
-
type: import('vue').PropType<boolean>;
|
|
237
|
-
};
|
|
238
|
-
wrapStyle: {
|
|
239
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
240
|
-
default: string;
|
|
241
|
-
};
|
|
242
|
-
wrapClass: {
|
|
243
|
-
type: import('vue').PropType<string | string[]>;
|
|
244
|
-
default: string;
|
|
245
|
-
};
|
|
246
|
-
viewClass: {
|
|
247
|
-
type: import('vue').PropType<string | string[]>;
|
|
248
|
-
default: string;
|
|
249
|
-
};
|
|
250
|
-
viewStyle: {
|
|
251
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
252
|
-
default: string;
|
|
253
|
-
};
|
|
254
|
-
noresize: {
|
|
255
|
-
type: import('vue').PropType<boolean>;
|
|
256
|
-
};
|
|
257
|
-
always: {
|
|
258
|
-
type: import('vue').PropType<boolean>;
|
|
259
|
-
};
|
|
260
|
-
minSize: {
|
|
261
|
-
type: import('vue').PropType<number>;
|
|
262
|
-
default: number;
|
|
263
|
-
};
|
|
264
|
-
ariaOrientation: {
|
|
265
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
266
|
-
};
|
|
267
|
-
}>> & {
|
|
131
|
+
minSize: number;
|
|
132
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
268
133
|
onScroll?: ((args_0: {
|
|
269
134
|
scrollTop: number;
|
|
270
135
|
scrollLeft: number;
|
|
271
136
|
}) => any) | undefined;
|
|
272
137
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
273
|
-
}
|
|
274
|
-
wrapRef:
|
|
138
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
139
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
275
140
|
update: () => void;
|
|
276
141
|
scrollTo: {
|
|
277
142
|
(xCord: number, yCord?: number): void;
|
|
@@ -287,41 +152,30 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
287
152
|
}) | undefined, ({
|
|
288
153
|
$: import('vue').ComponentInternalInstance;
|
|
289
154
|
$data: {};
|
|
290
|
-
$props:
|
|
291
|
-
|
|
292
|
-
height
|
|
293
|
-
maxHeight
|
|
294
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
295
|
-
minSize: number;
|
|
296
|
-
distance: number;
|
|
297
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
298
|
-
wrapClass: string | string[];
|
|
299
|
-
viewClass: string | string[];
|
|
300
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
301
|
-
}> & Omit<{
|
|
302
|
-
readonly height: number | string;
|
|
303
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
304
|
-
readonly maxHeight: number | string;
|
|
305
|
-
readonly distance: number;
|
|
306
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
307
|
-
readonly wrapClass: string | string[];
|
|
308
|
-
readonly viewClass: string | string[];
|
|
309
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
310
|
-
readonly minSize: number;
|
|
311
|
-
readonly id?: string | undefined;
|
|
312
|
-
readonly ariaLabel?: string | undefined;
|
|
313
|
-
readonly role?: string | undefined;
|
|
314
|
-
readonly tabindex?: number | string | undefined;
|
|
155
|
+
$props: {
|
|
156
|
+
readonly distance?: number | undefined;
|
|
157
|
+
readonly height?: number | string | undefined;
|
|
158
|
+
readonly maxHeight?: number | string | undefined;
|
|
315
159
|
readonly native?: boolean | undefined;
|
|
160
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
161
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
162
|
+
readonly viewClass?: string | string[] | undefined;
|
|
163
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
316
164
|
readonly noresize?: boolean | undefined;
|
|
165
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
317
166
|
readonly always?: boolean | undefined;
|
|
167
|
+
readonly minSize?: number | undefined;
|
|
168
|
+
readonly tabindex?: number | string | undefined;
|
|
169
|
+
readonly id?: string | undefined;
|
|
170
|
+
readonly role?: string | undefined;
|
|
171
|
+
readonly ariaLabel?: string | undefined;
|
|
318
172
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
319
|
-
onScroll?: ((args_0: {
|
|
173
|
+
readonly onScroll?: ((args_0: {
|
|
320
174
|
scrollTop: number;
|
|
321
175
|
scrollLeft: number;
|
|
322
176
|
}) => any) | undefined | undefined;
|
|
323
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
324
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
177
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
178
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
325
179
|
$attrs: {
|
|
326
180
|
[x: string]: unknown;
|
|
327
181
|
};
|
|
@@ -339,76 +193,14 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
339
193
|
scrollLeft: number;
|
|
340
194
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
341
195
|
$el: any;
|
|
342
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
343
|
-
id: {
|
|
344
|
-
type: import('vue').PropType<string>;
|
|
345
|
-
};
|
|
346
|
-
ariaLabel: {
|
|
347
|
-
type: import('vue').PropType<string>;
|
|
348
|
-
};
|
|
349
|
-
role: {
|
|
350
|
-
type: import('vue').PropType<string>;
|
|
351
|
-
};
|
|
352
|
-
height: {
|
|
353
|
-
type: import('vue').PropType<string | number>;
|
|
354
|
-
default: string;
|
|
355
|
-
};
|
|
356
|
-
tabindex: {
|
|
357
|
-
type: import('vue').PropType<string | number>;
|
|
358
|
-
default: undefined;
|
|
359
|
-
};
|
|
360
|
-
tag: {
|
|
361
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
362
|
-
default: string;
|
|
363
|
-
};
|
|
364
|
-
maxHeight: {
|
|
365
|
-
type: import('vue').PropType<string | number>;
|
|
366
|
-
default: string;
|
|
367
|
-
};
|
|
368
|
-
distance: {
|
|
369
|
-
type: import('vue').PropType<number>;
|
|
370
|
-
default: number;
|
|
371
|
-
};
|
|
372
|
-
native: {
|
|
373
|
-
type: import('vue').PropType<boolean>;
|
|
374
|
-
};
|
|
375
|
-
wrapStyle: {
|
|
376
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
377
|
-
default: string;
|
|
378
|
-
};
|
|
379
|
-
wrapClass: {
|
|
380
|
-
type: import('vue').PropType<string | string[]>;
|
|
381
|
-
default: string;
|
|
382
|
-
};
|
|
383
|
-
viewClass: {
|
|
384
|
-
type: import('vue').PropType<string | string[]>;
|
|
385
|
-
default: string;
|
|
386
|
-
};
|
|
387
|
-
viewStyle: {
|
|
388
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
389
|
-
default: string;
|
|
390
|
-
};
|
|
391
|
-
noresize: {
|
|
392
|
-
type: import('vue').PropType<boolean>;
|
|
393
|
-
};
|
|
394
|
-
always: {
|
|
395
|
-
type: import('vue').PropType<boolean>;
|
|
396
|
-
};
|
|
397
|
-
minSize: {
|
|
398
|
-
type: import('vue').PropType<number>;
|
|
399
|
-
default: number;
|
|
400
|
-
};
|
|
401
|
-
ariaOrientation: {
|
|
402
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
403
|
-
};
|
|
404
|
-
}>> & {
|
|
196
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
405
197
|
onScroll?: ((args_0: {
|
|
406
198
|
scrollTop: number;
|
|
407
199
|
scrollLeft: number;
|
|
408
200
|
}) => any) | undefined;
|
|
409
201
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
410
|
-
}
|
|
411
|
-
wrapRef:
|
|
202
|
+
}>, {
|
|
203
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
412
204
|
update: () => void;
|
|
413
205
|
scrollTo: {
|
|
414
206
|
(xCord: number, yCord?: number): void;
|
|
@@ -417,7 +209,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
417
209
|
setScrollTop: (value: number) => void;
|
|
418
210
|
setScrollLeft: (value: number) => void;
|
|
419
211
|
handleScroll: () => void;
|
|
420
|
-
},
|
|
212
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
421
213
|
scroll: (args_0: {
|
|
422
214
|
scrollTop: number;
|
|
423
215
|
scrollLeft: number;
|
|
@@ -428,12 +220,12 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
428
220
|
height: number | string;
|
|
429
221
|
maxHeight: number | string;
|
|
430
222
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
431
|
-
minSize: number;
|
|
432
223
|
distance: number;
|
|
433
224
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
434
225
|
wrapClass: string | string[];
|
|
435
226
|
viewClass: string | string[];
|
|
436
227
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
228
|
+
minSize: number;
|
|
437
229
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
438
230
|
beforeCreate?: (() => void) | (() => void)[];
|
|
439
231
|
created?: (() => void) | (() => void)[];
|
|
@@ -459,82 +251,20 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
459
251
|
height: number | string;
|
|
460
252
|
maxHeight: number | string;
|
|
461
253
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
462
|
-
minSize: number;
|
|
463
254
|
distance: number;
|
|
464
255
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
465
256
|
wrapClass: string | string[];
|
|
466
257
|
viewClass: string | string[];
|
|
467
258
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
type: import('vue').PropType<string>;
|
|
471
|
-
};
|
|
472
|
-
ariaLabel: {
|
|
473
|
-
type: import('vue').PropType<string>;
|
|
474
|
-
};
|
|
475
|
-
role: {
|
|
476
|
-
type: import('vue').PropType<string>;
|
|
477
|
-
};
|
|
478
|
-
height: {
|
|
479
|
-
type: import('vue').PropType<string | number>;
|
|
480
|
-
default: string;
|
|
481
|
-
};
|
|
482
|
-
tabindex: {
|
|
483
|
-
type: import('vue').PropType<string | number>;
|
|
484
|
-
default: undefined;
|
|
485
|
-
};
|
|
486
|
-
tag: {
|
|
487
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
488
|
-
default: string;
|
|
489
|
-
};
|
|
490
|
-
maxHeight: {
|
|
491
|
-
type: import('vue').PropType<string | number>;
|
|
492
|
-
default: string;
|
|
493
|
-
};
|
|
494
|
-
distance: {
|
|
495
|
-
type: import('vue').PropType<number>;
|
|
496
|
-
default: number;
|
|
497
|
-
};
|
|
498
|
-
native: {
|
|
499
|
-
type: import('vue').PropType<boolean>;
|
|
500
|
-
};
|
|
501
|
-
wrapStyle: {
|
|
502
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
503
|
-
default: string;
|
|
504
|
-
};
|
|
505
|
-
wrapClass: {
|
|
506
|
-
type: import('vue').PropType<string | string[]>;
|
|
507
|
-
default: string;
|
|
508
|
-
};
|
|
509
|
-
viewClass: {
|
|
510
|
-
type: import('vue').PropType<string | string[]>;
|
|
511
|
-
default: string;
|
|
512
|
-
};
|
|
513
|
-
viewStyle: {
|
|
514
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
515
|
-
default: string;
|
|
516
|
-
};
|
|
517
|
-
noresize: {
|
|
518
|
-
type: import('vue').PropType<boolean>;
|
|
519
|
-
};
|
|
520
|
-
always: {
|
|
521
|
-
type: import('vue').PropType<boolean>;
|
|
522
|
-
};
|
|
523
|
-
minSize: {
|
|
524
|
-
type: import('vue').PropType<number>;
|
|
525
|
-
default: number;
|
|
526
|
-
};
|
|
527
|
-
ariaOrientation: {
|
|
528
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
529
|
-
};
|
|
530
|
-
}>> & {
|
|
259
|
+
minSize: number;
|
|
260
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
531
261
|
onScroll?: ((args_0: {
|
|
532
262
|
scrollTop: number;
|
|
533
263
|
scrollLeft: number;
|
|
534
264
|
}) => any) | undefined;
|
|
535
265
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
536
|
-
}
|
|
537
|
-
wrapRef:
|
|
266
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
267
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
538
268
|
update: () => void;
|
|
539
269
|
scrollTo: {
|
|
540
270
|
(xCord: number, yCord?: number): void;
|
|
@@ -551,41 +281,30 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
551
281
|
rightSlotScrollbarRef: Ref<({
|
|
552
282
|
$: import('vue').ComponentInternalInstance;
|
|
553
283
|
$data: {};
|
|
554
|
-
$props:
|
|
555
|
-
|
|
556
|
-
height
|
|
557
|
-
maxHeight
|
|
558
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
559
|
-
minSize: number;
|
|
560
|
-
distance: number;
|
|
561
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
562
|
-
wrapClass: string | string[];
|
|
563
|
-
viewClass: string | string[];
|
|
564
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
565
|
-
}> & Omit<{
|
|
566
|
-
readonly height: number | string;
|
|
567
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
568
|
-
readonly maxHeight: number | string;
|
|
569
|
-
readonly distance: number;
|
|
570
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
571
|
-
readonly wrapClass: string | string[];
|
|
572
|
-
readonly viewClass: string | string[];
|
|
573
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
574
|
-
readonly minSize: number;
|
|
575
|
-
readonly id?: string | undefined;
|
|
576
|
-
readonly ariaLabel?: string | undefined;
|
|
577
|
-
readonly role?: string | undefined;
|
|
578
|
-
readonly tabindex?: number | string | undefined;
|
|
284
|
+
$props: {
|
|
285
|
+
readonly distance?: number | undefined;
|
|
286
|
+
readonly height?: number | string | undefined;
|
|
287
|
+
readonly maxHeight?: number | string | undefined;
|
|
579
288
|
readonly native?: boolean | undefined;
|
|
289
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
290
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
291
|
+
readonly viewClass?: string | string[] | undefined;
|
|
292
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
580
293
|
readonly noresize?: boolean | undefined;
|
|
294
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
581
295
|
readonly always?: boolean | undefined;
|
|
296
|
+
readonly minSize?: number | undefined;
|
|
297
|
+
readonly tabindex?: number | string | undefined;
|
|
298
|
+
readonly id?: string | undefined;
|
|
299
|
+
readonly role?: string | undefined;
|
|
300
|
+
readonly ariaLabel?: string | undefined;
|
|
582
301
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
583
|
-
onScroll?: ((args_0: {
|
|
302
|
+
readonly onScroll?: ((args_0: {
|
|
584
303
|
scrollTop: number;
|
|
585
304
|
scrollLeft: number;
|
|
586
305
|
}) => any) | undefined | undefined;
|
|
587
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
588
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
306
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
307
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
589
308
|
$attrs: {
|
|
590
309
|
[x: string]: unknown;
|
|
591
310
|
};
|
|
@@ -603,76 +322,14 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
603
322
|
scrollLeft: number;
|
|
604
323
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
605
324
|
$el: any;
|
|
606
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
607
|
-
id: {
|
|
608
|
-
type: import('vue').PropType<string>;
|
|
609
|
-
};
|
|
610
|
-
ariaLabel: {
|
|
611
|
-
type: import('vue').PropType<string>;
|
|
612
|
-
};
|
|
613
|
-
role: {
|
|
614
|
-
type: import('vue').PropType<string>;
|
|
615
|
-
};
|
|
616
|
-
height: {
|
|
617
|
-
type: import('vue').PropType<string | number>;
|
|
618
|
-
default: string;
|
|
619
|
-
};
|
|
620
|
-
tabindex: {
|
|
621
|
-
type: import('vue').PropType<string | number>;
|
|
622
|
-
default: undefined;
|
|
623
|
-
};
|
|
624
|
-
tag: {
|
|
625
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
626
|
-
default: string;
|
|
627
|
-
};
|
|
628
|
-
maxHeight: {
|
|
629
|
-
type: import('vue').PropType<string | number>;
|
|
630
|
-
default: string;
|
|
631
|
-
};
|
|
632
|
-
distance: {
|
|
633
|
-
type: import('vue').PropType<number>;
|
|
634
|
-
default: number;
|
|
635
|
-
};
|
|
636
|
-
native: {
|
|
637
|
-
type: import('vue').PropType<boolean>;
|
|
638
|
-
};
|
|
639
|
-
wrapStyle: {
|
|
640
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
641
|
-
default: string;
|
|
642
|
-
};
|
|
643
|
-
wrapClass: {
|
|
644
|
-
type: import('vue').PropType<string | string[]>;
|
|
645
|
-
default: string;
|
|
646
|
-
};
|
|
647
|
-
viewClass: {
|
|
648
|
-
type: import('vue').PropType<string | string[]>;
|
|
649
|
-
default: string;
|
|
650
|
-
};
|
|
651
|
-
viewStyle: {
|
|
652
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
653
|
-
default: string;
|
|
654
|
-
};
|
|
655
|
-
noresize: {
|
|
656
|
-
type: import('vue').PropType<boolean>;
|
|
657
|
-
};
|
|
658
|
-
always: {
|
|
659
|
-
type: import('vue').PropType<boolean>;
|
|
660
|
-
};
|
|
661
|
-
minSize: {
|
|
662
|
-
type: import('vue').PropType<number>;
|
|
663
|
-
default: number;
|
|
664
|
-
};
|
|
665
|
-
ariaOrientation: {
|
|
666
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
667
|
-
};
|
|
668
|
-
}>> & {
|
|
325
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
669
326
|
onScroll?: ((args_0: {
|
|
670
327
|
scrollTop: number;
|
|
671
328
|
scrollLeft: number;
|
|
672
329
|
}) => any) | undefined;
|
|
673
330
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
674
|
-
}
|
|
675
|
-
wrapRef:
|
|
331
|
+
}>, {
|
|
332
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
676
333
|
update: () => void;
|
|
677
334
|
scrollTo: {
|
|
678
335
|
(xCord: number, yCord?: number): void;
|
|
@@ -681,7 +338,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
681
338
|
setScrollTop: (value: number) => void;
|
|
682
339
|
setScrollLeft: (value: number) => void;
|
|
683
340
|
handleScroll: () => void;
|
|
684
|
-
},
|
|
341
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
685
342
|
scroll: (args_0: {
|
|
686
343
|
scrollTop: number;
|
|
687
344
|
scrollLeft: number;
|
|
@@ -692,12 +349,12 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
692
349
|
height: number | string;
|
|
693
350
|
maxHeight: number | string;
|
|
694
351
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
695
|
-
minSize: number;
|
|
696
352
|
distance: number;
|
|
697
353
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
698
354
|
wrapClass: string | string[];
|
|
699
355
|
viewClass: string | string[];
|
|
700
356
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
357
|
+
minSize: number;
|
|
701
358
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
702
359
|
beforeCreate?: (() => void) | (() => void)[];
|
|
703
360
|
created?: (() => void) | (() => void)[];
|
|
@@ -723,82 +380,20 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
723
380
|
height: number | string;
|
|
724
381
|
maxHeight: number | string;
|
|
725
382
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
726
|
-
minSize: number;
|
|
727
383
|
distance: number;
|
|
728
384
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
729
385
|
wrapClass: string | string[];
|
|
730
386
|
viewClass: string | string[];
|
|
731
387
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
type: import('vue').PropType<string>;
|
|
735
|
-
};
|
|
736
|
-
ariaLabel: {
|
|
737
|
-
type: import('vue').PropType<string>;
|
|
738
|
-
};
|
|
739
|
-
role: {
|
|
740
|
-
type: import('vue').PropType<string>;
|
|
741
|
-
};
|
|
742
|
-
height: {
|
|
743
|
-
type: import('vue').PropType<string | number>;
|
|
744
|
-
default: string;
|
|
745
|
-
};
|
|
746
|
-
tabindex: {
|
|
747
|
-
type: import('vue').PropType<string | number>;
|
|
748
|
-
default: undefined;
|
|
749
|
-
};
|
|
750
|
-
tag: {
|
|
751
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
752
|
-
default: string;
|
|
753
|
-
};
|
|
754
|
-
maxHeight: {
|
|
755
|
-
type: import('vue').PropType<string | number>;
|
|
756
|
-
default: string;
|
|
757
|
-
};
|
|
758
|
-
distance: {
|
|
759
|
-
type: import('vue').PropType<number>;
|
|
760
|
-
default: number;
|
|
761
|
-
};
|
|
762
|
-
native: {
|
|
763
|
-
type: import('vue').PropType<boolean>;
|
|
764
|
-
};
|
|
765
|
-
wrapStyle: {
|
|
766
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
767
|
-
default: string;
|
|
768
|
-
};
|
|
769
|
-
wrapClass: {
|
|
770
|
-
type: import('vue').PropType<string | string[]>;
|
|
771
|
-
default: string;
|
|
772
|
-
};
|
|
773
|
-
viewClass: {
|
|
774
|
-
type: import('vue').PropType<string | string[]>;
|
|
775
|
-
default: string;
|
|
776
|
-
};
|
|
777
|
-
viewStyle: {
|
|
778
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
779
|
-
default: string;
|
|
780
|
-
};
|
|
781
|
-
noresize: {
|
|
782
|
-
type: import('vue').PropType<boolean>;
|
|
783
|
-
};
|
|
784
|
-
always: {
|
|
785
|
-
type: import('vue').PropType<boolean>;
|
|
786
|
-
};
|
|
787
|
-
minSize: {
|
|
788
|
-
type: import('vue').PropType<number>;
|
|
789
|
-
default: number;
|
|
790
|
-
};
|
|
791
|
-
ariaOrientation: {
|
|
792
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
793
|
-
};
|
|
794
|
-
}>> & {
|
|
388
|
+
minSize: number;
|
|
389
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
795
390
|
onScroll?: ((args_0: {
|
|
796
391
|
scrollTop: number;
|
|
797
392
|
scrollLeft: number;
|
|
798
393
|
}) => any) | undefined;
|
|
799
394
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
800
|
-
}
|
|
801
|
-
wrapRef:
|
|
395
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
396
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
802
397
|
update: () => void;
|
|
803
398
|
scrollTo: {
|
|
804
399
|
(xCord: number, yCord?: number): void;
|
|
@@ -814,41 +409,30 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
814
409
|
}) | undefined, ({
|
|
815
410
|
$: import('vue').ComponentInternalInstance;
|
|
816
411
|
$data: {};
|
|
817
|
-
$props:
|
|
818
|
-
|
|
819
|
-
height
|
|
820
|
-
maxHeight
|
|
821
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
822
|
-
minSize: number;
|
|
823
|
-
distance: number;
|
|
824
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
825
|
-
wrapClass: string | string[];
|
|
826
|
-
viewClass: string | string[];
|
|
827
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
828
|
-
}> & Omit<{
|
|
829
|
-
readonly height: number | string;
|
|
830
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
831
|
-
readonly maxHeight: number | string;
|
|
832
|
-
readonly distance: number;
|
|
833
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
834
|
-
readonly wrapClass: string | string[];
|
|
835
|
-
readonly viewClass: string | string[];
|
|
836
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
837
|
-
readonly minSize: number;
|
|
838
|
-
readonly id?: string | undefined;
|
|
839
|
-
readonly ariaLabel?: string | undefined;
|
|
840
|
-
readonly role?: string | undefined;
|
|
841
|
-
readonly tabindex?: number | string | undefined;
|
|
412
|
+
$props: {
|
|
413
|
+
readonly distance?: number | undefined;
|
|
414
|
+
readonly height?: number | string | undefined;
|
|
415
|
+
readonly maxHeight?: number | string | undefined;
|
|
842
416
|
readonly native?: boolean | undefined;
|
|
417
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
418
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
419
|
+
readonly viewClass?: string | string[] | undefined;
|
|
420
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
843
421
|
readonly noresize?: boolean | undefined;
|
|
422
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
844
423
|
readonly always?: boolean | undefined;
|
|
424
|
+
readonly minSize?: number | undefined;
|
|
425
|
+
readonly tabindex?: number | string | undefined;
|
|
426
|
+
readonly id?: string | undefined;
|
|
427
|
+
readonly role?: string | undefined;
|
|
428
|
+
readonly ariaLabel?: string | undefined;
|
|
845
429
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
846
|
-
onScroll?: ((args_0: {
|
|
430
|
+
readonly onScroll?: ((args_0: {
|
|
847
431
|
scrollTop: number;
|
|
848
432
|
scrollLeft: number;
|
|
849
433
|
}) => any) | undefined | undefined;
|
|
850
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
851
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
434
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
435
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
852
436
|
$attrs: {
|
|
853
437
|
[x: string]: unknown;
|
|
854
438
|
};
|
|
@@ -866,76 +450,14 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
866
450
|
scrollLeft: number;
|
|
867
451
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
868
452
|
$el: any;
|
|
869
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
870
|
-
id: {
|
|
871
|
-
type: import('vue').PropType<string>;
|
|
872
|
-
};
|
|
873
|
-
ariaLabel: {
|
|
874
|
-
type: import('vue').PropType<string>;
|
|
875
|
-
};
|
|
876
|
-
role: {
|
|
877
|
-
type: import('vue').PropType<string>;
|
|
878
|
-
};
|
|
879
|
-
height: {
|
|
880
|
-
type: import('vue').PropType<string | number>;
|
|
881
|
-
default: string;
|
|
882
|
-
};
|
|
883
|
-
tabindex: {
|
|
884
|
-
type: import('vue').PropType<string | number>;
|
|
885
|
-
default: undefined;
|
|
886
|
-
};
|
|
887
|
-
tag: {
|
|
888
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
889
|
-
default: string;
|
|
890
|
-
};
|
|
891
|
-
maxHeight: {
|
|
892
|
-
type: import('vue').PropType<string | number>;
|
|
893
|
-
default: string;
|
|
894
|
-
};
|
|
895
|
-
distance: {
|
|
896
|
-
type: import('vue').PropType<number>;
|
|
897
|
-
default: number;
|
|
898
|
-
};
|
|
899
|
-
native: {
|
|
900
|
-
type: import('vue').PropType<boolean>;
|
|
901
|
-
};
|
|
902
|
-
wrapStyle: {
|
|
903
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
904
|
-
default: string;
|
|
905
|
-
};
|
|
906
|
-
wrapClass: {
|
|
907
|
-
type: import('vue').PropType<string | string[]>;
|
|
908
|
-
default: string;
|
|
909
|
-
};
|
|
910
|
-
viewClass: {
|
|
911
|
-
type: import('vue').PropType<string | string[]>;
|
|
912
|
-
default: string;
|
|
913
|
-
};
|
|
914
|
-
viewStyle: {
|
|
915
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
916
|
-
default: string;
|
|
917
|
-
};
|
|
918
|
-
noresize: {
|
|
919
|
-
type: import('vue').PropType<boolean>;
|
|
920
|
-
};
|
|
921
|
-
always: {
|
|
922
|
-
type: import('vue').PropType<boolean>;
|
|
923
|
-
};
|
|
924
|
-
minSize: {
|
|
925
|
-
type: import('vue').PropType<number>;
|
|
926
|
-
default: number;
|
|
927
|
-
};
|
|
928
|
-
ariaOrientation: {
|
|
929
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
930
|
-
};
|
|
931
|
-
}>> & {
|
|
453
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
932
454
|
onScroll?: ((args_0: {
|
|
933
455
|
scrollTop: number;
|
|
934
456
|
scrollLeft: number;
|
|
935
457
|
}) => any) | undefined;
|
|
936
458
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
937
|
-
}
|
|
938
|
-
wrapRef:
|
|
459
|
+
}>, {
|
|
460
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
939
461
|
update: () => void;
|
|
940
462
|
scrollTo: {
|
|
941
463
|
(xCord: number, yCord?: number): void;
|
|
@@ -944,7 +466,7 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
944
466
|
setScrollTop: (value: number) => void;
|
|
945
467
|
setScrollLeft: (value: number) => void;
|
|
946
468
|
handleScroll: () => void;
|
|
947
|
-
},
|
|
469
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
948
470
|
scroll: (args_0: {
|
|
949
471
|
scrollTop: number;
|
|
950
472
|
scrollLeft: number;
|
|
@@ -955,12 +477,12 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
955
477
|
height: number | string;
|
|
956
478
|
maxHeight: number | string;
|
|
957
479
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
958
|
-
minSize: number;
|
|
959
480
|
distance: number;
|
|
960
481
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
961
482
|
wrapClass: string | string[];
|
|
962
483
|
viewClass: string | string[];
|
|
963
484
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
485
|
+
minSize: number;
|
|
964
486
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
965
487
|
beforeCreate?: (() => void) | (() => void)[];
|
|
966
488
|
created?: (() => void) | (() => void)[];
|
|
@@ -986,82 +508,20 @@ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xG
|
|
|
986
508
|
height: number | string;
|
|
987
509
|
maxHeight: number | string;
|
|
988
510
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
989
|
-
minSize: number;
|
|
990
511
|
distance: number;
|
|
991
512
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
992
513
|
wrapClass: string | string[];
|
|
993
514
|
viewClass: string | string[];
|
|
994
515
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
type: import('vue').PropType<string>;
|
|
998
|
-
};
|
|
999
|
-
ariaLabel: {
|
|
1000
|
-
type: import('vue').PropType<string>;
|
|
1001
|
-
};
|
|
1002
|
-
role: {
|
|
1003
|
-
type: import('vue').PropType<string>;
|
|
1004
|
-
};
|
|
1005
|
-
height: {
|
|
1006
|
-
type: import('vue').PropType<string | number>;
|
|
1007
|
-
default: string;
|
|
1008
|
-
};
|
|
1009
|
-
tabindex: {
|
|
1010
|
-
type: import('vue').PropType<string | number>;
|
|
1011
|
-
default: undefined;
|
|
1012
|
-
};
|
|
1013
|
-
tag: {
|
|
1014
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1015
|
-
default: string;
|
|
1016
|
-
};
|
|
1017
|
-
maxHeight: {
|
|
1018
|
-
type: import('vue').PropType<string | number>;
|
|
1019
|
-
default: string;
|
|
1020
|
-
};
|
|
1021
|
-
distance: {
|
|
1022
|
-
type: import('vue').PropType<number>;
|
|
1023
|
-
default: number;
|
|
1024
|
-
};
|
|
1025
|
-
native: {
|
|
1026
|
-
type: import('vue').PropType<boolean>;
|
|
1027
|
-
};
|
|
1028
|
-
wrapStyle: {
|
|
1029
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1030
|
-
default: string;
|
|
1031
|
-
};
|
|
1032
|
-
wrapClass: {
|
|
1033
|
-
type: import('vue').PropType<string | string[]>;
|
|
1034
|
-
default: string;
|
|
1035
|
-
};
|
|
1036
|
-
viewClass: {
|
|
1037
|
-
type: import('vue').PropType<string | string[]>;
|
|
1038
|
-
default: string;
|
|
1039
|
-
};
|
|
1040
|
-
viewStyle: {
|
|
1041
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1042
|
-
default: string;
|
|
1043
|
-
};
|
|
1044
|
-
noresize: {
|
|
1045
|
-
type: import('vue').PropType<boolean>;
|
|
1046
|
-
};
|
|
1047
|
-
always: {
|
|
1048
|
-
type: import('vue').PropType<boolean>;
|
|
1049
|
-
};
|
|
1050
|
-
minSize: {
|
|
1051
|
-
type: import('vue').PropType<number>;
|
|
1052
|
-
default: number;
|
|
1053
|
-
};
|
|
1054
|
-
ariaOrientation: {
|
|
1055
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1056
|
-
};
|
|
1057
|
-
}>> & {
|
|
516
|
+
minSize: number;
|
|
517
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1058
518
|
onScroll?: ((args_0: {
|
|
1059
519
|
scrollTop: number;
|
|
1060
520
|
scrollLeft: number;
|
|
1061
521
|
}) => any) | undefined;
|
|
1062
522
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1063
|
-
}
|
|
1064
|
-
wrapRef:
|
|
523
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
524
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1065
525
|
update: () => void;
|
|
1066
526
|
scrollTo: {
|
|
1067
527
|
(xCord: number, yCord?: number): void;
|