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
package/dist/vuetify.d.ts
CHANGED
|
@@ -397,6 +397,14 @@ declare const VApp: vue.DefineComponent<{
|
|
|
397
397
|
declare type VApp = InstanceType<typeof VApp>;
|
|
398
398
|
|
|
399
399
|
declare type Density$1 = null | 'prominent' | 'default' | 'comfortable' | 'compact';
|
|
400
|
+
declare type VToolbarSlots = MakeSlots<{
|
|
401
|
+
default: [];
|
|
402
|
+
image: [];
|
|
403
|
+
prepend: [];
|
|
404
|
+
append: [];
|
|
405
|
+
title: [];
|
|
406
|
+
extension: [];
|
|
407
|
+
}>;
|
|
400
408
|
declare const VToolbar: {
|
|
401
409
|
new (...args: any[]): {
|
|
402
410
|
$: vue.ComponentInternalInstance;
|
|
@@ -638,75 +646,254 @@ declare const VToolbar: {
|
|
|
638
646
|
extensionHeight: string | number;
|
|
639
647
|
floating: boolean;
|
|
640
648
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
641
|
-
$props: SlotsToProps<
|
|
642
|
-
default: [];
|
|
643
|
-
image: [];
|
|
644
|
-
prepend: [];
|
|
645
|
-
append: [];
|
|
646
|
-
title: [];
|
|
647
|
-
extension: [];
|
|
648
|
-
}>;
|
|
649
|
+
$props: SlotsToProps<VToolbarSlots>;
|
|
649
650
|
});
|
|
650
651
|
declare type VToolbar = InstanceType<typeof VToolbar>;
|
|
651
652
|
|
|
652
|
-
declare const VAppBar:
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
653
|
+
declare const VAppBar: {
|
|
654
|
+
new (...args: any[]): {
|
|
655
|
+
$: vue.ComponentInternalInstance;
|
|
656
|
+
$data: {};
|
|
657
|
+
$props: Partial<{
|
|
658
|
+
flat: boolean;
|
|
659
|
+
absolute: boolean;
|
|
660
|
+
location: "top" | "bottom";
|
|
661
|
+
height: string | number;
|
|
662
|
+
order: string | number;
|
|
663
|
+
tag: string;
|
|
664
|
+
collapse: boolean;
|
|
665
|
+
rounded: string | number | boolean;
|
|
666
|
+
density: Density$1;
|
|
667
|
+
extended: boolean;
|
|
668
|
+
extensionHeight: string | number;
|
|
669
|
+
floating: boolean;
|
|
670
|
+
modelValue: boolean;
|
|
671
|
+
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
672
|
+
height: {
|
|
673
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
674
|
+
default: number;
|
|
675
|
+
};
|
|
676
|
+
name: {
|
|
677
|
+
type: StringConstructor;
|
|
678
|
+
};
|
|
679
|
+
order: {
|
|
680
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
681
|
+
default: number;
|
|
682
|
+
};
|
|
683
|
+
absolute: BooleanConstructor;
|
|
684
|
+
theme: StringConstructor;
|
|
685
|
+
tag: Omit<{
|
|
686
|
+
type: StringConstructor;
|
|
687
|
+
default: string;
|
|
688
|
+
}, "type" | "default"> & {
|
|
689
|
+
type: PropType<string>;
|
|
690
|
+
default: string;
|
|
691
|
+
};
|
|
692
|
+
rounded: {
|
|
693
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
694
|
+
default: undefined;
|
|
695
|
+
};
|
|
696
|
+
elevation: {
|
|
697
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
698
|
+
validator(v: any): boolean;
|
|
699
|
+
};
|
|
700
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
701
|
+
collapse: BooleanConstructor;
|
|
702
|
+
color: StringConstructor;
|
|
703
|
+
density: {
|
|
704
|
+
type: PropType<Density$1>;
|
|
705
|
+
default: string;
|
|
706
|
+
validator: (v: any) => boolean;
|
|
707
|
+
};
|
|
708
|
+
extended: BooleanConstructor;
|
|
709
|
+
extensionHeight: {
|
|
710
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
711
|
+
default: number;
|
|
712
|
+
};
|
|
713
|
+
flat: BooleanConstructor;
|
|
714
|
+
floating: BooleanConstructor;
|
|
715
|
+
image: StringConstructor;
|
|
716
|
+
title: StringConstructor;
|
|
717
|
+
modelValue: {
|
|
718
|
+
type: BooleanConstructor;
|
|
719
|
+
default: boolean;
|
|
720
|
+
};
|
|
721
|
+
location: {
|
|
722
|
+
type: PropType<"top" | "bottom">;
|
|
723
|
+
default: string;
|
|
724
|
+
validator: (value: any) => boolean;
|
|
725
|
+
};
|
|
726
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
727
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
728
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "modelValue">;
|
|
729
|
+
$attrs: {
|
|
730
|
+
[x: string]: unknown;
|
|
731
|
+
};
|
|
732
|
+
$refs: {
|
|
733
|
+
[x: string]: unknown;
|
|
734
|
+
};
|
|
735
|
+
$slots: Readonly<{
|
|
736
|
+
[name: string]: vue.Slot | undefined;
|
|
737
|
+
}>;
|
|
738
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
739
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
740
|
+
$emit: (event: "update:modelValue", value: boolean) => void;
|
|
741
|
+
$el: any;
|
|
742
|
+
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
743
|
+
height: {
|
|
744
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
745
|
+
default: number;
|
|
746
|
+
};
|
|
747
|
+
name: {
|
|
748
|
+
type: StringConstructor;
|
|
749
|
+
};
|
|
750
|
+
order: {
|
|
751
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
752
|
+
default: number;
|
|
753
|
+
};
|
|
754
|
+
absolute: BooleanConstructor;
|
|
755
|
+
theme: StringConstructor;
|
|
756
|
+
tag: Omit<{
|
|
757
|
+
type: StringConstructor;
|
|
758
|
+
default: string;
|
|
759
|
+
}, "type" | "default"> & {
|
|
760
|
+
type: PropType<string>;
|
|
761
|
+
default: string;
|
|
762
|
+
};
|
|
763
|
+
rounded: {
|
|
764
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
765
|
+
default: undefined;
|
|
766
|
+
};
|
|
767
|
+
elevation: {
|
|
768
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
769
|
+
validator(v: any): boolean;
|
|
770
|
+
};
|
|
771
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
772
|
+
collapse: BooleanConstructor;
|
|
773
|
+
color: StringConstructor;
|
|
774
|
+
density: {
|
|
775
|
+
type: PropType<Density$1>;
|
|
776
|
+
default: string;
|
|
777
|
+
validator: (v: any) => boolean;
|
|
778
|
+
};
|
|
779
|
+
extended: BooleanConstructor;
|
|
780
|
+
extensionHeight: {
|
|
781
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
782
|
+
default: number;
|
|
783
|
+
};
|
|
784
|
+
flat: BooleanConstructor;
|
|
785
|
+
floating: BooleanConstructor;
|
|
786
|
+
image: StringConstructor;
|
|
787
|
+
title: StringConstructor;
|
|
788
|
+
modelValue: {
|
|
789
|
+
type: BooleanConstructor;
|
|
790
|
+
default: boolean;
|
|
791
|
+
};
|
|
792
|
+
location: {
|
|
793
|
+
type: PropType<"top" | "bottom">;
|
|
794
|
+
default: string;
|
|
795
|
+
validator: (value: any) => boolean;
|
|
796
|
+
};
|
|
797
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
798
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
799
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
800
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
801
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">, string, {
|
|
802
|
+
flat: boolean;
|
|
803
|
+
absolute: boolean;
|
|
804
|
+
location: "top" | "bottom";
|
|
805
|
+
height: string | number;
|
|
806
|
+
order: string | number;
|
|
807
|
+
tag: string;
|
|
808
|
+
collapse: boolean;
|
|
809
|
+
rounded: string | number | boolean;
|
|
810
|
+
density: Density$1;
|
|
811
|
+
extended: boolean;
|
|
812
|
+
extensionHeight: string | number;
|
|
813
|
+
floating: boolean;
|
|
814
|
+
modelValue: boolean;
|
|
815
|
+
}> & {
|
|
816
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
817
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
818
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
819
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
820
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
821
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
822
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
823
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
824
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
825
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
826
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
827
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
828
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
829
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
830
|
+
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;
|
|
831
|
+
};
|
|
832
|
+
$forceUpdate: () => void;
|
|
833
|
+
$nextTick: typeof vue.nextTick;
|
|
834
|
+
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
835
|
+
} & Readonly<vue.ExtractPropTypes<Omit<{
|
|
836
|
+
height: {
|
|
837
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
838
|
+
default: number;
|
|
839
|
+
};
|
|
840
|
+
name: {
|
|
841
|
+
type: StringConstructor;
|
|
842
|
+
};
|
|
843
|
+
order: {
|
|
844
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
845
|
+
default: number;
|
|
846
|
+
};
|
|
847
|
+
absolute: BooleanConstructor;
|
|
848
|
+
theme: StringConstructor;
|
|
849
|
+
tag: Omit<{
|
|
850
|
+
type: StringConstructor;
|
|
851
|
+
default: string;
|
|
852
|
+
}, "type" | "default"> & {
|
|
853
|
+
type: PropType<string>;
|
|
854
|
+
default: string;
|
|
855
|
+
};
|
|
856
|
+
rounded: {
|
|
857
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
858
|
+
default: undefined;
|
|
859
|
+
};
|
|
860
|
+
elevation: {
|
|
861
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
862
|
+
validator(v: any): boolean;
|
|
863
|
+
};
|
|
864
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
865
|
+
collapse: BooleanConstructor;
|
|
866
|
+
color: StringConstructor;
|
|
867
|
+
density: {
|
|
868
|
+
type: PropType<Density$1>;
|
|
869
|
+
default: string;
|
|
870
|
+
validator: (v: any) => boolean;
|
|
871
|
+
};
|
|
872
|
+
extended: BooleanConstructor;
|
|
873
|
+
extensionHeight: {
|
|
874
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
875
|
+
default: number;
|
|
876
|
+
};
|
|
877
|
+
flat: BooleanConstructor;
|
|
878
|
+
floating: BooleanConstructor;
|
|
879
|
+
image: StringConstructor;
|
|
880
|
+
title: StringConstructor;
|
|
881
|
+
modelValue: {
|
|
882
|
+
type: BooleanConstructor;
|
|
883
|
+
default: boolean;
|
|
884
|
+
};
|
|
885
|
+
location: {
|
|
886
|
+
type: PropType<"top" | "bottom">;
|
|
887
|
+
default: string;
|
|
888
|
+
validator: (value: any) => boolean;
|
|
889
|
+
};
|
|
890
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
891
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
892
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties;
|
|
893
|
+
__isFragment?: undefined;
|
|
894
|
+
__isTeleport?: undefined;
|
|
895
|
+
__isSuspense?: undefined;
|
|
896
|
+
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
710
897
|
height: {
|
|
711
898
|
type: (StringConstructor | NumberConstructor)[];
|
|
712
899
|
default: number;
|
|
@@ -761,9 +948,11 @@ declare const VAppBar: vue.DefineComponent<{
|
|
|
761
948
|
default: string;
|
|
762
949
|
validator: (value: any) => boolean;
|
|
763
950
|
};
|
|
764
|
-
}
|
|
951
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">>> & {
|
|
765
952
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
766
|
-
}, {
|
|
953
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
954
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
955
|
+
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:image" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:extension">, string, {
|
|
767
956
|
flat: boolean;
|
|
768
957
|
absolute: boolean;
|
|
769
958
|
location: "top" | "bottom";
|
|
@@ -777,7 +966,9 @@ declare const VAppBar: vue.DefineComponent<{
|
|
|
777
966
|
extensionHeight: string | number;
|
|
778
967
|
floating: boolean;
|
|
779
968
|
modelValue: boolean;
|
|
780
|
-
}
|
|
969
|
+
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
970
|
+
$props: SlotsToProps<VToolbarSlots>;
|
|
971
|
+
});
|
|
781
972
|
declare type VAppBar = InstanceType<typeof VAppBar>;
|
|
782
973
|
|
|
783
974
|
declare const VAppBarNavIcon: vue.DefineComponent<{
|
|
@@ -1334,7 +1525,7 @@ declare const VField: {
|
|
|
1334
1525
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1335
1526
|
focused: BooleanConstructor;
|
|
1336
1527
|
id: StringConstructor;
|
|
1337
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1528
|
+
}, "$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">>> & {
|
|
1338
1529
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1339
1530
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1340
1531
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -1381,7 +1572,7 @@ declare const VField: {
|
|
|
1381
1572
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1382
1573
|
focused: BooleanConstructor;
|
|
1383
1574
|
id: StringConstructor;
|
|
1384
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1575
|
+
}, "$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">>> & {
|
|
1385
1576
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1386
1577
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1387
1578
|
}, {
|
|
@@ -1390,7 +1581,7 @@ declare const VField: {
|
|
|
1390
1581
|
'click:control': (e: MouseEvent) => boolean;
|
|
1391
1582
|
'update:focused': (focused: boolean) => boolean;
|
|
1392
1583
|
'update:modelValue': (val: any) => boolean;
|
|
1393
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1584
|
+
}, "$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, {
|
|
1394
1585
|
reverse: boolean;
|
|
1395
1586
|
error: boolean;
|
|
1396
1587
|
active: boolean;
|
|
@@ -1453,7 +1644,7 @@ declare const VField: {
|
|
|
1453
1644
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1454
1645
|
focused: BooleanConstructor;
|
|
1455
1646
|
id: StringConstructor;
|
|
1456
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1647
|
+
}, "$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">>> & {
|
|
1457
1648
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1458
1649
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1459
1650
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -1492,7 +1683,7 @@ declare const VField: {
|
|
|
1492
1683
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1493
1684
|
focused: BooleanConstructor;
|
|
1494
1685
|
id: StringConstructor;
|
|
1495
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1686
|
+
}, "$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">>> & {
|
|
1496
1687
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1497
1688
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1498
1689
|
}, {
|
|
@@ -1501,7 +1692,7 @@ declare const VField: {
|
|
|
1501
1692
|
'click:control': (e: MouseEvent) => boolean;
|
|
1502
1693
|
'update:focused': (focused: boolean) => boolean;
|
|
1503
1694
|
'update:modelValue': (val: any) => boolean;
|
|
1504
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1695
|
+
}, "$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, {
|
|
1505
1696
|
reverse: boolean;
|
|
1506
1697
|
error: boolean;
|
|
1507
1698
|
active: boolean;
|
|
@@ -1996,7 +2187,7 @@ declare const VAutocomplete: {
|
|
|
1996
2187
|
};
|
|
1997
2188
|
noFilter: BooleanConstructor;
|
|
1998
2189
|
search: StringConstructor;
|
|
1999
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2190
|
+
}, "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">>> & {
|
|
2000
2191
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2001
2192
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2002
2193
|
} & 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">;
|
|
@@ -2339,7 +2530,7 @@ declare const VAutocomplete: {
|
|
|
2339
2530
|
};
|
|
2340
2531
|
noFilter: BooleanConstructor;
|
|
2341
2532
|
search: StringConstructor;
|
|
2342
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2533
|
+
}, "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">>> & {
|
|
2343
2534
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2344
2535
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2345
2536
|
}, {
|
|
@@ -2360,7 +2551,7 @@ declare const VAutocomplete: {
|
|
|
2360
2551
|
'update:search': (val: any) => boolean;
|
|
2361
2552
|
'update:modelValue': (val: any) => boolean;
|
|
2362
2553
|
'update:menu': (val: boolean) => boolean;
|
|
2363
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2554
|
+
}, "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, {
|
|
2364
2555
|
reverse: boolean;
|
|
2365
2556
|
type: string;
|
|
2366
2557
|
error: boolean;
|
|
@@ -2749,7 +2940,7 @@ declare const VAutocomplete: {
|
|
|
2749
2940
|
};
|
|
2750
2941
|
noFilter: BooleanConstructor;
|
|
2751
2942
|
search: StringConstructor;
|
|
2752
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
2943
|
+
}, "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">>> & {
|
|
2753
2944
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2754
2945
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2755
2946
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -3096,7 +3287,7 @@ declare const VAutocomplete: {
|
|
|
3096
3287
|
};
|
|
3097
3288
|
noFilter: BooleanConstructor;
|
|
3098
3289
|
search: StringConstructor;
|
|
3099
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
3290
|
+
}, "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">>> & {
|
|
3100
3291
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
3101
3292
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
3102
3293
|
}, {
|
|
@@ -3117,7 +3308,7 @@ declare const VAutocomplete: {
|
|
|
3117
3308
|
'update:search': (val: any) => boolean;
|
|
3118
3309
|
'update:modelValue': (val: any) => boolean;
|
|
3119
3310
|
'update:menu': (val: boolean) => boolean;
|
|
3120
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
3311
|
+
}, "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, {
|
|
3121
3312
|
reverse: boolean;
|
|
3122
3313
|
type: string;
|
|
3123
3314
|
error: boolean;
|
|
@@ -5743,7 +5934,7 @@ declare const VCombobox: {
|
|
|
5743
5934
|
};
|
|
5744
5935
|
noFilter: BooleanConstructor;
|
|
5745
5936
|
delimiters: PropType<string[]>;
|
|
5746
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
5937
|
+
}, "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">>> & {
|
|
5747
5938
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5748
5939
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5749
5940
|
} & 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">;
|
|
@@ -6092,7 +6283,7 @@ declare const VCombobox: {
|
|
|
6092
6283
|
};
|
|
6093
6284
|
noFilter: BooleanConstructor;
|
|
6094
6285
|
delimiters: PropType<string[]>;
|
|
6095
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6286
|
+
}, "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">>> & {
|
|
6096
6287
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6097
6288
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6098
6289
|
}, {
|
|
@@ -6112,7 +6303,7 @@ declare const VCombobox: {
|
|
|
6112
6303
|
'update:modelValue': (val: any) => boolean;
|
|
6113
6304
|
'update:search': (val: string) => boolean;
|
|
6114
6305
|
'update:menu': (val: boolean) => boolean;
|
|
6115
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6306
|
+
}, "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, {
|
|
6116
6307
|
reverse: boolean;
|
|
6117
6308
|
type: string;
|
|
6118
6309
|
error: boolean;
|
|
@@ -6507,7 +6698,7 @@ declare const VCombobox: {
|
|
|
6507
6698
|
};
|
|
6508
6699
|
noFilter: BooleanConstructor;
|
|
6509
6700
|
delimiters: PropType<string[]>;
|
|
6510
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
6701
|
+
}, "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">>> & {
|
|
6511
6702
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6512
6703
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6513
6704
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -6859,7 +7050,7 @@ declare const VCombobox: {
|
|
|
6859
7050
|
};
|
|
6860
7051
|
noFilter: BooleanConstructor;
|
|
6861
7052
|
delimiters: PropType<string[]>;
|
|
6862
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
7053
|
+
}, "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">>> & {
|
|
6863
7054
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
6864
7055
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
6865
7056
|
}, {
|
|
@@ -6879,7 +7070,7 @@ declare const VCombobox: {
|
|
|
6879
7070
|
'update:modelValue': (val: any) => boolean;
|
|
6880
7071
|
'update:search': (val: string) => boolean;
|
|
6881
7072
|
'update:menu': (val: boolean) => boolean;
|
|
6882
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
7073
|
+
}, "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, {
|
|
6883
7074
|
reverse: boolean;
|
|
6884
7075
|
type: string;
|
|
6885
7076
|
error: boolean;
|
|
@@ -9983,7 +10174,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
9983
10174
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
9984
10175
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
9985
10176
|
};
|
|
9986
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
10177
|
+
}, "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, {
|
|
9987
10178
|
'click:control': (e: MouseEvent) => true;
|
|
9988
10179
|
'update:modelValue': (files: File[]) => true;
|
|
9989
10180
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -15911,7 +16102,7 @@ declare const VSelect: {
|
|
|
15911
16102
|
default: string;
|
|
15912
16103
|
};
|
|
15913
16104
|
openOnClear: BooleanConstructor;
|
|
15914
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16105
|
+
}, "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">>> & {
|
|
15915
16106
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
15916
16107
|
} & 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">;
|
|
15917
16108
|
$attrs: {
|
|
@@ -16253,7 +16444,7 @@ declare const VSelect: {
|
|
|
16253
16444
|
default: string;
|
|
16254
16445
|
};
|
|
16255
16446
|
openOnClear: BooleanConstructor;
|
|
16256
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16447
|
+
}, "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">>> & {
|
|
16257
16448
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16258
16449
|
}, {
|
|
16259
16450
|
menu: vue.Ref<boolean> & {
|
|
@@ -16263,7 +16454,7 @@ declare const VSelect: {
|
|
|
16263
16454
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
16264
16455
|
'update:modelValue': (val: any) => boolean;
|
|
16265
16456
|
'update:menu': (val: boolean) => boolean;
|
|
16266
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16457
|
+
}, "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, {
|
|
16267
16458
|
reverse: boolean;
|
|
16268
16459
|
type: string;
|
|
16269
16460
|
error: boolean;
|
|
@@ -16655,7 +16846,7 @@ declare const VSelect: {
|
|
|
16655
16846
|
default: string;
|
|
16656
16847
|
};
|
|
16657
16848
|
openOnClear: BooleanConstructor;
|
|
16658
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
16849
|
+
}, "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">>> & {
|
|
16659
16850
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16660
16851
|
} & vue.ShallowUnwrapRef<{
|
|
16661
16852
|
menu: vue.Ref<boolean> & {
|
|
@@ -16992,7 +17183,7 @@ declare const VSelect: {
|
|
|
16992
17183
|
default: string;
|
|
16993
17184
|
};
|
|
16994
17185
|
openOnClear: BooleanConstructor;
|
|
16995
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
17186
|
+
}, "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">>> & {
|
|
16996
17187
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16997
17188
|
}, {
|
|
16998
17189
|
menu: vue.Ref<boolean> & {
|
|
@@ -17002,7 +17193,7 @@ declare const VSelect: {
|
|
|
17002
17193
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17003
17194
|
'update:modelValue': (val: any) => boolean;
|
|
17004
17195
|
'update:menu': (val: boolean) => boolean;
|
|
17005
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
17196
|
+
}, "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, {
|
|
17006
17197
|
reverse: boolean;
|
|
17007
17198
|
type: string;
|
|
17008
17199
|
error: boolean;
|
|
@@ -17282,7 +17473,7 @@ declare const VSelectionControl: {
|
|
|
17282
17473
|
trueValue: null;
|
|
17283
17474
|
falseValue: null;
|
|
17284
17475
|
value: null;
|
|
17285
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17476
|
+
}, "$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">;
|
|
17286
17477
|
$attrs: {
|
|
17287
17478
|
[x: string]: unknown;
|
|
17288
17479
|
};
|
|
@@ -17330,12 +17521,12 @@ declare const VSelectionControl: {
|
|
|
17330
17521
|
trueValue: null;
|
|
17331
17522
|
falseValue: null;
|
|
17332
17523
|
value: null;
|
|
17333
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17524
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
17334
17525
|
isFocused: Ref<boolean>;
|
|
17335
17526
|
input: Ref<HTMLInputElement | undefined>;
|
|
17336
17527
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17337
17528
|
'update:modelValue': (val: any) => boolean;
|
|
17338
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17529
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
17339
17530
|
inline: boolean;
|
|
17340
17531
|
error: boolean;
|
|
17341
17532
|
disabled: boolean;
|
|
@@ -17398,7 +17589,7 @@ declare const VSelectionControl: {
|
|
|
17398
17589
|
trueValue: null;
|
|
17399
17590
|
falseValue: null;
|
|
17400
17591
|
value: null;
|
|
17401
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17592
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.ShallowUnwrapRef<{
|
|
17402
17593
|
isFocused: Ref<boolean>;
|
|
17403
17594
|
input: Ref<HTMLInputElement | undefined>;
|
|
17404
17595
|
}> & {} & vue.ComponentCustomProperties;
|
|
@@ -17439,12 +17630,12 @@ declare const VSelectionControl: {
|
|
|
17439
17630
|
trueValue: null;
|
|
17440
17631
|
falseValue: null;
|
|
17441
17632
|
value: null;
|
|
17442
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17633
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
17443
17634
|
isFocused: Ref<boolean>;
|
|
17444
17635
|
input: Ref<HTMLInputElement | undefined>;
|
|
17445
17636
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
17446
17637
|
'update:modelValue': (val: any) => boolean;
|
|
17447
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
17638
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
17448
17639
|
inline: boolean;
|
|
17449
17640
|
error: boolean;
|
|
17450
17641
|
disabled: boolean;
|
|
@@ -20513,7 +20704,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20513
20704
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20514
20705
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
20515
20706
|
};
|
|
20516
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
20707
|
+
}, "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, {
|
|
20517
20708
|
'click:control': (e: MouseEvent) => true;
|
|
20518
20709
|
'update:focused': (focused: boolean) => true;
|
|
20519
20710
|
'update:modelValue': (val: string) => true;
|
|
@@ -21072,7 +21263,7 @@ declare const VTextField: {
|
|
|
21072
21263
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21073
21264
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21074
21265
|
};
|
|
21075
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
21266
|
+
}, "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<{
|
|
21076
21267
|
$: vue.ComponentInternalInstance;
|
|
21077
21268
|
$data: {};
|
|
21078
21269
|
$props: Partial<{
|
|
@@ -21118,7 +21309,7 @@ declare const VTextField: {
|
|
|
21118
21309
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21119
21310
|
focused: BooleanConstructor;
|
|
21120
21311
|
id: StringConstructor;
|
|
21121
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21312
|
+
}, "$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">>> & {
|
|
21122
21313
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21123
21314
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21124
21315
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -21165,7 +21356,7 @@ declare const VTextField: {
|
|
|
21165
21356
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21166
21357
|
focused: BooleanConstructor;
|
|
21167
21358
|
id: StringConstructor;
|
|
21168
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21359
|
+
}, "$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">>> & {
|
|
21169
21360
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21170
21361
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21171
21362
|
}, {
|
|
@@ -21174,7 +21365,7 @@ declare const VTextField: {
|
|
|
21174
21365
|
'click:control': (e: MouseEvent) => boolean;
|
|
21175
21366
|
'update:focused': (focused: boolean) => boolean;
|
|
21176
21367
|
'update:modelValue': (val: any) => boolean;
|
|
21177
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21368
|
+
}, "$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, {
|
|
21178
21369
|
reverse: boolean;
|
|
21179
21370
|
error: boolean;
|
|
21180
21371
|
active: boolean;
|
|
@@ -21237,7 +21428,7 @@ declare const VTextField: {
|
|
|
21237
21428
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21238
21429
|
focused: BooleanConstructor;
|
|
21239
21430
|
id: StringConstructor;
|
|
21240
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21431
|
+
}, "$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">>> & {
|
|
21241
21432
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21242
21433
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21243
21434
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -21271,7 +21462,7 @@ declare const VTextField: {
|
|
|
21271
21462
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21272
21463
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21273
21464
|
};
|
|
21274
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
21465
|
+
}, "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<{
|
|
21275
21466
|
'click:control': (e: MouseEvent) => boolean;
|
|
21276
21467
|
'click:input': (e: MouseEvent) => boolean;
|
|
21277
21468
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -21627,7 +21818,7 @@ declare const VTextField: {
|
|
|
21627
21818
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21628
21819
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
21629
21820
|
};
|
|
21630
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
21821
|
+
}, "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<{
|
|
21631
21822
|
$: vue.ComponentInternalInstance;
|
|
21632
21823
|
$data: {};
|
|
21633
21824
|
$props: Partial<{
|
|
@@ -21673,7 +21864,7 @@ declare const VTextField: {
|
|
|
21673
21864
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21674
21865
|
focused: BooleanConstructor;
|
|
21675
21866
|
id: StringConstructor;
|
|
21676
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21867
|
+
}, "$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">>> & {
|
|
21677
21868
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21678
21869
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21679
21870
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -21720,7 +21911,7 @@ declare const VTextField: {
|
|
|
21720
21911
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21721
21912
|
focused: BooleanConstructor;
|
|
21722
21913
|
id: StringConstructor;
|
|
21723
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21914
|
+
}, "$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">>> & {
|
|
21724
21915
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21725
21916
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21726
21917
|
}, {
|
|
@@ -21729,7 +21920,7 @@ declare const VTextField: {
|
|
|
21729
21920
|
'click:control': (e: MouseEvent) => boolean;
|
|
21730
21921
|
'update:focused': (focused: boolean) => boolean;
|
|
21731
21922
|
'update:modelValue': (val: any) => boolean;
|
|
21732
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21923
|
+
}, "$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, {
|
|
21733
21924
|
reverse: boolean;
|
|
21734
21925
|
error: boolean;
|
|
21735
21926
|
active: boolean;
|
|
@@ -21792,7 +21983,7 @@ declare const VTextField: {
|
|
|
21792
21983
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
21793
21984
|
focused: BooleanConstructor;
|
|
21794
21985
|
id: StringConstructor;
|
|
21795
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
21986
|
+
}, "$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">>> & {
|
|
21796
21987
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21797
21988
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21798
21989
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -21826,7 +22017,7 @@ declare const VTextField: {
|
|
|
21826
22017
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21827
22018
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21828
22019
|
};
|
|
21829
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
22020
|
+
}, "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;
|
|
21830
22021
|
__isFragment?: undefined;
|
|
21831
22022
|
__isTeleport?: undefined;
|
|
21832
22023
|
__isSuspense?: undefined;
|
|
@@ -22136,7 +22327,7 @@ declare const VTextField: {
|
|
|
22136
22327
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
22137
22328
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
22138
22329
|
};
|
|
22139
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
22330
|
+
}, "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<{
|
|
22140
22331
|
$: vue.ComponentInternalInstance;
|
|
22141
22332
|
$data: {};
|
|
22142
22333
|
$props: Partial<{
|
|
@@ -22182,7 +22373,7 @@ declare const VTextField: {
|
|
|
22182
22373
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22183
22374
|
focused: BooleanConstructor;
|
|
22184
22375
|
id: StringConstructor;
|
|
22185
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22376
|
+
}, "$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">>> & {
|
|
22186
22377
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22187
22378
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22188
22379
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -22229,7 +22420,7 @@ declare const VTextField: {
|
|
|
22229
22420
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22230
22421
|
focused: BooleanConstructor;
|
|
22231
22422
|
id: StringConstructor;
|
|
22232
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22423
|
+
}, "$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">>> & {
|
|
22233
22424
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22234
22425
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22235
22426
|
}, {
|
|
@@ -22238,7 +22429,7 @@ declare const VTextField: {
|
|
|
22238
22429
|
'click:control': (e: MouseEvent) => boolean;
|
|
22239
22430
|
'update:focused': (focused: boolean) => boolean;
|
|
22240
22431
|
'update:modelValue': (val: any) => boolean;
|
|
22241
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22432
|
+
}, "$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, {
|
|
22242
22433
|
reverse: boolean;
|
|
22243
22434
|
error: boolean;
|
|
22244
22435
|
active: boolean;
|
|
@@ -22301,7 +22492,7 @@ declare const VTextField: {
|
|
|
22301
22492
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
22302
22493
|
focused: BooleanConstructor;
|
|
22303
22494
|
id: StringConstructor;
|
|
22304
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
22495
|
+
}, "$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">>> & {
|
|
22305
22496
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22306
22497
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22307
22498
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -22335,7 +22526,7 @@ declare const VTextField: {
|
|
|
22335
22526
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22336
22527
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22337
22528
|
};
|
|
22338
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
22529
|
+
}, "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<{
|
|
22339
22530
|
'click:control': (e: MouseEvent) => boolean;
|
|
22340
22531
|
'click:input': (e: MouseEvent) => boolean;
|
|
22341
22532
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -25692,15 +25883,15 @@ declare module '@vue/runtime-core' {
|
|
|
25692
25883
|
export interface GlobalComponents {
|
|
25693
25884
|
VApp: typeof import('vuetify/components')['VApp']
|
|
25694
25885
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
25886
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
25695
25887
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
25696
25888
|
VCol: typeof import('vuetify/components')['VCol']
|
|
25697
25889
|
VRow: typeof import('vuetify/components')['VRow']
|
|
25698
25890
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
25699
25891
|
VHover: typeof import('vuetify/components')['VHover']
|
|
25700
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
25701
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25702
25892
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
25703
25893
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
25894
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25704
25895
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
25705
25896
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
25706
25897
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
@@ -25725,40 +25916,38 @@ declare module '@vue/runtime-core' {
|
|
|
25725
25916
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
25726
25917
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
25727
25918
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
25919
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
25920
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
25921
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
25728
25922
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
25729
25923
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
25730
25924
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
25731
25925
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
25926
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
25732
25927
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
25733
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
25734
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
25735
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
25736
25928
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
25737
25929
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
25738
25930
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
25931
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
25739
25932
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
25740
25933
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
25741
25934
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
25742
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
25743
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
25744
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
25745
25935
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
25936
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
25746
25937
|
VCard: typeof import('vuetify/components')['VCard']
|
|
25747
25938
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
25748
25939
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
25749
25940
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
25750
25941
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
25751
25942
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
25752
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
25753
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
25754
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
25755
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
25756
25943
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
25757
25944
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
25945
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
25758
25946
|
VChip: typeof import('vuetify/components')['VChip']
|
|
25947
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
25759
25948
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
25760
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
25761
25949
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
25950
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
25762
25951
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
25763
25952
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
25764
25953
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
@@ -25767,15 +25956,15 @@ declare module '@vue/runtime-core' {
|
|
|
25767
25956
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
25768
25957
|
VField: typeof import('vuetify/components')['VField']
|
|
25769
25958
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
25770
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
25771
25959
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
25772
|
-
|
|
25773
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
25960
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
25774
25961
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
25775
25962
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
25776
25963
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
25777
25964
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
25778
25965
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
25966
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
25967
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
25779
25968
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
25780
25969
|
VItem: typeof import('vuetify/components')['VItem']
|
|
25781
25970
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
@@ -25790,9 +25979,9 @@ declare module '@vue/runtime-core' {
|
|
|
25790
25979
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
25791
25980
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
25792
25981
|
VMain: typeof import('vuetify/components')['VMain']
|
|
25982
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
25793
25983
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
25794
25984
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
25795
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
25796
25985
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
25797
25986
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
25798
25987
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
@@ -25801,26 +25990,28 @@ declare module '@vue/runtime-core' {
|
|
|
25801
25990
|
VRating: typeof import('vuetify/components')['VRating']
|
|
25802
25991
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
25803
25992
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
25804
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
25805
25993
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
25994
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
25806
25995
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
25807
25996
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
25808
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
25809
25997
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
25998
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
25810
25999
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
25811
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
25812
26000
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
25813
26001
|
VTab: typeof import('vuetify/components')['VTab']
|
|
26002
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
25814
26003
|
VTable: typeof import('vuetify/components')['VTable']
|
|
25815
26004
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
26005
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
25816
26006
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
25817
26007
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
25818
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
25819
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
25820
26008
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
25821
26009
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
25822
26010
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
26011
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
25823
26012
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
25824
26013
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
26014
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
26015
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
25825
26016
|
}
|
|
25826
26017
|
}
|