@vuetify/nightly 3.7.11-master.2025-02-10 → 3.7.11-master.2025-02-11
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 +5 -3
- package/dist/json/attributes.json +2845 -2857
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +194 -194
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +5209 -5236
- package/dist/vuetify-labs.css +3821 -3821
- package/dist/vuetify-labs.d.ts +20 -38
- package/dist/vuetify-labs.esm.js +6 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4323 -4323
- package/dist/vuetify.d.ts +76 -88
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +12 -24
- package/lib/components/index.d.mts +12 -24
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +64 -64
- package/lib/labs/VDateInput/VDateInput.mjs +2 -2
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +8 -14
- package/lib/labs/components.d.mts +8 -14
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -27772,7 +27772,6 @@ declare const VDatePicker: {
|
|
27772
27772
|
bgColor?: string | undefined;
|
27773
27773
|
firstDayOfWeek?: string | number | undefined;
|
27774
27774
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
27775
|
-
displayValue?: unknown;
|
27776
27775
|
} & {
|
27777
27776
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
27778
27777
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -27826,7 +27825,6 @@ declare const VDatePicker: {
|
|
27826
27825
|
bgColor?: string | undefined;
|
27827
27826
|
firstDayOfWeek?: string | number | undefined;
|
27828
27827
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
27829
|
-
displayValue?: unknown;
|
27830
27828
|
} & {
|
27831
27829
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
27832
27830
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -27912,7 +27910,6 @@ declare const VDatePicker: {
|
|
27912
27910
|
bgColor?: string | undefined;
|
27913
27911
|
firstDayOfWeek?: string | number | undefined;
|
27914
27912
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
27915
|
-
displayValue?: unknown;
|
27916
27913
|
} & {
|
27917
27914
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
27918
27915
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -27987,7 +27984,6 @@ declare const VDatePicker: {
|
|
27987
27984
|
bgColor?: string | undefined;
|
27988
27985
|
firstDayOfWeek?: string | number | undefined;
|
27989
27986
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
27990
|
-
displayValue?: unknown;
|
27991
27987
|
} & {
|
27992
27988
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
27993
27989
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -28075,9 +28071,7 @@ declare const VDatePicker: {
|
|
28075
28071
|
max: vue.PropType<unknown>;
|
28076
28072
|
min: vue.PropType<unknown>;
|
28077
28073
|
year: NumberConstructor;
|
28078
|
-
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28079
28074
|
disabled: BooleanConstructor;
|
28080
|
-
displayValue: vue.PropType<unknown>;
|
28081
28075
|
month: (StringConstructor | NumberConstructor)[];
|
28082
28076
|
showAdjacentMonths: BooleanConstructor;
|
28083
28077
|
weekdays: {
|
@@ -28107,6 +28101,7 @@ declare const VDatePicker: {
|
|
28107
28101
|
default: NonNullable<"static" | "dynamic">;
|
28108
28102
|
};
|
28109
28103
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
28104
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28110
28105
|
hideWeekdays: BooleanConstructor;
|
28111
28106
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
28112
28107
|
showWeek: BooleanConstructor;
|
@@ -28187,9 +28182,7 @@ declare const VDatePicker: {
|
|
28187
28182
|
max: vue.PropType<unknown>;
|
28188
28183
|
min: vue.PropType<unknown>;
|
28189
28184
|
year: NumberConstructor;
|
28190
|
-
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28191
28185
|
disabled: BooleanConstructor;
|
28192
|
-
displayValue: vue.PropType<unknown>;
|
28193
28186
|
month: (StringConstructor | NumberConstructor)[];
|
28194
28187
|
showAdjacentMonths: BooleanConstructor;
|
28195
28188
|
weekdays: {
|
@@ -28219,6 +28212,7 @@ declare const VDatePicker: {
|
|
28219
28212
|
default: NonNullable<"static" | "dynamic">;
|
28220
28213
|
};
|
28221
28214
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
28215
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28222
28216
|
hideWeekdays: BooleanConstructor;
|
28223
28217
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
28224
28218
|
showWeek: BooleanConstructor;
|
@@ -28615,7 +28609,6 @@ declare const VDatePickerMonth: {
|
|
28615
28609
|
modelValue?: unknown[] | undefined;
|
28616
28610
|
firstDayOfWeek?: string | number | undefined;
|
28617
28611
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28618
|
-
displayValue?: unknown;
|
28619
28612
|
} & {
|
28620
28613
|
$children?: {} | vue.VNodeChild | {
|
28621
28614
|
day?: ((arg: {
|
@@ -28670,7 +28663,6 @@ declare const VDatePickerMonth: {
|
|
28670
28663
|
modelValue?: unknown[] | undefined;
|
28671
28664
|
firstDayOfWeek?: string | number | undefined;
|
28672
28665
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28673
|
-
displayValue?: unknown;
|
28674
28666
|
} & {
|
28675
28667
|
$children?: {} | vue.VNodeChild | {
|
28676
28668
|
day?: ((arg: {
|
@@ -28745,7 +28737,6 @@ declare const VDatePickerMonth: {
|
|
28745
28737
|
modelValue?: unknown[] | undefined;
|
28746
28738
|
firstDayOfWeek?: string | number | undefined;
|
28747
28739
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28748
|
-
displayValue?: unknown;
|
28749
28740
|
} & {
|
28750
28741
|
$children?: {} | vue.VNodeChild | {
|
28751
28742
|
day?: ((arg: {
|
@@ -28809,7 +28800,6 @@ declare const VDatePickerMonth: {
|
|
28809
28800
|
modelValue?: unknown[] | undefined;
|
28810
28801
|
firstDayOfWeek?: string | number | undefined;
|
28811
28802
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28812
|
-
displayValue?: unknown;
|
28813
28803
|
} & {
|
28814
28804
|
$children?: {} | vue.VNodeChild | {
|
28815
28805
|
day?: ((arg: {
|
@@ -28863,15 +28853,13 @@ declare const VDatePickerMonth: {
|
|
28863
28853
|
i: number;
|
28864
28854
|
}) => vue.VNode[];
|
28865
28855
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
28866
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
28867
|
-
disabled: BooleanConstructor;
|
28868
|
-
displayValue: PropType<unknown>;
|
28869
|
-
modelValue: PropType<unknown[]>;
|
28870
|
-
month: (StringConstructor | NumberConstructor)[];
|
28871
28856
|
max: PropType<unknown>;
|
28872
28857
|
min: PropType<unknown>;
|
28873
|
-
|
28858
|
+
disabled: BooleanConstructor;
|
28859
|
+
month: (StringConstructor | NumberConstructor)[];
|
28874
28860
|
year: (StringConstructor | NumberConstructor)[];
|
28861
|
+
modelValue: PropType<unknown[]>;
|
28862
|
+
showAdjacentMonths: BooleanConstructor;
|
28875
28863
|
weekdays: {
|
28876
28864
|
type: {
|
28877
28865
|
(arrayLength: number): number[];
|
@@ -28896,6 +28884,7 @@ declare const VDatePickerMonth: {
|
|
28896
28884
|
default: string;
|
28897
28885
|
};
|
28898
28886
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
28887
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
28899
28888
|
color: StringConstructor;
|
28900
28889
|
hideWeekdays: BooleanConstructor;
|
28901
28890
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -28909,15 +28898,13 @@ declare const VDatePickerMonth: {
|
|
28909
28898
|
default: string;
|
28910
28899
|
};
|
28911
28900
|
}, vue.ExtractPropTypes<{
|
28912
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
28913
|
-
disabled: BooleanConstructor;
|
28914
|
-
displayValue: PropType<unknown>;
|
28915
|
-
modelValue: PropType<unknown[]>;
|
28916
|
-
month: (StringConstructor | NumberConstructor)[];
|
28917
28901
|
max: PropType<unknown>;
|
28918
28902
|
min: PropType<unknown>;
|
28919
|
-
|
28903
|
+
disabled: BooleanConstructor;
|
28904
|
+
month: (StringConstructor | NumberConstructor)[];
|
28920
28905
|
year: (StringConstructor | NumberConstructor)[];
|
28906
|
+
modelValue: PropType<unknown[]>;
|
28907
|
+
showAdjacentMonths: BooleanConstructor;
|
28921
28908
|
weekdays: {
|
28922
28909
|
type: {
|
28923
28910
|
(arrayLength: number): number[];
|
@@ -28942,6 +28929,7 @@ declare const VDatePickerMonth: {
|
|
28942
28929
|
default: string;
|
28943
28930
|
};
|
28944
28931
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
28932
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
28945
28933
|
color: StringConstructor;
|
28946
28934
|
hideWeekdays: BooleanConstructor;
|
28947
28935
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -66948,52 +66936,40 @@ declare module 'vue' {
|
|
66948
66936
|
$children?: VNodeChild
|
66949
66937
|
}
|
66950
66938
|
export interface GlobalComponents {
|
66951
|
-
VApp: typeof import('vuetify/components')['VApp']
|
66952
66939
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
66953
66940
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
66954
66941
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
66955
66942
|
VAlert: typeof import('vuetify/components')['VAlert']
|
66956
66943
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66944
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
66957
66945
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66958
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66959
66946
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66960
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
66961
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66962
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66963
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66964
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66965
66947
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66966
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66967
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
66968
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66969
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66970
|
-
VChip: typeof import('vuetify/components')['VChip']
|
66971
66948
|
VBanner: typeof import('vuetify/components')['VBanner']
|
66972
66949
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
66973
66950
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
66951
|
+
VApp: typeof import('vuetify/components')['VApp']
|
66952
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66953
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
66954
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66955
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66956
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66974
66957
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66975
66958
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66959
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66960
|
+
VChip: typeof import('vuetify/components')['VChip']
|
66961
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66962
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66976
66963
|
VCard: typeof import('vuetify/components')['VCard']
|
66977
66964
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
66978
66965
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
66979
66966
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
66980
66967
|
VCardText: typeof import('vuetify/components')['VCardText']
|
66981
66968
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
66982
|
-
|
66983
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
66984
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66985
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66986
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66987
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66988
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66989
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66990
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
66991
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
66969
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66992
66970
|
VCode: typeof import('vuetify/components')['VCode']
|
66993
|
-
|
66994
|
-
|
66995
|
-
VFab: typeof import('vuetify/components')['VFab']
|
66996
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
66971
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66972
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
66997
66973
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
66998
66974
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
66999
66975
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67001,27 +66977,34 @@ declare module 'vue' {
|
|
67001
66977
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67002
66978
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67003
66979
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
66980
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66981
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
66982
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
66983
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
66984
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66985
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66986
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66987
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66988
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66989
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67004
66990
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67005
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67006
|
-
VField: typeof import('vuetify/components')['VField']
|
67007
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67008
66991
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67009
66992
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67010
66993
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67011
66994
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
66995
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
66996
|
+
VImg: typeof import('vuetify/components')['VImg']
|
66997
|
+
VField: typeof import('vuetify/components')['VField']
|
66998
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
66999
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67000
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67012
67001
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67013
67002
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67014
67003
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67015
67004
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67016
67005
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67017
|
-
VImg: typeof import('vuetify/components')['VImg']
|
67018
67006
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67019
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67020
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67021
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67022
|
-
VItem: typeof import('vuetify/components')['VItem']
|
67023
67007
|
VKbd: typeof import('vuetify/components')['VKbd']
|
67024
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67025
67008
|
VList: typeof import('vuetify/components')['VList']
|
67026
67009
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67027
67010
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67031,60 +67014,66 @@ declare module 'vue' {
|
|
67031
67014
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67032
67015
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67033
67016
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67034
|
-
|
67017
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67018
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67019
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67020
|
+
VItem: typeof import('vuetify/components')['VItem']
|
67035
67021
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67036
|
-
|
67037
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67038
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67039
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
67022
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67040
67023
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67041
|
-
|
67024
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67025
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67026
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67042
67027
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67043
67028
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67044
|
-
|
67029
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67030
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67031
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67045
67032
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67046
|
-
|
67033
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
67047
67034
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67048
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67049
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67050
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67051
67035
|
VSlider: typeof import('vuetify/components')['VSlider']
|
67052
|
-
|
67053
|
-
|
67054
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
67055
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67056
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67036
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67037
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67057
67038
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67058
67039
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67059
67040
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67060
67041
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67061
67042
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67062
67043
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67044
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67045
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67063
67046
|
VTable: typeof import('vuetify/components')['VTable']
|
67064
|
-
|
67047
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67065
67048
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67049
|
+
VTab: typeof import('vuetify/components')['VTab']
|
67050
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
67051
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67052
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67053
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67054
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67055
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67066
67056
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67057
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67067
67058
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67068
67059
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67069
67060
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67070
67061
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67071
67062
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67072
67063
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67073
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67074
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67075
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67076
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67077
67064
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67065
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67078
67066
|
VForm: typeof import('vuetify/components')['VForm']
|
67079
|
-
VHover: typeof import('vuetify/components')['VHover']
|
67080
67067
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67081
67068
|
VCol: typeof import('vuetify/components')['VCol']
|
67082
67069
|
VRow: typeof import('vuetify/components')['VRow']
|
67083
67070
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67071
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67072
|
+
VHover: typeof import('vuetify/components')['VHover']
|
67073
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67074
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67084
67075
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67085
67076
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67086
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67087
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
67088
67077
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67089
67078
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67090
67079
|
VRadio: typeof import('vuetify/components')['VRadio']
|
@@ -67111,7 +67100,7 @@ declare module 'vue' {
|
|
67111
67100
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67112
67101
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67113
67102
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67114
|
-
|
67103
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67115
67104
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67116
67105
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67117
67106
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -67120,20 +67109,19 @@ declare module 'vue' {
|
|
67120
67109
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67121
67110
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67122
67111
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67123
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67124
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67125
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67126
67112
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67127
67113
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67128
67114
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67129
67115
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67130
67116
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67131
67117
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67118
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67119
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67132
67120
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67133
67121
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67134
67122
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67135
67123
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67136
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67137
67124
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67125
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67138
67126
|
}
|
67139
67127
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.11-master.2025-02-
|
2
|
+
* Vuetify v3.7.11-master.2025-02-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -22015,7 +22015,7 @@ const makeVDatePickerMonthProps = propsFactory({
|
|
22015
22015
|
type: String,
|
22016
22016
|
default: 'picker-reverse-transition'
|
22017
22017
|
},
|
22018
|
-
...makeCalendarProps()
|
22018
|
+
...omit(makeCalendarProps(), ['displayValue'])
|
22019
22019
|
}, 'VDatePickerMonth');
|
22020
22020
|
const VDatePickerMonth = genericComponent()({
|
22021
22021
|
name: 'VDatePickerMonth',
|
@@ -28396,7 +28396,7 @@ function createVuetify$1() {
|
|
28396
28396
|
goTo
|
28397
28397
|
};
|
28398
28398
|
}
|
28399
|
-
const version$1 = "3.7.11-master.2025-02-
|
28399
|
+
const version$1 = "3.7.11-master.2025-02-11";
|
28400
28400
|
createVuetify$1.version = version$1;
|
28401
28401
|
|
28402
28402
|
// Vue's inject() can only be used in setup
|
@@ -28421,7 +28421,7 @@ const createVuetify = function () {
|
|
28421
28421
|
...options
|
28422
28422
|
});
|
28423
28423
|
};
|
28424
|
-
const version = "3.7.11-master.2025-02-
|
28424
|
+
const version = "3.7.11-master.2025-02-11";
|
28425
28425
|
createVuetify.version = version;
|
28426
28426
|
|
28427
28427
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|