@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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "5.0.0",
5
+ "version": "5.0.1",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -264,7 +264,13 @@ export const ControlledMenuFr = (
264
264
  safeCall(onClose, {
265
265
  value: event.value,
266
266
  key: event.key,
267
- reason: CloseReason.CLICK,
267
+ shiftKey: event.shiftKey,
268
+ reason:
269
+ event.key === "Tab"
270
+ ? event.shiftKey
271
+ ? CloseReason.TAB_BACKWARD
272
+ : CloseReason.TAB_FORWARD
273
+ : CloseReason.CLICK,
268
274
  });
269
275
  }
270
276
  },