@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/CHANGELOG.md +4 -3
- package/dist/json/attributes.json +3248 -3224
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +170 -170
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +6064 -6010
- package/dist/vuetify-labs.cjs +9 -5
- package/dist/vuetify-labs.css +4514 -4514
- package/dist/vuetify-labs.d.ts +93 -63
- package/dist/vuetify-labs.esm.js +9 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +9 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +9 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4246 -4246
- package/dist/vuetify.d.ts +93 -63
- package/dist/vuetify.esm.js +9 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +63 -63
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.8-dev.2025-06-
|
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-
|
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-
|
29651
|
+
const version = "3.8.8-dev.2025-06-08";
|
29648
29652
|
createVuetify.version = version;
|
29649
29653
|
|
29650
29654
|
exports.blueprints = index;
|