@iccandle/reactjs-widget 0.2.1 → 0.2.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/README.md +61 -72
- package/dist/widget-iccandle.cjs +17 -17
- package/dist/widget-iccandle.d.ts +7 -1
- package/dist/widget-iccandle.js +4825 -4896
- package/package.json +1 -1
|
@@ -14334,7 +14334,7 @@ type WidgetIccandleChartRefs = {
|
|
|
14334
14334
|
generatedCandlesBackgroundStudyIdRef: RefObject<EntityId | null>;
|
|
14335
14335
|
generatedCandlesStudyIdRef: RefObject<EntityId | null>;
|
|
14336
14336
|
};
|
|
14337
|
-
declare const WidgetIccandle: ({ chartWidget, children, theme, language, submitCallback, onCloseResult, iframeLoaded, }: WidgetIccandleProps) => react_jsx_runtime.JSX.Element;
|
|
14337
|
+
declare const WidgetIccandle: ({ chartWidget, children, theme, language, submitCallback, onCloseResult, iframeLoaded, isShowScanButton, isShowTrackerButton, isShowScannerPopup, }: WidgetIccandleProps) => react_jsx_runtime.JSX.Element;
|
|
14338
14338
|
type WidgetIccandleProps = {
|
|
14339
14339
|
chartWidget: IChartingLibraryWidget | null;
|
|
14340
14340
|
children: ReactNode | ((chartRefs: WidgetIccandleChartRefs) => ReactNode);
|
|
@@ -14343,6 +14343,12 @@ type WidgetIccandleProps = {
|
|
|
14343
14343
|
language?: WidgetLanguage$1;
|
|
14344
14344
|
onCloseResult?: () => void;
|
|
14345
14345
|
iframeLoaded?: boolean;
|
|
14346
|
+
/** Show the Scan action inside the popup. Defaults to `true`. */
|
|
14347
|
+
isShowScanButton?: boolean;
|
|
14348
|
+
/** Show the Pattern Tracker action inside the popup. Defaults to `true`. */
|
|
14349
|
+
isShowTrackerButton?: boolean;
|
|
14350
|
+
/** Show the scanner popup at all. Defaults to `true`. */
|
|
14351
|
+
isShowScannerPopup?: boolean;
|
|
14346
14352
|
};
|
|
14347
14353
|
|
|
14348
14354
|
declare const handleResultIframeLoad: (iframe: HTMLIFrameElement | null) => void;
|