@linzjs/step-ag-grid 5.0.0 → 5.0.1

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/index.js CHANGED
@@ -1517,7 +1517,12 @@ var ControlledMenuFr = function (_a, externalRef) {
1517
1517
  safeCall(onClose, {
1518
1518
  value: event.value,
1519
1519
  key: event.key,
1520
- reason: CloseReason.CLICK
1520
+ shiftKey: event.shiftKey,
1521
+ reason: event.key === "Tab"
1522
+ ? event.shiftKey
1523
+ ? CloseReason.TAB_BACKWARD
1524
+ : CloseReason.TAB_FORWARD
1525
+ : CloseReason.CLICK
1521
1526
  });
1522
1527
  }
1523
1528
  },