@ecan-bi/datav 1.0.79 → 1.0.81
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/index.es.js +206 -62
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +206 -63
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +30 -11
- package/package.json +1 -1
- package/types/control/checkbox/Checkbox.vue.d.ts +448 -0
- package/types/control/checkbox/index.d.ts +448 -0
- package/types/control/checkbox/props.d.ts +232 -0
- package/types/control/index.d.ts +1 -0
- package/types/control/input/Input.vue.d.ts +3 -0
- package/types/control/input/index.d.ts +4 -1
- package/types/control/input/props.d.ts +1 -0
- package/types/control/select/Select.vue.d.ts +57 -51
- package/types/control/select/index.d.ts +6 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const EcanInput: import(
|
|
1
|
+
export declare const EcanInput: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
2
|
value: {
|
|
3
3
|
type?: undefined;
|
|
4
4
|
default?: undefined;
|
|
@@ -217,6 +217,9 @@ export declare const EcanInput: import("../../_utils/withInstall").SFCWithInstal
|
|
|
217
217
|
};
|
|
218
218
|
}, {
|
|
219
219
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
220
|
+
myValue: import("vue").Ref<string>;
|
|
221
|
+
inputBlur: () => void;
|
|
222
|
+
inputChange: import("lodash").DebouncedFunc<() => void>;
|
|
220
223
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
221
224
|
value: {
|
|
222
225
|
type?: undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SelectOptions } from './props';
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
3
|
data: {
|
|
3
4
|
type?: undefined;
|
|
@@ -6,7 +7,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6
7
|
type: any;
|
|
7
8
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
8
9
|
[key: string]: any;
|
|
9
|
-
} | import("../../_utils/props").RequestParams |
|
|
10
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
10
11
|
label: string;
|
|
11
12
|
value: string;
|
|
12
13
|
};
|
|
@@ -18,7 +19,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
19
|
type: any;
|
|
19
20
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
20
21
|
[key: string]: any;
|
|
21
|
-
} | import("../../_utils/props").RequestParams |
|
|
22
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
22
23
|
label: string;
|
|
23
24
|
value: string;
|
|
24
25
|
};
|
|
@@ -30,7 +31,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
31
|
type: any;
|
|
31
32
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
32
33
|
[key: string]: any;
|
|
33
|
-
} | import("../../_utils/props").RequestParams |
|
|
34
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
34
35
|
label: string;
|
|
35
36
|
value: string;
|
|
36
37
|
};
|
|
@@ -42,7 +43,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
42
43
|
type: any;
|
|
43
44
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
44
45
|
[key: string]: any;
|
|
45
|
-
} | import("../../_utils/props").RequestParams |
|
|
46
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
46
47
|
label: string;
|
|
47
48
|
value: string;
|
|
48
49
|
};
|
|
@@ -54,7 +55,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
55
|
type: any;
|
|
55
56
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
56
57
|
[key: string]: any;
|
|
57
|
-
} | import("../../_utils/props").RequestParams |
|
|
58
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
58
59
|
label: string;
|
|
59
60
|
value: string;
|
|
60
61
|
};
|
|
@@ -66,7 +67,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
66
67
|
type: any;
|
|
67
68
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
68
69
|
[key: string]: any;
|
|
69
|
-
} | import("../../_utils/props").RequestParams |
|
|
70
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
70
71
|
label: string;
|
|
71
72
|
value: string;
|
|
72
73
|
};
|
|
@@ -78,7 +79,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
78
79
|
type: any;
|
|
79
80
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
80
81
|
[key: string]: any;
|
|
81
|
-
} | import("../../_utils/props").RequestParams |
|
|
82
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
82
83
|
label: string;
|
|
83
84
|
value: string;
|
|
84
85
|
};
|
|
@@ -90,7 +91,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
90
91
|
type: any;
|
|
91
92
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
92
93
|
[key: string]: any;
|
|
93
|
-
} | import("../../_utils/props").RequestParams |
|
|
94
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
94
95
|
label: string;
|
|
95
96
|
value: string;
|
|
96
97
|
};
|
|
@@ -102,7 +103,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
102
103
|
type: any;
|
|
103
104
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
104
105
|
[key: string]: any;
|
|
105
|
-
} | import("../../_utils/props").RequestParams |
|
|
106
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
106
107
|
label: string;
|
|
107
108
|
value: string;
|
|
108
109
|
};
|
|
@@ -114,7 +115,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
114
115
|
type: any;
|
|
115
116
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
116
117
|
[key: string]: any;
|
|
117
|
-
} | import("../../_utils/props").RequestParams |
|
|
118
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
118
119
|
label: string;
|
|
119
120
|
value: string;
|
|
120
121
|
};
|
|
@@ -126,7 +127,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
126
127
|
type: any;
|
|
127
128
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
128
129
|
[key: string]: any;
|
|
129
|
-
} | import("../../_utils/props").RequestParams |
|
|
130
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
130
131
|
label: string;
|
|
131
132
|
value: string;
|
|
132
133
|
};
|
|
@@ -138,7 +139,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
138
139
|
type: any;
|
|
139
140
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
140
141
|
[key: string]: any;
|
|
141
|
-
} | import("../../_utils/props").RequestParams |
|
|
142
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
142
143
|
label: string;
|
|
143
144
|
value: string;
|
|
144
145
|
};
|
|
@@ -150,7 +151,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
150
151
|
type: any;
|
|
151
152
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
152
153
|
[key: string]: any;
|
|
153
|
-
} | import("../../_utils/props").RequestParams |
|
|
154
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
154
155
|
label: string;
|
|
155
156
|
value: string;
|
|
156
157
|
};
|
|
@@ -162,7 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
162
163
|
type: any;
|
|
163
164
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
164
165
|
[key: string]: any;
|
|
165
|
-
} | import("../../_utils/props").RequestParams |
|
|
166
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
166
167
|
label: string;
|
|
167
168
|
value: string;
|
|
168
169
|
};
|
|
@@ -174,7 +175,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
174
175
|
type: any;
|
|
175
176
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
176
177
|
[key: string]: any;
|
|
177
|
-
} | import("../../_utils/props").RequestParams |
|
|
178
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
178
179
|
label: string;
|
|
179
180
|
value: string;
|
|
180
181
|
};
|
|
@@ -186,7 +187,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
186
187
|
type: any;
|
|
187
188
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
188
189
|
[key: string]: any;
|
|
189
|
-
} | import("../../_utils/props").RequestParams |
|
|
190
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
190
191
|
label: string;
|
|
191
192
|
value: string;
|
|
192
193
|
};
|
|
@@ -198,7 +199,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
198
199
|
type: any;
|
|
199
200
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
200
201
|
[key: string]: any;
|
|
201
|
-
} | import("../../_utils/props").RequestParams |
|
|
202
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
202
203
|
label: string;
|
|
203
204
|
value: string;
|
|
204
205
|
};
|
|
@@ -210,7 +211,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
210
211
|
type: any;
|
|
211
212
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
212
213
|
[key: string]: any;
|
|
213
|
-
} | import("../../_utils/props").RequestParams |
|
|
214
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
214
215
|
label: string;
|
|
215
216
|
value: string;
|
|
216
217
|
};
|
|
@@ -222,7 +223,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
222
223
|
type: any;
|
|
223
224
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
224
225
|
[key: string]: any;
|
|
225
|
-
} | import("../../_utils/props").RequestParams |
|
|
226
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
226
227
|
label: string;
|
|
227
228
|
value: string;
|
|
228
229
|
};
|
|
@@ -234,7 +235,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
234
235
|
type: any;
|
|
235
236
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
236
237
|
[key: string]: any;
|
|
237
|
-
} | import("../../_utils/props").RequestParams |
|
|
238
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
238
239
|
label: string;
|
|
239
240
|
value: string;
|
|
240
241
|
};
|
|
@@ -246,7 +247,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
246
247
|
type: any;
|
|
247
248
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
248
249
|
[key: string]: any;
|
|
249
|
-
} | import("../../_utils/props").RequestParams |
|
|
250
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
250
251
|
label: string;
|
|
251
252
|
value: string;
|
|
252
253
|
};
|
|
@@ -258,7 +259,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
258
259
|
type: any;
|
|
259
260
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
260
261
|
[key: string]: any;
|
|
261
|
-
} | import("../../_utils/props").RequestParams |
|
|
262
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
262
263
|
label: string;
|
|
263
264
|
value: string;
|
|
264
265
|
};
|
|
@@ -270,7 +271,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
270
271
|
type: any;
|
|
271
272
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
272
273
|
[key: string]: any;
|
|
273
|
-
} | import("../../_utils/props").RequestParams |
|
|
274
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
274
275
|
label: string;
|
|
275
276
|
value: string;
|
|
276
277
|
};
|
|
@@ -282,7 +283,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
282
283
|
type: any;
|
|
283
284
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
284
285
|
[key: string]: any;
|
|
285
|
-
} | import("../../_utils/props").RequestParams |
|
|
286
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
286
287
|
label: string;
|
|
287
288
|
value: string;
|
|
288
289
|
};
|
|
@@ -294,7 +295,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
294
295
|
type: any;
|
|
295
296
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
296
297
|
[key: string]: any;
|
|
297
|
-
} | import("../../_utils/props").RequestParams |
|
|
298
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
298
299
|
label: string;
|
|
299
300
|
value: string;
|
|
300
301
|
};
|
|
@@ -305,8 +306,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
305
306
|
myValue: any;
|
|
306
307
|
selectChange: () => void;
|
|
307
308
|
options: import("vue").Ref<{
|
|
308
|
-
|
|
309
|
+
value: any;
|
|
310
|
+
label: string;
|
|
311
|
+
disabled?: boolean;
|
|
312
|
+
key?: string;
|
|
313
|
+
title?: string;
|
|
309
314
|
}[]>;
|
|
315
|
+
filterOption: (input: string, option: any) => boolean;
|
|
310
316
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
311
317
|
data: {
|
|
312
318
|
type?: undefined;
|
|
@@ -315,7 +321,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
315
321
|
type: any;
|
|
316
322
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
317
323
|
[key: string]: any;
|
|
318
|
-
} | import("../../_utils/props").RequestParams |
|
|
324
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
319
325
|
label: string;
|
|
320
326
|
value: string;
|
|
321
327
|
};
|
|
@@ -327,7 +333,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
327
333
|
type: any;
|
|
328
334
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
329
335
|
[key: string]: any;
|
|
330
|
-
} | import("../../_utils/props").RequestParams |
|
|
336
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
331
337
|
label: string;
|
|
332
338
|
value: string;
|
|
333
339
|
};
|
|
@@ -339,7 +345,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
339
345
|
type: any;
|
|
340
346
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
341
347
|
[key: string]: any;
|
|
342
|
-
} | import("../../_utils/props").RequestParams |
|
|
348
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
343
349
|
label: string;
|
|
344
350
|
value: string;
|
|
345
351
|
};
|
|
@@ -351,7 +357,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
351
357
|
type: any;
|
|
352
358
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
353
359
|
[key: string]: any;
|
|
354
|
-
} | import("../../_utils/props").RequestParams |
|
|
360
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
355
361
|
label: string;
|
|
356
362
|
value: string;
|
|
357
363
|
};
|
|
@@ -363,7 +369,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
363
369
|
type: any;
|
|
364
370
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
365
371
|
[key: string]: any;
|
|
366
|
-
} | import("../../_utils/props").RequestParams |
|
|
372
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
367
373
|
label: string;
|
|
368
374
|
value: string;
|
|
369
375
|
};
|
|
@@ -375,7 +381,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
375
381
|
type: any;
|
|
376
382
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
377
383
|
[key: string]: any;
|
|
378
|
-
} | import("../../_utils/props").RequestParams |
|
|
384
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
379
385
|
label: string;
|
|
380
386
|
value: string;
|
|
381
387
|
};
|
|
@@ -387,7 +393,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
387
393
|
type: any;
|
|
388
394
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
389
395
|
[key: string]: any;
|
|
390
|
-
} | import("../../_utils/props").RequestParams |
|
|
396
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
391
397
|
label: string;
|
|
392
398
|
value: string;
|
|
393
399
|
};
|
|
@@ -399,7 +405,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
399
405
|
type: any;
|
|
400
406
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
401
407
|
[key: string]: any;
|
|
402
|
-
} | import("../../_utils/props").RequestParams |
|
|
408
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
403
409
|
label: string;
|
|
404
410
|
value: string;
|
|
405
411
|
};
|
|
@@ -411,7 +417,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
411
417
|
type: any;
|
|
412
418
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
413
419
|
[key: string]: any;
|
|
414
|
-
} | import("../../_utils/props").RequestParams |
|
|
420
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
415
421
|
label: string;
|
|
416
422
|
value: string;
|
|
417
423
|
};
|
|
@@ -423,7 +429,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
423
429
|
type: any;
|
|
424
430
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
425
431
|
[key: string]: any;
|
|
426
|
-
} | import("../../_utils/props").RequestParams |
|
|
432
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
427
433
|
label: string;
|
|
428
434
|
value: string;
|
|
429
435
|
};
|
|
@@ -435,7 +441,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
435
441
|
type: any;
|
|
436
442
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
437
443
|
[key: string]: any;
|
|
438
|
-
} | import("../../_utils/props").RequestParams |
|
|
444
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
439
445
|
label: string;
|
|
440
446
|
value: string;
|
|
441
447
|
};
|
|
@@ -447,7 +453,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
447
453
|
type: any;
|
|
448
454
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
449
455
|
[key: string]: any;
|
|
450
|
-
} | import("../../_utils/props").RequestParams |
|
|
456
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
451
457
|
label: string;
|
|
452
458
|
value: string;
|
|
453
459
|
};
|
|
@@ -459,7 +465,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
459
465
|
type: any;
|
|
460
466
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
461
467
|
[key: string]: any;
|
|
462
|
-
} | import("../../_utils/props").RequestParams |
|
|
468
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
463
469
|
label: string;
|
|
464
470
|
value: string;
|
|
465
471
|
};
|
|
@@ -471,7 +477,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
471
477
|
type: any;
|
|
472
478
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
473
479
|
[key: string]: any;
|
|
474
|
-
} | import("../../_utils/props").RequestParams |
|
|
480
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
475
481
|
label: string;
|
|
476
482
|
value: string;
|
|
477
483
|
};
|
|
@@ -483,7 +489,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
483
489
|
type: any;
|
|
484
490
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
485
491
|
[key: string]: any;
|
|
486
|
-
} | import("../../_utils/props").RequestParams |
|
|
492
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
487
493
|
label: string;
|
|
488
494
|
value: string;
|
|
489
495
|
};
|
|
@@ -495,7 +501,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
495
501
|
type: any;
|
|
496
502
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
497
503
|
[key: string]: any;
|
|
498
|
-
} | import("../../_utils/props").RequestParams |
|
|
504
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
499
505
|
label: string;
|
|
500
506
|
value: string;
|
|
501
507
|
};
|
|
@@ -507,7 +513,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
507
513
|
type: any;
|
|
508
514
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
509
515
|
[key: string]: any;
|
|
510
|
-
} | import("../../_utils/props").RequestParams |
|
|
516
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
511
517
|
label: string;
|
|
512
518
|
value: string;
|
|
513
519
|
};
|
|
@@ -519,7 +525,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
519
525
|
type: any;
|
|
520
526
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
521
527
|
[key: string]: any;
|
|
522
|
-
} | import("../../_utils/props").RequestParams |
|
|
528
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
523
529
|
label: string;
|
|
524
530
|
value: string;
|
|
525
531
|
};
|
|
@@ -531,7 +537,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
531
537
|
type: any;
|
|
532
538
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
533
539
|
[key: string]: any;
|
|
534
|
-
} | import("../../_utils/props").RequestParams |
|
|
540
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
535
541
|
label: string;
|
|
536
542
|
value: string;
|
|
537
543
|
};
|
|
@@ -543,7 +549,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
543
549
|
type: any;
|
|
544
550
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
545
551
|
[key: string]: any;
|
|
546
|
-
} | import("../../_utils/props").RequestParams |
|
|
552
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
547
553
|
label: string;
|
|
548
554
|
value: string;
|
|
549
555
|
};
|
|
@@ -555,7 +561,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
555
561
|
type: any;
|
|
556
562
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
557
563
|
[key: string]: any;
|
|
558
|
-
} | import("../../_utils/props").RequestParams |
|
|
564
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
559
565
|
label: string;
|
|
560
566
|
value: string;
|
|
561
567
|
};
|
|
@@ -567,7 +573,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
567
573
|
type: any;
|
|
568
574
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
569
575
|
[key: string]: any;
|
|
570
|
-
} | import("../../_utils/props").RequestParams |
|
|
576
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
571
577
|
label: string;
|
|
572
578
|
value: string;
|
|
573
579
|
};
|
|
@@ -579,7 +585,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
579
585
|
type: any;
|
|
580
586
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
581
587
|
[key: string]: any;
|
|
582
|
-
} | import("../../_utils/props").RequestParams |
|
|
588
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
583
589
|
label: string;
|
|
584
590
|
value: string;
|
|
585
591
|
};
|
|
@@ -591,7 +597,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
591
597
|
type: any;
|
|
592
598
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
593
599
|
[key: string]: any;
|
|
594
|
-
} | import("../../_utils/props").RequestParams |
|
|
600
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
595
601
|
label: string;
|
|
596
602
|
value: string;
|
|
597
603
|
};
|
|
@@ -603,7 +609,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
603
609
|
type: any;
|
|
604
610
|
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
605
611
|
[key: string]: any;
|
|
606
|
-
} | import("../../_utils/props").RequestParams |
|
|
612
|
+
} | import("../../_utils/props").RequestParams | SelectOptions | {
|
|
607
613
|
label: string;
|
|
608
614
|
value: string;
|
|
609
615
|
};
|
|
@@ -305,8 +305,13 @@ export declare const EcanSelect: import("../../_utils/withInstall").SFCWithInsta
|
|
|
305
305
|
myValue: any;
|
|
306
306
|
selectChange: () => void;
|
|
307
307
|
options: import("vue").Ref<{
|
|
308
|
-
|
|
308
|
+
value: any;
|
|
309
|
+
label: string;
|
|
310
|
+
disabled?: boolean;
|
|
311
|
+
key?: string;
|
|
312
|
+
title?: string;
|
|
309
313
|
}[]>;
|
|
314
|
+
filterOption: (input: string, option: any) => boolean;
|
|
310
315
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
311
316
|
data: {
|
|
312
317
|
type?: undefined;
|