tuain-ng-forms-lib 12.0.16 → 12.0.20

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.
@@ -421,8 +421,20 @@
421
421
  };
422
422
  FieldComponent.prototype.start = function () { };
423
423
  FieldComponent.prototype.focus = function () { };
424
- FieldComponent.prototype.updateValue = function () { };
425
- FieldComponent.prototype.updateObject = function () { };
424
+ FieldComponent.prototype.updateObject = function () {
425
+ this.field._fieldValue = this.value;
426
+ };
427
+ FieldComponent.prototype.inputChanged = function () {
428
+ this.field._fieldValue = this.value;
429
+ this.onChangeContent();
430
+ };
431
+ FieldComponent.prototype.inputTyped = function () {
432
+ this.field._fieldValue = this.value;
433
+ this.onInputChange();
434
+ };
435
+ FieldComponent.prototype.updateValue = function () {
436
+ this.value = this.field._fieldValue;
437
+ };
426
438
  FieldComponent.prototype.onInputChange = function () {
427
439
  var _this = this;
428
440
  setTimeout(function () { return _this.field.notifyEditionPartial(); }, 50);