vuetify 3.6.5 → 3.6.6
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/importMap-labs.json +22 -22
- package/dist/json/importMap.json +168 -168
- package/dist/json/web-types.json +7 -7
- package/dist/vuetify-labs.css +1919 -2135
- package/dist/vuetify-labs.d.ts +61 -37
- package/dist/vuetify-labs.esm.js +43 -25
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +43 -25
- package/dist/vuetify-labs.min.css +3 -3
- package/dist/vuetify.css +1163 -1379
- package/dist/vuetify.d.ts +117 -93
- 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 +3 -3
- 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/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 +57 -57
- package/lib/labs/VNumberInput/VNumberInput.mjs +16 -6
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +12 -10
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/components.d.mts +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/lib/styles/generic/_colors.scss +0 -1
- package/lib/styles/main.css +0 -260
- package/package.json +2 -2
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.6.
|
|
2
|
+
* Vuetify v3.6.6
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -7601,7 +7601,9 @@ const makeVSlideGroupProps = propsFactory({
|
|
|
7601
7601
|
validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile'].includes(v)
|
|
7602
7602
|
},
|
|
7603
7603
|
...makeComponentProps(),
|
|
7604
|
-
...makeDisplayProps(
|
|
7604
|
+
...makeDisplayProps({
|
|
7605
|
+
mobile: null
|
|
7606
|
+
}),
|
|
7605
7607
|
...makeTagProps(),
|
|
7606
7608
|
...makeGroupProps({
|
|
7607
7609
|
selectedClass: 'v-slide-group-item--active'
|
|
@@ -11332,7 +11334,7 @@ const VMenu = genericComponent()({
|
|
|
11332
11334
|
},
|
|
11333
11335
|
closeParents(e) {
|
|
11334
11336
|
setTimeout(() => {
|
|
11335
|
-
if (!openChildren.value && (e == null || e && !isClickInsideElement(e, overlay.value.contentEl))) {
|
|
11337
|
+
if (!openChildren.value && !props.persistent && (e == null || e && !isClickInsideElement(e, overlay.value.contentEl))) {
|
|
11336
11338
|
isActive.value = false;
|
|
11337
11339
|
parent?.closeParents();
|
|
11338
11340
|
}
|
|
@@ -11371,6 +11373,7 @@ const VMenu = genericComponent()({
|
|
|
11371
11373
|
function onKeydown(e) {
|
|
11372
11374
|
if (props.disabled) return;
|
|
11373
11375
|
if (e.key === 'Tab' || e.key === 'Enter' && !props.closeOnContentClick) {
|
|
11376
|
+
if (e.key === 'Enter' && e.target instanceof HTMLTextAreaElement) return;
|
|
11374
11377
|
if (e.key === 'Enter') e.preventDefault();
|
|
11375
11378
|
const nextElement = getNextElement(focusableChildren(overlay.value?.contentEl, false), e.shiftKey ? 'prev' : 'next', el => el.tabIndex >= 0);
|
|
11376
11379
|
if (!nextElement) {
|
|
@@ -12552,7 +12555,7 @@ const VSelect = genericComponent()({
|
|
|
12552
12555
|
let keyboardLookupLastTime;
|
|
12553
12556
|
const displayItems = computed(() => {
|
|
12554
12557
|
if (props.hideSelected) {
|
|
12555
|
-
return items.value.filter(item => !model.value.some(s => s
|
|
12558
|
+
return items.value.filter(item => !model.value.some(s => props.valueComparator(s, item)));
|
|
12556
12559
|
}
|
|
12557
12560
|
return items.value;
|
|
12558
12561
|
});
|
|
@@ -13578,7 +13581,9 @@ const makeVBannerProps = propsFactory({
|
|
|
13578
13581
|
...makeComponentProps(),
|
|
13579
13582
|
...makeDensityProps(),
|
|
13580
13583
|
...makeDimensionProps(),
|
|
13581
|
-
...makeDisplayProps(
|
|
13584
|
+
...makeDisplayProps({
|
|
13585
|
+
mobile: null
|
|
13586
|
+
}),
|
|
13582
13587
|
...makeElevationProps(),
|
|
13583
13588
|
...makeLocationProps(),
|
|
13584
13589
|
...makePositionProps(),
|
|
@@ -26405,6 +26410,7 @@ const VSwitch = genericComponent()({
|
|
|
26405
26410
|
blur
|
|
26406
26411
|
} = useFocus(props);
|
|
26407
26412
|
const control = ref();
|
|
26413
|
+
const isForcedColorsModeActive = IN_BROWSER && window.matchMedia('(forced-colors: active)').matches;
|
|
26408
26414
|
const loaderColor = computed(() => {
|
|
26409
26415
|
return typeof props.loading === 'string' && props.loading !== '' ? props.loading : props.color;
|
|
26410
26416
|
});
|
|
@@ -26473,7 +26479,7 @@ const VSwitch = genericComponent()({
|
|
|
26473
26479
|
backgroundColorStyles
|
|
26474
26480
|
} = _ref3;
|
|
26475
26481
|
return createVNode("div", {
|
|
26476
|
-
"class": ['v-switch__track',
|
|
26482
|
+
"class": ['v-switch__track', !isForcedColorsModeActive ? backgroundColorClasses.value : undefined],
|
|
26477
26483
|
"style": backgroundColorStyles.value,
|
|
26478
26484
|
"onClick": onTrackClick
|
|
26479
26485
|
}, [slots['track-true'] && createVNode("div", {
|
|
@@ -26494,7 +26500,7 @@ const VSwitch = genericComponent()({
|
|
|
26494
26500
|
return createVNode(Fragment, null, [inputNode, createVNode("div", {
|
|
26495
26501
|
"class": ['v-switch__thumb', {
|
|
26496
26502
|
'v-switch__thumb--filled': icon || props.loading
|
|
26497
|
-
}, props.inset ? undefined : backgroundColorClasses.value],
|
|
26503
|
+
}, props.inset || isForcedColorsModeActive ? undefined : backgroundColorClasses.value],
|
|
26498
26504
|
"style": props.inset ? undefined : backgroundColorStyles.value
|
|
26499
26505
|
}, [slots.thumb ? createVNode(VDefaultsProvider, {
|
|
26500
26506
|
"defaults": {
|
|
@@ -27994,7 +28000,7 @@ function createVuetify$1() {
|
|
|
27994
28000
|
goTo
|
|
27995
28001
|
};
|
|
27996
28002
|
}
|
|
27997
|
-
const version$1 = "3.6.
|
|
28003
|
+
const version$1 = "3.6.6";
|
|
27998
28004
|
createVuetify$1.version = version$1;
|
|
27999
28005
|
|
|
28000
28006
|
// Vue's inject() can only be used in setup
|
|
@@ -28019,7 +28025,7 @@ const createVuetify = function () {
|
|
|
28019
28025
|
...options
|
|
28020
28026
|
});
|
|
28021
28027
|
};
|
|
28022
|
-
const version = "3.6.
|
|
28028
|
+
const version = "3.6.6";
|
|
28023
28029
|
createVuetify.version = version;
|
|
28024
28030
|
|
|
28025
28031
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|