@vuetify/nightly 3.7.7-master.2025-01-23 → 3.7.7-master.2025-01-24
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 +14 -8
- package/dist/json/attributes.json +1820 -1820
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +3482 -3591
- package/dist/vuetify-labs.css +3488 -3488
- package/dist/vuetify-labs.d.ts +625 -839
- package/dist/vuetify-labs.esm.js +6 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5961 -5961
- package/dist/vuetify.d.ts +123 -123
- package/dist/vuetify.esm.js +5 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VImg/VImg.mjs +2 -2
- package/lib/components/VImg/VImg.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/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- 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,47 +67105,46 @@ declare module 'vue' {
|
|
67105
67105
|
$children?: VNodeChild
|
67106
67106
|
}
|
67107
67107
|
export interface GlobalComponents {
|
67108
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67108
67109
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67109
67110
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67111
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67110
67112
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67111
67113
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67112
67114
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67113
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67114
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67115
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
67116
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67117
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
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']
|
67119
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67120
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67121
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67126
67122
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67127
|
-
|
67128
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67129
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67123
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67130
67124
|
VCard: typeof import('vuetify/components')['VCard']
|
67131
67125
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67132
67126
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67133
67127
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67134
67128
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67135
67129
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67136
|
-
|
67137
|
-
VCode: typeof import('vuetify/components')['VCode']
|
67130
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67138
67131
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67139
67132
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67133
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67134
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67135
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67136
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67137
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67138
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67140
67139
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67141
67140
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67141
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67142
67142
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67143
67143
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67144
67144
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67145
67145
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67146
67146
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67147
67147
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67148
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67149
67148
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67150
67149
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67151
67150
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67153,30 +67152,35 @@ declare module 'vue' {
|
|
67153
67152
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67154
67153
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67155
67154
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67156
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
67157
67155
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67156
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67157
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67158
|
+
VField: typeof import('vuetify/components')['VField']
|
67159
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67160
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67158
67161
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67159
67162
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67160
67163
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67161
67164
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67162
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67163
67165
|
VFab: typeof import('vuetify/components')['VFab']
|
67164
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67165
|
-
VField: typeof import('vuetify/components')['VField']
|
67166
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67167
67166
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67167
|
+
VChip: typeof import('vuetify/components')['VChip']
|
67168
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67169
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67168
67170
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67169
67171
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67170
67172
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67171
67173
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67172
67174
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67173
|
-
|
67174
|
-
VImg: typeof import('vuetify/components')['VImg']
|
67175
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67176
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67175
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67177
67176
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67177
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67178
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67179
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67178
67180
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67179
67181
|
VItem: typeof import('vuetify/components')['VItem']
|
67182
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67183
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67180
67184
|
VList: typeof import('vuetify/components')['VList']
|
67181
67185
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67182
67186
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67186,70 +67190,66 @@ declare module 'vue' {
|
|
67186
67190
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67187
67191
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67188
67192
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67189
|
-
|
67190
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67191
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67192
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67193
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67193
67194
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67194
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67195
67195
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67196
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67197
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67196
67198
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67197
67199
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67198
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67199
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67200
|
-
VRating: typeof import('vuetify/components')['VRating']
|
67201
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67202
67200
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67203
|
-
|
67201
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67204
67202
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67205
|
-
|
67203
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67204
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67205
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67206
67206
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67207
67207
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67208
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67209
67208
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67210
67209
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67211
67210
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67212
67211
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67213
67212
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67214
67213
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67214
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67215
67215
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67216
|
-
|
67216
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67217
67217
|
VTab: typeof import('vuetify/components')['VTab']
|
67218
67218
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67219
67219
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67220
67220
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67221
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67222
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67223
67221
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67224
67222
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67223
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67224
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67225
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
67226
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67227
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67225
67228
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67226
67229
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67227
67230
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67228
|
-
|
67229
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67231
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67230
67232
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67231
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
67232
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67233
67233
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67234
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67235
67234
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67235
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67236
67236
|
VForm: typeof import('vuetify/components')['VForm']
|
67237
67237
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67238
67238
|
VCol: typeof import('vuetify/components')['VCol']
|
67239
67239
|
VRow: typeof import('vuetify/components')['VRow']
|
67240
67240
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67241
67241
|
VHover: typeof import('vuetify/components')['VHover']
|
67242
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
67243
67242
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67244
67243
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67245
|
-
|
67244
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67246
67245
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67247
|
-
|
67246
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67248
67247
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67248
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67249
67249
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67250
67250
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67251
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67252
67251
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67252
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67253
67253
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67254
67254
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67255
67255
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
@@ -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
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67279
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67280
67278
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67281
67279
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67282
67280
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67283
67281
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67284
|
-
|
67285
|
-
|
67286
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67282
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67283
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67287
67284
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67288
67285
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67289
67286
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67290
|
-
|
67291
|
-
|
67292
|
-
|
67293
|
-
|
67287
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67288
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67289
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67290
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67291
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67294
67292
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67293
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67294
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
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-24
|
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)]
|
@@ -28309,7 +28309,7 @@ function createVuetify$1() {
|
|
28309
28309
|
goTo
|
28310
28310
|
};
|
28311
28311
|
}
|
28312
|
-
const version$1 = "3.7.7-master.2025-01-
|
28312
|
+
const version$1 = "3.7.7-master.2025-01-24";
|
28313
28313
|
createVuetify$1.version = version$1;
|
28314
28314
|
|
28315
28315
|
// Vue's inject() can only be used in setup
|
@@ -28334,7 +28334,7 @@ const createVuetify = function () {
|
|
28334
28334
|
...options
|
28335
28335
|
});
|
28336
28336
|
};
|
28337
|
-
const version = "3.7.7-master.2025-01-
|
28337
|
+
const version = "3.7.7-master.2025-01-24";
|
28338
28338
|
createVuetify.version = version;
|
28339
28339
|
|
28340
28340
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|