@vuetify/nightly 3.7.12-master.2025-02-14 → 3.7.12-master.2025-02-17
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 +12 -3
- package/dist/json/attributes.json +2936 -2924
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +174 -174
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +5456 -5428
- package/dist/vuetify-labs.css +3803 -3795
- package/dist/vuetify-labs.d.ts +80 -29
- package/dist/vuetify-labs.esm.js +109 -46
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +109 -46
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3706 -3706
- package/dist/vuetify.d.ts +86 -74
- package/dist/vuetify.esm.js +20 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +12 -8
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerControls.mjs +1 -1
- package/lib/components/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +27 -15
- package/lib/components/index.d.mts +27 -15
- package/lib/composables/calendar.mjs +4 -1
- 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 +59 -59
- package/lib/labs/VCalendar/index.d.mts +8 -2
- package/lib/labs/VDateInput/index.d.mts +8 -2
- package/lib/labs/VNumberInput/VNumberInput.css +10 -2
- package/lib/labs/VNumberInput/VNumberInput.mjs +93 -35
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/VNumberInput.sass +12 -2
- package/lib/labs/VNumberInput/index.d.mts +37 -10
- package/lib/labs/components.d.mts +53 -14
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -28071,7 +28071,10 @@ declare const VDatePicker: {
|
|
28071
28071
|
max: vue.PropType<unknown>;
|
28072
28072
|
min: vue.PropType<unknown>;
|
28073
28073
|
year: NumberConstructor;
|
28074
|
-
disabled:
|
28074
|
+
disabled: {
|
28075
|
+
type: BooleanConstructor;
|
28076
|
+
default: null;
|
28077
|
+
};
|
28075
28078
|
month: (StringConstructor | NumberConstructor)[];
|
28076
28079
|
showAdjacentMonths: BooleanConstructor;
|
28077
28080
|
weekdays: {
|
@@ -28182,7 +28185,10 @@ declare const VDatePicker: {
|
|
28182
28185
|
max: vue.PropType<unknown>;
|
28183
28186
|
min: vue.PropType<unknown>;
|
28184
28187
|
year: NumberConstructor;
|
28185
|
-
disabled:
|
28188
|
+
disabled: {
|
28189
|
+
type: BooleanConstructor;
|
28190
|
+
default: null;
|
28191
|
+
};
|
28186
28192
|
month: (StringConstructor | NumberConstructor)[];
|
28187
28193
|
showAdjacentMonths: BooleanConstructor;
|
28188
28194
|
weekdays: {
|
@@ -28254,7 +28260,7 @@ type VDatePicker = InstanceType<typeof VDatePicker>;
|
|
28254
28260
|
|
28255
28261
|
declare const VDatePickerControls: {
|
28256
28262
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
28257
|
-
disabled: string | boolean | string[];
|
28263
|
+
disabled: string | boolean | string[] | null;
|
28258
28264
|
nextIcon: IconValue;
|
28259
28265
|
prevIcon: IconValue;
|
28260
28266
|
modeIcon: IconValue;
|
@@ -28284,7 +28290,7 @@ declare const VDatePickerControls: {
|
|
28284
28290
|
'click:next': () => true;
|
28285
28291
|
'click:text': () => true;
|
28286
28292
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
28287
|
-
disabled: string | boolean | string[];
|
28293
|
+
disabled: string | boolean | string[] | null;
|
28288
28294
|
nextIcon: IconValue;
|
28289
28295
|
prevIcon: IconValue;
|
28290
28296
|
modeIcon: IconValue;
|
@@ -28309,7 +28315,7 @@ declare const VDatePickerControls: {
|
|
28309
28315
|
"onClick:text"?: (() => any) | undefined;
|
28310
28316
|
}, {
|
28311
28317
|
active: string | string[];
|
28312
|
-
disabled: string | boolean | string[];
|
28318
|
+
disabled: string | boolean | string[] | null;
|
28313
28319
|
nextIcon: IconValue;
|
28314
28320
|
prevIcon: IconValue;
|
28315
28321
|
modeIcon: IconValue;
|
@@ -28324,7 +28330,7 @@ declare const VDatePickerControls: {
|
|
28324
28330
|
M: {};
|
28325
28331
|
Defaults: {};
|
28326
28332
|
}, {
|
28327
|
-
disabled: string | boolean | string[];
|
28333
|
+
disabled: string | boolean | string[] | null;
|
28328
28334
|
nextIcon: IconValue;
|
28329
28335
|
prevIcon: IconValue;
|
28330
28336
|
modeIcon: IconValue;
|
@@ -28349,7 +28355,7 @@ declare const VDatePickerControls: {
|
|
28349
28355
|
"onClick:text"?: (() => any) | undefined;
|
28350
28356
|
}, {}, {}, {}, {}, {
|
28351
28357
|
active: string | string[];
|
28352
|
-
disabled: string | boolean | string[];
|
28358
|
+
disabled: string | boolean | string[] | null;
|
28353
28359
|
nextIcon: IconValue;
|
28354
28360
|
prevIcon: IconValue;
|
28355
28361
|
modeIcon: IconValue;
|
@@ -28359,7 +28365,7 @@ declare const VDatePickerControls: {
|
|
28359
28365
|
__isTeleport?: never;
|
28360
28366
|
__isSuspense?: never;
|
28361
28367
|
} & vue.ComponentOptionsBase<{
|
28362
|
-
disabled: string | boolean | string[];
|
28368
|
+
disabled: string | boolean | string[] | null;
|
28363
28369
|
nextIcon: IconValue;
|
28364
28370
|
prevIcon: IconValue;
|
28365
28371
|
modeIcon: IconValue;
|
@@ -28390,7 +28396,7 @@ declare const VDatePickerControls: {
|
|
28390
28396
|
'click:text': () => true;
|
28391
28397
|
}, string, {
|
28392
28398
|
active: string | string[];
|
28393
|
-
disabled: string | boolean | string[];
|
28399
|
+
disabled: string | boolean | string[] | null;
|
28394
28400
|
nextIcon: IconValue;
|
28395
28401
|
prevIcon: IconValue;
|
28396
28402
|
modeIcon: IconValue;
|
@@ -28403,8 +28409,8 @@ declare const VDatePickerControls: {
|
|
28403
28409
|
default: undefined;
|
28404
28410
|
};
|
28405
28411
|
disabled: {
|
28406
|
-
type: PropType<boolean | string | string[]>;
|
28407
|
-
default:
|
28412
|
+
type: PropType<boolean | string | string[] | null>;
|
28413
|
+
default: null;
|
28408
28414
|
};
|
28409
28415
|
nextIcon: {
|
28410
28416
|
type: PropType<IconValue>;
|
@@ -28429,8 +28435,8 @@ declare const VDatePickerControls: {
|
|
28429
28435
|
default: undefined;
|
28430
28436
|
};
|
28431
28437
|
disabled: {
|
28432
|
-
type: PropType<boolean | string | string[]>;
|
28433
|
-
default:
|
28438
|
+
type: PropType<boolean | string | string[] | null>;
|
28439
|
+
default: null;
|
28434
28440
|
};
|
28435
28441
|
nextIcon: {
|
28436
28442
|
type: PropType<IconValue>;
|
@@ -28855,7 +28861,10 @@ declare const VDatePickerMonth: {
|
|
28855
28861
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
28856
28862
|
max: PropType<unknown>;
|
28857
28863
|
min: PropType<unknown>;
|
28858
|
-
disabled:
|
28864
|
+
disabled: {
|
28865
|
+
type: BooleanConstructor;
|
28866
|
+
default: null;
|
28867
|
+
};
|
28859
28868
|
month: (StringConstructor | NumberConstructor)[];
|
28860
28869
|
year: (StringConstructor | NumberConstructor)[];
|
28861
28870
|
modelValue: PropType<unknown[]>;
|
@@ -28900,7 +28909,10 @@ declare const VDatePickerMonth: {
|
|
28900
28909
|
}, vue.ExtractPropTypes<{
|
28901
28910
|
max: PropType<unknown>;
|
28902
28911
|
min: PropType<unknown>;
|
28903
|
-
disabled:
|
28912
|
+
disabled: {
|
28913
|
+
type: BooleanConstructor;
|
28914
|
+
default: null;
|
28915
|
+
};
|
28904
28916
|
month: (StringConstructor | NumberConstructor)[];
|
28905
28917
|
year: (StringConstructor | NumberConstructor)[];
|
28906
28918
|
modelValue: PropType<unknown[]>;
|
@@ -66936,77 +66948,80 @@ declare module 'vue' {
|
|
66936
66948
|
$children?: VNodeChild
|
66937
66949
|
}
|
66938
66950
|
export interface GlobalComponents {
|
66939
|
-
VApp: typeof import('vuetify/components')['VApp']
|
66940
66951
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
66941
66952
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
66942
66953
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
66954
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66955
|
+
VApp: typeof import('vuetify/components')['VApp']
|
66943
66956
|
VAlert: typeof import('vuetify/components')['VAlert']
|
66944
66957
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66945
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
66946
66958
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66959
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66960
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66961
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
66962
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66947
66963
|
VBanner: typeof import('vuetify/components')['VBanner']
|
66948
66964
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
66949
66965
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
66950
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66951
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66952
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66953
66966
|
VBtn: typeof import('vuetify/components')['VBtn']
|
66954
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66955
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66956
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66957
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66958
66967
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66959
66968
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66960
|
-
VChip: typeof import('vuetify/components')['VChip']
|
66961
66969
|
VCard: typeof import('vuetify/components')['VCard']
|
66962
66970
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
66963
66971
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
66964
66972
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
66965
66973
|
VCardText: typeof import('vuetify/components')['VCardText']
|
66966
66974
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
66967
|
-
|
66968
|
-
|
66969
|
-
|
66975
|
+
VChip: typeof import('vuetify/components')['VChip']
|
66976
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66977
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66978
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66979
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66970
66980
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66971
66981
|
VCode: typeof import('vuetify/components')['VCode']
|
66972
|
-
|
66973
|
-
|
66974
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
66975
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
66976
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
66977
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
66978
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
66982
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66983
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66979
66984
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
66985
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66980
66986
|
VCounter: typeof import('vuetify/components')['VCounter']
|
66981
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
66982
66987
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66983
66988
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66984
66989
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66985
66990
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66986
66991
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66987
66992
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
66988
|
-
|
66993
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
66994
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
66995
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
66996
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
66997
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
66998
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
66999
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
66989
67000
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67001
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67002
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67003
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
66990
67004
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
66991
67005
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
66992
67006
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
66993
67007
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
66994
|
-
VFab: typeof import('vuetify/components')['VFab']
|
66995
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
66996
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
66997
67008
|
VField: typeof import('vuetify/components')['VField']
|
66998
67009
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67010
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67011
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
66999
67012
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67000
67013
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67001
67014
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67002
67015
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67003
67016
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67004
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67005
67017
|
VImg: typeof import('vuetify/components')['VImg']
|
67006
|
-
|
67018
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67019
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67020
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67007
67021
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67008
67022
|
VItem: typeof import('vuetify/components')['VItem']
|
67009
|
-
|
67023
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67024
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67010
67025
|
VList: typeof import('vuetify/components')['VList']
|
67011
67026
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67012
67027
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67016,67 +67031,66 @@ declare module 'vue' {
|
|
67016
67031
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67017
67032
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67018
67033
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67019
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67020
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67021
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67022
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67023
67034
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67035
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67036
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67024
67037
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67025
67038
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67026
67039
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67040
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67041
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67027
67042
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67028
67043
|
VRating: typeof import('vuetify/components')['VRating']
|
67029
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67030
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67031
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67032
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67033
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67034
67044
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67045
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67046
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67047
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67048
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67049
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67050
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67051
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67035
67052
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67036
67053
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67037
67054
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67038
67055
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67039
67056
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67040
67057
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67041
|
-
|
67042
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67043
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67044
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67058
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67045
67059
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67046
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67047
67060
|
VTab: typeof import('vuetify/components')['VTab']
|
67048
67061
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67049
67062
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67050
67063
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67051
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67052
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67053
67064
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67054
|
-
|
67055
|
-
|
67056
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67065
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67066
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67057
67067
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67058
67068
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67059
67069
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67060
|
-
|
67061
|
-
|
67070
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67071
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
67072
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67073
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67074
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67075
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67062
67076
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67063
67077
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67064
67078
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67079
|
+
VForm: typeof import('vuetify/components')['VForm']
|
67065
67080
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67066
67081
|
VCol: typeof import('vuetify/components')['VCol']
|
67067
67082
|
VRow: typeof import('vuetify/components')['VRow']
|
67068
67083
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67069
|
-
VForm: typeof import('vuetify/components')['VForm']
|
67070
67084
|
VHover: typeof import('vuetify/components')['VHover']
|
67071
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
67072
67085
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67073
67086
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67087
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67074
67088
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67075
67089
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67076
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
67077
67090
|
VRadio: typeof import('vuetify/components')['VRadio']
|
67078
|
-
|
67091
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
67079
67092
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67093
|
+
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67080
67094
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67081
67095
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67082
67096
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
@@ -67098,8 +67112,6 @@ declare module 'vue' {
|
|
67098
67112
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67099
67113
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67100
67114
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67101
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
67102
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67103
67115
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67104
67116
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67105
67117
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -67109,19 +67121,19 @@ declare module 'vue' {
|
|
67109
67121
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67110
67122
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67111
67123
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67124
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67125
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67126
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67112
67127
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67113
67128
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67114
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67115
67129
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67116
67130
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67117
67131
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67118
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67119
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67120
67132
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67121
67133
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67122
67134
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67123
67135
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67124
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67125
67136
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67137
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67126
67138
|
}
|
67127
67139
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.12-master.2025-02-
|
2
|
+
* Vuetify v3.7.12-master.2025-02-17
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -19063,15 +19063,19 @@ function provideSort(options) {
|
|
19063
19063
|
})) ?? [];
|
19064
19064
|
const item = newSortBy.find(x => x.key === column.key);
|
19065
19065
|
if (!item) {
|
19066
|
-
if (multiSort.value)
|
19067
|
-
|
19068
|
-
|
19069
|
-
|
19070
|
-
|
19071
|
-
|
19072
|
-
|
19066
|
+
if (multiSort.value) {
|
19067
|
+
newSortBy.push({
|
19068
|
+
key: column.key,
|
19069
|
+
order: 'asc'
|
19070
|
+
});
|
19071
|
+
} else {
|
19072
|
+
newSortBy = [{
|
19073
|
+
key: column.key,
|
19074
|
+
order: 'asc'
|
19075
|
+
}];
|
19076
|
+
}
|
19073
19077
|
} else if (item.order === 'desc') {
|
19074
|
-
if (mustSort.value) {
|
19078
|
+
if (mustSort.value && newSortBy.length === 1) {
|
19075
19079
|
item.order = 'asc';
|
19076
19080
|
} else {
|
19077
19081
|
newSortBy = newSortBy.filter(x => x.key !== column.key);
|
@@ -21696,7 +21700,7 @@ const makeVDatePickerControlsProps = propsFactory({
|
|
21696
21700
|
},
|
21697
21701
|
disabled: {
|
21698
21702
|
type: [Boolean, String, Array],
|
21699
|
-
default:
|
21703
|
+
default: null
|
21700
21704
|
},
|
21701
21705
|
nextIcon: {
|
21702
21706
|
type: IconValue,
|
@@ -21878,7 +21882,10 @@ const VDatePickerHeader = genericComponent()({
|
|
21878
21882
|
// Composables
|
21879
21883
|
const makeCalendarProps = propsFactory({
|
21880
21884
|
allowedDates: [Array, Function],
|
21881
|
-
disabled:
|
21885
|
+
disabled: {
|
21886
|
+
type: Boolean,
|
21887
|
+
default: null
|
21888
|
+
},
|
21882
21889
|
displayValue: null,
|
21883
21890
|
modelValue: Array,
|
21884
21891
|
month: [Number, String],
|
@@ -28411,7 +28418,7 @@ function createVuetify$1() {
|
|
28411
28418
|
goTo
|
28412
28419
|
};
|
28413
28420
|
}
|
28414
|
-
const version$1 = "3.7.12-master.2025-02-
|
28421
|
+
const version$1 = "3.7.12-master.2025-02-17";
|
28415
28422
|
createVuetify$1.version = version$1;
|
28416
28423
|
|
28417
28424
|
// Vue's inject() can only be used in setup
|
@@ -28436,7 +28443,7 @@ const createVuetify = function () {
|
|
28436
28443
|
...options
|
28437
28444
|
});
|
28438
28445
|
};
|
28439
|
-
const version = "3.7.12-master.2025-02-
|
28446
|
+
const version = "3.7.12-master.2025-02-17";
|
28440
28447
|
createVuetify.version = version;
|
28441
28448
|
|
28442
28449
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|