@localstack/appinspector-ui 1.0.152 → 1.0.153
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 +7 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -32291,25 +32291,25 @@ var Main = styled("main", { shouldForwardProp: (property) => property !== "open"
|
|
|
32291
32291
|
})
|
|
32292
32292
|
}
|
|
32293
32293
|
}));
|
|
32294
|
-
var StyledDrawer = styled(Drawer)(
|
|
32294
|
+
var StyledDrawer = styled(Drawer)({
|
|
32295
32295
|
"& .MuiDrawer-paper": {
|
|
32296
32296
|
bottom: 0,
|
|
32297
32297
|
boxSizing: "border-box",
|
|
32298
|
-
height: `calc(100% - ${headerHeight.toString()}px)`,
|
|
32299
32298
|
overflowY: "auto",
|
|
32300
|
-
|
|
32301
|
-
|
|
32299
|
+
position: "absolute",
|
|
32300
|
+
top: 0,
|
|
32301
|
+
width: "100%"
|
|
32302
32302
|
},
|
|
32303
32303
|
"flexShrink": 0,
|
|
32304
|
+
"overflow": "hidden",
|
|
32304
32305
|
"position": "relative",
|
|
32305
32306
|
"width": DRAWER_WIDTH
|
|
32306
|
-
})
|
|
32307
|
+
});
|
|
32307
32308
|
var TraceGraphView = ({
|
|
32308
32309
|
fetchError,
|
|
32309
32310
|
fetchSpans,
|
|
32310
32311
|
handleClose,
|
|
32311
32312
|
handleEventSelect,
|
|
32312
|
-
headerHeight,
|
|
32313
32313
|
loading,
|
|
32314
32314
|
navigateToSpansList,
|
|
32315
32315
|
open,
|
|
@@ -32375,7 +32375,7 @@ var TraceGraphView = ({
|
|
|
32375
32375
|
) })
|
|
32376
32376
|
}
|
|
32377
32377
|
) }),
|
|
32378
|
-
/* @__PURE__ */ jsx145(StyledDrawer, { anchor: "right",
|
|
32378
|
+
/* @__PURE__ */ jsx145(StyledDrawer, { anchor: "right", open, variant: "persistent", children: /* @__PURE__ */ jsx145(EventDetails, { onClose: handleClose, selectedEvent }) })
|
|
32379
32379
|
]
|
|
32380
32380
|
}
|
|
32381
32381
|
)
|
|
@@ -32426,7 +32426,6 @@ async function fetchConnectedTracesWaterfall(api, traceIds, allSpans = /* @__PUR
|
|
|
32426
32426
|
}
|
|
32427
32427
|
var TraceGraphPage = ({ onClose, spanId, traceId }) => {
|
|
32428
32428
|
const api = useAppInspectorApi();
|
|
32429
|
-
const { headerHeight } = useAppInspector();
|
|
32430
32429
|
const [spans, setSpans] = useState19();
|
|
32431
32430
|
const [loading, setLoading] = useState19(false);
|
|
32432
32431
|
const [fetchError, setFetchError] = useState19();
|
|
@@ -32472,7 +32471,6 @@ var TraceGraphPage = ({ onClose, spanId, traceId }) => {
|
|
|
32472
32471
|
setOpen(false);
|
|
32473
32472
|
},
|
|
32474
32473
|
handleEventSelect,
|
|
32475
|
-
headerHeight,
|
|
32476
32474
|
loading,
|
|
32477
32475
|
navigateToSpansList,
|
|
32478
32476
|
open,
|