@vuetify/nightly 3.7.5-dev.2024-12-03 → 3.7.5-dev.2024-12-16
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/attributes.json +3779 -3779
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +7026 -7026
- package/dist/vuetify-labs.css +4372 -4372
- package/dist/vuetify-labs.d.ts +40 -40
- package/dist/vuetify-labs.esm.js +21 -38
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -37
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4189 -4189
- package/dist/vuetify.d.ts +92 -92
- package/dist/vuetify.esm.js +21 -38
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -37
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +876 -881
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/index.d.mts +6 -6
- package/lib/components/VBtn/index.d.mts +7 -7
- package/lib/components/VBtnToggle/index.d.mts +9 -9
- package/lib/components/VCarousel/VCarousel.mjs.map +1 -1
- package/lib/components/VCarousel/index.d.mts +9 -9
- package/lib/components/VCheckbox/VCheckbox.mjs +3 -3
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
- package/lib/components/VChipGroup/index.d.mts +15 -15
- package/lib/components/VCombobox/index.d.mts +6 -6
- package/lib/components/VExpansionPanel/index.d.mts +7 -7
- package/lib/components/VFab/index.d.mts +6 -6
- package/lib/components/VField/VField.mjs +3 -3
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VInput/VInput.mjs +3 -3
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VItemGroup/VItemGroup.mjs.map +1 -1
- package/lib/components/VItemGroup/index.d.mts +9 -9
- package/lib/components/VMenu/VMenu.mjs +3 -3
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMenu/index.d.mts +6 -6
- package/lib/components/VRadioGroup/VRadioGroup.mjs +3 -3
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRating/VRating.mjs +4 -3
- package/lib/components/VRating/VRating.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +6 -6
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -3
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +3 -3
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -10
- package/lib/components/VSparkline/VBarline.mjs +3 -3
- package/lib/components/VSparkline/VBarline.mjs.map +1 -1
- package/lib/components/VSparkline/VTrendline.mjs +3 -3
- package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.mjs +3 -3
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +7 -7
- package/lib/components/VTooltip/VTooltip.mjs +3 -3
- package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
- package/lib/components/VWindow/index.d.mts +7 -7
- package/lib/components/index.d.mts +40 -40
- package/lib/composables/group.mjs +3 -3
- package/lib/composables/group.mjs.map +1 -1
- package/lib/composables/layout.mjs +3 -3
- package/lib/composables/layout.mjs.map +1 -1
- package/lib/composables/nested/nested.mjs +2 -2
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/composables/validation.mjs +3 -3
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +2 -3
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +52 -52
- package/lib/util/getCurrentInstance.mjs +1 -15
- package/lib/util/getCurrentInstance.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -1619,22 +1619,22 @@ declare const Ripple: {
|
|
1619
1619
|
};
|
1620
1620
|
|
1621
1621
|
interface GroupItem {
|
1622
|
-
id:
|
1622
|
+
id: string;
|
1623
1623
|
value: Ref<unknown>;
|
1624
1624
|
disabled: Ref<boolean | undefined>;
|
1625
1625
|
useIndexAsValue?: boolean;
|
1626
1626
|
}
|
1627
1627
|
interface GroupProvide {
|
1628
1628
|
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
1629
|
-
unregister: (id:
|
1630
|
-
select: (id:
|
1631
|
-
selected: Ref<Readonly<
|
1632
|
-
isSelected: (id:
|
1629
|
+
unregister: (id: string) => void;
|
1630
|
+
select: (id: string, value: boolean) => void;
|
1631
|
+
selected: Ref<Readonly<string[]>>;
|
1632
|
+
isSelected: (id: string) => boolean;
|
1633
1633
|
prev: () => void;
|
1634
1634
|
next: () => void;
|
1635
1635
|
selectedClass: Ref<string | undefined>;
|
1636
1636
|
items: ComputedRef<{
|
1637
|
-
id:
|
1637
|
+
id: string;
|
1638
1638
|
value: unknown;
|
1639
1639
|
disabled: boolean | undefined;
|
1640
1640
|
}[]>;
|
@@ -1642,7 +1642,7 @@ interface GroupProvide {
|
|
1642
1642
|
getItemIndex: (value: unknown) => number;
|
1643
1643
|
}
|
1644
1644
|
interface GroupItemProvide {
|
1645
|
-
id:
|
1645
|
+
id: string;
|
1646
1646
|
isSelected: Ref<boolean>;
|
1647
1647
|
isFirst: Ref<boolean>;
|
1648
1648
|
isLast: Ref<boolean>;
|
@@ -5802,7 +5802,7 @@ declare const VMenu: {
|
|
5802
5802
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5803
5803
|
}, {
|
5804
5804
|
id: vue.ComputedRef<string>;
|
5805
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
5805
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
5806
5806
|
} & Omit<Omit<{
|
5807
5807
|
$: vue.ComponentInternalInstance;
|
5808
5808
|
$data: {};
|
@@ -6215,7 +6215,7 @@ declare const VMenu: {
|
|
6215
6215
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
6216
6216
|
} | {
|
6217
6217
|
id: vue.ComputedRef<string>;
|
6218
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6218
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6219
6219
|
};
|
6220
6220
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
6221
6221
|
'update:modelValue': (value: boolean) => true;
|
@@ -6348,7 +6348,7 @@ declare const VMenu: {
|
|
6348
6348
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6349
6349
|
}, {
|
6350
6350
|
id: vue.ComputedRef<string>;
|
6351
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6351
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6352
6352
|
} & Omit<Omit<{
|
6353
6353
|
$: vue.ComponentInternalInstance;
|
6354
6354
|
$data: {};
|
@@ -6761,7 +6761,7 @@ declare const VMenu: {
|
|
6761
6761
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
6762
6762
|
} | {
|
6763
6763
|
id: vue.ComputedRef<string>;
|
6764
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6764
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6765
6765
|
};
|
6766
6766
|
}, {}, {}, {}, {
|
6767
6767
|
location: Anchor | undefined;
|
@@ -6880,7 +6880,7 @@ declare const VMenu: {
|
|
6880
6880
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6881
6881
|
}, {
|
6882
6882
|
id: vue.ComputedRef<string>;
|
6883
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6883
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6884
6884
|
} & Omit<Omit<{
|
6885
6885
|
$: vue.ComponentInternalInstance;
|
6886
6886
|
$data: {};
|
@@ -7293,7 +7293,7 @@ declare const VMenu: {
|
|
7293
7293
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
7294
7294
|
} | {
|
7295
7295
|
id: vue.ComputedRef<string>;
|
7296
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
7296
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
7297
7297
|
};
|
7298
7298
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
7299
7299
|
'update:modelValue': (value: boolean) => true;
|
@@ -12367,7 +12367,7 @@ declare const VBtnToggle: {
|
|
12367
12367
|
} & {}, {
|
12368
12368
|
next: () => void;
|
12369
12369
|
prev: () => void;
|
12370
|
-
select: (id:
|
12370
|
+
select: (id: string, value: boolean) => void;
|
12371
12371
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
12372
12372
|
'update:modelValue': (value: any) => true;
|
12373
12373
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
@@ -12412,7 +12412,7 @@ declare const VBtnToggle: {
|
|
12412
12412
|
} & {}, {
|
12413
12413
|
next: () => void;
|
12414
12414
|
prev: () => void;
|
12415
|
-
select: (id:
|
12415
|
+
select: (id: string, value: boolean) => void;
|
12416
12416
|
}, {}, {}, {}, {
|
12417
12417
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
12418
12418
|
style: vue.StyleValue;
|
@@ -12450,7 +12450,7 @@ declare const VBtnToggle: {
|
|
12450
12450
|
} & {}, {
|
12451
12451
|
next: () => void;
|
12452
12452
|
prev: () => void;
|
12453
|
-
select: (id:
|
12453
|
+
select: (id: string, value: boolean) => void;
|
12454
12454
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
12455
12455
|
'update:modelValue': (value: any) => true;
|
12456
12456
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
|
@@ -13828,7 +13828,7 @@ type VCarouselSlots = VWindowSlots & {
|
|
13828
13828
|
item: {
|
13829
13829
|
props: Record<string, any>;
|
13830
13830
|
item: {
|
13831
|
-
id:
|
13831
|
+
id: string;
|
13832
13832
|
value: unknown;
|
13833
13833
|
disabled: boolean | undefined;
|
13834
13834
|
};
|
@@ -13907,7 +13907,7 @@ declare const VCarousel: {
|
|
13907
13907
|
item: (arg: {
|
13908
13908
|
props: Record<string, any>;
|
13909
13909
|
item: {
|
13910
|
-
id:
|
13910
|
+
id: string;
|
13911
13911
|
value: unknown;
|
13912
13912
|
disabled: boolean | undefined;
|
13913
13913
|
};
|
@@ -14039,7 +14039,7 @@ declare const VCarousel: {
|
|
14039
14039
|
item: (arg: {
|
14040
14040
|
props: Record<string, any>;
|
14041
14041
|
item: {
|
14042
|
-
id:
|
14042
|
+
id: string;
|
14043
14043
|
value: unknown;
|
14044
14044
|
disabled: boolean | undefined;
|
14045
14045
|
};
|
@@ -16804,11 +16804,11 @@ type VChip = InstanceType<typeof VChip>;
|
|
16804
16804
|
|
16805
16805
|
type VChipGroupSlots = {
|
16806
16806
|
default: {
|
16807
|
-
isSelected: (id:
|
16808
|
-
select: (id:
|
16807
|
+
isSelected: (id: string) => boolean;
|
16808
|
+
select: (id: string, value: boolean) => void;
|
16809
16809
|
next: () => void;
|
16810
16810
|
prev: () => void;
|
16811
|
-
selected: readonly
|
16811
|
+
selected: readonly string[];
|
16812
16812
|
};
|
16813
16813
|
};
|
16814
16814
|
declare const VChipGroup: {
|
@@ -16857,11 +16857,11 @@ declare const VChipGroup: {
|
|
16857
16857
|
prevIcon: IconValue;
|
16858
16858
|
}, true, {}, vue.SlotsType<Partial<{
|
16859
16859
|
default: (arg: {
|
16860
|
-
isSelected: (id:
|
16861
|
-
select: (id:
|
16860
|
+
isSelected: (id: string) => boolean;
|
16861
|
+
select: (id: string, value: boolean) => void;
|
16862
16862
|
next: () => void;
|
16863
16863
|
prev: () => void;
|
16864
|
-
selected: readonly
|
16864
|
+
selected: readonly string[];
|
16865
16865
|
}) => vue.VNode[];
|
16866
16866
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
16867
16867
|
P: {};
|
@@ -16960,11 +16960,11 @@ declare const VChipGroup: {
|
|
16960
16960
|
prevIcon: IconValue;
|
16961
16961
|
}, {}, string, vue.SlotsType<Partial<{
|
16962
16962
|
default: (arg: {
|
16963
|
-
isSelected: (id:
|
16964
|
-
select: (id:
|
16963
|
+
isSelected: (id: string) => boolean;
|
16964
|
+
select: (id: string, value: boolean) => void;
|
16965
16965
|
next: () => void;
|
16966
16966
|
prev: () => void;
|
16967
|
-
selected: readonly
|
16967
|
+
selected: readonly string[];
|
16968
16968
|
}) => vue.VNode[];
|
16969
16969
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
16970
16970
|
modelValue?: T;
|
@@ -33249,11 +33249,11 @@ type VInfiniteScroll = InstanceType<typeof VInfiniteScroll>;
|
|
33249
33249
|
|
33250
33250
|
type VItemGroupSlots = {
|
33251
33251
|
default: {
|
33252
|
-
isSelected: (id:
|
33253
|
-
select: (id:
|
33252
|
+
isSelected: (id: string) => boolean;
|
33253
|
+
select: (id: string, value: boolean) => void;
|
33254
33254
|
next: () => void;
|
33255
33255
|
prev: () => void;
|
33256
|
-
selected: readonly
|
33256
|
+
selected: readonly string[];
|
33257
33257
|
};
|
33258
33258
|
};
|
33259
33259
|
declare const VItemGroup: {
|
@@ -33278,11 +33278,11 @@ declare const VItemGroup: {
|
|
33278
33278
|
selectedClass: string;
|
33279
33279
|
}, true, {}, vue.SlotsType<Partial<{
|
33280
33280
|
default: (arg: {
|
33281
|
-
isSelected: (id:
|
33282
|
-
select: (id:
|
33281
|
+
isSelected: (id: string) => boolean;
|
33282
|
+
select: (id: string, value: boolean) => void;
|
33283
33283
|
next: () => void;
|
33284
33284
|
prev: () => void;
|
33285
|
-
selected: readonly
|
33285
|
+
selected: readonly string[];
|
33286
33286
|
}) => vue.VNode[];
|
33287
33287
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
33288
33288
|
P: {};
|
@@ -33333,11 +33333,11 @@ declare const VItemGroup: {
|
|
33333
33333
|
selectedClass: string;
|
33334
33334
|
}, {}, string, vue.SlotsType<Partial<{
|
33335
33335
|
default: (arg: {
|
33336
|
-
isSelected: (id:
|
33337
|
-
select: (id:
|
33336
|
+
isSelected: (id: string) => boolean;
|
33337
|
+
select: (id: string, value: boolean) => void;
|
33338
33338
|
next: () => void;
|
33339
33339
|
prev: () => void;
|
33340
|
-
selected: readonly
|
33340
|
+
selected: readonly string[];
|
33341
33341
|
}) => vue.VNode[];
|
33342
33342
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
33343
33343
|
modelValue?: T;
|
@@ -41135,7 +41135,7 @@ declare const VSlideGroup: {
|
|
41135
41135
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
41136
41136
|
showArrows?: string | boolean | undefined;
|
41137
41137
|
} & {}, {
|
41138
|
-
selected: vue.Ref<readonly
|
41138
|
+
selected: vue.Ref<readonly string[], readonly string[]>;
|
41139
41139
|
scrollTo: (location: "prev" | "next") => void;
|
41140
41140
|
scrollOffset: vue.ShallowRef<number, number>;
|
41141
41141
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
@@ -41185,7 +41185,7 @@ declare const VSlideGroup: {
|
|
41185
41185
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
41186
41186
|
showArrows?: string | boolean | undefined;
|
41187
41187
|
} & {}, {
|
41188
|
-
selected: vue.Ref<readonly
|
41188
|
+
selected: vue.Ref<readonly string[], readonly string[]>;
|
41189
41189
|
scrollTo: (location: "prev" | "next") => void;
|
41190
41190
|
scrollOffset: vue.ShallowRef<number, number>;
|
41191
41191
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
@@ -41226,7 +41226,7 @@ declare const VSlideGroup: {
|
|
41226
41226
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
41227
41227
|
showArrows?: string | boolean | undefined;
|
41228
41228
|
} & {}, {
|
41229
|
-
selected: vue.Ref<readonly
|
41229
|
+
selected: vue.Ref<readonly string[], readonly string[]>;
|
41230
41230
|
scrollTo: (location: "prev" | "next") => void;
|
41231
41231
|
scrollOffset: vue.ShallowRef<number, number>;
|
41232
41232
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.5-dev.2024-12-
|
2
|
+
* Vuetify v3.7.5-dev.2024-12-16
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
6
6
|
|
7
|
-
import { shallowRef, Fragment, reactive, computed, watchEffect, toRefs, capitalize, isVNode, Comment, unref, warn, getCurrentInstance as getCurrentInstance$1, ref, provide, inject as inject$1, defineComponent as defineComponent$1, camelize, h, onBeforeUnmount, watch, readonly, onDeactivated, onActivated, onMounted, onScopeDispose, effectScope, toRaw, createVNode, TransitionGroup, Transition, mergeProps, isRef, toRef, onBeforeMount, nextTick, withDirectives, resolveDirective, vShow, onUpdated, Text, resolveDynamicComponent, markRaw, Teleport, cloneVNode, createTextVNode, onUnmounted, onBeforeUpdate, withModifiers, toDisplayString, vModelText, resolveComponent, render } from 'vue';
|
7
|
+
import { shallowRef, Fragment, reactive, computed, watchEffect, toRefs, capitalize, isVNode, Comment, unref, warn, getCurrentInstance as getCurrentInstance$1, ref, provide, inject as inject$1, defineComponent as defineComponent$1, camelize, h, onBeforeUnmount, watch, readonly, useId, onDeactivated, onActivated, onMounted, onScopeDispose, effectScope, toRaw, createVNode, TransitionGroup, Transition, mergeProps, isRef, toRef, onBeforeMount, nextTick, withDirectives, resolveDirective, vShow, onUpdated, Text, resolveDynamicComponent, markRaw, Teleport, cloneVNode, createTextVNode, onUnmounted, onBeforeUpdate, withModifiers, toDisplayString, vModelText, resolveComponent, render } from 'vue';
|
8
8
|
|
9
9
|
// Types
|
10
10
|
// eslint-disable-line vue/prefer-import-from-vue
|
@@ -1253,9 +1253,6 @@ function getForeground(color) {
|
|
1253
1253
|
}
|
1254
1254
|
|
1255
1255
|
// Utilities
|
1256
|
-
|
1257
|
-
// Types
|
1258
|
-
|
1259
1256
|
function getCurrentInstance(name, message) {
|
1260
1257
|
const vm = getCurrentInstance$1();
|
1261
1258
|
if (!vm) {
|
@@ -1268,20 +1265,6 @@ function getCurrentInstanceName() {
|
|
1268
1265
|
const vm = getCurrentInstance(name).type;
|
1269
1266
|
return toKebabCase(vm?.aliasName || vm?.name);
|
1270
1267
|
}
|
1271
|
-
let _uid = 0;
|
1272
|
-
let _map = new WeakMap();
|
1273
|
-
function getUid() {
|
1274
|
-
const vm = getCurrentInstance('getUid');
|
1275
|
-
if (_map.has(vm)) return _map.get(vm);else {
|
1276
|
-
const uid = _uid++;
|
1277
|
-
_map.set(vm, uid);
|
1278
|
-
return uid;
|
1279
|
-
}
|
1280
|
-
}
|
1281
|
-
getUid.reset = () => {
|
1282
|
-
_uid = 0;
|
1283
|
-
_map = new WeakMap();
|
1284
|
-
};
|
1285
1268
|
|
1286
1269
|
// Utilities
|
1287
1270
|
|
@@ -1651,7 +1634,7 @@ function useLayout() {
|
|
1651
1634
|
function useLayoutItem(options) {
|
1652
1635
|
const layout = inject$1(VuetifyLayoutKey);
|
1653
1636
|
if (!layout) throw new Error('[Vuetify] Could not find injected layout');
|
1654
|
-
const id = options.id ?? `layout-item-${
|
1637
|
+
const id = options.id ?? `layout-item-${useId()}`;
|
1655
1638
|
const vm = getCurrentInstance('useLayoutItem');
|
1656
1639
|
provide(VuetifyLayoutItemKey, {
|
1657
1640
|
id
|
@@ -4153,7 +4136,7 @@ function useGroupItem(props, injectKey) {
|
|
4153
4136
|
if (!vm) {
|
4154
4137
|
throw new Error('[Vuetify] useGroupItem composable must be used inside a component setup function');
|
4155
4138
|
}
|
4156
|
-
const id =
|
4139
|
+
const id = useId();
|
4157
4140
|
provide(Symbol.for(`${injectKey.description}:id`), id);
|
4158
4141
|
const group = inject$1(injectKey, null);
|
4159
4142
|
if (!group) {
|
@@ -6132,7 +6115,7 @@ const VSelectionControlGroup = genericComponent()({
|
|
6132
6115
|
slots
|
6133
6116
|
} = _ref;
|
6134
6117
|
const modelValue = useProxiedModel(props, 'modelValue');
|
6135
|
-
const uid =
|
6118
|
+
const uid = useId();
|
6136
6119
|
const id = computed(() => props.id || `v-selection-control-group-${uid}`);
|
6137
6120
|
const name = computed(() => props.name || id.value);
|
6138
6121
|
const updateHandlers = new Set();
|
@@ -6269,7 +6252,7 @@ const VSelectionControl = genericComponent()({
|
|
6269
6252
|
backgroundColorStyles,
|
6270
6253
|
trueValue
|
6271
6254
|
} = useSelectionControl(props);
|
6272
|
-
const uid =
|
6255
|
+
const uid = useId();
|
6273
6256
|
const isFocused = shallowRef(false);
|
6274
6257
|
const isFocusVisible = shallowRef(false);
|
6275
6258
|
const input = ref();
|
@@ -6714,7 +6697,7 @@ const makeValidationProps = propsFactory({
|
|
6714
6697
|
}, 'validation');
|
6715
6698
|
function useValidation(props) {
|
6716
6699
|
let name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstanceName();
|
6717
|
-
let id = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] :
|
6700
|
+
let id = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : useId();
|
6718
6701
|
const model = useProxiedModel(props, 'modelValue');
|
6719
6702
|
const validationModel = computed(() => props.validationValue === undefined ? model.value : props.validationValue);
|
6720
6703
|
const form = useForm(props);
|
@@ -6906,7 +6889,7 @@ const VInput = genericComponent()({
|
|
6906
6889
|
const {
|
6907
6890
|
InputIcon
|
6908
6891
|
} = useInputIcon(props);
|
6909
|
-
const uid =
|
6892
|
+
const uid = useId();
|
6910
6893
|
const id = computed(() => props.id || `input-${uid}`);
|
6911
6894
|
const messagesId = computed(() => `${id.value}-messages`);
|
6912
6895
|
const {
|
@@ -7014,7 +6997,7 @@ const VCheckbox = genericComponent()({
|
|
7014
6997
|
focus,
|
7015
6998
|
blur
|
7016
6999
|
} = useFocus(props);
|
7017
|
-
const uid =
|
7000
|
+
const uid = useId();
|
7018
7001
|
const id = computed(() => props.id || `checkbox-${uid}`);
|
7019
7002
|
useRender(() => {
|
7020
7003
|
const [rootAttrs, controlAttrs] = filterInputAttrs(attrs);
|
@@ -8702,7 +8685,7 @@ const useNested = props => {
|
|
8702
8685
|
};
|
8703
8686
|
const useNestedItem = (id, isGroup) => {
|
8704
8687
|
const parent = inject$1(VNestedSymbol, emptyNested);
|
8705
|
-
const uidSymbol = Symbol(
|
8688
|
+
const uidSymbol = Symbol('nested item');
|
8706
8689
|
const computedId = computed(() => id.value !== undefined ? id.value : uidSymbol);
|
8707
8690
|
const item = {
|
8708
8691
|
...parent,
|
@@ -11204,7 +11187,7 @@ const VMenu = genericComponent()({
|
|
11204
11187
|
const {
|
11205
11188
|
isRtl
|
11206
11189
|
} = useRtl();
|
11207
|
-
const uid =
|
11190
|
+
const uid = useId();
|
11208
11191
|
const id = computed(() => props.id || `v-menu-${uid}`);
|
11209
11192
|
const overlay = ref();
|
11210
11193
|
const parent = inject$1(VMenuSymbol, null);
|
@@ -11500,7 +11483,7 @@ const VField = genericComponent()({
|
|
11500
11483
|
} = useRtl();
|
11501
11484
|
const isActive = computed(() => props.dirty || props.active);
|
11502
11485
|
const hasLabel = computed(() => !props.singleLine && !!(props.label || slots.label));
|
11503
|
-
const uid =
|
11486
|
+
const uid = useId();
|
11504
11487
|
const id = computed(() => props.id || `input-${uid}`);
|
11505
11488
|
const messagesId = computed(() => `${id.value}-messages`);
|
11506
11489
|
const labelRef = ref();
|
@@ -24653,7 +24636,7 @@ const VRadioGroup = genericComponent()({
|
|
24653
24636
|
attrs,
|
24654
24637
|
slots
|
24655
24638
|
} = _ref;
|
24656
|
-
const uid =
|
24639
|
+
const uid = useId();
|
24657
24640
|
const id = computed(() => props.id || `radio-group-${uid}`);
|
24658
24641
|
const model = useProxiedModel(props, 'modelValue');
|
24659
24642
|
useRender(() => {
|
@@ -25016,7 +24999,8 @@ const VRating = genericComponent()({
|
|
25016
24999
|
onClick
|
25017
25000
|
};
|
25018
25001
|
}));
|
25019
|
-
const
|
25002
|
+
const uid = useId();
|
25003
|
+
const name = computed(() => props.name ?? `v-rating-${uid}`);
|
25020
25004
|
function VRatingItem(_ref2) {
|
25021
25005
|
let {
|
25022
25006
|
value,
|
@@ -25555,7 +25539,7 @@ const VBarline = genericComponent()({
|
|
25555
25539
|
let {
|
25556
25540
|
slots
|
25557
25541
|
} = _ref;
|
25558
|
-
const uid =
|
25542
|
+
const uid = useId();
|
25559
25543
|
const id = computed(() => props.id || `barline-${uid}`);
|
25560
25544
|
const autoDrawDuration = computed(() => Number(props.autoDrawDuration) || 500);
|
25561
25545
|
const hasLabels = computed(() => {
|
@@ -25753,7 +25737,7 @@ const VTrendline = genericComponent()({
|
|
25753
25737
|
let {
|
25754
25738
|
slots
|
25755
25739
|
} = _ref;
|
25756
|
-
const uid =
|
25740
|
+
const uid = useId();
|
25757
25741
|
const id = computed(() => props.id || `trendline-${uid}`);
|
25758
25742
|
const autoDrawDuration = computed(() => Number(props.autoDrawDuration) || (props.fill ? 500 : 2000));
|
25759
25743
|
const lastLength = ref(0);
|
@@ -26457,7 +26441,7 @@ const VSwitch = genericComponent()({
|
|
26457
26441
|
const loaderColor = computed(() => {
|
26458
26442
|
return typeof props.loading === 'string' && props.loading !== '' ? props.loading : props.color;
|
26459
26443
|
});
|
26460
|
-
const uid =
|
26444
|
+
const uid = useId();
|
26461
26445
|
const id = computed(() => props.id || `switch-${uid}`);
|
26462
26446
|
function onChange() {
|
26463
26447
|
if (indeterminate.value) {
|
@@ -27502,7 +27486,7 @@ const VTooltip = genericComponent()({
|
|
27502
27486
|
const {
|
27503
27487
|
scopeId
|
27504
27488
|
} = useScopeId();
|
27505
|
-
const uid =
|
27489
|
+
const uid = useId();
|
27506
27490
|
const id = computed(() => props.id || `v-tooltip-${uid}`);
|
27507
27491
|
const overlay = ref();
|
27508
27492
|
const location = computed(() => {
|
@@ -30392,7 +30376,6 @@ function createVuetify$1() {
|
|
30392
30376
|
};
|
30393
30377
|
}
|
30394
30378
|
}
|
30395
|
-
getUid.reset();
|
30396
30379
|
if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {
|
30397
30380
|
app.mixin({
|
30398
30381
|
computed: {
|
@@ -30421,7 +30404,7 @@ function createVuetify$1() {
|
|
30421
30404
|
goTo
|
30422
30405
|
};
|
30423
30406
|
}
|
30424
|
-
const version$1 = "3.7.5-dev.2024-12-
|
30407
|
+
const version$1 = "3.7.5-dev.2024-12-16";
|
30425
30408
|
createVuetify$1.version = version$1;
|
30426
30409
|
|
30427
30410
|
// Vue's inject() can only be used in setup
|
@@ -30674,7 +30657,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30674
30657
|
|
30675
30658
|
/* eslint-disable local-rules/sort-imports */
|
30676
30659
|
|
30677
|
-
const version = "3.7.5-dev.2024-12-
|
30660
|
+
const version = "3.7.5-dev.2024-12-16";
|
30678
30661
|
|
30679
30662
|
/* eslint-disable local-rules/sort-imports */
|
30680
30663
|
|