@vuetify/nightly 3.8.2-master.2025-04-27 → 3.8.3-dev.2025-04-29
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 +13 -32
- package/dist/json/attributes.json +2092 -2084
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +148 -148
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +3854 -3834
- package/dist/vuetify-labs.cjs +146 -36
- package/dist/vuetify-labs.css +3420 -3397
- package/dist/vuetify-labs.d.ts +101 -64
- package/dist/vuetify-labs.esm.js +147 -37
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +146 -36
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +146 -36
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3284 -3261
- package/dist/vuetify.d.ts +101 -64
- package/dist/vuetify.esm.js +147 -37
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +146 -36
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1201 -1188
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VInput/VInput.d.ts +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VOverlay/locationStrategies.d.ts +4 -0
- package/lib/components/VOverlay/locationStrategies.js +23 -3
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/defaults.js +6 -3
- package/lib/composables/defaults.js.map +1 -1
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +63 -54
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/lib/util/helpers.d.ts +2 -0
- package/lib/util/helpers.js +7 -0
- package/lib/util/helpers.js.map +1 -1
- package/package.json +3 -2
package/dist/vuetify-labs.d.ts
CHANGED
@@ -133,11 +133,12 @@ type DeepPartial<T> = T extends object ? {
|
|
133
133
|
} : T;
|
134
134
|
type ThemeOptions = false | {
|
135
135
|
cspNonce?: string;
|
136
|
-
defaultTheme?: string;
|
136
|
+
defaultTheme?: 'light' | 'dark' | 'system' | string;
|
137
137
|
variations?: false | VariationsOptions;
|
138
138
|
themes?: Record<string, ThemeDefinition>;
|
139
139
|
stylesheetId?: string;
|
140
140
|
scope?: string;
|
141
|
+
unimportant?: boolean;
|
141
142
|
};
|
142
143
|
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
143
144
|
interface VariationsOptions {
|
@@ -174,11 +175,15 @@ interface OnColors {
|
|
174
175
|
'on-info': string;
|
175
176
|
}
|
176
177
|
interface ThemeInstance {
|
178
|
+
change: (themeName: string) => void;
|
179
|
+
cycle: (themeArray?: string[]) => void;
|
180
|
+
toggle: (themeArray?: [string, string]) => void;
|
177
181
|
readonly isDisabled: boolean;
|
178
182
|
readonly themes: Ref<Record<string, InternalThemeDefinition>>;
|
179
183
|
readonly name: Readonly<Ref<string>>;
|
180
184
|
readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
|
181
185
|
readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
|
186
|
+
readonly prefix: string;
|
182
187
|
readonly themeClasses: Readonly<Ref<string | undefined>>;
|
183
188
|
readonly styles: Readonly<Ref<string>>;
|
184
189
|
readonly global: {
|
@@ -1021,6 +1026,10 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
|
|
1021
1026
|
y: number;
|
1022
1027
|
};
|
1023
1028
|
contentBox: Box;
|
1029
|
+
flipped: {
|
1030
|
+
x: boolean;
|
1031
|
+
y: boolean;
|
1032
|
+
};
|
1024
1033
|
} | undefined;
|
1025
1034
|
};
|
1026
1035
|
|
@@ -20675,6 +20684,7 @@ type VBtn = InstanceType<typeof VBtn>;
|
|
20675
20684
|
declare const VBtnGroup: {
|
20676
20685
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
20677
20686
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20687
|
+
direction: "horizontal" | "vertical";
|
20678
20688
|
style: vue.StyleValue;
|
20679
20689
|
tag: string | JSXComponent;
|
20680
20690
|
density: Density;
|
@@ -20699,6 +20709,7 @@ declare const VBtnGroup: {
|
|
20699
20709
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
20700
20710
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
20701
20711
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20712
|
+
direction: "horizontal" | "vertical";
|
20702
20713
|
style: vue.StyleValue;
|
20703
20714
|
tag: string | JSXComponent;
|
20704
20715
|
density: Density;
|
@@ -20716,6 +20727,7 @@ declare const VBtnGroup: {
|
|
20716
20727
|
Defaults: {};
|
20717
20728
|
}, {
|
20718
20729
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20730
|
+
direction: "horizontal" | "vertical";
|
20719
20731
|
style: vue.StyleValue;
|
20720
20732
|
tag: string | JSXComponent;
|
20721
20733
|
density: Density;
|
@@ -20740,6 +20752,7 @@ declare const VBtnGroup: {
|
|
20740
20752
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
20741
20753
|
}, {}, {}, {}, {}, {
|
20742
20754
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20755
|
+
direction: "horizontal" | "vertical";
|
20743
20756
|
style: vue.StyleValue;
|
20744
20757
|
tag: string | JSXComponent;
|
20745
20758
|
density: Density;
|
@@ -20752,6 +20765,7 @@ declare const VBtnGroup: {
|
|
20752
20765
|
__isSuspense?: never;
|
20753
20766
|
} & vue.ComponentOptionsBase<{
|
20754
20767
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20768
|
+
direction: "horizontal" | "vertical";
|
20755
20769
|
style: vue.StyleValue;
|
20756
20770
|
tag: string | JSXComponent;
|
20757
20771
|
density: Density;
|
@@ -20776,6 +20790,7 @@ declare const VBtnGroup: {
|
|
20776
20790
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
20777
20791
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
20778
20792
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20793
|
+
direction: "horizontal" | "vertical";
|
20779
20794
|
style: vue.StyleValue;
|
20780
20795
|
tag: string | JSXComponent;
|
20781
20796
|
density: Density;
|
@@ -20787,13 +20802,13 @@ declare const VBtnGroup: {
|
|
20787
20802
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
20788
20803
|
color: StringConstructor;
|
20789
20804
|
variant: {
|
20790
|
-
type:
|
20805
|
+
type: PropType<Variant$2>;
|
20791
20806
|
default: string;
|
20792
20807
|
validator: (v: any) => boolean;
|
20793
20808
|
};
|
20794
20809
|
theme: StringConstructor;
|
20795
20810
|
tag: {
|
20796
|
-
type:
|
20811
|
+
type: PropType<string | JSXComponent>;
|
20797
20812
|
default: string;
|
20798
20813
|
};
|
20799
20814
|
rounded: {
|
@@ -20806,28 +20821,32 @@ declare const VBtnGroup: {
|
|
20806
20821
|
validator(v: any): boolean;
|
20807
20822
|
};
|
20808
20823
|
density: {
|
20809
|
-
type:
|
20824
|
+
type: PropType<Density>;
|
20810
20825
|
default: string;
|
20811
20826
|
validator: (v: any) => boolean;
|
20812
20827
|
};
|
20813
|
-
class:
|
20828
|
+
class: PropType<ClassValue>;
|
20814
20829
|
style: {
|
20815
|
-
type:
|
20830
|
+
type: PropType<vue.StyleValue>;
|
20816
20831
|
default: null;
|
20817
20832
|
};
|
20818
20833
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
20819
20834
|
baseColor: StringConstructor;
|
20820
20835
|
divided: BooleanConstructor;
|
20836
|
+
direction: {
|
20837
|
+
type: PropType<"horizontal" | "vertical">;
|
20838
|
+
default: string;
|
20839
|
+
};
|
20821
20840
|
}, vue.ExtractPropTypes<{
|
20822
20841
|
color: StringConstructor;
|
20823
20842
|
variant: {
|
20824
|
-
type:
|
20843
|
+
type: PropType<Variant$2>;
|
20825
20844
|
default: string;
|
20826
20845
|
validator: (v: any) => boolean;
|
20827
20846
|
};
|
20828
20847
|
theme: StringConstructor;
|
20829
20848
|
tag: {
|
20830
|
-
type:
|
20849
|
+
type: PropType<string | JSXComponent>;
|
20831
20850
|
default: string;
|
20832
20851
|
};
|
20833
20852
|
rounded: {
|
@@ -20840,18 +20859,22 @@ declare const VBtnGroup: {
|
|
20840
20859
|
validator(v: any): boolean;
|
20841
20860
|
};
|
20842
20861
|
density: {
|
20843
|
-
type:
|
20862
|
+
type: PropType<Density>;
|
20844
20863
|
default: string;
|
20845
20864
|
validator: (v: any) => boolean;
|
20846
20865
|
};
|
20847
|
-
class:
|
20866
|
+
class: PropType<ClassValue>;
|
20848
20867
|
style: {
|
20849
|
-
type:
|
20868
|
+
type: PropType<vue.StyleValue>;
|
20850
20869
|
default: null;
|
20851
20870
|
};
|
20852
20871
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
20853
20872
|
baseColor: StringConstructor;
|
20854
20873
|
divided: BooleanConstructor;
|
20874
|
+
direction: {
|
20875
|
+
type: PropType<"horizontal" | "vertical">;
|
20876
|
+
default: string;
|
20877
|
+
};
|
20855
20878
|
}>>;
|
20856
20879
|
type VBtnGroup = InstanceType<typeof VBtnGroup>;
|
20857
20880
|
|
@@ -20864,6 +20887,7 @@ type VBtnToggleSlots = {
|
|
20864
20887
|
declare const VBtnToggle: {
|
20865
20888
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
20866
20889
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20890
|
+
direction: "horizontal" | "vertical";
|
20867
20891
|
style: vue.StyleValue;
|
20868
20892
|
disabled: boolean;
|
20869
20893
|
multiple: boolean;
|
@@ -20890,6 +20914,7 @@ declare const VBtnToggle: {
|
|
20890
20914
|
'update:modelValue': (value: any) => true;
|
20891
20915
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
20892
20916
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20917
|
+
direction: "horizontal" | "vertical";
|
20893
20918
|
style: vue.StyleValue;
|
20894
20919
|
disabled: boolean;
|
20895
20920
|
multiple: boolean;
|
@@ -20909,6 +20934,7 @@ declare const VBtnToggle: {
|
|
20909
20934
|
Defaults: {};
|
20910
20935
|
}, {
|
20911
20936
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20937
|
+
direction: "horizontal" | "vertical";
|
20912
20938
|
style: vue.StyleValue;
|
20913
20939
|
disabled: boolean;
|
20914
20940
|
multiple: boolean;
|
@@ -20933,6 +20959,7 @@ declare const VBtnToggle: {
|
|
20933
20959
|
select: (id: string, value: boolean) => void;
|
20934
20960
|
}, {}, {}, {}, {
|
20935
20961
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20962
|
+
direction: "horizontal" | "vertical";
|
20936
20963
|
style: vue.StyleValue;
|
20937
20964
|
disabled: boolean;
|
20938
20965
|
multiple: boolean;
|
@@ -20947,6 +20974,7 @@ declare const VBtnToggle: {
|
|
20947
20974
|
__isSuspense?: never;
|
20948
20975
|
} & vue.ComponentOptionsBase<{
|
20949
20976
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
20977
|
+
direction: "horizontal" | "vertical";
|
20950
20978
|
style: vue.StyleValue;
|
20951
20979
|
disabled: boolean;
|
20952
20980
|
multiple: boolean;
|
@@ -20973,6 +21001,7 @@ declare const VBtnToggle: {
|
|
20973
21001
|
'update:modelValue': (value: any) => true;
|
20974
21002
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
|
20975
21003
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
21004
|
+
direction: "horizontal" | "vertical";
|
20976
21005
|
style: vue.StyleValue;
|
20977
21006
|
disabled: boolean;
|
20978
21007
|
multiple: boolean;
|
@@ -21029,6 +21058,10 @@ declare const VBtnToggle: {
|
|
21029
21058
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
21030
21059
|
baseColor: StringConstructor;
|
21031
21060
|
divided: BooleanConstructor;
|
21061
|
+
direction: {
|
21062
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
21063
|
+
default: string;
|
21064
|
+
};
|
21032
21065
|
}, vue.ExtractPropTypes<{
|
21033
21066
|
modelValue: {
|
21034
21067
|
type: null;
|
@@ -21072,6 +21105,10 @@ declare const VBtnToggle: {
|
|
21072
21105
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
21073
21106
|
baseColor: StringConstructor;
|
21074
21107
|
divided: BooleanConstructor;
|
21108
|
+
direction: {
|
21109
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
21110
|
+
default: string;
|
21111
|
+
};
|
21075
21112
|
}>>;
|
21076
21113
|
type VBtnToggle = InstanceType<typeof VBtnToggle>;
|
21077
21114
|
|
@@ -97735,41 +97772,46 @@ declare module 'vue' {
|
|
97735
97772
|
$children?: VNodeChild
|
97736
97773
|
}
|
97737
97774
|
export interface GlobalComponents {
|
97775
|
+
VApp: VApp
|
97738
97776
|
VAppBar: VAppBar
|
97739
97777
|
VAppBarNavIcon: VAppBarNavIcon
|
97740
97778
|
VAppBarTitle: VAppBarTitle
|
97741
97779
|
VAlert: VAlert
|
97742
97780
|
VAlertTitle: VAlertTitle
|
97743
97781
|
VAutocomplete: VAutocomplete
|
97782
|
+
VAvatar: VAvatar
|
97783
|
+
VBottomSheet: VBottomSheet
|
97744
97784
|
VBanner: VBanner
|
97745
97785
|
VBannerActions: VBannerActions
|
97746
97786
|
VBannerText: VBannerText
|
97747
|
-
VBadge: VBadge
|
97748
|
-
VBottomSheet: VBottomSheet
|
97749
|
-
VAvatar: VAvatar
|
97750
97787
|
VBottomNavigation: VBottomNavigation
|
97751
97788
|
VBreadcrumbs: VBreadcrumbs
|
97752
97789
|
VBreadcrumbsItem: VBreadcrumbsItem
|
97753
97790
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
97754
|
-
|
97791
|
+
VBadge: VBadge
|
97755
97792
|
VBtn: VBtn
|
97793
|
+
VBtnToggle: VBtnToggle
|
97794
|
+
VChip: VChip
|
97795
|
+
VCarousel: VCarousel
|
97796
|
+
VCarouselItem: VCarouselItem
|
97756
97797
|
VCard: VCard
|
97757
97798
|
VCardActions: VCardActions
|
97758
97799
|
VCardItem: VCardItem
|
97759
97800
|
VCardSubtitle: VCardSubtitle
|
97760
97801
|
VCardText: VCardText
|
97761
97802
|
VCardTitle: VCardTitle
|
97762
|
-
VBtnGroup: VBtnGroup
|
97763
97803
|
VCheckbox: VCheckbox
|
97764
97804
|
VCheckboxBtn: VCheckboxBtn
|
97765
|
-
|
97766
|
-
|
97767
|
-
VChip: VChip
|
97805
|
+
VCode: VCode
|
97806
|
+
VChipGroup: VChipGroup
|
97768
97807
|
VColorPicker: VColorPicker
|
97808
|
+
VDatePicker: VDatePicker
|
97809
|
+
VDatePickerControls: VDatePickerControls
|
97810
|
+
VDatePickerHeader: VDatePickerHeader
|
97811
|
+
VDatePickerMonth: VDatePickerMonth
|
97812
|
+
VDatePickerMonths: VDatePickerMonths
|
97813
|
+
VDatePickerYears: VDatePickerYears
|
97769
97814
|
VCombobox: VCombobox
|
97770
|
-
VCounter: VCounter
|
97771
|
-
VChipGroup: VChipGroup
|
97772
|
-
VCode: VCode
|
97773
97815
|
VDataTable: VDataTable
|
97774
97816
|
VDataTableHeaders: VDataTableHeaders
|
97775
97817
|
VDataTableFooter: VDataTableFooter
|
@@ -97777,24 +97819,18 @@ declare module 'vue' {
|
|
97777
97819
|
VDataTableRow: VDataTableRow
|
97778
97820
|
VDataTableVirtual: VDataTableVirtual
|
97779
97821
|
VDataTableServer: VDataTableServer
|
97780
|
-
VDatePicker: VDatePicker
|
97781
|
-
VDatePickerControls: VDatePickerControls
|
97782
|
-
VDatePickerHeader: VDatePickerHeader
|
97783
|
-
VDatePickerMonth: VDatePickerMonth
|
97784
|
-
VDatePickerMonths: VDatePickerMonths
|
97785
|
-
VDatePickerYears: VDatePickerYears
|
97786
|
-
VDivider: VDivider
|
97787
97822
|
VDialog: VDialog
|
97823
|
+
VDivider: VDivider
|
97788
97824
|
VExpansionPanels: VExpansionPanels
|
97789
97825
|
VExpansionPanel: VExpansionPanel
|
97790
97826
|
VExpansionPanelText: VExpansionPanelText
|
97791
97827
|
VExpansionPanelTitle: VExpansionPanelTitle
|
97792
|
-
|
97828
|
+
VCounter: VCounter
|
97793
97829
|
VField: VField
|
97794
97830
|
VFieldLabel: VFieldLabel
|
97831
|
+
VFab: VFab
|
97795
97832
|
VFileInput: VFileInput
|
97796
97833
|
VFooter: VFooter
|
97797
|
-
VFab: VFab
|
97798
97834
|
VIcon: VIcon
|
97799
97835
|
VComponentIcon: VComponentIcon
|
97800
97836
|
VSvgIcon: VSvgIcon
|
@@ -97804,9 +97840,9 @@ declare module 'vue' {
|
|
97804
97840
|
VInfiniteScroll: VInfiniteScroll
|
97805
97841
|
VItemGroup: VItemGroup
|
97806
97842
|
VItem: VItem
|
97807
|
-
VLabel: VLabel
|
97808
|
-
VKbd: VKbd
|
97809
97843
|
VInput: VInput
|
97844
|
+
VKbd: VKbd
|
97845
|
+
VLabel: VLabel
|
97810
97846
|
VList: VList
|
97811
97847
|
VListGroup: VListGroup
|
97812
97848
|
VListImg: VListImg
|
@@ -97816,42 +97852,41 @@ declare module 'vue' {
|
|
97816
97852
|
VListItemSubtitle: VListItemSubtitle
|
97817
97853
|
VListItemTitle: VListItemTitle
|
97818
97854
|
VListSubheader: VListSubheader
|
97855
|
+
VMenu: VMenu
|
97819
97856
|
VMain: VMain
|
97820
97857
|
VMessages: VMessages
|
97821
|
-
VMenu: VMenu
|
97822
|
-
VApp: VApp
|
97823
|
-
VNavigationDrawer: VNavigationDrawer
|
97824
|
-
VNumberInput: VNumberInput
|
97825
97858
|
VOverlay: VOverlay
|
97826
|
-
|
97859
|
+
VBtnGroup: VBtnGroup
|
97860
|
+
VNumberInput: VNumberInput
|
97827
97861
|
VProgressLinear: VProgressLinear
|
97828
|
-
|
97862
|
+
VOtpInput: VOtpInput
|
97829
97863
|
VRadioGroup: VRadioGroup
|
97864
|
+
VProgressCircular: VProgressCircular
|
97865
|
+
VPagination: VPagination
|
97866
|
+
VSelectionControl: VSelectionControl
|
97867
|
+
VSelect: VSelect
|
97830
97868
|
VRating: VRating
|
97831
97869
|
VSelectionControlGroup: VSelectionControlGroup
|
97832
97870
|
VSheet: VSheet
|
97833
|
-
VSelectionControl: VSelectionControl
|
97834
|
-
VSlideGroup: VSlideGroup
|
97835
|
-
VSlideGroupItem: VSlideGroupItem
|
97836
|
-
VSnackbar: VSnackbar
|
97837
|
-
VProgressCircular: VProgressCircular
|
97838
|
-
VSelect: VSelect
|
97839
|
-
VSlider: VSlider
|
97840
97871
|
VSkeletonLoader: VSkeletonLoader
|
97841
|
-
|
97872
|
+
VSlider: VSlider
|
97842
97873
|
VStepper: VStepper
|
97843
97874
|
VStepperActions: VStepperActions
|
97844
97875
|
VStepperHeader: VStepperHeader
|
97845
97876
|
VStepperItem: VStepperItem
|
97846
97877
|
VStepperWindow: VStepperWindow
|
97847
97878
|
VStepperWindowItem: VStepperWindowItem
|
97848
|
-
|
97879
|
+
VSwitch: VSwitch
|
97880
|
+
VSlideGroup: VSlideGroup
|
97881
|
+
VSlideGroupItem: VSlideGroupItem
|
97882
|
+
VSnackbar: VSnackbar
|
97849
97883
|
VTab: VTab
|
97850
97884
|
VTabs: VTabs
|
97851
97885
|
VTabsWindow: VTabsWindow
|
97852
97886
|
VTabsWindowItem: VTabsWindowItem
|
97853
|
-
|
97887
|
+
VSystemBar: VSystemBar
|
97854
97888
|
VTextField: VTextField
|
97889
|
+
VTextarea: VTextarea
|
97855
97890
|
VTable: VTable
|
97856
97891
|
VToolbar: VToolbar
|
97857
97892
|
VToolbarTitle: VToolbarTitle
|
@@ -97861,25 +97896,30 @@ declare module 'vue' {
|
|
97861
97896
|
VTimelineItem: VTimelineItem
|
97862
97897
|
VWindow: VWindow
|
97863
97898
|
VWindowItem: VWindowItem
|
97899
|
+
VEmptyState: VEmptyState
|
97864
97900
|
VDataIterator: VDataIterator
|
97865
97901
|
VDefaultsProvider: VDefaultsProvider
|
97866
|
-
|
97902
|
+
VConfirmEdit: VConfirmEdit
|
97867
97903
|
VContainer: VContainer
|
97868
97904
|
VCol: VCol
|
97869
97905
|
VRow: VRow
|
97870
97906
|
VSpacer: VSpacer
|
97871
|
-
|
97907
|
+
VForm: VForm
|
97908
|
+
VHover: VHover
|
97872
97909
|
VLayout: VLayout
|
97873
97910
|
VLayoutItem: VLayoutItem
|
97911
|
+
VLazy: VLazy
|
97874
97912
|
VNoSsr: VNoSsr
|
97875
|
-
VLocaleProvider: VLocaleProvider
|
97876
97913
|
VParallax: VParallax
|
97877
|
-
VRangeSlider: VRangeSlider
|
97878
97914
|
VRadio: VRadio
|
97915
|
+
VRangeSlider: VRangeSlider
|
97879
97916
|
VResponsive: VResponsive
|
97880
|
-
VSpeedDial: VSpeedDial
|
97881
97917
|
VSnackbarQueue: VSnackbarQueue
|
97918
|
+
VSparkline: VSparkline
|
97919
|
+
VSpeedDial: VSpeedDial
|
97882
97920
|
VThemeProvider: VThemeProvider
|
97921
|
+
VValidation: VValidation
|
97922
|
+
VNavigationDrawer: VNavigationDrawer
|
97883
97923
|
VVirtualScroll: VVirtualScroll
|
97884
97924
|
VFabTransition: VFabTransition
|
97885
97925
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -97897,30 +97937,27 @@ declare module 'vue' {
|
|
97897
97937
|
VExpandTransition: VExpandTransition
|
97898
97938
|
VExpandXTransition: VExpandXTransition
|
97899
97939
|
VDialogTransition: VDialogTransition
|
97900
|
-
|
97901
|
-
VHover: VHover
|
97902
|
-
VConfirmEdit: VConfirmEdit
|
97903
|
-
VSparkline: VSparkline
|
97940
|
+
VLocaleProvider: VLocaleProvider
|
97904
97941
|
VCalendar: VCalendar
|
97905
97942
|
VCalendarDay: VCalendarDay
|
97906
97943
|
VCalendarHeader: VCalendarHeader
|
97907
97944
|
VCalendarInterval: VCalendarInterval
|
97908
97945
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
97909
97946
|
VCalendarMonthDay: VCalendarMonthDay
|
97910
|
-
VIconBtn: VIconBtn
|
97911
|
-
VStepperVertical: VStepperVertical
|
97912
|
-
VStepperVerticalItem: VStepperVerticalItem
|
97913
|
-
VStepperVerticalActions: VStepperVerticalActions
|
97914
97947
|
VPicker: VPicker
|
97915
97948
|
VPickerTitle: VPickerTitle
|
97949
|
+
VIconBtn: VIconBtn
|
97916
97950
|
VTimePicker: VTimePicker
|
97917
97951
|
VTimePickerClock: VTimePickerClock
|
97918
97952
|
VTimePickerControls: VTimePickerControls
|
97919
|
-
VFileUpload: VFileUpload
|
97920
|
-
VFileUploadItem: VFileUploadItem
|
97921
97953
|
VTreeview: VTreeview
|
97922
97954
|
VTreeviewItem: VTreeviewItem
|
97923
97955
|
VTreeviewGroup: VTreeviewGroup
|
97956
|
+
VStepperVertical: VStepperVertical
|
97957
|
+
VStepperVerticalItem: VStepperVerticalItem
|
97958
|
+
VStepperVerticalActions: VStepperVerticalActions
|
97959
|
+
VFileUpload: VFileUpload
|
97960
|
+
VFileUploadItem: VFileUploadItem
|
97924
97961
|
VDateInput: VDateInput
|
97925
97962
|
VPullToRefresh: VPullToRefresh
|
97926
97963
|
}
|