@kylincloud/flamegraph 0.35.6
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/CHANGELOG.md +1211 -0
- package/LICENSE +202 -0
- package/README.md +251 -0
- package/dist/FlameGraph/FlameGraphComponent/CheckIcon.d.ts +2 -0
- package/dist/FlameGraph/FlameGraphComponent/CheckIcon.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/ContextMenu.d.ts +17 -0
- package/dist/FlameGraph/FlameGraphComponent/ContextMenu.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/ContextMenuHighlight.d.ts +14 -0
- package/dist/FlameGraph/FlameGraphComponent/ContextMenuHighlight.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/DiffLegend.d.ts +9 -0
- package/dist/FlameGraph/FlameGraphComponent/DiffLegend.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/DiffLegendPaletteDropdown.d.ts +8 -0
- package/dist/FlameGraph/FlameGraphComponent/DiffLegendPaletteDropdown.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/Flamegraph.d.ts +96 -0
- package/dist/FlameGraph/FlameGraphComponent/Flamegraph.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/Flamegraph_render.d.ts +27 -0
- package/dist/FlameGraph/FlameGraphComponent/Flamegraph_render.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/GraphVizPane.d.ts +7 -0
- package/dist/FlameGraph/FlameGraphComponent/GraphVizPane.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/Header.d.ts +12 -0
- package/dist/FlameGraph/FlameGraphComponent/Header.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/Highlight.d.ts +18 -0
- package/dist/FlameGraph/FlameGraphComponent/Highlight.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/LogoLink.d.ts +2 -0
- package/dist/FlameGraph/FlameGraphComponent/LogoLink.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/color.d.ts +20 -0
- package/dist/FlameGraph/FlameGraphComponent/color.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/colorPalette.d.ts +11 -0
- package/dist/FlameGraph/FlameGraphComponent/colorPalette.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/constants.d.ts +6 -0
- package/dist/FlameGraph/FlameGraphComponent/constants.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/index.d.ts +37 -0
- package/dist/FlameGraph/FlameGraphComponent/index.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/murmur3.d.ts +2 -0
- package/dist/FlameGraph/FlameGraphComponent/murmur3.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/testData.d.ts +53 -0
- package/dist/FlameGraph/FlameGraphComponent/testData.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/utils.d.ts +6 -0
- package/dist/FlameGraph/FlameGraphComponent/utils.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphComponent/viewTypes.d.ts +2 -0
- package/dist/FlameGraph/FlameGraphComponent/viewTypes.d.ts.map +1 -0
- package/dist/FlameGraph/FlameGraphRenderer.d.ts +86 -0
- package/dist/FlameGraph/FlameGraphRenderer.d.ts.map +1 -0
- package/dist/FlameGraph/decode.d.ts +27 -0
- package/dist/FlameGraph/decode.d.ts.map +1 -0
- package/dist/FlameGraph/normalize.d.ts +6 -0
- package/dist/FlameGraph/normalize.d.ts.map +1 -0
- package/dist/FlameGraph/uniqueness.d.ts +3 -0
- package/dist/FlameGraph/uniqueness.d.ts.map +1 -0
- package/dist/FlamegraphRenderer.d.ts +19 -0
- package/dist/FlamegraphRenderer.d.ts.map +1 -0
- package/dist/Icons.d.ts +9 -0
- package/dist/Icons.d.ts.map +1 -0
- package/dist/ProfilerTable.d.ts +21 -0
- package/dist/ProfilerTable.d.ts.map +1 -0
- package/dist/SharedQueryInput.d.ts +10 -0
- package/dist/SharedQueryInput.d.ts.map +1 -0
- package/dist/Toolbar.d.ts +31 -0
- package/dist/Toolbar.d.ts.map +1 -0
- package/dist/Tooltip/FlamegraphTooltip.d.ts +59 -0
- package/dist/Tooltip/FlamegraphTooltip.d.ts.map +1 -0
- package/dist/Tooltip/LeftClickIcon.d.ts +2 -0
- package/dist/Tooltip/LeftClickIcon.d.ts.map +1 -0
- package/dist/Tooltip/RightClickIcon.d.ts +2 -0
- package/dist/Tooltip/RightClickIcon.d.ts.map +1 -0
- package/dist/Tooltip/TableTooltip.d.ts +12 -0
- package/dist/Tooltip/TableTooltip.d.ts.map +1 -0
- package/dist/Tooltip/Tooltip.d.ts +29 -0
- package/dist/Tooltip/Tooltip.d.ts.map +1 -0
- package/dist/convert/convertJaegerTraceToProfile.d.ts +3 -0
- package/dist/convert/convertJaegerTraceToProfile.d.ts.map +1 -0
- package/dist/convert/diffTwoProfiles.d.ts +3 -0
- package/dist/convert/diffTwoProfiles.d.ts.map +1 -0
- package/dist/convert/flamebearersToTree.d.ts +11 -0
- package/dist/convert/flamebearersToTree.d.ts.map +1 -0
- package/dist/convert/sandwichViewProfiles.d.ts +14 -0
- package/dist/convert/sandwichViewProfiles.d.ts.map +1 -0
- package/dist/convert/subtract.d.ts +3 -0
- package/dist/convert/subtract.d.ts.map +1 -0
- package/dist/convert/testData.d.ts +50 -0
- package/dist/convert/testData.d.ts.map +1 -0
- package/dist/convert/toGraphviz.d.ts +3 -0
- package/dist/convert/toGraphviz.d.ts.map +1 -0
- package/dist/fitMode/fitMode.d.ts +42 -0
- package/dist/fitMode/fitMode.d.ts.map +1 -0
- package/dist/format/format.d.ts +42 -0
- package/dist/format/format.d.ts.map +1 -0
- package/dist/i18n.d.ts +55 -0
- package/dist/i18n.d.ts.map +1 -0
- package/dist/index.cjs.css +792 -0
- package/dist/index.cjs.js +5087 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.css +792 -0
- package/dist/index.esm.js +5079 -0
- package/dist/index.node.d.ts +9 -0
- package/dist/index.node.d.ts.map +1 -0
- package/dist/logo-v3-small-T5VXIMRR.svg +32 -0
- package/dist/models/decode.d.ts +3 -0
- package/dist/models/decode.d.ts.map +1 -0
- package/dist/models/flamebearer.d.ts +63 -0
- package/dist/models/flamebearer.d.ts.map +1 -0
- package/dist/models/groups.d.ts +37 -0
- package/dist/models/groups.d.ts.map +1 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.d.ts.map +1 -0
- package/dist/models/profile.d.ts +152 -0
- package/dist/models/profile.d.ts.map +1 -0
- package/dist/models/spyName.d.ts +8 -0
- package/dist/models/spyName.d.ts.map +1 -0
- package/dist/models/trace.d.ts +357 -0
- package/dist/models/trace.d.ts.map +1 -0
- package/dist/models/units.d.ts +6 -0
- package/dist/models/units.d.ts.map +1 -0
- package/dist/search.d.ts +2 -0
- package/dist/search.d.ts.map +1 -0
- package/dist/shims/Box.d.ts +38 -0
- package/dist/shims/Box.d.ts.map +1 -0
- package/dist/shims/Button.d.ts +26 -0
- package/dist/shims/Button.d.ts.map +1 -0
- package/dist/shims/Dropdown.d.ts +30 -0
- package/dist/shims/Dropdown.d.ts.map +1 -0
- package/dist/shims/Input.d.ts +19 -0
- package/dist/shims/Input.d.ts.map +1 -0
- package/dist/shims/LoadingSpinner.d.ts +7 -0
- package/dist/shims/LoadingSpinner.d.ts.map +1 -0
- package/dist/shims/Menu.d.ts +4 -0
- package/dist/shims/Menu.d.ts.map +1 -0
- package/dist/shims/NoData.d.ts +2 -0
- package/dist/shims/NoData.d.ts.map +1 -0
- package/dist/shims/Table.d.ts +52 -0
- package/dist/shims/Table.d.ts.map +1 -0
- package/dist/shims/Tooltip.d.ts +9 -0
- package/dist/shims/Tooltip.d.ts.map +1 -0
- package/package.json +84 -0
- package/src/FlameGraph/FlameGraphComponent/CheckIcon.tsx +27 -0
- package/src/FlameGraph/FlameGraphComponent/ContextMenu.module.scss +10 -0
- package/src/FlameGraph/FlameGraphComponent/ContextMenu.spec.tsx +84 -0
- package/src/FlameGraph/FlameGraphComponent/ContextMenu.tsx +86 -0
- package/src/FlameGraph/FlameGraphComponent/ContextMenuHighlight.module.css +8 -0
- package/src/FlameGraph/FlameGraphComponent/ContextMenuHighlight.tsx +47 -0
- package/src/FlameGraph/FlameGraphComponent/DiffLegend.module.css +21 -0
- package/src/FlameGraph/FlameGraphComponent/DiffLegend.tsx +52 -0
- package/src/FlameGraph/FlameGraphComponent/DiffLegendPaletteDropdown.module.css +40 -0
- package/src/FlameGraph/FlameGraphComponent/DiffLegendPaletteDropdown.tsx +129 -0
- package/src/FlameGraph/FlameGraphComponent/Flamegraph.spec.ts +552 -0
- package/src/FlameGraph/FlameGraphComponent/Flamegraph.ts +446 -0
- package/src/FlameGraph/FlameGraphComponent/Flamegraph_render.spec.tsx +233 -0
- package/src/FlameGraph/FlameGraphComponent/Flamegraph_render.ts +478 -0
- package/src/FlameGraph/FlameGraphComponent/GraphVizPane.tsx +56 -0
- package/src/FlameGraph/FlameGraphComponent/GraphVizPanel.module.scss +55 -0
- package/src/FlameGraph/FlameGraphComponent/Header.module.css +27 -0
- package/src/FlameGraph/FlameGraphComponent/Header.tsx +71 -0
- package/src/FlameGraph/FlameGraphComponent/Highlight.module.css +7 -0
- package/src/FlameGraph/FlameGraphComponent/Highlight.spec.tsx +53 -0
- package/src/FlameGraph/FlameGraphComponent/Highlight.tsx +94 -0
- package/src/FlameGraph/FlameGraphComponent/LogoLink.module.scss +10 -0
- package/src/FlameGraph/FlameGraphComponent/LogoLink.tsx +101 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/canvas-renderer-spec-tsx-canvas-renderer-group-snapshot-collapses-small-blocks-into-one-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/canvas-renderer-spec-tsx-canvas-renderer-group-snapshot-works-with-diff-mode-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/canvas-renderer-spec-tsx-canvas-renderer-group-snapshot-works-with-highlighted-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/canvas-renderer-spec-tsx-canvas-renderer-group-snapshot-works-with-normal-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/canvas-renderer-spec-tsx-canvas-renderer-group-snapshot-works-with-selected-node-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-focused-also-zooms-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-focused-renders-a-focused-node-in-the-beginning-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-focused-renders-a-focused-node-when-node-is-not-in-the-beginning-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-focused-renders-a-focused-node-zoom-top-level-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-complex-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-double-diff-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-highlighted-double-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-highlighted-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-simple-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-simple-tree-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-zoomed-flamegraph-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/__image_snapshots__/flamegraph-render-spec-tsx-render-group-snapshot-renders-a-zoomed-with-fit-mode-tail-1-snap.png +0 -0
- package/src/FlameGraph/FlameGraphComponent/canvas.module.css +6 -0
- package/src/FlameGraph/FlameGraphComponent/color.spec.ts +308 -0
- package/src/FlameGraph/FlameGraphComponent/color.ts +167 -0
- package/src/FlameGraph/FlameGraphComponent/colorPalette.ts +58 -0
- package/src/FlameGraph/FlameGraphComponent/constants.ts +5 -0
- package/src/FlameGraph/FlameGraphComponent/index.spec.tsx +291 -0
- package/src/FlameGraph/FlameGraphComponent/index.tsx +411 -0
- package/src/FlameGraph/FlameGraphComponent/murmur3.ts +97 -0
- package/src/FlameGraph/FlameGraphComponent/styles.module.scss +10 -0
- package/src/FlameGraph/FlameGraphComponent/testData.ts +427 -0
- package/src/FlameGraph/FlameGraphComponent/utils.ts +31 -0
- package/src/FlameGraph/FlameGraphComponent/viewTypes.ts +6 -0
- package/src/FlameGraph/FlameGraphRenderer.tsx +603 -0
- package/src/FlameGraph/FlamegraphRenderer.module.scss +93 -0
- package/src/FlameGraph/decode.ts +78 -0
- package/src/FlameGraph/normalize.spec.ts +76 -0
- package/src/FlameGraph/normalize.ts +60 -0
- package/src/FlameGraph/testData.json +423 -0
- package/src/FlameGraph/uniqueness.spec.ts +16 -0
- package/src/FlameGraph/uniqueness.ts +84 -0
- package/src/FlamegraphRenderer.tsx +61 -0
- package/src/Icons.tsx +74 -0
- package/src/ProfilerTable.tsx +527 -0
- package/src/SharedQueryInput.module.scss +82 -0
- package/src/SharedQueryInput.tsx +127 -0
- package/src/Toolbar.module.scss +117 -0
- package/src/Toolbar.spec.tsx +217 -0
- package/src/Toolbar.tsx +471 -0
- package/src/Tooltip/FlamegraphTooltip.spec.tsx +81 -0
- package/src/Tooltip/FlamegraphTooltip.tsx +257 -0
- package/src/Tooltip/LeftClickIcon.tsx +18 -0
- package/src/Tooltip/RightClickIcon.tsx +18 -0
- package/src/Tooltip/TableTooltip.spec.tsx +44 -0
- package/src/Tooltip/TableTooltip.tsx +145 -0
- package/src/Tooltip/Tooltip.module.scss +71 -0
- package/src/Tooltip/Tooltip.spec.tsx +395 -0
- package/src/Tooltip/Tooltip.tsx +336 -0
- package/src/__snapshots__/Toolbar.spec.tsx.snap +297 -0
- package/src/convert/convertJaegerTraceToProfile.ts +97 -0
- package/src/convert/diffTwoProfiles.ts +81 -0
- package/src/convert/flamebearersToTree.ts +78 -0
- package/src/convert/sandwichViewProfiles.spec.ts +65 -0
- package/src/convert/sandwichViewProfiles.ts +191 -0
- package/src/convert/subtract.ts +87 -0
- package/src/convert/testData.ts +145 -0
- package/src/convert/toGraphviz.ts +485 -0
- package/src/fitMode/fitMode.spec.ts +93 -0
- package/src/fitMode/fitMode.ts +122 -0
- package/src/format/format.spec.ts +291 -0
- package/src/format/format.ts +303 -0
- package/src/globals.d.ts +13 -0
- package/src/i18n.tsx +293 -0
- package/src/index.node.ts +19 -0
- package/src/index.spec.tsx +383 -0
- package/src/index.tsx +10 -0
- package/src/logo-v3-small.svg +32 -0
- package/src/models/decode.ts +45 -0
- package/src/models/flamebearer.ts +86 -0
- package/src/models/groups.ts +14 -0
- package/src/models/index.ts +7 -0
- package/src/models/profile.spec.ts +32 -0
- package/src/models/profile.ts +48 -0
- package/src/models/spyName.spec.ts +18 -0
- package/src/models/spyName.ts +32 -0
- package/src/models/trace.ts +45 -0
- package/src/models/units.spec.ts +21 -0
- package/src/models/units.ts +24 -0
- package/src/sass/_common.scss +206 -0
- package/src/sass/_css-variables.scss +201 -0
- package/src/sass/_mixins.scss +15 -0
- package/src/sass/_sanitize.scss +407 -0
- package/src/sass/_variables.scss +53 -0
- package/src/sass/flamegraph.scss +18 -0
- package/src/search.spec.ts +11 -0
- package/src/search.ts +4 -0
- package/src/shameful-any.d.ts +2 -0
- package/src/shims/Box.module.scss +57 -0
- package/src/shims/Box.tsx +105 -0
- package/src/shims/Button.module.scss +129 -0
- package/src/shims/Button.tsx +128 -0
- package/src/shims/Dropdown.module.scss +63 -0
- package/src/shims/Dropdown.tsx +96 -0
- package/src/shims/Input.module.scss +15 -0
- package/src/shims/Input.tsx +55 -0
- package/src/shims/LoadingSpinner.tsx +19 -0
- package/src/shims/Menu.tsx +9 -0
- package/src/shims/NoData.module.scss +6 -0
- package/src/shims/NoData.tsx +11 -0
- package/src/shims/Table.module.scss +82 -0
- package/src/shims/Table.spec.tsx +121 -0
- package/src/shims/Table.tsx +252 -0
- package/src/shims/Tooltip.tsx +51 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { RefObject, Dispatch, SetStateAction } from 'react';
|
|
2
|
+
import type { Units } from '../models';
|
|
3
|
+
export type TooltipData = {
|
|
4
|
+
units: Units;
|
|
5
|
+
percent?: string | number;
|
|
6
|
+
samples?: string;
|
|
7
|
+
formattedValue?: string;
|
|
8
|
+
self?: string;
|
|
9
|
+
total?: string;
|
|
10
|
+
tooltipType: 'table' | 'flamegraph';
|
|
11
|
+
};
|
|
12
|
+
export interface TooltipProps {
|
|
13
|
+
dataSourceRef: RefObject<HTMLCanvasElement | HTMLTableSectionElement>;
|
|
14
|
+
shouldShowFooter?: boolean;
|
|
15
|
+
shouldShowTitle?: boolean;
|
|
16
|
+
clickInfoSide?: 'left' | 'right';
|
|
17
|
+
setTooltipContent: (setContent: Dispatch<SetStateAction<{
|
|
18
|
+
title: {
|
|
19
|
+
text: string;
|
|
20
|
+
diff: {
|
|
21
|
+
text: string;
|
|
22
|
+
color: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
tooltipData: TooltipData[];
|
|
26
|
+
}>>, onMouseOut: () => void, e: MouseEvent) => void;
|
|
27
|
+
}
|
|
28
|
+
export declare function Tooltip({ shouldShowFooter, shouldShowTitle, dataSourceRef, clickInfoSide, setTooltipContent, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../src/Tooltip/Tooltip.tsx"],"names":[],"mappings":"AACA,OAAc,EAEZ,SAAS,EAMT,QAAQ,EACR,cAAc,EACf,MAAM,OAAO,CAAC;AAEf,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,WAAW,CAAC;AAQvC,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,KAAK,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,OAAO,GAAG,YAAY,CAAC;CACrC,CAAC;AAEF,MAAM,WAAW,YAAY;IAE3B,aAAa,EAAE,SAAS,CAAC,iBAAiB,GAAG,uBAAuB,CAAC,CAAC;IAEtE,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAEjC,iBAAiB,EAAE,CACjB,UAAU,EAAE,QAAQ,CAClB,cAAc,CAAC;QACb,KAAK,EAAE;YACL,IAAI,EAAE,MAAM,CAAC;YACb,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAC;gBACb,KAAK,EAAE,MAAM,CAAC;aACf,CAAC;SACH,CAAC;QACF,WAAW,EAAE,WAAW,EAAE,CAAC;KAC5B,CAAC,CACH,EACD,UAAU,EAAE,MAAM,IAAI,EACtB,CAAC,EAAE,UAAU,KACV,IAAI,CAAC;CACX;AAED,wBAAgB,OAAO,CAAC,EACtB,gBAAuB,EACvB,eAAsB,EACtB,aAAa,EACb,aAAa,EACb,iBAAiB,GAClB,EAAE,YAAY,2CAiHd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convertJaegerTraceToProfile.d.ts","sourceRoot":"","sources":["../../src/convert/convertJaegerTraceToProfile.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAa,MAAM,WAAW,CAAC;AAS3D,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,CAoFjE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"diffTwoProfiles.d.ts","sourceRoot":"","sources":["../../src/convert/diffTwoProfiles.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAe,MAAM,UAAU,CAAC;AA2DrD,wBAAgB,eAAe,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,GAAG,OAAO,CAiBjE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Profile } from '../models';
|
|
2
|
+
export interface TreeNode {
|
|
3
|
+
name: string;
|
|
4
|
+
key: string;
|
|
5
|
+
self: number[];
|
|
6
|
+
total: number[];
|
|
7
|
+
offset?: number;
|
|
8
|
+
children: TreeNode[];
|
|
9
|
+
}
|
|
10
|
+
export declare function flamebearersToTree(f1: Profile['flamebearer'], f2?: Profile['flamebearer']): TreeNode;
|
|
11
|
+
//# sourceMappingURL=flamebearersToTree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flamebearersToTree.d.ts","sourceRoot":"","sources":["../../src/convert/flamebearersToTree.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,QAAQ,EAAE,CAAC;CACtB;AAED,wBAAgB,kBAAkB,CAChC,EAAE,EAAE,OAAO,CAAC,aAAa,CAAC,EAC1B,EAAE,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,GAC1B,QAAQ,CA+DV"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { Flamebearer } from '../models';
|
|
2
|
+
import { TreeNode } from './flamebearersToTree';
|
|
3
|
+
interface FlamebearerData {
|
|
4
|
+
maxSelf: number;
|
|
5
|
+
levels: number[][];
|
|
6
|
+
names: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare const treeToFlamebearer: (tree: TreeNode) => FlamebearerData;
|
|
9
|
+
export declare function calleesFlamebearer(f: Flamebearer, nodeName: string): Flamebearer;
|
|
10
|
+
export declare function callersFlamebearer(f: Flamebearer, nodeName: string): Flamebearer;
|
|
11
|
+
export declare function calleesProfile(f: Flamebearer, nodeName: string): Flamebearer;
|
|
12
|
+
export declare function callersProfile(f: Flamebearer, nodeName: string): Flamebearer;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=sandwichViewProfiles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sandwichViewProfiles.d.ts","sourceRoot":"","sources":["../../src/convert/sandwichViewProfiles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAsB,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEpE,UAAU,eAAe;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,EAAE,EAAE,CAAC;IACnB,KAAK,EAAE,MAAM,EAAE,CAAC;CACjB;AAED,eAAO,MAAM,iBAAiB,SAAU,QAAQ,KAAG,eA6BlD,CAAC;AAwCF,wBAAgB,kBAAkB,CAChC,CAAC,EAAE,WAAW,EACd,QAAQ,EAAE,MAAM,GACf,WAAW,CAmCb;AAED,wBAAgB,kBAAkB,CAChC,CAAC,EAAE,WAAW,EACd,QAAQ,EAAE,MAAM,GACf,WAAW,CAsDb;AAED,wBAAgB,cAAc,CAAC,CAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,GAAG,WAAW,CAK5E;AAED,wBAAgB,cAAc,CAAC,CAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,GAAG,WAAW,CAM5E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subtract.d.ts","sourceRoot":"","sources":["../../src/convert/subtract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAsEzC,wBAAgB,QAAQ,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,GAAG,OAAO,CAgB1D"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { TreeNode } from './flamebearersToTree';
|
|
2
|
+
export declare const tree: TreeNode;
|
|
3
|
+
export declare const singleAppearanceTrees: {
|
|
4
|
+
zero: {
|
|
5
|
+
name: string;
|
|
6
|
+
children: any[];
|
|
7
|
+
self: number[];
|
|
8
|
+
total: number[];
|
|
9
|
+
key: string;
|
|
10
|
+
};
|
|
11
|
+
one: {
|
|
12
|
+
name: string;
|
|
13
|
+
key: string;
|
|
14
|
+
self: number[];
|
|
15
|
+
total: number[];
|
|
16
|
+
children: {
|
|
17
|
+
name: string;
|
|
18
|
+
key: string;
|
|
19
|
+
self: number[];
|
|
20
|
+
total: number[];
|
|
21
|
+
children: any[];
|
|
22
|
+
}[];
|
|
23
|
+
};
|
|
24
|
+
multiple: {
|
|
25
|
+
name: string;
|
|
26
|
+
key: string;
|
|
27
|
+
total: number[];
|
|
28
|
+
self: number[];
|
|
29
|
+
children: {
|
|
30
|
+
name: string;
|
|
31
|
+
key: string;
|
|
32
|
+
self: number[];
|
|
33
|
+
total: number[];
|
|
34
|
+
children: {
|
|
35
|
+
name: string;
|
|
36
|
+
key: string;
|
|
37
|
+
self: number[];
|
|
38
|
+
total: number[];
|
|
39
|
+
children: {
|
|
40
|
+
name: string;
|
|
41
|
+
key: string;
|
|
42
|
+
self: number[];
|
|
43
|
+
total: number[];
|
|
44
|
+
children: any[];
|
|
45
|
+
}[];
|
|
46
|
+
}[];
|
|
47
|
+
}[];
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=testData.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"testData.d.ts","sourceRoot":"","sources":["../../src/convert/testData.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,IAAI,EAAE,QA2ElB,CAAC;AA+DF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toGraphviz.d.ts","sourceRoot":"","sources":["../../src/convert/toGraphviz.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAqNzC,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,CA+QrD"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const TailMode = "TAIL";
|
|
3
|
+
export declare const HeadMode = "HEAD";
|
|
4
|
+
export type FitModes = typeof TailMode | typeof HeadMode;
|
|
5
|
+
/**
|
|
6
|
+
* Returns a text and margin left used to write text into a canvas rectangle
|
|
7
|
+
*
|
|
8
|
+
* @param {FitModes} mode -
|
|
9
|
+
* @param {number} charSize - Size in pixels of an individual character. Assumes it's a monospace font.
|
|
10
|
+
* @param {number} rectWidth - Width in pixels of the rectangle
|
|
11
|
+
* @param {string} fullText - The text that will be first tried.
|
|
12
|
+
* @param {string} shortText - The text that willbe used when fullText can't fit. It's normally a substring of the original text.
|
|
13
|
+
*/
|
|
14
|
+
interface fitToCanvasRectProps {
|
|
15
|
+
mode: FitModes;
|
|
16
|
+
/** charSize - Size in pixels of an individual character. Assumes it's a monospace font. */
|
|
17
|
+
charSize: number;
|
|
18
|
+
/** Width in pixels of the rectangle */
|
|
19
|
+
rectWidth: number;
|
|
20
|
+
/** The text that will be first tried to fit */
|
|
21
|
+
fullText: string;
|
|
22
|
+
/** The text that willbe used when fullText can't fit. It's normally a substring of the original text. */
|
|
23
|
+
shortText: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function fitToCanvasRect({ mode, charSize, rectWidth, fullText, shortText, }: fitToCanvasRectProps): {
|
|
26
|
+
mode: "TAIL";
|
|
27
|
+
text: string;
|
|
28
|
+
marginLeft: number;
|
|
29
|
+
} | {
|
|
30
|
+
mode: "HEAD";
|
|
31
|
+
text: string;
|
|
32
|
+
marginLeft: number;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Returns an inline style in React format
|
|
36
|
+
* used to fit the content into a table cell
|
|
37
|
+
* or an empty object if not applicable.
|
|
38
|
+
* @param {FitModes} mode - The mode
|
|
39
|
+
*/
|
|
40
|
+
export declare function fitIntoTableCell(mode: FitModes): React.CSSProperties;
|
|
41
|
+
export {};
|
|
42
|
+
//# sourceMappingURL=fitMode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fitMode.d.ts","sourceRoot":"","sources":["../../src/fitMode/fitMode.ts"],"names":[],"mappings":";AAAA,eAAO,MAAM,QAAQ,SAAS,CAAC;AAC/B,eAAO,MAAM,QAAQ,SAAS,CAAC;AAE/B,MAAM,MAAM,QAAQ,GAAG,OAAO,QAAQ,GAAG,OAAO,QAAQ,CAAC;AAIzD;;;;;;;;GAQG;AAEH,UAAU,oBAAoB;IAC5B,IAAI,EAAE,QAAQ,CAAC;IAEf,2FAA2F;IAC3F,QAAQ,EAAE,MAAM,CAAC;IAEjB,uCAAuC;IACvC,SAAS,EAAE,MAAM,CAAC;IAElB,+CAA+C;IAC/C,QAAQ,EAAE,MAAM,CAAC;IAEjB,yGAAyG;IACzG,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,wBAAgB,eAAe,CAAC,EAC9B,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,SAAS,GACV,EAAE,oBAAoB;;;;;;;;EAyDtB;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,QAAQ,GAAG,KAAK,CAAC,aAAa,CAiBpE"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Units } from '../models/units';
|
|
2
|
+
export declare function numberWithCommas(x: number): string;
|
|
3
|
+
export declare function formatPercent(ratio: number): string;
|
|
4
|
+
export declare function ratioToPercent(ratio: number): number;
|
|
5
|
+
export declare function diffPercent(leftPercent: number, rightPercent: number): number;
|
|
6
|
+
export declare function getFormatter(max: number, sampleRate: number, unit: Units): DurationFormatter | ObjectsFormatter | BytesFormatter | NanosecondsFormatter;
|
|
7
|
+
export declare class DurationFormatter {
|
|
8
|
+
divider: number;
|
|
9
|
+
enableSubsecondPrecision: boolean;
|
|
10
|
+
suffix: string;
|
|
11
|
+
durations: [number, string][];
|
|
12
|
+
units: string;
|
|
13
|
+
constructor(maxDur: number, units?: string, enableSubsecondPrecision?: boolean);
|
|
14
|
+
format(samples: number, sampleRate: number, withUnits?: boolean): string;
|
|
15
|
+
formatPrecise(samples: number, sampleRate: number): string;
|
|
16
|
+
}
|
|
17
|
+
export declare class NanosecondsFormatter {
|
|
18
|
+
divider: number;
|
|
19
|
+
multiplier: number;
|
|
20
|
+
suffix: string;
|
|
21
|
+
durations: [number, string][];
|
|
22
|
+
constructor(maxDur: number);
|
|
23
|
+
format(samples: number): string;
|
|
24
|
+
formatPrecise(samples: number): string;
|
|
25
|
+
}
|
|
26
|
+
export declare class ObjectsFormatter {
|
|
27
|
+
divider: number;
|
|
28
|
+
suffix: string;
|
|
29
|
+
objects: [number, string][];
|
|
30
|
+
constructor(maxObjects: number);
|
|
31
|
+
format(samples: number): string;
|
|
32
|
+
formatPrecise(samples: number): string;
|
|
33
|
+
}
|
|
34
|
+
export declare class BytesFormatter {
|
|
35
|
+
divider: number;
|
|
36
|
+
suffix: string;
|
|
37
|
+
bytes: [number, string][];
|
|
38
|
+
constructor(maxBytes: number);
|
|
39
|
+
format(samples: number): string;
|
|
40
|
+
formatPrecise(samples: number): string;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=format.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format.d.ts","sourceRoot":"","sources":["../../src/format/format.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAExC,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAElD;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,UAG1C;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,UAE3C;AAED,wBAAgB,WAAW,CAAC,WAAW,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,CAI7E;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,gFAsBxE;AAID,qBAAa,iBAAiB;IAC5B,OAAO,SAAK;IAEZ,wBAAwB,UAAS;IAEjC,MAAM,SAAY;IAElB,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAM3B;IAEF,KAAK,SAAM;gBAGT,MAAM,EAAE,MAAM,EACd,KAAK,CAAC,EAAE,MAAM,EACd,wBAAwB,CAAC,EAAE,OAAO;IA4BpC,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,UAAO,GAAG,MAAM;IAuBrE,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM;CAWlD;AAID,qBAAa,oBAAoB;IAC/B,OAAO,SAAK;IAEZ,UAAU,SAAK;IAEf,MAAM,SAAY;IAElB,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAM3B;gBAEU,MAAM,EAAE,MAAM;IAqB1B,MAAM,CAAC,OAAO,EAAE,MAAM;IAatB,aAAa,CAAC,OAAO,EAAE,MAAM;CAK9B;AAED,qBAAa,gBAAgB;IAC3B,OAAO,SAAK;IAEZ,MAAM,SAAM;IAEZ,OAAO,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAMzB;gBAEU,UAAU,EAAE,MAAM;IAsB9B,MAAM,CAAC,OAAO,EAAE,MAAM;IAYtB,aAAa,CAAC,OAAO,EAAE,MAAM;CAK9B;AAED,qBAAa,cAAc;IACzB,OAAO,SAAK;IAEZ,MAAM,SAAW;IAEjB,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAMvB;gBAEU,QAAQ,EAAE,MAAM;IA2B5B,MAAM,CAAC,OAAO,EAAE,MAAM;IAatB,aAAa,CAAC,OAAO,EAAE,MAAM;CAK9B"}
|
package/dist/i18n.d.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Units } from './models';
|
|
3
|
+
export type TooltipUnitMessages = {
|
|
4
|
+
percent: string;
|
|
5
|
+
formattedValue: string;
|
|
6
|
+
total: string;
|
|
7
|
+
};
|
|
8
|
+
export type FlamegraphMessages = {
|
|
9
|
+
location: string;
|
|
10
|
+
self: string;
|
|
11
|
+
total: string;
|
|
12
|
+
baseline: string;
|
|
13
|
+
comparison: string;
|
|
14
|
+
diff: string;
|
|
15
|
+
noItemsFound: string;
|
|
16
|
+
diffNew: string;
|
|
17
|
+
diffRemoved: string;
|
|
18
|
+
tooltipSamples: string;
|
|
19
|
+
tooltipUnitTitles: Record<Units, TooltipUnitMessages>;
|
|
20
|
+
resetView: string;
|
|
21
|
+
collapseNodesAbove: string;
|
|
22
|
+
copyFunctionName: string;
|
|
23
|
+
highlightSimilarNodes: string;
|
|
24
|
+
clearHighlight: string;
|
|
25
|
+
openInSandwichView: string;
|
|
26
|
+
showTextTailFirst: string;
|
|
27
|
+
showTextHeadFirst: string;
|
|
28
|
+
headFirst: string;
|
|
29
|
+
tailFirst: string;
|
|
30
|
+
clickToHighlightNode: string;
|
|
31
|
+
rightClickForMoreNodeOptions: string;
|
|
32
|
+
viewTable: string;
|
|
33
|
+
viewTableAndFlamegraph: string;
|
|
34
|
+
viewFlamegraph: string;
|
|
35
|
+
viewSandwich: string;
|
|
36
|
+
viewGraphviz: string;
|
|
37
|
+
more: string;
|
|
38
|
+
diffLegendRemovedLabel: string;
|
|
39
|
+
diffLegendAddedLabel: string;
|
|
40
|
+
diffLegendSelectPalette: string;
|
|
41
|
+
paletteDefaultName: string;
|
|
42
|
+
paletteColorBlindName: string;
|
|
43
|
+
searchPlaceholder: string;
|
|
44
|
+
syncSearchBars: string;
|
|
45
|
+
unsyncSearchBars: string;
|
|
46
|
+
};
|
|
47
|
+
export declare const defaultMessages: FlamegraphMessages;
|
|
48
|
+
export declare const zhCNMessages: FlamegraphMessages;
|
|
49
|
+
export type FlamegraphI18nProviderProps = {
|
|
50
|
+
messages?: Partial<FlamegraphMessages>;
|
|
51
|
+
children: React.ReactNode;
|
|
52
|
+
};
|
|
53
|
+
export declare const FlamegraphI18nProvider: React.FC<FlamegraphI18nProviderProps>;
|
|
54
|
+
export declare const useFlamegraphI18n: () => FlamegraphMessages;
|
|
55
|
+
//# sourceMappingURL=i18n.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../src/i18n.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoC,MAAM,OAAO,CAAC;AACzD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEtC,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAE/B,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IAGb,YAAY,EAAE,MAAM,CAAC;IAGrB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IAGpB,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,EAAE,MAAM,CAAC,KAAK,EAAE,mBAAmB,CAAC,CAAC;IAGtD,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;IACzB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iBAAiB,EAAE,MAAM,CAAC;IAG1B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAGlB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,4BAA4B,EAAE,MAAM,CAAC;IAGrC,SAAS,EAAE,MAAM,CAAC;IAClB,sBAAsB,EAAE,MAAM,CAAC;IAC/B,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IAGb,sBAAsB,EAAE,MAAM,CAAC;IAC/B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,uBAAuB,EAAE,MAAM,CAAC;IAChC,kBAAkB,EAAE,MAAM,CAAC;IAC3B,qBAAqB,EAAE,MAAM,CAAC;IAG9B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAkGF,eAAO,MAAM,eAAe,EAAE,kBAgD7B,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,kBAiD1B,CAAC;AAIF,MAAM,MAAM,2BAA2B,GAAG;IACxC,QAAQ,CAAC,EAAE,OAAO,CAAC,kBAAkB,CAAC,CAAC;IACvC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CAiBxE,CAAC;AAEF,eAAO,MAAM,iBAAiB,0BAAgC,CAAC"}
|