@opentinyvue/vue-design-saas 3.26.0 → 3.28.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/index.d.ts +491 -20
- package/index.js +139 -10
- package/package.json +5 -5
- package/src/alert/index.d.ts +38 -2
- package/src/base-select/index.d.ts +112 -0
- package/src/collapse-item/index.d.ts +38 -2
- package/src/dropdown/index.d.ts +38 -2
- package/src/dropdown-item/index.d.ts +38 -2
- package/src/filter-box/index.d.ts +38 -2
- package/src/grid/index.d.ts +76 -4
- package/src/popconfirm/index.d.ts +38 -2
- package/src/select/index.d.ts +76 -4
- package/src/select-wrapper/index.d.ts +112 -0
package/index.d.ts
CHANGED
|
@@ -4,9 +4,45 @@ declare const _default: {
|
|
|
4
4
|
components: {
|
|
5
5
|
Alert: {
|
|
6
6
|
icons: {
|
|
7
|
-
warning: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
7
|
+
warning: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
8
|
+
shape: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
firstColor: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
secondColor: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
underlay: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
};
|
|
23
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
8
24
|
[key: string]: any;
|
|
9
|
-
}>,
|
|
25
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
26
|
+
shape: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
firstColor: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
secondColor: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
underlay: {
|
|
39
|
+
type: ObjectConstructor;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
shape: string;
|
|
43
|
+
firstColor: string;
|
|
44
|
+
secondColor: string;
|
|
45
|
+
}, {}>>;
|
|
10
46
|
};
|
|
11
47
|
};
|
|
12
48
|
Badge: {
|
|
@@ -17,9 +53,45 @@ declare const _default: {
|
|
|
17
53
|
};
|
|
18
54
|
CollapseItem: {
|
|
19
55
|
icons: {
|
|
20
|
-
arrowIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
56
|
+
arrowIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
57
|
+
shape: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
firstColor: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
secondColor: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
underlay: {
|
|
70
|
+
type: ObjectConstructor;
|
|
71
|
+
};
|
|
72
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
21
73
|
[key: string]: any;
|
|
22
|
-
}>,
|
|
74
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
75
|
+
shape: {
|
|
76
|
+
type: StringConstructor;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
firstColor: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
secondColor: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
underlay: {
|
|
88
|
+
type: ObjectConstructor;
|
|
89
|
+
};
|
|
90
|
+
}>>, {
|
|
91
|
+
shape: string;
|
|
92
|
+
firstColor: string;
|
|
93
|
+
secondColor: string;
|
|
94
|
+
}, {}>>;
|
|
23
95
|
};
|
|
24
96
|
};
|
|
25
97
|
Drawer: {
|
|
@@ -29,9 +101,45 @@ declare const _default: {
|
|
|
29
101
|
};
|
|
30
102
|
Dropdown: {
|
|
31
103
|
icons: {
|
|
32
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
104
|
+
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
105
|
+
shape: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
firstColor: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
secondColor: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
default: string;
|
|
116
|
+
};
|
|
117
|
+
underlay: {
|
|
118
|
+
type: ObjectConstructor;
|
|
119
|
+
};
|
|
120
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
33
121
|
[key: string]: any;
|
|
34
|
-
}>,
|
|
122
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
123
|
+
shape: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
firstColor: {
|
|
128
|
+
type: StringConstructor;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
131
|
+
secondColor: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
underlay: {
|
|
136
|
+
type: ObjectConstructor;
|
|
137
|
+
};
|
|
138
|
+
}>>, {
|
|
139
|
+
shape: string;
|
|
140
|
+
firstColor: string;
|
|
141
|
+
secondColor: string;
|
|
142
|
+
}, {}>>;
|
|
35
143
|
};
|
|
36
144
|
props: {
|
|
37
145
|
trigger: string;
|
|
@@ -55,9 +163,45 @@ declare const _default: {
|
|
|
55
163
|
};
|
|
56
164
|
DropdownItem: {
|
|
57
165
|
icons: {
|
|
58
|
-
leftWardArrow: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
166
|
+
leftWardArrow: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
167
|
+
shape: {
|
|
168
|
+
type: StringConstructor;
|
|
169
|
+
default: string;
|
|
170
|
+
};
|
|
171
|
+
firstColor: {
|
|
172
|
+
type: StringConstructor;
|
|
173
|
+
default: string;
|
|
174
|
+
};
|
|
175
|
+
secondColor: {
|
|
176
|
+
type: StringConstructor;
|
|
177
|
+
default: string;
|
|
178
|
+
};
|
|
179
|
+
underlay: {
|
|
180
|
+
type: ObjectConstructor;
|
|
181
|
+
};
|
|
182
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
59
183
|
[key: string]: any;
|
|
60
|
-
}>,
|
|
184
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
185
|
+
shape: {
|
|
186
|
+
type: StringConstructor;
|
|
187
|
+
default: string;
|
|
188
|
+
};
|
|
189
|
+
firstColor: {
|
|
190
|
+
type: StringConstructor;
|
|
191
|
+
default: string;
|
|
192
|
+
};
|
|
193
|
+
secondColor: {
|
|
194
|
+
type: StringConstructor;
|
|
195
|
+
default: string;
|
|
196
|
+
};
|
|
197
|
+
underlay: {
|
|
198
|
+
type: ObjectConstructor;
|
|
199
|
+
};
|
|
200
|
+
}>>, {
|
|
201
|
+
shape: string;
|
|
202
|
+
firstColor: string;
|
|
203
|
+
secondColor: string;
|
|
204
|
+
}, {}>>;
|
|
61
205
|
};
|
|
62
206
|
renderless: (props: any, hooks: any, { emit, dispatch, vm }: {
|
|
63
207
|
emit: any;
|
|
@@ -69,9 +213,45 @@ declare const _default: {
|
|
|
69
213
|
};
|
|
70
214
|
FilterBox: {
|
|
71
215
|
icons: {
|
|
72
|
-
expandButton: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
216
|
+
expandButton: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
217
|
+
shape: {
|
|
218
|
+
type: StringConstructor;
|
|
219
|
+
default: string;
|
|
220
|
+
};
|
|
221
|
+
firstColor: {
|
|
222
|
+
type: StringConstructor;
|
|
223
|
+
default: string;
|
|
224
|
+
};
|
|
225
|
+
secondColor: {
|
|
226
|
+
type: StringConstructor;
|
|
227
|
+
default: string;
|
|
228
|
+
};
|
|
229
|
+
underlay: {
|
|
230
|
+
type: ObjectConstructor;
|
|
231
|
+
};
|
|
232
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
73
233
|
[key: string]: any;
|
|
74
|
-
}>,
|
|
234
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
235
|
+
shape: {
|
|
236
|
+
type: StringConstructor;
|
|
237
|
+
default: string;
|
|
238
|
+
};
|
|
239
|
+
firstColor: {
|
|
240
|
+
type: StringConstructor;
|
|
241
|
+
default: string;
|
|
242
|
+
};
|
|
243
|
+
secondColor: {
|
|
244
|
+
type: StringConstructor;
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
247
|
+
underlay: {
|
|
248
|
+
type: ObjectConstructor;
|
|
249
|
+
};
|
|
250
|
+
}>>, {
|
|
251
|
+
shape: string;
|
|
252
|
+
firstColor: string;
|
|
253
|
+
secondColor: string;
|
|
254
|
+
}, {}>>;
|
|
75
255
|
};
|
|
76
256
|
};
|
|
77
257
|
Form: {
|
|
@@ -99,12 +279,84 @@ declare const _default: {
|
|
|
99
279
|
};
|
|
100
280
|
icons: {
|
|
101
281
|
sortDefault: null;
|
|
102
|
-
sortAsc: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
282
|
+
sortAsc: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
283
|
+
shape: {
|
|
284
|
+
type: StringConstructor;
|
|
285
|
+
default: string;
|
|
286
|
+
};
|
|
287
|
+
firstColor: {
|
|
288
|
+
type: StringConstructor;
|
|
289
|
+
default: string;
|
|
290
|
+
};
|
|
291
|
+
secondColor: {
|
|
292
|
+
type: StringConstructor;
|
|
293
|
+
default: string;
|
|
294
|
+
};
|
|
295
|
+
underlay: {
|
|
296
|
+
type: ObjectConstructor;
|
|
297
|
+
};
|
|
298
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
103
299
|
[key: string]: any;
|
|
104
|
-
}>,
|
|
105
|
-
|
|
300
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
301
|
+
shape: {
|
|
302
|
+
type: StringConstructor;
|
|
303
|
+
default: string;
|
|
304
|
+
};
|
|
305
|
+
firstColor: {
|
|
306
|
+
type: StringConstructor;
|
|
307
|
+
default: string;
|
|
308
|
+
};
|
|
309
|
+
secondColor: {
|
|
310
|
+
type: StringConstructor;
|
|
311
|
+
default: string;
|
|
312
|
+
};
|
|
313
|
+
underlay: {
|
|
314
|
+
type: ObjectConstructor;
|
|
315
|
+
};
|
|
316
|
+
}>>, {
|
|
317
|
+
shape: string;
|
|
318
|
+
firstColor: string;
|
|
319
|
+
secondColor: string;
|
|
320
|
+
}, {}>>;
|
|
321
|
+
sortDesc: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
322
|
+
shape: {
|
|
323
|
+
type: StringConstructor;
|
|
324
|
+
default: string;
|
|
325
|
+
};
|
|
326
|
+
firstColor: {
|
|
327
|
+
type: StringConstructor;
|
|
328
|
+
default: string;
|
|
329
|
+
};
|
|
330
|
+
secondColor: {
|
|
331
|
+
type: StringConstructor;
|
|
332
|
+
default: string;
|
|
333
|
+
};
|
|
334
|
+
underlay: {
|
|
335
|
+
type: ObjectConstructor;
|
|
336
|
+
};
|
|
337
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
106
338
|
[key: string]: any;
|
|
107
|
-
}>,
|
|
339
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
340
|
+
shape: {
|
|
341
|
+
type: StringConstructor;
|
|
342
|
+
default: string;
|
|
343
|
+
};
|
|
344
|
+
firstColor: {
|
|
345
|
+
type: StringConstructor;
|
|
346
|
+
default: string;
|
|
347
|
+
};
|
|
348
|
+
secondColor: {
|
|
349
|
+
type: StringConstructor;
|
|
350
|
+
default: string;
|
|
351
|
+
};
|
|
352
|
+
underlay: {
|
|
353
|
+
type: ObjectConstructor;
|
|
354
|
+
};
|
|
355
|
+
}>>, {
|
|
356
|
+
shape: string;
|
|
357
|
+
firstColor: string;
|
|
358
|
+
secondColor: string;
|
|
359
|
+
}, {}>>;
|
|
108
360
|
};
|
|
109
361
|
};
|
|
110
362
|
Milestone: {
|
|
@@ -133,9 +385,45 @@ declare const _default: {
|
|
|
133
385
|
};
|
|
134
386
|
Popconfirm: {
|
|
135
387
|
icons: {
|
|
136
|
-
warning: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
388
|
+
warning: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
389
|
+
shape: {
|
|
390
|
+
type: StringConstructor;
|
|
391
|
+
default: string;
|
|
392
|
+
};
|
|
393
|
+
firstColor: {
|
|
394
|
+
type: StringConstructor;
|
|
395
|
+
default: string;
|
|
396
|
+
};
|
|
397
|
+
secondColor: {
|
|
398
|
+
type: StringConstructor;
|
|
399
|
+
default: string;
|
|
400
|
+
};
|
|
401
|
+
underlay: {
|
|
402
|
+
type: ObjectConstructor;
|
|
403
|
+
};
|
|
404
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
137
405
|
[key: string]: any;
|
|
138
|
-
}>,
|
|
406
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
407
|
+
shape: {
|
|
408
|
+
type: StringConstructor;
|
|
409
|
+
default: string;
|
|
410
|
+
};
|
|
411
|
+
firstColor: {
|
|
412
|
+
type: StringConstructor;
|
|
413
|
+
default: string;
|
|
414
|
+
};
|
|
415
|
+
secondColor: {
|
|
416
|
+
type: StringConstructor;
|
|
417
|
+
default: string;
|
|
418
|
+
};
|
|
419
|
+
underlay: {
|
|
420
|
+
type: ObjectConstructor;
|
|
421
|
+
};
|
|
422
|
+
}>>, {
|
|
423
|
+
shape: string;
|
|
424
|
+
firstColor: string;
|
|
425
|
+
secondColor: string;
|
|
426
|
+
}, {}>>;
|
|
139
427
|
};
|
|
140
428
|
};
|
|
141
429
|
Popeditor: {
|
|
@@ -164,12 +452,84 @@ declare const _default: {
|
|
|
164
452
|
limit: number;
|
|
165
453
|
};
|
|
166
454
|
icons: {
|
|
167
|
-
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
455
|
+
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
456
|
+
shape: {
|
|
457
|
+
type: StringConstructor;
|
|
458
|
+
default: string;
|
|
459
|
+
};
|
|
460
|
+
firstColor: {
|
|
461
|
+
type: StringConstructor;
|
|
462
|
+
default: string;
|
|
463
|
+
};
|
|
464
|
+
secondColor: {
|
|
465
|
+
type: StringConstructor;
|
|
466
|
+
default: string;
|
|
467
|
+
};
|
|
468
|
+
underlay: {
|
|
469
|
+
type: ObjectConstructor;
|
|
470
|
+
};
|
|
471
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
168
472
|
[key: string]: any;
|
|
169
|
-
}>,
|
|
170
|
-
|
|
473
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
474
|
+
shape: {
|
|
475
|
+
type: StringConstructor;
|
|
476
|
+
default: string;
|
|
477
|
+
};
|
|
478
|
+
firstColor: {
|
|
479
|
+
type: StringConstructor;
|
|
480
|
+
default: string;
|
|
481
|
+
};
|
|
482
|
+
secondColor: {
|
|
483
|
+
type: StringConstructor;
|
|
484
|
+
default: string;
|
|
485
|
+
};
|
|
486
|
+
underlay: {
|
|
487
|
+
type: ObjectConstructor;
|
|
488
|
+
};
|
|
489
|
+
}>>, {
|
|
490
|
+
shape: string;
|
|
491
|
+
firstColor: string;
|
|
492
|
+
secondColor: string;
|
|
493
|
+
}, {}>>;
|
|
494
|
+
addIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
495
|
+
shape: {
|
|
496
|
+
type: StringConstructor;
|
|
497
|
+
default: string;
|
|
498
|
+
};
|
|
499
|
+
firstColor: {
|
|
500
|
+
type: StringConstructor;
|
|
501
|
+
default: string;
|
|
502
|
+
};
|
|
503
|
+
secondColor: {
|
|
504
|
+
type: StringConstructor;
|
|
505
|
+
default: string;
|
|
506
|
+
};
|
|
507
|
+
underlay: {
|
|
508
|
+
type: ObjectConstructor;
|
|
509
|
+
};
|
|
510
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
171
511
|
[key: string]: any;
|
|
172
|
-
}>,
|
|
512
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
513
|
+
shape: {
|
|
514
|
+
type: StringConstructor;
|
|
515
|
+
default: string;
|
|
516
|
+
};
|
|
517
|
+
firstColor: {
|
|
518
|
+
type: StringConstructor;
|
|
519
|
+
default: string;
|
|
520
|
+
};
|
|
521
|
+
secondColor: {
|
|
522
|
+
type: StringConstructor;
|
|
523
|
+
default: string;
|
|
524
|
+
};
|
|
525
|
+
underlay: {
|
|
526
|
+
type: ObjectConstructor;
|
|
527
|
+
};
|
|
528
|
+
}>>, {
|
|
529
|
+
shape: string;
|
|
530
|
+
firstColor: string;
|
|
531
|
+
secondColor: string;
|
|
532
|
+
}, {}>>;
|
|
173
533
|
loadingIcon: string;
|
|
174
534
|
};
|
|
175
535
|
state: {
|
|
@@ -270,6 +630,117 @@ declare const _default: {
|
|
|
270
630
|
Cascader: {
|
|
271
631
|
tagTypeWhenMultiple: string;
|
|
272
632
|
};
|
|
633
|
+
BaseSelect: {
|
|
634
|
+
baseOpts: {
|
|
635
|
+
optionHeight: number;
|
|
636
|
+
limit: number;
|
|
637
|
+
};
|
|
638
|
+
icons: {
|
|
639
|
+
dropdownIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
640
|
+
shape: {
|
|
641
|
+
type: StringConstructor;
|
|
642
|
+
default: string;
|
|
643
|
+
};
|
|
644
|
+
firstColor: {
|
|
645
|
+
type: StringConstructor;
|
|
646
|
+
default: string;
|
|
647
|
+
};
|
|
648
|
+
secondColor: {
|
|
649
|
+
type: StringConstructor;
|
|
650
|
+
default: string;
|
|
651
|
+
};
|
|
652
|
+
underlay: {
|
|
653
|
+
type: ObjectConstructor;
|
|
654
|
+
};
|
|
655
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
656
|
+
[key: string]: any;
|
|
657
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
658
|
+
shape: {
|
|
659
|
+
type: StringConstructor;
|
|
660
|
+
default: string;
|
|
661
|
+
};
|
|
662
|
+
firstColor: {
|
|
663
|
+
type: StringConstructor;
|
|
664
|
+
default: string;
|
|
665
|
+
};
|
|
666
|
+
secondColor: {
|
|
667
|
+
type: StringConstructor;
|
|
668
|
+
default: string;
|
|
669
|
+
};
|
|
670
|
+
underlay: {
|
|
671
|
+
type: ObjectConstructor;
|
|
672
|
+
};
|
|
673
|
+
}>>, {
|
|
674
|
+
shape: string;
|
|
675
|
+
firstColor: string;
|
|
676
|
+
secondColor: string;
|
|
677
|
+
}, {}>>;
|
|
678
|
+
addIcon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{
|
|
679
|
+
shape: {
|
|
680
|
+
type: StringConstructor;
|
|
681
|
+
default: string;
|
|
682
|
+
};
|
|
683
|
+
firstColor: {
|
|
684
|
+
type: StringConstructor;
|
|
685
|
+
default: string;
|
|
686
|
+
};
|
|
687
|
+
secondColor: {
|
|
688
|
+
type: StringConstructor;
|
|
689
|
+
default: string;
|
|
690
|
+
};
|
|
691
|
+
underlay: {
|
|
692
|
+
type: ObjectConstructor;
|
|
693
|
+
};
|
|
694
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
695
|
+
[key: string]: any;
|
|
696
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
697
|
+
shape: {
|
|
698
|
+
type: StringConstructor;
|
|
699
|
+
default: string;
|
|
700
|
+
};
|
|
701
|
+
firstColor: {
|
|
702
|
+
type: StringConstructor;
|
|
703
|
+
default: string;
|
|
704
|
+
};
|
|
705
|
+
secondColor: {
|
|
706
|
+
type: StringConstructor;
|
|
707
|
+
default: string;
|
|
708
|
+
};
|
|
709
|
+
underlay: {
|
|
710
|
+
type: ObjectConstructor;
|
|
711
|
+
};
|
|
712
|
+
}>>, {
|
|
713
|
+
shape: string;
|
|
714
|
+
firstColor: string;
|
|
715
|
+
secondColor: string;
|
|
716
|
+
}, {}>>;
|
|
717
|
+
loadingIcon: string;
|
|
718
|
+
};
|
|
719
|
+
state: {
|
|
720
|
+
sizeMap: {
|
|
721
|
+
default: number;
|
|
722
|
+
mini: number;
|
|
723
|
+
small: number;
|
|
724
|
+
medium: number;
|
|
725
|
+
};
|
|
726
|
+
spacingHeight: number;
|
|
727
|
+
initialInputHeight: number;
|
|
728
|
+
autoHideDownIcon: boolean;
|
|
729
|
+
delayBlur: boolean;
|
|
730
|
+
};
|
|
731
|
+
props: {
|
|
732
|
+
tagType: string;
|
|
733
|
+
stopPropagation: boolean;
|
|
734
|
+
};
|
|
735
|
+
renderless: (props: any, hooks: any, { emit }: {
|
|
736
|
+
emit: any;
|
|
737
|
+
}, api: any) => {
|
|
738
|
+
computedCollapseTagSize: () => string;
|
|
739
|
+
toggleCheckAll: (filtered: any) => void;
|
|
740
|
+
computedShowTagText: () => any;
|
|
741
|
+
isTagClosable: (item: any) => boolean;
|
|
742
|
+
};
|
|
743
|
+
};
|
|
273
744
|
};
|
|
274
745
|
};
|
|
275
746
|
export default _default;
|