mn-angular-lib 1.0.64 → 1.0.65

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.
@@ -3992,6 +3992,9 @@ class MnTable {
3992
3992
  }
3993
3993
  // ── Row interaction ──
3994
3994
  onRowClick(row) {
3995
+ if (this.hasSelection) {
3996
+ this.toggleRow(row);
3997
+ }
3995
3998
  this.dataSource.onRowClick?.(row);
3996
3999
  this.rowClick.emit(row);
3997
4000
  }