@vuetify/nightly 3.7.12-master.2025-02-18 → 3.7.12-master.2025-02-19
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 +2555 -2555
- package/dist/json/importMap-labs.json +38 -38
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +4785 -4785
- package/dist/vuetify-labs.css +4769 -4769
- package/dist/vuetify-labs.d.ts +17 -8
- package/dist/vuetify-labs.esm.js +23 -30
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +23 -30
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5007 -5007
- package/dist/vuetify.d.ts +74 -65
- package/dist/vuetify.esm.js +14 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +14 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1056 -1057
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VInput/VInput.mjs +2 -2
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +1 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +2 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +13 -1
- package/lib/components/VOtpInput/VOtpInput.mjs +2 -2
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VStepper/VStepper.mjs +2 -2
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.mjs +2 -2
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/index.d.mts +17 -8
- package/lib/composables/list-items.mjs +2 -3
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/lib/labs/VFileUpload/VFileUpload.mjs +2 -2
- package/lib/labs/VFileUpload/VFileUpload.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +9 -11
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/util/helpers.mjs +3 -9
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -3,7 +3,7 @@ import { Ref, DeepReadonly, ComponentPropsOptions, ExtractPropTypes, VNodeChild,
|
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
// @ts-ignore
|
6
|
-
import { RouteLocationRaw } from 'vue-router';
|
6
|
+
import { RouteLocationRaw, useLink } from 'vue-router';
|
7
7
|
|
8
8
|
interface DateAdapter<T = unknown> {
|
9
9
|
date(value?: any): T | null;
|
@@ -4098,6 +4098,19 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
|
|
4098
4098
|
} | undefined;
|
4099
4099
|
};
|
4100
4100
|
|
4101
|
+
interface LinkProps {
|
4102
|
+
href: string | undefined;
|
4103
|
+
replace: boolean | undefined;
|
4104
|
+
to: RouteLocationRaw | undefined;
|
4105
|
+
exact: boolean | undefined;
|
4106
|
+
}
|
4107
|
+
interface UseLink extends Omit<Partial<ReturnType<typeof useLink>>, 'href'> {
|
4108
|
+
isLink: ComputedRef<boolean>;
|
4109
|
+
isClickable: ComputedRef<boolean>;
|
4110
|
+
href: Ref<string | undefined>;
|
4111
|
+
linkProps: Record<string, string | undefined>;
|
4112
|
+
}
|
4113
|
+
|
4101
4114
|
type ListItemSlot = {
|
4102
4115
|
isActive: boolean;
|
4103
4116
|
isOpen: boolean;
|
@@ -4214,6 +4227,7 @@ declare const VListItem: {
|
|
4214
4227
|
getPath: (id: unknown) => unknown[];
|
4215
4228
|
};
|
4216
4229
|
id: vue.ComputedRef<{} | null>;
|
4230
|
+
link: UseLink;
|
4217
4231
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
4218
4232
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
4219
4233
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -4408,6 +4422,7 @@ declare const VListItem: {
|
|
4408
4422
|
getPath: (id: unknown) => unknown[];
|
4409
4423
|
};
|
4410
4424
|
id: vue.ComputedRef<{} | null>;
|
4425
|
+
link: UseLink;
|
4411
4426
|
}, {}, {}, {}, {
|
4412
4427
|
replace: boolean;
|
4413
4428
|
link: boolean;
|
@@ -4524,6 +4539,7 @@ declare const VListItem: {
|
|
4524
4539
|
getPath: (id: unknown) => unknown[];
|
4525
4540
|
};
|
4526
4541
|
id: vue.ComputedRef<{} | null>;
|
4542
|
+
link: UseLink;
|
4527
4543
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
4528
4544
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
4529
4545
|
}, string, {
|
@@ -13218,13 +13234,6 @@ declare const VBottomSheet: {
|
|
13218
13234
|
}>>;
|
13219
13235
|
type VBottomSheet = InstanceType<typeof VBottomSheet>;
|
13220
13236
|
|
13221
|
-
interface LinkProps {
|
13222
|
-
href: string | undefined;
|
13223
|
-
replace: boolean | undefined;
|
13224
|
-
to: RouteLocationRaw | undefined;
|
13225
|
-
exact: boolean | undefined;
|
13226
|
-
}
|
13227
|
-
|
13228
13237
|
type InternalBreadcrumbItem = Partial<LinkProps> & {
|
13229
13238
|
title: string;
|
13230
13239
|
disabled?: boolean;
|
@@ -66948,27 +66957,27 @@ declare module 'vue' {
|
|
66948
66957
|
$children?: VNodeChild
|
66949
66958
|
}
|
66950
66959
|
export interface GlobalComponents {
|
66951
|
-
VApp: typeof import('vuetify/components')['VApp']
|
66952
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
66953
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66954
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
66955
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66956
66960
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
66957
66961
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
66958
66962
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
66959
|
-
|
66960
|
-
|
66961
|
-
|
66962
|
-
|
66963
|
-
|
66963
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
66964
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66965
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66966
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
66967
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66964
66968
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66965
66969
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66966
66970
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66971
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66972
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66973
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
66974
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
66975
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
66967
66976
|
VBtn: typeof import('vuetify/components')['VBtn']
|
66977
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66968
66978
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66969
66979
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66970
66980
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66971
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66972
66981
|
VCard: typeof import('vuetify/components')['VCard']
|
66973
66982
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
66974
66983
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
@@ -66976,12 +66985,19 @@ declare module 'vue' {
|
|
66976
66985
|
VCardText: typeof import('vuetify/components')['VCardText']
|
66977
66986
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
66978
66987
|
VChip: typeof import('vuetify/components')['VChip']
|
66979
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66980
66988
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66989
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
66990
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66981
66991
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
66992
|
+
VCode: typeof import('vuetify/components')['VCode']
|
66982
66993
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66983
66994
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66984
|
-
|
66995
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66996
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66997
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66998
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66999
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67000
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
66985
67001
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
66986
67002
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
66987
67003
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -66989,15 +67005,9 @@ declare module 'vue' {
|
|
66989
67005
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
66990
67006
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
66991
67007
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
66992
|
-
|
67008
|
+
VApp: typeof import('vuetify/components')['VApp']
|
66993
67009
|
VDialog: typeof import('vuetify/components')['VDialog']
|
66994
|
-
|
66995
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66996
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66997
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66998
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66999
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67000
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67010
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67001
67011
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67002
67012
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67003
67013
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
@@ -67005,18 +67015,22 @@ declare module 'vue' {
|
|
67005
67015
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67006
67016
|
VField: typeof import('vuetify/components')['VField']
|
67007
67017
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67008
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67009
|
-
VFab: typeof import('vuetify/components')['VFab']
|
67010
|
-
VImg: typeof import('vuetify/components')['VImg']
|
67011
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67012
67018
|
VFooter: typeof import('vuetify/components')['VFooter']
|
67013
|
-
|
67019
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67014
67020
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67015
67021
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67016
67022
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67017
67023
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67018
67024
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67025
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67026
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67019
67027
|
VInput: typeof import('vuetify/components')['VInput']
|
67028
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67029
|
+
VItem: typeof import('vuetify/components')['VItem']
|
67030
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67031
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67032
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67033
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67020
67034
|
VList: typeof import('vuetify/components')['VList']
|
67021
67035
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67022
67036
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67026,53 +67040,48 @@ declare module 'vue' {
|
|
67026
67040
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67027
67041
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67028
67042
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67029
|
-
|
67030
|
-
VItem: typeof import('vuetify/components')['VItem']
|
67031
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67032
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67033
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67034
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67035
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67036
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67043
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67037
67044
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67045
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67038
67046
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67047
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67048
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67039
67049
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67040
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67041
67050
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67042
67051
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67043
67052
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67044
67053
|
VRating: typeof import('vuetify/components')['VRating']
|
67045
67054
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67046
67055
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67047
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67048
67056
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67049
|
-
|
67057
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67050
67058
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67051
67059
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67052
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67053
67060
|
VSlider: typeof import('vuetify/components')['VSlider']
|
67061
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67062
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67054
67063
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67055
|
-
VTab: typeof import('vuetify/components')['VTab']
|
67056
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
67057
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67058
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67059
67064
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67060
67065
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67061
67066
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67062
67067
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67063
67068
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67064
67069
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67065
|
-
|
67066
|
-
|
67067
|
-
|
67070
|
+
VTab: typeof import('vuetify/components')['VTab']
|
67071
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
67072
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67073
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67068
67074
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67069
67075
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67076
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67077
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67078
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67070
67079
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67071
67080
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67072
67081
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67082
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67073
67083
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67074
67084
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67075
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67076
67085
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67077
67086
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67078
67087
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -67087,8 +67096,8 @@ declare module 'vue' {
|
|
67087
67096
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67088
67097
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67089
67098
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67090
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
67091
67099
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67100
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67092
67101
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67093
67102
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67094
67103
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
@@ -67112,18 +67121,9 @@ declare module 'vue' {
|
|
67112
67121
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67113
67122
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67114
67123
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67115
|
-
|
67116
|
-
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67117
|
-
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67118
|
-
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67119
|
-
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67120
|
-
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67124
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67121
67125
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67122
67126
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67123
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67124
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67125
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67126
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67127
67127
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67128
67128
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67129
67129
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
@@ -67132,6 +67132,15 @@ declare module 'vue' {
|
|
67132
67132
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67133
67133
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67134
67134
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67135
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67136
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67137
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67138
|
+
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67139
|
+
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67140
|
+
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67141
|
+
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67142
|
+
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67143
|
+
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67135
67144
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67136
67145
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67137
67146
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
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-19
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -155,10 +155,9 @@ function has(obj, key) {
|
|
155
155
|
// Array of keys
|
156
156
|
function pick(obj, paths) {
|
157
157
|
const found = {};
|
158
|
-
const
|
159
|
-
|
160
|
-
|
161
|
-
found[path] = obj[path];
|
158
|
+
for (const key of paths) {
|
159
|
+
if (Object.hasOwn(obj, key)) {
|
160
|
+
found[key] = obj[key];
|
162
161
|
}
|
163
162
|
}
|
164
163
|
return found;
|
@@ -187,11 +186,6 @@ function omit(obj, exclude) {
|
|
187
186
|
exclude.forEach(prop => delete clone[prop]);
|
188
187
|
return clone;
|
189
188
|
}
|
190
|
-
function only(obj, include) {
|
191
|
-
const clone = {};
|
192
|
-
include.forEach(prop => clone[prop] = obj[prop]);
|
193
|
-
return clone;
|
194
|
-
}
|
195
189
|
const onRE = /^on[^a-z]/;
|
196
190
|
const isOn = key => onRE.test(key);
|
197
191
|
const bubblingEvents = ['onAfterscriptexecute', 'onAnimationcancel', 'onAnimationend', 'onAnimationiteration', 'onAnimationstart', 'onAuxclick', 'onBeforeinput', 'onBeforescriptexecute', 'onChange', 'onClick', 'onCompositionend', 'onCompositionstart', 'onCompositionupdate', 'onContextmenu', 'onCopy', 'onCut', 'onDblclick', 'onFocusin', 'onFocusout', 'onFullscreenchange', 'onFullscreenerror', 'onGesturechange', 'onGestureend', 'onGesturestart', 'onGotpointercapture', 'onInput', 'onKeydown', 'onKeypress', 'onKeyup', 'onLostpointercapture', 'onMousedown', 'onMousemove', 'onMouseout', 'onMouseover', 'onMouseup', 'onMousewheel', 'onPaste', 'onPointercancel', 'onPointerdown', 'onPointerenter', 'onPointerleave', 'onPointermove', 'onPointerout', 'onPointerover', 'onPointerup', 'onReset', 'onSelect', 'onSubmit', 'onTouchcancel', 'onTouchend', 'onTouchmove', 'onTouchstart', 'onTransitioncancel', 'onTransitionend', 'onTransitionrun', 'onTransitionstart', 'onWheel'];
|
@@ -7126,7 +7120,7 @@ const makeVInputProps = propsFactory({
|
|
7126
7120
|
'onClick:append': EventProp(),
|
7127
7121
|
...makeComponentProps(),
|
7128
7122
|
...makeDensityProps(),
|
7129
|
-
...
|
7123
|
+
...pick(makeDimensionProps(), ['maxWidth', 'minWidth', 'width']),
|
7130
7124
|
...makeThemeProps(),
|
7131
7125
|
...makeValidationProps()
|
7132
7126
|
}, 'VInput');
|
@@ -9416,7 +9410,8 @@ const VListItem = genericComponent()({
|
|
9416
9410
|
list,
|
9417
9411
|
select,
|
9418
9412
|
root,
|
9419
|
-
id: uid
|
9413
|
+
id: uid,
|
9414
|
+
link
|
9420
9415
|
};
|
9421
9416
|
}
|
9422
9417
|
});
|
@@ -9684,7 +9679,6 @@ function useItems(props) {
|
|
9684
9679
|
function transformIn(value) {
|
9685
9680
|
// Cache unrefed values outside the loop,
|
9686
9681
|
// proxy getters can be slow when you call them a billion times
|
9687
|
-
const _value = toRaw(value);
|
9688
9682
|
const _items = itemsMap.value;
|
9689
9683
|
const _allItems = items.value;
|
9690
9684
|
const _keylessItems = keylessItems.value;
|
@@ -9694,7 +9688,7 @@ function useItems(props) {
|
|
9694
9688
|
const valueComparator = props.valueComparator || deepEqual;
|
9695
9689
|
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9696
9690
|
const returnValue = [];
|
9697
|
-
main: for (const v of
|
9691
|
+
main: for (const v of value) {
|
9698
9692
|
// When the model value is null, return an InternalItem
|
9699
9693
|
// based on null only if null is one of the items
|
9700
9694
|
if (!_hasNullItem && v === null) continue;
|
@@ -9940,7 +9934,7 @@ const VList = genericComponent()({
|
|
9940
9934
|
'v-list--slim': props.slim
|
9941
9935
|
}, themeClasses.value, backgroundColorClasses.value, borderClasses.value, densityClasses.value, elevationClasses.value, lineClasses.value, roundedClasses.value, props.class],
|
9942
9936
|
"style": [backgroundColorStyles.value, dimensionStyles.value, props.style],
|
9943
|
-
"tabindex": props.disabled
|
9937
|
+
"tabindex": props.disabled ? -1 : 0,
|
9944
9938
|
"role": "listbox",
|
9945
9939
|
"aria-activedescendant": undefined,
|
9946
9940
|
"onFocusin": onFocusin,
|
@@ -24671,7 +24665,7 @@ const makeVOtpInputProps = propsFactory({
|
|
24671
24665
|
},
|
24672
24666
|
...makeDimensionProps(),
|
24673
24667
|
...makeFocusProps(),
|
24674
|
-
...
|
24668
|
+
...pick(makeVFieldProps({
|
24675
24669
|
variant: 'outlined'
|
24676
24670
|
}), ['baseColor', 'bgColor', 'class', 'color', 'disabled', 'error', 'loading', 'rounded', 'style', 'theme', 'variant'])
|
24677
24671
|
}, 'VOtpInput');
|
@@ -26659,7 +26653,7 @@ const makeVStepperProps = propsFactory({
|
|
26659
26653
|
selectedClass: 'v-stepper-item--selected'
|
26660
26654
|
}),
|
26661
26655
|
...makeVSheetProps(),
|
26662
|
-
...
|
26656
|
+
...pick(makeVStepperActionsProps(), ['prevText', 'nextText'])
|
26663
26657
|
}, 'VStepper');
|
26664
26658
|
const VStepper = genericComponent()({
|
26665
26659
|
name: 'VStepper',
|
@@ -27741,7 +27735,7 @@ const makeVTimelineProps = propsFactory({
|
|
27741
27735
|
type: String,
|
27742
27736
|
validator: v => ['start', 'end', 'both'].includes(v)
|
27743
27737
|
},
|
27744
|
-
...
|
27738
|
+
...pick(makeVTimelineItemProps({
|
27745
27739
|
lineInset: 0
|
27746
27740
|
}), ['dotColor', 'fillDot', 'hideOpposite', 'iconColor', 'lineInset', 'size']),
|
27747
27741
|
...makeComponentProps(),
|
@@ -28413,7 +28407,7 @@ function createVuetify$1() {
|
|
28413
28407
|
goTo
|
28414
28408
|
};
|
28415
28409
|
}
|
28416
|
-
const version$1 = "3.7.12-master.2025-02-
|
28410
|
+
const version$1 = "3.7.12-master.2025-02-19";
|
28417
28411
|
createVuetify$1.version = version$1;
|
28418
28412
|
|
28419
28413
|
// Vue's inject() can only be used in setup
|
@@ -28438,7 +28432,7 @@ const createVuetify = function () {
|
|
28438
28432
|
...options
|
28439
28433
|
});
|
28440
28434
|
};
|
28441
|
-
const version = "3.7.12-master.2025-02-
|
28435
|
+
const version = "3.7.12-master.2025-02-19";
|
28442
28436
|
createVuetify.version = version;
|
28443
28437
|
|
28444
28438
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|