@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.
@@ -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
  */
@@ -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-17";
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-17";
31876
+ const version = "3.8.2-dev.2025-04-28";
31871
31877
 
31872
31878
  /* eslint-disable local-rules/sort-imports */
31873
31879