@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.
- package/dist/catalyst/catalyst.esm.js +1 -1
- package/dist/catalyst/{p-e65bb6a0.entry.js → p-a3430759.entry.js} +2 -2
- package/dist/catalyst/{p-e65bb6a0.entry.js.map → p-a3430759.entry.js.map} +1 -1
- package/dist/cjs/cat-alert_30.cjs.entry.js +2 -1
- package/dist/cjs/cat-alert_30.cjs.entry.js.map +1 -1
- package/dist/collection/components/cat-input/cat-input.js +2 -1
- package/dist/collection/components/cat-input/cat-input.js.map +1 -1
- package/dist/components/cat-input2.js +2 -1
- package/dist/components/cat-input2.js.map +1 -1
- package/dist/esm/cat-alert_30.entry.js +2 -1
- package/dist/esm/cat-alert_30.entry.js.map +1 -1
- package/package.json +2 -2
|
@@ -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();
|