@vuetify/nightly 3.7.7-master.2025-01-25 → 3.7.8-master.2025-01-28
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 -46
- package/dist/json/attributes.json +3233 -3233
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +156 -156
- package/dist/json/web-types.json +5933 -5933
- package/dist/vuetify-labs.css +4338 -4326
- package/dist/vuetify-labs.d.ts +0 -17
- package/dist/vuetify-labs.esm.js +16 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +16 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3262 -3250
- package/dist/vuetify.d.ts +54 -71
- package/dist/vuetify.esm.js +16 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +16 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +0 -1
- package/lib/components/VDataTable/index.d.mts +0 -17
- package/lib/components/VDataTable/types.mjs.map +1 -1
- package/lib/components/VFab/VFab.css +5 -1
- package/lib/components/VFab/VFab.mjs +1 -2
- package/lib/components/VFab/VFab.mjs.map +1 -1
- package/lib/components/VFab/VFab.sass +5 -1
- package/lib/components/VField/VField.css +8 -0
- package/lib/components/VField/VField.sass +10 -2
- package/lib/components/VPagination/VPagination.mjs +1 -1
- package/lib/components/VPagination/VPagination.mjs.map +1 -1
- package/lib/components/index.d.mts +0 -17
- package/lib/composables/display.mjs +11 -4
- 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 +54 -54
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.8-master.2025-01-28
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -7443,10 +7443,17 @@
|
|
7443
7443
|
const display = vue.inject(DisplaySymbol);
|
7444
7444
|
if (!display) throw new Error('Could not find Vuetify display injection');
|
7445
7445
|
const mobile = vue.computed(() => {
|
7446
|
-
if (props.mobile
|
7447
|
-
|
7448
|
-
|
7449
|
-
|
7446
|
+
if (props.mobile) {
|
7447
|
+
return true;
|
7448
|
+
} else if (typeof props.mobileBreakpoint === 'number') {
|
7449
|
+
return display.width.value < props.mobileBreakpoint;
|
7450
|
+
} else if (props.mobileBreakpoint) {
|
7451
|
+
return display.width.value < display.thresholds.value[props.mobileBreakpoint];
|
7452
|
+
} else if (props.mobile === null) {
|
7453
|
+
return display.mobile.value;
|
7454
|
+
} else {
|
7455
|
+
return false;
|
7456
|
+
}
|
7450
7457
|
});
|
7451
7458
|
const displayClasses = vue.computed(() => {
|
7452
7459
|
if (!name) return {};
|
@@ -19473,7 +19480,7 @@
|
|
19473
19480
|
const rangeStart = length.value - rangeLength + start.value;
|
19474
19481
|
return [start.value, props.ellipsis, ...createRange(rangeLength, rangeStart)];
|
19475
19482
|
} else {
|
19476
|
-
const rangeLength = Math.max(1, totalVisible.value -
|
19483
|
+
const rangeLength = Math.max(1, totalVisible.value - 2);
|
19477
19484
|
const rangeStart = rangeLength === 1 ? page.value : page.value - Math.ceil(rangeLength / 2) + start.value;
|
19478
19485
|
return [start.value, props.ellipsis, ...createRange(rangeLength, rangeStart), props.ellipsis, length.value];
|
19479
19486
|
}
|
@@ -23071,8 +23078,7 @@
|
|
23071
23078
|
"style": [props.app ? {
|
23072
23079
|
...layoutItemStyles.value
|
23073
23080
|
} : {
|
23074
|
-
height: 'inherit'
|
23075
|
-
width: undefined
|
23081
|
+
height: props.absolute ? '100%' : 'inherit'
|
23076
23082
|
}, props.style]
|
23077
23083
|
}, [vue.createVNode("div", {
|
23078
23084
|
"class": "v-fab__container"
|
@@ -28320,7 +28326,7 @@
|
|
28320
28326
|
goTo
|
28321
28327
|
};
|
28322
28328
|
}
|
28323
|
-
const version$1 = "3.7.
|
28329
|
+
const version$1 = "3.7.8-master.2025-01-28";
|
28324
28330
|
createVuetify$1.version = version$1;
|
28325
28331
|
|
28326
28332
|
// Vue's inject() can only be used in setup
|
@@ -28345,7 +28351,7 @@
|
|
28345
28351
|
...options
|
28346
28352
|
});
|
28347
28353
|
};
|
28348
|
-
const version = "3.7.
|
28354
|
+
const version = "3.7.8-master.2025-01-28";
|
28349
28355
|
createVuetify.version = version;
|
28350
28356
|
|
28351
28357
|
exports.blueprints = index;
|