@localstack/appinspector-ui 1.0.148 → 1.0.150
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17934,7 +17934,7 @@ var SpansDataGridRow = memo8(
|
|
|
17934
17934
|
sx: {
|
|
17935
17935
|
"alignItems": "center",
|
|
17936
17936
|
"display": "flex",
|
|
17937
|
-
"
|
|
17937
|
+
"flexDirection": "row",
|
|
17938
17938
|
"height": "100%",
|
|
17939
17939
|
"tr:hover &": {
|
|
17940
17940
|
backgroundColor: (theme2) => theme2.palette.action.hover
|
|
@@ -31820,7 +31820,7 @@ var ServiceNode = memo11(({ data, selected }) => {
|
|
|
31820
31820
|
};
|
|
31821
31821
|
const handleMouseLeave = (event) => {
|
|
31822
31822
|
const related = event.relatedTarget;
|
|
31823
|
-
if (related && nodeRef.current?.contains(related)) return;
|
|
31823
|
+
if (related instanceof Node && nodeRef.current?.contains(related)) return;
|
|
31824
31824
|
setIsHovered(false);
|
|
31825
31825
|
const xyNode = nodeRef.current?.closest(".react-flow__node");
|
|
31826
31826
|
if (xyNode) xyNode.style.zIndex = "";
|