@ni/spright-components 4.1.4 → 4.1.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.
@@ -66524,6 +66524,10 @@ focus outline in that case.
66524
66524
  }
66525
66525
  return null;
66526
66526
  }
66527
+ disconnectedCallback() {
66528
+ super.disconnectedCallback();
66529
+ this.removeColumnObservers();
66530
+ }
66527
66531
  /** @internal */
66528
66532
  onSelectionCheckboxChange(event) {
66529
66533
  if (this.ignoreSelectionChangeEvents) {
@@ -69321,6 +69325,7 @@ focus outline in that case.
69321
69325
  for (const visibleRow of this.table.rowElements) {
69322
69326
  const rowNotifier = Observable.getNotifier(visibleRow);
69323
69327
  rowNotifier.subscribe(this, 'resolvedRowIndex');
69328
+ this.visibleRowNotifiers.push(rowNotifier);
69324
69329
  if (visibleRow.resolvedRowIndex === this.rowIndex) {
69325
69330
  focusRowAndCell = true;
69326
69331
  }