@smartbit4all/ng-client 3.3.36 → 3.3.38

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.
@@ -8270,10 +8270,12 @@ class UiActionToolbarComponent {
8270
8270
  this.setUp();
8271
8271
  }
8272
8272
  ngOnChanges(changes) {
8273
- let uiActionModels = changes['uiActionModels'].currentValue;
8274
- if (uiActionModels) {
8275
- this.uiActionModels = uiActionModels;
8276
- this.setUp();
8273
+ if (changes['uiActionModels']) {
8274
+ let uiActionModels = changes['uiActionModels'].currentValue;
8275
+ if (uiActionModels) {
8276
+ this.uiActionModels = uiActionModels;
8277
+ this.setUp();
8278
+ }
8277
8279
  }
8278
8280
  }
8279
8281
  ngOnDestroy() {
@@ -14544,8 +14546,8 @@ class SmartComponentApiClient {
14544
14546
  }
14545
14547
  handleQueryList(ql, handler) {
14546
14548
  ql.forEach((el) => handler(el));
14547
- this.getSmartComponentLayoutsQL()
14548
- .changes.pipe(takeUntil(this._destroy$))
14549
+ ql.changes
14550
+ .pipe(takeUntil(this._destroy$))
14549
14551
  .subscribe((list) => list.forEach((el) => handler(el)));
14550
14552
  }
14551
14553
  getWidgets() {