@kodiak-finance/orderly-chart 2.8.33 → 2.9.0-rc.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 +336 -106
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +336 -107
- 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 CombinedPnLChartDataItem = {
|
|
44
51
|
date: string;
|
|
45
52
|
pnl: number;
|
|
@@ -177,6 +184,8 @@ type VolChartProps = {
|
|
|
177
184
|
data: ReadonlyArray<VolChartDataItem> | VolChartDataItem[];
|
|
178
185
|
tooltip?: VolChartTooltip;
|
|
179
186
|
className?: string;
|
|
187
|
+
invisible?: boolean;
|
|
188
|
+
responsiveContainerProps?: Omit<Props, "children">;
|
|
180
189
|
};
|
|
181
190
|
declare const VolBarChart: React.FC<VolChartProps>;
|
|
182
191
|
|
|
@@ -192,4 +201,4 @@ declare const UnifiedSymbolPerformanceChart: React.FC<UnifiedChartProps>;
|
|
|
192
201
|
|
|
193
202
|
declare const chartPlugin: PluginCreator;
|
|
194
203
|
|
|
195
|
-
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, ChartEmptyState, type ChartEmptyStateProps, CombinedFeesChart, type CombinedFeesChartDataItem, type CombinedFeesChartProps, CombinedPnLChart, type CombinedPnLChartDataItem, type CombinedPnLChartProps, CombinedPriceChart, type CombinedPriceChartDataItem, type CombinedPriceChartProps, CombinedVolumeChart, type CombinedVolumeChartDataItem, type CombinedVolumeChartProps, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, type UnifiedChartProps, UnifiedSymbolPerformanceChart, VolBarChart, type VolChartDataItem, chartPlugin };
|
|
204
|
+
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, ChartEmptyState, type ChartEmptyStateProps, CombinedFeesChart, type CombinedFeesChartDataItem, type CombinedFeesChartProps, CombinedPnLChart, type CombinedPnLChartDataItem, type CombinedPnLChartProps, CombinedPriceChart, type CombinedPriceChartDataItem, type CombinedPriceChartProps, CombinedVolumeChart, type CombinedVolumeChartDataItem, type CombinedVolumeChartProps, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, type UnifiedChartProps, UnifiedSymbolPerformanceChart, 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 CombinedPnLChartDataItem = {
|
|
44
51
|
date: string;
|
|
45
52
|
pnl: number;
|
|
@@ -177,6 +184,8 @@ type VolChartProps = {
|
|
|
177
184
|
data: ReadonlyArray<VolChartDataItem> | VolChartDataItem[];
|
|
178
185
|
tooltip?: VolChartTooltip;
|
|
179
186
|
className?: string;
|
|
187
|
+
invisible?: boolean;
|
|
188
|
+
responsiveContainerProps?: Omit<Props, "children">;
|
|
180
189
|
};
|
|
181
190
|
declare const VolBarChart: React.FC<VolChartProps>;
|
|
182
191
|
|
|
@@ -192,4 +201,4 @@ declare const UnifiedSymbolPerformanceChart: React.FC<UnifiedChartProps>;
|
|
|
192
201
|
|
|
193
202
|
declare const chartPlugin: PluginCreator;
|
|
194
203
|
|
|
195
|
-
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, ChartEmptyState, type ChartEmptyStateProps, CombinedFeesChart, type CombinedFeesChartDataItem, type CombinedFeesChartProps, CombinedPnLChart, type CombinedPnLChartDataItem, type CombinedPnLChartProps, CombinedPriceChart, type CombinedPriceChartDataItem, type CombinedPriceChartProps, CombinedVolumeChart, type CombinedVolumeChartDataItem, type CombinedVolumeChartProps, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, type UnifiedChartProps, UnifiedSymbolPerformanceChart, VolBarChart, type VolChartDataItem, chartPlugin };
|
|
204
|
+
export { AssetAreaChart, type AssetChartDataItem$1 as AssetChartDataItem, AssetLineChart, ChartEmptyState, type ChartEmptyStateProps, CombinedFeesChart, type CombinedFeesChartDataItem, type CombinedFeesChartProps, CombinedPnLChart, type CombinedPnLChartDataItem, type CombinedPnLChartProps, CombinedPriceChart, type CombinedPriceChartDataItem, type CombinedPriceChartProps, CombinedVolumeChart, type CombinedVolumeChartDataItem, type CombinedVolumeChartProps, PnLBarChart, PnlAreaChart, type PnlAreaChartProps, PnlLineChart, type PnlLineChartProps, type UnifiedChartProps, UnifiedSymbolPerformanceChart, VolBarChart, type VolChartDataItem, VolumeAreaChart, chartPlugin };
|