candleview 2.8.6 → 2.8.7
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.ts +4 -0
- package/dist/index.js +16 -16
- package/dist/index.mjs +541 -446
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,8 @@ declare class CandleView extends default_2.Component<CandleViewProps, CandleView
|
|
|
62
62
|
componentDidMount(): void;
|
|
63
63
|
componentDidUpdate(prevProps: CandleViewProps, prevState: CandleViewState): void;
|
|
64
64
|
componentWillUnmount(): void;
|
|
65
|
+
private initializeMainChartIndicators;
|
|
66
|
+
private initializeSubChartIndicators;
|
|
65
67
|
private handleAiMobileMouseMove;
|
|
66
68
|
private handleAiMobileMouseUp;
|
|
67
69
|
private clearStaticMarks;
|
|
@@ -170,6 +172,8 @@ declare interface CandleViewProps {
|
|
|
170
172
|
isFullScreen?: boolean;
|
|
171
173
|
isScreenshot?: boolean;
|
|
172
174
|
isThemeSelection?: boolean;
|
|
175
|
+
mainChartIndicators?: string[];
|
|
176
|
+
subChartIndicators?: string[];
|
|
173
177
|
handleScreenshotCapture?: (imageData: {
|
|
174
178
|
dataUrl: string;
|
|
175
179
|
blob: Blob;
|