@vuetify/nightly 3.9.0-master.2025-07-12 → 3.9.0-master.2025-07-14
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 +5 -3
- package/dist/json/attributes.json +3415 -3415
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +166 -166
- package/dist/json/web-types.json +6054 -6054
- package/dist/vuetify-labs.cjs +19 -10
- package/dist/vuetify-labs.css +4169 -4169
- package/dist/vuetify-labs.d.ts +59 -59
- package/dist/vuetify-labs.esm.js +19 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +3 -3
- package/dist/vuetify.css +3707 -3707
- package/dist/vuetify.d.ts +59 -59
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.js +14 -6
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- package/lib/labs/VFileUpload/VFileUploadItem.js +2 -1
- package/lib/labs/VFileUpload/VFileUploadItem.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.0-master.2025-07-
|
2
|
+
* Vuetify v3.9.0-master.2025-07-14
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -31282,6 +31282,9 @@
|
|
31282
31282
|
function onSave() {
|
31283
31283
|
menu.value = false;
|
31284
31284
|
}
|
31285
|
+
function onCancel() {
|
31286
|
+
menu.value = false;
|
31287
|
+
}
|
31285
31288
|
useRender(() => {
|
31286
31289
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
31287
31290
|
const colorPickerProps = VColorPicker.filterProps(omit(props, ['active', 'color']));
|
@@ -31317,7 +31320,8 @@
|
|
31317
31320
|
default: () => [vue.createVNode(VConfirmEdit, vue.mergeProps(confirmEditProps, {
|
31318
31321
|
"modelValue": model.value,
|
31319
31322
|
"onUpdate:modelValue": $event => model.value = $event,
|
31320
|
-
"onSave": onSave
|
31323
|
+
"onSave": onSave,
|
31324
|
+
"onCancel": onCancel
|
31321
31325
|
}), {
|
31322
31326
|
default: _ref2 => {
|
31323
31327
|
let {
|
@@ -31327,12 +31331,16 @@
|
|
31327
31331
|
cancel,
|
31328
31332
|
isPristine
|
31329
31333
|
} = _ref2;
|
31334
|
+
function onUpdateModel(value) {
|
31335
|
+
if (!props.hideActions) {
|
31336
|
+
proxyModel.value = value;
|
31337
|
+
} else {
|
31338
|
+
model.value = value;
|
31339
|
+
}
|
31340
|
+
}
|
31330
31341
|
return vue.createVNode(VColorPicker, vue.mergeProps(colorPickerProps, {
|
31331
|
-
"modelValue": proxyModel.value,
|
31332
|
-
"onUpdate:modelValue":
|
31333
|
-
proxyModel.value = val;
|
31334
|
-
model.value = val;
|
31335
|
-
},
|
31342
|
+
"modelValue": props.hideActions ? model.value : proxyModel.value,
|
31343
|
+
"onUpdate:modelValue": value => onUpdateModel(value),
|
31336
31344
|
"onMousedown": e => e.preventDefault()
|
31337
31345
|
}), {
|
31338
31346
|
actions: !props.hideActions ? () => slots.actions?.({
|
@@ -31757,9 +31765,10 @@
|
|
31757
31765
|
useRender(() => {
|
31758
31766
|
const listItemProps = VListItem.filterProps(props);
|
31759
31767
|
return vue.createVNode(VListItem, vue.mergeProps(listItemProps, {
|
31768
|
+
"class": ['v-file-upload-item', props.class],
|
31760
31769
|
"title": props.title ?? props.file?.name,
|
31761
31770
|
"subtitle": props.showSize ? humanReadableFileSize(props.file?.size, base.value) : props.file?.type,
|
31762
|
-
"
|
31771
|
+
"style": props.style
|
31763
31772
|
}), {
|
31764
31773
|
...slots,
|
31765
31774
|
title: () => props?.title ?? props.file?.name,
|
@@ -33701,7 +33710,7 @@
|
|
33701
33710
|
};
|
33702
33711
|
});
|
33703
33712
|
}
|
33704
|
-
const version$1 = "3.9.0-master.2025-07-
|
33713
|
+
const version$1 = "3.9.0-master.2025-07-14";
|
33705
33714
|
createVuetify$1.version = version$1;
|
33706
33715
|
|
33707
33716
|
// Vue's inject() can only be used in setup
|
@@ -33999,7 +34008,7 @@
|
|
33999
34008
|
|
34000
34009
|
/* eslint-disable local-rules/sort-imports */
|
34001
34010
|
|
34002
|
-
const version = "3.9.0-master.2025-07-
|
34011
|
+
const version = "3.9.0-master.2025-07-14";
|
34003
34012
|
|
34004
34013
|
/* eslint-disable local-rules/sort-imports */
|
34005
34014
|
|