@vuetify/nightly 3.6.3-dev.2024-05-03 → 3.6.3-dev.2024-05-06
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 +7 -2
- package/dist/json/attributes.json +4 -0
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +160 -160
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +11 -1
- package/dist/vuetify-labs.css +2333 -2326
- package/dist/vuetify-labs.d.ts +6 -0
- package/dist/vuetify-labs.esm.js +8 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +8 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1252 -1245
- package/dist/vuetify.d.ts +60 -54
- package/dist/vuetify.esm.js +8 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -4
- 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/VAvatar/VAvatar.css +7 -0
- package/lib/components/VAvatar/VAvatar.mjs +6 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/VAvatar.sass +1 -0
- package/lib/components/VAvatar/_variables.scss +13 -0
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/index.d.mts +6 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.3-dev.2024-05-
|
2
|
+
* Vuetify v3.6.3-dev.2024-05-06
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -6142,6 +6142,7 @@
|
|
6142
6142
|
icon: IconValue,
|
6143
6143
|
image: String,
|
6144
6144
|
text: String,
|
6145
|
+
...makeBorderProps(),
|
6145
6146
|
...makeComponentProps(),
|
6146
6147
|
...makeDensityProps(),
|
6147
6148
|
...makeRoundedProps(),
|
@@ -6162,6 +6163,9 @@
|
|
6162
6163
|
const {
|
6163
6164
|
themeClasses
|
6164
6165
|
} = provideTheme(props);
|
6166
|
+
const {
|
6167
|
+
borderClasses
|
6168
|
+
} = useBorder(props);
|
6165
6169
|
const {
|
6166
6170
|
colorClasses,
|
6167
6171
|
colorStyles,
|
@@ -6181,7 +6185,7 @@
|
|
6181
6185
|
"class": ['v-avatar', {
|
6182
6186
|
'v-avatar--start': props.start,
|
6183
6187
|
'v-avatar--end': props.end
|
6184
|
-
}, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
6188
|
+
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
6185
6189
|
"style": [colorStyles.value, sizeStyles.value, props.style]
|
6186
6190
|
}, {
|
6187
6191
|
default: () => [!slots.default ? props.image ? vue.createVNode(VImg, {
|
@@ -27926,7 +27930,7 @@
|
|
27926
27930
|
goTo
|
27927
27931
|
};
|
27928
27932
|
}
|
27929
|
-
const version$1 = "3.6.3-dev.2024-05-
|
27933
|
+
const version$1 = "3.6.3-dev.2024-05-06";
|
27930
27934
|
createVuetify$1.version = version$1;
|
27931
27935
|
|
27932
27936
|
// Vue's inject() can only be used in setup
|
@@ -27951,7 +27955,7 @@
|
|
27951
27955
|
...options
|
27952
27956
|
});
|
27953
27957
|
};
|
27954
|
-
const version = "3.6.3-dev.2024-05-
|
27958
|
+
const version = "3.6.3-dev.2024-05-06";
|
27955
27959
|
createVuetify.version = version;
|
27956
27960
|
|
27957
27961
|
exports.blueprints = index;
|