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