@iccandle/vuejs-widget 0.0.6 → 0.0.8
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 +3 -22
- package/dist/widget-iccandle.cjs +2 -2
- package/dist/widget-iccandle.js +3 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,34 +50,15 @@ declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
declare type ChartItem = {
|
|
54
|
-
o: number;
|
|
55
|
-
h: number;
|
|
56
|
-
l: number;
|
|
57
|
-
c: number;
|
|
58
|
-
timestamp: number;
|
|
59
|
-
v?: number;
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
63
|
-
export { _default as SelectorWidget }
|
|
64
|
-
export { _default as WidgetIccandle }
|
|
65
|
-
|
|
66
53
|
export declare type GeneratedCandlesTheme = "light" | "dark";
|
|
67
54
|
|
|
68
55
|
export declare const getCustomIndicators: (theme?: GeneratedCandlesTheme) => Promise<readonly CustomIndicator[]>;
|
|
69
56
|
|
|
70
|
-
/** Pane-matching mask color so predicted bars hide the underlying series. */
|
|
71
|
-
export declare const getGeneratedCandlesMaskColor: (theme?: GeneratedCandlesTheme) => string;
|
|
72
|
-
|
|
73
|
-
/** @deprecated Use `WidgetIccandleChartRefs`. */
|
|
74
|
-
export declare type SelectorWidgetChartRefs = WidgetIccandleChartRefs;
|
|
75
|
-
|
|
76
|
-
export declare type TradingViewCandleType = ChartItem;
|
|
77
|
-
|
|
78
57
|
declare const WIDGET_LANGUAGES: readonly ["en", "zh", "vi", "th", "ko", "ja", "mn", "ru"];
|
|
79
58
|
|
|
80
|
-
export declare
|
|
59
|
+
export declare const WidgetIccandle: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
60
|
+
|
|
61
|
+
declare type WidgetIccandleChartRefs = {
|
|
81
62
|
highlightBarsRef: {
|
|
82
63
|
current: Bar[];
|
|
83
64
|
};
|