@vuetify/nightly 3.7.12-master.2025-02-18 → 3.7.12-master.2025-02-19
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 +12 -3
- package/dist/json/attributes.json +2555 -2555
- package/dist/json/importMap-labs.json +38 -38
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +4785 -4785
- package/dist/vuetify-labs.css +4769 -4769
- package/dist/vuetify-labs.d.ts +17 -8
- package/dist/vuetify-labs.esm.js +23 -30
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +23 -30
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5007 -5007
- package/dist/vuetify.d.ts +74 -65
- package/dist/vuetify.esm.js +14 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +14 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1056 -1057
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VInput/VInput.mjs +2 -2
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +1 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +2 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +13 -1
- package/lib/components/VOtpInput/VOtpInput.mjs +2 -2
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VStepper/VStepper.mjs +2 -2
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.mjs +2 -2
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/index.d.mts +17 -8
- package/lib/composables/list-items.mjs +2 -3
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/lib/labs/VFileUpload/VFileUpload.mjs +2 -2
- package/lib/labs/VFileUpload/VFileUpload.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +9 -11
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/util/helpers.mjs +3 -9
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.12-master.2025-02-
|
2
|
+
* Vuetify v3.7.12-master.2025-02-19
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -159,10 +159,9 @@
|
|
159
159
|
// Array of keys
|
160
160
|
function pick(obj, paths) {
|
161
161
|
const found = {};
|
162
|
-
const
|
163
|
-
|
164
|
-
|
165
|
-
found[path] = obj[path];
|
162
|
+
for (const key of paths) {
|
163
|
+
if (Object.hasOwn(obj, key)) {
|
164
|
+
found[key] = obj[key];
|
166
165
|
}
|
167
166
|
}
|
168
167
|
return found;
|
@@ -191,11 +190,6 @@
|
|
191
190
|
exclude.forEach(prop => delete clone[prop]);
|
192
191
|
return clone;
|
193
192
|
}
|
194
|
-
function only(obj, include) {
|
195
|
-
const clone = {};
|
196
|
-
include.forEach(prop => clone[prop] = obj[prop]);
|
197
|
-
return clone;
|
198
|
-
}
|
199
193
|
const onRE = /^on[^a-z]/;
|
200
194
|
const isOn = key => onRE.test(key);
|
201
195
|
const bubblingEvents = ['onAfterscriptexecute', 'onAnimationcancel', 'onAnimationend', 'onAnimationiteration', 'onAnimationstart', 'onAuxclick', 'onBeforeinput', 'onBeforescriptexecute', 'onChange', 'onClick', 'onCompositionend', 'onCompositionstart', 'onCompositionupdate', 'onContextmenu', 'onCopy', 'onCut', 'onDblclick', 'onFocusin', 'onFocusout', 'onFullscreenchange', 'onFullscreenerror', 'onGesturechange', 'onGestureend', 'onGesturestart', 'onGotpointercapture', 'onInput', 'onKeydown', 'onKeypress', 'onKeyup', 'onLostpointercapture', 'onMousedown', 'onMousemove', 'onMouseout', 'onMouseover', 'onMouseup', 'onMousewheel', 'onPaste', 'onPointercancel', 'onPointerdown', 'onPointerenter', 'onPointerleave', 'onPointermove', 'onPointerout', 'onPointerover', 'onPointerup', 'onReset', 'onSelect', 'onSubmit', 'onTouchcancel', 'onTouchend', 'onTouchmove', 'onTouchstart', 'onTransitioncancel', 'onTransitionend', 'onTransitionrun', 'onTransitionstart', 'onWheel'];
|
@@ -7130,7 +7124,7 @@
|
|
7130
7124
|
'onClick:append': EventProp(),
|
7131
7125
|
...makeComponentProps(),
|
7132
7126
|
...makeDensityProps(),
|
7133
|
-
...
|
7127
|
+
...pick(makeDimensionProps(), ['maxWidth', 'minWidth', 'width']),
|
7134
7128
|
...makeThemeProps(),
|
7135
7129
|
...makeValidationProps()
|
7136
7130
|
}, 'VInput');
|
@@ -9420,7 +9414,8 @@
|
|
9420
9414
|
list,
|
9421
9415
|
select,
|
9422
9416
|
root,
|
9423
|
-
id: uid
|
9417
|
+
id: uid,
|
9418
|
+
link
|
9424
9419
|
};
|
9425
9420
|
}
|
9426
9421
|
});
|
@@ -9688,7 +9683,6 @@
|
|
9688
9683
|
function transformIn(value) {
|
9689
9684
|
// Cache unrefed values outside the loop,
|
9690
9685
|
// proxy getters can be slow when you call them a billion times
|
9691
|
-
const _value = vue.toRaw(value);
|
9692
9686
|
const _items = itemsMap.value;
|
9693
9687
|
const _allItems = items.value;
|
9694
9688
|
const _keylessItems = keylessItems.value;
|
@@ -9698,7 +9692,7 @@
|
|
9698
9692
|
const valueComparator = props.valueComparator || deepEqual;
|
9699
9693
|
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9700
9694
|
const returnValue = [];
|
9701
|
-
main: for (const v of
|
9695
|
+
main: for (const v of value) {
|
9702
9696
|
// When the model value is null, return an InternalItem
|
9703
9697
|
// based on null only if null is one of the items
|
9704
9698
|
if (!_hasNullItem && v === null) continue;
|
@@ -9944,7 +9938,7 @@
|
|
9944
9938
|
'v-list--slim': props.slim
|
9945
9939
|
}, themeClasses.value, backgroundColorClasses.value, borderClasses.value, densityClasses.value, elevationClasses.value, lineClasses.value, roundedClasses.value, props.class],
|
9946
9940
|
"style": [backgroundColorStyles.value, dimensionStyles.value, props.style],
|
9947
|
-
"tabindex": props.disabled
|
9941
|
+
"tabindex": props.disabled ? -1 : 0,
|
9948
9942
|
"role": "listbox",
|
9949
9943
|
"aria-activedescendant": undefined,
|
9950
9944
|
"onFocusin": onFocusin,
|
@@ -24675,7 +24669,7 @@
|
|
24675
24669
|
},
|
24676
24670
|
...makeDimensionProps(),
|
24677
24671
|
...makeFocusProps(),
|
24678
|
-
...
|
24672
|
+
...pick(makeVFieldProps({
|
24679
24673
|
variant: 'outlined'
|
24680
24674
|
}), ['baseColor', 'bgColor', 'class', 'color', 'disabled', 'error', 'loading', 'rounded', 'style', 'theme', 'variant'])
|
24681
24675
|
}, 'VOtpInput');
|
@@ -26663,7 +26657,7 @@
|
|
26663
26657
|
selectedClass: 'v-stepper-item--selected'
|
26664
26658
|
}),
|
26665
26659
|
...makeVSheetProps(),
|
26666
|
-
...
|
26660
|
+
...pick(makeVStepperActionsProps(), ['prevText', 'nextText'])
|
26667
26661
|
}, 'VStepper');
|
26668
26662
|
const VStepper = genericComponent()({
|
26669
26663
|
name: 'VStepper',
|
@@ -27745,7 +27739,7 @@
|
|
27745
27739
|
type: String,
|
27746
27740
|
validator: v => ['start', 'end', 'both'].includes(v)
|
27747
27741
|
},
|
27748
|
-
...
|
27742
|
+
...pick(makeVTimelineItemProps({
|
27749
27743
|
lineInset: 0
|
27750
27744
|
}), ['dotColor', 'fillDot', 'hideOpposite', 'iconColor', 'lineInset', 'size']),
|
27751
27745
|
...makeComponentProps(),
|
@@ -28417,7 +28411,7 @@
|
|
28417
28411
|
goTo
|
28418
28412
|
};
|
28419
28413
|
}
|
28420
|
-
const version$1 = "3.7.12-master.2025-02-
|
28414
|
+
const version$1 = "3.7.12-master.2025-02-19";
|
28421
28415
|
createVuetify$1.version = version$1;
|
28422
28416
|
|
28423
28417
|
// Vue's inject() can only be used in setup
|
@@ -28442,7 +28436,7 @@
|
|
28442
28436
|
...options
|
28443
28437
|
});
|
28444
28438
|
};
|
28445
|
-
const version = "3.7.12-master.2025-02-
|
28439
|
+
const version = "3.7.12-master.2025-02-19";
|
28446
28440
|
createVuetify.version = version;
|
28447
28441
|
|
28448
28442
|
exports.blueprints = index;
|