@fintatech/fintachart 3.1.3 → 3.1.5
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/CHANGELOG.md +40 -0
- package/css/FintaChart.min.css +1 -1
- package/d.ts/FintaChart.d.ts +237 -7
- package/localization/en.json +3 -1
- package/localization/uk.json +3 -1
- package/package.json +4 -2
- package/scripts/FintaChart.min.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,44 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.1.5] - 2026-05-12
|
|
9
|
+
|
|
10
|
+
- Resolved `TypeError: Cannot read properties of null (reading 'appendChild')` when opening settings dialog for custom indicators by ensuring dialog panes are initialized before appending controls.
|
|
11
|
+
- Improved `ColorPicker` initialization to wait for DOM attachment using `MutationObserver`, preventing crashes in delayed rendering scenarios.
|
|
12
|
+
- Scoped bundled CSS selectors for `[type="checkbox"]` to prevent aggressive styling of elements outside the chart container.
|
|
13
|
+
- Fullscreen mode support via the toolbar.
|
|
14
|
+
- `Indicator.isOverlay` property is now immutable after construction to ensure pane/scale stability.
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `Indicator.bindToVerticalScale(verticalScale)` — public helper for overlay indicators to render on the price pane against their own y-axis (cycle composites, oscillators, ML signals).
|
|
19
|
+
- New example `examples/html/17-overlay-indicator-with-own-axis/` showing the integration recipe on a normalized cycle composite overlaid on price.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- `Indicator.dispose()` now removes a custom `verticalScale` and triggers a chart relayout when `_isCustomScale` is set, not just for built-in Volume.
|
|
24
|
+
- `Indicator.unmerge()` now strips a custom `verticalScale` when moving an overlay indicator into its own pane via the context menu, and reassigns plots to the default scale.
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- `VerticalAxis.layoutContentFrames()` left-side branch is now symmetric with the right side, so two or more left axes render side-by-side instead of stacking at canvas-x=0.
|
|
29
|
+
|
|
30
|
+
## [3.1.4] - 2026-05-08
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
|
|
34
|
+
- New example `examples/html/15-instrument-search/` demonstrating the toolbar search-modal integration — `FintaChart.Instrument.filter` (1-based pagination contract), `Instrument.filterById`, and `chart.exchanges()` for the filter tabs.
|
|
35
|
+
- Bar Replay mode now shows a "Click a bar to set the replay start point" hint when entering replay. New `ReplayModeText` UI component with localized strings (en, uk).
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- Internal axis-adapter cleanup: canvas size retrieval and per-axis height handling unified across `FloatingVerticalAxisAdapter`, `PercentageVerticalAxisAdapter`, `StaticVerticalAxisAdapter`, `HorizontalScale`, `VerticalAxis`, and `CanvasLayer`.
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
|
|
43
|
+
- Built-in context-menu pane-move items now work for custom indicators (`ContextMenu`, `Indicator`).
|
|
44
|
+
- Chart visible range is now reset on symbol switch.
|
|
45
|
+
|
|
8
46
|
## [3.1.3] - 2026-05-06
|
|
9
47
|
|
|
10
48
|
### Fixed
|
|
@@ -56,6 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
56
94
|
|
|
57
95
|
- Initial public release of `@fintatech/fintachart`
|
|
58
96
|
|
|
97
|
+
[3.1.5]: https://github.com/fintatech/fintachart/releases/tag/v3.1.5
|
|
98
|
+
[3.1.4]: https://github.com/fintatech/fintachart/releases/tag/v3.1.4
|
|
59
99
|
[3.1.3]: https://github.com/fintatech/fintachart/releases/tag/v3.1.3
|
|
60
100
|
[3.1.2]: https://github.com/fintatech/fintachart/releases/tag/v3.1.2
|
|
61
101
|
[3.1.1]: https://github.com/fintatech/fintachart/releases/tag/v3.1.1
|