@vuetify/nightly 3.6.3-dev.2024-05-14 → 3.6.3-dev.2024-05-29
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 +3 -2
- package/dist/json/attributes.json +24 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +55 -1
- package/dist/vuetify-labs.css +3049 -3049
- package/dist/vuetify-labs.d.ts +36 -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 +293 -293
- package/dist/vuetify.d.ts +82 -46
- 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/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/index.d.mts +36 -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-29
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -21055,6 +21055,7 @@
|
|
21055
21055
|
default: false
|
21056
21056
|
},
|
21057
21057
|
...makeComponentProps(),
|
21058
|
+
...makeDimensionProps(),
|
21058
21059
|
...makeTagProps()
|
21059
21060
|
}, 'VContainer');
|
21060
21061
|
const VContainer = genericComponent()({
|
@@ -21067,11 +21068,14 @@
|
|
21067
21068
|
const {
|
21068
21069
|
rtlClasses
|
21069
21070
|
} = useRtl();
|
21071
|
+
const {
|
21072
|
+
dimensionStyles
|
21073
|
+
} = useDimension(props);
|
21070
21074
|
useRender(() => vue.createVNode(props.tag, {
|
21071
21075
|
"class": ['v-container', {
|
21072
21076
|
'v-container--fluid': props.fluid
|
21073
21077
|
}, rtlClasses.value, props.class],
|
21074
|
-
"style": props.style
|
21078
|
+
"style": [dimensionStyles.value, props.style]
|
21075
21079
|
}, slots));
|
21076
21080
|
return {};
|
21077
21081
|
}
|
@@ -27932,7 +27936,7 @@
|
|
27932
27936
|
goTo
|
27933
27937
|
};
|
27934
27938
|
}
|
27935
|
-
const version$1 = "3.6.3-dev.2024-05-
|
27939
|
+
const version$1 = "3.6.3-dev.2024-05-29";
|
27936
27940
|
createVuetify$1.version = version$1;
|
27937
27941
|
|
27938
27942
|
// Vue's inject() can only be used in setup
|
@@ -27957,7 +27961,7 @@
|
|
27957
27961
|
...options
|
27958
27962
|
});
|
27959
27963
|
};
|
27960
|
-
const version = "3.6.3-dev.2024-05-
|
27964
|
+
const version = "3.6.3-dev.2024-05-29";
|
27961
27965
|
createVuetify.version = version;
|
27962
27966
|
|
27963
27967
|
exports.blueprints = index;
|