@firestitch/list 9.12.0 → 9.12.1
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/bundles/firestitch-list.umd.js +2 -1
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/bundles/firestitch-list.umd.min.js +1 -1
- package/bundles/firestitch-list.umd.min.js.map +1 -1
- package/esm2015/app/models/row-action.model.js +3 -2
- package/esm5/app/models/row-action.model.js +3 -2
- package/fesm2015/firestitch-list.js +2 -1
- package/fesm2015/firestitch-list.js.map +1 -1
- package/fesm5/firestitch-list.js +2 -1
- package/fesm5/firestitch-list.js.map +1 -1
- package/package.json +1 -1
|
@@ -578,7 +578,8 @@
|
|
|
578
578
|
this.rowActions.forEach(function (action) {
|
|
579
579
|
action.checkShowStatus(row, index);
|
|
580
580
|
});
|
|
581
|
-
|
|
581
|
+
var groupVisible = !this.show || this.show(row, index);
|
|
582
|
+
this.isShown = groupVisible && this.rowActions.some(function (action) { return action.isShown; });
|
|
582
583
|
}
|
|
583
584
|
else if (this.show) {
|
|
584
585
|
this.isShown = this.show(row, index);
|