@tetacom/ng-components 1.5.2 → 1.5.3

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.
@@ -7716,6 +7716,12 @@ class CellComponentBase {
7716
7716
  if (this.index === cellValue.row && this.column.name === cellValue.column) {
7717
7717
  this.row.data[this.column.name] = cellValue.value;
7718
7718
  this.setupControl();
7719
+ for (const controlsKey in this.formGroup.controls) {
7720
+ this.formGroup.controls[controlsKey].updateValueAndValidity({
7721
+ emitEvent: false,
7722
+ onlySelf: true,
7723
+ });
7724
+ }
7719
7725
  this.formGroup.updateValueAndValidity();
7720
7726
  this.row.valid = this.formGroup.valid;
7721
7727
  this.cdr.detectChanges();
@@ -7763,7 +7769,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
7763
7769
  type: Component,
7764
7770
  args: [{
7765
7771
  template: '',
7766
- standalone: false
7772
+ standalone: false,
7767
7773
  }]
7768
7774
  }], ctorParameters: () => [{ type: TableService }, { type: i0.ChangeDetectorRef }], propDecorators: { cellClass: [{
7769
7775
  type: HostBinding,