vuetify 3.7.9 → 3.7.11
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/dist/json/attributes.json +1367 -1363
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +152 -152
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +2781 -2771
- package/dist/vuetify-labs.css +4270 -4270
- package/dist/vuetify-labs.d.ts +41 -118
- package/dist/vuetify-labs.esm.js +20 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3729 -3729
- package/dist/vuetify.d.ts +72 -164
- package/dist/vuetify.esm.js +9 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VTabs/VTabs.mjs +1 -1
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +52 -119
- package/lib/components/index.d.mts +26 -118
- package/lib/components/transitions/expand-transition.mjs +2 -0
- package/lib/components/transitions/expand-transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +13 -2
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +15 -0
- package/lib/labs/components.d.mts +15 -0
- package/lib/locale/da.mjs +5 -5
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +3 -3
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/fi.mjs +5 -5
- package/lib/locale/fi.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.7.
|
|
2
|
+
* Vuetify v3.7.11
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3212,6 +3212,7 @@
|
|
|
3212
3212
|
},
|
|
3213
3213
|
onEnter(el) {
|
|
3214
3214
|
const initialStyle = el._initialStyle;
|
|
3215
|
+
if (!initialStyle) return;
|
|
3215
3216
|
el.style.setProperty('transition', 'none', 'important');
|
|
3216
3217
|
// Hide overflow to account for collapsed margins in the calculated height
|
|
3217
3218
|
el.style.overflow = 'hidden';
|
|
@@ -3251,6 +3252,7 @@
|
|
|
3251
3252
|
resetStyles(el);
|
|
3252
3253
|
}
|
|
3253
3254
|
function resetStyles(el) {
|
|
3255
|
+
if (!el._initialStyle) return;
|
|
3254
3256
|
const size = el._initialStyle[sizeProperty];
|
|
3255
3257
|
el.style.overflow = el._initialStyle.overflow;
|
|
3256
3258
|
if (size != null) el.style[sizeProperty] = size;
|
|
@@ -22439,8 +22441,9 @@
|
|
|
22439
22441
|
targets.push(...['prev', 'next']);
|
|
22440
22442
|
} else {
|
|
22441
22443
|
let _date = adapter.date();
|
|
22442
|
-
_date = adapter.
|
|
22444
|
+
_date = adapter.startOfMonth(_date);
|
|
22443
22445
|
_date = adapter.setMonth(_date, month.value);
|
|
22446
|
+
_date = adapter.setYear(_date, year.value);
|
|
22444
22447
|
if (minDate.value) {
|
|
22445
22448
|
const date = adapter.addDays(adapter.startOfMonth(_date), -1);
|
|
22446
22449
|
adapter.isAfter(minDate.value, date) && targets.push('prev');
|
|
@@ -27090,6 +27093,8 @@
|
|
|
27090
27093
|
}
|
|
27091
27094
|
});
|
|
27092
27095
|
|
|
27096
|
+
// Types
|
|
27097
|
+
|
|
27093
27098
|
function parseItems(items) {
|
|
27094
27099
|
if (!items) return [];
|
|
27095
27100
|
return items.map(item => {
|
|
@@ -28328,7 +28333,7 @@
|
|
|
28328
28333
|
goTo
|
|
28329
28334
|
};
|
|
28330
28335
|
}
|
|
28331
|
-
const version$1 = "3.7.
|
|
28336
|
+
const version$1 = "3.7.11";
|
|
28332
28337
|
createVuetify$1.version = version$1;
|
|
28333
28338
|
|
|
28334
28339
|
// Vue's inject() can only be used in setup
|
|
@@ -28353,7 +28358,7 @@
|
|
|
28353
28358
|
...options
|
|
28354
28359
|
});
|
|
28355
28360
|
};
|
|
28356
|
-
const version = "3.7.
|
|
28361
|
+
const version = "3.7.11";
|
|
28357
28362
|
createVuetify.version = version;
|
|
28358
28363
|
|
|
28359
28364
|
exports.blueprints = index;
|