@meridianlabs/log-viewer 0.3.235 → 0.3.237
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/lib/{AsciinemaPlayerImpl-6ZAkt1g5.js → AsciinemaPlayerImpl-CskuZpHl.js} +5 -5
- package/lib/{AsciinemaPlayerImpl-6ZAkt1g5.js.map → AsciinemaPlayerImpl-CskuZpHl.js.map} +1 -1
- package/lib/index.js +7792 -9505
- package/lib/index.js.map +1 -1
- package/lib/src/app/App.d.ts.map +1 -1
- package/lib/src/app/log-view/LogViewContainer.d.ts.map +1 -1
- package/lib/src/app/log-view/tabs/InfoTab.d.ts +5 -7
- package/lib/src/app/log-view/tabs/InfoTab.d.ts.map +1 -1
- package/lib/src/app/log-view/tabs/ModelsTab.d.ts +5 -7
- package/lib/src/app/log-view/tabs/ModelsTab.d.ts.map +1 -1
- package/lib/src/app/log-view/tabs/TaskTab.d.ts +5 -7
- package/lib/src/app/log-view/tabs/TaskTab.d.ts.map +1 -1
- package/lib/src/app/navbar/ApplicationNavbar.d.ts.map +1 -1
- package/lib/src/app/samples/SampleDisplay.d.ts.map +1 -1
- package/lib/src/app/samples/list/samplesView.converters.d.ts +7 -7
- package/lib/src/app/samples/list/samplesView.converters.d.ts.map +1 -1
- package/lib/src/app/samples/list/samplesView.d.ts +3 -5
- package/lib/src/app/samples/list/samplesView.d.ts.map +1 -1
- package/lib/src/app/samples/list/useSamplesView.d.ts +1 -1
- package/lib/src/app/shared/samples-grid/colorScale.d.ts +1 -1
- package/lib/src/app/types.d.ts +3 -3
- package/lib/src/app/types.d.ts.map +1 -1
- package/lib/src/state/appSlice.d.ts +4 -3
- package/lib/src/state/appSlice.d.ts.map +1 -1
- package/lib/src/state/hooks.d.ts +10 -8
- package/lib/src/state/hooks.d.ts.map +1 -1
- package/lib/src/state/logsSlice.d.ts +1 -1
- package/lib/src/state/userSettings.d.ts +22 -0
- package/lib/src/state/userSettings.d.ts.map +1 -0
- package/lib/src/theme/bootstrap.d.ts +2 -0
- package/lib/src/theme/bootstrap.d.ts.map +1 -0
- package/lib/src/theme/constants.d.ts +2 -0
- package/lib/src/theme/constants.d.ts.map +1 -0
- package/lib/styles/index.css +583 -149
- package/package.json +16 -17
|
@@ -4837,12 +4837,12 @@ function getVectorSymbolDef(codepoint) {
|
|
|
4837
4837
|
const halfVerticalGap = verticalGap / 2;
|
|
4838
4838
|
const toViewBoxY = (offset) => .5 + offset * CELL_RATIO;
|
|
4839
4839
|
const leftX1 = .5 - halfHorizontalGap;
|
|
4840
|
-
const rightX0 = .
|
|
4840
|
+
const rightX0 = .575;
|
|
4841
4841
|
const rightX1 = 1.02;
|
|
4842
|
-
const topY0 = toViewBoxY(
|
|
4843
|
-
const topY1 = toViewBoxY(
|
|
4842
|
+
const topY0 = toViewBoxY(-.1 - lineHeight);
|
|
4843
|
+
const topY1 = toViewBoxY(-.1);
|
|
4844
4844
|
const bottomY0 = toViewBoxY(halfVerticalGap);
|
|
4845
|
-
const bottomY1 = toViewBoxY(
|
|
4845
|
+
const bottomY1 = toViewBoxY(.27);
|
|
4846
4846
|
const rect = (x0, x1, y0, y1) => `M${x0},${y0} L${x1},${y0} L${x1},${y1} L${x0},${y1} Z`;
|
|
4847
4847
|
return `<path d="${rect(0, leftX1, topY0, topY1)} ${rect(rightX0, rightX1, topY0, topY1)} ${rect(0, leftX1, bottomY0, bottomY1)} ${rect(rightX0, rightX1, bottomY0, bottomY1)}" fill="currentColor"/>`;
|
|
4848
4848
|
}
|
|
@@ -5851,4 +5851,4 @@ var AsciinemaPlayerImpl = ({ id, rows, cols, inputUrl, outputUrl, timingUrl, fit
|
|
|
5851
5851
|
//#endregion
|
|
5852
5852
|
export { AsciinemaPlayerImpl as default };
|
|
5853
5853
|
|
|
5854
|
-
//# sourceMappingURL=AsciinemaPlayerImpl-
|
|
5854
|
+
//# sourceMappingURL=AsciinemaPlayerImpl-CskuZpHl.js.map
|