@fintatech/fintachart 3.1.4 → 3.1.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/CHANGELOG.md +29 -0
- package/css/FintaChart.min.css +1 -1
- package/d.ts/FintaChart.d.ts +224 -6
- package/localization/en.json +2 -1
- package/localization/uk.json +2 -1
- package/package.json +4 -2
- package/scripts/FintaChart.min.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ 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.6] - 2026-05-13
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Minor bug fixes and improvements.
|
|
13
|
+
|
|
14
|
+
## [3.1.5] - 2026-05-12
|
|
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
|
+
- 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.
|
|
26
|
+
- Improved `ColorPicker` initialization to wait for DOM attachment using `MutationObserver`, preventing crashes in delayed rendering scenarios.
|
|
27
|
+
- Scoped bundled CSS selectors for `[type="checkbox"]` to prevent aggressive styling of elements outside the chart container.
|
|
28
|
+
- Fullscreen mode support via the toolbar.
|
|
29
|
+
- `Indicator.isOverlay` property is now immutable after construction to ensure pane/scale stability.
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- `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.
|
|
34
|
+
|
|
8
35
|
## [3.1.4] - 2026-05-08
|
|
9
36
|
|
|
10
37
|
### Added
|
|
@@ -72,6 +99,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
72
99
|
|
|
73
100
|
- Initial public release of `@fintatech/fintachart`
|
|
74
101
|
|
|
102
|
+
[3.1.6]: https://github.com/fintatech/fintachart/releases/tag/v3.1.6
|
|
103
|
+
[3.1.5]: https://github.com/fintatech/fintachart/releases/tag/v3.1.5
|
|
75
104
|
[3.1.4]: https://github.com/fintatech/fintachart/releases/tag/v3.1.4
|
|
76
105
|
[3.1.3]: https://github.com/fintatech/fintachart/releases/tag/v3.1.3
|
|
77
106
|
[3.1.2]: https://github.com/fintatech/fintachart/releases/tag/v3.1.2
|