@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.cjs
CHANGED
|
@@ -32275,25 +32275,25 @@ var Main = (0, import_styles.styled)("main", { shouldForwardProp: (property) =>
|
|
|
32275
32275
|
})
|
|
32276
32276
|
}
|
|
32277
32277
|
}));
|
|
32278
|
-
var StyledDrawer = (0, import_styles.styled)(import_material23.Drawer)(
|
|
32278
|
+
var StyledDrawer = (0, import_styles.styled)(import_material23.Drawer)({
|
|
32279
32279
|
"& .MuiDrawer-paper": {
|
|
32280
32280
|
bottom: 0,
|
|
32281
32281
|
boxSizing: "border-box",
|
|
32282
|
-
height: `calc(100% - ${headerHeight.toString()}px)`,
|
|
32283
32282
|
overflowY: "auto",
|
|
32284
|
-
|
|
32285
|
-
|
|
32283
|
+
position: "absolute",
|
|
32284
|
+
top: 0,
|
|
32285
|
+
width: "100%"
|
|
32286
32286
|
},
|
|
32287
32287
|
"flexShrink": 0,
|
|
32288
|
+
"overflow": "hidden",
|
|
32288
32289
|
"position": "relative",
|
|
32289
32290
|
"width": DRAWER_WIDTH
|
|
32290
|
-
})
|
|
32291
|
+
});
|
|
32291
32292
|
var TraceGraphView = ({
|
|
32292
32293
|
fetchError,
|
|
32293
32294
|
fetchSpans,
|
|
32294
32295
|
handleClose,
|
|
32295
32296
|
handleEventSelect,
|
|
32296
|
-
headerHeight,
|
|
32297
32297
|
loading,
|
|
32298
32298
|
navigateToSpansList,
|
|
32299
32299
|
open,
|
|
@@ -32359,7 +32359,7 @@ var TraceGraphView = ({
|
|
|
32359
32359
|
) })
|
|
32360
32360
|
}
|
|
32361
32361
|
) }),
|
|
32362
|
-
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)(StyledDrawer, { anchor: "right",
|
|
32362
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)(StyledDrawer, { anchor: "right", open, variant: "persistent", children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(EventDetails, { onClose: handleClose, selectedEvent }) })
|
|
32363
32363
|
]
|
|
32364
32364
|
}
|
|
32365
32365
|
)
|
|
@@ -32410,7 +32410,6 @@ async function fetchConnectedTracesWaterfall(api, traceIds, allSpans = /* @__PUR
|
|
|
32410
32410
|
}
|
|
32411
32411
|
var TraceGraphPage = ({ onClose, spanId, traceId }) => {
|
|
32412
32412
|
const api = useAppInspectorApi();
|
|
32413
|
-
const { headerHeight } = useAppInspector();
|
|
32414
32413
|
const [spans, setSpans] = (0, import_react64.useState)();
|
|
32415
32414
|
const [loading, setLoading] = (0, import_react64.useState)(false);
|
|
32416
32415
|
const [fetchError, setFetchError] = (0, import_react64.useState)();
|
|
@@ -32456,7 +32455,6 @@ var TraceGraphPage = ({ onClose, spanId, traceId }) => {
|
|
|
32456
32455
|
setOpen(false);
|
|
32457
32456
|
},
|
|
32458
32457
|
handleEventSelect,
|
|
32459
|
-
headerHeight,
|
|
32460
32458
|
loading,
|
|
32461
32459
|
navigateToSpansList,
|
|
32462
32460
|
open,
|