tuain-ng-forms-lib 12.0.16 → 12.0.17

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,13 @@
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
+ this.onChangeContent();
427
+ };
428
+ FieldComponent.prototype.updateValue = function () {
429
+ this.value = this.field._fieldValue;
430
+ };
426
431
  FieldComponent.prototype.onInputChange = function () {
427
432
  var _this = this;
428
433
  setTimeout(function () { return _this.field.notifyEditionPartial(); }, 50);