@vuetify/nightly 3.8.8-dev.2025-06-04 → 3.8.8-dev.2025-06-08

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.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.8-dev.2025-06-04
2
+ * Vuetify v3.8.8-dev.2025-06-08
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -14250,7 +14250,8 @@
14250
14250
  ...makeThemeProps(),
14251
14251
  ...makeTransitionProps({
14252
14252
  transition: 'scale-rotate-transition'
14253
- })
14253
+ }),
14254
+ ...makeDimensionProps()
14254
14255
  }, 'VBadge');
14255
14256
  const VBadge = genericComponent()({
14256
14257
  name: 'VBadge',
@@ -14280,6 +14281,9 @@
14280
14281
  const base = props.floating ? props.dot ? 2 : 4 : props.dot ? 8 : 12;
14281
14282
  return base + (['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0) : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0) : 0);
14282
14283
  });
14284
+ const {
14285
+ dimensionStyles
14286
+ } = useDimension(props);
14283
14287
  useRender(() => {
14284
14288
  const value = Number(props.content);
14285
14289
  const content = !props.max || isNaN(value) ? props.content : value <= Number(props.max) ? value : `${props.max}+`;
@@ -14301,7 +14305,7 @@
14301
14305
  }, {
14302
14306
  default: () => [vue.withDirectives(vue.createElementVNode("span", vue.mergeProps({
14303
14307
  "class": ['v-badge__badge', themeClasses.value, backgroundColorClasses.value, roundedClasses.value, textColorClasses.value],
14304
- "style": [backgroundColorStyles.value, textColorStyles.value, props.inline ? {} : locationStyles.value],
14308
+ "style": [backgroundColorStyles.value, textColorStyles.value, dimensionStyles.value, props.inline ? {} : locationStyles.value],
14305
14309
  "aria-atomic": "true",
14306
14310
  "aria-label": t(props.label, value),
14307
14311
  "aria-live": "polite",
@@ -29619,7 +29623,7 @@
29619
29623
  };
29620
29624
  });
29621
29625
  }
29622
- const version$1 = "3.8.8-dev.2025-06-04";
29626
+ const version$1 = "3.8.8-dev.2025-06-08";
29623
29627
  createVuetify$1.version = version$1;
29624
29628
 
29625
29629
  // Vue's inject() can only be used in setup
@@ -29644,7 +29648,7 @@
29644
29648
  ...options
29645
29649
  });
29646
29650
  };
29647
- const version = "3.8.8-dev.2025-06-04";
29651
+ const version = "3.8.8-dev.2025-06-08";
29648
29652
  createVuetify.version = version;
29649
29653
 
29650
29654
  exports.blueprints = index;