ra-element 0.1.90 → 0.1.92
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/docs/ra-select.md +2 -2
- package/docs/ra-tree-select.md +1 -7
- package/docs/ra-upload.md +1 -3
- package/lib/components/ra-button/index.vue.d.ts +348 -440
- package/lib/components/ra-date-picker/index.vue.d.ts +488 -655
- package/lib/components/ra-dialog/index.vue.d.ts +516 -764
- package/lib/components/ra-form/index.vue.d.ts +523 -0
- package/lib/components/ra-input/index.vue.d.ts +544 -790
- package/lib/components/ra-select/type.d.ts +5 -0
- package/lib/components/ra-table/component/top-module.vue.d.ts +8 -6
- package/lib/components/ra-table/index.vue.d.ts +3255 -0
- package/lib/components/ra-textarea/index.vue.d.ts +293 -416
- package/lib/components/ra-tool-tip/index.vue.d.ts +806 -1152
- package/lib/components/ra-tree-select/index.vue.d.ts +517 -278
- package/lib/components/ra-tree-select/type.d.ts +5 -0
- package/lib/components/ra-upload/index.vue.d.ts +259 -1024
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1287 -1355
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -1
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,127 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
$data: {};
|
|
10
|
-
$props: Partial<{} | {
|
|
11
|
-
[x: string]: any;
|
|
12
|
-
}> & Omit<{
|
|
13
|
-
readonly [x: string]: any;
|
|
14
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
15
|
-
$attrs: {
|
|
16
|
-
[x: string]: unknown;
|
|
17
|
-
};
|
|
18
|
-
$refs: {
|
|
19
|
-
[x: string]: unknown;
|
|
20
|
-
};
|
|
21
|
-
$slots: Readonly<{
|
|
22
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
23
|
-
}>;
|
|
24
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
25
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
26
|
-
$host: Element | null;
|
|
27
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
28
|
-
$el: any;
|
|
29
|
-
$options: import('vue').ComponentOptionsBase<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
30
|
-
[key: string]: any;
|
|
31
|
-
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {} | {
|
|
32
|
-
[x: string]: any;
|
|
33
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
34
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
35
|
-
created?: (() => void) | (() => void)[];
|
|
36
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
37
|
-
mounted?: (() => void) | (() => void)[];
|
|
38
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
39
|
-
updated?: (() => void) | (() => void)[];
|
|
40
|
-
activated?: (() => void) | (() => void)[];
|
|
41
|
-
deactivated?: (() => void) | (() => void)[];
|
|
42
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
43
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
44
|
-
destroyed?: (() => void) | (() => void)[];
|
|
45
|
-
unmounted?: (() => void) | (() => void)[];
|
|
46
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
47
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
48
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
49
|
-
};
|
|
50
|
-
$forceUpdate: () => void;
|
|
51
|
-
$nextTick: typeof import('vue').nextTick;
|
|
52
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
53
|
-
} & Readonly<{}> & Omit<Readonly<any>, never> & import('vue').ShallowUnwrapRef<() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
54
|
-
[key: string]: any;
|
|
55
|
-
}>> & {} & import('vue').ComponentCustomProperties & {}) | ({
|
|
56
|
-
$: import('vue').ComponentInternalInstance;
|
|
57
|
-
$data: {};
|
|
58
|
-
$props: Partial<{} | {
|
|
59
|
-
[x: string]: any;
|
|
60
|
-
}> & Omit<{
|
|
61
|
-
readonly [x: string]: any;
|
|
62
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
63
|
-
$attrs: {
|
|
64
|
-
[x: string]: unknown;
|
|
65
|
-
};
|
|
66
|
-
$refs: {
|
|
67
|
-
[x: string]: unknown;
|
|
68
|
-
};
|
|
69
|
-
$slots: Readonly<{
|
|
70
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
71
|
-
}>;
|
|
72
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
73
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
74
|
-
$host: Element | null;
|
|
75
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
76
|
-
$el: any;
|
|
77
|
-
$options: import('vue').ComponentOptionsBase<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
78
|
-
[key: string]: any;
|
|
79
|
-
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {} | {
|
|
80
|
-
[x: string]: any;
|
|
81
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
82
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
83
|
-
created?: (() => void) | (() => void)[];
|
|
84
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
85
|
-
mounted?: (() => void) | (() => void)[];
|
|
86
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
87
|
-
updated?: (() => void) | (() => void)[];
|
|
88
|
-
activated?: (() => void) | (() => void)[];
|
|
89
|
-
deactivated?: (() => void) | (() => void)[];
|
|
90
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
91
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
92
|
-
destroyed?: (() => void) | (() => void)[];
|
|
93
|
-
unmounted?: (() => void) | (() => void)[];
|
|
94
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
95
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
96
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
97
|
-
};
|
|
98
|
-
$forceUpdate: () => void;
|
|
99
|
-
$nextTick: typeof import('vue').nextTick;
|
|
100
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
101
|
-
} & Readonly<{
|
|
102
|
-
[x: string]: any;
|
|
103
|
-
}> & Omit<Readonly<any>, never> & import('vue').ShallowUnwrapRef<() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
104
|
-
[key: string]: any;
|
|
105
|
-
}>> & {} & import('vue').ComponentCustomProperties & {}) | null;
|
|
106
|
-
};
|
|
107
|
-
rootEl: any;
|
|
108
|
-
};
|
|
109
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
110
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
interface TreeSelectOptions {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string | number;
|
|
5
|
+
children?: TreeSelectOptions[];
|
|
6
|
+
[propName: string]: any;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
111
9
|
options: {
|
|
112
|
-
type:
|
|
10
|
+
type: PropType<TreeSelectOptions[]>;
|
|
113
11
|
default: () => never[];
|
|
114
12
|
};
|
|
115
|
-
props: {
|
|
116
|
-
type: ObjectConstructor;
|
|
117
|
-
default: () => {
|
|
118
|
-
label: string;
|
|
119
|
-
value: string;
|
|
120
|
-
isLeaf: string;
|
|
121
|
-
children: string;
|
|
122
|
-
disabled: string;
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
13
|
collapseTags: {
|
|
126
14
|
type: BooleanConstructor;
|
|
127
15
|
default: boolean;
|
|
@@ -130,39 +18,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
130
18
|
type: BooleanConstructor;
|
|
131
19
|
default: boolean;
|
|
132
20
|
};
|
|
133
|
-
|
|
134
|
-
type: BooleanConstructor;
|
|
135
|
-
default: boolean;
|
|
136
|
-
};
|
|
137
|
-
checkStrictly: {
|
|
138
|
-
type: BooleanConstructor;
|
|
139
|
-
default: boolean;
|
|
140
|
-
};
|
|
141
|
-
selectLevel: {
|
|
142
|
-
type: StringConstructor;
|
|
143
|
-
default: string;
|
|
144
|
-
};
|
|
145
|
-
modelValue: {
|
|
146
|
-
type: import('vue').PropType<any>;
|
|
147
|
-
};
|
|
148
|
-
}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
149
|
-
change: (...args: any[]) => void;
|
|
150
|
-
"update:modelValue": (value: any) => void;
|
|
151
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
+
}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
152
22
|
options: {
|
|
153
|
-
type:
|
|
23
|
+
type: PropType<TreeSelectOptions[]>;
|
|
154
24
|
default: () => never[];
|
|
155
25
|
};
|
|
156
|
-
props: {
|
|
157
|
-
type: ObjectConstructor;
|
|
158
|
-
default: () => {
|
|
159
|
-
label: string;
|
|
160
|
-
value: string;
|
|
161
|
-
isLeaf: string;
|
|
162
|
-
children: string;
|
|
163
|
-
disabled: string;
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
26
|
collapseTags: {
|
|
167
27
|
type: BooleanConstructor;
|
|
168
28
|
default: boolean;
|
|
@@ -171,137 +31,516 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
171
31
|
type: BooleanConstructor;
|
|
172
32
|
default: boolean;
|
|
173
33
|
};
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
default: boolean;
|
|
177
|
-
};
|
|
178
|
-
checkStrictly: {
|
|
179
|
-
type: BooleanConstructor;
|
|
180
|
-
default: boolean;
|
|
181
|
-
};
|
|
182
|
-
selectLevel: {
|
|
183
|
-
type: StringConstructor;
|
|
184
|
-
default: string;
|
|
185
|
-
};
|
|
186
|
-
modelValue: {
|
|
187
|
-
type: import('vue').PropType<any>;
|
|
188
|
-
};
|
|
189
|
-
}>> & Readonly<{
|
|
190
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
191
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
192
|
-
}>, {
|
|
193
|
-
props: Record<string, any>;
|
|
194
|
-
options: unknown[];
|
|
34
|
+
}>> & Readonly<{}>, {
|
|
35
|
+
options: TreeSelectOptions[];
|
|
195
36
|
clearable: boolean;
|
|
196
37
|
collapseTags: boolean;
|
|
197
|
-
multiple: boolean;
|
|
198
|
-
checkStrictly: boolean;
|
|
199
|
-
selectLevel: string;
|
|
200
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
201
|
-
componentRef: ({
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
39
|
+
componentRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
40
|
+
cacheData: {
|
|
41
|
+
type: ArrayConstructor;
|
|
42
|
+
default: () => never[];
|
|
43
|
+
};
|
|
44
|
+
data: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeData) | (() => import('element-plus').TreeData) | ((new (...args: any[]) => import('element-plus').TreeData) | (() => import('element-plus').TreeData))[], unknown, unknown, () => never[], boolean>;
|
|
45
|
+
emptyText: {
|
|
46
|
+
readonly type: PropType<string>;
|
|
47
|
+
readonly required: false;
|
|
48
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
49
|
+
__epPropKey: true;
|
|
50
|
+
};
|
|
51
|
+
renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
52
|
+
nodeKey: StringConstructor;
|
|
53
|
+
checkStrictly: BooleanConstructor;
|
|
54
|
+
defaultExpandAll: BooleanConstructor;
|
|
55
|
+
expandOnClickNode: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
56
|
+
checkOnClickNode: BooleanConstructor;
|
|
57
|
+
checkOnClickLeaf: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
58
|
+
checkDescendants: BooleanConstructor;
|
|
59
|
+
autoExpandParent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
60
|
+
defaultCheckedKeys: {
|
|
61
|
+
readonly type: PropType<import('element-plus').TreeKey[]>;
|
|
62
|
+
readonly required: false;
|
|
63
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
64
|
+
__epPropKey: true;
|
|
65
|
+
};
|
|
66
|
+
defaultExpandedKeys: {
|
|
67
|
+
readonly type: PropType<import('element-plus').TreeKey[]>;
|
|
68
|
+
readonly required: false;
|
|
69
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
70
|
+
__epPropKey: true;
|
|
71
|
+
};
|
|
72
|
+
currentNodeKey: {
|
|
73
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
74
|
+
readonly required: false;
|
|
75
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
76
|
+
__epPropKey: true;
|
|
77
|
+
};
|
|
78
|
+
renderContent: {
|
|
79
|
+
readonly type: PropType<import('element-plus').RenderContentFunction>;
|
|
80
|
+
readonly required: false;
|
|
81
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
82
|
+
__epPropKey: true;
|
|
83
|
+
};
|
|
84
|
+
showCheckbox: BooleanConstructor;
|
|
85
|
+
draggable: BooleanConstructor;
|
|
86
|
+
allowDrag: {
|
|
87
|
+
readonly type: PropType<import('element-plus').AllowDragFunction>;
|
|
88
|
+
readonly required: false;
|
|
89
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
90
|
+
__epPropKey: true;
|
|
91
|
+
};
|
|
92
|
+
allowDrop: {
|
|
93
|
+
readonly type: PropType<import('element-plus').AllowDropFunction>;
|
|
94
|
+
readonly required: false;
|
|
95
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
96
|
+
__epPropKey: true;
|
|
97
|
+
};
|
|
98
|
+
props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
|
|
99
|
+
children: string;
|
|
100
|
+
label: string;
|
|
101
|
+
disabled: string;
|
|
102
|
+
}, boolean>;
|
|
103
|
+
lazy: BooleanConstructor;
|
|
104
|
+
highlightCurrent: BooleanConstructor;
|
|
105
|
+
load: {
|
|
106
|
+
readonly type: PropType<import('element-plus').LoadFunction>;
|
|
107
|
+
readonly required: false;
|
|
108
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
109
|
+
__epPropKey: true;
|
|
110
|
+
};
|
|
111
|
+
filterNodeMethod: {
|
|
112
|
+
readonly type: PropType<import('element-plus').FilterNodeMethodFunction>;
|
|
113
|
+
readonly required: false;
|
|
114
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
115
|
+
__epPropKey: true;
|
|
116
|
+
};
|
|
117
|
+
accordion: BooleanConstructor;
|
|
118
|
+
indent: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 18, boolean>;
|
|
119
|
+
icon: {
|
|
120
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
121
|
+
readonly required: false;
|
|
122
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
123
|
+
__epPropKey: true;
|
|
124
|
+
};
|
|
125
|
+
ariaLabel: StringConstructor;
|
|
126
|
+
emptyValues: ArrayConstructor;
|
|
127
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
128
|
+
name: StringConstructor;
|
|
129
|
+
id: StringConstructor;
|
|
130
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null))[], unknown, unknown, undefined, boolean>;
|
|
131
|
+
autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
132
|
+
automaticDropdown: BooleanConstructor;
|
|
133
|
+
size: {
|
|
134
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
135
|
+
readonly required: false;
|
|
136
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
137
|
+
__epPropKey: true;
|
|
138
|
+
};
|
|
139
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown, string, boolean>;
|
|
140
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
141
|
+
clearable: BooleanConstructor;
|
|
142
|
+
filterable: BooleanConstructor;
|
|
143
|
+
allowCreate: BooleanConstructor;
|
|
144
|
+
loading: BooleanConstructor;
|
|
145
|
+
popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
146
|
+
popperStyle: {
|
|
147
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties) | ((new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties))[], unknown, unknown>>;
|
|
148
|
+
readonly required: false;
|
|
149
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
150
|
+
__epPropKey: true;
|
|
151
|
+
};
|
|
152
|
+
popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => Partial<Options>, boolean>;
|
|
153
|
+
remote: BooleanConstructor;
|
|
154
|
+
debounce: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
155
|
+
loadingText: StringConstructor;
|
|
156
|
+
noMatchText: StringConstructor;
|
|
157
|
+
noDataText: StringConstructor;
|
|
158
|
+
remoteMethod: {
|
|
159
|
+
readonly type: PropType<(query: string) => void>;
|
|
160
|
+
readonly required: false;
|
|
161
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
162
|
+
__epPropKey: true;
|
|
163
|
+
};
|
|
164
|
+
filterMethod: {
|
|
165
|
+
readonly type: PropType<(query: string) => void>;
|
|
166
|
+
readonly required: false;
|
|
167
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
168
|
+
__epPropKey: true;
|
|
169
|
+
};
|
|
170
|
+
multiple: BooleanConstructor;
|
|
171
|
+
multipleLimit: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
172
|
+
placeholder: {
|
|
173
|
+
readonly type: PropType<string>;
|
|
174
|
+
readonly required: false;
|
|
175
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
176
|
+
__epPropKey: true;
|
|
177
|
+
};
|
|
178
|
+
defaultFirstOption: BooleanConstructor;
|
|
179
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
180
|
+
valueKey: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
181
|
+
collapseTags: BooleanConstructor;
|
|
182
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
183
|
+
tagTooltip: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TagTooltipProps) | (() => import('element-plus').TagTooltipProps) | ((new (...args: any[]) => import('element-plus').TagTooltipProps) | (() => import('element-plus').TagTooltipProps))[], unknown, unknown, () => {}, boolean>;
|
|
184
|
+
maxCollapseTags: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
185
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
186
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
187
|
+
clearIcon: {
|
|
188
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
189
|
+
readonly required: false;
|
|
190
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
191
|
+
__epPropKey: true;
|
|
192
|
+
};
|
|
193
|
+
fitInputWidth: BooleanConstructor;
|
|
194
|
+
suffixIcon: {
|
|
195
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
196
|
+
readonly required: false;
|
|
197
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
198
|
+
__epPropKey: true;
|
|
199
|
+
};
|
|
200
|
+
tagType: {
|
|
201
|
+
default: string;
|
|
202
|
+
type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "info" | "primary" | "success" | "warning" | "danger", unknown>>;
|
|
203
|
+
required: false;
|
|
204
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
205
|
+
__epPropKey: true;
|
|
206
|
+
};
|
|
207
|
+
tagEffect: {
|
|
208
|
+
default: string;
|
|
209
|
+
type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "light" | "dark" | "plain", unknown>>;
|
|
210
|
+
required: false;
|
|
211
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
212
|
+
__epPropKey: true;
|
|
213
|
+
};
|
|
214
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
215
|
+
remoteShowSuffix: BooleanConstructor;
|
|
216
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
217
|
+
offset: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
218
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], Placement, unknown, string, boolean>;
|
|
219
|
+
fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Placement[]) | (() => Placement[]) | ((new (...args: any[]) => Placement[]) | (() => Placement[]))[], unknown, unknown, string[], boolean>;
|
|
220
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(NumberConstructor | StringConstructor)[], unknown, unknown, number, boolean>;
|
|
221
|
+
appendTo: {
|
|
222
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
223
|
+
readonly required: false;
|
|
224
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
225
|
+
__epPropKey: true;
|
|
226
|
+
};
|
|
227
|
+
options: {
|
|
228
|
+
readonly type: PropType<Record<string, any>[]>;
|
|
229
|
+
readonly required: false;
|
|
230
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
231
|
+
__epPropKey: true;
|
|
232
|
+
};
|
|
233
|
+
}>>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
248
234
|
[key: string]: any;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
235
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
236
|
+
offset: number;
|
|
237
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
238
|
+
props: import('element-plus').TreeOptionProps;
|
|
239
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown>;
|
|
240
|
+
valueKey: string;
|
|
241
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null))[], unknown, unknown>;
|
|
242
|
+
debounce: number;
|
|
243
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], Placement, unknown>;
|
|
244
|
+
popperClass: string;
|
|
245
|
+
fitInputWidth: boolean;
|
|
246
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
247
|
+
autocomplete: string;
|
|
248
|
+
clearable: boolean;
|
|
249
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(NumberConstructor | StringConstructor)[], unknown, unknown>;
|
|
250
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
251
|
+
multiple: boolean;
|
|
252
|
+
fallbackPlacements: Placement[];
|
|
253
|
+
popperOptions: Partial<Options>;
|
|
254
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
255
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
256
|
+
data: import('element-plus').TreeData;
|
|
257
|
+
loading: boolean;
|
|
258
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
259
|
+
checkStrictly: boolean;
|
|
260
|
+
lazy: boolean;
|
|
261
|
+
checkOnClickNode: boolean;
|
|
262
|
+
checkOnClickLeaf: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
263
|
+
filterable: boolean;
|
|
264
|
+
collapseTags: boolean;
|
|
265
|
+
maxCollapseTags: number;
|
|
266
|
+
collapseTagsTooltip: boolean;
|
|
267
|
+
tagType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "info" | "primary" | "success" | "warning" | "danger", unknown>;
|
|
268
|
+
tagEffect: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "light" | "dark" | "plain", unknown>;
|
|
269
|
+
accordion: boolean;
|
|
270
|
+
automaticDropdown: boolean;
|
|
271
|
+
draggable: boolean;
|
|
272
|
+
allowCreate: boolean;
|
|
273
|
+
remote: boolean;
|
|
274
|
+
multipleLimit: number;
|
|
275
|
+
defaultFirstOption: boolean;
|
|
276
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
277
|
+
tagTooltip: import('element-plus').TagTooltipProps;
|
|
278
|
+
remoteShowSuffix: boolean;
|
|
279
|
+
defaultExpandAll: boolean;
|
|
280
|
+
indent: number;
|
|
281
|
+
renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
282
|
+
showCheckbox: boolean;
|
|
283
|
+
expandOnClickNode: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
284
|
+
autoExpandParent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
285
|
+
checkDescendants: boolean;
|
|
286
|
+
highlightCurrent: boolean;
|
|
287
|
+
cacheData: unknown[];
|
|
288
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
289
|
+
P: {};
|
|
290
|
+
B: {};
|
|
291
|
+
D: {};
|
|
292
|
+
C: {};
|
|
293
|
+
M: {};
|
|
294
|
+
Defaults: {};
|
|
295
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
296
|
+
cacheData: {
|
|
297
|
+
type: ArrayConstructor;
|
|
298
|
+
default: () => never[];
|
|
299
|
+
};
|
|
300
|
+
data: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeData) | (() => import('element-plus').TreeData) | ((new (...args: any[]) => import('element-plus').TreeData) | (() => import('element-plus').TreeData))[], unknown, unknown, () => never[], boolean>;
|
|
301
|
+
emptyText: {
|
|
302
|
+
readonly type: PropType<string>;
|
|
303
|
+
readonly required: false;
|
|
304
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
305
|
+
__epPropKey: true;
|
|
306
|
+
};
|
|
307
|
+
renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
308
|
+
nodeKey: StringConstructor;
|
|
309
|
+
checkStrictly: BooleanConstructor;
|
|
310
|
+
defaultExpandAll: BooleanConstructor;
|
|
311
|
+
expandOnClickNode: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
312
|
+
checkOnClickNode: BooleanConstructor;
|
|
313
|
+
checkOnClickLeaf: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
314
|
+
checkDescendants: BooleanConstructor;
|
|
315
|
+
autoExpandParent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
316
|
+
defaultCheckedKeys: {
|
|
317
|
+
readonly type: PropType<import('element-plus').TreeKey[]>;
|
|
318
|
+
readonly required: false;
|
|
319
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
320
|
+
__epPropKey: true;
|
|
321
|
+
};
|
|
322
|
+
defaultExpandedKeys: {
|
|
323
|
+
readonly type: PropType<import('element-plus').TreeKey[]>;
|
|
324
|
+
readonly required: false;
|
|
325
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
326
|
+
__epPropKey: true;
|
|
327
|
+
};
|
|
328
|
+
currentNodeKey: {
|
|
329
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
330
|
+
readonly required: false;
|
|
331
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
332
|
+
__epPropKey: true;
|
|
333
|
+
};
|
|
334
|
+
renderContent: {
|
|
335
|
+
readonly type: PropType<import('element-plus').RenderContentFunction>;
|
|
336
|
+
readonly required: false;
|
|
337
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
338
|
+
__epPropKey: true;
|
|
339
|
+
};
|
|
340
|
+
showCheckbox: BooleanConstructor;
|
|
341
|
+
draggable: BooleanConstructor;
|
|
342
|
+
allowDrag: {
|
|
343
|
+
readonly type: PropType<import('element-plus').AllowDragFunction>;
|
|
344
|
+
readonly required: false;
|
|
345
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
346
|
+
__epPropKey: true;
|
|
347
|
+
};
|
|
348
|
+
allowDrop: {
|
|
349
|
+
readonly type: PropType<import('element-plus').AllowDropFunction>;
|
|
350
|
+
readonly required: false;
|
|
351
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
352
|
+
__epPropKey: true;
|
|
353
|
+
};
|
|
354
|
+
props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
|
|
355
|
+
children: string;
|
|
356
|
+
label: string;
|
|
357
|
+
disabled: string;
|
|
358
|
+
}, boolean>;
|
|
359
|
+
lazy: BooleanConstructor;
|
|
360
|
+
highlightCurrent: BooleanConstructor;
|
|
361
|
+
load: {
|
|
362
|
+
readonly type: PropType<import('element-plus').LoadFunction>;
|
|
363
|
+
readonly required: false;
|
|
364
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
365
|
+
__epPropKey: true;
|
|
366
|
+
};
|
|
367
|
+
filterNodeMethod: {
|
|
368
|
+
readonly type: PropType<import('element-plus').FilterNodeMethodFunction>;
|
|
369
|
+
readonly required: false;
|
|
370
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
371
|
+
__epPropKey: true;
|
|
372
|
+
};
|
|
373
|
+
accordion: BooleanConstructor;
|
|
374
|
+
indent: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 18, boolean>;
|
|
375
|
+
icon: {
|
|
376
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
377
|
+
readonly required: false;
|
|
378
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
379
|
+
__epPropKey: true;
|
|
380
|
+
};
|
|
381
|
+
ariaLabel: StringConstructor;
|
|
382
|
+
emptyValues: ArrayConstructor;
|
|
383
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
384
|
+
name: StringConstructor;
|
|
385
|
+
id: StringConstructor;
|
|
386
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null))[], unknown, unknown, undefined, boolean>;
|
|
387
|
+
autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
388
|
+
automaticDropdown: BooleanConstructor;
|
|
389
|
+
size: {
|
|
390
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
391
|
+
readonly required: false;
|
|
392
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
393
|
+
__epPropKey: true;
|
|
394
|
+
};
|
|
395
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown, string, boolean>;
|
|
396
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
397
|
+
clearable: BooleanConstructor;
|
|
398
|
+
filterable: BooleanConstructor;
|
|
399
|
+
allowCreate: BooleanConstructor;
|
|
400
|
+
loading: BooleanConstructor;
|
|
401
|
+
popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
402
|
+
popperStyle: {
|
|
403
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties) | ((new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties))[], unknown, unknown>>;
|
|
404
|
+
readonly required: false;
|
|
405
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
406
|
+
__epPropKey: true;
|
|
407
|
+
};
|
|
408
|
+
popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => Partial<Options>, boolean>;
|
|
409
|
+
remote: BooleanConstructor;
|
|
410
|
+
debounce: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
411
|
+
loadingText: StringConstructor;
|
|
412
|
+
noMatchText: StringConstructor;
|
|
413
|
+
noDataText: StringConstructor;
|
|
414
|
+
remoteMethod: {
|
|
415
|
+
readonly type: PropType<(query: string) => void>;
|
|
416
|
+
readonly required: false;
|
|
417
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
418
|
+
__epPropKey: true;
|
|
419
|
+
};
|
|
420
|
+
filterMethod: {
|
|
421
|
+
readonly type: PropType<(query: string) => void>;
|
|
422
|
+
readonly required: false;
|
|
423
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
424
|
+
__epPropKey: true;
|
|
425
|
+
};
|
|
426
|
+
multiple: BooleanConstructor;
|
|
427
|
+
multipleLimit: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
428
|
+
placeholder: {
|
|
429
|
+
readonly type: PropType<string>;
|
|
430
|
+
readonly required: false;
|
|
431
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
432
|
+
__epPropKey: true;
|
|
433
|
+
};
|
|
434
|
+
defaultFirstOption: BooleanConstructor;
|
|
435
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
436
|
+
valueKey: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
437
|
+
collapseTags: BooleanConstructor;
|
|
438
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
439
|
+
tagTooltip: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TagTooltipProps) | (() => import('element-plus').TagTooltipProps) | ((new (...args: any[]) => import('element-plus').TagTooltipProps) | (() => import('element-plus').TagTooltipProps))[], unknown, unknown, () => {}, boolean>;
|
|
440
|
+
maxCollapseTags: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
441
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
442
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
443
|
+
clearIcon: {
|
|
444
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
445
|
+
readonly required: false;
|
|
446
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
447
|
+
__epPropKey: true;
|
|
448
|
+
};
|
|
449
|
+
fitInputWidth: BooleanConstructor;
|
|
450
|
+
suffixIcon: {
|
|
451
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
452
|
+
readonly required: false;
|
|
453
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
454
|
+
__epPropKey: true;
|
|
455
|
+
};
|
|
456
|
+
tagType: {
|
|
457
|
+
default: string;
|
|
458
|
+
type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "info" | "primary" | "success" | "warning" | "danger", unknown>>;
|
|
459
|
+
required: false;
|
|
460
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
461
|
+
__epPropKey: true;
|
|
462
|
+
};
|
|
463
|
+
tagEffect: {
|
|
464
|
+
default: string;
|
|
465
|
+
type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "light" | "dark" | "plain", unknown>>;
|
|
466
|
+
required: false;
|
|
467
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
468
|
+
__epPropKey: true;
|
|
469
|
+
};
|
|
470
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
471
|
+
remoteShowSuffix: BooleanConstructor;
|
|
472
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
473
|
+
offset: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
474
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], Placement, unknown, string, boolean>;
|
|
475
|
+
fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Placement[]) | (() => Placement[]) | ((new (...args: any[]) => Placement[]) | (() => Placement[]))[], unknown, unknown, string[], boolean>;
|
|
476
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(NumberConstructor | StringConstructor)[], unknown, unknown, number, boolean>;
|
|
477
|
+
appendTo: {
|
|
478
|
+
readonly type: PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
479
|
+
readonly required: false;
|
|
480
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
481
|
+
__epPropKey: true;
|
|
482
|
+
};
|
|
483
|
+
options: {
|
|
484
|
+
readonly type: PropType<Record<string, any>[]>;
|
|
485
|
+
readonly required: false;
|
|
486
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
487
|
+
__epPropKey: true;
|
|
488
|
+
};
|
|
489
|
+
}>>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
298
490
|
[key: string]: any;
|
|
299
|
-
}
|
|
491
|
+
}>, {}, {}, {}, {
|
|
492
|
+
offset: number;
|
|
493
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
494
|
+
props: import('element-plus').TreeOptionProps;
|
|
495
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown>;
|
|
496
|
+
valueKey: string;
|
|
497
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(BooleanConstructor | ObjectConstructor | NumberConstructor | StringConstructor)[], unknown, unknown>[] | null))[], unknown, unknown>;
|
|
498
|
+
debounce: number;
|
|
499
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "top" | "auto" | "bottom" | "bottom-start" | "left" | "right" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement))[], Placement, unknown>;
|
|
500
|
+
popperClass: string;
|
|
501
|
+
fitInputWidth: boolean;
|
|
502
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
503
|
+
autocomplete: string;
|
|
504
|
+
clearable: boolean;
|
|
505
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(NumberConstructor | StringConstructor)[], unknown, unknown>;
|
|
506
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
507
|
+
multiple: boolean;
|
|
508
|
+
fallbackPlacements: Placement[];
|
|
509
|
+
popperOptions: Partial<Options>;
|
|
510
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
511
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
512
|
+
data: import('element-plus').TreeData;
|
|
513
|
+
loading: boolean;
|
|
514
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
515
|
+
checkStrictly: boolean;
|
|
516
|
+
lazy: boolean;
|
|
517
|
+
checkOnClickNode: boolean;
|
|
518
|
+
checkOnClickLeaf: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
519
|
+
filterable: boolean;
|
|
520
|
+
collapseTags: boolean;
|
|
521
|
+
maxCollapseTags: number;
|
|
522
|
+
collapseTagsTooltip: boolean;
|
|
523
|
+
tagType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "info" | "primary" | "success" | "warning" | "danger", unknown>;
|
|
524
|
+
tagEffect: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "light" | "dark" | "plain", unknown>;
|
|
525
|
+
accordion: boolean;
|
|
526
|
+
automaticDropdown: boolean;
|
|
527
|
+
draggable: boolean;
|
|
528
|
+
allowCreate: boolean;
|
|
529
|
+
remote: boolean;
|
|
530
|
+
multipleLimit: number;
|
|
531
|
+
defaultFirstOption: boolean;
|
|
532
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
533
|
+
tagTooltip: import('element-plus').TagTooltipProps;
|
|
534
|
+
remoteShowSuffix: boolean;
|
|
535
|
+
defaultExpandAll: boolean;
|
|
536
|
+
indent: number;
|
|
537
|
+
renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
538
|
+
showCheckbox: boolean;
|
|
539
|
+
expandOnClickNode: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
540
|
+
autoExpandParent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
541
|
+
checkDescendants: boolean;
|
|
542
|
+
highlightCurrent: boolean;
|
|
543
|
+
cacheData: unknown[];
|
|
544
|
+
}> | null;
|
|
300
545
|
}, any>;
|
|
301
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
302
546
|
export default _default;
|
|
303
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
304
|
-
new (): {
|
|
305
|
-
$slots: S;
|
|
306
|
-
};
|
|
307
|
-
};
|