@smartbit4all/ng-client 3.3.33 → 3.3.34
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 +6 -1
- package/fesm2015/smartbit4all-ng-client.mjs +6 -1
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +5 -0
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.34.tgz +0 -0
- package/smartbit4all-ng-client-3.3.33.tgz +0 -0
|
@@ -14619,6 +14619,11 @@ class SmartComponentApiClient {
|
|
|
14619
14619
|
}
|
|
14620
14620
|
getAllSmartUiActionToolbars() {
|
|
14621
14621
|
let toolbars = this.getSmartUiActionToolbarsQL()?.toArray() ?? [];
|
|
14622
|
+
this.getAllSmartGridComponents()?.forEach((grid) => {
|
|
14623
|
+
if (grid.toolbar) {
|
|
14624
|
+
toolbars.push(grid.toolbar);
|
|
14625
|
+
}
|
|
14626
|
+
});
|
|
14622
14627
|
return toolbars;
|
|
14623
14628
|
}
|
|
14624
14629
|
initData() {
|