@jari-ace/element-plus-component 0.5.6 → 0.6.0
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/autoComplete/JaAutoComplete.vue.d.ts +856 -1163
- package/dist/components/autoComplete/JaAutoComplete.vue.d.ts.map +1 -1
- package/dist/components/avatar/JaAvatar.vue.d.ts +3 -4
- package/dist/components/avatar/JaAvatar.vue.d.ts.map +1 -1
- package/dist/components/avatar/JaAvatar.vue.js +2 -10
- package/dist/components/avatar/JaAvatar.vue.js.map +1 -1
- package/dist/components/button/JaButton.vue.d.ts +354 -246
- package/dist/components/button/JaButton.vue.d.ts.map +1 -1
- package/dist/components/checkbox/JaCheckbox.vue.d.ts +212 -176
- package/dist/components/checkbox/JaCheckbox.vue.d.ts.map +1 -1
- package/dist/components/checkboxGroup/JaCheckboxGroup.vue.d.ts +262 -222
- package/dist/components/checkboxGroup/JaCheckboxGroup.vue.d.ts.map +1 -1
- package/dist/components/departmentPicker/src/DepartmentPicker.vue.js +2 -2
- package/dist/components/departmentPicker/src/DepartmentPicker.vue.js.map +1 -1
- package/dist/components/dropdownButton/JaDropdownButton.vue.d.ts +400 -268
- package/dist/components/dropdownButton/JaDropdownButton.vue.d.ts.map +1 -1
- package/dist/components/flowShell/FlowFormShell.vue.d.ts +339 -0
- package/dist/components/flowShell/FlowFormShell.vue.d.ts.map +1 -1
- package/dist/components/flowShell/FlowFormShell.vue.js +137 -50
- package/dist/components/flowShell/FlowFormShell.vue.js.map +1 -1
- package/dist/components/formItem/JaFormItem.vue.d.ts +228 -186
- package/dist/components/formItem/JaFormItem.vue.d.ts.map +1 -1
- package/dist/components/input/JaInput.vue.d.ts +595 -581
- package/dist/components/input/JaInput.vue.d.ts.map +1 -1
- package/dist/components/input/JaInput.vue.js +4 -2
- package/dist/components/input/JaInput.vue.js.map +1 -1
- package/dist/components/inputNumber/JaInputNumber.vue.d.ts +428 -276
- package/dist/components/inputNumber/JaInputNumber.vue.d.ts.map +1 -1
- package/dist/components/radioGroup/JaRadioGroup.vue.d.ts +246 -155
- package/dist/components/radioGroup/JaRadioGroup.vue.d.ts.map +1 -1
- package/dist/components/rolePicker/baseRolePicker.vue.d.ts +984 -12
- package/dist/components/rolePicker/baseRolePicker.vue.d.ts.map +1 -1
- package/dist/components/scrollbar/Scrollbar.vue.d.ts +332 -194
- package/dist/components/scrollbar/Scrollbar.vue.d.ts.map +1 -1
- package/dist/components/switch/JaSwitch.vue.d.ts +378 -317
- package/dist/components/switch/JaSwitch.vue.d.ts.map +1 -1
- package/dist/components/upload/JaUploader.vue.d.ts +51 -3
- package/dist/components/upload/JaUploader.vue.d.ts.map +1 -1
- package/dist/components/upload/JaUploader.vue.js +12 -0
- package/dist/components/upload/JaUploader.vue.js.map +1 -1
- package/dist/components/upload/index.d.ts +31 -0
- package/dist/components/upload/index.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.d.ts +9 -0
- package/dist/components/upload/uploader.vue.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.js +20 -14
- package/dist/components/upload/uploader.vue.js.map +1 -1
- package/dist/components/userGroupPicker/src/UserGroupPicker.vue.js +2 -2
- package/dist/components/userGroupPicker/src/UserGroupPicker.vue.js.map +1 -1
- package/dist/components/userGroupTree/src/userGroupTree.vue.d.ts +416 -324
- package/dist/components/userGroupTree/src/userGroupTree.vue.d.ts.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.js +9788 -9548
- package/lib/index.umd.cjs +34 -34
- package/package.json +2 -2
- package/packages/components/avatar/JaAvatar.vue +7 -16
- package/packages/components/departmentPicker/src/DepartmentPicker.vue +1 -1
- package/packages/components/flowShell/FlowFormShell.vue +98 -8
- package/packages/components/input/JaInput.vue +2 -1
- package/packages/components/upload/JaUploader.vue +39 -5
- package/packages/components/upload/uploader.vue +51 -38
- package/packages/components/userGroupPicker/src/UserGroupPicker.vue +1 -1
|
@@ -7,43 +7,40 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
7
7
|
$: import("vue").ComponentInternalInstance;
|
|
8
8
|
$data: {};
|
|
9
9
|
$props: Partial<{
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
readonly tag: string;
|
|
21
|
-
readonly native: boolean;
|
|
22
|
-
readonly noresize: boolean;
|
|
10
|
+
tabindex: string | number;
|
|
11
|
+
height: string | number;
|
|
12
|
+
maxHeight: string | number;
|
|
13
|
+
tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
14
|
+
minSize: number;
|
|
15
|
+
distance: number;
|
|
16
|
+
wrapStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
17
|
+
wrapClass: string | string[];
|
|
18
|
+
viewClass: string | string[];
|
|
19
|
+
viewStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
23
20
|
}> & Omit<{
|
|
24
|
-
readonly height:
|
|
25
|
-
readonly maxHeight:
|
|
26
|
-
readonly tag: string;
|
|
21
|
+
readonly height: string | number;
|
|
22
|
+
readonly maxHeight: string | number;
|
|
23
|
+
readonly tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
27
24
|
readonly wrapStyle: import("vue").StyleValue;
|
|
28
|
-
readonly always: boolean;
|
|
29
25
|
readonly distance: number;
|
|
30
|
-
readonly
|
|
31
|
-
readonly
|
|
32
|
-
readonly
|
|
33
|
-
readonly viewStyle: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, ArrayConstructor, ObjectConstructor], unknown, unknown>;
|
|
34
|
-
readonly noresize: boolean;
|
|
26
|
+
readonly wrapClass: string | string[];
|
|
27
|
+
readonly viewClass: string | string[];
|
|
28
|
+
readonly viewStyle: import("vue").StyleValue;
|
|
35
29
|
readonly minSize: number;
|
|
36
30
|
readonly id?: string;
|
|
37
|
-
readonly tabindex?:
|
|
31
|
+
readonly tabindex?: string | number;
|
|
38
32
|
readonly role?: string;
|
|
39
33
|
readonly ariaLabel?: string;
|
|
40
|
-
readonly
|
|
34
|
+
readonly always?: boolean;
|
|
35
|
+
readonly native?: boolean;
|
|
36
|
+
readonly noresize?: boolean;
|
|
37
|
+
readonly ariaOrientation?: "undefined" | "horizontal" | "vertical";
|
|
41
38
|
onScroll?: (args_0: {
|
|
42
39
|
scrollTop: number;
|
|
43
40
|
scrollLeft: number;
|
|
44
41
|
}) => any;
|
|
45
42
|
"onEnd-reached"?: (direction: import("element-plus").ScrollbarDirection) => any;
|
|
46
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "height" | "maxHeight" | "tag" | "tabindex" | "wrapStyle" | "
|
|
43
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "height" | "maxHeight" | "tag" | "tabindex" | "wrapStyle" | "distance" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
|
|
47
44
|
$attrs: {
|
|
48
45
|
[x: string]: unknown;
|
|
49
46
|
};
|
|
@@ -62,28 +59,67 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
62
59
|
}) => void) & ((event: "end-reached", direction: import("element-plus").ScrollbarDirection) => void);
|
|
63
60
|
$el: any;
|
|
64
61
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
62
|
+
height: {
|
|
63
|
+
type: import("vue").PropType<string | number>;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
id: {
|
|
67
|
+
type: import("vue").PropType<string>;
|
|
68
|
+
};
|
|
69
|
+
maxHeight: {
|
|
70
|
+
type: import("vue").PropType<string | number>;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
tag: {
|
|
74
|
+
type: import("vue").PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
tabindex: {
|
|
78
|
+
type: import("vue").PropType<string | number>;
|
|
79
|
+
default: undefined;
|
|
80
|
+
};
|
|
81
|
+
role: {
|
|
82
|
+
type: import("vue").PropType<string>;
|
|
83
|
+
};
|
|
84
|
+
wrapStyle: {
|
|
85
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
ariaLabel: {
|
|
89
|
+
type: import("vue").PropType<string>;
|
|
90
|
+
};
|
|
91
|
+
always: {
|
|
92
|
+
type: import("vue").PropType<boolean>;
|
|
93
|
+
};
|
|
94
|
+
distance: {
|
|
95
|
+
type: import("vue").PropType<number>;
|
|
96
|
+
default: number;
|
|
97
|
+
};
|
|
98
|
+
native: {
|
|
99
|
+
type: import("vue").PropType<boolean>;
|
|
100
|
+
};
|
|
101
|
+
wrapClass: {
|
|
102
|
+
type: import("vue").PropType<string | string[]>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
viewClass: {
|
|
106
|
+
type: import("vue").PropType<string | string[]>;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
viewStyle: {
|
|
110
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
noresize: {
|
|
114
|
+
type: import("vue").PropType<boolean>;
|
|
115
|
+
};
|
|
116
|
+
minSize: {
|
|
117
|
+
type: import("vue").PropType<number>;
|
|
118
|
+
default: number;
|
|
119
|
+
};
|
|
120
|
+
ariaOrientation: {
|
|
121
|
+
type: import("vue").PropType<"undefined" | "horizontal" | "vertical">;
|
|
122
|
+
};
|
|
87
123
|
}>> & {
|
|
88
124
|
onScroll?: (args_0: {
|
|
89
125
|
scrollTop: number;
|
|
@@ -107,19 +143,16 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
107
143
|
}) => void;
|
|
108
144
|
"end-reached": (direction: import("element-plus").ScrollbarDirection) => void;
|
|
109
145
|
}, string, {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
readonly tag: string;
|
|
121
|
-
readonly native: boolean;
|
|
122
|
-
readonly noresize: boolean;
|
|
146
|
+
tabindex: string | number;
|
|
147
|
+
height: string | number;
|
|
148
|
+
maxHeight: string | number;
|
|
149
|
+
tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
150
|
+
minSize: number;
|
|
151
|
+
distance: number;
|
|
152
|
+
wrapStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
153
|
+
wrapClass: string | string[];
|
|
154
|
+
viewClass: string | string[];
|
|
155
|
+
viewStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
123
156
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
124
157
|
beforeCreate?: (() => void) | (() => void)[];
|
|
125
158
|
created?: (() => void) | (() => void)[];
|
|
@@ -141,49 +174,85 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
141
174
|
$nextTick: typeof nextTick;
|
|
142
175
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
143
176
|
} & Readonly<{
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
readonly tag: string;
|
|
155
|
-
readonly native: boolean;
|
|
156
|
-
readonly noresize: boolean;
|
|
177
|
+
tabindex: string | number;
|
|
178
|
+
height: string | number;
|
|
179
|
+
maxHeight: string | number;
|
|
180
|
+
tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
181
|
+
minSize: number;
|
|
182
|
+
distance: number;
|
|
183
|
+
wrapStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
184
|
+
wrapClass: string | string[];
|
|
185
|
+
viewClass: string | string[];
|
|
186
|
+
viewStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
157
187
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
};
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
188
|
+
height: {
|
|
189
|
+
type: import("vue").PropType<string | number>;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
id: {
|
|
193
|
+
type: import("vue").PropType<string>;
|
|
194
|
+
};
|
|
195
|
+
maxHeight: {
|
|
196
|
+
type: import("vue").PropType<string | number>;
|
|
197
|
+
default: string;
|
|
198
|
+
};
|
|
199
|
+
tag: {
|
|
200
|
+
type: import("vue").PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
201
|
+
default: string;
|
|
202
|
+
};
|
|
203
|
+
tabindex: {
|
|
204
|
+
type: import("vue").PropType<string | number>;
|
|
205
|
+
default: undefined;
|
|
206
|
+
};
|
|
207
|
+
role: {
|
|
208
|
+
type: import("vue").PropType<string>;
|
|
209
|
+
};
|
|
210
|
+
wrapStyle: {
|
|
211
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
212
|
+
default: string;
|
|
213
|
+
};
|
|
214
|
+
ariaLabel: {
|
|
215
|
+
type: import("vue").PropType<string>;
|
|
216
|
+
};
|
|
217
|
+
always: {
|
|
218
|
+
type: import("vue").PropType<boolean>;
|
|
219
|
+
};
|
|
220
|
+
distance: {
|
|
221
|
+
type: import("vue").PropType<number>;
|
|
222
|
+
default: number;
|
|
223
|
+
};
|
|
224
|
+
native: {
|
|
225
|
+
type: import("vue").PropType<boolean>;
|
|
226
|
+
};
|
|
227
|
+
wrapClass: {
|
|
228
|
+
type: import("vue").PropType<string | string[]>;
|
|
229
|
+
default: string;
|
|
230
|
+
};
|
|
231
|
+
viewClass: {
|
|
232
|
+
type: import("vue").PropType<string | string[]>;
|
|
233
|
+
default: string;
|
|
234
|
+
};
|
|
235
|
+
viewStyle: {
|
|
236
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
237
|
+
default: string;
|
|
238
|
+
};
|
|
239
|
+
noresize: {
|
|
240
|
+
type: import("vue").PropType<boolean>;
|
|
241
|
+
};
|
|
242
|
+
minSize: {
|
|
243
|
+
type: import("vue").PropType<number>;
|
|
244
|
+
default: number;
|
|
245
|
+
};
|
|
246
|
+
ariaOrientation: {
|
|
247
|
+
type: import("vue").PropType<"undefined" | "horizontal" | "vertical">;
|
|
248
|
+
};
|
|
180
249
|
}>> & {
|
|
181
250
|
onScroll?: (args_0: {
|
|
182
251
|
scrollTop: number;
|
|
183
252
|
scrollLeft: number;
|
|
184
253
|
}) => any;
|
|
185
254
|
"onEnd-reached"?: (direction: import("element-plus").ScrollbarDirection) => any;
|
|
186
|
-
}, "height" | "maxHeight" | "update" | "tag" | "tabindex" | "wrapStyle" | "
|
|
255
|
+
}, "height" | "maxHeight" | "update" | "tag" | "tabindex" | "wrapStyle" | "distance" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import("vue").ShallowUnwrapRef<{
|
|
187
256
|
wrapRef: Ref<HTMLDivElement, HTMLDivElement>;
|
|
188
257
|
update: () => void;
|
|
189
258
|
scrollTo: {
|
|
@@ -195,49 +264,46 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
195
264
|
handleScroll: () => void;
|
|
196
265
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
197
266
|
$slots: {
|
|
198
|
-
default
|
|
267
|
+
default?: (props: {}) => any;
|
|
199
268
|
};
|
|
200
269
|
}, {
|
|
201
270
|
$: import("vue").ComponentInternalInstance;
|
|
202
271
|
$data: {};
|
|
203
272
|
$props: Partial<{
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
readonly tag: string;
|
|
215
|
-
readonly native: boolean;
|
|
216
|
-
readonly noresize: boolean;
|
|
273
|
+
tabindex: string | number;
|
|
274
|
+
height: string | number;
|
|
275
|
+
maxHeight: string | number;
|
|
276
|
+
tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
277
|
+
minSize: number;
|
|
278
|
+
distance: number;
|
|
279
|
+
wrapStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
280
|
+
wrapClass: string | string[];
|
|
281
|
+
viewClass: string | string[];
|
|
282
|
+
viewStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
217
283
|
}> & Omit<{
|
|
218
|
-
readonly height:
|
|
219
|
-
readonly maxHeight:
|
|
220
|
-
readonly tag: string;
|
|
284
|
+
readonly height: string | number;
|
|
285
|
+
readonly maxHeight: string | number;
|
|
286
|
+
readonly tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
221
287
|
readonly wrapStyle: import("vue").StyleValue;
|
|
222
|
-
readonly always: boolean;
|
|
223
288
|
readonly distance: number;
|
|
224
|
-
readonly
|
|
225
|
-
readonly
|
|
226
|
-
readonly
|
|
227
|
-
readonly viewStyle: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, ArrayConstructor, ObjectConstructor], unknown, unknown>;
|
|
228
|
-
readonly noresize: boolean;
|
|
289
|
+
readonly wrapClass: string | string[];
|
|
290
|
+
readonly viewClass: string | string[];
|
|
291
|
+
readonly viewStyle: import("vue").StyleValue;
|
|
229
292
|
readonly minSize: number;
|
|
230
293
|
readonly id?: string;
|
|
231
|
-
readonly tabindex?:
|
|
294
|
+
readonly tabindex?: string | number;
|
|
232
295
|
readonly role?: string;
|
|
233
296
|
readonly ariaLabel?: string;
|
|
234
|
-
readonly
|
|
297
|
+
readonly always?: boolean;
|
|
298
|
+
readonly native?: boolean;
|
|
299
|
+
readonly noresize?: boolean;
|
|
300
|
+
readonly ariaOrientation?: "undefined" | "horizontal" | "vertical";
|
|
235
301
|
onScroll?: (args_0: {
|
|
236
302
|
scrollTop: number;
|
|
237
303
|
scrollLeft: number;
|
|
238
304
|
}) => any;
|
|
239
305
|
"onEnd-reached"?: (direction: import("element-plus").ScrollbarDirection) => any;
|
|
240
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "height" | "maxHeight" | "tag" | "tabindex" | "wrapStyle" | "
|
|
306
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "height" | "maxHeight" | "tag" | "tabindex" | "wrapStyle" | "distance" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
|
|
241
307
|
$attrs: {
|
|
242
308
|
[x: string]: unknown;
|
|
243
309
|
};
|
|
@@ -256,28 +322,67 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
256
322
|
}) => void) & ((event: "end-reached", direction: import("element-plus").ScrollbarDirection) => void);
|
|
257
323
|
$el: any;
|
|
258
324
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
};
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
325
|
+
height: {
|
|
326
|
+
type: import("vue").PropType<string | number>;
|
|
327
|
+
default: string;
|
|
328
|
+
};
|
|
329
|
+
id: {
|
|
330
|
+
type: import("vue").PropType<string>;
|
|
331
|
+
};
|
|
332
|
+
maxHeight: {
|
|
333
|
+
type: import("vue").PropType<string | number>;
|
|
334
|
+
default: string;
|
|
335
|
+
};
|
|
336
|
+
tag: {
|
|
337
|
+
type: import("vue").PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
338
|
+
default: string;
|
|
339
|
+
};
|
|
340
|
+
tabindex: {
|
|
341
|
+
type: import("vue").PropType<string | number>;
|
|
342
|
+
default: undefined;
|
|
343
|
+
};
|
|
344
|
+
role: {
|
|
345
|
+
type: import("vue").PropType<string>;
|
|
346
|
+
};
|
|
347
|
+
wrapStyle: {
|
|
348
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
349
|
+
default: string;
|
|
350
|
+
};
|
|
351
|
+
ariaLabel: {
|
|
352
|
+
type: import("vue").PropType<string>;
|
|
353
|
+
};
|
|
354
|
+
always: {
|
|
355
|
+
type: import("vue").PropType<boolean>;
|
|
356
|
+
};
|
|
357
|
+
distance: {
|
|
358
|
+
type: import("vue").PropType<number>;
|
|
359
|
+
default: number;
|
|
360
|
+
};
|
|
361
|
+
native: {
|
|
362
|
+
type: import("vue").PropType<boolean>;
|
|
363
|
+
};
|
|
364
|
+
wrapClass: {
|
|
365
|
+
type: import("vue").PropType<string | string[]>;
|
|
366
|
+
default: string;
|
|
367
|
+
};
|
|
368
|
+
viewClass: {
|
|
369
|
+
type: import("vue").PropType<string | string[]>;
|
|
370
|
+
default: string;
|
|
371
|
+
};
|
|
372
|
+
viewStyle: {
|
|
373
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
374
|
+
default: string;
|
|
375
|
+
};
|
|
376
|
+
noresize: {
|
|
377
|
+
type: import("vue").PropType<boolean>;
|
|
378
|
+
};
|
|
379
|
+
minSize: {
|
|
380
|
+
type: import("vue").PropType<number>;
|
|
381
|
+
default: number;
|
|
382
|
+
};
|
|
383
|
+
ariaOrientation: {
|
|
384
|
+
type: import("vue").PropType<"undefined" | "horizontal" | "vertical">;
|
|
385
|
+
};
|
|
281
386
|
}>> & {
|
|
282
387
|
onScroll?: (args_0: {
|
|
283
388
|
scrollTop: number;
|
|
@@ -301,19 +406,16 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
301
406
|
}) => void;
|
|
302
407
|
"end-reached": (direction: import("element-plus").ScrollbarDirection) => void;
|
|
303
408
|
}, string, {
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
readonly tag: string;
|
|
315
|
-
readonly native: boolean;
|
|
316
|
-
readonly noresize: boolean;
|
|
409
|
+
tabindex: string | number;
|
|
410
|
+
height: string | number;
|
|
411
|
+
maxHeight: string | number;
|
|
412
|
+
tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
413
|
+
minSize: number;
|
|
414
|
+
distance: number;
|
|
415
|
+
wrapStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
416
|
+
wrapClass: string | string[];
|
|
417
|
+
viewClass: string | string[];
|
|
418
|
+
viewStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
317
419
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
318
420
|
beforeCreate?: (() => void) | (() => void)[];
|
|
319
421
|
created?: (() => void) | (() => void)[];
|
|
@@ -335,49 +437,85 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
335
437
|
$nextTick: typeof nextTick;
|
|
336
438
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
337
439
|
} & Readonly<{
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
readonly tag: string;
|
|
349
|
-
readonly native: boolean;
|
|
350
|
-
readonly noresize: boolean;
|
|
440
|
+
tabindex: string | number;
|
|
441
|
+
height: string | number;
|
|
442
|
+
maxHeight: string | number;
|
|
443
|
+
tag: (string & {}) | keyof HTMLElementTagNameMap;
|
|
444
|
+
minSize: number;
|
|
445
|
+
distance: number;
|
|
446
|
+
wrapStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
447
|
+
wrapClass: string | string[];
|
|
448
|
+
viewClass: string | string[];
|
|
449
|
+
viewStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[];
|
|
351
450
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
};
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
451
|
+
height: {
|
|
452
|
+
type: import("vue").PropType<string | number>;
|
|
453
|
+
default: string;
|
|
454
|
+
};
|
|
455
|
+
id: {
|
|
456
|
+
type: import("vue").PropType<string>;
|
|
457
|
+
};
|
|
458
|
+
maxHeight: {
|
|
459
|
+
type: import("vue").PropType<string | number>;
|
|
460
|
+
default: string;
|
|
461
|
+
};
|
|
462
|
+
tag: {
|
|
463
|
+
type: import("vue").PropType<(string & {}) | keyof HTMLElementTagNameMap>;
|
|
464
|
+
default: string;
|
|
465
|
+
};
|
|
466
|
+
tabindex: {
|
|
467
|
+
type: import("vue").PropType<string | number>;
|
|
468
|
+
default: undefined;
|
|
469
|
+
};
|
|
470
|
+
role: {
|
|
471
|
+
type: import("vue").PropType<string>;
|
|
472
|
+
};
|
|
473
|
+
wrapStyle: {
|
|
474
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
475
|
+
default: string;
|
|
476
|
+
};
|
|
477
|
+
ariaLabel: {
|
|
478
|
+
type: import("vue").PropType<string>;
|
|
479
|
+
};
|
|
480
|
+
always: {
|
|
481
|
+
type: import("vue").PropType<boolean>;
|
|
482
|
+
};
|
|
483
|
+
distance: {
|
|
484
|
+
type: import("vue").PropType<number>;
|
|
485
|
+
default: number;
|
|
486
|
+
};
|
|
487
|
+
native: {
|
|
488
|
+
type: import("vue").PropType<boolean>;
|
|
489
|
+
};
|
|
490
|
+
wrapClass: {
|
|
491
|
+
type: import("vue").PropType<string | string[]>;
|
|
492
|
+
default: string;
|
|
493
|
+
};
|
|
494
|
+
viewClass: {
|
|
495
|
+
type: import("vue").PropType<string | string[]>;
|
|
496
|
+
default: string;
|
|
497
|
+
};
|
|
498
|
+
viewStyle: {
|
|
499
|
+
type: import("vue").PropType<import("vue").StyleValue>;
|
|
500
|
+
default: string;
|
|
501
|
+
};
|
|
502
|
+
noresize: {
|
|
503
|
+
type: import("vue").PropType<boolean>;
|
|
504
|
+
};
|
|
505
|
+
minSize: {
|
|
506
|
+
type: import("vue").PropType<number>;
|
|
507
|
+
default: number;
|
|
508
|
+
};
|
|
509
|
+
ariaOrientation: {
|
|
510
|
+
type: import("vue").PropType<"undefined" | "horizontal" | "vertical">;
|
|
511
|
+
};
|
|
374
512
|
}>> & {
|
|
375
513
|
onScroll?: (args_0: {
|
|
376
514
|
scrollTop: number;
|
|
377
515
|
scrollLeft: number;
|
|
378
516
|
}) => any;
|
|
379
517
|
"onEnd-reached"?: (direction: import("element-plus").ScrollbarDirection) => any;
|
|
380
|
-
}, "height" | "maxHeight" | "update" | "tag" | "tabindex" | "wrapStyle" | "
|
|
518
|
+
}, "height" | "maxHeight" | "update" | "tag" | "tabindex" | "wrapStyle" | "distance" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import("vue").ShallowUnwrapRef<{
|
|
381
519
|
wrapRef: Ref<HTMLDivElement, HTMLDivElement>;
|
|
382
520
|
update: () => void;
|
|
383
521
|
scrollTo: {
|
|
@@ -389,7 +527,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<JaScrollba
|
|
|
389
527
|
handleScroll: () => void;
|
|
390
528
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
391
529
|
$slots: {
|
|
392
|
-
default
|
|
530
|
+
default?: (props: {}) => any;
|
|
393
531
|
};
|
|
394
532
|
}>;
|
|
395
533
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<JaScrollbarProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|