@vuetify/nightly 3.7.1-master.2024-08-29 → 3.7.1-master.2024-09-01
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/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +134 -134
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +4938 -4938
- package/dist/vuetify-labs.d.ts +57 -0
- package/dist/vuetify-labs.esm.js +38 -40
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +38 -40
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1481 -1481
- package/dist/vuetify.d.ts +104 -47
- package/dist/vuetify.esm.js +26 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +26 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +22 -22
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +3 -0
- package/lib/components/VCombobox/index.d.mts +3 -0
- package/lib/components/VList/VList.mjs +4 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +5 -2
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +57 -0
- package/lib/components/VSelect/index.d.mts +3 -0
- package/lib/components/index.d.mts +57 -0
- package/lib/composables/nested/nested.mjs +15 -3
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +47 -47
- package/lib/labs/VTreeview/VTreeview.mjs +3 -12
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +9 -20
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -4196,6 +4196,24 @@ declare const VListItem: {
|
|
4196
4196
|
updateHasPrepend: (value: boolean) => void;
|
4197
4197
|
} | null;
|
4198
4198
|
select: (selected: boolean, e?: Event) => void;
|
4199
|
+
root: {
|
4200
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
4201
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
4202
|
+
activatable: vue.Ref<boolean>;
|
4203
|
+
selectable: vue.Ref<boolean>;
|
4204
|
+
opened: vue.Ref<Set<unknown>>;
|
4205
|
+
activated: vue.Ref<Set<unknown>>;
|
4206
|
+
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
4207
|
+
selectedValues: vue.Ref<unknown[]>;
|
4208
|
+
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
4209
|
+
unregister: (id: unknown) => void;
|
4210
|
+
open: (id: unknown, value: boolean, event?: Event) => void;
|
4211
|
+
activate: (id: unknown, value: boolean, event?: Event) => void;
|
4212
|
+
select: (id: unknown, value: boolean, event?: Event) => void;
|
4213
|
+
openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
|
4214
|
+
getPath: (id: unknown) => unknown[];
|
4215
|
+
};
|
4216
|
+
id: vue.ComputedRef<{} | null>;
|
4199
4217
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
4200
4218
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
4201
4219
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -4372,6 +4390,24 @@ declare const VListItem: {
|
|
4372
4390
|
updateHasPrepend: (value: boolean) => void;
|
4373
4391
|
} | null;
|
4374
4392
|
select: (selected: boolean, e?: Event) => void;
|
4393
|
+
root: {
|
4394
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
4395
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
4396
|
+
activatable: vue.Ref<boolean>;
|
4397
|
+
selectable: vue.Ref<boolean>;
|
4398
|
+
opened: vue.Ref<Set<unknown>>;
|
4399
|
+
activated: vue.Ref<Set<unknown>>;
|
4400
|
+
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
4401
|
+
selectedValues: vue.Ref<unknown[]>;
|
4402
|
+
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
4403
|
+
unregister: (id: unknown) => void;
|
4404
|
+
open: (id: unknown, value: boolean, event?: Event) => void;
|
4405
|
+
activate: (id: unknown, value: boolean, event?: Event) => void;
|
4406
|
+
select: (id: unknown, value: boolean, event?: Event) => void;
|
4407
|
+
openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
|
4408
|
+
getPath: (id: unknown) => unknown[];
|
4409
|
+
};
|
4410
|
+
id: vue.ComputedRef<{} | null>;
|
4375
4411
|
}, {}, {}, {}, {
|
4376
4412
|
replace: boolean;
|
4377
4413
|
link: boolean;
|
@@ -4470,6 +4506,24 @@ declare const VListItem: {
|
|
4470
4506
|
updateHasPrepend: (value: boolean) => void;
|
4471
4507
|
} | null;
|
4472
4508
|
select: (selected: boolean, e?: Event) => void;
|
4509
|
+
root: {
|
4510
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
4511
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
4512
|
+
activatable: vue.Ref<boolean>;
|
4513
|
+
selectable: vue.Ref<boolean>;
|
4514
|
+
opened: vue.Ref<Set<unknown>>;
|
4515
|
+
activated: vue.Ref<Set<unknown>>;
|
4516
|
+
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
4517
|
+
selectedValues: vue.Ref<unknown[]>;
|
4518
|
+
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
4519
|
+
unregister: (id: unknown) => void;
|
4520
|
+
open: (id: unknown, value: boolean, event?: Event) => void;
|
4521
|
+
activate: (id: unknown, value: boolean, event?: Event) => void;
|
4522
|
+
select: (id: unknown, value: boolean, event?: Event) => void;
|
4523
|
+
openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
|
4524
|
+
getPath: (id: unknown) => unknown[];
|
4525
|
+
};
|
4526
|
+
id: vue.ComputedRef<{} | null>;
|
4473
4527
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
4474
4528
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
4475
4529
|
}, string, {
|
@@ -4798,6 +4852,7 @@ declare const VList: {
|
|
4798
4852
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
4799
4853
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
4800
4854
|
parents: vue.Ref<Map<unknown, unknown>>;
|
4855
|
+
getPath: (id: unknown) => unknown[];
|
4801
4856
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
4802
4857
|
'update:selected': (value: unknown) => true;
|
4803
4858
|
'update:activated': (value: unknown) => true;
|
@@ -4967,6 +5022,7 @@ declare const VList: {
|
|
4967
5022
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
4968
5023
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
4969
5024
|
parents: vue.Ref<Map<unknown, unknown>>;
|
5025
|
+
getPath: (id: unknown) => unknown[];
|
4970
5026
|
}, {}, {}, {}, {
|
4971
5027
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
4972
5028
|
nav: boolean;
|
@@ -5042,6 +5098,7 @@ declare const VList: {
|
|
5042
5098
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
5043
5099
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
5044
5100
|
parents: vue.Ref<Map<unknown, unknown>>;
|
5101
|
+
getPath: (id: unknown) => unknown[];
|
5045
5102
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
5046
5103
|
'update:selected': (value: unknown) => true;
|
5047
5104
|
'update:activated': (value: unknown) => true;
|
@@ -67049,46 +67106,36 @@ declare module 'vue' {
|
|
67049
67106
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67050
67107
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67051
67108
|
VApp: typeof import('vuetify/components')['VApp']
|
67109
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67052
67110
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67053
67111
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67054
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67055
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
67056
67112
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67057
67113
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67058
67114
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67059
|
-
|
67060
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67115
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67061
67116
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67062
|
-
|
67117
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67118
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67063
67119
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67064
67120
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67065
67121
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67066
|
-
|
67122
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67067
67123
|
VCard: typeof import('vuetify/components')['VCard']
|
67068
67124
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67069
67125
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67070
67126
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67071
67127
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67072
67128
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67129
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67073
67130
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67074
67131
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67075
67132
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67076
|
-
VChip: typeof import('vuetify/components')['VChip']
|
67077
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67078
67133
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67079
67134
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67080
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67081
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67082
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
67083
67135
|
VCode: typeof import('vuetify/components')['VCode']
|
67084
|
-
|
67085
|
-
|
67086
|
-
|
67087
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67088
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67089
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67090
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
67091
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
67136
|
+
VChip: typeof import('vuetify/components')['VChip']
|
67137
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67138
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67092
67139
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67093
67140
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67094
67141
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67096,14 +67143,22 @@ declare module 'vue' {
|
|
67096
67143
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67097
67144
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67098
67145
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67146
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67147
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67148
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67149
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67150
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67151
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67152
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67153
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67154
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67155
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
67156
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67099
67157
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67100
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67101
67158
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67102
67159
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67103
67160
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67104
67161
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67105
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67106
|
-
VFab: typeof import('vuetify/components')['VFab']
|
67107
67162
|
VField: typeof import('vuetify/components')['VField']
|
67108
67163
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67109
67164
|
VIcon: typeof import('vuetify/components')['VIcon']
|
@@ -67111,11 +67166,12 @@ declare module 'vue' {
|
|
67111
67166
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67112
67167
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67113
67168
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67114
|
-
|
67169
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67170
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67115
67171
|
VImg: typeof import('vuetify/components')['VImg']
|
67172
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67173
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67116
67174
|
VInput: typeof import('vuetify/components')['VInput']
|
67117
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67118
|
-
VItem: typeof import('vuetify/components')['VItem']
|
67119
67175
|
VLabel: typeof import('vuetify/components')['VLabel']
|
67120
67176
|
VList: typeof import('vuetify/components')['VList']
|
67121
67177
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
@@ -67126,25 +67182,28 @@ declare module 'vue' {
|
|
67126
67182
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67127
67183
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67128
67184
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67129
|
-
|
67185
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67186
|
+
VItem: typeof import('vuetify/components')['VItem']
|
67130
67187
|
VMain: typeof import('vuetify/components')['VMain']
|
67131
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67132
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67133
67188
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67134
|
-
|
67189
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67135
67190
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67136
67191
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67192
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67193
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67137
67194
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67138
67195
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67139
|
-
VRating: typeof import('vuetify/components')['VRating']
|
67140
67196
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67197
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67141
67198
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67142
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67143
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67144
67199
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67145
67200
|
VSheet: typeof import('vuetify/components')['VSheet']
|
67201
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67202
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67203
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67146
67204
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67147
67205
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67206
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67148
67207
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67149
67208
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67150
67209
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
@@ -67152,19 +67211,17 @@ declare module 'vue' {
|
|
67152
67211
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67153
67212
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67154
67213
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67155
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67156
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67157
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67158
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
67159
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67160
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67161
67214
|
VTab: typeof import('vuetify/components')['VTab']
|
67162
67215
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67163
67216
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67164
67217
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67165
|
-
|
67218
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67219
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67220
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67166
67221
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67167
67222
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67223
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67224
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67168
67225
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67169
67226
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67170
67227
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
@@ -67178,15 +67235,15 @@ declare module 'vue' {
|
|
67178
67235
|
VCol: typeof import('vuetify/components')['VCol']
|
67179
67236
|
VRow: typeof import('vuetify/components')['VRow']
|
67180
67237
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67181
|
-
VLayout: typeof import('vuetify/components')['VLayout']
|
67182
|
-
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67183
67238
|
VHover: typeof import('vuetify/components')['VHover']
|
67184
67239
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67240
|
+
VLayout: typeof import('vuetify/components')['VLayout']
|
67241
|
+
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67185
67242
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67186
67243
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67187
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
67188
67244
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67189
67245
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67246
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67190
67247
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67191
67248
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67192
67249
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
@@ -67209,8 +67266,6 @@ declare module 'vue' {
|
|
67209
67266
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67210
67267
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67211
67268
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67212
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67213
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67214
67269
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67215
67270
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67216
67271
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -67218,15 +67273,17 @@ declare module 'vue' {
|
|
67218
67273
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67219
67274
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67220
67275
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67221
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67222
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67223
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67224
67276
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67225
67277
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67226
67278
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67279
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67280
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67227
67281
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67228
67282
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67229
67283
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67284
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67285
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67286
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67230
67287
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67231
67288
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67232
67289
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.1-master.2024-
|
2
|
+
* Vuetify v3.7.1-master.2024-09-01
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -8714,7 +8714,8 @@ const emptyNested = {
|
|
8714
8714
|
opened: ref(new Set()),
|
8715
8715
|
activated: ref(new Set()),
|
8716
8716
|
selected: ref(new Map()),
|
8717
|
-
selectedValues: ref([])
|
8717
|
+
selectedValues: ref([]),
|
8718
|
+
getPath: () => []
|
8718
8719
|
}
|
8719
8720
|
};
|
8720
8721
|
const makeNestedProps = propsFactory({
|
@@ -8792,6 +8793,7 @@ const useNested = props => {
|
|
8792
8793
|
return path;
|
8793
8794
|
}
|
8794
8795
|
const vm = getCurrentInstance('nested');
|
8796
|
+
const nodeIds = new Set();
|
8795
8797
|
const nested = {
|
8796
8798
|
id: shallowRef(),
|
8797
8799
|
root: {
|
@@ -8808,6 +8810,14 @@ const useNested = props => {
|
|
8808
8810
|
return arr;
|
8809
8811
|
}),
|
8810
8812
|
register: (id, parentId, isGroup) => {
|
8813
|
+
if (nodeIds.has(id)) {
|
8814
|
+
const path = getPath(id).join(' -> ');
|
8815
|
+
const newPath = getPath(parentId).concat(id).join(' -> ');
|
8816
|
+
consoleError(`Multiple nodes with the same ID\n\t${path}\n\t${newPath}`);
|
8817
|
+
return;
|
8818
|
+
} else {
|
8819
|
+
nodeIds.add(id);
|
8820
|
+
}
|
8811
8821
|
parentId && id !== parentId && parents.value.set(id, parentId);
|
8812
8822
|
isGroup && children.value.set(id, []);
|
8813
8823
|
if (parentId != null) {
|
@@ -8816,6 +8826,7 @@ const useNested = props => {
|
|
8816
8826
|
},
|
8817
8827
|
unregister: id => {
|
8818
8828
|
if (isUnmounted) return;
|
8829
|
+
nodeIds.delete(id);
|
8819
8830
|
children.value.delete(id);
|
8820
8831
|
const parent = parents.value.get(id);
|
8821
8832
|
if (parent) {
|
@@ -8892,7 +8903,8 @@ const useNested = props => {
|
|
8892
8903
|
newActivated && (activated.value = newActivated);
|
8893
8904
|
},
|
8894
8905
|
children,
|
8895
|
-
parents
|
8906
|
+
parents,
|
8907
|
+
getPath
|
8896
8908
|
}
|
8897
8909
|
};
|
8898
8910
|
provide(VNestedSymbol, nested);
|
@@ -9137,7 +9149,8 @@ const VListItem = genericComponent()({
|
|
9137
9149
|
isGroupActivator,
|
9138
9150
|
root,
|
9139
9151
|
parent,
|
9140
|
-
openOnSelect
|
9152
|
+
openOnSelect,
|
9153
|
+
id: uid
|
9141
9154
|
} = useNestedItem(id, false);
|
9142
9155
|
const list = useList();
|
9143
9156
|
const isActive = computed(() => props.active !== false && (props.active || link.isActive?.value || (root.activatable.value ? isActivated.value : isSelected.value)));
|
@@ -9323,7 +9336,9 @@ const VListItem = genericComponent()({
|
|
9323
9336
|
isGroupActivator,
|
9324
9337
|
isSelected,
|
9325
9338
|
list,
|
9326
|
-
select
|
9339
|
+
select,
|
9340
|
+
root,
|
9341
|
+
id: uid
|
9327
9342
|
};
|
9328
9343
|
}
|
9329
9344
|
});
|
@@ -9724,7 +9739,8 @@ const VList = genericComponent()({
|
|
9724
9739
|
children,
|
9725
9740
|
open,
|
9726
9741
|
parents,
|
9727
|
-
select
|
9742
|
+
select,
|
9743
|
+
getPath
|
9728
9744
|
} = useNested(props);
|
9729
9745
|
const lineClasses = computed(() => props.lines ? `v-list--${props.lines}-line` : undefined);
|
9730
9746
|
const activeColor = toRef(props, 'activeColor');
|
@@ -9816,7 +9832,8 @@ const VList = genericComponent()({
|
|
9816
9832
|
select,
|
9817
9833
|
focus,
|
9818
9834
|
children,
|
9819
|
-
parents
|
9835
|
+
parents,
|
9836
|
+
getPath
|
9820
9837
|
};
|
9821
9838
|
}
|
9822
9839
|
});
|
@@ -28214,7 +28231,7 @@ function createVuetify$1() {
|
|
28214
28231
|
goTo
|
28215
28232
|
};
|
28216
28233
|
}
|
28217
|
-
const version$1 = "3.7.1-master.2024-
|
28234
|
+
const version$1 = "3.7.1-master.2024-09-01";
|
28218
28235
|
createVuetify$1.version = version$1;
|
28219
28236
|
|
28220
28237
|
// Vue's inject() can only be used in setup
|
@@ -28239,7 +28256,7 @@ const createVuetify = function () {
|
|
28239
28256
|
...options
|
28240
28257
|
});
|
28241
28258
|
};
|
28242
|
-
const version = "3.7.1-master.2024-
|
28259
|
+
const version = "3.7.1-master.2024-09-01";
|
28243
28260
|
createVuetify.version = version;
|
28244
28261
|
|
28245
28262
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|