candleview 2.3.1 → 2.3.3
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 +2 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +227 -229
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,7 @@ declare class CandleView extends default_2.Component<CandleViewProps, CandleView
|
|
|
60
60
|
componentDidMount(): void;
|
|
61
61
|
componentDidUpdate(prevProps: CandleViewProps, prevState: CandleViewState): void;
|
|
62
62
|
componentWillUnmount(): void;
|
|
63
|
+
private clearStaticMarks;
|
|
63
64
|
private isIncrementalDataUpdate;
|
|
64
65
|
private handleTerminalResizeMouseDown;
|
|
65
66
|
private handleTerminalMouseMove;
|
|
@@ -213,6 +214,7 @@ declare interface CandleViewState {
|
|
|
213
214
|
terminal: boolean;
|
|
214
215
|
terminalHeightRatio: number;
|
|
215
216
|
isResizingTerminal: boolean;
|
|
217
|
+
markData: IStaticMarkData[];
|
|
216
218
|
}
|
|
217
219
|
|
|
218
220
|
declare interface I18n {
|