@vuetify/nightly 3.0.2 → 3.0.4-next-20221130.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -2
- package/dist/json/importMap.json +86 -86
- package/dist/vuetify.css +118 -124
- package/dist/vuetify.d.ts +391 -200
- package/dist/vuetify.esm.js +45 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +45 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +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 +22 -22
- package/lib/components/VChip/index.d.ts +1 -1
- package/lib/components/VChipGroup/index.d.ts +1 -1
- package/lib/components/VCombobox/index.d.ts +22 -22
- package/lib/components/VExpansionPanel/index.d.ts +1 -1
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +2 -2
- 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/VPagination/index.d.ts +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 +22 -22
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VSnackbar/index.d.ts +4 -4
- package/lib/components/VTabs/VTab.css +1 -3
- package/lib/components/VTabs/VTab.sass +1 -4
- package/lib/components/VTabs/VTabs.css +0 -4
- package/lib/components/VTabs/VTabs.sass +0 -5
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs +32 -22
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +368 -177
- 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/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +23 -23
- package/package.json +1 -1
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<{
|
|
@@ -950,8 +1141,8 @@ declare const VAlert: vue.DefineComponent<{
|
|
|
950
1141
|
rounded: string | number | boolean;
|
|
951
1142
|
prominent: boolean;
|
|
952
1143
|
density: Density;
|
|
953
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
954
1144
|
modelValue: boolean;
|
|
1145
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
955
1146
|
closable: boolean;
|
|
956
1147
|
closeIcon: IconValue;
|
|
957
1148
|
closeLabel: string;
|
|
@@ -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;
|
|
@@ -1718,15 +1909,15 @@ declare const VAutocomplete: {
|
|
|
1718
1909
|
default: string;
|
|
1719
1910
|
validator: (v: any) => boolean;
|
|
1720
1911
|
};
|
|
1912
|
+
modelValue: {
|
|
1913
|
+
type: vue.PropType<any>;
|
|
1914
|
+
default: any;
|
|
1915
|
+
};
|
|
1721
1916
|
variant: {
|
|
1722
1917
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1723
1918
|
default: string;
|
|
1724
1919
|
validator: (v: any) => boolean;
|
|
1725
1920
|
};
|
|
1726
|
-
modelValue: {
|
|
1727
|
-
type: vue.PropType<any>;
|
|
1728
|
-
default: any;
|
|
1729
|
-
};
|
|
1730
1921
|
bgColor: StringConstructor;
|
|
1731
1922
|
prependIcon: vue.PropType<IconValue>;
|
|
1732
1923
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -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">;
|
|
@@ -2061,15 +2252,15 @@ declare const VAutocomplete: {
|
|
|
2061
2252
|
default: string;
|
|
2062
2253
|
validator: (v: any) => boolean;
|
|
2063
2254
|
};
|
|
2255
|
+
modelValue: {
|
|
2256
|
+
type: vue.PropType<any>;
|
|
2257
|
+
default: any;
|
|
2258
|
+
};
|
|
2064
2259
|
variant: {
|
|
2065
2260
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2066
2261
|
default: string;
|
|
2067
2262
|
validator: (v: any) => boolean;
|
|
2068
2263
|
};
|
|
2069
|
-
modelValue: {
|
|
2070
|
-
type: vue.PropType<any>;
|
|
2071
|
-
default: any;
|
|
2072
|
-
};
|
|
2073
2264
|
bgColor: StringConstructor;
|
|
2074
2265
|
prependIcon: vue.PropType<IconValue>;
|
|
2075
2266
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -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;
|
|
@@ -2471,15 +2662,15 @@ declare const VAutocomplete: {
|
|
|
2471
2662
|
default: string;
|
|
2472
2663
|
validator: (v: any) => boolean;
|
|
2473
2664
|
};
|
|
2665
|
+
modelValue: {
|
|
2666
|
+
type: vue.PropType<any>;
|
|
2667
|
+
default: any;
|
|
2668
|
+
};
|
|
2474
2669
|
variant: {
|
|
2475
2670
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2476
2671
|
default: string;
|
|
2477
2672
|
validator: (v: any) => boolean;
|
|
2478
2673
|
};
|
|
2479
|
-
modelValue: {
|
|
2480
|
-
type: vue.PropType<any>;
|
|
2481
|
-
default: any;
|
|
2482
|
-
};
|
|
2483
2674
|
bgColor: StringConstructor;
|
|
2484
2675
|
prependIcon: vue.PropType<IconValue>;
|
|
2485
2676
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -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<{
|
|
@@ -2818,15 +3009,15 @@ declare const VAutocomplete: {
|
|
|
2818
3009
|
default: string;
|
|
2819
3010
|
validator: (v: any) => boolean;
|
|
2820
3011
|
};
|
|
3012
|
+
modelValue: {
|
|
3013
|
+
type: vue.PropType<any>;
|
|
3014
|
+
default: any;
|
|
3015
|
+
};
|
|
2821
3016
|
variant: {
|
|
2822
3017
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2823
3018
|
default: string;
|
|
2824
3019
|
validator: (v: any) => boolean;
|
|
2825
3020
|
};
|
|
2826
|
-
modelValue: {
|
|
2827
|
-
type: vue.PropType<any>;
|
|
2828
|
-
default: any;
|
|
2829
|
-
};
|
|
2830
3021
|
bgColor: StringConstructor;
|
|
2831
3022
|
prependIcon: vue.PropType<IconValue>;
|
|
2832
3023
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -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;
|
|
@@ -5138,8 +5329,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5138
5329
|
tag: string;
|
|
5139
5330
|
rounded: string | number | boolean;
|
|
5140
5331
|
density: Density;
|
|
5141
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5142
5332
|
modelValue: boolean;
|
|
5333
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5143
5334
|
ripple: boolean;
|
|
5144
5335
|
closable: boolean;
|
|
5145
5336
|
closeIcon: IconValue;
|
|
@@ -5225,8 +5416,8 @@ declare const VChipGroup: vue.DefineComponent<{
|
|
|
5225
5416
|
multiple: boolean;
|
|
5226
5417
|
tag: string;
|
|
5227
5418
|
column: boolean;
|
|
5228
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5229
5419
|
modelValue: any;
|
|
5420
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5230
5421
|
selectedClass: string;
|
|
5231
5422
|
valueComparator: typeof deepEqual;
|
|
5232
5423
|
}>;
|
|
@@ -5459,15 +5650,15 @@ declare const VCombobox: {
|
|
|
5459
5650
|
default: string;
|
|
5460
5651
|
validator: (v: any) => boolean;
|
|
5461
5652
|
};
|
|
5653
|
+
modelValue: {
|
|
5654
|
+
type: PropType<any>;
|
|
5655
|
+
default: any;
|
|
5656
|
+
};
|
|
5462
5657
|
variant: {
|
|
5463
5658
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5464
5659
|
default: string;
|
|
5465
5660
|
validator: (v: any) => boolean;
|
|
5466
5661
|
};
|
|
5467
|
-
modelValue: {
|
|
5468
|
-
type: PropType<any>;
|
|
5469
|
-
default: any;
|
|
5470
|
-
};
|
|
5471
5662
|
bgColor: StringConstructor;
|
|
5472
5663
|
prependIcon: PropType<IconValue>;
|
|
5473
5664
|
appendIcon: PropType<IconValue>;
|
|
@@ -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">;
|
|
@@ -5808,15 +5999,15 @@ declare const VCombobox: {
|
|
|
5808
5999
|
default: string;
|
|
5809
6000
|
validator: (v: any) => boolean;
|
|
5810
6001
|
};
|
|
6002
|
+
modelValue: {
|
|
6003
|
+
type: PropType<any>;
|
|
6004
|
+
default: any;
|
|
6005
|
+
};
|
|
5811
6006
|
variant: {
|
|
5812
6007
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5813
6008
|
default: string;
|
|
5814
6009
|
validator: (v: any) => boolean;
|
|
5815
6010
|
};
|
|
5816
|
-
modelValue: {
|
|
5817
|
-
type: PropType<any>;
|
|
5818
|
-
default: any;
|
|
5819
|
-
};
|
|
5820
6011
|
bgColor: StringConstructor;
|
|
5821
6012
|
prependIcon: PropType<IconValue>;
|
|
5822
6013
|
appendIcon: PropType<IconValue>;
|
|
@@ -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;
|
|
@@ -6223,15 +6414,15 @@ declare const VCombobox: {
|
|
|
6223
6414
|
default: string;
|
|
6224
6415
|
validator: (v: any) => boolean;
|
|
6225
6416
|
};
|
|
6417
|
+
modelValue: {
|
|
6418
|
+
type: PropType<any>;
|
|
6419
|
+
default: any;
|
|
6420
|
+
};
|
|
6226
6421
|
variant: {
|
|
6227
6422
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6228
6423
|
default: string;
|
|
6229
6424
|
validator: (v: any) => boolean;
|
|
6230
6425
|
};
|
|
6231
|
-
modelValue: {
|
|
6232
|
-
type: PropType<any>;
|
|
6233
|
-
default: any;
|
|
6234
|
-
};
|
|
6235
6426
|
bgColor: StringConstructor;
|
|
6236
6427
|
prependIcon: PropType<IconValue>;
|
|
6237
6428
|
appendIcon: PropType<IconValue>;
|
|
@@ -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<{
|
|
@@ -6575,15 +6766,15 @@ declare const VCombobox: {
|
|
|
6575
6766
|
default: string;
|
|
6576
6767
|
validator: (v: any) => boolean;
|
|
6577
6768
|
};
|
|
6769
|
+
modelValue: {
|
|
6770
|
+
type: PropType<any>;
|
|
6771
|
+
default: any;
|
|
6772
|
+
};
|
|
6578
6773
|
variant: {
|
|
6579
6774
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6580
6775
|
default: string;
|
|
6581
6776
|
validator: (v: any) => boolean;
|
|
6582
6777
|
};
|
|
6583
|
-
modelValue: {
|
|
6584
|
-
type: PropType<any>;
|
|
6585
|
-
default: any;
|
|
6586
|
-
};
|
|
6587
6778
|
bgColor: StringConstructor;
|
|
6588
6779
|
prependIcon: PropType<IconValue>;
|
|
6589
6780
|
appendIcon: PropType<IconValue>;
|
|
@@ -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;
|
|
@@ -9512,8 +9703,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
|
|
|
9512
9703
|
multiple: boolean;
|
|
9513
9704
|
readonly: boolean;
|
|
9514
9705
|
tag: string;
|
|
9515
|
-
variant: "default" | "inset" | "accordion" | "popout";
|
|
9516
9706
|
modelValue: any;
|
|
9707
|
+
variant: "default" | "inset" | "accordion" | "popout";
|
|
9517
9708
|
}>;
|
|
9518
9709
|
declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
|
9519
9710
|
|
|
@@ -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<{
|
|
@@ -10096,8 +10287,8 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10096
10287
|
messages: string | string[];
|
|
10097
10288
|
counter: boolean;
|
|
10098
10289
|
density: Density;
|
|
10099
|
-
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
10100
10290
|
modelValue: File[];
|
|
10291
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
10101
10292
|
prependIcon: (string & {}) | IconValue;
|
|
10102
10293
|
clearIcon: IconValue;
|
|
10103
10294
|
focused: boolean;
|
|
@@ -14504,8 +14695,8 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
14504
14695
|
ellipsis: string;
|
|
14505
14696
|
rounded: string | number | boolean;
|
|
14506
14697
|
density: Density;
|
|
14507
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14508
14698
|
modelValue: number;
|
|
14699
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14509
14700
|
nextIcon: IconValue;
|
|
14510
14701
|
prevIcon: IconValue;
|
|
14511
14702
|
firstIcon: IconValue;
|
|
@@ -15645,15 +15836,15 @@ declare const VSelect: {
|
|
|
15645
15836
|
default: string;
|
|
15646
15837
|
validator: (v: any) => boolean;
|
|
15647
15838
|
};
|
|
15839
|
+
modelValue: {
|
|
15840
|
+
type: PropType<any>;
|
|
15841
|
+
default: any;
|
|
15842
|
+
};
|
|
15648
15843
|
variant: {
|
|
15649
15844
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15650
15845
|
default: string;
|
|
15651
15846
|
validator: (v: any) => boolean;
|
|
15652
15847
|
};
|
|
15653
|
-
modelValue: {
|
|
15654
|
-
type: PropType<any>;
|
|
15655
|
-
default: any;
|
|
15656
|
-
};
|
|
15657
15848
|
bgColor: StringConstructor;
|
|
15658
15849
|
prependIcon: PropType<IconValue>;
|
|
15659
15850
|
appendIcon: PropType<IconValue>;
|
|
@@ -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: {
|
|
@@ -15987,15 +16178,15 @@ declare const VSelect: {
|
|
|
15987
16178
|
default: string;
|
|
15988
16179
|
validator: (v: any) => boolean;
|
|
15989
16180
|
};
|
|
16181
|
+
modelValue: {
|
|
16182
|
+
type: PropType<any>;
|
|
16183
|
+
default: any;
|
|
16184
|
+
};
|
|
15990
16185
|
variant: {
|
|
15991
16186
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15992
16187
|
default: string;
|
|
15993
16188
|
validator: (v: any) => boolean;
|
|
15994
16189
|
};
|
|
15995
|
-
modelValue: {
|
|
15996
|
-
type: PropType<any>;
|
|
15997
|
-
default: any;
|
|
15998
|
-
};
|
|
15999
16190
|
bgColor: StringConstructor;
|
|
16000
16191
|
prependIcon: PropType<IconValue>;
|
|
16001
16192
|
appendIcon: PropType<IconValue>;
|
|
@@ -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;
|
|
@@ -16389,15 +16580,15 @@ declare const VSelect: {
|
|
|
16389
16580
|
default: string;
|
|
16390
16581
|
validator: (v: any) => boolean;
|
|
16391
16582
|
};
|
|
16583
|
+
modelValue: {
|
|
16584
|
+
type: PropType<any>;
|
|
16585
|
+
default: any;
|
|
16586
|
+
};
|
|
16392
16587
|
variant: {
|
|
16393
16588
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16394
16589
|
default: string;
|
|
16395
16590
|
validator: (v: any) => boolean;
|
|
16396
16591
|
};
|
|
16397
|
-
modelValue: {
|
|
16398
|
-
type: PropType<any>;
|
|
16399
|
-
default: any;
|
|
16400
|
-
};
|
|
16401
16592
|
bgColor: StringConstructor;
|
|
16402
16593
|
prependIcon: PropType<IconValue>;
|
|
16403
16594
|
appendIcon: PropType<IconValue>;
|
|
@@ -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> & {
|
|
@@ -16726,15 +16917,15 @@ declare const VSelect: {
|
|
|
16726
16917
|
default: string;
|
|
16727
16918
|
validator: (v: any) => boolean;
|
|
16728
16919
|
};
|
|
16920
|
+
modelValue: {
|
|
16921
|
+
type: PropType<any>;
|
|
16922
|
+
default: any;
|
|
16923
|
+
};
|
|
16729
16924
|
variant: {
|
|
16730
16925
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16731
16926
|
default: string;
|
|
16732
16927
|
validator: (v: any) => boolean;
|
|
16733
16928
|
};
|
|
16734
|
-
modelValue: {
|
|
16735
|
-
type: PropType<any>;
|
|
16736
|
-
default: any;
|
|
16737
|
-
};
|
|
16738
16929
|
bgColor: StringConstructor;
|
|
16739
16930
|
prependIcon: PropType<IconValue>;
|
|
16740
16931
|
appendIcon: PropType<IconValue>;
|
|
@@ -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;
|
|
@@ -18157,8 +18348,8 @@ declare const VSnackbar: {
|
|
|
18157
18348
|
timeout: string | number;
|
|
18158
18349
|
vertical: boolean;
|
|
18159
18350
|
rounded: string | number | boolean;
|
|
18160
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18161
18351
|
modelValue: boolean;
|
|
18352
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18162
18353
|
activatorProps: Record<string, any>;
|
|
18163
18354
|
openOnClick: boolean;
|
|
18164
18355
|
openOnHover: boolean;
|
|
@@ -18263,7 +18454,7 @@ declare const VSnackbar: {
|
|
|
18263
18454
|
vertical: BooleanConstructor;
|
|
18264
18455
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
|
|
18265
18456
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
18266
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "
|
|
18457
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "modelValue" | "variant" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
|
|
18267
18458
|
$attrs: {
|
|
18268
18459
|
[x: string]: unknown;
|
|
18269
18460
|
};
|
|
@@ -18756,8 +18947,8 @@ declare const VSnackbar: {
|
|
|
18756
18947
|
timeout: string | number;
|
|
18757
18948
|
vertical: boolean;
|
|
18758
18949
|
rounded: string | number | boolean;
|
|
18759
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18760
18950
|
modelValue: boolean;
|
|
18951
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18761
18952
|
activatorProps: Record<string, any>;
|
|
18762
18953
|
openOnClick: boolean;
|
|
18763
18954
|
openOnHover: boolean;
|
|
@@ -19736,8 +19927,8 @@ declare const VSnackbar: {
|
|
|
19736
19927
|
timeout: string | number;
|
|
19737
19928
|
vertical: boolean;
|
|
19738
19929
|
rounded: string | number | boolean;
|
|
19739
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19740
19930
|
modelValue: boolean;
|
|
19931
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19741
19932
|
activatorProps: Record<string, any>;
|
|
19742
19933
|
openOnClick: boolean;
|
|
19743
19934
|
openOnHover: 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,25 +25883,23 @@ 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
25892
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
25702
25893
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
25703
25894
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25704
25895
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
25705
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
25706
25896
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
25897
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
25707
25898
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
25708
25899
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
25709
25900
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
25710
25901
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
25711
|
-
|
|
25712
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
25713
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
25902
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
25714
25903
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
25715
25904
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
25716
25905
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -25727,17 +25916,23 @@ declare module '@vue/runtime-core' {
|
|
|
25727
25916
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
25728
25917
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
25729
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']
|
|
25730
25922
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
25731
25923
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
25924
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
25732
25925
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
25733
25926
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
25734
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
25735
25927
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
25736
25928
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
25737
25929
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
25738
25930
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
25739
|
-
|
|
25931
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
25932
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
25933
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
25740
25934
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
25935
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
25741
25936
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
25742
25937
|
VCard: typeof import('vuetify/components')['VCard']
|
|
25743
25938
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
@@ -25745,18 +25940,18 @@ declare module '@vue/runtime-core' {
|
|
|
25745
25940
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
25746
25941
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
25747
25942
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
25748
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
25749
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
25750
25943
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
25751
25944
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
25945
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
25946
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
25752
25947
|
VChip: typeof import('vuetify/components')['VChip']
|
|
25753
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
25754
25948
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
25755
|
-
|
|
25949
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
25756
25950
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
25757
25951
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
25758
25952
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
25759
25953
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
25954
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
25760
25955
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
25761
25956
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
25762
25957
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
@@ -25771,12 +25966,11 @@ declare module '@vue/runtime-core' {
|
|
|
25771
25966
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
25772
25967
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
25773
25968
|
VImg: typeof import('vuetify/components')['VImg']
|
|
25969
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
25774
25970
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
25775
25971
|
VItem: typeof import('vuetify/components')['VItem']
|
|
25776
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
25777
25972
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
25778
25973
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
25779
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
25780
25974
|
VList: typeof import('vuetify/components')['VList']
|
|
25781
25975
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
25782
25976
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -25788,39 +25982,36 @@ declare module '@vue/runtime-core' {
|
|
|
25788
25982
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
25789
25983
|
VMain: typeof import('vuetify/components')['VMain']
|
|
25790
25984
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
25791
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
25792
25985
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
25986
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
25793
25987
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
25794
25988
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
25795
25989
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
25796
25990
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
25797
25991
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
25798
25992
|
VRating: typeof import('vuetify/components')['VRating']
|
|
25993
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
25799
25994
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
25800
25995
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
25801
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
|
25802
25996
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
25997
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
25998
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
25803
25999
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
25804
26000
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
25805
26001
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
26002
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
25806
26003
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
25807
26004
|
VTab: typeof import('vuetify/components')['VTab']
|
|
25808
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
25809
26005
|
VTable: typeof import('vuetify/components')['VTable']
|
|
25810
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
25811
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
25812
26006
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
25813
26007
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
26008
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
26009
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
25814
26010
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
25815
26011
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
25816
26012
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
25817
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
25818
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
25819
26013
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
25820
26014
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
25821
26015
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
25822
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
25823
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
25824
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
25825
26016
|
}
|
|
25826
26017
|
}
|