@linzjs/step-ag-grid 17.4.0 → 17.4.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": "17.4.0",
5
+ "version": "17.4.1",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -67,7 +67,11 @@ export const ControlledMenuFr = (
67
67
  );
68
68
 
69
69
  const isWithinMenu = useCallback(
70
- (target: EventTarget | null) => hasParentClass("szh-menu--state-open", target as Node),
70
+ (target: EventTarget | null) =>
71
+ hasParentClass("szh-menu--state-open", target as Node) ||
72
+ // This is temporary, it will be removed when the overlay click is fixed
73
+ hasParentClass("LuiModalPrefab", target as Node) ||
74
+ hasParentClass("prefab-modal", target as Node),
71
75
  [],
72
76
  );
73
77