@vuetify/nightly 3.6.5-master.2024-05-13 → 3.6.6-master.2024-05-15
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 -8
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +120 -120
- package/dist/json/web-types.json +5 -5
- package/dist/vuetify-labs.css +2132 -2087
- package/dist/vuetify-labs.d.ts +60 -36
- package/dist/vuetify-labs.esm.js +27 -19
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +27 -19
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2725 -2680
- package/dist/vuetify.d.ts +98 -74
- package/dist/vuetify.esm.js +15 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +15 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +18 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBanner/VBanner.mjs +3 -1
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +15 -9
- package/lib/components/VChipGroup/index.d.mts +15 -9
- package/lib/components/VDivider/VDivider.css +1 -0
- package/lib/components/VDivider/VDivider.sass +1 -0
- package/lib/components/VMenu/VMenu.mjs +2 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +1 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.mjs +3 -1
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +15 -9
- package/lib/components/VSwitch/VSwitch.css +44 -0
- package/lib/components/VSwitch/VSwitch.mjs +4 -3
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.sass +55 -0
- package/lib/components/VTabs/index.d.mts +15 -9
- package/lib/components/index.d.mts +60 -36
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +38 -38
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +12 -10
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/locale/de.mjs +4 -4
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/hu.mjs +18 -18
- package/lib/locale/hu.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.6-master.2024-05-15
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -7605,7 +7605,9 @@
|
|
7605
7605
|
validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile'].includes(v)
|
7606
7606
|
},
|
7607
7607
|
...makeComponentProps(),
|
7608
|
-
...makeDisplayProps(
|
7608
|
+
...makeDisplayProps({
|
7609
|
+
mobile: null
|
7610
|
+
}),
|
7609
7611
|
...makeTagProps(),
|
7610
7612
|
...makeGroupProps({
|
7611
7613
|
selectedClass: 'v-slide-group-item--active'
|
@@ -11336,7 +11338,7 @@
|
|
11336
11338
|
},
|
11337
11339
|
closeParents(e) {
|
11338
11340
|
setTimeout(() => {
|
11339
|
-
if (!openChildren.value && (e == null || e && !isClickInsideElement(e, overlay.value.contentEl))) {
|
11341
|
+
if (!openChildren.value && !props.persistent && (e == null || e && !isClickInsideElement(e, overlay.value.contentEl))) {
|
11340
11342
|
isActive.value = false;
|
11341
11343
|
parent?.closeParents();
|
11342
11344
|
}
|
@@ -11375,6 +11377,7 @@
|
|
11375
11377
|
function onKeydown(e) {
|
11376
11378
|
if (props.disabled) return;
|
11377
11379
|
if (e.key === 'Tab' || e.key === 'Enter' && !props.closeOnContentClick) {
|
11380
|
+
if (e.key === 'Enter' && e.target instanceof HTMLTextAreaElement) return;
|
11378
11381
|
if (e.key === 'Enter') e.preventDefault();
|
11379
11382
|
const nextElement = getNextElement(focusableChildren(overlay.value?.contentEl, false), e.shiftKey ? 'prev' : 'next', el => el.tabIndex >= 0);
|
11380
11383
|
if (!nextElement) {
|
@@ -12556,7 +12559,7 @@
|
|
12556
12559
|
let keyboardLookupLastTime;
|
12557
12560
|
const displayItems = vue.computed(() => {
|
12558
12561
|
if (props.hideSelected) {
|
12559
|
-
return items.value.filter(item => !model.value.some(s => s
|
12562
|
+
return items.value.filter(item => !model.value.some(s => props.valueComparator(s, item)));
|
12560
12563
|
}
|
12561
12564
|
return items.value;
|
12562
12565
|
});
|
@@ -13582,7 +13585,9 @@
|
|
13582
13585
|
...makeComponentProps(),
|
13583
13586
|
...makeDensityProps(),
|
13584
13587
|
...makeDimensionProps(),
|
13585
|
-
...makeDisplayProps(
|
13588
|
+
...makeDisplayProps({
|
13589
|
+
mobile: null
|
13590
|
+
}),
|
13586
13591
|
...makeElevationProps(),
|
13587
13592
|
...makeLocationProps(),
|
13588
13593
|
...makePositionProps(),
|
@@ -26409,6 +26414,7 @@
|
|
26409
26414
|
blur
|
26410
26415
|
} = useFocus(props);
|
26411
26416
|
const control = vue.ref();
|
26417
|
+
const isForcedColorsModeActive = IN_BROWSER && window.matchMedia('(forced-colors: active)').matches;
|
26412
26418
|
const loaderColor = vue.computed(() => {
|
26413
26419
|
return typeof props.loading === 'string' && props.loading !== '' ? props.loading : props.color;
|
26414
26420
|
});
|
@@ -26477,7 +26483,7 @@
|
|
26477
26483
|
backgroundColorStyles
|
26478
26484
|
} = _ref3;
|
26479
26485
|
return vue.createVNode("div", {
|
26480
|
-
"class": ['v-switch__track',
|
26486
|
+
"class": ['v-switch__track', !isForcedColorsModeActive ? backgroundColorClasses.value : undefined],
|
26481
26487
|
"style": backgroundColorStyles.value,
|
26482
26488
|
"onClick": onTrackClick
|
26483
26489
|
}, [slots['track-true'] && vue.createVNode("div", {
|
@@ -26498,7 +26504,7 @@
|
|
26498
26504
|
return vue.createVNode(vue.Fragment, null, [inputNode, vue.createVNode("div", {
|
26499
26505
|
"class": ['v-switch__thumb', {
|
26500
26506
|
'v-switch__thumb--filled': icon || props.loading
|
26501
|
-
}, props.inset ? undefined : backgroundColorClasses.value],
|
26507
|
+
}, props.inset || isForcedColorsModeActive ? undefined : backgroundColorClasses.value],
|
26502
26508
|
"style": props.inset ? undefined : backgroundColorStyles.value
|
26503
26509
|
}, [slots.thumb ? vue.createVNode(VDefaultsProvider, {
|
26504
26510
|
"defaults": {
|
@@ -27998,7 +28004,7 @@
|
|
27998
28004
|
goTo
|
27999
28005
|
};
|
28000
28006
|
}
|
28001
|
-
const version$1 = "3.6.
|
28007
|
+
const version$1 = "3.6.6-master.2024-05-15";
|
28002
28008
|
createVuetify$1.version = version$1;
|
28003
28009
|
|
28004
28010
|
// Vue's inject() can only be used in setup
|
@@ -28023,7 +28029,7 @@
|
|
28023
28029
|
...options
|
28024
28030
|
});
|
28025
28031
|
};
|
28026
|
-
const version = "3.6.
|
28032
|
+
const version = "3.6.6-master.2024-05-15";
|
28027
28033
|
createVuetify.version = version;
|
28028
28034
|
|
28029
28035
|
exports.blueprints = index;
|