@bscjc/webui 1.4.1 → 1.5.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.
Files changed (46) hide show
  1. package/dist/components/JcCascader/index.d.ts +25 -187
  2. package/dist/components/JcCascader/index.vue.d.ts +37 -100
  3. package/dist/components/JcColumnConfig/index.d.ts +7 -106
  4. package/dist/components/JcColumnConfig/index.vue.d.ts +23 -71
  5. package/dist/components/JcDatePicker/index.d.ts +24 -105
  6. package/dist/components/JcDatePicker/index.vue.d.ts +26 -58
  7. package/dist/components/JcImportButton/index.d.ts +14 -41
  8. package/dist/components/JcImportButton/index.vue.d.ts +19 -26
  9. package/dist/components/JcImportDialog/index.d.ts +14 -74
  10. package/dist/components/JcImportDialog/index.vue.d.ts +25 -48
  11. package/dist/components/JcInputComplex/index.d.ts +48 -90
  12. package/dist/components/JcInputComplex/index.vue.d.ts +32 -48
  13. package/dist/components/JcInputSwitch/index.d.ts +42 -90
  14. package/dist/components/JcInputSwitch/index.vue.d.ts +30 -48
  15. package/dist/components/JcMoreQueryContain/index.d.ts +14 -197
  16. package/dist/components/JcMoreQueryContain/index.vue.d.ts +23 -88
  17. package/dist/components/JcSelectQuery/index.d.ts +19 -178
  18. package/dist/components/JcSelectQuery/index.vue.d.ts +37 -106
  19. package/dist/components/JcTagQuery/index.d.ts +4 -19
  20. package/dist/components/JcTagQuery/index.vue.d.ts +7 -12
  21. package/dist/es/index.mjs +2102 -2172
  22. package/dist/index.css +2 -2
  23. package/dist/index.d.ts +7 -1
  24. package/dist/lib/index.cjs +8 -8
  25. package/dist/types/components/JcCascader/index.d.ts +25 -187
  26. package/dist/types/components/JcCascader/index.vue.d.ts +37 -100
  27. package/dist/types/components/JcColumnConfig/index.d.ts +7 -106
  28. package/dist/types/components/JcColumnConfig/index.vue.d.ts +23 -71
  29. package/dist/types/components/JcDatePicker/index.d.ts +24 -105
  30. package/dist/types/components/JcDatePicker/index.vue.d.ts +26 -58
  31. package/dist/types/components/JcImportButton/index.d.ts +14 -41
  32. package/dist/types/components/JcImportButton/index.vue.d.ts +19 -26
  33. package/dist/types/components/JcImportDialog/index.d.ts +14 -74
  34. package/dist/types/components/JcImportDialog/index.vue.d.ts +25 -48
  35. package/dist/types/components/JcInputComplex/index.d.ts +51 -93
  36. package/dist/types/components/JcInputComplex/index.vue.d.ts +126 -141
  37. package/dist/types/components/JcInputSwitch/index.d.ts +45 -93
  38. package/dist/types/components/JcInputSwitch/index.vue.d.ts +74 -91
  39. package/dist/types/components/JcMoreQueryContain/index.d.ts +14 -197
  40. package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +108 -172
  41. package/dist/types/components/JcSelectQuery/index.d.ts +19 -178
  42. package/dist/types/components/JcSelectQuery/index.vue.d.ts +137 -206
  43. package/dist/types/components/JcTagQuery/index.d.ts +4 -19
  44. package/dist/types/components/JcTagQuery/index.vue.d.ts +7 -12
  45. package/dist/types/index.d.ts +7 -1
  46. package/package.json +2 -2
@@ -1,8 +1,34 @@
1
- import { PropType } from 'vue';
2
- type Item = {
1
+ /** 选项项类型 */
2
+ export interface SelectQueryItem {
3
3
  label: string;
4
4
  value: string;
5
- };
5
+ disabled?: boolean;
6
+ }
7
+ /** 组件 Props 类型 */
8
+ export interface Props {
9
+ /** 绑定的字段名 */
10
+ field: string;
11
+ /** 选项数据 */
12
+ options: SelectQueryItem[];
13
+ /** 是否允许创建新选项 */
14
+ allowCreate?: boolean;
15
+ /** 选项的键名配置 */
16
+ keyField?: string[];
17
+ /** 组件宽度 */
18
+ width?: string;
19
+ /** 组件尺寸 */
20
+ size?: "small" | "default" | "large";
21
+ /** 底部按钮文本 */
22
+ footerBtnName?: string;
23
+ /** 下拉框最大高度 */
24
+ maxScrollHeight?: string;
25
+ /** 是否显示底部按钮区域 */
26
+ isNeedFooter?: boolean;
27
+ /** 是否显示仅筛选 */
28
+ isNeedOnlySelect?: boolean;
29
+ /** 自定义注入键值 */
30
+ injectionKey?: string;
31
+ }
6
32
  declare function __VLS_template(): {
7
33
  attrs: Partial<{}>;
8
34
  slots: {
@@ -15,7 +41,7 @@ declare function __VLS_template(): {
15
41
  ariaLabel: StringConstructor;
16
42
  emptyValues: ArrayConstructor;
17
43
  valueOnClear: {
18
- readonly type: PropType<string | number | boolean | Function>;
44
+ readonly type: import('vue').PropType<string | number | boolean | Function>;
19
45
  readonly required: false;
20
46
  readonly validator: ((val: unknown) => boolean) | undefined;
21
47
  __epPropKey: true;
@@ -25,7 +51,7 @@ declare function __VLS_template(): {
25
51
  name: StringConstructor;
26
52
  id: StringConstructor;
27
53
  modelValue: {
28
- readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
54
+ readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
29
55
  readonly required: false;
30
56
  readonly validator: ((val: unknown) => boolean) | undefined;
31
57
  __epPropKey: true;
@@ -33,7 +59,7 @@ declare function __VLS_template(): {
33
59
  readonly default: undefined;
34
60
  };
35
61
  autocomplete: {
36
- readonly type: PropType<string>;
62
+ readonly type: import('vue').PropType<string>;
37
63
  readonly required: false;
38
64
  readonly validator: ((val: unknown) => boolean) | undefined;
39
65
  __epPropKey: true;
@@ -42,13 +68,13 @@ declare function __VLS_template(): {
42
68
  };
43
69
  automaticDropdown: BooleanConstructor;
44
70
  size: {
45
- readonly type: PropType<"" | "small" | "default" | "large">;
71
+ readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
46
72
  readonly required: false;
47
73
  readonly validator: ((val: unknown) => boolean) | undefined;
48
74
  __epPropKey: true;
49
75
  };
50
76
  effect: {
51
- readonly type: PropType<import('element-plus').PopperEffect>;
77
+ readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
52
78
  readonly required: false;
53
79
  readonly validator: ((val: unknown) => boolean) | undefined;
54
80
  __epPropKey: true;
@@ -61,7 +87,7 @@ declare function __VLS_template(): {
61
87
  allowCreate: BooleanConstructor;
62
88
  loading: BooleanConstructor;
63
89
  popperClass: {
64
- readonly type: PropType<string>;
90
+ readonly type: import('vue').PropType<string>;
65
91
  readonly required: false;
66
92
  readonly validator: ((val: unknown) => boolean) | undefined;
67
93
  __epPropKey: true;
@@ -69,7 +95,7 @@ declare function __VLS_template(): {
69
95
  readonly default: string;
70
96
  };
71
97
  popperOptions: {
72
- readonly type: PropType<any>;
98
+ readonly type: import('vue').PropType<any>;
73
99
  readonly required: false;
74
100
  readonly validator: ((val: unknown) => boolean) | undefined;
75
101
  __epPropKey: true;
@@ -84,7 +110,7 @@ declare function __VLS_template(): {
84
110
  filterMethod: FunctionConstructor;
85
111
  multiple: BooleanConstructor;
86
112
  multipleLimit: {
87
- readonly type: PropType<number>;
113
+ readonly type: import('vue').PropType<number>;
88
114
  readonly required: false;
89
115
  readonly validator: ((val: unknown) => boolean) | undefined;
90
116
  __epPropKey: true;
@@ -92,14 +118,14 @@ declare function __VLS_template(): {
92
118
  readonly default: number;
93
119
  };
94
120
  placeholder: {
95
- readonly type: PropType<string>;
121
+ readonly type: import('vue').PropType<string>;
96
122
  readonly required: false;
97
123
  readonly validator: ((val: unknown) => boolean) | undefined;
98
124
  __epPropKey: true;
99
125
  };
100
126
  defaultFirstOption: BooleanConstructor;
101
127
  reserveKeyword: {
102
- readonly type: PropType<boolean>;
128
+ readonly type: import('vue').PropType<boolean>;
103
129
  readonly required: false;
104
130
  readonly validator: ((val: unknown) => boolean) | undefined;
105
131
  __epPropKey: true;
@@ -107,7 +133,7 @@ declare function __VLS_template(): {
107
133
  readonly default: boolean;
108
134
  };
109
135
  valueKey: {
110
- readonly type: PropType<string>;
136
+ readonly type: import('vue').PropType<string>;
111
137
  readonly required: false;
112
138
  readonly validator: ((val: unknown) => boolean) | undefined;
113
139
  __epPropKey: true;
@@ -117,7 +143,7 @@ declare function __VLS_template(): {
117
143
  collapseTags: BooleanConstructor;
118
144
  collapseTagsTooltip: BooleanConstructor;
119
145
  maxCollapseTags: {
120
- readonly type: PropType<number>;
146
+ readonly type: import('vue').PropType<number>;
121
147
  readonly required: false;
122
148
  readonly validator: ((val: unknown) => boolean) | undefined;
123
149
  __epPropKey: true;
@@ -125,7 +151,7 @@ declare function __VLS_template(): {
125
151
  readonly default: number;
126
152
  };
127
153
  teleported: {
128
- readonly type: PropType<boolean>;
154
+ readonly type: import('vue').PropType<boolean>;
129
155
  readonly required: false;
130
156
  readonly validator: ((val: unknown) => boolean) | undefined;
131
157
  __epPropKey: true;
@@ -133,7 +159,7 @@ declare function __VLS_template(): {
133
159
  readonly default: true;
134
160
  };
135
161
  persistent: {
136
- readonly type: PropType<boolean>;
162
+ readonly type: import('vue').PropType<boolean>;
137
163
  readonly required: false;
138
164
  readonly validator: ((val: unknown) => boolean) | undefined;
139
165
  __epPropKey: true;
@@ -141,34 +167,34 @@ declare function __VLS_template(): {
141
167
  readonly default: boolean;
142
168
  };
143
169
  clearIcon: {
144
- readonly type: PropType<string | import('vue').Component>;
170
+ readonly type: import('vue').PropType<string | import('vue').Component>;
145
171
  readonly required: false;
146
172
  readonly validator: ((val: unknown) => boolean) | undefined;
147
173
  __epPropKey: true;
148
174
  };
149
175
  fitInputWidth: BooleanConstructor;
150
176
  suffixIcon: {
151
- readonly type: PropType<string | import('vue').Component>;
177
+ readonly type: import('vue').PropType<string | import('vue').Component>;
152
178
  readonly required: false;
153
179
  readonly validator: ((val: unknown) => boolean) | undefined;
154
180
  __epPropKey: true;
155
181
  };
156
182
  tagType: {
157
183
  default: string;
158
- type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
184
+ type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
159
185
  required: false;
160
186
  validator: ((val: unknown) => boolean) | undefined;
161
187
  __epPropKey: true;
162
188
  };
163
189
  tagEffect: {
164
190
  default: string;
165
- type: PropType<"light" | "dark" | "plain">;
191
+ type: import('vue').PropType<"light" | "dark" | "plain">;
166
192
  required: false;
167
193
  validator: ((val: unknown) => boolean) | undefined;
168
194
  __epPropKey: true;
169
195
  };
170
196
  validateEvent: {
171
- readonly type: PropType<boolean>;
197
+ readonly type: import('vue').PropType<boolean>;
172
198
  readonly required: false;
173
199
  readonly validator: ((val: unknown) => boolean) | undefined;
174
200
  __epPropKey: true;
@@ -177,7 +203,7 @@ declare function __VLS_template(): {
177
203
  };
178
204
  remoteShowSuffix: BooleanConstructor;
179
205
  showArrow: {
180
- readonly type: PropType<boolean>;
206
+ readonly type: import('vue').PropType<boolean>;
181
207
  readonly required: false;
182
208
  readonly validator: ((val: unknown) => boolean) | undefined;
183
209
  __epPropKey: true;
@@ -185,7 +211,7 @@ declare function __VLS_template(): {
185
211
  readonly default: boolean;
186
212
  };
187
213
  offset: {
188
- readonly type: PropType<number>;
214
+ readonly type: import('vue').PropType<number>;
189
215
  readonly required: false;
190
216
  readonly validator: ((val: unknown) => boolean) | undefined;
191
217
  __epPropKey: true;
@@ -193,7 +219,7 @@ declare function __VLS_template(): {
193
219
  readonly default: number;
194
220
  };
195
221
  placement: {
196
- readonly type: PropType<any>;
222
+ readonly type: import('vue').PropType<any>;
197
223
  readonly required: false;
198
224
  readonly validator: ((val: unknown) => boolean) | undefined;
199
225
  __epPropKey: true;
@@ -201,7 +227,7 @@ declare function __VLS_template(): {
201
227
  readonly default: string;
202
228
  };
203
229
  fallbackPlacements: {
204
- readonly type: PropType<Placement[]>;
230
+ readonly type: import('vue').PropType<Placement[]>;
205
231
  readonly required: false;
206
232
  readonly validator: ((val: unknown) => boolean) | undefined;
207
233
  __epPropKey: true;
@@ -209,7 +235,7 @@ declare function __VLS_template(): {
209
235
  readonly default: string[];
210
236
  };
211
237
  tabindex: {
212
- readonly type: PropType<string | number>;
238
+ readonly type: import('vue').PropType<string | number>;
213
239
  readonly required: false;
214
240
  readonly validator: ((val: unknown) => boolean) | undefined;
215
241
  __epPropKey: true;
@@ -217,7 +243,7 @@ declare function __VLS_template(): {
217
243
  readonly default: number;
218
244
  };
219
245
  appendTo: {
220
- readonly type: PropType<string | HTMLElement>;
246
+ readonly type: import('vue').PropType<string | HTMLElement>;
221
247
  readonly required: false;
222
248
  readonly validator: ((val: unknown) => boolean) | undefined;
223
249
  __epPropKey: true;
@@ -420,7 +446,7 @@ declare function __VLS_template(): {
420
446
  ariaLabel: StringConstructor;
421
447
  emptyValues: ArrayConstructor;
422
448
  valueOnClear: {
423
- readonly type: PropType<string | number | boolean | Function>;
449
+ readonly type: import('vue').PropType<string | number | boolean | Function>;
424
450
  readonly required: false;
425
451
  readonly validator: ((val: unknown) => boolean) | undefined;
426
452
  __epPropKey: true;
@@ -430,7 +456,7 @@ declare function __VLS_template(): {
430
456
  name: StringConstructor;
431
457
  id: StringConstructor;
432
458
  modelValue: {
433
- readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
459
+ readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
434
460
  readonly required: false;
435
461
  readonly validator: ((val: unknown) => boolean) | undefined;
436
462
  __epPropKey: true;
@@ -438,7 +464,7 @@ declare function __VLS_template(): {
438
464
  readonly default: undefined;
439
465
  };
440
466
  autocomplete: {
441
- readonly type: PropType<string>;
467
+ readonly type: import('vue').PropType<string>;
442
468
  readonly required: false;
443
469
  readonly validator: ((val: unknown) => boolean) | undefined;
444
470
  __epPropKey: true;
@@ -447,13 +473,13 @@ declare function __VLS_template(): {
447
473
  };
448
474
  automaticDropdown: BooleanConstructor;
449
475
  size: {
450
- readonly type: PropType<"" | "small" | "default" | "large">;
476
+ readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
451
477
  readonly required: false;
452
478
  readonly validator: ((val: unknown) => boolean) | undefined;
453
479
  __epPropKey: true;
454
480
  };
455
481
  effect: {
456
- readonly type: PropType<import('element-plus').PopperEffect>;
482
+ readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
457
483
  readonly required: false;
458
484
  readonly validator: ((val: unknown) => boolean) | undefined;
459
485
  __epPropKey: true;
@@ -466,7 +492,7 @@ declare function __VLS_template(): {
466
492
  allowCreate: BooleanConstructor;
467
493
  loading: BooleanConstructor;
468
494
  popperClass: {
469
- readonly type: PropType<string>;
495
+ readonly type: import('vue').PropType<string>;
470
496
  readonly required: false;
471
497
  readonly validator: ((val: unknown) => boolean) | undefined;
472
498
  __epPropKey: true;
@@ -474,7 +500,7 @@ declare function __VLS_template(): {
474
500
  readonly default: string;
475
501
  };
476
502
  popperOptions: {
477
- readonly type: PropType<any>;
503
+ readonly type: import('vue').PropType<any>;
478
504
  readonly required: false;
479
505
  readonly validator: ((val: unknown) => boolean) | undefined;
480
506
  __epPropKey: true;
@@ -489,7 +515,7 @@ declare function __VLS_template(): {
489
515
  filterMethod: FunctionConstructor;
490
516
  multiple: BooleanConstructor;
491
517
  multipleLimit: {
492
- readonly type: PropType<number>;
518
+ readonly type: import('vue').PropType<number>;
493
519
  readonly required: false;
494
520
  readonly validator: ((val: unknown) => boolean) | undefined;
495
521
  __epPropKey: true;
@@ -497,14 +523,14 @@ declare function __VLS_template(): {
497
523
  readonly default: number;
498
524
  };
499
525
  placeholder: {
500
- readonly type: PropType<string>;
526
+ readonly type: import('vue').PropType<string>;
501
527
  readonly required: false;
502
528
  readonly validator: ((val: unknown) => boolean) | undefined;
503
529
  __epPropKey: true;
504
530
  };
505
531
  defaultFirstOption: BooleanConstructor;
506
532
  reserveKeyword: {
507
- readonly type: PropType<boolean>;
533
+ readonly type: import('vue').PropType<boolean>;
508
534
  readonly required: false;
509
535
  readonly validator: ((val: unknown) => boolean) | undefined;
510
536
  __epPropKey: true;
@@ -512,7 +538,7 @@ declare function __VLS_template(): {
512
538
  readonly default: boolean;
513
539
  };
514
540
  valueKey: {
515
- readonly type: PropType<string>;
541
+ readonly type: import('vue').PropType<string>;
516
542
  readonly required: false;
517
543
  readonly validator: ((val: unknown) => boolean) | undefined;
518
544
  __epPropKey: true;
@@ -522,7 +548,7 @@ declare function __VLS_template(): {
522
548
  collapseTags: BooleanConstructor;
523
549
  collapseTagsTooltip: BooleanConstructor;
524
550
  maxCollapseTags: {
525
- readonly type: PropType<number>;
551
+ readonly type: import('vue').PropType<number>;
526
552
  readonly required: false;
527
553
  readonly validator: ((val: unknown) => boolean) | undefined;
528
554
  __epPropKey: true;
@@ -530,7 +556,7 @@ declare function __VLS_template(): {
530
556
  readonly default: number;
531
557
  };
532
558
  teleported: {
533
- readonly type: PropType<boolean>;
559
+ readonly type: import('vue').PropType<boolean>;
534
560
  readonly required: false;
535
561
  readonly validator: ((val: unknown) => boolean) | undefined;
536
562
  __epPropKey: true;
@@ -538,7 +564,7 @@ declare function __VLS_template(): {
538
564
  readonly default: true;
539
565
  };
540
566
  persistent: {
541
- readonly type: PropType<boolean>;
567
+ readonly type: import('vue').PropType<boolean>;
542
568
  readonly required: false;
543
569
  readonly validator: ((val: unknown) => boolean) | undefined;
544
570
  __epPropKey: true;
@@ -546,34 +572,34 @@ declare function __VLS_template(): {
546
572
  readonly default: boolean;
547
573
  };
548
574
  clearIcon: {
549
- readonly type: PropType<string | import('vue').Component>;
575
+ readonly type: import('vue').PropType<string | import('vue').Component>;
550
576
  readonly required: false;
551
577
  readonly validator: ((val: unknown) => boolean) | undefined;
552
578
  __epPropKey: true;
553
579
  };
554
580
  fitInputWidth: BooleanConstructor;
555
581
  suffixIcon: {
556
- readonly type: PropType<string | import('vue').Component>;
582
+ readonly type: import('vue').PropType<string | import('vue').Component>;
557
583
  readonly required: false;
558
584
  readonly validator: ((val: unknown) => boolean) | undefined;
559
585
  __epPropKey: true;
560
586
  };
561
587
  tagType: {
562
588
  default: string;
563
- type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
589
+ type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
564
590
  required: false;
565
591
  validator: ((val: unknown) => boolean) | undefined;
566
592
  __epPropKey: true;
567
593
  };
568
594
  tagEffect: {
569
595
  default: string;
570
- type: PropType<"light" | "dark" | "plain">;
596
+ type: import('vue').PropType<"light" | "dark" | "plain">;
571
597
  required: false;
572
598
  validator: ((val: unknown) => boolean) | undefined;
573
599
  __epPropKey: true;
574
600
  };
575
601
  validateEvent: {
576
- readonly type: PropType<boolean>;
602
+ readonly type: import('vue').PropType<boolean>;
577
603
  readonly required: false;
578
604
  readonly validator: ((val: unknown) => boolean) | undefined;
579
605
  __epPropKey: true;
@@ -582,7 +608,7 @@ declare function __VLS_template(): {
582
608
  };
583
609
  remoteShowSuffix: BooleanConstructor;
584
610
  showArrow: {
585
- readonly type: PropType<boolean>;
611
+ readonly type: import('vue').PropType<boolean>;
586
612
  readonly required: false;
587
613
  readonly validator: ((val: unknown) => boolean) | undefined;
588
614
  __epPropKey: true;
@@ -590,7 +616,7 @@ declare function __VLS_template(): {
590
616
  readonly default: boolean;
591
617
  };
592
618
  offset: {
593
- readonly type: PropType<number>;
619
+ readonly type: import('vue').PropType<number>;
594
620
  readonly required: false;
595
621
  readonly validator: ((val: unknown) => boolean) | undefined;
596
622
  __epPropKey: true;
@@ -598,7 +624,7 @@ declare function __VLS_template(): {
598
624
  readonly default: number;
599
625
  };
600
626
  placement: {
601
- readonly type: PropType<any>;
627
+ readonly type: import('vue').PropType<any>;
602
628
  readonly required: false;
603
629
  readonly validator: ((val: unknown) => boolean) | undefined;
604
630
  __epPropKey: true;
@@ -606,7 +632,7 @@ declare function __VLS_template(): {
606
632
  readonly default: string;
607
633
  };
608
634
  fallbackPlacements: {
609
- readonly type: PropType<Placement[]>;
635
+ readonly type: import('vue').PropType<Placement[]>;
610
636
  readonly required: false;
611
637
  readonly validator: ((val: unknown) => boolean) | undefined;
612
638
  __epPropKey: true;
@@ -614,7 +640,7 @@ declare function __VLS_template(): {
614
640
  readonly default: string[];
615
641
  };
616
642
  tabindex: {
617
- readonly type: PropType<string | number>;
643
+ readonly type: import('vue').PropType<string | number>;
618
644
  readonly required: false;
619
645
  readonly validator: ((val: unknown) => boolean) | undefined;
620
646
  __epPropKey: true;
@@ -622,7 +648,7 @@ declare function __VLS_template(): {
622
648
  readonly default: number;
623
649
  };
624
650
  appendTo: {
625
- readonly type: PropType<string | HTMLElement>;
651
+ readonly type: import('vue').PropType<string | HTMLElement>;
626
652
  readonly required: false;
627
653
  readonly validator: ((val: unknown) => boolean) | undefined;
628
654
  __epPropKey: true;
@@ -820,122 +846,27 @@ declare function __VLS_template(): {
820
846
  rootEl: any;
821
847
  };
822
848
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
823
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
824
- field: {
825
- type: StringConstructor;
826
- required: true;
827
- default: string;
828
- };
829
- options: {
830
- type: PropType<Array<Item>> | never[];
831
- default: () => never[];
832
- required: true;
833
- };
834
- allowCreate: {
835
- type: BooleanConstructor;
836
- default: boolean;
837
- };
838
- keyField: {
839
- type: any;
840
- default: () => string[];
841
- };
842
- width: {
843
- type: StringConstructor;
844
- default: string;
845
- };
846
- size: {
847
- type: PropType<"small" | "default" | "large">;
848
- default: string;
849
- validator: (value: string) => boolean;
850
- };
851
- footerBtnName: {
852
- type: StringConstructor;
853
- default: string;
854
- };
855
- maxScrollHeight: {
856
- type: StringConstructor;
857
- default: string;
858
- };
859
- isNeedFooter: {
860
- type: BooleanConstructor;
861
- default: boolean;
862
- };
863
- isNeedOnlySelect: {
864
- type: BooleanConstructor;
865
- default: boolean;
866
- };
867
- injectionKey: {
868
- type: StringConstructor;
869
- default: string;
870
- };
871
- }>, {
872
- [x: string]: string | Function | string[];
873
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
874
- field: {
875
- type: StringConstructor;
876
- required: true;
877
- default: string;
878
- };
879
- options: {
880
- type: PropType<Array<Item>> | never[];
881
- default: () => never[];
882
- required: true;
883
- };
884
- allowCreate: {
885
- type: BooleanConstructor;
886
- default: boolean;
887
- };
888
- keyField: {
889
- type: any;
890
- default: () => string[];
891
- };
892
- width: {
893
- type: StringConstructor;
894
- default: string;
895
- };
896
- size: {
897
- type: PropType<"small" | "default" | "large">;
898
- default: string;
899
- validator: (value: string) => boolean;
900
- };
901
- footerBtnName: {
902
- type: StringConstructor;
903
- default: string;
904
- };
905
- maxScrollHeight: {
906
- type: StringConstructor;
907
- default: string;
908
- };
909
- isNeedFooter: {
910
- type: BooleanConstructor;
911
- default: boolean;
912
- };
913
- isNeedOnlySelect: {
914
- type: BooleanConstructor;
915
- default: boolean;
916
- };
917
- injectionKey: {
918
- type: StringConstructor;
919
- default: string;
920
- };
921
- }>> & Readonly<{}>, {
849
+ declare const __VLS_component: import('vue').DefineComponent<Props, {
850
+ focus: () => void | undefined;
851
+ blur: () => void | undefined;
852
+ selectedLabel: string | string[] | undefined;
853
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
922
854
  size: "small" | "default" | "large";
923
855
  injectionKey: string;
924
- field: string;
925
- options: Item[];
856
+ options: SelectQueryItem[];
926
857
  allowCreate: boolean;
927
- keyField: any;
858
+ keyField: string[];
928
859
  width: string;
929
860
  footerBtnName: string;
930
861
  maxScrollHeight: string;
931
862
  isNeedFooter: boolean;
932
863
  isNeedOnlySelect: boolean;
933
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
864
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
934
865
  selectRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
935
866
  ariaLabel: StringConstructor;
936
867
  emptyValues: ArrayConstructor;
937
868
  valueOnClear: {
938
- readonly type: PropType<string | number | boolean | Function>;
869
+ readonly type: import('vue').PropType<string | number | boolean | Function>;
939
870
  readonly required: false;
940
871
  readonly validator: ((val: unknown) => boolean) | undefined;
941
872
  __epPropKey: true;
@@ -945,7 +876,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
945
876
  name: StringConstructor;
946
877
  id: StringConstructor;
947
878
  modelValue: {
948
- readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
879
+ readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
949
880
  readonly required: false;
950
881
  readonly validator: ((val: unknown) => boolean) | undefined;
951
882
  __epPropKey: true;
@@ -953,7 +884,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
953
884
  readonly default: undefined;
954
885
  };
955
886
  autocomplete: {
956
- readonly type: PropType<string>;
887
+ readonly type: import('vue').PropType<string>;
957
888
  readonly required: false;
958
889
  readonly validator: ((val: unknown) => boolean) | undefined;
959
890
  __epPropKey: true;
@@ -962,13 +893,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
962
893
  };
963
894
  automaticDropdown: BooleanConstructor;
964
895
  size: {
965
- readonly type: PropType<"" | "small" | "default" | "large">;
896
+ readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
966
897
  readonly required: false;
967
898
  readonly validator: ((val: unknown) => boolean) | undefined;
968
899
  __epPropKey: true;
969
900
  };
970
901
  effect: {
971
- readonly type: PropType<import('element-plus').PopperEffect>;
902
+ readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
972
903
  readonly required: false;
973
904
  readonly validator: ((val: unknown) => boolean) | undefined;
974
905
  __epPropKey: true;
@@ -981,7 +912,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
981
912
  allowCreate: BooleanConstructor;
982
913
  loading: BooleanConstructor;
983
914
  popperClass: {
984
- readonly type: PropType<string>;
915
+ readonly type: import('vue').PropType<string>;
985
916
  readonly required: false;
986
917
  readonly validator: ((val: unknown) => boolean) | undefined;
987
918
  __epPropKey: true;
@@ -989,7 +920,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
989
920
  readonly default: string;
990
921
  };
991
922
  popperOptions: {
992
- readonly type: PropType<any>;
923
+ readonly type: import('vue').PropType<any>;
993
924
  readonly required: false;
994
925
  readonly validator: ((val: unknown) => boolean) | undefined;
995
926
  __epPropKey: true;
@@ -1004,7 +935,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1004
935
  filterMethod: FunctionConstructor;
1005
936
  multiple: BooleanConstructor;
1006
937
  multipleLimit: {
1007
- readonly type: PropType<number>;
938
+ readonly type: import('vue').PropType<number>;
1008
939
  readonly required: false;
1009
940
  readonly validator: ((val: unknown) => boolean) | undefined;
1010
941
  __epPropKey: true;
@@ -1012,14 +943,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1012
943
  readonly default: number;
1013
944
  };
1014
945
  placeholder: {
1015
- readonly type: PropType<string>;
946
+ readonly type: import('vue').PropType<string>;
1016
947
  readonly required: false;
1017
948
  readonly validator: ((val: unknown) => boolean) | undefined;
1018
949
  __epPropKey: true;
1019
950
  };
1020
951
  defaultFirstOption: BooleanConstructor;
1021
952
  reserveKeyword: {
1022
- readonly type: PropType<boolean>;
953
+ readonly type: import('vue').PropType<boolean>;
1023
954
  readonly required: false;
1024
955
  readonly validator: ((val: unknown) => boolean) | undefined;
1025
956
  __epPropKey: true;
@@ -1027,7 +958,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1027
958
  readonly default: boolean;
1028
959
  };
1029
960
  valueKey: {
1030
- readonly type: PropType<string>;
961
+ readonly type: import('vue').PropType<string>;
1031
962
  readonly required: false;
1032
963
  readonly validator: ((val: unknown) => boolean) | undefined;
1033
964
  __epPropKey: true;
@@ -1037,7 +968,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1037
968
  collapseTags: BooleanConstructor;
1038
969
  collapseTagsTooltip: BooleanConstructor;
1039
970
  maxCollapseTags: {
1040
- readonly type: PropType<number>;
971
+ readonly type: import('vue').PropType<number>;
1041
972
  readonly required: false;
1042
973
  readonly validator: ((val: unknown) => boolean) | undefined;
1043
974
  __epPropKey: true;
@@ -1045,7 +976,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1045
976
  readonly default: number;
1046
977
  };
1047
978
  teleported: {
1048
- readonly type: PropType<boolean>;
979
+ readonly type: import('vue').PropType<boolean>;
1049
980
  readonly required: false;
1050
981
  readonly validator: ((val: unknown) => boolean) | undefined;
1051
982
  __epPropKey: true;
@@ -1053,7 +984,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1053
984
  readonly default: true;
1054
985
  };
1055
986
  persistent: {
1056
- readonly type: PropType<boolean>;
987
+ readonly type: import('vue').PropType<boolean>;
1057
988
  readonly required: false;
1058
989
  readonly validator: ((val: unknown) => boolean) | undefined;
1059
990
  __epPropKey: true;
@@ -1061,34 +992,34 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1061
992
  readonly default: boolean;
1062
993
  };
1063
994
  clearIcon: {
1064
- readonly type: PropType<string | import('vue').Component>;
995
+ readonly type: import('vue').PropType<string | import('vue').Component>;
1065
996
  readonly required: false;
1066
997
  readonly validator: ((val: unknown) => boolean) | undefined;
1067
998
  __epPropKey: true;
1068
999
  };
1069
1000
  fitInputWidth: BooleanConstructor;
1070
1001
  suffixIcon: {
1071
- readonly type: PropType<string | import('vue').Component>;
1002
+ readonly type: import('vue').PropType<string | import('vue').Component>;
1072
1003
  readonly required: false;
1073
1004
  readonly validator: ((val: unknown) => boolean) | undefined;
1074
1005
  __epPropKey: true;
1075
1006
  };
1076
1007
  tagType: {
1077
1008
  default: string;
1078
- type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
1009
+ type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
1079
1010
  required: false;
1080
1011
  validator: ((val: unknown) => boolean) | undefined;
1081
1012
  __epPropKey: true;
1082
1013
  };
1083
1014
  tagEffect: {
1084
1015
  default: string;
1085
- type: PropType<"light" | "dark" | "plain">;
1016
+ type: import('vue').PropType<"light" | "dark" | "plain">;
1086
1017
  required: false;
1087
1018
  validator: ((val: unknown) => boolean) | undefined;
1088
1019
  __epPropKey: true;
1089
1020
  };
1090
1021
  validateEvent: {
1091
- readonly type: PropType<boolean>;
1022
+ readonly type: import('vue').PropType<boolean>;
1092
1023
  readonly required: false;
1093
1024
  readonly validator: ((val: unknown) => boolean) | undefined;
1094
1025
  __epPropKey: true;
@@ -1097,7 +1028,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1097
1028
  };
1098
1029
  remoteShowSuffix: BooleanConstructor;
1099
1030
  showArrow: {
1100
- readonly type: PropType<boolean>;
1031
+ readonly type: import('vue').PropType<boolean>;
1101
1032
  readonly required: false;
1102
1033
  readonly validator: ((val: unknown) => boolean) | undefined;
1103
1034
  __epPropKey: true;
@@ -1105,7 +1036,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1105
1036
  readonly default: boolean;
1106
1037
  };
1107
1038
  offset: {
1108
- readonly type: PropType<number>;
1039
+ readonly type: import('vue').PropType<number>;
1109
1040
  readonly required: false;
1110
1041
  readonly validator: ((val: unknown) => boolean) | undefined;
1111
1042
  __epPropKey: true;
@@ -1113,7 +1044,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1113
1044
  readonly default: number;
1114
1045
  };
1115
1046
  placement: {
1116
- readonly type: PropType<any>;
1047
+ readonly type: import('vue').PropType<any>;
1117
1048
  readonly required: false;
1118
1049
  readonly validator: ((val: unknown) => boolean) | undefined;
1119
1050
  __epPropKey: true;
@@ -1121,7 +1052,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1121
1052
  readonly default: string;
1122
1053
  };
1123
1054
  fallbackPlacements: {
1124
- readonly type: PropType<Placement[]>;
1055
+ readonly type: import('vue').PropType<Placement[]>;
1125
1056
  readonly required: false;
1126
1057
  readonly validator: ((val: unknown) => boolean) | undefined;
1127
1058
  __epPropKey: true;
@@ -1129,7 +1060,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1129
1060
  readonly default: string[];
1130
1061
  };
1131
1062
  tabindex: {
1132
- readonly type: PropType<string | number>;
1063
+ readonly type: import('vue').PropType<string | number>;
1133
1064
  readonly required: false;
1134
1065
  readonly validator: ((val: unknown) => boolean) | undefined;
1135
1066
  __epPropKey: true;
@@ -1137,7 +1068,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1137
1068
  readonly default: number;
1138
1069
  };
1139
1070
  appendTo: {
1140
- readonly type: PropType<string | HTMLElement>;
1071
+ readonly type: import('vue').PropType<string | HTMLElement>;
1141
1072
  readonly required: false;
1142
1073
  readonly validator: ((val: unknown) => boolean) | undefined;
1143
1074
  __epPropKey: true;
@@ -1340,7 +1271,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1340
1271
  ariaLabel: StringConstructor;
1341
1272
  emptyValues: ArrayConstructor;
1342
1273
  valueOnClear: {
1343
- readonly type: PropType<string | number | boolean | Function>;
1274
+ readonly type: import('vue').PropType<string | number | boolean | Function>;
1344
1275
  readonly required: false;
1345
1276
  readonly validator: ((val: unknown) => boolean) | undefined;
1346
1277
  __epPropKey: true;
@@ -1350,7 +1281,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1350
1281
  name: StringConstructor;
1351
1282
  id: StringConstructor;
1352
1283
  modelValue: {
1353
- readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
1284
+ readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
1354
1285
  readonly required: false;
1355
1286
  readonly validator: ((val: unknown) => boolean) | undefined;
1356
1287
  __epPropKey: true;
@@ -1358,7 +1289,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1358
1289
  readonly default: undefined;
1359
1290
  };
1360
1291
  autocomplete: {
1361
- readonly type: PropType<string>;
1292
+ readonly type: import('vue').PropType<string>;
1362
1293
  readonly required: false;
1363
1294
  readonly validator: ((val: unknown) => boolean) | undefined;
1364
1295
  __epPropKey: true;
@@ -1367,13 +1298,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1367
1298
  };
1368
1299
  automaticDropdown: BooleanConstructor;
1369
1300
  size: {
1370
- readonly type: PropType<"" | "small" | "default" | "large">;
1301
+ readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
1371
1302
  readonly required: false;
1372
1303
  readonly validator: ((val: unknown) => boolean) | undefined;
1373
1304
  __epPropKey: true;
1374
1305
  };
1375
1306
  effect: {
1376
- readonly type: PropType<import('element-plus').PopperEffect>;
1307
+ readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
1377
1308
  readonly required: false;
1378
1309
  readonly validator: ((val: unknown) => boolean) | undefined;
1379
1310
  __epPropKey: true;
@@ -1386,7 +1317,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1386
1317
  allowCreate: BooleanConstructor;
1387
1318
  loading: BooleanConstructor;
1388
1319
  popperClass: {
1389
- readonly type: PropType<string>;
1320
+ readonly type: import('vue').PropType<string>;
1390
1321
  readonly required: false;
1391
1322
  readonly validator: ((val: unknown) => boolean) | undefined;
1392
1323
  __epPropKey: true;
@@ -1394,7 +1325,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1394
1325
  readonly default: string;
1395
1326
  };
1396
1327
  popperOptions: {
1397
- readonly type: PropType<any>;
1328
+ readonly type: import('vue').PropType<any>;
1398
1329
  readonly required: false;
1399
1330
  readonly validator: ((val: unknown) => boolean) | undefined;
1400
1331
  __epPropKey: true;
@@ -1409,7 +1340,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1409
1340
  filterMethod: FunctionConstructor;
1410
1341
  multiple: BooleanConstructor;
1411
1342
  multipleLimit: {
1412
- readonly type: PropType<number>;
1343
+ readonly type: import('vue').PropType<number>;
1413
1344
  readonly required: false;
1414
1345
  readonly validator: ((val: unknown) => boolean) | undefined;
1415
1346
  __epPropKey: true;
@@ -1417,14 +1348,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1417
1348
  readonly default: number;
1418
1349
  };
1419
1350
  placeholder: {
1420
- readonly type: PropType<string>;
1351
+ readonly type: import('vue').PropType<string>;
1421
1352
  readonly required: false;
1422
1353
  readonly validator: ((val: unknown) => boolean) | undefined;
1423
1354
  __epPropKey: true;
1424
1355
  };
1425
1356
  defaultFirstOption: BooleanConstructor;
1426
1357
  reserveKeyword: {
1427
- readonly type: PropType<boolean>;
1358
+ readonly type: import('vue').PropType<boolean>;
1428
1359
  readonly required: false;
1429
1360
  readonly validator: ((val: unknown) => boolean) | undefined;
1430
1361
  __epPropKey: true;
@@ -1432,7 +1363,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1432
1363
  readonly default: boolean;
1433
1364
  };
1434
1365
  valueKey: {
1435
- readonly type: PropType<string>;
1366
+ readonly type: import('vue').PropType<string>;
1436
1367
  readonly required: false;
1437
1368
  readonly validator: ((val: unknown) => boolean) | undefined;
1438
1369
  __epPropKey: true;
@@ -1442,7 +1373,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1442
1373
  collapseTags: BooleanConstructor;
1443
1374
  collapseTagsTooltip: BooleanConstructor;
1444
1375
  maxCollapseTags: {
1445
- readonly type: PropType<number>;
1376
+ readonly type: import('vue').PropType<number>;
1446
1377
  readonly required: false;
1447
1378
  readonly validator: ((val: unknown) => boolean) | undefined;
1448
1379
  __epPropKey: true;
@@ -1450,7 +1381,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1450
1381
  readonly default: number;
1451
1382
  };
1452
1383
  teleported: {
1453
- readonly type: PropType<boolean>;
1384
+ readonly type: import('vue').PropType<boolean>;
1454
1385
  readonly required: false;
1455
1386
  readonly validator: ((val: unknown) => boolean) | undefined;
1456
1387
  __epPropKey: true;
@@ -1458,7 +1389,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1458
1389
  readonly default: true;
1459
1390
  };
1460
1391
  persistent: {
1461
- readonly type: PropType<boolean>;
1392
+ readonly type: import('vue').PropType<boolean>;
1462
1393
  readonly required: false;
1463
1394
  readonly validator: ((val: unknown) => boolean) | undefined;
1464
1395
  __epPropKey: true;
@@ -1466,34 +1397,34 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1466
1397
  readonly default: boolean;
1467
1398
  };
1468
1399
  clearIcon: {
1469
- readonly type: PropType<string | import('vue').Component>;
1400
+ readonly type: import('vue').PropType<string | import('vue').Component>;
1470
1401
  readonly required: false;
1471
1402
  readonly validator: ((val: unknown) => boolean) | undefined;
1472
1403
  __epPropKey: true;
1473
1404
  };
1474
1405
  fitInputWidth: BooleanConstructor;
1475
1406
  suffixIcon: {
1476
- readonly type: PropType<string | import('vue').Component>;
1407
+ readonly type: import('vue').PropType<string | import('vue').Component>;
1477
1408
  readonly required: false;
1478
1409
  readonly validator: ((val: unknown) => boolean) | undefined;
1479
1410
  __epPropKey: true;
1480
1411
  };
1481
1412
  tagType: {
1482
1413
  default: string;
1483
- type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
1414
+ type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
1484
1415
  required: false;
1485
1416
  validator: ((val: unknown) => boolean) | undefined;
1486
1417
  __epPropKey: true;
1487
1418
  };
1488
1419
  tagEffect: {
1489
1420
  default: string;
1490
- type: PropType<"light" | "dark" | "plain">;
1421
+ type: import('vue').PropType<"light" | "dark" | "plain">;
1491
1422
  required: false;
1492
1423
  validator: ((val: unknown) => boolean) | undefined;
1493
1424
  __epPropKey: true;
1494
1425
  };
1495
1426
  validateEvent: {
1496
- readonly type: PropType<boolean>;
1427
+ readonly type: import('vue').PropType<boolean>;
1497
1428
  readonly required: false;
1498
1429
  readonly validator: ((val: unknown) => boolean) | undefined;
1499
1430
  __epPropKey: true;
@@ -1502,7 +1433,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1502
1433
  };
1503
1434
  remoteShowSuffix: BooleanConstructor;
1504
1435
  showArrow: {
1505
- readonly type: PropType<boolean>;
1436
+ readonly type: import('vue').PropType<boolean>;
1506
1437
  readonly required: false;
1507
1438
  readonly validator: ((val: unknown) => boolean) | undefined;
1508
1439
  __epPropKey: true;
@@ -1510,7 +1441,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1510
1441
  readonly default: boolean;
1511
1442
  };
1512
1443
  offset: {
1513
- readonly type: PropType<number>;
1444
+ readonly type: import('vue').PropType<number>;
1514
1445
  readonly required: false;
1515
1446
  readonly validator: ((val: unknown) => boolean) | undefined;
1516
1447
  __epPropKey: true;
@@ -1518,7 +1449,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1518
1449
  readonly default: number;
1519
1450
  };
1520
1451
  placement: {
1521
- readonly type: PropType<any>;
1452
+ readonly type: import('vue').PropType<any>;
1522
1453
  readonly required: false;
1523
1454
  readonly validator: ((val: unknown) => boolean) | undefined;
1524
1455
  __epPropKey: true;
@@ -1526,7 +1457,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1526
1457
  readonly default: string;
1527
1458
  };
1528
1459
  fallbackPlacements: {
1529
- readonly type: PropType<Placement[]>;
1460
+ readonly type: import('vue').PropType<Placement[]>;
1530
1461
  readonly required: false;
1531
1462
  readonly validator: ((val: unknown) => boolean) | undefined;
1532
1463
  __epPropKey: true;
@@ -1534,7 +1465,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1534
1465
  readonly default: string[];
1535
1466
  };
1536
1467
  tabindex: {
1537
- readonly type: PropType<string | number>;
1468
+ readonly type: import('vue').PropType<string | number>;
1538
1469
  readonly required: false;
1539
1470
  readonly validator: ((val: unknown) => boolean) | undefined;
1540
1471
  __epPropKey: true;
@@ -1542,7 +1473,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1542
1473
  readonly default: number;
1543
1474
  };
1544
1475
  appendTo: {
1545
- readonly type: PropType<string | HTMLElement>;
1476
+ readonly type: import('vue').PropType<string | HTMLElement>;
1546
1477
  readonly required: false;
1547
1478
  readonly validator: ((val: unknown) => boolean) | undefined;
1548
1479
  __epPropKey: true;