@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-labs.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
|
*/
|
|
@@ -9346,6 +9346,37 @@
|
|
|
9346
9346
|
};
|
|
9347
9347
|
return strategy;
|
|
9348
9348
|
};
|
|
9349
|
+
const branchSelectStrategy = mandatory => {
|
|
9350
|
+
const parentStrategy = classicSelectStrategy(mandatory);
|
|
9351
|
+
const strategy = {
|
|
9352
|
+
select: parentStrategy.select,
|
|
9353
|
+
in: (v, children, parents, disabled) => {
|
|
9354
|
+
let map = new Map();
|
|
9355
|
+
for (const id of v || []) {
|
|
9356
|
+
if (children.has(id)) continue;
|
|
9357
|
+
map = strategy.select({
|
|
9358
|
+
id,
|
|
9359
|
+
value: true,
|
|
9360
|
+
selected: map,
|
|
9361
|
+
children,
|
|
9362
|
+
parents,
|
|
9363
|
+
disabled
|
|
9364
|
+
});
|
|
9365
|
+
}
|
|
9366
|
+
return map;
|
|
9367
|
+
},
|
|
9368
|
+
out: v => {
|
|
9369
|
+
const arr = [];
|
|
9370
|
+
for (const [key, value] of v.entries()) {
|
|
9371
|
+
if (value === 'on' || value === 'indeterminate') {
|
|
9372
|
+
arr.push(key);
|
|
9373
|
+
}
|
|
9374
|
+
}
|
|
9375
|
+
return arr;
|
|
9376
|
+
}
|
|
9377
|
+
};
|
|
9378
|
+
return strategy;
|
|
9379
|
+
};
|
|
9349
9380
|
|
|
9350
9381
|
// Composables
|
|
9351
9382
|
|
|
@@ -9430,6 +9461,8 @@
|
|
|
9430
9461
|
return independentSingleSelectStrategy(props.mandatory);
|
|
9431
9462
|
case 'trunk':
|
|
9432
9463
|
return trunkSelectStrategy(props.mandatory);
|
|
9464
|
+
case 'branch':
|
|
9465
|
+
return branchSelectStrategy(props.mandatory);
|
|
9433
9466
|
case 'classic':
|
|
9434
9467
|
default:
|
|
9435
9468
|
return classicSelectStrategy(props.mandatory);
|
|
@@ -20154,9 +20187,9 @@
|
|
|
20154
20187
|
'v-window--vertical-arrows': !!props.verticalArrows,
|
|
20155
20188
|
'v-window--crossfade': !!props.crossfade
|
|
20156
20189
|
}, themeClasses.value, props.class]),
|
|
20157
|
-
"style": vue.normalizeStyle([props.style,
|
|
20158
|
-
'--v-window-transition-duration': convertToUnit(props.transitionDuration, 'ms')
|
|
20159
|
-
}
|
|
20190
|
+
"style": vue.normalizeStyle([props.style, {
|
|
20191
|
+
'--v-window-transition-duration': !PREFERS_REDUCED_MOTION() ? convertToUnit(props.transitionDuration, 'ms') : null
|
|
20192
|
+
}])
|
|
20160
20193
|
}, {
|
|
20161
20194
|
default: () => [vue.createElementVNode("div", {
|
|
20162
20195
|
"class": "v-window__container",
|
|
@@ -30769,6 +30802,7 @@
|
|
|
30769
30802
|
type: String,
|
|
30770
30803
|
default: 'number'
|
|
30771
30804
|
},
|
|
30805
|
+
...makeDensityProps(),
|
|
30772
30806
|
...makeDimensionProps(),
|
|
30773
30807
|
...makeFocusProps(),
|
|
30774
30808
|
...pick(makeVFieldProps({
|
|
@@ -30789,6 +30823,9 @@
|
|
|
30789
30823
|
emit,
|
|
30790
30824
|
slots
|
|
30791
30825
|
} = _ref;
|
|
30826
|
+
const {
|
|
30827
|
+
densityClasses
|
|
30828
|
+
} = useDensity(props);
|
|
30792
30829
|
const {
|
|
30793
30830
|
dimensionStyles
|
|
30794
30831
|
} = useDimension(props);
|
|
@@ -30906,7 +30943,8 @@
|
|
|
30906
30943
|
baseColor: vue.toRef(() => props.baseColor),
|
|
30907
30944
|
disabled: vue.toRef(() => props.disabled),
|
|
30908
30945
|
error: vue.toRef(() => props.error),
|
|
30909
|
-
variant: vue.toRef(() => props.variant)
|
|
30946
|
+
variant: vue.toRef(() => props.variant),
|
|
30947
|
+
rounded: vue.toRef(() => props.rounded)
|
|
30910
30948
|
}
|
|
30911
30949
|
}, {
|
|
30912
30950
|
scoped: true
|
|
@@ -30929,7 +30967,7 @@
|
|
|
30929
30967
|
return vue.createElementVNode("div", vue.mergeProps({
|
|
30930
30968
|
"class": ['v-otp-input', {
|
|
30931
30969
|
'v-otp-input--divided': !!props.divider
|
|
30932
|
-
}, props.class],
|
|
30970
|
+
}, densityClasses.value, props.class],
|
|
30933
30971
|
"style": [props.style]
|
|
30934
30972
|
}, rootAttrs), [vue.createElementVNode("div", {
|
|
30935
30973
|
"ref": contentRef,
|
|
@@ -39125,7 +39163,7 @@
|
|
|
39125
39163
|
};
|
|
39126
39164
|
});
|
|
39127
39165
|
}
|
|
39128
|
-
const version$1 = "3.11.2-dev.2025-12-
|
|
39166
|
+
const version$1 = "3.11.2-dev.2025-12-06";
|
|
39129
39167
|
createVuetify$1.version = version$1;
|
|
39130
39168
|
|
|
39131
39169
|
// Vue's inject() can only be used in setup
|
|
@@ -39428,7 +39466,7 @@
|
|
|
39428
39466
|
|
|
39429
39467
|
/* eslint-disable local-rules/sort-imports */
|
|
39430
39468
|
|
|
39431
|
-
const version = "3.11.2-dev.2025-12-
|
|
39469
|
+
const version = "3.11.2-dev.2025-12-06";
|
|
39432
39470
|
|
|
39433
39471
|
/* eslint-disable local-rules/sort-imports */
|
|
39434
39472
|
|