@one-paragon/angular-utilities 2.2.3 → 2.2.5

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.
@@ -4346,7 +4346,7 @@ class GenericTableComponent {
4346
4346
  const trackBy = this.$trackBy();
4347
4347
  const trackByFunc = trackBy ? (s) => selectableData.every(d => d[trackBy] !== s[trackBy]) : s => !selectableData.includes(s);
4348
4348
  const removed = selected.filter(trackByFunc);
4349
- this.$selection().deselect(removed);
4349
+ this.$selection().deselect(...removed);
4350
4350
  });
4351
4351
  });
4352
4352
  this.$tableWidth = linkedSignal({