@dazhicheng/ui 1.5.109 → 1.5.111
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/api/dataTypeContext.d.ts +1 -1
- 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/usePanelSelectData.d.ts +28 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectData.shared.d.ts +1 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectSelection.d.ts +21 -0
- package/dist/components/tt-panel-select/src/props.d.ts +41 -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/hooks/useFormSchemasLink.d.ts +3 -18
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9874 -9098
- package/dist/style.css +1 -1
- package/package.json +12 -12
|
@@ -30,41 +30,30 @@ declare function __VLS_template(): {
|
|
|
30
30
|
leftSlotScrollbarRef: ({
|
|
31
31
|
$: import('vue').ComponentInternalInstance;
|
|
32
32
|
$data: {};
|
|
33
|
-
$props:
|
|
34
|
-
|
|
35
|
-
height
|
|
36
|
-
maxHeight
|
|
37
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
38
|
-
minSize: number;
|
|
39
|
-
distance: number;
|
|
40
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
41
|
-
wrapClass: string | string[];
|
|
42
|
-
viewClass: string | string[];
|
|
43
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
44
|
-
}> & Omit<{
|
|
45
|
-
readonly height: number | string;
|
|
46
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
47
|
-
readonly maxHeight: number | string;
|
|
48
|
-
readonly distance: number;
|
|
49
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
50
|
-
readonly wrapClass: string | string[];
|
|
51
|
-
readonly viewClass: string | string[];
|
|
52
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
53
|
-
readonly minSize: number;
|
|
54
|
-
readonly id?: string | undefined;
|
|
55
|
-
readonly ariaLabel?: string | undefined;
|
|
56
|
-
readonly role?: string | undefined;
|
|
57
|
-
readonly tabindex?: number | string | undefined;
|
|
33
|
+
$props: {
|
|
34
|
+
readonly distance?: number | undefined;
|
|
35
|
+
readonly height?: number | string | undefined;
|
|
36
|
+
readonly maxHeight?: number | string | undefined;
|
|
58
37
|
readonly native?: boolean | undefined;
|
|
38
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
39
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
40
|
+
readonly viewClass?: string | string[] | undefined;
|
|
41
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
59
42
|
readonly noresize?: boolean | undefined;
|
|
43
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
60
44
|
readonly always?: boolean | undefined;
|
|
45
|
+
readonly minSize?: number | undefined;
|
|
46
|
+
readonly tabindex?: number | string | undefined;
|
|
47
|
+
readonly id?: string | undefined;
|
|
48
|
+
readonly role?: string | undefined;
|
|
49
|
+
readonly ariaLabel?: string | undefined;
|
|
61
50
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
62
|
-
onScroll?: ((args_0: {
|
|
51
|
+
readonly onScroll?: ((args_0: {
|
|
63
52
|
scrollTop: number;
|
|
64
53
|
scrollLeft: number;
|
|
65
54
|
}) => any) | undefined | undefined;
|
|
66
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
67
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
55
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
56
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
68
57
|
$attrs: {
|
|
69
58
|
[x: string]: unknown;
|
|
70
59
|
};
|
|
@@ -82,76 +71,14 @@ declare function __VLS_template(): {
|
|
|
82
71
|
scrollLeft: number;
|
|
83
72
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
84
73
|
$el: any;
|
|
85
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
86
|
-
id: {
|
|
87
|
-
type: import('vue').PropType<string>;
|
|
88
|
-
};
|
|
89
|
-
ariaLabel: {
|
|
90
|
-
type: import('vue').PropType<string>;
|
|
91
|
-
};
|
|
92
|
-
role: {
|
|
93
|
-
type: import('vue').PropType<string>;
|
|
94
|
-
};
|
|
95
|
-
height: {
|
|
96
|
-
type: import('vue').PropType<string | number>;
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
tabindex: {
|
|
100
|
-
type: import('vue').PropType<string | number>;
|
|
101
|
-
default: undefined;
|
|
102
|
-
};
|
|
103
|
-
tag: {
|
|
104
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
105
|
-
default: string;
|
|
106
|
-
};
|
|
107
|
-
maxHeight: {
|
|
108
|
-
type: import('vue').PropType<string | number>;
|
|
109
|
-
default: string;
|
|
110
|
-
};
|
|
111
|
-
distance: {
|
|
112
|
-
type: import('vue').PropType<number>;
|
|
113
|
-
default: number;
|
|
114
|
-
};
|
|
115
|
-
native: {
|
|
116
|
-
type: import('vue').PropType<boolean>;
|
|
117
|
-
};
|
|
118
|
-
wrapStyle: {
|
|
119
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
120
|
-
default: string;
|
|
121
|
-
};
|
|
122
|
-
wrapClass: {
|
|
123
|
-
type: import('vue').PropType<string | string[]>;
|
|
124
|
-
default: string;
|
|
125
|
-
};
|
|
126
|
-
viewClass: {
|
|
127
|
-
type: import('vue').PropType<string | string[]>;
|
|
128
|
-
default: string;
|
|
129
|
-
};
|
|
130
|
-
viewStyle: {
|
|
131
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
132
|
-
default: string;
|
|
133
|
-
};
|
|
134
|
-
noresize: {
|
|
135
|
-
type: import('vue').PropType<boolean>;
|
|
136
|
-
};
|
|
137
|
-
always: {
|
|
138
|
-
type: import('vue').PropType<boolean>;
|
|
139
|
-
};
|
|
140
|
-
minSize: {
|
|
141
|
-
type: import('vue').PropType<number>;
|
|
142
|
-
default: number;
|
|
143
|
-
};
|
|
144
|
-
ariaOrientation: {
|
|
145
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
146
|
-
};
|
|
147
|
-
}>> & {
|
|
74
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
148
75
|
onScroll?: ((args_0: {
|
|
149
76
|
scrollTop: number;
|
|
150
77
|
scrollLeft: number;
|
|
151
78
|
}) => any) | undefined;
|
|
152
79
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
153
|
-
}
|
|
154
|
-
wrapRef:
|
|
80
|
+
}>, {
|
|
81
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
155
82
|
update: () => void;
|
|
156
83
|
scrollTo: {
|
|
157
84
|
(xCord: number, yCord?: number): void;
|
|
@@ -160,7 +87,7 @@ declare function __VLS_template(): {
|
|
|
160
87
|
setScrollTop: (value: number) => void;
|
|
161
88
|
setScrollLeft: (value: number) => void;
|
|
162
89
|
handleScroll: () => void;
|
|
163
|
-
},
|
|
90
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
164
91
|
scroll: (args_0: {
|
|
165
92
|
scrollTop: number;
|
|
166
93
|
scrollLeft: number;
|
|
@@ -171,12 +98,12 @@ declare function __VLS_template(): {
|
|
|
171
98
|
height: number | string;
|
|
172
99
|
maxHeight: number | string;
|
|
173
100
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
174
|
-
minSize: number;
|
|
175
101
|
distance: number;
|
|
176
102
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
177
103
|
wrapClass: string | string[];
|
|
178
104
|
viewClass: string | string[];
|
|
179
105
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
106
|
+
minSize: number;
|
|
180
107
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
181
108
|
beforeCreate?: (() => void) | (() => void)[];
|
|
182
109
|
created?: (() => void) | (() => void)[];
|
|
@@ -202,82 +129,20 @@ declare function __VLS_template(): {
|
|
|
202
129
|
height: number | string;
|
|
203
130
|
maxHeight: number | string;
|
|
204
131
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
205
|
-
minSize: number;
|
|
206
132
|
distance: number;
|
|
207
133
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
208
134
|
wrapClass: string | string[];
|
|
209
135
|
viewClass: string | string[];
|
|
210
136
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
type: import('vue').PropType<string>;
|
|
214
|
-
};
|
|
215
|
-
ariaLabel: {
|
|
216
|
-
type: import('vue').PropType<string>;
|
|
217
|
-
};
|
|
218
|
-
role: {
|
|
219
|
-
type: import('vue').PropType<string>;
|
|
220
|
-
};
|
|
221
|
-
height: {
|
|
222
|
-
type: import('vue').PropType<string | number>;
|
|
223
|
-
default: string;
|
|
224
|
-
};
|
|
225
|
-
tabindex: {
|
|
226
|
-
type: import('vue').PropType<string | number>;
|
|
227
|
-
default: undefined;
|
|
228
|
-
};
|
|
229
|
-
tag: {
|
|
230
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
231
|
-
default: string;
|
|
232
|
-
};
|
|
233
|
-
maxHeight: {
|
|
234
|
-
type: import('vue').PropType<string | number>;
|
|
235
|
-
default: string;
|
|
236
|
-
};
|
|
237
|
-
distance: {
|
|
238
|
-
type: import('vue').PropType<number>;
|
|
239
|
-
default: number;
|
|
240
|
-
};
|
|
241
|
-
native: {
|
|
242
|
-
type: import('vue').PropType<boolean>;
|
|
243
|
-
};
|
|
244
|
-
wrapStyle: {
|
|
245
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
246
|
-
default: string;
|
|
247
|
-
};
|
|
248
|
-
wrapClass: {
|
|
249
|
-
type: import('vue').PropType<string | string[]>;
|
|
250
|
-
default: string;
|
|
251
|
-
};
|
|
252
|
-
viewClass: {
|
|
253
|
-
type: import('vue').PropType<string | string[]>;
|
|
254
|
-
default: string;
|
|
255
|
-
};
|
|
256
|
-
viewStyle: {
|
|
257
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
258
|
-
default: string;
|
|
259
|
-
};
|
|
260
|
-
noresize: {
|
|
261
|
-
type: import('vue').PropType<boolean>;
|
|
262
|
-
};
|
|
263
|
-
always: {
|
|
264
|
-
type: import('vue').PropType<boolean>;
|
|
265
|
-
};
|
|
266
|
-
minSize: {
|
|
267
|
-
type: import('vue').PropType<number>;
|
|
268
|
-
default: number;
|
|
269
|
-
};
|
|
270
|
-
ariaOrientation: {
|
|
271
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
272
|
-
};
|
|
273
|
-
}>> & {
|
|
137
|
+
minSize: number;
|
|
138
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
274
139
|
onScroll?: ((args_0: {
|
|
275
140
|
scrollTop: number;
|
|
276
141
|
scrollLeft: number;
|
|
277
142
|
}) => any) | undefined;
|
|
278
143
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
279
|
-
}
|
|
280
|
-
wrapRef:
|
|
144
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
145
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
281
146
|
update: () => void;
|
|
282
147
|
scrollTo: {
|
|
283
148
|
(xCord: number, yCord?: number): void;
|
|
@@ -294,41 +159,30 @@ declare function __VLS_template(): {
|
|
|
294
159
|
rightSlotScrollbarRef: ({
|
|
295
160
|
$: import('vue').ComponentInternalInstance;
|
|
296
161
|
$data: {};
|
|
297
|
-
$props:
|
|
298
|
-
|
|
299
|
-
height
|
|
300
|
-
maxHeight
|
|
301
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
302
|
-
minSize: number;
|
|
303
|
-
distance: number;
|
|
304
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
305
|
-
wrapClass: string | string[];
|
|
306
|
-
viewClass: string | string[];
|
|
307
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
308
|
-
}> & Omit<{
|
|
309
|
-
readonly height: number | string;
|
|
310
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
311
|
-
readonly maxHeight: number | string;
|
|
312
|
-
readonly distance: number;
|
|
313
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
314
|
-
readonly wrapClass: string | string[];
|
|
315
|
-
readonly viewClass: string | string[];
|
|
316
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
317
|
-
readonly minSize: number;
|
|
318
|
-
readonly id?: string | undefined;
|
|
319
|
-
readonly ariaLabel?: string | undefined;
|
|
320
|
-
readonly role?: string | undefined;
|
|
321
|
-
readonly tabindex?: number | string | undefined;
|
|
162
|
+
$props: {
|
|
163
|
+
readonly distance?: number | undefined;
|
|
164
|
+
readonly height?: number | string | undefined;
|
|
165
|
+
readonly maxHeight?: number | string | undefined;
|
|
322
166
|
readonly native?: boolean | undefined;
|
|
167
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
168
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
169
|
+
readonly viewClass?: string | string[] | undefined;
|
|
170
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
323
171
|
readonly noresize?: boolean | undefined;
|
|
172
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
324
173
|
readonly always?: boolean | undefined;
|
|
174
|
+
readonly minSize?: number | undefined;
|
|
175
|
+
readonly tabindex?: number | string | undefined;
|
|
176
|
+
readonly id?: string | undefined;
|
|
177
|
+
readonly role?: string | undefined;
|
|
178
|
+
readonly ariaLabel?: string | undefined;
|
|
325
179
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
326
|
-
onScroll?: ((args_0: {
|
|
180
|
+
readonly onScroll?: ((args_0: {
|
|
327
181
|
scrollTop: number;
|
|
328
182
|
scrollLeft: number;
|
|
329
183
|
}) => any) | undefined | undefined;
|
|
330
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
331
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
184
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
185
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
332
186
|
$attrs: {
|
|
333
187
|
[x: string]: unknown;
|
|
334
188
|
};
|
|
@@ -346,76 +200,14 @@ declare function __VLS_template(): {
|
|
|
346
200
|
scrollLeft: number;
|
|
347
201
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
348
202
|
$el: any;
|
|
349
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
350
|
-
id: {
|
|
351
|
-
type: import('vue').PropType<string>;
|
|
352
|
-
};
|
|
353
|
-
ariaLabel: {
|
|
354
|
-
type: import('vue').PropType<string>;
|
|
355
|
-
};
|
|
356
|
-
role: {
|
|
357
|
-
type: import('vue').PropType<string>;
|
|
358
|
-
};
|
|
359
|
-
height: {
|
|
360
|
-
type: import('vue').PropType<string | number>;
|
|
361
|
-
default: string;
|
|
362
|
-
};
|
|
363
|
-
tabindex: {
|
|
364
|
-
type: import('vue').PropType<string | number>;
|
|
365
|
-
default: undefined;
|
|
366
|
-
};
|
|
367
|
-
tag: {
|
|
368
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
369
|
-
default: string;
|
|
370
|
-
};
|
|
371
|
-
maxHeight: {
|
|
372
|
-
type: import('vue').PropType<string | number>;
|
|
373
|
-
default: string;
|
|
374
|
-
};
|
|
375
|
-
distance: {
|
|
376
|
-
type: import('vue').PropType<number>;
|
|
377
|
-
default: number;
|
|
378
|
-
};
|
|
379
|
-
native: {
|
|
380
|
-
type: import('vue').PropType<boolean>;
|
|
381
|
-
};
|
|
382
|
-
wrapStyle: {
|
|
383
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
384
|
-
default: string;
|
|
385
|
-
};
|
|
386
|
-
wrapClass: {
|
|
387
|
-
type: import('vue').PropType<string | string[]>;
|
|
388
|
-
default: string;
|
|
389
|
-
};
|
|
390
|
-
viewClass: {
|
|
391
|
-
type: import('vue').PropType<string | string[]>;
|
|
392
|
-
default: string;
|
|
393
|
-
};
|
|
394
|
-
viewStyle: {
|
|
395
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
396
|
-
default: string;
|
|
397
|
-
};
|
|
398
|
-
noresize: {
|
|
399
|
-
type: import('vue').PropType<boolean>;
|
|
400
|
-
};
|
|
401
|
-
always: {
|
|
402
|
-
type: import('vue').PropType<boolean>;
|
|
403
|
-
};
|
|
404
|
-
minSize: {
|
|
405
|
-
type: import('vue').PropType<number>;
|
|
406
|
-
default: number;
|
|
407
|
-
};
|
|
408
|
-
ariaOrientation: {
|
|
409
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
410
|
-
};
|
|
411
|
-
}>> & {
|
|
203
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
412
204
|
onScroll?: ((args_0: {
|
|
413
205
|
scrollTop: number;
|
|
414
206
|
scrollLeft: number;
|
|
415
207
|
}) => any) | undefined;
|
|
416
208
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
417
|
-
}
|
|
418
|
-
wrapRef:
|
|
209
|
+
}>, {
|
|
210
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
419
211
|
update: () => void;
|
|
420
212
|
scrollTo: {
|
|
421
213
|
(xCord: number, yCord?: number): void;
|
|
@@ -424,7 +216,7 @@ declare function __VLS_template(): {
|
|
|
424
216
|
setScrollTop: (value: number) => void;
|
|
425
217
|
setScrollLeft: (value: number) => void;
|
|
426
218
|
handleScroll: () => void;
|
|
427
|
-
},
|
|
219
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
428
220
|
scroll: (args_0: {
|
|
429
221
|
scrollTop: number;
|
|
430
222
|
scrollLeft: number;
|
|
@@ -435,12 +227,12 @@ declare function __VLS_template(): {
|
|
|
435
227
|
height: number | string;
|
|
436
228
|
maxHeight: number | string;
|
|
437
229
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
438
|
-
minSize: number;
|
|
439
230
|
distance: number;
|
|
440
231
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
441
232
|
wrapClass: string | string[];
|
|
442
233
|
viewClass: string | string[];
|
|
443
234
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
235
|
+
minSize: number;
|
|
444
236
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
445
237
|
beforeCreate?: (() => void) | (() => void)[];
|
|
446
238
|
created?: (() => void) | (() => void)[];
|
|
@@ -466,82 +258,20 @@ declare function __VLS_template(): {
|
|
|
466
258
|
height: number | string;
|
|
467
259
|
maxHeight: number | string;
|
|
468
260
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
469
|
-
minSize: number;
|
|
470
261
|
distance: number;
|
|
471
262
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
472
263
|
wrapClass: string | string[];
|
|
473
264
|
viewClass: string | string[];
|
|
474
265
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
type: import('vue').PropType<string>;
|
|
478
|
-
};
|
|
479
|
-
ariaLabel: {
|
|
480
|
-
type: import('vue').PropType<string>;
|
|
481
|
-
};
|
|
482
|
-
role: {
|
|
483
|
-
type: import('vue').PropType<string>;
|
|
484
|
-
};
|
|
485
|
-
height: {
|
|
486
|
-
type: import('vue').PropType<string | number>;
|
|
487
|
-
default: string;
|
|
488
|
-
};
|
|
489
|
-
tabindex: {
|
|
490
|
-
type: import('vue').PropType<string | number>;
|
|
491
|
-
default: undefined;
|
|
492
|
-
};
|
|
493
|
-
tag: {
|
|
494
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
495
|
-
default: string;
|
|
496
|
-
};
|
|
497
|
-
maxHeight: {
|
|
498
|
-
type: import('vue').PropType<string | number>;
|
|
499
|
-
default: string;
|
|
500
|
-
};
|
|
501
|
-
distance: {
|
|
502
|
-
type: import('vue').PropType<number>;
|
|
503
|
-
default: number;
|
|
504
|
-
};
|
|
505
|
-
native: {
|
|
506
|
-
type: import('vue').PropType<boolean>;
|
|
507
|
-
};
|
|
508
|
-
wrapStyle: {
|
|
509
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
510
|
-
default: string;
|
|
511
|
-
};
|
|
512
|
-
wrapClass: {
|
|
513
|
-
type: import('vue').PropType<string | string[]>;
|
|
514
|
-
default: string;
|
|
515
|
-
};
|
|
516
|
-
viewClass: {
|
|
517
|
-
type: import('vue').PropType<string | string[]>;
|
|
518
|
-
default: string;
|
|
519
|
-
};
|
|
520
|
-
viewStyle: {
|
|
521
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
522
|
-
default: string;
|
|
523
|
-
};
|
|
524
|
-
noresize: {
|
|
525
|
-
type: import('vue').PropType<boolean>;
|
|
526
|
-
};
|
|
527
|
-
always: {
|
|
528
|
-
type: import('vue').PropType<boolean>;
|
|
529
|
-
};
|
|
530
|
-
minSize: {
|
|
531
|
-
type: import('vue').PropType<number>;
|
|
532
|
-
default: number;
|
|
533
|
-
};
|
|
534
|
-
ariaOrientation: {
|
|
535
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
536
|
-
};
|
|
537
|
-
}>> & {
|
|
266
|
+
minSize: number;
|
|
267
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
538
268
|
onScroll?: ((args_0: {
|
|
539
269
|
scrollTop: number;
|
|
540
270
|
scrollLeft: number;
|
|
541
271
|
}) => any) | undefined;
|
|
542
272
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
543
|
-
}
|
|
544
|
-
wrapRef:
|
|
273
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
274
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
545
275
|
update: () => void;
|
|
546
276
|
scrollTo: {
|
|
547
277
|
(xCord: number, yCord?: number): void;
|
|
@@ -1150,41 +880,30 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1150
880
|
leftSlotScrollbarRef: ({
|
|
1151
881
|
$: import('vue').ComponentInternalInstance;
|
|
1152
882
|
$data: {};
|
|
1153
|
-
$props:
|
|
1154
|
-
|
|
1155
|
-
height
|
|
1156
|
-
maxHeight
|
|
1157
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1158
|
-
minSize: number;
|
|
1159
|
-
distance: number;
|
|
1160
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1161
|
-
wrapClass: string | string[];
|
|
1162
|
-
viewClass: string | string[];
|
|
1163
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1164
|
-
}> & Omit<{
|
|
1165
|
-
readonly height: number | string;
|
|
1166
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1167
|
-
readonly maxHeight: number | string;
|
|
1168
|
-
readonly distance: number;
|
|
1169
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1170
|
-
readonly wrapClass: string | string[];
|
|
1171
|
-
readonly viewClass: string | string[];
|
|
1172
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1173
|
-
readonly minSize: number;
|
|
1174
|
-
readonly id?: string | undefined;
|
|
1175
|
-
readonly ariaLabel?: string | undefined;
|
|
1176
|
-
readonly role?: string | undefined;
|
|
1177
|
-
readonly tabindex?: number | string | undefined;
|
|
883
|
+
$props: {
|
|
884
|
+
readonly distance?: number | undefined;
|
|
885
|
+
readonly height?: number | string | undefined;
|
|
886
|
+
readonly maxHeight?: number | string | undefined;
|
|
1178
887
|
readonly native?: boolean | undefined;
|
|
888
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
889
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
890
|
+
readonly viewClass?: string | string[] | undefined;
|
|
891
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
1179
892
|
readonly noresize?: boolean | undefined;
|
|
893
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
1180
894
|
readonly always?: boolean | undefined;
|
|
895
|
+
readonly minSize?: number | undefined;
|
|
896
|
+
readonly tabindex?: number | string | undefined;
|
|
897
|
+
readonly id?: string | undefined;
|
|
898
|
+
readonly role?: string | undefined;
|
|
899
|
+
readonly ariaLabel?: string | undefined;
|
|
1181
900
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
1182
|
-
onScroll?: ((args_0: {
|
|
901
|
+
readonly onScroll?: ((args_0: {
|
|
1183
902
|
scrollTop: number;
|
|
1184
903
|
scrollLeft: number;
|
|
1185
904
|
}) => any) | undefined | undefined;
|
|
1186
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1187
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
905
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
906
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1188
907
|
$attrs: {
|
|
1189
908
|
[x: string]: unknown;
|
|
1190
909
|
};
|
|
@@ -1202,76 +921,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1202
921
|
scrollLeft: number;
|
|
1203
922
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
1204
923
|
$el: any;
|
|
1205
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
1206
|
-
id: {
|
|
1207
|
-
type: import('vue').PropType<string>;
|
|
1208
|
-
};
|
|
1209
|
-
ariaLabel: {
|
|
1210
|
-
type: import('vue').PropType<string>;
|
|
1211
|
-
};
|
|
1212
|
-
role: {
|
|
1213
|
-
type: import('vue').PropType<string>;
|
|
1214
|
-
};
|
|
1215
|
-
height: {
|
|
1216
|
-
type: import('vue').PropType<string | number>;
|
|
1217
|
-
default: string;
|
|
1218
|
-
};
|
|
1219
|
-
tabindex: {
|
|
1220
|
-
type: import('vue').PropType<string | number>;
|
|
1221
|
-
default: undefined;
|
|
1222
|
-
};
|
|
1223
|
-
tag: {
|
|
1224
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1225
|
-
default: string;
|
|
1226
|
-
};
|
|
1227
|
-
maxHeight: {
|
|
1228
|
-
type: import('vue').PropType<string | number>;
|
|
1229
|
-
default: string;
|
|
1230
|
-
};
|
|
1231
|
-
distance: {
|
|
1232
|
-
type: import('vue').PropType<number>;
|
|
1233
|
-
default: number;
|
|
1234
|
-
};
|
|
1235
|
-
native: {
|
|
1236
|
-
type: import('vue').PropType<boolean>;
|
|
1237
|
-
};
|
|
1238
|
-
wrapStyle: {
|
|
1239
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1240
|
-
default: string;
|
|
1241
|
-
};
|
|
1242
|
-
wrapClass: {
|
|
1243
|
-
type: import('vue').PropType<string | string[]>;
|
|
1244
|
-
default: string;
|
|
1245
|
-
};
|
|
1246
|
-
viewClass: {
|
|
1247
|
-
type: import('vue').PropType<string | string[]>;
|
|
1248
|
-
default: string;
|
|
1249
|
-
};
|
|
1250
|
-
viewStyle: {
|
|
1251
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1252
|
-
default: string;
|
|
1253
|
-
};
|
|
1254
|
-
noresize: {
|
|
1255
|
-
type: import('vue').PropType<boolean>;
|
|
1256
|
-
};
|
|
1257
|
-
always: {
|
|
1258
|
-
type: import('vue').PropType<boolean>;
|
|
1259
|
-
};
|
|
1260
|
-
minSize: {
|
|
1261
|
-
type: import('vue').PropType<number>;
|
|
1262
|
-
default: number;
|
|
1263
|
-
};
|
|
1264
|
-
ariaOrientation: {
|
|
1265
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1266
|
-
};
|
|
1267
|
-
}>> & {
|
|
924
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1268
925
|
onScroll?: ((args_0: {
|
|
1269
926
|
scrollTop: number;
|
|
1270
927
|
scrollLeft: number;
|
|
1271
928
|
}) => any) | undefined;
|
|
1272
929
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1273
|
-
}
|
|
1274
|
-
wrapRef:
|
|
930
|
+
}>, {
|
|
931
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1275
932
|
update: () => void;
|
|
1276
933
|
scrollTo: {
|
|
1277
934
|
(xCord: number, yCord?: number): void;
|
|
@@ -1280,7 +937,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1280
937
|
setScrollTop: (value: number) => void;
|
|
1281
938
|
setScrollLeft: (value: number) => void;
|
|
1282
939
|
handleScroll: () => void;
|
|
1283
|
-
},
|
|
940
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1284
941
|
scroll: (args_0: {
|
|
1285
942
|
scrollTop: number;
|
|
1286
943
|
scrollLeft: number;
|
|
@@ -1291,12 +948,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1291
948
|
height: number | string;
|
|
1292
949
|
maxHeight: number | string;
|
|
1293
950
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1294
|
-
minSize: number;
|
|
1295
951
|
distance: number;
|
|
1296
952
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1297
953
|
wrapClass: string | string[];
|
|
1298
954
|
viewClass: string | string[];
|
|
1299
955
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
956
|
+
minSize: number;
|
|
1300
957
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1301
958
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1302
959
|
created?: (() => void) | (() => void)[];
|
|
@@ -1322,82 +979,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1322
979
|
height: number | string;
|
|
1323
980
|
maxHeight: number | string;
|
|
1324
981
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1325
|
-
minSize: number;
|
|
1326
982
|
distance: number;
|
|
1327
983
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1328
984
|
wrapClass: string | string[];
|
|
1329
985
|
viewClass: string | string[];
|
|
1330
986
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
type: import('vue').PropType<string>;
|
|
1334
|
-
};
|
|
1335
|
-
ariaLabel: {
|
|
1336
|
-
type: import('vue').PropType<string>;
|
|
1337
|
-
};
|
|
1338
|
-
role: {
|
|
1339
|
-
type: import('vue').PropType<string>;
|
|
1340
|
-
};
|
|
1341
|
-
height: {
|
|
1342
|
-
type: import('vue').PropType<string | number>;
|
|
1343
|
-
default: string;
|
|
1344
|
-
};
|
|
1345
|
-
tabindex: {
|
|
1346
|
-
type: import('vue').PropType<string | number>;
|
|
1347
|
-
default: undefined;
|
|
1348
|
-
};
|
|
1349
|
-
tag: {
|
|
1350
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1351
|
-
default: string;
|
|
1352
|
-
};
|
|
1353
|
-
maxHeight: {
|
|
1354
|
-
type: import('vue').PropType<string | number>;
|
|
1355
|
-
default: string;
|
|
1356
|
-
};
|
|
1357
|
-
distance: {
|
|
1358
|
-
type: import('vue').PropType<number>;
|
|
1359
|
-
default: number;
|
|
1360
|
-
};
|
|
1361
|
-
native: {
|
|
1362
|
-
type: import('vue').PropType<boolean>;
|
|
1363
|
-
};
|
|
1364
|
-
wrapStyle: {
|
|
1365
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1366
|
-
default: string;
|
|
1367
|
-
};
|
|
1368
|
-
wrapClass: {
|
|
1369
|
-
type: import('vue').PropType<string | string[]>;
|
|
1370
|
-
default: string;
|
|
1371
|
-
};
|
|
1372
|
-
viewClass: {
|
|
1373
|
-
type: import('vue').PropType<string | string[]>;
|
|
1374
|
-
default: string;
|
|
1375
|
-
};
|
|
1376
|
-
viewStyle: {
|
|
1377
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1378
|
-
default: string;
|
|
1379
|
-
};
|
|
1380
|
-
noresize: {
|
|
1381
|
-
type: import('vue').PropType<boolean>;
|
|
1382
|
-
};
|
|
1383
|
-
always: {
|
|
1384
|
-
type: import('vue').PropType<boolean>;
|
|
1385
|
-
};
|
|
1386
|
-
minSize: {
|
|
1387
|
-
type: import('vue').PropType<number>;
|
|
1388
|
-
default: number;
|
|
1389
|
-
};
|
|
1390
|
-
ariaOrientation: {
|
|
1391
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1392
|
-
};
|
|
1393
|
-
}>> & {
|
|
987
|
+
minSize: number;
|
|
988
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1394
989
|
onScroll?: ((args_0: {
|
|
1395
990
|
scrollTop: number;
|
|
1396
991
|
scrollLeft: number;
|
|
1397
992
|
}) => any) | undefined;
|
|
1398
993
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1399
|
-
}
|
|
1400
|
-
wrapRef:
|
|
994
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
995
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1401
996
|
update: () => void;
|
|
1402
997
|
scrollTo: {
|
|
1403
998
|
(xCord: number, yCord?: number): void;
|
|
@@ -1414,41 +1009,30 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1414
1009
|
rightSlotScrollbarRef: ({
|
|
1415
1010
|
$: import('vue').ComponentInternalInstance;
|
|
1416
1011
|
$data: {};
|
|
1417
|
-
$props:
|
|
1418
|
-
|
|
1419
|
-
height
|
|
1420
|
-
maxHeight
|
|
1421
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1422
|
-
minSize: number;
|
|
1423
|
-
distance: number;
|
|
1424
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1425
|
-
wrapClass: string | string[];
|
|
1426
|
-
viewClass: string | string[];
|
|
1427
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1428
|
-
}> & Omit<{
|
|
1429
|
-
readonly height: number | string;
|
|
1430
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1431
|
-
readonly maxHeight: number | string;
|
|
1432
|
-
readonly distance: number;
|
|
1433
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1434
|
-
readonly wrapClass: string | string[];
|
|
1435
|
-
readonly viewClass: string | string[];
|
|
1436
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1437
|
-
readonly minSize: number;
|
|
1438
|
-
readonly id?: string | undefined;
|
|
1439
|
-
readonly ariaLabel?: string | undefined;
|
|
1440
|
-
readonly role?: string | undefined;
|
|
1441
|
-
readonly tabindex?: number | string | undefined;
|
|
1012
|
+
$props: {
|
|
1013
|
+
readonly distance?: number | undefined;
|
|
1014
|
+
readonly height?: number | string | undefined;
|
|
1015
|
+
readonly maxHeight?: number | string | undefined;
|
|
1442
1016
|
readonly native?: boolean | undefined;
|
|
1017
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
1018
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
1019
|
+
readonly viewClass?: string | string[] | undefined;
|
|
1020
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
1443
1021
|
readonly noresize?: boolean | undefined;
|
|
1022
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
1444
1023
|
readonly always?: boolean | undefined;
|
|
1024
|
+
readonly minSize?: number | undefined;
|
|
1025
|
+
readonly tabindex?: number | string | undefined;
|
|
1026
|
+
readonly id?: string | undefined;
|
|
1027
|
+
readonly role?: string | undefined;
|
|
1028
|
+
readonly ariaLabel?: string | undefined;
|
|
1445
1029
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
1446
|
-
onScroll?: ((args_0: {
|
|
1030
|
+
readonly onScroll?: ((args_0: {
|
|
1447
1031
|
scrollTop: number;
|
|
1448
1032
|
scrollLeft: number;
|
|
1449
1033
|
}) => any) | undefined | undefined;
|
|
1450
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1451
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
1034
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1035
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1452
1036
|
$attrs: {
|
|
1453
1037
|
[x: string]: unknown;
|
|
1454
1038
|
};
|
|
@@ -1466,76 +1050,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1466
1050
|
scrollLeft: number;
|
|
1467
1051
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
1468
1052
|
$el: any;
|
|
1469
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
1470
|
-
id: {
|
|
1471
|
-
type: import('vue').PropType<string>;
|
|
1472
|
-
};
|
|
1473
|
-
ariaLabel: {
|
|
1474
|
-
type: import('vue').PropType<string>;
|
|
1475
|
-
};
|
|
1476
|
-
role: {
|
|
1477
|
-
type: import('vue').PropType<string>;
|
|
1478
|
-
};
|
|
1479
|
-
height: {
|
|
1480
|
-
type: import('vue').PropType<string | number>;
|
|
1481
|
-
default: string;
|
|
1482
|
-
};
|
|
1483
|
-
tabindex: {
|
|
1484
|
-
type: import('vue').PropType<string | number>;
|
|
1485
|
-
default: undefined;
|
|
1486
|
-
};
|
|
1487
|
-
tag: {
|
|
1488
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1489
|
-
default: string;
|
|
1490
|
-
};
|
|
1491
|
-
maxHeight: {
|
|
1492
|
-
type: import('vue').PropType<string | number>;
|
|
1493
|
-
default: string;
|
|
1494
|
-
};
|
|
1495
|
-
distance: {
|
|
1496
|
-
type: import('vue').PropType<number>;
|
|
1497
|
-
default: number;
|
|
1498
|
-
};
|
|
1499
|
-
native: {
|
|
1500
|
-
type: import('vue').PropType<boolean>;
|
|
1501
|
-
};
|
|
1502
|
-
wrapStyle: {
|
|
1503
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1504
|
-
default: string;
|
|
1505
|
-
};
|
|
1506
|
-
wrapClass: {
|
|
1507
|
-
type: import('vue').PropType<string | string[]>;
|
|
1508
|
-
default: string;
|
|
1509
|
-
};
|
|
1510
|
-
viewClass: {
|
|
1511
|
-
type: import('vue').PropType<string | string[]>;
|
|
1512
|
-
default: string;
|
|
1513
|
-
};
|
|
1514
|
-
viewStyle: {
|
|
1515
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1516
|
-
default: string;
|
|
1517
|
-
};
|
|
1518
|
-
noresize: {
|
|
1519
|
-
type: import('vue').PropType<boolean>;
|
|
1520
|
-
};
|
|
1521
|
-
always: {
|
|
1522
|
-
type: import('vue').PropType<boolean>;
|
|
1523
|
-
};
|
|
1524
|
-
minSize: {
|
|
1525
|
-
type: import('vue').PropType<number>;
|
|
1526
|
-
default: number;
|
|
1527
|
-
};
|
|
1528
|
-
ariaOrientation: {
|
|
1529
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1530
|
-
};
|
|
1531
|
-
}>> & {
|
|
1053
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1532
1054
|
onScroll?: ((args_0: {
|
|
1533
1055
|
scrollTop: number;
|
|
1534
1056
|
scrollLeft: number;
|
|
1535
1057
|
}) => any) | undefined;
|
|
1536
1058
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1537
|
-
}
|
|
1538
|
-
wrapRef:
|
|
1059
|
+
}>, {
|
|
1060
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1539
1061
|
update: () => void;
|
|
1540
1062
|
scrollTo: {
|
|
1541
1063
|
(xCord: number, yCord?: number): void;
|
|
@@ -1544,7 +1066,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1544
1066
|
setScrollTop: (value: number) => void;
|
|
1545
1067
|
setScrollLeft: (value: number) => void;
|
|
1546
1068
|
handleScroll: () => void;
|
|
1547
|
-
},
|
|
1069
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1548
1070
|
scroll: (args_0: {
|
|
1549
1071
|
scrollTop: number;
|
|
1550
1072
|
scrollLeft: number;
|
|
@@ -1555,12 +1077,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1555
1077
|
height: number | string;
|
|
1556
1078
|
maxHeight: number | string;
|
|
1557
1079
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1558
|
-
minSize: number;
|
|
1559
1080
|
distance: number;
|
|
1560
1081
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1561
1082
|
wrapClass: string | string[];
|
|
1562
1083
|
viewClass: string | string[];
|
|
1563
1084
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1085
|
+
minSize: number;
|
|
1564
1086
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1565
1087
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1566
1088
|
created?: (() => void) | (() => void)[];
|
|
@@ -1586,82 +1108,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1586
1108
|
height: number | string;
|
|
1587
1109
|
maxHeight: number | string;
|
|
1588
1110
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1589
|
-
minSize: number;
|
|
1590
1111
|
distance: number;
|
|
1591
1112
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1592
1113
|
wrapClass: string | string[];
|
|
1593
1114
|
viewClass: string | string[];
|
|
1594
1115
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
type: import('vue').PropType<string>;
|
|
1598
|
-
};
|
|
1599
|
-
ariaLabel: {
|
|
1600
|
-
type: import('vue').PropType<string>;
|
|
1601
|
-
};
|
|
1602
|
-
role: {
|
|
1603
|
-
type: import('vue').PropType<string>;
|
|
1604
|
-
};
|
|
1605
|
-
height: {
|
|
1606
|
-
type: import('vue').PropType<string | number>;
|
|
1607
|
-
default: string;
|
|
1608
|
-
};
|
|
1609
|
-
tabindex: {
|
|
1610
|
-
type: import('vue').PropType<string | number>;
|
|
1611
|
-
default: undefined;
|
|
1612
|
-
};
|
|
1613
|
-
tag: {
|
|
1614
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
1615
|
-
default: string;
|
|
1616
|
-
};
|
|
1617
|
-
maxHeight: {
|
|
1618
|
-
type: import('vue').PropType<string | number>;
|
|
1619
|
-
default: string;
|
|
1620
|
-
};
|
|
1621
|
-
distance: {
|
|
1622
|
-
type: import('vue').PropType<number>;
|
|
1623
|
-
default: number;
|
|
1624
|
-
};
|
|
1625
|
-
native: {
|
|
1626
|
-
type: import('vue').PropType<boolean>;
|
|
1627
|
-
};
|
|
1628
|
-
wrapStyle: {
|
|
1629
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1630
|
-
default: string;
|
|
1631
|
-
};
|
|
1632
|
-
wrapClass: {
|
|
1633
|
-
type: import('vue').PropType<string | string[]>;
|
|
1634
|
-
default: string;
|
|
1635
|
-
};
|
|
1636
|
-
viewClass: {
|
|
1637
|
-
type: import('vue').PropType<string | string[]>;
|
|
1638
|
-
default: string;
|
|
1639
|
-
};
|
|
1640
|
-
viewStyle: {
|
|
1641
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
1642
|
-
default: string;
|
|
1643
|
-
};
|
|
1644
|
-
noresize: {
|
|
1645
|
-
type: import('vue').PropType<boolean>;
|
|
1646
|
-
};
|
|
1647
|
-
always: {
|
|
1648
|
-
type: import('vue').PropType<boolean>;
|
|
1649
|
-
};
|
|
1650
|
-
minSize: {
|
|
1651
|
-
type: import('vue').PropType<number>;
|
|
1652
|
-
default: number;
|
|
1653
|
-
};
|
|
1654
|
-
ariaOrientation: {
|
|
1655
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
1656
|
-
};
|
|
1657
|
-
}>> & {
|
|
1116
|
+
minSize: number;
|
|
1117
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1658
1118
|
onScroll?: ((args_0: {
|
|
1659
1119
|
scrollTop: number;
|
|
1660
1120
|
scrollLeft: number;
|
|
1661
1121
|
}) => any) | undefined;
|
|
1662
1122
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1663
|
-
}
|
|
1664
|
-
wrapRef:
|
|
1123
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
1124
|
+
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1665
1125
|
update: () => void;
|
|
1666
1126
|
scrollTo: {
|
|
1667
1127
|
(xCord: number, yCord?: number): void;
|