@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-labs.cjs
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
|
*/
|
@@ -13972,7 +13972,8 @@
|
|
13972
13972
|
...makeThemeProps(),
|
13973
13973
|
...makeTransitionProps({
|
13974
13974
|
transition: 'scale-rotate-transition'
|
13975
|
-
})
|
13975
|
+
}),
|
13976
|
+
...makeDimensionProps()
|
13976
13977
|
}, 'VBadge');
|
13977
13978
|
const VBadge = genericComponent()({
|
13978
13979
|
name: 'VBadge',
|
@@ -14002,6 +14003,9 @@
|
|
14002
14003
|
const base = props.floating ? props.dot ? 2 : 4 : props.dot ? 8 : 12;
|
14003
14004
|
return base + (['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0) : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0) : 0);
|
14004
14005
|
});
|
14006
|
+
const {
|
14007
|
+
dimensionStyles
|
14008
|
+
} = useDimension(props);
|
14005
14009
|
useRender(() => {
|
14006
14010
|
const value = Number(props.content);
|
14007
14011
|
const content = !props.max || isNaN(value) ? props.content : value <= Number(props.max) ? value : `${props.max}+`;
|
@@ -14023,7 +14027,7 @@
|
|
14023
14027
|
}, {
|
14024
14028
|
default: () => [vue.withDirectives(vue.createElementVNode("span", vue.mergeProps({
|
14025
14029
|
"class": ['v-badge__badge', themeClasses.value, backgroundColorClasses.value, roundedClasses.value, textColorClasses.value],
|
14026
|
-
"style": [backgroundColorStyles.value, textColorStyles.value, props.inline ? {} : locationStyles.value],
|
14030
|
+
"style": [backgroundColorStyles.value, textColorStyles.value, dimensionStyles.value, props.inline ? {} : locationStyles.value],
|
14027
14031
|
"aria-atomic": "true",
|
14028
14032
|
"aria-label": t(props.label, value),
|
14029
14033
|
"aria-live": "polite",
|
@@ -32305,7 +32309,7 @@
|
|
32305
32309
|
};
|
32306
32310
|
});
|
32307
32311
|
}
|
32308
|
-
const version$1 = "3.8.8-dev.2025-06-
|
32312
|
+
const version$1 = "3.8.8-dev.2025-06-08";
|
32309
32313
|
createVuetify$1.version = version$1;
|
32310
32314
|
|
32311
32315
|
// Vue's inject() can only be used in setup
|
@@ -32603,7 +32607,7 @@
|
|
32603
32607
|
|
32604
32608
|
/* eslint-disable local-rules/sort-imports */
|
32605
32609
|
|
32606
|
-
const version = "3.8.8-dev.2025-06-
|
32610
|
+
const version = "3.8.8-dev.2025-06-08";
|
32607
32611
|
|
32608
32612
|
/* eslint-disable local-rules/sort-imports */
|
32609
32613
|
|