@@ -87,6 +87,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
87
87
type: globalThis . PropType < string > ;
88
88
default: string ;
89
89
} ;
90
+ cardField: {
91
+ type: globalThis . PropType < boolean > ;
92
+ default: boolean ;
93
+ } ;
94
+ cardOffsetX: {
95
+ type: globalThis . PropType < number > ;
96
+ default: number ;
97
+ } ;
98
+ cardOffsetY: {
99
+ type: globalThis . PropType < number > ;
100
+ default: number ;
101
+ } ;
102
+ cardProps: {
103
+ type: globalThis . PropType < any > ;
104
+ default: ( ) => { } ;
105
+ } ;
90
106
closeSiblings: {
91
107
type: globalThis . PropType < boolean > ;
92
108
default: boolean ;
@@ -97,7 +113,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
97
113
} ;
98
114
displayAppendIconColor: {
99
115
type: globalThis . PropType < string > ;
100
- default: string ;
116
+ default: undefined ;
101
117
} ;
102
118
displayAppendIconSize: {
103
119
type: globalThis . PropType < string | number > ;
@@ -109,7 +125,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
109
125
} ;
110
126
displayAppendInnerIconColor: {
111
127
type: globalThis . PropType < string > ;
112
- default: string ;
128
+ default: undefined ;
113
129
} ;
114
130
displayAppendInnerIconSize: {
115
131
type: globalThis . PropType < string | number > ;
@@ -121,7 +137,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
121
137
} ;
122
138
displayPrependIconColor: {
123
139
type: globalThis . PropType < string > ;
124
- default: string ;
140
+ default: undefined ;
125
141
} ;
126
142
displayPrependIconSize: {
127
143
type: globalThis . PropType < string | number > ;
@@ -133,7 +149,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
133
149
} ;
134
150
displayPrependInnerIconColor: {
135
151
type: globalThis . PropType < string > ;
136
- default: string ;
152
+ default: undefined ;
137
153
} ;
138
154
displayPrependInnerIconSize: {
139
155
type: globalThis . PropType < string | number > ;
@@ -296,6 +312,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
296
312
type : globalThis . PropType < string > ;
297
313
default : string ;
298
314
} ;
315
+ cardField : {
316
+ type : globalThis . PropType < boolean > ;
317
+ default : boolean ;
318
+ } ;
319
+ cardOffsetX : {
320
+ type : globalThis . PropType < number > ;
321
+ default : number ;
322
+ } ;
323
+ cardOffsetY : {
324
+ type : globalThis . PropType < number > ;
325
+ default : number ;
326
+ } ;
327
+ cardProps : {
328
+ type : globalThis . PropType < any > ;
329
+ default : ( ) => { } ;
330
+ } ;
299
331
closeSiblings : {
300
332
type : globalThis . PropType < boolean > ;
301
333
default : boolean ;
@@ -306,7 +338,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
306
338
} ;
307
339
displayAppendIconColor : {
308
340
type : globalThis . PropType < string > ;
309
- default : string ;
341
+ default : undefined ;
310
342
} ;
311
343
displayAppendIconSize : {
312
344
type : globalThis . PropType < string | number > ;
@@ -318,7 +350,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
318
350
} ;
319
351
displayAppendInnerIconColor : {
320
352
type : globalThis . PropType < string > ;
321
- default : string ;
353
+ default : undefined ;
322
354
} ;
323
355
displayAppendInnerIconSize : {
324
356
type : globalThis . PropType < string | number > ;
@@ -330,7 +362,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
330
362
} ;
331
363
displayPrependIconColor : {
332
364
type : globalThis . PropType < string > ;
333
- default : string ;
365
+ default : undefined ;
334
366
} ;
335
367
displayPrependIconSize : {
336
368
type : globalThis . PropType < string | number > ;
@@ -342,7 +374,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
342
374
} ;
343
375
displayPrependInnerIconColor : {
344
376
type : globalThis . PropType < string > ;
345
- default : string ;
377
+ default : undefined ;
346
378
} ;
347
379
displayPrependInnerIconSize : {
348
380
type : globalThis . PropType < string | number > ;
@@ -437,6 +469,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
437
469
cancelButtonVariant: NonNullable < "flat" | "outlined" | "plain" | "text" | "elevated" | "tonal" > ;
438
470
cancelIcon: string ;
439
471
cancelIconColor: string ;
472
+ cardField: boolean ;
473
+ cardOffsetX: number ;
474
+ cardOffsetY: number ;
475
+ cardProps: any ;
440
476
closeSiblings: boolean ;
441
477
displayAppendIcon: import ( '../types' ) . VIconValue ;
442
478
displayAppendIconColor: string ;
@@ -467,7 +503,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
467
503
underlineStyle: string ;
468
504
underlineWidth: string ;
469
505
valueColor: string ;
470
- } , { } > , {
506
+ } , { } > , Partial < Record < NonNullable < string | number > , ( _ : any ) => any > > & {
471
507
default ?( _ : {
472
508
loading : boolean ;
473
509
modelValue : any ;
@@ -498,21 +534,25 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
498
534
cancelButtonVariant : NonNullable < "flat" | "outlined" | "plain" | "text" | "elevated" | "tonal" > ;
499
535
cancelIcon : string | undefined ;
500
536
cancelIconColor : string ;
537
+ cardField : boolean ;
538
+ cardOffsetX : number ;
539
+ cardOffsetY : number ;
540
+ cardProps : any ;
501
541
closeSiblings : boolean ;
502
542
color : string ;
503
543
density : "default" | "comfortable" | "compact" | null ;
504
544
disabled : boolean ;
505
545
displayAppendIcon : import ( '../types' ) . VIconValue | undefined ;
506
- displayAppendIconColor : string ;
546
+ displayAppendIconColor : string | undefined ;
507
547
displayAppendIconSize : string | number ;
508
548
displayAppendInnerIcon : import ( '../types' ) . VIconValue | undefined ;
509
- displayAppendInnerIconColor : string ;
549
+ displayAppendInnerIconColor : string | undefined ;
510
550
displayAppendInnerIconSize : string | number ;
511
551
displayPrependIcon : import ( '../types' ) . VIconValue | undefined ;
512
- displayPrependIconColor : string ;
552
+ displayPrependIconColor : string | undefined ;
513
553
displayPrependIconSize : string | number ;
514
554
displayPrependInnerIcon : import ( '../types' ) . VIconValue | undefined ;
515
- displayPrependInnerIconColor : string ;
555
+ displayPrependInnerIconColor : string | undefined ;
516
556
displayPrependInnerIconSize : string | number ;
517
557
emptyText : string ;
518
558
fieldOnly : boolean ;
0 commit comments