@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.
@@ -385,7 +385,8 @@ var RowAction = /** @class */ (function (_super) {
385
385
  this.rowActions.forEach(function (action) {
386
386
  action.checkShowStatus(row, index);
387
387
  });
388
- this.isShown = this.rowActions.some(function (action) { return action.isShown; });
388
+ var groupVisible = !this.show || this.show(row, index);
389
+ this.isShown = groupVisible && this.rowActions.some(function (action) { return action.isShown; });
389
390
  }
390
391
  else if (this.show) {
391
392
  this.isShown = this.show(row, index);