@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-labs.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
|
*/
|
@@ -3226,6 +3226,7 @@
|
|
3226
3226
|
// not intended for public use, this is passed in by vuetify-loader
|
3227
3227
|
|
3228
3228
|
const makeVImgProps = propsFactory({
|
3229
|
+
absolute: Boolean,
|
3229
3230
|
alt: String,
|
3230
3231
|
cover: Boolean,
|
3231
3232
|
color: String,
|
@@ -3482,6 +3483,7 @@
|
|
3482
3483
|
const responsiveProps = VResponsive.filterProps(props);
|
3483
3484
|
return vue.withDirectives(vue.createVNode(VResponsive, vue.mergeProps({
|
3484
3485
|
"class": ['v-img', {
|
3486
|
+
'v-img--absolute': props.absolute,
|
3485
3487
|
'v-img--booting': !isBooted.value
|
3486
3488
|
}, backgroundColorClasses.value, roundedClasses.value, props.class],
|
3487
3489
|
"style": [{
|
@@ -20822,6 +20824,7 @@
|
|
20822
20824
|
default: false
|
20823
20825
|
},
|
20824
20826
|
...makeComponentProps(),
|
20827
|
+
...makeDimensionProps(),
|
20825
20828
|
...makeTagProps()
|
20826
20829
|
}, 'VContainer');
|
20827
20830
|
const VContainer = genericComponent()({
|
@@ -20834,11 +20837,14 @@
|
|
20834
20837
|
const {
|
20835
20838
|
rtlClasses
|
20836
20839
|
} = useRtl();
|
20840
|
+
const {
|
20841
|
+
dimensionStyles
|
20842
|
+
} = useDimension(props);
|
20837
20843
|
useRender(() => vue.createVNode(props.tag, {
|
20838
20844
|
"class": ['v-container', {
|
20839
20845
|
'v-container--fluid': props.fluid
|
20840
20846
|
}, rtlClasses.value, props.class],
|
20841
|
-
"style": props.style
|
20847
|
+
"style": [dimensionStyles.value, props.style]
|
20842
20848
|
}, slots));
|
20843
20849
|
return {};
|
20844
20850
|
}
|
@@ -29772,7 +29778,7 @@
|
|
29772
29778
|
goTo
|
29773
29779
|
};
|
29774
29780
|
}
|
29775
|
-
const version$1 = "3.6.3-dev.2024-05-
|
29781
|
+
const version$1 = "3.6.3-dev.2024-05-30";
|
29776
29782
|
createVuetify$1.version = version$1;
|
29777
29783
|
|
29778
29784
|
// Vue's inject() can only be used in setup
|
@@ -30025,7 +30031,7 @@
|
|
30025
30031
|
|
30026
30032
|
/* eslint-disable local-rules/sort-imports */
|
30027
30033
|
|
30028
|
-
const version = "3.6.3-dev.2024-05-
|
30034
|
+
const version = "3.6.3-dev.2024-05-30";
|
30029
30035
|
|
30030
30036
|
/* eslint-disable local-rules/sort-imports */
|
30031
30037
|
|