@gearbox-protocol/permissionless-ui 1.26.2 → 1.26.4
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/cjs/components/graph/default-config.cjs +1 -1
- package/dist/cjs/components/graph/formatters.cjs +1 -1
- package/dist/cjs/components/graph/graph-tooltip.cjs +1 -1
- package/dist/cjs/components/graph/graph.cjs +1 -1
- package/dist/cjs/components/graph/index.cjs +1 -1
- package/dist/cjs/components/index.cjs +1 -1
- package/dist/cjs/components/trading-view/trading-view.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/components/graph/default-config.js +6 -2
- package/dist/esm/components/graph/formatters.js +147 -105
- package/dist/esm/components/graph/graph-tooltip.js +8 -8
- package/dist/esm/components/graph/graph.js +376 -345
- package/dist/esm/components/graph/index.js +16 -15
- package/dist/esm/components/index.js +440 -439
- package/dist/esm/components/trading-view/trading-view.js +147 -143
- package/dist/esm/index.js +589 -588
- package/dist/types/components/graph/formatters.d.ts +10 -1
- package/dist/types/components/graph/index.d.ts +1 -1
- package/dist/types/components/graph/plugins/vertical-line.d.ts +2 -2
- package/dist/types/components/trading-view/trading-view.d.ts +2 -0
- package/package.json +6 -6
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
import { DEFAULT_AREA_SERIES as r, DEFAULT_OPTIONS as o, DEFAULT_VERTICAL_LINE as a, getDefaultOptions as p, getDefaultSeries as i, getDefaultVerticalLine as E } from "./default-config.js";
|
|
2
|
-
import { getXFormatter as l, getYFormatter as L } from "./formatters.js";
|
|
3
|
-
import { DEFAULT_SERIES_COLORS as V, Graph as
|
|
4
|
-
import { GraphCurrentValue as
|
|
5
|
-
import { GraphTooltip as
|
|
6
|
-
import { GraphView as
|
|
7
|
-
import { VertLine as
|
|
2
|
+
import { getXFormatter as l, getXFormatters as m, getYFormatter as L } from "./formatters.js";
|
|
3
|
+
import { DEFAULT_SERIES_COLORS as V, Graph as h, getSeriesColorPalette as n, getVerticalLineTooltipContent as A } from "./graph.js";
|
|
4
|
+
import { GraphCurrentValue as S } from "./graph-current-value.js";
|
|
5
|
+
import { GraphTooltip as s } from "./graph-tooltip.js";
|
|
6
|
+
import { GraphView as F, GraphViewWithData as _, graphViewVariants as u, useGraphAside as G } from "./graph-view.js";
|
|
7
|
+
import { VertLine as I } from "./plugins/vertical-line.js";
|
|
8
8
|
export {
|
|
9
9
|
r as DEFAULT_AREA_SERIES,
|
|
10
10
|
o as DEFAULT_OPTIONS,
|
|
11
11
|
V as DEFAULT_SERIES_COLORS,
|
|
12
12
|
a as DEFAULT_VERTICAL_LINE,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
h as Graph,
|
|
14
|
+
S as GraphCurrentValue,
|
|
15
|
+
s as GraphTooltip,
|
|
16
|
+
F as GraphView,
|
|
17
|
+
_ as GraphViewWithData,
|
|
18
|
+
I as VertLine,
|
|
19
19
|
p as getDefaultOptions,
|
|
20
20
|
i as getDefaultSeries,
|
|
21
21
|
E as getDefaultVerticalLine,
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
n as getSeriesColorPalette,
|
|
23
|
+
A as getVerticalLineTooltipContent,
|
|
24
24
|
l as getXFormatter,
|
|
25
|
+
m as getXFormatters,
|
|
25
26
|
L as getYFormatter,
|
|
26
27
|
u as graphViewVariants,
|
|
27
|
-
|
|
28
|
+
G as useGraphAside
|
|
28
29
|
};
|