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-labs.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
|
*/
|
|
@@ -2771,6 +2771,7 @@
|
|
|
2771
2771
|
},
|
|
2772
2772
|
onEnter(el) {
|
|
2773
2773
|
const initialStyle = el._initialStyle;
|
|
2774
|
+
if (!initialStyle) return;
|
|
2774
2775
|
el.style.setProperty('transition', 'none', 'important');
|
|
2775
2776
|
// Hide overflow to account for collapsed margins in the calculated height
|
|
2776
2777
|
el.style.overflow = 'hidden';
|
|
@@ -2810,6 +2811,7 @@
|
|
|
2810
2811
|
resetStyles(el);
|
|
2811
2812
|
}
|
|
2812
2813
|
function resetStyles(el) {
|
|
2814
|
+
if (!el._initialStyle) return;
|
|
2813
2815
|
const size = el._initialStyle[sizeProperty];
|
|
2814
2816
|
el.style.overflow = el._initialStyle.overflow;
|
|
2815
2817
|
if (size != null) el.style[sizeProperty] = size;
|
|
@@ -22206,8 +22208,9 @@
|
|
|
22206
22208
|
targets.push(...['prev', 'next']);
|
|
22207
22209
|
} else {
|
|
22208
22210
|
let _date = adapter.date();
|
|
22209
|
-
_date = adapter.
|
|
22211
|
+
_date = adapter.startOfMonth(_date);
|
|
22210
22212
|
_date = adapter.setMonth(_date, month.value);
|
|
22213
|
+
_date = adapter.setYear(_date, year.value);
|
|
22211
22214
|
if (minDate.value) {
|
|
22212
22215
|
const date = adapter.addDays(adapter.startOfMonth(_date), -1);
|
|
22213
22216
|
adapter.isAfter(minDate.value, date) && targets.push('prev');
|
|
@@ -26857,6 +26860,8 @@
|
|
|
26857
26860
|
}
|
|
26858
26861
|
});
|
|
26859
26862
|
|
|
26863
|
+
// Types
|
|
26864
|
+
|
|
26860
26865
|
function parseItems(items) {
|
|
26861
26866
|
if (!items) return [];
|
|
26862
26867
|
return items.map(item => {
|
|
@@ -30093,6 +30098,11 @@
|
|
|
30093
30098
|
}
|
|
30094
30099
|
}
|
|
30095
30100
|
return () => slots.default?.() ?? props.items?.map(item => {
|
|
30101
|
+
if (item.type === 'divider') {
|
|
30102
|
+
return slots.divider?.({
|
|
30103
|
+
props: item.props
|
|
30104
|
+
}) ?? vue.createVNode(VDivider, item.props, null);
|
|
30105
|
+
}
|
|
30096
30106
|
const {
|
|
30097
30107
|
children,
|
|
30098
30108
|
props: itemProps
|
|
@@ -30129,6 +30139,11 @@
|
|
|
30129
30139
|
...slotProps,
|
|
30130
30140
|
item: item.raw,
|
|
30131
30141
|
internalItem: item
|
|
30142
|
+
}) : undefined,
|
|
30143
|
+
subtitle: slots.subtitle ? slotProps => slots.subtitle?.({
|
|
30144
|
+
...slotProps,
|
|
30145
|
+
item: item.raw,
|
|
30146
|
+
internalItem: item
|
|
30132
30147
|
}) : undefined
|
|
30133
30148
|
};
|
|
30134
30149
|
const treeviewGroupProps = VTreeviewGroup.filterProps(itemProps);
|
|
@@ -30186,7 +30201,7 @@
|
|
|
30186
30201
|
collapseIcon: '$treeviewCollapse',
|
|
30187
30202
|
expandIcon: '$treeviewExpand',
|
|
30188
30203
|
slim: true
|
|
30189
|
-
}), ['
|
|
30204
|
+
}), ['nav', 'openStrategy']),
|
|
30190
30205
|
modelValue: {
|
|
30191
30206
|
type: Array,
|
|
30192
30207
|
default: () => []
|
|
@@ -30806,7 +30821,7 @@
|
|
|
30806
30821
|
goTo
|
|
30807
30822
|
};
|
|
30808
30823
|
}
|
|
30809
|
-
const version$1 = "3.7.
|
|
30824
|
+
const version$1 = "3.7.11";
|
|
30810
30825
|
createVuetify$1.version = version$1;
|
|
30811
30826
|
|
|
30812
30827
|
// Vue's inject() can only be used in setup
|
|
@@ -31059,7 +31074,7 @@
|
|
|
31059
31074
|
|
|
31060
31075
|
/* eslint-disable local-rules/sort-imports */
|
|
31061
31076
|
|
|
31062
|
-
const version = "3.7.
|
|
31077
|
+
const version = "3.7.11";
|
|
31063
31078
|
|
|
31064
31079
|
/* eslint-disable local-rules/sort-imports */
|
|
31065
31080
|
|