vuetify 3.0.2 → 3.0.3
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/json/attributes.json +23 -23
- package/dist/json/importMap.json +84 -84
- package/dist/json/web-types.json +91 -60
- package/dist/vuetify.css +114 -114
- package/dist/vuetify.d.ts +332 -141
- package/dist/vuetify.esm.js +13 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +2 -2
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +275 -62
- package/lib/components/VAutocomplete/index.d.ts +6 -6
- package/lib/components/VCombobox/index.d.ts +6 -6
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +1 -1
- package/lib/components/VFooter/VFooter.mjs +1 -1
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLazy/VLazy.mjs +2 -1
- package/lib/components/VLazy/VLazy.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VOverlay/locationStrategies.mjs +3 -1
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +6 -6
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +310 -119
- package/lib/components/transitions/dialog-transition.mjs +2 -2
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +22 -22
- package/package.json +2 -2
|
@@ -113,6 +113,14 @@ declare type EventProp<T = (...args: any[]) => any> = T | T[];
|
|
|
113
113
|
declare const EventProp: PropType<EventProp<(...args: any[]) => any>>;
|
|
114
114
|
|
|
115
115
|
declare type Density$1 = null | 'prominent' | 'default' | 'comfortable' | 'compact';
|
|
116
|
+
declare type VToolbarSlots = MakeSlots<{
|
|
117
|
+
default: [];
|
|
118
|
+
image: [];
|
|
119
|
+
prepend: [];
|
|
120
|
+
append: [];
|
|
121
|
+
title: [];
|
|
122
|
+
extension: [];
|
|
123
|
+
}>;
|
|
116
124
|
declare const VToolbar: {
|
|
117
125
|
new (...args: any[]): {
|
|
118
126
|
$: vue.ComponentInternalInstance;
|
|
@@ -354,75 +362,254 @@ declare const VToolbar: {
|
|
|
354
362
|
extensionHeight: string | number;
|
|
355
363
|
floating: boolean;
|
|
356
364
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
357
|
-
$props: SlotsToProps<
|
|
358
|
-
default: [];
|
|
359
|
-
image: [];
|
|
360
|
-
prepend: [];
|
|
361
|
-
append: [];
|
|
362
|
-
title: [];
|
|
363
|
-
extension: [];
|
|
364
|
-
}>;
|
|
365
|
+
$props: SlotsToProps<VToolbarSlots>;
|
|
365
366
|
});
|
|
366
367
|
declare type VToolbar = InstanceType<typeof VToolbar>;
|
|
367
368
|
|
|
368
|
-
declare const VAppBar:
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
369
|
+
declare const VAppBar: {
|
|
370
|
+
new (...args: any[]): {
|
|
371
|
+
$: vue.ComponentInternalInstance;
|
|
372
|
+
$data: {};
|
|
373
|
+
$props: Partial<{
|
|
374
|
+
flat: boolean;
|
|
375
|
+
absolute: boolean;
|
|
376
|
+
location: "top" | "bottom";
|
|
377
|
+
height: string | number;
|
|
378
|
+
order: string | number;
|
|
379
|
+
tag: string;
|
|
380
|
+
collapse: boolean;
|
|
381
|
+
rounded: string | number | boolean;
|
|
382
|
+
density: Density$1;
|
|
383
|
+
extended: boolean;
|
|
384
|
+
extensionHeight: string | number;
|
|
385
|
+
floating: boolean;
|
|
386
|
+
modelValue: boolean;
|
|
387
|
+
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
388
|
+
height: {
|
|
389
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
390
|
+
default: number;
|
|
391
|
+
};
|
|
392
|
+
name: {
|
|
393
|
+
type: StringConstructor;
|
|
394
|
+
};
|
|
395
|
+
order: {
|
|
396
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
397
|
+
default: number;
|
|
398
|
+
};
|
|
399
|
+
absolute: BooleanConstructor;
|
|
400
|
+
theme: StringConstructor;
|
|
401
|
+
tag: Omit<{
|
|
402
|
+
type: StringConstructor;
|
|
403
|
+
default: string;
|
|
404
|
+
}, "type" | "default"> & {
|
|
405
|
+
type: PropType<string>;
|
|
406
|
+
default: string;
|
|
407
|
+
};
|
|
408
|
+
rounded: {
|
|
409
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
410
|
+
default: undefined;
|
|
411
|
+
};
|
|
412
|
+
elevation: {
|
|
413
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
414
|
+
validator(v: any): boolean;
|
|
415
|
+
};
|
|
416
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
417
|
+
collapse: BooleanConstructor;
|
|
418
|
+
color: StringConstructor;
|
|
419
|
+
density: {
|
|
420
|
+
type: PropType<Density$1>;
|
|
421
|
+
default: string;
|
|
422
|
+
validator: (v: any) => boolean;
|
|
423
|
+
};
|
|
424
|
+
extended: BooleanConstructor;
|
|
425
|
+
extensionHeight: {
|
|
426
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
427
|
+
default: number;
|
|
428
|
+
};
|
|
429
|
+
flat: BooleanConstructor;
|
|
430
|
+
floating: BooleanConstructor;
|
|
431
|
+
image: StringConstructor;
|
|
432
|
+
title: StringConstructor;
|
|
433
|
+
modelValue: {
|
|
434
|
+
type: BooleanConstructor;
|
|
435
|
+
default: boolean;
|
|
436
|
+
};
|
|
437
|
+
location: {
|
|
438
|
+
type: PropType<"top" | "bottom">;
|
|
439
|
+
default: string;
|
|
440
|
+
validator: (value: any) => boolean;
|
|
441
|
+
};
|
|
442
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
443
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
444
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "modelValue">;
|
|
445
|
+
$attrs: {
|
|
446
|
+
[x: string]: unknown;
|
|
447
|
+
};
|
|
448
|
+
$refs: {
|
|
449
|
+
[x: string]: unknown;
|
|
450
|
+
};
|
|
451
|
+
$slots: Readonly<{
|
|
452
|
+
[name: string]: vue.Slot | undefined;
|
|
453
|
+
}>;
|
|
454
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
455
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
456
|
+
$emit: (event: "update:modelValue", value: boolean) => void;
|
|
457
|
+
$el: any;
|
|
458
|
+
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
459
|
+
height: {
|
|
460
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
461
|
+
default: number;
|
|
462
|
+
};
|
|
463
|
+
name: {
|
|
464
|
+
type: StringConstructor;
|
|
465
|
+
};
|
|
466
|
+
order: {
|
|
467
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
468
|
+
default: number;
|
|
469
|
+
};
|
|
470
|
+
absolute: BooleanConstructor;
|
|
471
|
+
theme: StringConstructor;
|
|
472
|
+
tag: Omit<{
|
|
473
|
+
type: StringConstructor;
|
|
474
|
+
default: string;
|
|
475
|
+
}, "type" | "default"> & {
|
|
476
|
+
type: PropType<string>;
|
|
477
|
+
default: string;
|
|
478
|
+
};
|
|
479
|
+
rounded: {
|
|
480
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
481
|
+
default: undefined;
|
|
482
|
+
};
|
|
483
|
+
elevation: {
|
|
484
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
485
|
+
validator(v: any): boolean;
|
|
486
|
+
};
|
|
487
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
488
|
+
collapse: BooleanConstructor;
|
|
489
|
+
color: StringConstructor;
|
|
490
|
+
density: {
|
|
491
|
+
type: PropType<Density$1>;
|
|
492
|
+
default: string;
|
|
493
|
+
validator: (v: any) => boolean;
|
|
494
|
+
};
|
|
495
|
+
extended: BooleanConstructor;
|
|
496
|
+
extensionHeight: {
|
|
497
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
498
|
+
default: number;
|
|
499
|
+
};
|
|
500
|
+
flat: BooleanConstructor;
|
|
501
|
+
floating: BooleanConstructor;
|
|
502
|
+
image: StringConstructor;
|
|
503
|
+
title: StringConstructor;
|
|
504
|
+
modelValue: {
|
|
505
|
+
type: BooleanConstructor;
|
|
506
|
+
default: boolean;
|
|
507
|
+
};
|
|
508
|
+
location: {
|
|
509
|
+
type: PropType<"top" | "bottom">;
|
|
510
|
+
default: string;
|
|
511
|
+
validator: (value: any) => boolean;
|
|
512
|
+
};
|
|
513
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
514
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
515
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
516
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
517
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">, string, {
|
|
518
|
+
flat: boolean;
|
|
519
|
+
absolute: boolean;
|
|
520
|
+
location: "top" | "bottom";
|
|
521
|
+
height: string | number;
|
|
522
|
+
order: string | number;
|
|
523
|
+
tag: string;
|
|
524
|
+
collapse: boolean;
|
|
525
|
+
rounded: string | number | boolean;
|
|
526
|
+
density: Density$1;
|
|
527
|
+
extended: boolean;
|
|
528
|
+
extensionHeight: string | number;
|
|
529
|
+
floating: boolean;
|
|
530
|
+
modelValue: boolean;
|
|
531
|
+
}> & {
|
|
532
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
533
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
534
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
535
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
536
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
537
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
538
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
539
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
540
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
541
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
542
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
543
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
544
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
545
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
546
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
547
|
+
};
|
|
548
|
+
$forceUpdate: () => void;
|
|
549
|
+
$nextTick: typeof vue.nextTick;
|
|
550
|
+
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
551
|
+
} & Readonly<vue.ExtractPropTypes<Omit<{
|
|
552
|
+
height: {
|
|
553
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
554
|
+
default: number;
|
|
555
|
+
};
|
|
556
|
+
name: {
|
|
557
|
+
type: StringConstructor;
|
|
558
|
+
};
|
|
559
|
+
order: {
|
|
560
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
561
|
+
default: number;
|
|
562
|
+
};
|
|
563
|
+
absolute: BooleanConstructor;
|
|
564
|
+
theme: StringConstructor;
|
|
565
|
+
tag: Omit<{
|
|
566
|
+
type: StringConstructor;
|
|
567
|
+
default: string;
|
|
568
|
+
}, "type" | "default"> & {
|
|
569
|
+
type: PropType<string>;
|
|
570
|
+
default: string;
|
|
571
|
+
};
|
|
572
|
+
rounded: {
|
|
573
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
574
|
+
default: undefined;
|
|
575
|
+
};
|
|
576
|
+
elevation: {
|
|
577
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
578
|
+
validator(v: any): boolean;
|
|
579
|
+
};
|
|
580
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
581
|
+
collapse: BooleanConstructor;
|
|
582
|
+
color: StringConstructor;
|
|
583
|
+
density: {
|
|
584
|
+
type: PropType<Density$1>;
|
|
585
|
+
default: string;
|
|
586
|
+
validator: (v: any) => boolean;
|
|
587
|
+
};
|
|
588
|
+
extended: BooleanConstructor;
|
|
589
|
+
extensionHeight: {
|
|
590
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
591
|
+
default: number;
|
|
592
|
+
};
|
|
593
|
+
flat: BooleanConstructor;
|
|
594
|
+
floating: BooleanConstructor;
|
|
595
|
+
image: StringConstructor;
|
|
596
|
+
title: StringConstructor;
|
|
597
|
+
modelValue: {
|
|
598
|
+
type: BooleanConstructor;
|
|
599
|
+
default: boolean;
|
|
600
|
+
};
|
|
601
|
+
location: {
|
|
602
|
+
type: PropType<"top" | "bottom">;
|
|
603
|
+
default: string;
|
|
604
|
+
validator: (value: any) => boolean;
|
|
605
|
+
};
|
|
606
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
607
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
608
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties;
|
|
609
|
+
__isFragment?: undefined;
|
|
610
|
+
__isTeleport?: undefined;
|
|
611
|
+
__isSuspense?: undefined;
|
|
612
|
+
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
426
613
|
height: {
|
|
427
614
|
type: (StringConstructor | NumberConstructor)[];
|
|
428
615
|
default: number;
|
|
@@ -477,9 +664,11 @@ declare const VAppBar: vue.DefineComponent<{
|
|
|
477
664
|
default: string;
|
|
478
665
|
validator: (value: any) => boolean;
|
|
479
666
|
};
|
|
480
|
-
}
|
|
667
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
481
668
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
482
|
-
}, {
|
|
669
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
670
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
671
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">, string, {
|
|
483
672
|
flat: boolean;
|
|
484
673
|
absolute: boolean;
|
|
485
674
|
location: "top" | "bottom";
|
|
@@ -493,7 +682,9 @@ declare const VAppBar: vue.DefineComponent<{
|
|
|
493
682
|
extensionHeight: string | number;
|
|
494
683
|
floating: boolean;
|
|
495
684
|
modelValue: boolean;
|
|
496
|
-
}
|
|
685
|
+
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
686
|
+
$props: SlotsToProps<VToolbarSlots>;
|
|
687
|
+
});
|
|
497
688
|
declare type VAppBar = InstanceType<typeof VAppBar>;
|
|
498
689
|
|
|
499
690
|
declare type IconValue = string | JSXComponent;
|
|
@@ -1132,7 +1323,7 @@ declare const VField: {
|
|
|
1132
1323
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1133
1324
|
focused: BooleanConstructor;
|
|
1134
1325
|
id: StringConstructor;
|
|
1135
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1326
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1136
1327
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1137
1328
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1138
1329
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -1179,7 +1370,7 @@ declare const VField: {
|
|
|
1179
1370
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1180
1371
|
focused: BooleanConstructor;
|
|
1181
1372
|
id: StringConstructor;
|
|
1182
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1373
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1183
1374
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1184
1375
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1185
1376
|
}, {
|
|
@@ -1188,7 +1379,7 @@ declare const VField: {
|
|
|
1188
1379
|
'click:control': (e: MouseEvent) => boolean;
|
|
1189
1380
|
'update:focused': (focused: boolean) => boolean;
|
|
1190
1381
|
'update:modelValue': (val: any) => boolean;
|
|
1191
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1382
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
1192
1383
|
reverse: boolean;
|
|
1193
1384
|
error: boolean;
|
|
1194
1385
|
active: boolean;
|
|
@@ -1251,7 +1442,7 @@ declare const VField: {
|
|
|
1251
1442
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1252
1443
|
focused: BooleanConstructor;
|
|
1253
1444
|
id: StringConstructor;
|
|
1254
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1445
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1255
1446
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1256
1447
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1257
1448
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -1290,7 +1481,7 @@ declare const VField: {
|
|
|
1290
1481
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1291
1482
|
focused: BooleanConstructor;
|
|
1292
1483
|
id: StringConstructor;
|
|
1293
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1484
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1294
1485
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1295
1486
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1296
1487
|
}, {
|
|
@@ -1299,7 +1490,7 @@ declare const VField: {
|
|
|
1299
1490
|
'click:control': (e: MouseEvent) => boolean;
|
|
1300
1491
|
'update:focused': (focused: boolean) => boolean;
|
|
1301
1492
|
'update:modelValue': (val: any) => boolean;
|
|
1302
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1493
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
1303
1494
|
reverse: boolean;
|
|
1304
1495
|
error: boolean;
|
|
1305
1496
|
active: boolean;
|
|
@@ -1794,7 +1985,7 @@ declare const VAutocomplete: {
|
|
|
1794
1985
|
};
|
|
1795
1986
|
noFilter: BooleanConstructor;
|
|
1796
1987
|
search: StringConstructor;
|
|
1797
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
1988
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
1798
1989
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
1799
1990
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
1800
1991
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
@@ -2137,7 +2328,7 @@ declare const VAutocomplete: {
|
|
|
2137
2328
|
};
|
|
2138
2329
|
noFilter: BooleanConstructor;
|
|
2139
2330
|
search: StringConstructor;
|
|
2140
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2331
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2141
2332
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2142
2333
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2143
2334
|
}, {
|
|
@@ -2158,7 +2349,7 @@ declare const VAutocomplete: {
|
|
|
2158
2349
|
'update:search': (val: any) => boolean;
|
|
2159
2350
|
'update:modelValue': (val: any) => boolean;
|
|
2160
2351
|
'update:menu': (val: boolean) => boolean;
|
|
2161
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2352
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
2162
2353
|
reverse: boolean;
|
|
2163
2354
|
type: string;
|
|
2164
2355
|
error: boolean;
|
|
@@ -2547,7 +2738,7 @@ declare const VAutocomplete: {
|
|
|
2547
2738
|
};
|
|
2548
2739
|
noFilter: BooleanConstructor;
|
|
2549
2740
|
search: StringConstructor;
|
|
2550
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2741
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2551
2742
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2552
2743
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2553
2744
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -2894,7 +3085,7 @@ declare const VAutocomplete: {
|
|
|
2894
3085
|
};
|
|
2895
3086
|
noFilter: BooleanConstructor;
|
|
2896
3087
|
search: StringConstructor;
|
|
2897
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
3088
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2898
3089
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2899
3090
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2900
3091
|
}, {
|
|
@@ -2915,7 +3106,7 @@ declare const VAutocomplete: {
|
|
|
2915
3106
|
'update:search': (val: any) => boolean;
|
|
2916
3107
|
'update:modelValue': (val: any) => boolean;
|
|
2917
3108
|
'update:menu': (val: boolean) => boolean;
|
|
2918
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
3109
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
2919
3110
|
reverse: boolean;
|
|
2920
3111
|
type: string;
|
|
2921
3112
|
error: boolean;
|
|
@@ -5541,7 +5732,7 @@ declare const VCombobox: {
|
|
|
5541
5732
|
};
|
|
5542
5733
|
noFilter: BooleanConstructor;
|
|
5543
5734
|
delimiters: PropType<string[]>;
|
|
5544
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
5735
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
5545
5736
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5546
5737
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5547
5738
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
@@ -5890,7 +6081,7 @@ declare const VCombobox: {
|
|
|
5890
6081
|
};
|
|
5891
6082
|
noFilter: BooleanConstructor;
|
|
5892
6083
|
delimiters: PropType<string[]>;
|
|
5893
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6084
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
5894
6085
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5895
6086
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5896
6087
|
}, {
|
|
@@ -5910,7 +6101,7 @@ declare const VCombobox: {
|
|
|
5910
6101
|
'update:modelValue': (val: any) => boolean;
|
|
5911
6102
|
'update:search': (val: string) => boolean;
|
|
5912
6103
|
'update:menu': (val: boolean) => boolean;
|
|
5913
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6104
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
5914
6105
|
reverse: boolean;
|
|
5915
6106
|
type: string;
|
|
5916
6107
|
error: boolean;
|
|
@@ -6305,7 +6496,7 @@ declare const VCombobox: {
|
|
|
6305
6496
|
};
|
|
6306
6497
|
noFilter: BooleanConstructor;
|
|
6307
6498
|
delimiters: PropType<string[]>;
|
|
6308
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6499
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
6309
6500
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6310
6501
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6311
6502
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -6657,7 +6848,7 @@ declare const VCombobox: {
|
|
|
6657
6848
|
};
|
|
6658
6849
|
noFilter: BooleanConstructor;
|
|
6659
6850
|
delimiters: PropType<string[]>;
|
|
6660
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6851
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
6661
6852
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6662
6853
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6663
6854
|
}, {
|
|
@@ -6677,7 +6868,7 @@ declare const VCombobox: {
|
|
|
6677
6868
|
'update:modelValue': (val: any) => boolean;
|
|
6678
6869
|
'update:search': (val: string) => boolean;
|
|
6679
6870
|
'update:menu': (val: boolean) => boolean;
|
|
6680
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6871
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
6681
6872
|
reverse: boolean;
|
|
6682
6873
|
type: string;
|
|
6683
6874
|
error: boolean;
|
|
@@ -9786,7 +9977,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
9786
9977
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
9787
9978
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
9788
9979
|
};
|
|
9789
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
9980
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
9790
9981
|
'click:control': (e: MouseEvent) => true;
|
|
9791
9982
|
'update:modelValue': (files: File[]) => true;
|
|
9792
9983
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -15725,7 +15916,7 @@ declare const VSelect: {
|
|
|
15725
15916
|
default: string;
|
|
15726
15917
|
};
|
|
15727
15918
|
openOnClear: BooleanConstructor;
|
|
15728
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
15919
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
15729
15920
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
15730
15921
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
|
|
15731
15922
|
$attrs: {
|
|
@@ -16067,7 +16258,7 @@ declare const VSelect: {
|
|
|
16067
16258
|
default: string;
|
|
16068
16259
|
};
|
|
16069
16260
|
openOnClear: BooleanConstructor;
|
|
16070
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16261
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16071
16262
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16072
16263
|
}, {
|
|
16073
16264
|
menu: vue.Ref<boolean> & {
|
|
@@ -16077,7 +16268,7 @@ declare const VSelect: {
|
|
|
16077
16268
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
16078
16269
|
'update:modelValue': (val: any) => boolean;
|
|
16079
16270
|
'update:menu': (val: boolean) => boolean;
|
|
16080
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16271
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
16081
16272
|
reverse: boolean;
|
|
16082
16273
|
type: string;
|
|
16083
16274
|
error: boolean;
|
|
@@ -16469,7 +16660,7 @@ declare const VSelect: {
|
|
|
16469
16660
|
default: string;
|
|
16470
16661
|
};
|
|
16471
16662
|
openOnClear: BooleanConstructor;
|
|
16472
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16663
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16473
16664
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16474
16665
|
} & vue.ShallowUnwrapRef<{
|
|
16475
16666
|
menu: vue.Ref<boolean> & {
|
|
@@ -16806,7 +16997,7 @@ declare const VSelect: {
|
|
|
16806
16997
|
default: string;
|
|
16807
16998
|
};
|
|
16808
16999
|
openOnClear: BooleanConstructor;
|
|
16809
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
17000
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16810
17001
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16811
17002
|
}, {
|
|
16812
17003
|
menu: vue.Ref<boolean> & {
|
|
@@ -16816,7 +17007,7 @@ declare const VSelect: {
|
|
|
16816
17007
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
16817
17008
|
'update:modelValue': (val: any) => boolean;
|
|
16818
17009
|
'update:menu': (val: boolean) => boolean;
|
|
16819
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
17010
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
16820
17011
|
reverse: boolean;
|
|
16821
17012
|
type: string;
|
|
16822
17013
|
error: boolean;
|
|
@@ -17096,7 +17287,7 @@ declare const VSelectionControl: {
|
|
|
17096
17287
|
trueValue: null;
|
|
17097
17288
|
falseValue: null;
|
|
17098
17289
|
value: null;
|
|
17099
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17290
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "inline" | "error" | "disabled" | "multiple" | "readonly" | "density" | "ripple" | "valueComparator">;
|
|
17100
17291
|
$attrs: {
|
|
17101
17292
|
[x: string]: unknown;
|
|
17102
17293
|
};
|
|
@@ -17144,12 +17335,12 @@ declare const VSelectionControl: {
|
|
|
17144
17335
|
trueValue: null;
|
|
17145
17336
|
falseValue: null;
|
|
17146
17337
|
value: null;
|
|
17147
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17338
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
17148
17339
|
isFocused: Ref<boolean>;
|
|
17149
17340
|
input: Ref<HTMLInputElement | undefined>;
|
|
17150
17341
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17151
17342
|
'update:modelValue': (val: any) => boolean;
|
|
17152
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17343
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
17153
17344
|
inline: boolean;
|
|
17154
17345
|
error: boolean;
|
|
17155
17346
|
disabled: boolean;
|
|
@@ -17212,7 +17403,7 @@ declare const VSelectionControl: {
|
|
|
17212
17403
|
trueValue: null;
|
|
17213
17404
|
falseValue: null;
|
|
17214
17405
|
value: null;
|
|
17215
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17406
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.ShallowUnwrapRef<{
|
|
17216
17407
|
isFocused: Ref<boolean>;
|
|
17217
17408
|
input: Ref<HTMLInputElement | undefined>;
|
|
17218
17409
|
}> & {} & vue.ComponentCustomProperties;
|
|
@@ -17253,12 +17444,12 @@ declare const VSelectionControl: {
|
|
|
17253
17444
|
trueValue: null;
|
|
17254
17445
|
falseValue: null;
|
|
17255
17446
|
value: null;
|
|
17256
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17447
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
17257
17448
|
isFocused: Ref<boolean>;
|
|
17258
17449
|
input: Ref<HTMLInputElement | undefined>;
|
|
17259
17450
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17260
17451
|
'update:modelValue': (val: any) => boolean;
|
|
17261
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17452
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
17262
17453
|
inline: boolean;
|
|
17263
17454
|
error: boolean;
|
|
17264
17455
|
disabled: boolean;
|
|
@@ -20327,7 +20518,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20327
20518
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20328
20519
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20329
20520
|
};
|
|
20330
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
20521
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
20331
20522
|
'click:control': (e: MouseEvent) => true;
|
|
20332
20523
|
'update:focused': (focused: boolean) => true;
|
|
20333
20524
|
'update:modelValue': (val: string) => true;
|
|
@@ -20886,7 +21077,7 @@ declare const VTextField: {
|
|
|
20886
21077
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20887
21078
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20888
21079
|
};
|
|
20889
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
21080
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`> & Omit<Omit<{
|
|
20890
21081
|
$: vue.ComponentInternalInstance;
|
|
20891
21082
|
$data: {};
|
|
20892
21083
|
$props: Partial<{
|
|
@@ -20932,7 +21123,7 @@ declare const VTextField: {
|
|
|
20932
21123
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
20933
21124
|
focused: BooleanConstructor;
|
|
20934
21125
|
id: StringConstructor;
|
|
20935
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21126
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
20936
21127
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20937
21128
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20938
21129
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -20979,7 +21170,7 @@ declare const VTextField: {
|
|
|
20979
21170
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
20980
21171
|
focused: BooleanConstructor;
|
|
20981
21172
|
id: StringConstructor;
|
|
20982
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21173
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
20983
21174
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20984
21175
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20985
21176
|
}, {
|
|
@@ -20988,7 +21179,7 @@ declare const VTextField: {
|
|
|
20988
21179
|
'click:control': (e: MouseEvent) => boolean;
|
|
20989
21180
|
'update:focused': (focused: boolean) => boolean;
|
|
20990
21181
|
'update:modelValue': (val: any) => boolean;
|
|
20991
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21182
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
20992
21183
|
reverse: boolean;
|
|
20993
21184
|
error: boolean;
|
|
20994
21185
|
active: boolean;
|
|
@@ -21051,7 +21242,7 @@ declare const VTextField: {
|
|
|
21051
21242
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21052
21243
|
focused: BooleanConstructor;
|
|
21053
21244
|
id: StringConstructor;
|
|
21054
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21245
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21055
21246
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21056
21247
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21057
21248
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -21085,7 +21276,7 @@ declare const VTextField: {
|
|
|
21085
21276
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21086
21277
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21087
21278
|
};
|
|
21088
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
21279
|
+
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
21089
21280
|
'click:control': (e: MouseEvent) => boolean;
|
|
21090
21281
|
'click:input': (e: MouseEvent) => boolean;
|
|
21091
21282
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -21441,7 +21632,7 @@ declare const VTextField: {
|
|
|
21441
21632
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21442
21633
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21443
21634
|
};
|
|
21444
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
21635
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`> & Omit<Omit<{
|
|
21445
21636
|
$: vue.ComponentInternalInstance;
|
|
21446
21637
|
$data: {};
|
|
21447
21638
|
$props: Partial<{
|
|
@@ -21487,7 +21678,7 @@ declare const VTextField: {
|
|
|
21487
21678
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21488
21679
|
focused: BooleanConstructor;
|
|
21489
21680
|
id: StringConstructor;
|
|
21490
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21681
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21491
21682
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21492
21683
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21493
21684
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -21534,7 +21725,7 @@ declare const VTextField: {
|
|
|
21534
21725
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21535
21726
|
focused: BooleanConstructor;
|
|
21536
21727
|
id: StringConstructor;
|
|
21537
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21728
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21538
21729
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21539
21730
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21540
21731
|
}, {
|
|
@@ -21543,7 +21734,7 @@ declare const VTextField: {
|
|
|
21543
21734
|
'click:control': (e: MouseEvent) => boolean;
|
|
21544
21735
|
'update:focused': (focused: boolean) => boolean;
|
|
21545
21736
|
'update:modelValue': (val: any) => boolean;
|
|
21546
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21737
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
21547
21738
|
reverse: boolean;
|
|
21548
21739
|
error: boolean;
|
|
21549
21740
|
active: boolean;
|
|
@@ -21606,7 +21797,7 @@ declare const VTextField: {
|
|
|
21606
21797
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21607
21798
|
focused: BooleanConstructor;
|
|
21608
21799
|
id: StringConstructor;
|
|
21609
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21800
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21610
21801
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21611
21802
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21612
21803
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -21640,7 +21831,7 @@ declare const VTextField: {
|
|
|
21640
21831
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21641
21832
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21642
21833
|
};
|
|
21643
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
21834
|
+
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
21644
21835
|
__isFragment?: undefined;
|
|
21645
21836
|
__isTeleport?: undefined;
|
|
21646
21837
|
__isSuspense?: undefined;
|
|
@@ -21950,7 +22141,7 @@ declare const VTextField: {
|
|
|
21950
22141
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21951
22142
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21952
22143
|
};
|
|
21953
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
22144
|
+
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`> & Omit<Omit<{
|
|
21954
22145
|
$: vue.ComponentInternalInstance;
|
|
21955
22146
|
$data: {};
|
|
21956
22147
|
$props: Partial<{
|
|
@@ -21996,7 +22187,7 @@ declare const VTextField: {
|
|
|
21996
22187
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21997
22188
|
focused: BooleanConstructor;
|
|
21998
22189
|
id: StringConstructor;
|
|
21999
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22190
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22000
22191
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22001
22192
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22002
22193
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -22043,7 +22234,7 @@ declare const VTextField: {
|
|
|
22043
22234
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22044
22235
|
focused: BooleanConstructor;
|
|
22045
22236
|
id: StringConstructor;
|
|
22046
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22237
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22047
22238
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22048
22239
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22049
22240
|
}, {
|
|
@@ -22052,7 +22243,7 @@ declare const VTextField: {
|
|
|
22052
22243
|
'click:control': (e: MouseEvent) => boolean;
|
|
22053
22244
|
'update:focused': (focused: boolean) => boolean;
|
|
22054
22245
|
'update:modelValue': (val: any) => boolean;
|
|
22055
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22246
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
22056
22247
|
reverse: boolean;
|
|
22057
22248
|
error: boolean;
|
|
22058
22249
|
active: boolean;
|
|
@@ -22115,7 +22306,7 @@ declare const VTextField: {
|
|
|
22115
22306
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22116
22307
|
focused: BooleanConstructor;
|
|
22117
22308
|
id: StringConstructor;
|
|
22118
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22309
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22119
22310
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22120
22311
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22121
22312
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -22149,7 +22340,7 @@ declare const VTextField: {
|
|
|
22149
22340
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22150
22341
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22151
22342
|
};
|
|
22152
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
22343
|
+
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22153
22344
|
'click:control': (e: MouseEvent) => boolean;
|
|
22154
22345
|
'click:input': (e: MouseEvent) => boolean;
|
|
22155
22346
|
'update:focused': (focused: boolean) => boolean;
|