@orderly.network/chart 2.10.1 → 2.10.2
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.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +327 -97
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +327 -98
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -40,6 +40,13 @@ type PnlAreaChartProps$1 = {
|
|
|
40
40
|
};
|
|
41
41
|
declare const PnlAreaChart: React.FC<PnlAreaChartProps$1>;
|
|
42
42
|
|
|
43
|
+
type VolumeAreaChartProps = {
|
|
44
|
+
data: any;
|
|
45
|
+
invisible?: boolean;
|
|
46
|
+
responsiveContainerProps?: Omit<Props, "children">;
|
|
47
|
+
};
|
|
48
|
+
declare const VolumeAreaChart: React.FC<VolumeAreaChartProps>;
|
|
49
|
+
|
|
43
50
|
type AssetChartDataItem$1 = {
|
|
44
51
|
date: string;
|
|
45
52
|
account_value: number;
|
|
@@ -86,9 +93,11 @@ type VolChartProps = {
|
|
|
86
93
|
data: ReadonlyArray<VolChartDataItem> | VolChartDataItem[];
|
|
87
94
|
tooltip?: VolChartTooltip;
|
|
88
95
|
className?: string;
|
|
96
|
+
invisible?: boolean;
|
|
97
|
+
responsiveContainerProps?: Omit<Props, "children">;
|
|
89
98
|
};
|
|
90
99
|
declare const VolBarChart: React.FC<VolChartProps>;
|
|
91
100
|
|
|
92
101
|
declare const chartPlugin: PluginCreator;
|
|
93
102
|
|
|
94
|
-
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, VolBarChart, type VolChartDataItem, chartPlugin };
|
|
103
|
+
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, VolBarChart, type VolChartDataItem, VolumeAreaChart, chartPlugin };
|
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,13 @@ type PnlAreaChartProps$1 = {
|
|
|
40
40
|
};
|
|
41
41
|
declare const PnlAreaChart: React.FC<PnlAreaChartProps$1>;
|
|
42
42
|
|
|
43
|
+
type VolumeAreaChartProps = {
|
|
44
|
+
data: any;
|
|
45
|
+
invisible?: boolean;
|
|
46
|
+
responsiveContainerProps?: Omit<Props, "children">;
|
|
47
|
+
};
|
|
48
|
+
declare const VolumeAreaChart: React.FC<VolumeAreaChartProps>;
|
|
49
|
+
|
|
43
50
|
type AssetChartDataItem$1 = {
|
|
44
51
|
date: string;
|
|
45
52
|
account_value: number;
|
|
@@ -86,9 +93,11 @@ type VolChartProps = {
|
|
|
86
93
|
data: ReadonlyArray<VolChartDataItem> | VolChartDataItem[];
|
|
87
94
|
tooltip?: VolChartTooltip;
|
|
88
95
|
className?: string;
|
|
96
|
+
invisible?: boolean;
|
|
97
|
+
responsiveContainerProps?: Omit<Props, "children">;
|
|
89
98
|
};
|
|
90
99
|
declare const VolBarChart: React.FC<VolChartProps>;
|
|
91
100
|
|
|
92
101
|
declare const chartPlugin: PluginCreator;
|
|
93
102
|
|
|
94
|
-
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, VolBarChart, type VolChartDataItem, chartPlugin };
|
|
103
|
+
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, VolBarChart, type VolChartDataItem, VolumeAreaChart, chartPlugin };
|