@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.
@@ -578,7 +578,8 @@
578
578
  this.rowActions.forEach(function (action) {
579
579
  action.checkShowStatus(row, index);
580
580
  });
581
- this.isShown = this.rowActions.some(function (action) { return action.isShown; });
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);