@smartbit4all/ng-client 3.3.43 → 3.3.44
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-grid/components/smart-grid-card/smart-grid-card.component.mjs +5 -2
- package/fesm2015/smartbit4all-ng-client.mjs +4 -1
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +4 -1
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-grid/components/smart-grid-card/smart-grid-card.component.d.ts +1 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.44.tgz +0 -0
- package/smartbit4all-ng-client-3.3.43.tgz +0 -0
|
@@ -8553,6 +8553,9 @@ class SmartGridCardComponent {
|
|
|
8553
8553
|
constructor(cfService) {
|
|
8554
8554
|
this.cfService = cfService;
|
|
8555
8555
|
this.uiActionModels = [];
|
|
8556
|
+
this.onSelectCallback = async (rowId) => {
|
|
8557
|
+
await this.onSelect(rowId);
|
|
8558
|
+
};
|
|
8556
8559
|
}
|
|
8557
8560
|
ngAfterViewInit() {
|
|
8558
8561
|
this.constructUiActionModels();
|
|
@@ -8583,7 +8586,7 @@ class SmartGridCardComponent {
|
|
|
8583
8586
|
['item', this.item],
|
|
8584
8587
|
['uiActionModels', this.uiActionModels],
|
|
8585
8588
|
['gridIdentifier', this.smartGrid.gridIdentifier],
|
|
8586
|
-
['onSelect',
|
|
8589
|
+
['onSelect', this.onSelectCallback],
|
|
8587
8590
|
]));
|
|
8588
8591
|
}
|
|
8589
8592
|
}
|