@vuetify/nightly 3.6.3-master.2024-05-02 → 3.6.3-master.2024-05-03
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 +8 -2
- package/dist/json/attributes.json +17 -17
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +116 -116
- package/dist/json/web-types.json +28 -28
- package/dist/vuetify-labs.css +1377 -1363
- package/dist/vuetify-labs.d.ts +129 -123
- package/dist/vuetify-labs.esm.js +7 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +765 -751
- package/dist/vuetify.d.ts +171 -165
- package/dist/vuetify.esm.js +7 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +3 -1
- package/lib/components/VAvatar/VAvatar.css +3 -1
- package/lib/components/VBanner/index.d.mts +11 -11
- package/lib/components/VBtn/VBtn.css +3 -1
- package/lib/components/VCard/VCard.css +3 -1
- package/lib/components/VChip/VChip.css +3 -1
- package/lib/components/VChipGroup/index.d.mts +11 -11
- package/lib/components/VDataTable/index.d.mts +66 -66
- package/lib/components/VList/VListItem.css +3 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +19 -13
- package/lib/components/VSlideGroup/index.d.mts +11 -11
- package/lib/components/VSnackbar/VSnackbar.css +3 -1
- package/lib/components/VTabs/index.d.mts +11 -11
- package/lib/components/index.d.mts +129 -123
- package/lib/composables/display.mjs +1 -1
- package/lib/composables/display.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -42
- package/lib/styles/tools/_variant.sass +3 -1
- package/package.json +1 -1
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.3-master.2024-05-
|
2
|
+
* Vuetify v3.6.3-master.2024-05-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -7322,7 +7322,7 @@ function createDisplay(options, ssr) {
|
|
7322
7322
|
const makeDisplayProps = propsFactory({
|
7323
7323
|
mobile: {
|
7324
7324
|
type: Boolean,
|
7325
|
-
default:
|
7325
|
+
default: false
|
7326
7326
|
},
|
7327
7327
|
mobileBreakpoint: [Number, String]
|
7328
7328
|
}, 'display');
|
@@ -23987,7 +23987,9 @@ const makeVNavigationDrawerProps = propsFactory({
|
|
23987
23987
|
...makeBorderProps(),
|
23988
23988
|
...makeComponentProps(),
|
23989
23989
|
...makeDelayProps(),
|
23990
|
-
...makeDisplayProps(
|
23990
|
+
...makeDisplayProps({
|
23991
|
+
mobile: null
|
23992
|
+
}),
|
23991
23993
|
...makeElevationProps(),
|
23992
23994
|
...makeLayoutItemProps(),
|
23993
23995
|
...makeRoundedProps(),
|
@@ -27922,7 +27924,7 @@ function createVuetify$1() {
|
|
27922
27924
|
goTo
|
27923
27925
|
};
|
27924
27926
|
}
|
27925
|
-
const version$1 = "3.6.3-master.2024-05-
|
27927
|
+
const version$1 = "3.6.3-master.2024-05-03";
|
27926
27928
|
createVuetify$1.version = version$1;
|
27927
27929
|
|
27928
27930
|
// Vue's inject() can only be used in setup
|
@@ -27947,7 +27949,7 @@ const createVuetify = function () {
|
|
27947
27949
|
...options
|
27948
27950
|
});
|
27949
27951
|
};
|
27950
|
-
const version = "3.6.3-master.2024-05-
|
27952
|
+
const version = "3.6.3-master.2024-05-03";
|
27951
27953
|
createVuetify.version = version;
|
27952
27954
|
|
27953
27955
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|