@linzjs/step-ag-grid 17.4.0 → 17.4.2
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/GridTheme.scss +1 -5
- package/dist/step-ag-grid.cjs.js +4 -1
- package/dist/step-ag-grid.cjs.js.map +1 -1
- package/dist/step-ag-grid.esm.js +4 -1
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/react-menu3/components/ControlledMenu.tsx +5 -1
- package/src/styles/GridTheme.scss +1 -5
package/dist/GridTheme.scss
CHANGED
|
@@ -50,11 +50,6 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
50
50
|
|
|
51
51
|
.ag-cell[col-id="selection"] {
|
|
52
52
|
display: flex;// Fix that when you click below checkbox it doesn't process a click
|
|
53
|
-
justify-content: end; // fix alignment of cell content when grabber is present
|
|
54
|
-
|
|
55
|
-
.ag-selection-checkbox {
|
|
56
|
-
margin-right:0;
|
|
57
|
-
}
|
|
58
53
|
}
|
|
59
54
|
|
|
60
55
|
// fix alignment of cell content when grabber is present
|
|
@@ -92,6 +87,7 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
92
87
|
|
|
93
88
|
.ag-header .ag-header-cell[aria-colindex="1"] {
|
|
94
89
|
padding-left: 17px;
|
|
90
|
+
padding-right: 15px;
|
|
95
91
|
}
|
|
96
92
|
|
|
97
93
|
.ag-cell[role="gridcell"] {
|
package/dist/step-ag-grid.cjs.js
CHANGED
|
@@ -1736,7 +1736,10 @@ const ControlledMenuFr = ({ "aria-label": ariaLabel, className, containerProps,
|
|
|
1736
1736
|
reposition,
|
|
1737
1737
|
viewScroll,
|
|
1738
1738
|
]);
|
|
1739
|
-
const isWithinMenu = React.useCallback((target) => hasParentClass("szh-menu--state-open", target)
|
|
1739
|
+
const isWithinMenu = React.useCallback((target) => hasParentClass("szh-menu--state-open", target) ||
|
|
1740
|
+
// This is temporary, it will be removed when the overlay click is fixed
|
|
1741
|
+
hasParentClass("LuiModalPrefab", target) ||
|
|
1742
|
+
hasParentClass("prefab-modal", target), []);
|
|
1740
1743
|
const handleScreenEventForSave = React.useCallback((ev) => {
|
|
1741
1744
|
if (!isWithinMenu(ev.target)) {
|
|
1742
1745
|
ev.preventDefault();
|