@vuetify/nightly 3.9.0-master.2025-07-12 → 3.9.0-master.2025-07-13

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.0-master.2025-07-12
2
+ * Vuetify v3.9.0-master.2025-07-13
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": val => {
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?.({
@@ -33701,7 +33709,7 @@
33701
33709
  };
33702
33710
  });
33703
33711
  }
33704
- const version$1 = "3.9.0-master.2025-07-12";
33712
+ const version$1 = "3.9.0-master.2025-07-13";
33705
33713
  createVuetify$1.version = version$1;
33706
33714
 
33707
33715
  // Vue's inject() can only be used in setup
@@ -33999,7 +34007,7 @@
33999
34007
 
34000
34008
  /* eslint-disable local-rules/sort-imports */
34001
34009
 
34002
- const version = "3.9.0-master.2025-07-12";
34010
+ const version = "3.9.0-master.2025-07-13";
34003
34011
 
34004
34012
  /* eslint-disable local-rules/sort-imports */
34005
34013