@vuetify/nightly 3.6.3-dev.2024-05-14 → 3.6.3-dev.2024-05-30
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 -2
- package/dist/json/attributes.json +32 -0
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +9 -1
- package/dist/json/web-types.json +75 -1
- package/dist/vuetify-labs.css +2273 -2264
- package/dist/vuetify-labs.d.ts +54 -0
- package/dist/vuetify-labs.esm.js +10 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +325 -316
- package/dist/vuetify.d.ts +100 -46
- package/dist/vuetify.esm.js +10 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCarousel/index.d.mts +9 -0
- package/lib/components/VGrid/VContainer.mjs +6 -1
- package/lib/components/VGrid/VContainer.mjs.map +1 -1
- package/lib/components/VGrid/index.d.mts +36 -0
- package/lib/components/VImg/VImg.css +9 -0
- package/lib/components/VImg/VImg.mjs +2 -0
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/VImg.sass +9 -0
- package/lib/components/VImg/index.d.mts +9 -0
- package/lib/components/index.d.mts +54 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- 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-30
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -3666,6 +3666,7 @@
|
|
3666
3666
|
// not intended for public use, this is passed in by vuetify-loader
|
3667
3667
|
|
3668
3668
|
const makeVImgProps = propsFactory({
|
3669
|
+
absolute: Boolean,
|
3669
3670
|
alt: String,
|
3670
3671
|
cover: Boolean,
|
3671
3672
|
color: String,
|
@@ -3922,6 +3923,7 @@
|
|
3922
3923
|
const responsiveProps = VResponsive.filterProps(props);
|
3923
3924
|
return vue.withDirectives(vue.createVNode(VResponsive, vue.mergeProps({
|
3924
3925
|
"class": ['v-img', {
|
3926
|
+
'v-img--absolute': props.absolute,
|
3925
3927
|
'v-img--booting': !isBooted.value
|
3926
3928
|
}, backgroundColorClasses.value, roundedClasses.value, props.class],
|
3927
3929
|
"style": [{
|
@@ -21055,6 +21057,7 @@
|
|
21055
21057
|
default: false
|
21056
21058
|
},
|
21057
21059
|
...makeComponentProps(),
|
21060
|
+
...makeDimensionProps(),
|
21058
21061
|
...makeTagProps()
|
21059
21062
|
}, 'VContainer');
|
21060
21063
|
const VContainer = genericComponent()({
|
@@ -21067,11 +21070,14 @@
|
|
21067
21070
|
const {
|
21068
21071
|
rtlClasses
|
21069
21072
|
} = useRtl();
|
21073
|
+
const {
|
21074
|
+
dimensionStyles
|
21075
|
+
} = useDimension(props);
|
21070
21076
|
useRender(() => vue.createVNode(props.tag, {
|
21071
21077
|
"class": ['v-container', {
|
21072
21078
|
'v-container--fluid': props.fluid
|
21073
21079
|
}, rtlClasses.value, props.class],
|
21074
|
-
"style": props.style
|
21080
|
+
"style": [dimensionStyles.value, props.style]
|
21075
21081
|
}, slots));
|
21076
21082
|
return {};
|
21077
21083
|
}
|
@@ -27932,7 +27938,7 @@
|
|
27932
27938
|
goTo
|
27933
27939
|
};
|
27934
27940
|
}
|
27935
|
-
const version$1 = "3.6.3-dev.2024-05-
|
27941
|
+
const version$1 = "3.6.3-dev.2024-05-30";
|
27936
27942
|
createVuetify$1.version = version$1;
|
27937
27943
|
|
27938
27944
|
// Vue's inject() can only be used in setup
|
@@ -27957,7 +27963,7 @@
|
|
27957
27963
|
...options
|
27958
27964
|
});
|
27959
27965
|
};
|
27960
|
-
const version = "3.6.3-dev.2024-05-
|
27966
|
+
const version = "3.6.3-dev.2024-05-30";
|
27961
27967
|
createVuetify.version = version;
|
27962
27968
|
|
27963
27969
|
exports.blueprints = index;
|