@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/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.2-dev.2025-04-17
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-17";
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-17";
29286
+ const version = "3.8.2-dev.2025-04-28";
29281
29287
  createVuetify.version = version;
29282
29288
 
29283
29289
  exports.blueprints = index;