@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-labs.js
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
|
*/
|
@@ -4184,9 +4184,15 @@
|
|
4184
4184
|
};
|
4185
4185
|
}
|
4186
4186
|
|
4187
|
+
// Types
|
4188
|
+
|
4187
4189
|
const makeVBtnGroupProps = propsFactory({
|
4188
4190
|
baseColor: String,
|
4189
4191
|
divided: Boolean,
|
4192
|
+
direction: {
|
4193
|
+
type: String,
|
4194
|
+
default: 'horizontal'
|
4195
|
+
},
|
4190
4196
|
...makeBorderProps(),
|
4191
4197
|
...makeComponentProps(),
|
4192
4198
|
...makeDensityProps(),
|
@@ -4220,7 +4226,7 @@
|
|
4220
4226
|
} = useRounded(props);
|
4221
4227
|
provideDefaults({
|
4222
4228
|
VBtn: {
|
4223
|
-
height: 'auto',
|
4229
|
+
height: props.direction === 'horizontal' ? 'auto' : null,
|
4224
4230
|
baseColor: vue.toRef(props, 'baseColor'),
|
4225
4231
|
color: vue.toRef(props, 'color'),
|
4226
4232
|
density: vue.toRef(props, 'density'),
|
@@ -4230,7 +4236,7 @@
|
|
4230
4236
|
});
|
4231
4237
|
useRender(() => {
|
4232
4238
|
return vue.createVNode(props.tag, {
|
4233
|
-
"class": ['v-btn-group', {
|
4239
|
+
"class": ['v-btn-group', `v-btn-group--${props.direction}`, {
|
4234
4240
|
'v-btn-group--divided': props.divided
|
4235
4241
|
}, themeClasses.value, borderClasses.value, densityClasses.value, elevationClasses.value, roundedClasses.value, props.class],
|
4236
4242
|
"style": props.style
|
@@ -31569,7 +31575,7 @@
|
|
31569
31575
|
};
|
31570
31576
|
});
|
31571
31577
|
}
|
31572
|
-
const version$1 = "3.8.2-dev.2025-04-
|
31578
|
+
const version$1 = "3.8.2-dev.2025-04-28";
|
31573
31579
|
createVuetify$1.version = version$1;
|
31574
31580
|
|
31575
31581
|
// Vue's inject() can only be used in setup
|
@@ -31867,7 +31873,7 @@
|
|
31867
31873
|
|
31868
31874
|
/* eslint-disable local-rules/sort-imports */
|
31869
31875
|
|
31870
|
-
const version = "3.8.2-dev.2025-04-
|
31876
|
+
const version = "3.8.2-dev.2025-04-28";
|
31871
31877
|
|
31872
31878
|
/* eslint-disable local-rules/sort-imports */
|
31873
31879
|
|