@vuetify/nightly 3.11.2-dev.2025-12-03 → 3.11.2-dev.2025-12-06
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 -3
- package/dist/json/attributes.json +2019 -2015
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +178 -178
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3666 -3656
- package/dist/vuetify-labs.cjs +46 -8
- package/dist/vuetify-labs.css +3910 -3896
- package/dist/vuetify-labs.d.ts +86 -70
- package/dist/vuetify-labs.esm.js +46 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +46 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +46 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +6857 -6843
- package/dist/vuetify.d.ts +86 -70
- package/dist/vuetify.esm.js +46 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +46 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +23 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VHotkey/_variables.scss +1 -0
- package/lib/components/VOtpInput/VOtpInput.css +15 -1
- package/lib/components/VOtpInput/VOtpInput.d.ts +29 -0
- package/lib/components/VOtpInput/VOtpInput.js +8 -2
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.sass +11 -2
- package/lib/components/VOtpInput/_variables.scss +1 -0
- package/lib/components/VWindow/VWindow.js +3 -3
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/composables/nested/nested.d.ts +1 -1
- package/lib/composables/nested/nested.js +3 -1
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/composables/nested/selectStrategies.d.ts +1 -0
- package/lib/composables/nested/selectStrategies.js +31 -0
- package/lib/composables/nested/selectStrategies.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +69 -69
- package/lib/framework.js +1 -1
- package/package.json +6 -4
package/dist/vuetify.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.2-dev.2025-12-
|
|
2
|
+
* Vuetify v3.11.2-dev.2025-12-06
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -9675,6 +9675,37 @@
|
|
|
9675
9675
|
};
|
|
9676
9676
|
return strategy;
|
|
9677
9677
|
};
|
|
9678
|
+
const branchSelectStrategy = mandatory => {
|
|
9679
|
+
const parentStrategy = classicSelectStrategy(mandatory);
|
|
9680
|
+
const strategy = {
|
|
9681
|
+
select: parentStrategy.select,
|
|
9682
|
+
in: (v, children, parents, disabled) => {
|
|
9683
|
+
let map = new Map();
|
|
9684
|
+
for (const id of v || []) {
|
|
9685
|
+
if (children.has(id)) continue;
|
|
9686
|
+
map = strategy.select({
|
|
9687
|
+
id,
|
|
9688
|
+
value: true,
|
|
9689
|
+
selected: map,
|
|
9690
|
+
children,
|
|
9691
|
+
parents,
|
|
9692
|
+
disabled
|
|
9693
|
+
});
|
|
9694
|
+
}
|
|
9695
|
+
return map;
|
|
9696
|
+
},
|
|
9697
|
+
out: v => {
|
|
9698
|
+
const arr = [];
|
|
9699
|
+
for (const [key, value] of v.entries()) {
|
|
9700
|
+
if (value === 'on' || value === 'indeterminate') {
|
|
9701
|
+
arr.push(key);
|
|
9702
|
+
}
|
|
9703
|
+
}
|
|
9704
|
+
return arr;
|
|
9705
|
+
}
|
|
9706
|
+
};
|
|
9707
|
+
return strategy;
|
|
9708
|
+
};
|
|
9678
9709
|
|
|
9679
9710
|
// Composables
|
|
9680
9711
|
|
|
@@ -9759,6 +9790,8 @@
|
|
|
9759
9790
|
return independentSingleSelectStrategy(props.mandatory);
|
|
9760
9791
|
case 'trunk':
|
|
9761
9792
|
return trunkSelectStrategy(props.mandatory);
|
|
9793
|
+
case 'branch':
|
|
9794
|
+
return branchSelectStrategy(props.mandatory);
|
|
9762
9795
|
case 'classic':
|
|
9763
9796
|
default:
|
|
9764
9797
|
return classicSelectStrategy(props.mandatory);
|
|
@@ -20474,9 +20507,9 @@
|
|
|
20474
20507
|
'v-window--vertical-arrows': !!props.verticalArrows,
|
|
20475
20508
|
'v-window--crossfade': !!props.crossfade
|
|
20476
20509
|
}, themeClasses.value, props.class]),
|
|
20477
|
-
"style": vue.normalizeStyle([props.style,
|
|
20478
|
-
'--v-window-transition-duration': convertToUnit(props.transitionDuration, 'ms')
|
|
20479
|
-
}
|
|
20510
|
+
"style": vue.normalizeStyle([props.style, {
|
|
20511
|
+
'--v-window-transition-duration': !PREFERS_REDUCED_MOTION() ? convertToUnit(props.transitionDuration, 'ms') : null
|
|
20512
|
+
}])
|
|
20480
20513
|
}, {
|
|
20481
20514
|
default: () => [vue.createElementVNode("div", {
|
|
20482
20515
|
"class": "v-window__container",
|
|
@@ -31089,6 +31122,7 @@
|
|
|
31089
31122
|
type: String,
|
|
31090
31123
|
default: 'number'
|
|
31091
31124
|
},
|
|
31125
|
+
...makeDensityProps(),
|
|
31092
31126
|
...makeDimensionProps(),
|
|
31093
31127
|
...makeFocusProps(),
|
|
31094
31128
|
...pick(makeVFieldProps({
|
|
@@ -31109,6 +31143,9 @@
|
|
|
31109
31143
|
emit,
|
|
31110
31144
|
slots
|
|
31111
31145
|
} = _ref;
|
|
31146
|
+
const {
|
|
31147
|
+
densityClasses
|
|
31148
|
+
} = useDensity(props);
|
|
31112
31149
|
const {
|
|
31113
31150
|
dimensionStyles
|
|
31114
31151
|
} = useDimension(props);
|
|
@@ -31226,7 +31263,8 @@
|
|
|
31226
31263
|
baseColor: vue.toRef(() => props.baseColor),
|
|
31227
31264
|
disabled: vue.toRef(() => props.disabled),
|
|
31228
31265
|
error: vue.toRef(() => props.error),
|
|
31229
|
-
variant: vue.toRef(() => props.variant)
|
|
31266
|
+
variant: vue.toRef(() => props.variant),
|
|
31267
|
+
rounded: vue.toRef(() => props.rounded)
|
|
31230
31268
|
}
|
|
31231
31269
|
}, {
|
|
31232
31270
|
scoped: true
|
|
@@ -31249,7 +31287,7 @@
|
|
|
31249
31287
|
return vue.createElementVNode("div", vue.mergeProps({
|
|
31250
31288
|
"class": ['v-otp-input', {
|
|
31251
31289
|
'v-otp-input--divided': !!props.divider
|
|
31252
|
-
}, props.class],
|
|
31290
|
+
}, densityClasses.value, props.class],
|
|
31253
31291
|
"style": [props.style]
|
|
31254
31292
|
}, rootAttrs), [vue.createElementVNode("div", {
|
|
31255
31293
|
"ref": contentRef,
|
|
@@ -36599,7 +36637,7 @@
|
|
|
36599
36637
|
};
|
|
36600
36638
|
});
|
|
36601
36639
|
}
|
|
36602
|
-
const version$1 = "3.11.2-dev.2025-12-
|
|
36640
|
+
const version$1 = "3.11.2-dev.2025-12-06";
|
|
36603
36641
|
createVuetify$1.version = version$1;
|
|
36604
36642
|
|
|
36605
36643
|
// Vue's inject() can only be used in setup
|
|
@@ -36624,7 +36662,7 @@
|
|
|
36624
36662
|
...options
|
|
36625
36663
|
});
|
|
36626
36664
|
};
|
|
36627
|
-
const version = "3.11.2-dev.2025-12-
|
|
36665
|
+
const version = "3.11.2-dev.2025-12-06";
|
|
36628
36666
|
createVuetify.version = version;
|
|
36629
36667
|
|
|
36630
36668
|
exports.blueprints = index;
|