@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.
- package/esm2020/lib/smart-client/smart-component-api-client.mjs +3 -3
- package/esm2020/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +7 -5
- package/fesm2015/smartbit4all-ng-client.mjs +8 -6
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +8 -6
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.38.tgz +0 -0
- package/smartbit4all-ng-client-3.3.36.tgz +0 -0
|
@@ -8270,10 +8270,12 @@ class UiActionToolbarComponent {
|
|
|
8270
8270
|
this.setUp();
|
|
8271
8271
|
}
|
|
8272
8272
|
ngOnChanges(changes) {
|
|
8273
|
-
|
|
8274
|
-
|
|
8275
|
-
|
|
8276
|
-
|
|
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
|
-
|
|
14548
|
-
.
|
|
14549
|
+
ql.changes
|
|
14550
|
+
.pipe(takeUntil(this._destroy$))
|
|
14549
14551
|
.subscribe((list) => list.forEach((el) => handler(el)));
|
|
14550
14552
|
}
|
|
14551
14553
|
getWidgets() {
|