@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-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-29
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -20822,6 +20822,7 @@
|
|
20822
20822
|
default: false
|
20823
20823
|
},
|
20824
20824
|
...makeComponentProps(),
|
20825
|
+
...makeDimensionProps(),
|
20825
20826
|
...makeTagProps()
|
20826
20827
|
}, 'VContainer');
|
20827
20828
|
const VContainer = genericComponent()({
|
@@ -20834,11 +20835,14 @@
|
|
20834
20835
|
const {
|
20835
20836
|
rtlClasses
|
20836
20837
|
} = useRtl();
|
20838
|
+
const {
|
20839
|
+
dimensionStyles
|
20840
|
+
} = useDimension(props);
|
20837
20841
|
useRender(() => vue.createVNode(props.tag, {
|
20838
20842
|
"class": ['v-container', {
|
20839
20843
|
'v-container--fluid': props.fluid
|
20840
20844
|
}, rtlClasses.value, props.class],
|
20841
|
-
"style": props.style
|
20845
|
+
"style": [dimensionStyles.value, props.style]
|
20842
20846
|
}, slots));
|
20843
20847
|
return {};
|
20844
20848
|
}
|
@@ -29772,7 +29776,7 @@
|
|
29772
29776
|
goTo
|
29773
29777
|
};
|
29774
29778
|
}
|
29775
|
-
const version$1 = "3.6.3-dev.2024-05-
|
29779
|
+
const version$1 = "3.6.3-dev.2024-05-29";
|
29776
29780
|
createVuetify$1.version = version$1;
|
29777
29781
|
|
29778
29782
|
// Vue's inject() can only be used in setup
|
@@ -30025,7 +30029,7 @@
|
|
30025
30029
|
|
30026
30030
|
/* eslint-disable local-rules/sort-imports */
|
30027
30031
|
|
30028
|
-
const version = "3.6.3-dev.2024-05-
|
30032
|
+
const version = "3.6.3-dev.2024-05-29";
|
30029
30033
|
|
30030
30034
|
/* eslint-disable local-rules/sort-imports */
|
30031
30035
|
|