1
- declare const _default : __VLS_WithTemplateSlots < import ( "vue" ) . DefineComponent < {
2
- modelValue : globalThis . PropType < any > ;
1
+ import { FieldValue } from '../../types' ;
2
+
3
+ declare function __VLS_template ( ) : Partial < Record < NonNullable < string | number > , ( _ : any ) => any > > & Partial < Record < NonNullable < string | number > , ( _ : any ) => any > > ;
4
+ declare const __VLS_component : import ( 'vue' ) . DefineComponent < {
5
+ modelValue : import ( 'vue' ) . PropType < FieldValue > ;
3
6
error : {
4
7
type : globalThis . PropType < boolean > ;
5
8
default : boolean ;
6
9
} ;
7
- disabled: {
8
- type: globalThis . PropType < boolean > ;
9
- default: boolean ;
10
- } ;
11
- color: {
12
- type: globalThis . PropType < string > ;
13
- default: string ;
14
- } ;
15
- variant: {
16
- type: globalThis . PropType < "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" > ;
17
- default: "underlined" ;
18
- } ;
19
- density: {
20
- type: globalThis . PropType < "default" | "compact" | "comfortable" | null > ;
21
- default: "compact" ;
22
- } ;
23
- loading: {
24
- type: globalThis . PropType < boolean > ;
25
- default: boolean ;
26
- } ;
27
10
autofocus : {
28
11
type : globalThis . PropType < boolean > ;
29
12
default : boolean ;
@@ -80,8 +63,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
80
63
type : globalThis . PropType < boolean > ;
81
64
default : boolean ;
82
65
} ;
66
+ color : {
67
+ type : globalThis . PropType < string > ;
68
+ default : string ;
69
+ } ;
70
+ disabled : {
71
+ type : globalThis . PropType < boolean > ;
72
+ default : boolean ;
73
+ } ;
83
74
displayAppendIcon : {
84
- type: globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
75
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
85
76
default : undefined ;
86
77
} ;
87
78
displayAppendIconColor : {
@@ -93,7 +84,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
93
84
default : string ;
94
85
} ;
95
86
displayAppendInnerIcon : {
96
- type: globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
87
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
97
88
default : undefined ;
98
89
} ;
99
90
displayAppendInnerIconColor : {
@@ -105,7 +96,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
105
96
default : string ;
106
97
} ;
107
98
displayPrependIcon : {
108
- type: globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
99
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
109
100
default : undefined ;
110
101
} ;
111
102
displayPrependIconColor : {
@@ -117,7 +108,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
117
108
default : string ;
118
109
} ;
119
110
displayPrependInnerIcon : {
120
- type: globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
111
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
121
112
default : undefined ;
122
113
} ;
123
114
displayPrependInnerIconColor : {
@@ -152,6 +143,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
152
143
type : globalThis . PropType < string > ;
153
144
default : string ;
154
145
} ;
146
+ loading : {
147
+ type : globalThis . PropType < boolean > ;
148
+ default : boolean ;
149
+ } ;
155
150
loadingIcon : {
156
151
type : globalThis . PropType < string > ;
157
152
default : undefined ;
@@ -225,13 +220,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
225
220
default : boolean ;
226
221
} ;
227
222
clearIcon : {
228
- type: globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
223
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
229
224
default : string ;
230
225
} ;
231
226
clearable : {
232
227
type : globalThis . PropType < boolean > ;
233
228
default : boolean ;
234
229
} ;
230
+ density : {
231
+ type : globalThis . PropType < "default" | "compact" | "comfortable" | null > ;
232
+ default : "compact" ;
233
+ } ;
235
234
hideSelected : {
236
235
type : globalThis . PropType < boolean > ;
237
236
default : boolean ;
@@ -253,38 +252,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
253
252
default : boolean ;
254
253
} ;
255
254
menuIcon : {
256
- type: globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
255
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
257
256
default : string ;
258
257
} ;
259
258
rules : {
260
259
type : globalThis . PropType < readonly ( ( string | boolean ) | PromiseLike < string | boolean > | ( ( value : any ) => string | boolean ) | ( ( value : any ) => PromiseLike < string | boolean > ) ) [ ] > ;
261
260
default : ( ) => never [ ] ;
262
261
} ;
263
- } , { } , unknown , { } , { } , import ( "vue" ) . ComponentOptionsMixin , import ( "vue" ) . ComponentOptionsMixin , {
264
- [ x : string ] : ( ...args : any [ ] ) => void ;
265
- } , string , import ( "vue" ) . PublicProps , Readonly < import ( "vue" ) . ExtractPropTypes < {
266
- modelValue : globalThis . PropType < any > ;
267
- error : {
268
- type : globalThis . PropType < boolean > ;
269
- default : boolean ;
270
- } ;
271
- disabled : {
272
- type : globalThis . PropType < boolean > ;
273
- default : boolean ;
274
- } ;
275
- color : {
276
- type : globalThis . PropType < string > ;
277
- default : string ;
278
- } ;
279
262
variant : {
280
- type : globalThis . PropType < "outlined " | "plain " | "underlined " | "filled" | "solo" | "solo-inverted" | "solo-filled" > ;
263
+ type : globalThis . PropType < "underlined " | "outlined " | "plain " | "filled" | "solo" | "solo-inverted" | "solo-filled" > ;
281
264
default : "underlined" ;
282
265
} ;
283
- density : {
284
- type : globalThis . PropType < "default" | "compact" | "comfortable" | null > ;
285
- default : "compact" ;
286
- } ;
287
- loading : {
266
+ } , { } , unknown , { } , { } , import ( 'vue' ) . ComponentOptionsMixin , import ( 'vue' ) . ComponentOptionsMixin , {
267
+ [ x : string ] : ( ... args : any [ ] ) => void ;
268
+ } , string , import ( 'vue' ) . PublicProps , Readonly < import ( 'vue' ) . ExtractPropTypes < {
269
+ modelValue : import ( 'vue' ) . PropType < FieldValue > ;
270
+ error : {
288
271
type : globalThis . PropType < boolean > ;
289
272
default : boolean ;
290
273
} ;
@@ -344,8 +327,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
344
327
type : globalThis . PropType < boolean > ;
345
328
default : boolean ;
346
329
} ;
330
+ color : {
331
+ type : globalThis . PropType < string > ;
332
+ default : string ;
333
+ } ;
334
+ disabled : {
335
+ type : globalThis . PropType < boolean > ;
336
+ default : boolean ;
337
+ } ;
347
338
displayAppendIcon : {
348
- type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
339
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
349
340
default : undefined ;
350
341
} ;
351
342
displayAppendIconColor : {
@@ -357,7 +348,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
357
348
default : string ;
358
349
} ;
359
350
displayAppendInnerIcon : {
360
- type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
351
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
361
352
default : undefined ;
362
353
} ;
363
354
displayAppendInnerIconColor : {
@@ -369,7 +360,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
369
360
default : string ;
370
361
} ;
371
362
displayPrependIcon : {
372
- type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
363
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
373
364
default : undefined ;
374
365
} ;
375
366
displayPrependIconColor : {
@@ -381,7 +372,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
381
372
default : string ;
382
373
} ;
383
374
displayPrependInnerIcon : {
384
- type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
375
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
385
376
default : undefined ;
386
377
} ;
387
378
displayPrependInnerIconColor : {
@@ -416,6 +407,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
416
407
type : globalThis . PropType < string > ;
417
408
default : string ;
418
409
} ;
410
+ loading : {
411
+ type : globalThis . PropType < boolean > ;
412
+ default : boolean ;
413
+ } ;
419
414
loadingIcon : {
420
415
type : globalThis . PropType < string > ;
421
416
default : undefined ;
@@ -489,13 +484,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
489
484
default : boolean ;
490
485
} ;
491
486
clearIcon : {
492
- type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
487
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
493
488
default : string ;
494
489
} ;
495
490
clearable : {
496
491
type : globalThis . PropType < boolean > ;
497
492
default : boolean ;
498
493
} ;
494
+ density : {
495
+ type : globalThis . PropType < "default" | "compact" | "comfortable" | null > ;
496
+ default : "compact" ;
497
+ } ;
499
498
hideSelected : {
500
499
type : globalThis . PropType < boolean > ;
501
500
default : boolean ;
@@ -517,20 +516,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
517
516
default : boolean ;
518
517
} ;
519
518
menuIcon : {
520
- type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent > ;
519
+ type : globalThis . PropType < string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent > ;
521
520
default : string ;
522
521
} ;
523
522
rules : {
524
523
type : globalThis . PropType < readonly ( ( string | boolean ) | PromiseLike < string | boolean > | ( ( value : any ) => string | boolean ) | ( ( value : any ) => PromiseLike < string | boolean > ) ) [ ] > ;
525
524
default : ( ) => never [ ] ;
526
525
} ;
526
+ variant : {
527
+ type : globalThis . PropType < "underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled" > ;
528
+ default : "underlined" ;
529
+ } ;
527
530
} >> , {
528
531
error : boolean ;
529
- disabled : boolean;
530
- color : string;
531
- variant : "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" ;
532
- density : "default" | "compact" | "comfortable" | null ;
533
- loading : boolean;
534
532
autofocus : boolean ;
535
533
cancelButtonColor : string ;
536
534
cancelButtonSize : string | number ;
@@ -541,20 +539,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
541
539
cardField : boolean ;
542
540
cardOffsetX : number ;
543
541
cardOffsetY : number ;
544
- cardProps : any ;
542
+ cardProps : typeof import ( 'vuetify/lib/components/index.mjs' ) . VCard [ "$props" ] ;
545
543
cell : boolean ;
546
544
cellUnderlineFullWidth : boolean ;
547
545
closeSiblings : boolean ;
548
- displayAppendIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( "vue" ) . JSXComponent ;
546
+ color : string ;
547
+ disabled : boolean ;
548
+ displayAppendIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( 'vue' ) . JSXComponent ;
549
549
displayAppendIconColor : string ;
550
550
displayAppendIconSize : string | number ;
551
- displayAppendInnerIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent ;
551
+ displayAppendInnerIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent ;
552
552
displayAppendInnerIconColor : string ;
553
553
displayAppendInnerIconSize : string | number ;
554
- displayPrependIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent ;
554
+ displayPrependIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent ;
555
555
displayPrependIconColor : string ;
556
556
displayPrependIconSize : string | number ;
557
- displayPrependInnerIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent ;
557
+ displayPrependInnerIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent ;
558
558
displayPrependInnerIconColor : string ;
559
559
displayPrependInnerIconSize : string | number ;
560
560
emptyText : string ;
@@ -563,6 +563,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
563
563
hideDetails : boolean ;
564
564
hideSaveIcon : boolean ;
565
565
label : string ;
566
+ loading : boolean ;
566
567
loadingIcon : string ;
567
568
loadingIconColor : string ;
568
569
loadingWait : boolean ;
@@ -581,16 +582,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
581
582
underlined : boolean ;
582
583
valueColor : string ;
583
584
autoSelectFirst : boolean | "exact" ;
584
- clearIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent ;
585
+ clearIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent ;
585
586
clearable : boolean ;
587
+ density : "default" | "compact" | "comfortable" | null ;
586
588
hideSelected : boolean ;
587
589
itemTitle : string | boolean | readonly ( string | number ) [ ] | ( ( item : any , fallback ?: any ) => any ) | null ;
588
590
itemValue : string | boolean | readonly ( string | number ) [ ] | ( ( item : any , fallback ?: any ) => any ) | null ;
589
591
items : readonly any [ ] ;
590
592
menu : boolean ;
591
- menuIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( " vue" ) . JSXComponent ;
593
+ menuIcon : string | ( string | [ path : string , opacity : number ] ) [ ] | import ( ' vue' ) . JSXComponent ;
592
594
rules : readonly ( ( string | boolean ) | PromiseLike < string | boolean > | ( ( value : any ) => string | boolean ) | ( ( value : any ) => PromiseLike < string | boolean > ) ) [ ] ;
593
- } , { } > , Partial < Record < NonNullable < string | number > , ( _ : any ) => any > > & Partial < Record < NonNullable < string | number > , ( _ : any ) => any > > > ;
595
+ variant : "underlined" | "outlined" | "plain" | "filled" | "solo" | "solo-inverted" | "solo-filled" ;
596
+ } , { } > ;
597
+ declare const _default : __VLS_WithTemplateSlots < typeof __VLS_component , ReturnType < typeof __VLS_template > > ;
594
598
export default _default ;
595
599
type __VLS_WithTemplateSlots < T , S > = T & {
596
600
new ( ) : {
0 commit comments