@vuetify/nightly 3.7.7-master.2025-01-23 → 3.7.7-master.2025-01-25
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 +25 -8
- package/dist/json/attributes.json +3992 -3992
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +150 -150
- package/dist/json/web-types.json +6640 -6749
- package/dist/vuetify-labs.css +3224 -3224
- package/dist/vuetify-labs.d.ts +625 -839
- package/dist/vuetify-labs.esm.js +29 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +29 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +6079 -6079
- package/dist/vuetify.d.ts +122 -122
- package/dist/vuetify.esm.js +28 -21
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +28 -21
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +31 -31
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs +1 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +2 -2
- package/lib/components/VDataTable/VDataTable.sass +2 -2
- package/lib/components/VDataTable/composables/group.mjs +1 -1
- package/lib/components/VDataTable/composables/group.mjs.map +1 -1
- package/lib/components/VDataTable/composables/paginate.mjs +2 -0
- package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/components/VField/VField.css +1 -1
- package/lib/components/VField/VField.mjs +6 -5
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/VField.sass +1 -1
- package/lib/components/VImg/VImg.mjs +2 -2
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VInput/VInput.mjs +4 -2
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMessages/VMessages.mjs +1 -3
- package/lib/components/VMessages/VMessages.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +1 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +66 -66
- package/lib/components/index.d.mts +66 -66
- package/lib/composables/calendar.mjs +4 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/router.mjs +2 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +56 -56
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +1 -2
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -1
- package/lib/labs/VStepperVertical/index.d.mts +585 -774
- package/lib/labs/components.d.mts +567 -781
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -52315,13 +52315,13 @@ declare const VSpeedDial: {
|
|
52315
52315
|
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
52316
52316
|
|
52317
52317
|
type StepperItem = string | Record<string, any>;
|
52318
|
-
type StepperItemSlot = {
|
52318
|
+
type StepperItemSlot<T = any> = {
|
52319
52319
|
canEdit: boolean;
|
52320
52320
|
hasError: boolean;
|
52321
52321
|
hasCompleted: boolean;
|
52322
52322
|
title?: string | number;
|
52323
52323
|
subtitle?: string | number;
|
52324
|
-
step:
|
52324
|
+
step: T;
|
52325
52325
|
};
|
52326
52326
|
type ValidationRule = () => string | boolean;
|
52327
52327
|
declare const VStepperItem: {
|
@@ -52345,23 +52345,23 @@ declare const VStepperItem: {
|
|
52345
52345
|
selectedClass?: string | undefined;
|
52346
52346
|
subtitle?: string | undefined;
|
52347
52347
|
} & {
|
52348
|
-
$children?: vue.VNodeChild |
|
52349
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52350
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52351
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52352
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52353
|
-
};
|
52348
|
+
$children?: vue.VNodeChild | {
|
52349
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52350
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52351
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52352
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52353
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52354
52354
|
'v-slots'?: {
|
52355
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52356
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52357
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52358
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52355
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52356
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52357
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52358
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52359
52359
|
} | undefined;
|
52360
52360
|
} & {
|
52361
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52362
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52363
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52364
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52361
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52362
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52363
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52364
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52365
52365
|
} & {
|
52366
52366
|
"onGroup:selected"?: ((val: {
|
52367
52367
|
value: boolean;
|
@@ -52390,23 +52390,23 @@ declare const VStepperItem: {
|
|
52390
52390
|
selectedClass?: string | undefined;
|
52391
52391
|
subtitle?: string | undefined;
|
52392
52392
|
} & {
|
52393
|
-
$children?: vue.VNodeChild |
|
52394
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52395
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52396
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52397
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52398
|
-
};
|
52393
|
+
$children?: vue.VNodeChild | {
|
52394
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52395
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52396
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52397
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52398
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52399
52399
|
'v-slots'?: {
|
52400
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52401
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52402
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52403
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52400
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52401
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52402
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52403
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52404
52404
|
} | undefined;
|
52405
52405
|
} & {
|
52406
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52407
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52408
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52409
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52406
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52407
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52408
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52409
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52410
52410
|
} & {
|
52411
52411
|
"onGroup:selected"?: ((val: {
|
52412
52412
|
value: boolean;
|
@@ -52424,10 +52424,10 @@ declare const VStepperItem: {
|
|
52424
52424
|
editIcon: IconValue;
|
52425
52425
|
errorIcon: IconValue;
|
52426
52426
|
}, true, {}, vue.SlotsType<Partial<{
|
52427
|
-
default: (arg: StepperItemSlot) => vue.VNode[];
|
52428
|
-
icon: (arg: StepperItemSlot) => vue.VNode[];
|
52429
|
-
title: (arg: StepperItemSlot) => vue.VNode[];
|
52430
|
-
subtitle: (arg: StepperItemSlot) => vue.VNode[];
|
52427
|
+
default: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52428
|
+
icon: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52429
|
+
title: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52430
|
+
subtitle: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52431
52431
|
}>>, {
|
52432
52432
|
P: {};
|
52433
52433
|
B: {};
|
@@ -52455,23 +52455,23 @@ declare const VStepperItem: {
|
|
52455
52455
|
selectedClass?: string | undefined;
|
52456
52456
|
subtitle?: string | undefined;
|
52457
52457
|
} & {
|
52458
|
-
$children?: vue.VNodeChild |
|
52459
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52460
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52461
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52462
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52463
|
-
};
|
52458
|
+
$children?: vue.VNodeChild | {
|
52459
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52460
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52461
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52462
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52463
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52464
52464
|
'v-slots'?: {
|
52465
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52466
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52467
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52468
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52465
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52466
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52467
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52468
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52469
52469
|
} | undefined;
|
52470
52470
|
} & {
|
52471
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52472
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52473
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52474
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52471
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52472
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52473
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52474
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52475
52475
|
} & {
|
52476
52476
|
"onGroup:selected"?: ((val: {
|
52477
52477
|
value: boolean;
|
@@ -52512,23 +52512,23 @@ declare const VStepperItem: {
|
|
52512
52512
|
selectedClass?: string | undefined;
|
52513
52513
|
subtitle?: string | undefined;
|
52514
52514
|
} & {
|
52515
|
-
$children?: vue.VNodeChild |
|
52516
|
-
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52517
|
-
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52518
|
-
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52519
|
-
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52520
|
-
};
|
52515
|
+
$children?: vue.VNodeChild | {
|
52516
|
+
default?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52517
|
+
icon?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52518
|
+
title?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52519
|
+
subtitle?: ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52520
|
+
} | ((arg: StepperItemSlot<any>) => vue.VNodeChild);
|
52521
52521
|
'v-slots'?: {
|
52522
|
-
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52523
|
-
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52524
|
-
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52525
|
-
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52522
|
+
default?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52523
|
+
icon?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52524
|
+
title?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52525
|
+
subtitle?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52526
52526
|
} | undefined;
|
52527
52527
|
} & {
|
52528
|
-
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52529
|
-
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52530
|
-
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52531
|
-
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
52528
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52529
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52530
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52531
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot<any>) => vue.VNodeChild) | undefined;
|
52532
52532
|
} & {
|
52533
52533
|
"onGroup:selected"?: ((val: {
|
52534
52534
|
value: boolean;
|
@@ -52550,10 +52550,10 @@ declare const VStepperItem: {
|
|
52550
52550
|
editIcon: IconValue;
|
52551
52551
|
errorIcon: IconValue;
|
52552
52552
|
}, {}, string, vue.SlotsType<Partial<{
|
52553
|
-
default: (arg: StepperItemSlot) => vue.VNode[];
|
52554
|
-
icon: (arg: StepperItemSlot) => vue.VNode[];
|
52555
|
-
title: (arg: StepperItemSlot) => vue.VNode[];
|
52556
|
-
subtitle: (arg: StepperItemSlot) => vue.VNode[];
|
52553
|
+
default: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52554
|
+
icon: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52555
|
+
title: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52556
|
+
subtitle: (arg: StepperItemSlot<any>) => vue.VNode[];
|
52557
52557
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
52558
52558
|
value: null;
|
52559
52559
|
disabled: BooleanConstructor;
|
@@ -67105,39 +67105,33 @@ declare module 'vue' {
|
|
67105
67105
|
$children?: VNodeChild
|
67106
67106
|
}
|
67107
67107
|
export interface GlobalComponents {
|
67108
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
67109
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67110
67108
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67111
67109
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67112
67110
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67113
|
-
|
67111
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
67112
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67114
67113
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67115
|
-
|
67116
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67117
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67114
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67118
67115
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67119
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67120
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
67121
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67122
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67123
67116
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67124
67117
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67125
67118
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67126
|
-
|
67119
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67127
67120
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67128
67121
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67129
67122
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67130
|
-
|
67131
|
-
|
67132
|
-
|
67133
|
-
|
67134
|
-
|
67135
|
-
|
67136
|
-
|
67137
|
-
|
67123
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67124
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67125
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67126
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67127
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67128
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67129
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67130
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67138
67131
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67139
67132
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67140
67133
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67134
|
+
VChip: typeof import('vuetify/components')['VChip']
|
67141
67135
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67142
67136
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67143
67137
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
@@ -67145,7 +67139,13 @@ declare module 'vue' {
|
|
67145
67139
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67146
67140
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67147
67141
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67148
|
-
|
67142
|
+
VCard: typeof import('vuetify/components')['VCard']
|
67143
|
+
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67144
|
+
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67145
|
+
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67146
|
+
VCardText: typeof import('vuetify/components')['VCardText']
|
67147
|
+
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67148
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67149
67149
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67150
67150
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67151
67151
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67153,15 +67153,14 @@ declare module 'vue' {
|
|
67153
67153
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67154
67154
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67155
67155
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67156
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67156
67157
|
VDialog: typeof import('vuetify/components')['VDialog']
|
67157
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
67158
67158
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67159
67159
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67160
67160
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67161
67161
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67162
67162
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67163
|
-
|
67164
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67163
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
67165
67164
|
VField: typeof import('vuetify/components')['VField']
|
67166
67165
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67167
67166
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
@@ -67170,11 +67169,11 @@ declare module 'vue' {
|
|
67170
67169
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67171
67170
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67172
67171
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67173
|
-
|
67174
|
-
|
67175
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67176
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67172
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67173
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67177
67174
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67175
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67176
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67178
67177
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67179
67178
|
VItem: typeof import('vuetify/components')['VItem']
|
67180
67179
|
VList: typeof import('vuetify/components')['VList']
|
@@ -67186,72 +67185,73 @@ declare module 'vue' {
|
|
67186
67185
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67187
67186
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67188
67187
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67189
|
-
|
67190
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67188
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67191
67189
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67192
|
-
|
67190
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67193
67191
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67194
|
-
|
67195
|
-
|
67192
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67193
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67196
67194
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67197
67195
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67196
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67197
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67198
67198
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67199
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67200
67199
|
VRating: typeof import('vuetify/components')['VRating']
|
67201
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67202
67200
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67203
|
-
|
67201
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67202
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67203
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67204
67204
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67205
|
-
|
67205
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67206
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67206
67207
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67207
67208
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67208
|
-
|
67209
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67210
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67211
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67209
67212
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67210
67213
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67211
67214
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67212
67215
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67213
67216
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67214
67217
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67215
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67216
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67217
67218
|
VTab: typeof import('vuetify/components')['VTab']
|
67218
67219
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67219
67220
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67220
67221
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67222
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67221
67223
|
VTable: typeof import('vuetify/components')['VTable']
|
67222
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67223
67224
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67224
67225
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67225
|
-
|
67226
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67227
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67228
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67229
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67226
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67230
67227
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67231
67228
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67232
67229
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67233
|
-
|
67230
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67231
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67232
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67234
67233
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67234
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67235
67235
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67236
67236
|
VForm: typeof import('vuetify/components')['VForm']
|
67237
|
+
VHover: typeof import('vuetify/components')['VHover']
|
67237
67238
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67238
67239
|
VCol: typeof import('vuetify/components')['VCol']
|
67239
67240
|
VRow: typeof import('vuetify/components')['VRow']
|
67240
67241
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67241
|
-
VHover: typeof import('vuetify/components')['VHover']
|
67242
67242
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67243
67243
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67244
67244
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67245
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67246
67245
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67247
|
-
|
67246
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67248
67247
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67249
67248
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67249
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67250
67250
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67251
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67252
67251
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67253
|
-
|
67252
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67254
67253
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67254
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67255
67255
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67256
67256
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67257
67257
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -67275,22 +67275,22 @@ declare module 'vue' {
|
|
67275
67275
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67276
67276
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67277
67277
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67278
|
-
|
67279
|
-
|
67278
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67279
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67280
67280
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67281
67281
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67282
67282
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67283
67283
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67284
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67285
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67284
67286
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67285
67287
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67286
67288
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67287
67289
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67288
67290
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67289
67291
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67290
|
-
|
67291
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67292
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67292
67293
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67293
67294
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67294
|
-
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67295
67295
|
}
|
67296
67296
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.7-master.2025-01-
|
2
|
+
* Vuetify v3.7.7-master.2025-01-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -3889,10 +3889,10 @@ const VImg = genericComponent()({
|
|
3889
3889
|
"style": {
|
3890
3890
|
objectPosition: props.position
|
3891
3891
|
},
|
3892
|
+
"crossorigin": props.crossorigin,
|
3892
3893
|
"src": normalisedSrc.value.src,
|
3893
3894
|
"srcset": normalisedSrc.value.srcset,
|
3894
3895
|
"alt": props.alt,
|
3895
|
-
"crossorigin": props.crossorigin,
|
3896
3896
|
"referrerpolicy": props.referrerpolicy,
|
3897
3897
|
"draggable": props.draggable,
|
3898
3898
|
"sizes": props.sizes,
|
@@ -3918,9 +3918,9 @@ const VImg = genericComponent()({
|
|
3918
3918
|
"style": {
|
3919
3919
|
objectPosition: props.position
|
3920
3920
|
},
|
3921
|
+
"crossorigin": props.crossorigin,
|
3921
3922
|
"src": normalisedSrc.value.lazySrc,
|
3922
3923
|
"alt": props.alt,
|
3923
|
-
"crossorigin": props.crossorigin,
|
3924
3924
|
"referrerpolicy": props.referrerpolicy,
|
3925
3925
|
"draggable": props.draggable
|
3926
3926
|
}, null)]
|
@@ -5448,10 +5448,10 @@ function useBackButton(router, cb) {
|
|
5448
5448
|
let popped = false;
|
5449
5449
|
let removeBefore;
|
5450
5450
|
let removeAfter;
|
5451
|
-
if (IN_BROWSER) {
|
5451
|
+
if (IN_BROWSER && router?.beforeEach) {
|
5452
5452
|
nextTick(() => {
|
5453
5453
|
window.addEventListener('popstate', onPopstate);
|
5454
|
-
removeBefore = router
|
5454
|
+
removeBefore = router.beforeEach((to, from, next) => {
|
5455
5455
|
if (!inTransition) {
|
5456
5456
|
setTimeout(() => popped ? cb(next) : next());
|
5457
5457
|
} else {
|
@@ -6746,9 +6746,7 @@ const VMessages = genericComponent()({
|
|
6746
6746
|
"transition": props.transition,
|
6747
6747
|
"tag": "div",
|
6748
6748
|
"class": ['v-messages', textColorClasses.value, props.class],
|
6749
|
-
"style": [textColorStyles.value, props.style]
|
6750
|
-
"role": "alert",
|
6751
|
-
"aria-live": "polite"
|
6749
|
+
"style": [textColorStyles.value, props.style]
|
6752
6750
|
}, {
|
6753
6751
|
default: () => [props.active && messages.value.map((message, i) => createVNode("div", {
|
6754
6752
|
"class": "v-messages__message",
|
@@ -7217,9 +7215,11 @@ const VInput = genericComponent()({
|
|
7217
7215
|
"key": "append-icon",
|
7218
7216
|
"name": "append"
|
7219
7217
|
}, null), slots.append?.(slotProps.value)]), hasDetails && createVNode("div", {
|
7220
|
-
"class": "v-input__details"
|
7221
|
-
}, [createVNode(VMessages, {
|
7222
7218
|
"id": messagesId.value,
|
7219
|
+
"class": "v-input__details",
|
7220
|
+
"role": "alert",
|
7221
|
+
"aria-live": "polite"
|
7222
|
+
}, [createVNode(VMessages, {
|
7223
7223
|
"active": hasMessages,
|
7224
7224
|
"messages": messages.value
|
7225
7225
|
}, {
|
@@ -11565,7 +11565,7 @@ const VMenu = genericComponent()({
|
|
11565
11565
|
const activatorProps = computed(() => mergeProps({
|
11566
11566
|
'aria-haspopup': 'menu',
|
11567
11567
|
'aria-expanded': String(isActive.value),
|
11568
|
-
'aria-
|
11568
|
+
'aria-controls': id.value,
|
11569
11569
|
onKeydown: onActivatorKeydown
|
11570
11570
|
}, props.activatorProps));
|
11571
11571
|
useRender(() => {
|
@@ -11755,7 +11755,8 @@ const VField = genericComponent()({
|
|
11755
11755
|
rtlClasses
|
11756
11756
|
} = useRtl();
|
11757
11757
|
const isActive = computed(() => props.dirty || props.active);
|
11758
|
-
const hasLabel = computed(() =>
|
11758
|
+
const hasLabel = computed(() => !!(props.label || slots.label));
|
11759
|
+
const hasFloatingLabel = computed(() => !props.singleLine && hasLabel.value);
|
11759
11760
|
const uid = getUid();
|
11760
11761
|
const id = computed(() => props.id || `input-${uid}`);
|
11761
11762
|
const messagesId = computed(() => `${id.value}-messages`);
|
@@ -11774,7 +11775,7 @@ const VField = genericComponent()({
|
|
11774
11775
|
return props.error || props.disabled ? undefined : isActive.value && isFocused.value ? props.color : props.baseColor;
|
11775
11776
|
}));
|
11776
11777
|
watch(isActive, val => {
|
11777
|
-
if (
|
11778
|
+
if (hasFloatingLabel.value) {
|
11778
11779
|
const el = labelRef.value.$el;
|
11779
11780
|
const targetEl = floatingLabelRef.value.$el;
|
11780
11781
|
requestAnimationFrame(() => {
|
@@ -11870,7 +11871,7 @@ const VField = genericComponent()({
|
|
11870
11871
|
}, null), slots['prepend-inner']?.(slotProps.value)]), createVNode("div", {
|
11871
11872
|
"class": "v-field__field",
|
11872
11873
|
"data-no-activator": ""
|
11873
|
-
}, [['filled', 'solo', 'solo-inverted', 'solo-filled'].includes(props.variant) &&
|
11874
|
+
}, [['filled', 'solo', 'solo-inverted', 'solo-filled'].includes(props.variant) && hasFloatingLabel.value && createVNode(VFieldLabel, {
|
11874
11875
|
"key": "floating-label",
|
11875
11876
|
"ref": floatingLabelRef,
|
11876
11877
|
"class": [textColorClasses.value],
|
@@ -11934,7 +11935,7 @@ const VField = genericComponent()({
|
|
11934
11935
|
"style": textColorStyles.value
|
11935
11936
|
}, [isOutlined && createVNode(Fragment, null, [createVNode("div", {
|
11936
11937
|
"class": "v-field__outline__start"
|
11937
|
-
}, null),
|
11938
|
+
}, null), hasFloatingLabel.value && createVNode("div", {
|
11938
11939
|
"class": "v-field__outline__notch"
|
11939
11940
|
}, [createVNode(VFieldLabel, {
|
11940
11941
|
"ref": floatingLabelRef,
|
@@ -11944,7 +11945,7 @@ const VField = genericComponent()({
|
|
11944
11945
|
default: () => [label()]
|
11945
11946
|
})]), createVNode("div", {
|
11946
11947
|
"class": "v-field__outline__end"
|
11947
|
-
}, null)]), isPlainOrUnderlined.value &&
|
11948
|
+
}, null)]), isPlainOrUnderlined.value && hasFloatingLabel.value && createVNode(VFieldLabel, {
|
11948
11949
|
"ref": floatingLabelRef,
|
11949
11950
|
"floating": true,
|
11950
11951
|
"for": id.value
|
@@ -12767,7 +12768,7 @@ const VSelect = genericComponent()({
|
|
12767
12768
|
// html select hotkeys
|
12768
12769
|
const KEYBOARD_LOOKUP_THRESHOLD = 1000; // milliseconds
|
12769
12770
|
|
12770
|
-
if (
|
12771
|
+
if (!checkPrintable(e)) return;
|
12771
12772
|
const now = performance.now();
|
12772
12773
|
if (now - keyboardLookupLastTime > KEYBOARD_LOOKUP_THRESHOLD) {
|
12773
12774
|
keyboardLookupPrefix = '';
|
@@ -14157,6 +14158,7 @@ const VBreadcrumbsDivider = genericComponent()({
|
|
14157
14158
|
slots
|
14158
14159
|
} = _ref;
|
14159
14160
|
useRender(() => createVNode("li", {
|
14161
|
+
"aria-hidden": "true",
|
14160
14162
|
"class": ['v-breadcrumbs-divider', props.class],
|
14161
14163
|
"style": props.style
|
14162
14164
|
}, [slots?.default?.() ?? props.divider]));
|
@@ -18515,7 +18517,7 @@ function provideGroupBy(options) {
|
|
18515
18517
|
arr.push(item);
|
18516
18518
|
}
|
18517
18519
|
}
|
18518
|
-
return arr;
|
18520
|
+
return [...new Set(arr)];
|
18519
18521
|
}
|
18520
18522
|
return dive({
|
18521
18523
|
type: 'group',
|
@@ -18741,6 +18743,8 @@ function usePaginatedItems(options) {
|
|
18741
18743
|
});
|
18742
18744
|
watch(paginatedItems, val => {
|
18743
18745
|
vm.emit('update:currentItems', val);
|
18746
|
+
}, {
|
18747
|
+
immediate: true
|
18744
18748
|
});
|
18745
18749
|
return {
|
18746
18750
|
paginatedItems
|
@@ -21818,12 +21822,15 @@ function useCalendar(props) {
|
|
21818
21822
|
const date = adapter.setYear(adapter.startOfMonth(adapter.date()), adapter.getYear(year.value));
|
21819
21823
|
return adapter.setMonth(date, value);
|
21820
21824
|
}, v => adapter.getMonth(v));
|
21825
|
+
const defaultFirstDayOfWeek = computed(() => {
|
21826
|
+
return props.firstDayOfWeek ?? props.weekdays[0];
|
21827
|
+
});
|
21821
21828
|
const weekDays = computed(() => {
|
21822
21829
|
const firstDayOfWeek = Number(props.firstDayOfWeek ?? 0);
|
21823
21830
|
return props.weekdays.map(day => (day + firstDayOfWeek) % 7);
|
21824
21831
|
});
|
21825
21832
|
const weeksInMonth = computed(() => {
|
21826
|
-
const weeks = adapter.getWeekArray(month.value,
|
21833
|
+
const weeks = adapter.getWeekArray(month.value, defaultFirstDayOfWeek.value);
|
21827
21834
|
const days = weeks.flat();
|
21828
21835
|
|
21829
21836
|
// Make sure there's always 6 weeks in month (6 * 7 days)
|
@@ -28309,7 +28316,7 @@ function createVuetify$1() {
|
|
28309
28316
|
goTo
|
28310
28317
|
};
|
28311
28318
|
}
|
28312
|
-
const version$1 = "3.7.7-master.2025-01-
|
28319
|
+
const version$1 = "3.7.7-master.2025-01-25";
|
28313
28320
|
createVuetify$1.version = version$1;
|
28314
28321
|
|
28315
28322
|
// Vue's inject() can only be used in setup
|
@@ -28334,7 +28341,7 @@ const createVuetify = function () {
|
|
28334
28341
|
...options
|
28335
28342
|
});
|
28336
28343
|
};
|
28337
|
-
const version = "3.7.7-master.2025-01-
|
28344
|
+
const version = "3.7.7-master.2025-01-25";
|
28338
28345
|
createVuetify.version = version;
|
28339
28346
|
|
28340
28347
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|