@tetacom/ng-components 1.0.143 → 1.0.144

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.
@@ -6922,6 +6922,17 @@ class PropertyGridComponent {
6922
6922
  this._alive = true;
6923
6923
  // console.log(this.formGroup)
6924
6924
  }
6925
+ set item(item) {
6926
+ this._item = item;
6927
+ if (this.formGroup) {
6928
+ this.formGroup.patchValue(item, {
6929
+ emitEvent: false
6930
+ });
6931
+ }
6932
+ }
6933
+ get item() {
6934
+ return this._item;
6935
+ }
6925
6936
  get formGroup() {
6926
6937
  if (this._formGroup instanceof FormGroup) {
6927
6938
  return this._formGroup;