candleview 2.3.6 → 2.3.9
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 +1 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +271 -260
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -46,13 +46,11 @@ declare class CandleView extends default_2.Component<CandleViewProps, CandleView
|
|
|
46
46
|
private isDragging;
|
|
47
47
|
private startX;
|
|
48
48
|
private startChartWidth;
|
|
49
|
-
private startPanelWidth;
|
|
50
49
|
private containerWidth;
|
|
51
50
|
private terminalResizeRef;
|
|
52
51
|
private isDraggingTerminal;
|
|
53
52
|
private startY;
|
|
54
53
|
private startTerminalHeightRatio;
|
|
55
|
-
private containerHeight;
|
|
56
54
|
private preparedData;
|
|
57
55
|
private originalData;
|
|
58
56
|
private aiManager;
|
|
@@ -132,7 +130,6 @@ declare class CandleView extends default_2.Component<CandleViewProps, CandleView
|
|
|
132
130
|
handleZoomOut: () => void;
|
|
133
131
|
handleAIFunctionSelect: (aiTooleId: string) => void;
|
|
134
132
|
private handleTerminalCommand;
|
|
135
|
-
private handleToggleTerminal;
|
|
136
133
|
openTerminal: () => void;
|
|
137
134
|
closeTerminal: () => void;
|
|
138
135
|
render(): JSX.Element;
|
|
@@ -815,6 +812,7 @@ declare interface ThemeConfig {
|
|
|
815
812
|
hover: string;
|
|
816
813
|
active: string;
|
|
817
814
|
color: string;
|
|
815
|
+
iconColor: string;
|
|
818
816
|
activeTextColor: string;
|
|
819
817
|
boxShadow: string;
|
|
820
818
|
sendButton: {
|