@zeedhi/vuetify 1.120.1 → 1.120.2

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.
@@ -42482,6 +42482,10 @@ let ZdNumber = class ZdNumber extends __vue_component__$1m {
42482
42482
  const isChrome = navigator.userAgent.indexOf('Chrome') > -1;
42483
42483
  return isChrome ? 'one-time-code' : 'off';
42484
42484
  }
42485
+ changeMask() {
42486
+ var _a;
42487
+ (_a = this.instance.autoNumericObj) === null || _a === void 0 ? void 0 : _a.update(this.instance.mask);
42488
+ }
42485
42489
  };
42486
42490
  __decorate([
42487
42491
  PropWatch({ type: String, default: 'right' }),
@@ -42507,6 +42511,12 @@ __decorate([
42507
42511
  __metadata("design:paramtypes", [Boolean]),
42508
42512
  __metadata("design:returntype", void 0)
42509
42513
  ], ZdNumber.prototype, "readOnlyUpdater", null);
42514
+ __decorate([
42515
+ Watch('instance.mask', { deep: true }),
42516
+ __metadata("design:type", Function),
42517
+ __metadata("design:paramtypes", []),
42518
+ __metadata("design:returntype", void 0)
42519
+ ], ZdNumber.prototype, "changeMask", null);
42510
42520
  ZdNumber = __decorate([
42511
42521
  Component$1
42512
42522
  ], ZdNumber);
@@ -42481,6 +42481,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42481
42481
  const isChrome = navigator.userAgent.indexOf('Chrome') > -1;
42482
42482
  return isChrome ? 'one-time-code' : 'off';
42483
42483
  }
42484
+ changeMask() {
42485
+ var _a;
42486
+ (_a = this.instance.autoNumericObj) === null || _a === void 0 ? void 0 : _a.update(this.instance.mask);
42487
+ }
42484
42488
  };
42485
42489
  __decorate([
42486
42490
  PropWatch({ type: String, default: 'right' }),
@@ -42506,6 +42510,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42506
42510
  __metadata("design:paramtypes", [Boolean]),
42507
42511
  __metadata("design:returntype", void 0)
42508
42512
  ], ZdNumber.prototype, "readOnlyUpdater", null);
42513
+ __decorate([
42514
+ vuePropertyDecorator.Watch('instance.mask', { deep: true }),
42515
+ __metadata("design:type", Function),
42516
+ __metadata("design:paramtypes", []),
42517
+ __metadata("design:returntype", void 0)
42518
+ ], ZdNumber.prototype, "changeMask", null);
42509
42519
  ZdNumber = __decorate([
42510
42520
  vuePropertyDecorator.Component
42511
42521
  ], ZdNumber);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.120.1",
3
+ "version": "1.120.2",
4
4
  "description": "Zeedhi Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -51,5 +51,5 @@
51
51
  "@types/prismjs": "1.26.*",
52
52
  "@types/sortablejs": "1.15.*"
53
53
  },
54
- "gitHead": "686ac3856ffa4bedee65ba0e94686f69bacc4037"
54
+ "gitHead": "c6ca9d7ed3170761767446d939dd4de863d1071a"
55
55
  }
@@ -17,4 +17,5 @@ export default class ZdNumber extends ZdTextInput {
17
17
  numberInput(value: any): void;
18
18
  alterMask(event: KeyboardEvent): void;
19
19
  getInputAutocompleteValue(): "one-time-code" | "off";
20
+ changeMask(): void;
20
21
  }