@smartbit4all/ng-client 3.3.84 → 3.3.86

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.
@@ -9839,7 +9839,7 @@ class SmartGridComponent {
9839
9839
  this.smartGrid.layoutDef = layoutDef;
9840
9840
  }
9841
9841
  }
9842
- if (gridModel?.paginator !== undefined) {
9842
+ if (gridModel?.paginator === true || gridModel?.paginator === false) {
9843
9843
  this.smartGrid.paginator = gridModel.paginator;
9844
9844
  this.service.paginator = this.smartGrid.paginator;
9845
9845
  }
@@ -14730,6 +14730,9 @@ class SmartComponentApiClient {
14730
14730
  if (ref instanceof SmartGridComponent) {
14731
14731
  ref.uuid = uuid;
14732
14732
  }
14733
+ else if (ref instanceof SmartFilterEditorService) {
14734
+ ref.config.uuid = uuid;
14735
+ }
14733
14736
  else if (!ref && !firstUuid) {
14734
14737
  console.error(`Provided reference for ${key} is undefined on uuid change.`);
14735
14738
  }