@smartbit4all/ng-client 3.3.177 → 3.3.178

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.
@@ -5178,12 +5178,6 @@ class UiActionToolbarComponent {
5178
5178
  }
5179
5179
  this.setUp();
5180
5180
  }
5181
- ngAfterViewInit() {
5182
- this.changeDetector.detectChanges();
5183
- }
5184
- ngAfterViewChecked() {
5185
- this.changeDetector.detectChanges();
5186
- }
5187
5181
  ngOnChanges(changes) {
5188
5182
  if (changes['uiActionModels']) {
5189
5183
  let uiActionModels = changes['uiActionModels'].currentValue;
@@ -15457,19 +15451,6 @@ class SmartComponentApiClient {
15457
15451
  await toolbar.setUp();
15458
15452
  });
15459
15453
  this.changeDetector?.detectChanges();
15460
- // Promise.all(
15461
- // toolbars.map((toolbar) => {
15462
- // toolbar.uiActionModels = toolbarModels.get(toolbar.id!);
15463
- // return toolbar.setUp();
15464
- // })
15465
- // )
15466
- // .then(() => {
15467
- // // continue code here if needed
15468
- // this.changeDetector?.detectChanges();
15469
- // })
15470
- // .catch((error) => {
15471
- // console.error('An error occurred during toolbar setup:', error);
15472
- // });
15473
15454
  }
15474
15455
  }
15475
15456
  run() {