@vuetify/nightly 3.8.2-dev.2025-04-17 → 3.8.2-dev.2025-04-28
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 +4 -3
- package/dist/json/attributes.json +317 -309
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +174 -174
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +701 -681
- package/dist/vuetify-labs.cjs +11 -5
- package/dist/vuetify-labs.css +3486 -3463
- package/dist/vuetify-labs.d.ts +95 -67
- package/dist/vuetify-labs.esm.js +11 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +11 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3131 -3108
- package/dist/vuetify.d.ts +95 -67
- package/dist/vuetify.esm.js +11 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VInput/VInput.d.ts +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +57 -57
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.2-dev.2025-04-
|
2
|
+
* Vuetify v3.8.2-dev.2025-04-28
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -4670,9 +4670,15 @@
|
|
4670
4670
|
};
|
4671
4671
|
}
|
4672
4672
|
|
4673
|
+
// Types
|
4674
|
+
|
4673
4675
|
const makeVBtnGroupProps = propsFactory({
|
4674
4676
|
baseColor: String,
|
4675
4677
|
divided: Boolean,
|
4678
|
+
direction: {
|
4679
|
+
type: String,
|
4680
|
+
default: 'horizontal'
|
4681
|
+
},
|
4676
4682
|
...makeBorderProps(),
|
4677
4683
|
...makeComponentProps(),
|
4678
4684
|
...makeDensityProps(),
|
@@ -4706,7 +4712,7 @@
|
|
4706
4712
|
} = useRounded(props);
|
4707
4713
|
provideDefaults({
|
4708
4714
|
VBtn: {
|
4709
|
-
height: 'auto',
|
4715
|
+
height: props.direction === 'horizontal' ? 'auto' : null,
|
4710
4716
|
baseColor: vue.toRef(props, 'baseColor'),
|
4711
4717
|
color: vue.toRef(props, 'color'),
|
4712
4718
|
density: vue.toRef(props, 'density'),
|
@@ -4716,7 +4722,7 @@
|
|
4716
4722
|
});
|
4717
4723
|
useRender(() => {
|
4718
4724
|
return vue.createVNode(props.tag, {
|
4719
|
-
"class": ['v-btn-group', {
|
4725
|
+
"class": ['v-btn-group', `v-btn-group--${props.direction}`, {
|
4720
4726
|
'v-btn-group--divided': props.divided
|
4721
4727
|
}, themeClasses.value, borderClasses.value, densityClasses.value, elevationClasses.value, roundedClasses.value, props.class],
|
4722
4728
|
"style": props.style
|
@@ -29252,7 +29258,7 @@
|
|
29252
29258
|
};
|
29253
29259
|
});
|
29254
29260
|
}
|
29255
|
-
const version$1 = "3.8.2-dev.2025-04-
|
29261
|
+
const version$1 = "3.8.2-dev.2025-04-28";
|
29256
29262
|
createVuetify$1.version = version$1;
|
29257
29263
|
|
29258
29264
|
// Vue's inject() can only be used in setup
|
@@ -29277,7 +29283,7 @@
|
|
29277
29283
|
...options
|
29278
29284
|
});
|
29279
29285
|
};
|
29280
|
-
const version = "3.8.2-dev.2025-04-
|
29286
|
+
const version = "3.8.2-dev.2025-04-28";
|
29281
29287
|
createVuetify.version = version;
|
29282
29288
|
|
29283
29289
|
exports.blueprints = index;
|