@vuetify/nightly 3.7.11-master.2025-02-08 → 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 +8 -4
- package/dist/json/attributes.json +1459 -1471
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +256 -256
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +2831 -2858
- package/dist/vuetify-labs.css +5299 -5298
- package/dist/vuetify-labs.d.ts +20 -38
- package/dist/vuetify-labs.esm.js +33 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +33 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4586 -4585
- package/dist/vuetify.d.ts +63 -75
- package/dist/vuetify.esm.js +31 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -12
- 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/VOverlay/VOverlay.css +2 -1
- package/lib/components/VOverlay/VOverlay.sass +2 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VSlider/slider.mjs +25 -12
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/index.d.mts +12 -24
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/list-items.mjs +3 -3
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- 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 +3 -3
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,39 +66936,38 @@ declare module 'vue' {
|
|
66948
66936
|
$children?: VNodeChild
|
66949
66937
|
}
|
66950
66938
|
export interface GlobalComponents {
|
66951
|
-
VApp: typeof import('vuetify/components')['VApp']
|
66952
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66953
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
66954
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66955
66939
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
66956
66940
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
66957
66941
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
66942
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
66943
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66944
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
66945
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66958
66946
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66959
66947
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66960
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
66961
66948
|
VBanner: typeof import('vuetify/components')['VBanner']
|
66962
66949
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
66963
66950
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
66951
|
+
VApp: typeof import('vuetify/components')['VApp']
|
66964
66952
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66965
66953
|
VBtn: typeof import('vuetify/components')['VBtn']
|
66966
|
-
|
66954
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66955
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66956
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66957
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66958
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66959
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66960
|
+
VChip: typeof import('vuetify/components')['VChip']
|
66967
66961
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66968
66962
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66969
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66970
66963
|
VCard: typeof import('vuetify/components')['VCard']
|
66971
66964
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
66972
66965
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
66973
66966
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
66974
66967
|
VCardText: typeof import('vuetify/components')['VCardText']
|
66975
66968
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
66976
|
-
|
66977
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66978
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66979
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66980
|
-
VChip: typeof import('vuetify/components')['VChip']
|
66969
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66981
66970
|
VCode: typeof import('vuetify/components')['VCode']
|
66982
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66983
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66984
66971
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66985
66972
|
VCounter: typeof import('vuetify/components')['VCounter']
|
66986
66973
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
@@ -66990,35 +66977,34 @@ declare module 'vue' {
|
|
66990
66977
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
66991
66978
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
66992
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']
|
66993
66984
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66994
66985
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66995
66986
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66996
66987
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66997
66988
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66998
66989
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
66999
|
-
|
67000
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
67001
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
67002
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67003
|
-
VField: typeof import('vuetify/components')['VField']
|
67004
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67005
|
-
VFab: typeof import('vuetify/components')['VFab']
|
66990
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67006
66991
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67007
66992
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67008
66993
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67009
66994
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67010
|
-
|
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']
|
67011
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
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67019
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67020
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67021
67006
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67007
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67022
67008
|
VList: typeof import('vuetify/components')['VList']
|
67023
67009
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67024
67010
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67028,22 +67014,25 @@ declare module 'vue' {
|
|
67028
67014
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67029
67015
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67030
67016
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67017
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67018
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67031
67019
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67032
67020
|
VItem: typeof import('vuetify/components')['VItem']
|
67033
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67034
67021
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67035
67022
|
VMenu: typeof import('vuetify/components')['VMenu']
|
67036
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67037
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67038
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67039
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67040
67023
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67024
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67025
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67026
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67041
67027
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67042
|
-
|
67028
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67029
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67043
67030
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67044
|
-
|
67031
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67045
67032
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67033
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
67046
67034
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67035
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67047
67036
|
VSheet: typeof import('vuetify/components')['VSheet']
|
67048
67037
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67049
67038
|
VStepper: typeof import('vuetify/components')['VStepper']
|
@@ -67052,49 +67041,49 @@ declare module 'vue' {
|
|
67052
67041
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67053
67042
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67054
67043
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67055
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67056
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67057
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67058
67044
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67059
67045
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67046
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67047
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67048
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67060
67049
|
VTab: typeof import('vuetify/components')['VTab']
|
67061
67050
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67062
67051
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67063
67052
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67064
|
-
|
67053
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67054
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67065
67055
|
VTextField: typeof import('vuetify/components')['VTextField']
|
67066
67056
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67067
|
-
|
67057
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67068
67058
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67069
67059
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67070
67060
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67071
67061
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67072
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67073
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67074
67062
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67075
67063
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67076
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67077
67064
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67078
|
-
|
67065
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67079
67066
|
VForm: typeof import('vuetify/components')['VForm']
|
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']
|
67084
67072
|
VHover: typeof import('vuetify/components')['VHover']
|
67085
67073
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67074
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67086
67075
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67087
67076
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67088
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67089
67077
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67090
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
67091
67078
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67079
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67092
67080
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67093
67081
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67094
67082
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67095
67083
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67096
67084
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67097
67085
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67086
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67098
67087
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67099
67088
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
67100
67089
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -67111,29 +67100,28 @@ 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
|
-
|
67115
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67116
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67103
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67117
67104
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67118
67105
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67119
67106
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67120
67107
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67121
67108
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67122
67109
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67123
|
-
|
67124
|
-
|
67110
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67111
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67125
67112
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67126
67113
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67127
67114
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67128
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
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
|
*/
|
@@ -9633,7 +9633,7 @@ function transformItem$3(props, item) {
|
|
9633
9633
|
};
|
9634
9634
|
}
|
9635
9635
|
function transformItems$3(props, items) {
|
9636
|
-
const _props =
|
9636
|
+
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9637
9637
|
const array = [];
|
9638
9638
|
for (const item of items) {
|
9639
9639
|
array.push(transformItem$3(_props, item));
|
@@ -9676,7 +9676,7 @@ function useItems(props) {
|
|
9676
9676
|
const _returnObject = props.returnObject;
|
9677
9677
|
const hasValueComparator = !!props.valueComparator;
|
9678
9678
|
const valueComparator = props.valueComparator || deepEqual;
|
9679
|
-
const _props =
|
9679
|
+
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9680
9680
|
const returnValue = [];
|
9681
9681
|
main: for (const v of _value) {
|
9682
9682
|
// When the model value is null, return an InternalItem
|
@@ -15823,6 +15823,8 @@ const useSlider = _ref => {
|
|
15823
15823
|
const trackContainerRef = ref();
|
15824
15824
|
const activeThumbRef = ref();
|
15825
15825
|
function parseMouseMove(e) {
|
15826
|
+
const el = trackContainerRef.value?.$el;
|
15827
|
+
if (!el) return;
|
15826
15828
|
const vertical = props.direction === 'vertical';
|
15827
15829
|
const start = vertical ? 'top' : 'left';
|
15828
15830
|
const length = vertical ? 'height' : 'width';
|
@@ -15830,7 +15832,7 @@ const useSlider = _ref => {
|
|
15830
15832
|
const {
|
15831
15833
|
[start]: trackStart,
|
15832
15834
|
[length]: trackLength
|
15833
|
-
} =
|
15835
|
+
} = el.getBoundingClientRect();
|
15834
15836
|
const clickOffset = getPosition(e, position);
|
15835
15837
|
|
15836
15838
|
// It is possible for left to be NaN, force to number
|
@@ -15839,13 +15841,17 @@ const useSlider = _ref => {
|
|
15839
15841
|
return roundValue(min.value + clickPos * (max.value - min.value));
|
15840
15842
|
}
|
15841
15843
|
const handleStop = e => {
|
15842
|
-
|
15843
|
-
|
15844
|
-
|
15844
|
+
const value = parseMouseMove(e);
|
15845
|
+
if (value != null) {
|
15846
|
+
onSliderEnd({
|
15847
|
+
value
|
15848
|
+
});
|
15849
|
+
}
|
15845
15850
|
mousePressed.value = false;
|
15846
15851
|
startOffset.value = 0;
|
15847
15852
|
};
|
15848
15853
|
const handleStart = e => {
|
15854
|
+
const value = parseMouseMove(e);
|
15849
15855
|
activeThumbRef.value = getActiveThumb(e);
|
15850
15856
|
if (!activeThumbRef.value) return;
|
15851
15857
|
mousePressed.value = true;
|
@@ -15853,13 +15859,17 @@ const useSlider = _ref => {
|
|
15853
15859
|
startOffset.value = getOffset(e, activeThumbRef.value, props.direction);
|
15854
15860
|
} else {
|
15855
15861
|
startOffset.value = 0;
|
15856
|
-
|
15857
|
-
|
15862
|
+
if (value != null) {
|
15863
|
+
onSliderMove({
|
15864
|
+
value
|
15865
|
+
});
|
15866
|
+
}
|
15867
|
+
}
|
15868
|
+
if (value != null) {
|
15869
|
+
onSliderStart({
|
15870
|
+
value
|
15858
15871
|
});
|
15859
15872
|
}
|
15860
|
-
onSliderStart({
|
15861
|
-
value: parseMouseMove(e)
|
15862
|
-
});
|
15863
15873
|
nextTick(() => activeThumbRef.value?.focus());
|
15864
15874
|
};
|
15865
15875
|
const moveListenerOptions = {
|
@@ -15867,9 +15877,12 @@ const useSlider = _ref => {
|
|
15867
15877
|
capture: true
|
15868
15878
|
};
|
15869
15879
|
function onMouseMove(e) {
|
15870
|
-
|
15871
|
-
|
15872
|
-
|
15880
|
+
const value = parseMouseMove(e);
|
15881
|
+
if (value != null) {
|
15882
|
+
onSliderMove({
|
15883
|
+
value
|
15884
|
+
});
|
15885
|
+
}
|
15873
15886
|
}
|
15874
15887
|
function onSliderMouseUp(e) {
|
15875
15888
|
e.stopPropagation();
|
@@ -22002,7 +22015,7 @@ const makeVDatePickerMonthProps = propsFactory({
|
|
22002
22015
|
type: String,
|
22003
22016
|
default: 'picker-reverse-transition'
|
22004
22017
|
},
|
22005
|
-
...makeCalendarProps()
|
22018
|
+
...omit(makeCalendarProps(), ['displayValue'])
|
22006
22019
|
}, 'VDatePickerMonth');
|
22007
22020
|
const VDatePickerMonth = genericComponent()({
|
22008
22021
|
name: 'VDatePickerMonth',
|
@@ -28383,7 +28396,7 @@ function createVuetify$1() {
|
|
28383
28396
|
goTo
|
28384
28397
|
};
|
28385
28398
|
}
|
28386
|
-
const version$1 = "3.7.11-master.2025-02-
|
28399
|
+
const version$1 = "3.7.11-master.2025-02-11";
|
28387
28400
|
createVuetify$1.version = version$1;
|
28388
28401
|
|
28389
28402
|
// Vue's inject() can only be used in setup
|
@@ -28408,7 +28421,7 @@ const createVuetify = function () {
|
|
28408
28421
|
...options
|
28409
28422
|
});
|
28410
28423
|
};
|
28411
|
-
const version = "3.7.11-master.2025-02-
|
28424
|
+
const version = "3.7.11-master.2025-02-11";
|
28412
28425
|
createVuetify.version = version;
|
28413
28426
|
|
28414
28427
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|