@haiilo/catalyst 12.2.0 → 12.3.0

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.
@@ -8119,12 +8119,13 @@ const CatInput = class {
8119
8119
  let formattedValue = this.input.value;
8120
8120
  if (this.timeMaskOptions) {
8121
8121
  formattedValue = w(this.input.value, this.timeMaskOptions);
8122
+ this.input.value = formattedValue;
8122
8123
  }
8123
8124
  if (this.dateMaskOptions) {
8124
8125
  formattedValue = y(this.input.value, this.dateMaskOptions);
8126
+ this.input.value = formattedValue;
8125
8127
  }
8126
8128
  this.value = formattedValue;
8127
- this.input.value = formattedValue;
8128
8129
  this.internals.setFormValue(this.input.value);
8129
8130
  this.catChange.emit(this.value);
8130
8131
  this.showErrorsIfTimeout();