@vuetify/nightly 3.11.8-dev.2026-02-17 → 3.11.8-dev.2026-02-18

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.8-dev.2026-02-17
2
+ * Vuetify v3.11.8-dev.2026-02-18
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3606,8 +3606,14 @@
3606
3606
  backgroundColorStyles
3607
3607
  };
3608
3608
  }
3609
+ function normalizeColors(colors) {
3610
+ return {
3611
+ text: typeof colors.text === 'string' ? colors.text.replace(/^text-/, '') : colors.text,
3612
+ background: typeof colors.background === 'string' ? colors.background.replace(/^bg-/, '') : colors.background
3613
+ };
3614
+ }
3609
3615
  function computeColor(colors) {
3610
- const _colors = vue.toValue(colors);
3616
+ const _colors = normalizeColors(vue.toValue(colors));
3611
3617
  const classes = [];
3612
3618
  const styles = {};
3613
3619
  if (_colors.background) {
@@ -31182,6 +31188,7 @@
31182
31188
  type: [Number, String],
31183
31189
  default: 6
31184
31190
  },
31191
+ masked: Boolean,
31185
31192
  modelValue: {
31186
31193
  type: [Number, String],
31187
31194
  default: undefined
@@ -31382,7 +31389,7 @@
31382
31389
  "min": props.type === 'number' ? 0 : undefined,
31383
31390
  "maxlength": i === 0 ? length.value : '1',
31384
31391
  "placeholder": props.placeholder,
31385
- "type": props.type === 'number' ? 'text' : props.type,
31392
+ "type": props.masked ? 'password' : props.type === 'number' ? 'text' : props.type,
31386
31393
  "value": model.value[i],
31387
31394
  "onInput": onInput,
31388
31395
  "onFocus": e => onFocus(e, i),
@@ -40087,7 +40094,7 @@
40087
40094
  };
40088
40095
  });
40089
40096
  }
40090
- const version$1 = "3.11.8-dev.2026-02-17";
40097
+ const version$1 = "3.11.8-dev.2026-02-18";
40091
40098
  createVuetify$1.version = version$1;
40092
40099
 
40093
40100
  // Vue's inject() can only be used in setup
@@ -40390,7 +40397,7 @@
40390
40397
 
40391
40398
  /* eslint-disable local-rules/sort-imports */
40392
40399
 
40393
- const version = "3.11.8-dev.2026-02-17";
40400
+ const version = "3.11.8-dev.2026-02-18";
40394
40401
 
40395
40402
  /* eslint-disable local-rules/sort-imports */
40396
40403