tuain-ng-forms-lib 12.0.17 → 12.0.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.
@@ -425,6 +425,14 @@
425
425
  this.field._fieldValue = this.value;
426
426
  this.onChangeContent();
427
427
  };
428
+ FieldComponent.prototype.inputChanged = function () {
429
+ this.field._fieldValue = this.value;
430
+ this.onInputChange();
431
+ };
432
+ FieldComponent.prototype.inputTyped = function () {
433
+ this.field._fieldValue = this.value;
434
+ this.onInputChange();
435
+ };
428
436
  FieldComponent.prototype.updateValue = function () {
429
437
  this.value = this.field._fieldValue;
430
438
  };