@vuetify/nightly 3.8.3-master.2025-05-01 → 3.8.3-master.2025-05-02

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.8.3-master.2025-05-01
2
+ * Vuetify v3.8.3-master.2025-05-02
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -29110,7 +29110,8 @@
29110
29110
  focus,
29111
29111
  blur
29112
29112
  } = useFocus(props);
29113
- const model = useProxiedModel(props, 'modelValue', props.multiple ? [] : null, val => Array.isArray(val) ? val.map(item => adapter.toJsDate(item)) : val ? adapter.toJsDate(val) : val, val => Array.isArray(val) ? val.map(item => adapter.date(item)) : val ? adapter.date(val) : val);
29113
+ const emptyModelValue = () => props.multiple ? [] : null;
29114
+ const model = useProxiedModel(props, 'modelValue', emptyModelValue(), val => Array.isArray(val) ? val.map(item => adapter.toJsDate(item)) : val ? adapter.toJsDate(val) : val, val => Array.isArray(val) ? val.map(item => adapter.date(item)) : val ? adapter.date(val) : val);
29114
29115
  const menu = vue.shallowRef(false);
29115
29116
  const isEditingInput = vue.shallowRef(false);
29116
29117
  const vTextFieldRef = vue.ref();
@@ -29180,7 +29181,7 @@
29180
29181
  }
29181
29182
  function onUpdateDisplayModel(value) {
29182
29183
  if (value != null) return;
29183
- model.value = null;
29184
+ model.value = emptyModelValue();
29184
29185
  }
29185
29186
  function onBlur(e) {
29186
29187
  if (props.updateOn.includes('blur')) {
@@ -29199,7 +29200,7 @@
29199
29200
  value
29200
29201
  } = _ref2;
29201
29202
  if (value && !adapter.isValid(value)) return;
29202
- model.value = !value ? null : value;
29203
+ model.value = !value ? emptyModelValue() : value;
29203
29204
  }
29204
29205
  useRender(() => {
29205
29206
  const confirmEditProps = VConfirmEdit.filterProps(props);
@@ -31661,7 +31662,7 @@
31661
31662
  };
31662
31663
  });
31663
31664
  }
31664
- const version$1 = "3.8.3-master.2025-05-01";
31665
+ const version$1 = "3.8.3-master.2025-05-02";
31665
31666
  createVuetify$1.version = version$1;
31666
31667
 
31667
31668
  // Vue's inject() can only be used in setup
@@ -31959,7 +31960,7 @@
31959
31960
 
31960
31961
  /* eslint-disable local-rules/sort-imports */
31961
31962
 
31962
- const version = "3.8.3-master.2025-05-01";
31963
+ const version = "3.8.3-master.2025-05-02";
31963
31964
 
31964
31965
  /* eslint-disable local-rules/sort-imports */
31965
31966