@vuetify/nightly 3.7.18-master.2025-03-25 → 3.7.19-master.2025-03-27
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 +9 -39
- package/dist/json/attributes.json +3627 -3627
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +6650 -6650
- package/dist/vuetify-labs.css +3520 -3520
- package/dist/vuetify-labs.esm.js +13 -21
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -21
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4358 -4358
- package/dist/vuetify.d.ts +49 -49
- package/dist/vuetify.esm.js +8 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -49
- package/lib/labs/VDateInput/VDateInput.mjs +3 -7
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.mjs +2 -1
- package/lib/labs/VFileUpload/VFileUpload.mjs.map +1 -1
- package/lib/util/helpers.mjs +1 -11
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.19-master.2025-03-27
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -13269,12 +13269,7 @@
|
|
13269
13269
|
} else {
|
13270
13270
|
if (!props.multiple && search.value == null) model.value = [];
|
13271
13271
|
menu.value = false;
|
13272
|
-
if (
|
13273
|
-
let {
|
13274
|
-
title
|
13275
|
-
} = _ref3;
|
13276
|
-
return title === search.value;
|
13277
|
-
})) search.value = '';
|
13272
|
+
if (props.multiple || hasSelectionSlot.value) search.value = '';
|
13278
13273
|
selectionIndex.value = -1;
|
13279
13274
|
}
|
13280
13275
|
});
|
@@ -13361,12 +13356,12 @@
|
|
13361
13356
|
"renderless": true,
|
13362
13357
|
"items": displayItems.value
|
13363
13358
|
}, {
|
13364
|
-
default:
|
13359
|
+
default: _ref3 => {
|
13365
13360
|
let {
|
13366
13361
|
item,
|
13367
13362
|
index,
|
13368
13363
|
itemRef
|
13369
|
-
} =
|
13364
|
+
} = _ref3;
|
13370
13365
|
const itemProps = vue.mergeProps(item.props, {
|
13371
13366
|
ref: itemRef,
|
13372
13367
|
key: item.value,
|
@@ -13380,10 +13375,10 @@
|
|
13380
13375
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
13381
13376
|
"role": "option"
|
13382
13377
|
}), {
|
13383
|
-
prepend:
|
13378
|
+
prepend: _ref4 => {
|
13384
13379
|
let {
|
13385
13380
|
isSelected
|
13386
|
-
} =
|
13381
|
+
} = _ref4;
|
13387
13382
|
return vue.createVNode(vue.Fragment, null, [props.multiple && !props.hideSelected ? vue.createVNode(VCheckboxBtn, {
|
13388
13383
|
"key": item.value,
|
13389
13384
|
"modelValue": isSelected,
|
@@ -28293,7 +28288,7 @@
|
|
28293
28288
|
const adapter = useDate();
|
28294
28289
|
const {
|
28295
28290
|
mobile
|
28296
|
-
} = useDisplay();
|
28291
|
+
} = useDisplay(props);
|
28297
28292
|
const {
|
28298
28293
|
isFocused,
|
28299
28294
|
focus,
|
@@ -28341,7 +28336,7 @@
|
|
28341
28336
|
return;
|
28342
28337
|
}
|
28343
28338
|
const target = e.target;
|
28344
|
-
model.value = target.value
|
28339
|
+
model.value = adapter.isValid(target.value) ? target.value : null;
|
28345
28340
|
}
|
28346
28341
|
function onClick(e) {
|
28347
28342
|
e.preventDefault();
|
@@ -28365,10 +28360,6 @@
|
|
28365
28360
|
if (value != null) return;
|
28366
28361
|
model.value = null;
|
28367
28362
|
}
|
28368
|
-
function onUpdateMenuModel(isMenuOpen) {
|
28369
|
-
if (isMenuOpen) return;
|
28370
|
-
isEditingInput.value = false;
|
28371
|
-
}
|
28372
28363
|
function onBlur() {
|
28373
28364
|
blur();
|
28374
28365
|
|
@@ -28401,7 +28392,7 @@
|
|
28401
28392
|
...slots,
|
28402
28393
|
default: () => vue.createVNode(vue.Fragment, null, [vue.createVNode(VMenu, {
|
28403
28394
|
"modelValue": menu.value,
|
28404
|
-
"onUpdate:modelValue":
|
28395
|
+
"onUpdate:modelValue": $event => menu.value = $event,
|
28405
28396
|
"activator": "parent",
|
28406
28397
|
"min-width": "0",
|
28407
28398
|
"eager": isFocused.value,
|
@@ -28680,7 +28671,8 @@
|
|
28680
28671
|
'v-file-upload--clickable': !hasBrowse,
|
28681
28672
|
'v-file-upload--disabled': props.disabled,
|
28682
28673
|
'v-file-upload--dragging': dragOver.value
|
28683
|
-
}, densityClasses.value],
|
28674
|
+
}, densityClasses.value, props.class],
|
28675
|
+
"style": [props.style],
|
28684
28676
|
"onDragleave": onDragLeave,
|
28685
28677
|
"onDragover": onDragOver,
|
28686
28678
|
"onDrop": onDrop,
|
@@ -31155,7 +31147,7 @@
|
|
31155
31147
|
goTo
|
31156
31148
|
};
|
31157
31149
|
}
|
31158
|
-
const version$1 = "3.7.
|
31150
|
+
const version$1 = "3.7.19-master.2025-03-27";
|
31159
31151
|
createVuetify$1.version = version$1;
|
31160
31152
|
|
31161
31153
|
// Vue's inject() can only be used in setup
|
@@ -31408,7 +31400,7 @@
|
|
31408
31400
|
|
31409
31401
|
/* eslint-disable local-rules/sort-imports */
|
31410
31402
|
|
31411
|
-
const version = "3.7.
|
31403
|
+
const version = "3.7.19-master.2025-03-27";
|
31412
31404
|
|
31413
31405
|
/* eslint-disable local-rules/sort-imports */
|
31414
31406
|
|