@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.
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -4059,8 +4059,14 @@
4059
4059
  backgroundColorStyles
4060
4060
  };
4061
4061
  }
4062
+ function normalizeColors(colors) {
4063
+ return {
4064
+ text: typeof colors.text === 'string' ? colors.text.replace(/^text-/, '') : colors.text,
4065
+ background: typeof colors.background === 'string' ? colors.background.replace(/^bg-/, '') : colors.background
4066
+ };
4067
+ }
4062
4068
  function computeColor(colors) {
4063
- const _colors = vue.toValue(colors);
4069
+ const _colors = normalizeColors(vue.toValue(colors));
4064
4070
  const classes = [];
4065
4071
  const styles = {};
4066
4072
  if (_colors.background) {
@@ -31503,6 +31509,7 @@
31503
31509
  type: [Number, String],
31504
31510
  default: 6
31505
31511
  },
31512
+ masked: Boolean,
31506
31513
  modelValue: {
31507
31514
  type: [Number, String],
31508
31515
  default: undefined
@@ -31703,7 +31710,7 @@
31703
31710
  "min": props.type === 'number' ? 0 : undefined,
31704
31711
  "maxlength": i === 0 ? length.value : '1',
31705
31712
  "placeholder": props.placeholder,
31706
- "type": props.type === 'number' ? 'text' : props.type,
31713
+ "type": props.masked ? 'password' : props.type === 'number' ? 'text' : props.type,
31707
31714
  "value": model.value[i],
31708
31715
  "onInput": onInput,
31709
31716
  "onFocus": e => onFocus(e, i),
@@ -37066,7 +37073,7 @@
37066
37073
  };
37067
37074
  });
37068
37075
  }
37069
- const version$1 = "3.11.8-dev.2026-02-17";
37076
+ const version$1 = "3.11.8-dev.2026-02-18";
37070
37077
  createVuetify$1.version = version$1;
37071
37078
 
37072
37079
  // Vue's inject() can only be used in setup
@@ -37091,7 +37098,7 @@
37091
37098
  ...options
37092
37099
  });
37093
37100
  };
37094
- const version = "3.11.8-dev.2026-02-17";
37101
+ const version = "3.11.8-dev.2026-02-18";
37095
37102
  createVuetify.version = version;
37096
37103
 
37097
37104
  exports.blueprints = index;