@ni/nimble-components 34.6.3 → 34.6.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 +1 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/table/components/row/index.js +5 -0
- package/dist/esm/table/components/row/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -70080,6 +70080,11 @@ focus outline in that case.
|
|
|
70080
70080
|
/** @internal */
|
|
70081
70081
|
onCellActionMenuToggle(event, column) {
|
|
70082
70082
|
this.menuOpen = event.detail.newState;
|
|
70083
|
+
// Workaround for Firefox issue when action menus opened on different rows
|
|
70084
|
+
// See: https://github.com/ni/nimble/issues/2744
|
|
70085
|
+
if (!event.detail.newState) {
|
|
70086
|
+
this.currentActionMenuColumn = undefined;
|
|
70087
|
+
}
|
|
70083
70088
|
this.emitActionMenuToggleEvent('row-action-menu-toggle', event.detail, column);
|
|
70084
70089
|
}
|
|
70085
70090
|
/** @internal */
|