@vuetify/nightly 3.11.3-dev.2025-12-09 → 3.11.3-dev.2025-12-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.11.3-dev.2025-12-09
2
+ * Vuetify v3.11.3-dev.2025-12-13
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -27144,6 +27144,7 @@
27144
27144
  hideWeekdays: Boolean,
27145
27145
  multiple: [Boolean, Number, String],
27146
27146
  showWeek: Boolean,
27147
+ readonly: Boolean,
27147
27148
  transition: {
27148
27149
  type: String,
27149
27150
  default: 'picker-transition'
@@ -27330,6 +27331,7 @@
27330
27331
  class: 'v-date-picker-month__day-btn',
27331
27332
  color: item.isSelected || item.isToday ? props.color : undefined,
27332
27333
  disabled: item.isDisabled,
27334
+ readonly: props.readonly,
27333
27335
  icon: true,
27334
27336
  ripple: false,
27335
27337
  variant: item.isSelected ? 'flat' : item.isToday ? 'outlined' : 'text',
@@ -36353,10 +36355,11 @@
36353
36355
  }
36354
36356
  }
36355
36357
  function onClick(e) {
36358
+ if (props.disabled) return;
36356
36359
  e.preventDefault();
36357
36360
  e.stopPropagation();
36358
36361
  if (menu.value && mobile.value) {
36359
- isEditingInput.value = true;
36362
+ isEditingInput.value = !props.readonly;
36360
36363
  } else {
36361
36364
  menu.value = true;
36362
36365
  }
@@ -36425,8 +36428,8 @@
36425
36428
  "focused": menu.value || isFocused.value,
36426
36429
  "onBlur": onBlur,
36427
36430
  "validationValue": model.value,
36428
- "onClick:control": isInteractive.value ? onClick : undefined,
36429
- "onClick:prepend": isInteractive.value ? onClick : undefined,
36431
+ "onClick:control": onClick,
36432
+ "onClick:prepend": onClick,
36430
36433
  "onUpdate:modelValue": onUpdateDisplayModel,
36431
36434
  "onUpdate:focused": event => isFocused.value = event
36432
36435
  }), {
@@ -39332,7 +39335,7 @@
39332
39335
  };
39333
39336
  });
39334
39337
  }
39335
- const version$1 = "3.11.3-dev.2025-12-09";
39338
+ const version$1 = "3.11.3-dev.2025-12-13";
39336
39339
  createVuetify$1.version = version$1;
39337
39340
 
39338
39341
  // Vue's inject() can only be used in setup
@@ -39635,7 +39638,7 @@
39635
39638
 
39636
39639
  /* eslint-disable local-rules/sort-imports */
39637
39640
 
39638
- const version = "3.11.3-dev.2025-12-09";
39641
+ const version = "3.11.3-dev.2025-12-13";
39639
39642
 
39640
39643
  /* eslint-disable local-rules/sort-imports */
39641
39644