@iccandle/vuejs-widget 0.2.4 → 0.2.6
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 +6 -0
- package/dist/widget-iccandle.cjs +3 -3
- package/dist/widget-iccandle.js +972 -942
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -45,6 +45,9 @@ declare type __VLS_Props = {
|
|
|
45
45
|
* Chart resolutions where the scanner popup is shown.
|
|
46
46
|
* If set, the popup is hidden when the chart interval is outside this list.
|
|
47
47
|
* Also used to gate pattern date-range drawing.
|
|
48
|
+
* Ignored in pattern mode (`isShowScanButton={false}`), which always uses
|
|
49
|
+
* `PATTERN_SCANNER_INTERVALS` (`1`…`1D`, no `1W`/`1M`).
|
|
50
|
+
* Tracker is always hidden on `1W`/`1M` (same allowlist as scanner settings).
|
|
48
51
|
*/
|
|
49
52
|
availableIntervals?: string[];
|
|
50
53
|
/** Called when the user clicks Scan in the scanner popup. */
|
|
@@ -181,6 +184,9 @@ export declare type WidgetIccandleProps = {
|
|
|
181
184
|
* Chart resolutions where the scanner popup is shown.
|
|
182
185
|
* If set, the popup is hidden when the chart interval is outside this list.
|
|
183
186
|
* Also used to gate pattern date-range drawing.
|
|
187
|
+
* Ignored in pattern mode (`isShowScanButton={false}`), which always uses
|
|
188
|
+
* `PATTERN_SCANNER_INTERVALS` (`1`…`1D`, no `1W`/`1M`).
|
|
189
|
+
* Tracker is always hidden on `1W`/`1M` (same allowlist as scanner settings).
|
|
184
190
|
*/
|
|
185
191
|
availableIntervals?: string[];
|
|
186
192
|
/** Called when the user clicks Scan in the scanner popup. */
|