@ni/nimble-components 32.2.4 → 32.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.
- package/dist/all-components-bundle.js +5 -0
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +3 -2
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/table/components/row/index.d.ts +1 -0
- package/dist/esm/table/components/row/index.js +4 -0
- package/dist/esm/table/components/row/index.js.map +1 -1
- package/dist/esm/table/models/keyboard-navigation-manager.js +1 -0
- package/dist/esm/table/models/keyboard-navigation-manager.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
}
|