@fintatech/fintachart 3.1.2 → 3.1.4
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 +24 -0
- package/css/FintaChart.min.css +1 -1
- package/d.ts/FintaChart.d.ts +13 -1
- package/localization/en.json +1 -0
- package/localization/uk.json +1 -0
- package/package.json +1 -1
- package/scripts/FintaChart.min.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ 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.4] - 2026-05-08
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- 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.
|
|
13
|
+
- 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).
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Internal axis-adapter cleanup: canvas size retrieval and per-axis height handling unified across `FloatingVerticalAxisAdapter`, `PercentageVerticalAxisAdapter`, `StaticVerticalAxisAdapter`, `HorizontalScale`, `VerticalAxis`, and `CanvasLayer`.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Built-in context-menu pane-move items now work for custom indicators (`ContextMenu`, `Indicator`).
|
|
22
|
+
- Chart visible range is now reset on symbol switch.
|
|
23
|
+
|
|
24
|
+
## [3.1.3] - 2026-05-06
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- Minor bug fixes and improvements.
|
|
29
|
+
|
|
8
30
|
## [3.1.2] - 2026-05-04
|
|
9
31
|
|
|
10
32
|
### Added
|
|
@@ -50,6 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
50
72
|
|
|
51
73
|
- Initial public release of `@fintatech/fintachart`
|
|
52
74
|
|
|
75
|
+
[3.1.4]: https://github.com/fintatech/fintachart/releases/tag/v3.1.4
|
|
76
|
+
[3.1.3]: https://github.com/fintatech/fintachart/releases/tag/v3.1.3
|
|
53
77
|
[3.1.2]: https://github.com/fintatech/fintachart/releases/tag/v3.1.2
|
|
54
78
|
[3.1.1]: https://github.com/fintatech/fintachart/releases/tag/v3.1.1
|
|
55
79
|
[3.1.0]: https://github.com/fintatech/fintachart/releases/tag/v3.1.0
|