@luxalgo/vela 0.6.7 → 0.6.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/widget.d.cts CHANGED
@@ -1,8 +1,8 @@
1
- import { V as Vela, W as WidgetContext, A as SidePanelButton } from './contributions-Hv4_cOJo.cjs';
2
- export { C as CellStateContext, as as DEFAULT_PANEL_ORDER, E as ExternalIndicatorEntry, O as OVERRIDABLE_TOPBAR_IDS, G as SidePanelDescriptor, H as SidePanelHandle, K as StatePersistenceHandler, U as SymbolRankingHook, $ as WidgetActionDescriptor, a0 as WidgetActionTarget, a1 as WidgetAttachment, a9 as registerSidePanel, aa as registerStatePersistence, ab as registerSymbolRanking, ac as registerWidgetAction, ad as registerWidgetAttachment, af as sidePanels, ag as statePersistenceHandlers, ah as symbolRanking, ai as topbarActionOverride, am as unregisterSidePanel, an as unregisterStatePersistence, ao as unregisterWidgetAction, ap as unregisterWidgetAttachment, aq as widgetActions, ar as widgetAttachments } from './contributions-Hv4_cOJo.cjs';
1
+ import { V as Vela, W as WidgetContext, A as SidePanelButton } from './contributions-Vw-Hm58R.cjs';
2
+ export { C as CellStateContext, as as DEFAULT_PANEL_ORDER, E as ExternalIndicatorEntry, O as OVERRIDABLE_TOPBAR_IDS, G as SidePanelDescriptor, H as SidePanelHandle, K as StatePersistenceHandler, U as SymbolRankingHook, $ as WidgetActionDescriptor, a0 as WidgetActionTarget, a1 as WidgetAttachment, a9 as registerSidePanel, aa as registerStatePersistence, ab as registerSymbolRanking, ac as registerWidgetAction, ad as registerWidgetAttachment, af as sidePanels, ag as statePersistenceHandlers, ah as symbolRanking, ai as topbarActionOverride, am as unregisterSidePanel, an as unregisterStatePersistence, ao as unregisterWidgetAction, ap as unregisterWidgetAttachment, aq as widgetActions, ar as widgetAttachments } from './contributions-Vw-Hm58R.cjs';
3
3
  import { b as VelaOptions, d as MarketSession, T as ThemeName, c as VelaTheme, r as DataWindowReadout } from './options-BaVTMXaO.cjs';
4
- import { b as VelaShellOptions, W as WidgetHistory, a as RangePreset, e as WorkspaceState, i as TopbarComposition, P as PanelsState } from './bottombar-Div5zibZ.cjs';
5
- export { B as Bottombar, j as BottombarOptions, C as CellState, f as ChartState, I as IndicatorLoader, k as IndicatorManifest, l as IndicatorManifestEntry, m as RANGE_PRESETS, R as ResolvedIndicator, n as ResolvedTopbarComposition, o as TOPBAR_BUILTIN_IDS, p as TOPBAR_DEFAULT_LEFT, q as TOPBAR_DEFAULT_RIGHT, V as VelaStorage, r as WidgetStorage, g as decodeState, h as encodeState, t as localStorageAdapter, u as pinnedTopbarActionIds, v as resolveIndicators, w as resolveTopbarComposition, s as sanitizeState, x as topbarHas } from './bottombar-Div5zibZ.cjs';
4
+ import { c as VelaShellOptions, W as WidgetHistory, b as RangePreset, f as WorkspaceState, j as TopbarComposition, P as PanelsState } from './statusline-DqzBqy42.cjs';
5
+ export { B as Bottombar, k as BottombarOptions, C as CellState, g as ChartState, I as IndicatorLoader, l as IndicatorManifest, m as IndicatorManifestEntry, n as RANGE_PRESETS, R as ResolvedIndicator, o as ResolvedTopbarComposition, p as Statusline, q as TOPBAR_BUILTIN_IDS, r as TOPBAR_DEFAULT_LEFT, t as TOPBAR_DEFAULT_RIGHT, V as VelaStorage, u as WidgetStorage, h as decodeState, i as encodeState, v as localStorageAdapter, w as pinnedTopbarActionIds, x as resolveIndicators, y as resolveTopbarComposition, s as sanitizeState, z as topbarHas } from './statusline-DqzBqy42.cjs';
6
6
  import { K as KeymapManager } from './keymap-CGOz5F5f.cjs';
7
7
  import { a as SymbolDescriptor } from './DataProvider-BsQM2WNH.cjs';
8
8
  import { d as SidePanel } from './side-panel-CT9ZwIGz.cjs';
@@ -146,6 +146,11 @@ declare class Topbar {
146
146
  /** Overrides that LEFT their native slot (default side + a declared `order`) — they
147
147
  * render through the flow cluster like ordinary actions. */
148
148
  private readonly flowingOverrides;
149
+ /** Tooltips of the CURRENT icon-only action buttons — rebuilt with every
150
+ * renderActions pass (contributed buttons are replaceChildren'd away). */
151
+ private actionTooltips;
152
+ /** `iconOnly` misuse warned once per action id (renderActions re-runs freely). */
153
+ private readonly warnedIconless;
149
154
  private readonly opts;
150
155
  private timeframe;
151
156
  private priceStyle;
@@ -191,84 +196,6 @@ declare class Topbar {
191
196
  private styleItems;
192
197
  }
193
198
 
194
- /** How the status line reads a bar out: the four O/H/L/C values (bar-shaped styles),
195
- * or the single plotted value — the close — for one-line styles (line/area/baseline). */
196
- type StatuslineReadout = 'ohlc' | 'value';
197
- /** The market session states the status badge can wear. Crypto venues trade
198
- * continuously and stay 'open'; the full vocabulary is ready for providers that
199
- * carry a session model (equities RTH/ETH, exchange holidays). */
200
- type MarketStatus = 'open' | 'pre' | 'post' | 'closed' | 'holiday';
201
- declare class Statusline {
202
- private readonly host;
203
- /** The avatar's icon URL for a raw symbol — the shell routes it to the owning
204
- * provider's `resolveSymbolIcon`. Absent ⇒ the initials badge. */
205
- private readonly iconFor?;
206
- readonly el: HTMLElement;
207
- private readonly ohlcEl;
208
- private readonly changeEl;
209
- private readonly symbolEl;
210
- private readonly marketEl;
211
- private marketTip;
212
- private avatarEl;
213
- private metaEl;
214
- private readonly parts;
215
- private lastBar;
216
- private hoverBar;
217
- private unsubs;
218
- /** Up/down ink for the OHLC + change values — the ACTIVE price style's configured
219
- * colors (candle bodies, bar ticks, the line color, …); null falls back to the theme
220
- * tokens. `isUp` overrides the close-vs-open direction rule where the style paints by
221
- * something else (baseline: position against the baseline price). */
222
- private upColor;
223
- private downColor;
224
- private isUp;
225
- /** 'ohlc' for bar-shaped styles; 'value' (the single plotted close) for line styles. */
226
- private readout;
227
- /** Fit mode (multi-chart cells): one row, overflowing segments hidden — see {@link setFitMode}. */
228
- private fitMode;
229
- private fitRO;
230
- constructor(host: HTMLElement, symbol: string,
231
- /** The avatar's icon URL for a raw symbol — the shell routes it to the owning
232
- * provider's `resolveSymbolIcon`. Absent ⇒ the initials badge. */
233
- iconFor?: ((symbol: string) => string | undefined) | undefined);
234
- setSymbol(symbol: string): void;
235
- /**
236
- * Multi-chart cells: keep the line on ONE row whatever the cell width — never wrap.
237
- * Segments that don't fit are hidden outright rather than clipped mid-glyph, least
238
- * important first: OHLC, then the bar change, the venue/timeframe meta, and the
239
- * market badge; the logo + ticker always stay. Re-fits live on host resizes.
240
- */
241
- setFitMode(on: boolean): void;
242
- /** Project the parts config onto the segments (the baseline fit() prunes from). */
243
- private syncParts;
244
- /** Hide overflowing segments until the row fits its max-width (fit mode only). */
245
- private fit;
246
- /** Shape + color the value readout after the active price style: its own up/down
247
- * colors (candle bodies, bar ticks, the line color, …), the direction rule that
248
- * picks between them (`isUp` replaces close-vs-open where the style paints by
249
- * something else — baseline by position), and whether the readout is the four
250
- * O/H/L/C values or the single plotted value (one-line styles). Null colors fall
251
- * back to the theme's up/down tokens. See {@link statuslineInkOf}, which derives
252
- * all of it from the live renderer. */
253
- setDirectionColors(up: string | null, down: string | null, isUp?: ((bar: {
254
- open: number;
255
- close: number;
256
- }) => boolean) | null, readout?: StatuslineReadout): void;
257
- /** Show/hide one part (the settings dialog's Status line tab drives these). */
258
- /** The "· BINANCE · 1h" segment after the symbol — venue first, then resolution. */
259
- setMeta(timeframe: string, provider: string): void;
260
- /** Dress the market badge for a session state: its icon, tinted circle, and the
261
- * hover label. Callers with no session model leave the constructor's 'open'. */
262
- setMarketStatus(status: MarketStatus): void;
263
- setPartVisible(part: 'name' | 'market' | 'ohlc' | 'change', visible: boolean): void;
264
- partVisible(part: 'name' | 'market' | 'ohlc' | 'change'): boolean;
265
- /** (Re)bind to a chart instance — called after every widget rebuild. */
266
- onChart(chart: Vela): void;
267
- destroy(): void;
268
- private detach;
269
- private render;
270
- }
271
-
272
199
  declare class Watermark {
273
200
  readonly el: HTMLElement;
274
201
  private readonly text;
@@ -727,4 +654,4 @@ declare function fmtPrice(n: number | null | undefined, dp?: number): string;
727
654
  /** Signed change + percent ("+123.45 (+1.23%)") from open→close; `''` when unavailable. */
728
655
  declare function fmtChange(open: number | null | undefined, close: number | null | undefined): string;
729
656
 
730
- export { type BuiltInPanel, ChartContextMenu, type ContextMenuCallbacks, DataWindow, type DataWindowLine, type DataWindowSection, IndicatorPicker, type IndicatorPickerOptions, type IndicatorRow, ObjectTree, type PanelChrome, PanelDock, type PanelDockDeps, PanelsState, type ParsedTimeframe, RangePreset, ShortcutsHelp, SidePanel, SidePanelButton, Statusline, SymbolPicker, type SymbolPickerOptions, TIMEZONES, TimeframeQuick, type TimeframeQuickOptions, type TimezoneEntry, Topbar, TopbarComposition, type TopbarOptions, VelaShellOptions, VelaWidget, type VelaWidgetOptions, Watermark, WidgetContext, WorkspaceState, dataWindowSections, decimalsFor, filterSymbols, fmtChange, fmtPrice, normalizeTimezone, parseTimeframe, priceStyleLabel, timeframeLabel, timeframeMs, tzButtonLabel, tzMenuLabel, tzOffset };
657
+ export { type BuiltInPanel, ChartContextMenu, type ContextMenuCallbacks, DataWindow, type DataWindowLine, type DataWindowSection, IndicatorPicker, type IndicatorPickerOptions, type IndicatorRow, ObjectTree, type PanelChrome, PanelDock, type PanelDockDeps, PanelsState, type ParsedTimeframe, RangePreset, ShortcutsHelp, SidePanel, SidePanelButton, SymbolPicker, type SymbolPickerOptions, TIMEZONES, TimeframeQuick, type TimeframeQuickOptions, type TimezoneEntry, Topbar, TopbarComposition, type TopbarOptions, VelaShellOptions, VelaWidget, type VelaWidgetOptions, Watermark, WidgetContext, WorkspaceState, dataWindowSections, decimalsFor, filterSymbols, fmtChange, fmtPrice, normalizeTimezone, parseTimeframe, priceStyleLabel, timeframeLabel, timeframeMs, tzButtonLabel, tzMenuLabel, tzOffset };
package/dist/widget.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { V as Vela, W as WidgetContext, A as SidePanelButton } from './contributions-Z12BrWCy.js';
2
- export { C as CellStateContext, as as DEFAULT_PANEL_ORDER, E as ExternalIndicatorEntry, O as OVERRIDABLE_TOPBAR_IDS, G as SidePanelDescriptor, H as SidePanelHandle, K as StatePersistenceHandler, U as SymbolRankingHook, $ as WidgetActionDescriptor, a0 as WidgetActionTarget, a1 as WidgetAttachment, a9 as registerSidePanel, aa as registerStatePersistence, ab as registerSymbolRanking, ac as registerWidgetAction, ad as registerWidgetAttachment, af as sidePanels, ag as statePersistenceHandlers, ah as symbolRanking, ai as topbarActionOverride, am as unregisterSidePanel, an as unregisterStatePersistence, ao as unregisterWidgetAction, ap as unregisterWidgetAttachment, aq as widgetActions, ar as widgetAttachments } from './contributions-Z12BrWCy.js';
1
+ import { V as Vela, W as WidgetContext, A as SidePanelButton } from './contributions-DLLdV9jD.js';
2
+ export { C as CellStateContext, as as DEFAULT_PANEL_ORDER, E as ExternalIndicatorEntry, O as OVERRIDABLE_TOPBAR_IDS, G as SidePanelDescriptor, H as SidePanelHandle, K as StatePersistenceHandler, U as SymbolRankingHook, $ as WidgetActionDescriptor, a0 as WidgetActionTarget, a1 as WidgetAttachment, a9 as registerSidePanel, aa as registerStatePersistence, ab as registerSymbolRanking, ac as registerWidgetAction, ad as registerWidgetAttachment, af as sidePanels, ag as statePersistenceHandlers, ah as symbolRanking, ai as topbarActionOverride, am as unregisterSidePanel, an as unregisterStatePersistence, ao as unregisterWidgetAction, ap as unregisterWidgetAttachment, aq as widgetActions, ar as widgetAttachments } from './contributions-DLLdV9jD.js';
3
3
  import { b as VelaOptions, d as MarketSession, T as ThemeName, c as VelaTheme, r as DataWindowReadout } from './options-BaVTMXaO.js';
4
- import { b as VelaShellOptions, W as WidgetHistory, a as RangePreset, e as WorkspaceState, i as TopbarComposition, P as PanelsState } from './bottombar-Br4rzx_R.js';
5
- export { B as Bottombar, j as BottombarOptions, C as CellState, f as ChartState, I as IndicatorLoader, k as IndicatorManifest, l as IndicatorManifestEntry, m as RANGE_PRESETS, R as ResolvedIndicator, n as ResolvedTopbarComposition, o as TOPBAR_BUILTIN_IDS, p as TOPBAR_DEFAULT_LEFT, q as TOPBAR_DEFAULT_RIGHT, V as VelaStorage, r as WidgetStorage, g as decodeState, h as encodeState, t as localStorageAdapter, u as pinnedTopbarActionIds, v as resolveIndicators, w as resolveTopbarComposition, s as sanitizeState, x as topbarHas } from './bottombar-Br4rzx_R.js';
4
+ import { c as VelaShellOptions, W as WidgetHistory, b as RangePreset, f as WorkspaceState, j as TopbarComposition, P as PanelsState } from './statusline-CGkB2EOo.js';
5
+ export { B as Bottombar, k as BottombarOptions, C as CellState, g as ChartState, I as IndicatorLoader, l as IndicatorManifest, m as IndicatorManifestEntry, n as RANGE_PRESETS, R as ResolvedIndicator, o as ResolvedTopbarComposition, p as Statusline, q as TOPBAR_BUILTIN_IDS, r as TOPBAR_DEFAULT_LEFT, t as TOPBAR_DEFAULT_RIGHT, V as VelaStorage, u as WidgetStorage, h as decodeState, i as encodeState, v as localStorageAdapter, w as pinnedTopbarActionIds, x as resolveIndicators, y as resolveTopbarComposition, s as sanitizeState, z as topbarHas } from './statusline-CGkB2EOo.js';
6
6
  import { K as KeymapManager } from './keymap-CGOz5F5f.js';
7
7
  import { a as SymbolDescriptor } from './DataProvider-BSLlBpB9.js';
8
8
  import { d as SidePanel } from './side-panel-CT9ZwIGz.js';
@@ -146,6 +146,11 @@ declare class Topbar {
146
146
  /** Overrides that LEFT their native slot (default side + a declared `order`) — they
147
147
  * render through the flow cluster like ordinary actions. */
148
148
  private readonly flowingOverrides;
149
+ /** Tooltips of the CURRENT icon-only action buttons — rebuilt with every
150
+ * renderActions pass (contributed buttons are replaceChildren'd away). */
151
+ private actionTooltips;
152
+ /** `iconOnly` misuse warned once per action id (renderActions re-runs freely). */
153
+ private readonly warnedIconless;
149
154
  private readonly opts;
150
155
  private timeframe;
151
156
  private priceStyle;
@@ -191,84 +196,6 @@ declare class Topbar {
191
196
  private styleItems;
192
197
  }
193
198
 
194
- /** How the status line reads a bar out: the four O/H/L/C values (bar-shaped styles),
195
- * or the single plotted value — the close — for one-line styles (line/area/baseline). */
196
- type StatuslineReadout = 'ohlc' | 'value';
197
- /** The market session states the status badge can wear. Crypto venues trade
198
- * continuously and stay 'open'; the full vocabulary is ready for providers that
199
- * carry a session model (equities RTH/ETH, exchange holidays). */
200
- type MarketStatus = 'open' | 'pre' | 'post' | 'closed' | 'holiday';
201
- declare class Statusline {
202
- private readonly host;
203
- /** The avatar's icon URL for a raw symbol — the shell routes it to the owning
204
- * provider's `resolveSymbolIcon`. Absent ⇒ the initials badge. */
205
- private readonly iconFor?;
206
- readonly el: HTMLElement;
207
- private readonly ohlcEl;
208
- private readonly changeEl;
209
- private readonly symbolEl;
210
- private readonly marketEl;
211
- private marketTip;
212
- private avatarEl;
213
- private metaEl;
214
- private readonly parts;
215
- private lastBar;
216
- private hoverBar;
217
- private unsubs;
218
- /** Up/down ink for the OHLC + change values — the ACTIVE price style's configured
219
- * colors (candle bodies, bar ticks, the line color, …); null falls back to the theme
220
- * tokens. `isUp` overrides the close-vs-open direction rule where the style paints by
221
- * something else (baseline: position against the baseline price). */
222
- private upColor;
223
- private downColor;
224
- private isUp;
225
- /** 'ohlc' for bar-shaped styles; 'value' (the single plotted close) for line styles. */
226
- private readout;
227
- /** Fit mode (multi-chart cells): one row, overflowing segments hidden — see {@link setFitMode}. */
228
- private fitMode;
229
- private fitRO;
230
- constructor(host: HTMLElement, symbol: string,
231
- /** The avatar's icon URL for a raw symbol — the shell routes it to the owning
232
- * provider's `resolveSymbolIcon`. Absent ⇒ the initials badge. */
233
- iconFor?: ((symbol: string) => string | undefined) | undefined);
234
- setSymbol(symbol: string): void;
235
- /**
236
- * Multi-chart cells: keep the line on ONE row whatever the cell width — never wrap.
237
- * Segments that don't fit are hidden outright rather than clipped mid-glyph, least
238
- * important first: OHLC, then the bar change, the venue/timeframe meta, and the
239
- * market badge; the logo + ticker always stay. Re-fits live on host resizes.
240
- */
241
- setFitMode(on: boolean): void;
242
- /** Project the parts config onto the segments (the baseline fit() prunes from). */
243
- private syncParts;
244
- /** Hide overflowing segments until the row fits its max-width (fit mode only). */
245
- private fit;
246
- /** Shape + color the value readout after the active price style: its own up/down
247
- * colors (candle bodies, bar ticks, the line color, …), the direction rule that
248
- * picks between them (`isUp` replaces close-vs-open where the style paints by
249
- * something else — baseline by position), and whether the readout is the four
250
- * O/H/L/C values or the single plotted value (one-line styles). Null colors fall
251
- * back to the theme's up/down tokens. See {@link statuslineInkOf}, which derives
252
- * all of it from the live renderer. */
253
- setDirectionColors(up: string | null, down: string | null, isUp?: ((bar: {
254
- open: number;
255
- close: number;
256
- }) => boolean) | null, readout?: StatuslineReadout): void;
257
- /** Show/hide one part (the settings dialog's Status line tab drives these). */
258
- /** The "· BINANCE · 1h" segment after the symbol — venue first, then resolution. */
259
- setMeta(timeframe: string, provider: string): void;
260
- /** Dress the market badge for a session state: its icon, tinted circle, and the
261
- * hover label. Callers with no session model leave the constructor's 'open'. */
262
- setMarketStatus(status: MarketStatus): void;
263
- setPartVisible(part: 'name' | 'market' | 'ohlc' | 'change', visible: boolean): void;
264
- partVisible(part: 'name' | 'market' | 'ohlc' | 'change'): boolean;
265
- /** (Re)bind to a chart instance — called after every widget rebuild. */
266
- onChart(chart: Vela): void;
267
- destroy(): void;
268
- private detach;
269
- private render;
270
- }
271
-
272
199
  declare class Watermark {
273
200
  readonly el: HTMLElement;
274
201
  private readonly text;
@@ -727,4 +654,4 @@ declare function fmtPrice(n: number | null | undefined, dp?: number): string;
727
654
  /** Signed change + percent ("+123.45 (+1.23%)") from open→close; `''` when unavailable. */
728
655
  declare function fmtChange(open: number | null | undefined, close: number | null | undefined): string;
729
656
 
730
- export { type BuiltInPanel, ChartContextMenu, type ContextMenuCallbacks, DataWindow, type DataWindowLine, type DataWindowSection, IndicatorPicker, type IndicatorPickerOptions, type IndicatorRow, ObjectTree, type PanelChrome, PanelDock, type PanelDockDeps, PanelsState, type ParsedTimeframe, RangePreset, ShortcutsHelp, SidePanel, SidePanelButton, Statusline, SymbolPicker, type SymbolPickerOptions, TIMEZONES, TimeframeQuick, type TimeframeQuickOptions, type TimezoneEntry, Topbar, TopbarComposition, type TopbarOptions, VelaShellOptions, VelaWidget, type VelaWidgetOptions, Watermark, WidgetContext, WorkspaceState, dataWindowSections, decimalsFor, filterSymbols, fmtChange, fmtPrice, normalizeTimezone, parseTimeframe, priceStyleLabel, timeframeLabel, timeframeMs, tzButtonLabel, tzMenuLabel, tzOffset };
657
+ export { type BuiltInPanel, ChartContextMenu, type ContextMenuCallbacks, DataWindow, type DataWindowLine, type DataWindowSection, IndicatorPicker, type IndicatorPickerOptions, type IndicatorRow, ObjectTree, type PanelChrome, PanelDock, type PanelDockDeps, PanelsState, type ParsedTimeframe, RangePreset, ShortcutsHelp, SidePanel, SidePanelButton, SymbolPicker, type SymbolPickerOptions, TIMEZONES, TimeframeQuick, type TimeframeQuickOptions, type TimezoneEntry, Topbar, TopbarComposition, type TopbarOptions, VelaShellOptions, VelaWidget, type VelaWidgetOptions, Watermark, WidgetContext, WorkspaceState, dataWindowSections, decimalsFor, filterSymbols, fmtChange, fmtPrice, normalizeTimezone, parseTimeframe, priceStyleLabel, timeframeLabel, timeframeMs, tzButtonLabel, tzMenuLabel, tzOffset };
package/dist/widget.js CHANGED
@@ -1,6 +1,6 @@
1
- import { VelaWorkspace } from './chunk-WVP4XV5A.js';
2
- export { Bottombar, ChartContextMenu, DataWindow, IndicatorPicker, ObjectTree, PanelDock, RANGE_PRESETS, ShortcutsHelp, Statusline, SymbolPicker, TimeframeQuick, Topbar, Watermark, dataWindowSections, decimalsFor, decodeState, encodeState, filterSymbols, fmtChange, fmtPrice, localStorageAdapter, parseTimeframe, priceStyleLabel, resolveIndicators, sanitizeState, timeframeLabel, timeframeMs } from './chunk-WVP4XV5A.js';
3
- export { TIMEZONES, normalizeTimezone, tzButtonLabel, tzMenuLabel, tzOffset } from './chunk-6WFKTAT4.js';
1
+ import { VelaWorkspace } from './chunk-N7LGMKCE.js';
2
+ export { Bottombar, ChartContextMenu, DataWindow, IndicatorPicker, ObjectTree, PanelDock, RANGE_PRESETS, ShortcutsHelp, Statusline, SymbolPicker, TimeframeQuick, Topbar, Watermark, dataWindowSections, decimalsFor, decodeState, encodeState, filterSymbols, fmtChange, fmtPrice, localStorageAdapter, parseTimeframe, priceStyleLabel, resolveIndicators, sanitizeState, timeframeLabel, timeframeMs } from './chunk-N7LGMKCE.js';
3
+ export { TIMEZONES, normalizeTimezone, tzButtonLabel, tzMenuLabel, tzOffset } from './chunk-SQETIBFU.js';
4
4
  export { DEFAULT_PANEL_MAX_WIDTH, DEFAULT_PANEL_MIN_WIDTH, DEFAULT_PANEL_ORDER, DEFAULT_PANEL_WIDTH, OVERRIDABLE_TOPBAR_IDS, SidePanel, TOPBAR_BUILTIN_IDS, TOPBAR_DEFAULT_LEFT, TOPBAR_DEFAULT_RIGHT, clampPanelWidth, pinnedTopbarActionIds, registerSidePanel, registerStatePersistence, registerSymbolRanking, registerWidgetAction, registerWidgetAttachment, resolveTopbarComposition, sidePanels, statePersistenceHandlers, symbolRanking, topbarActionOverride, topbarHas, unregisterSidePanel, unregisterStatePersistence, unregisterWidgetAction, unregisterWidgetAttachment, widgetActions, widgetAttachments } from './chunk-L3I2CCYO.js';
5
5
  import './chunk-2R7BANEM.js';
6
6
  import './chunk-OICPLNU7.js';