@fintatech/fintachart 3.1.0 → 3.1.1
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 +13 -0
- package/README.md +6 -6
- package/THIRD_PARTY_NOTICES.md +1 -1
- package/basic-objects.html +2 -6
- package/css/FintaChart.min.css +1 -1
- package/custom-indicator.html +2 -6
- package/d.ts/FintaChart.d.ts +490 -179
- package/d.ts/frameworks/bootstrap.v3.datetimepicker.d.ts +3 -3
- package/d.ts/frameworks/html2canvas.d.ts +0 -2
- package/d.ts/frameworks-modified/autocolumnlist.d.ts +8 -0
- package/d.ts/frameworks-modified/spectrum.d.ts +17 -26
- package/d.ts/frameworks-modified/toastr.d.ts +9 -10
- package/htmldialogs/Toolbar.html +2 -2
- package/index-dark.html +2 -6
- package/index.html +2 -6
- package/multiple-charts.html +2 -6
- package/package.json +1 -1
- package/scripts/FintaChart.min.js +2 -2
- package/scripts/frameworks/bootstrap.v3.datetimepicker.min.js +10 -10
- package/scripts/frameworks-modified/autocolumnlist.js +48 -0
- package/scripts/frameworks-modified/spectrum.js +187 -6
- package/scripts/frameworks-modified/switchery.js +1 -1
- package/scripts/frameworks-modified/toastr.js +283 -382
- package/d.ts/frameworks/jquery-i18next.d.ts +0 -14
- package/d.ts/frameworks/jquery-ui.d.ts +0 -1914
- package/d.ts/frameworks/jquery.d.ts +0 -3779
- package/d.ts/frameworks/jquery.ui.touch-punch.d.ts +0 -12
- package/d.ts/frameworks-modified/bootstrap-select.d.ts +0 -18
- package/d.ts/frameworks-modified/jquery.autocolumnlist.d.ts +0 -17
- package/d.ts/frameworks-modified/jquery.resizable.d.ts +0 -20
- package/scripts/frameworks/jquery-i18next.min.js +0 -1
- package/scripts/frameworks/jquery-ui.min.js +0 -8
- package/scripts/frameworks/jquery.min.js +0 -3
- package/scripts/frameworks/jquery.ui.touch-punch.min.js +0 -1
- package/scripts/frameworks-modified/bootstrap-select.js +0 -1024
- package/scripts/frameworks-modified/jquery.autocolumnlist.js +0 -48
- package/scripts/frameworks-modified/jquery.resizable.js +0 -229
package/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,23 @@ 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.1] - 2026-04-22
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Removed the jQuery dependency. All DOM, drag, and resize behavior is now implemented with native browser APIs (`DomUtils`, `Draggable`, `Resizable`).
|
|
13
|
+
- Improved scrollbar styling and zoom animation smoothness in the chart container.
|
|
14
|
+
- Refreshed documentation and HTML/React examples.
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
|
|
18
|
+
- `jquery`, `jquery-ui`, `jquery.ui.touch-punch`, `jquery-i18next`, and `bootstrap-select` runtime dependencies.
|
|
19
|
+
|
|
8
20
|
## [3.1.0] - 2026-04-18
|
|
9
21
|
|
|
10
22
|
### Added
|
|
11
23
|
|
|
12
24
|
- Initial public release of `@fintatech/fintachart`
|
|
13
25
|
|
|
26
|
+
[3.1.1]: https://github.com/fintatech/fintachart/releases/tag/v3.1.1
|
|
14
27
|
[3.1.0]: https://github.com/fintatech/fintachart/releases/tag/v3.1.0
|
package/README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<a href="https://fintatech.com" target="_blank">
|
|
3
|
-
<
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/fintatech/fintachart/master/.github/logo-dark.svg">
|
|
5
|
+
<img width="400" src="https://raw.githubusercontent.com/fintatech/fintachart/master/.github/logo.svg" alt="FintaChart logo">
|
|
6
|
+
</picture>
|
|
4
7
|
</a>
|
|
5
8
|
|
|
6
|
-
<h1>FintaChart</h1>
|
|
9
|
+
<h1>FintaChart™ — Financial Charting Library</h1>
|
|
7
10
|
|
|
8
11
|
[](https://www.npmjs.com/package/@fintatech/fintachart)
|
|
9
12
|
</div>
|
|
@@ -45,12 +48,9 @@ npm install @fintatech/fintachart
|
|
|
45
48
|
<link rel="stylesheet" href="node_modules/@fintatech/fintachart/css/FintaChart.min.css">
|
|
46
49
|
|
|
47
50
|
<!-- 2. Framework dependencies -->
|
|
48
|
-
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/jquery.min.js"></script>
|
|
49
|
-
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/jquery-ui.min.js"></script>
|
|
50
|
-
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/moment.min.js"></script>
|
|
51
51
|
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/Intl.min.js"></script>
|
|
52
|
+
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/moment.min.js"></script>
|
|
52
53
|
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/i18nextXHRBackend.min.js"></script>
|
|
53
|
-
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/jquery-i18next.min.js"></script>
|
|
54
54
|
|
|
55
55
|
<!-- 3. Main bundle -->
|
|
56
56
|
<script src="node_modules/@fintatech/fintachart/scripts/FintaChart.min.js"></script>
|
package/THIRD_PARTY_NOTICES.md
CHANGED
package/basic-objects.html
CHANGED
|
@@ -14,15 +14,11 @@
|
|
|
14
14
|
<link rel="stylesheet" href="css/external/jqNumericField.min.css">
|
|
15
15
|
<link rel="stylesheet" href="css/FintaChart.min.css">
|
|
16
16
|
|
|
17
|
-
<script src="scripts/frameworks/jquery.min.js"></script>
|
|
18
|
-
<script src="scripts/frameworks/jquery-ui.min.js"></script>
|
|
19
17
|
<script src="scripts/frameworks/Intl.min.js"></script>
|
|
20
18
|
<script src="scripts/frameworks/moment.min.js"></script>
|
|
21
19
|
<script src="scripts/frameworks/detectizr.min.js"></script>
|
|
22
20
|
<script src="scripts/frameworks/dom-to-image-more.min.js"></script>
|
|
23
21
|
<script src="scripts/frameworks/i18nextXHRBackend.min.js"></script>
|
|
24
|
-
<script src="scripts/frameworks/jquery-i18next.min.js"></script>
|
|
25
|
-
<script src="scripts/frameworks/jquery.ui.touch-punch.min.js"></script>
|
|
26
22
|
<script src="scripts/FintaChart.min.js"></script>
|
|
27
23
|
<script src="scripts/jsdataadapters/fileDataAdapter.js"></script>
|
|
28
24
|
<script src="scripts/jsdataadapters/restDataAdapter.js"></script>
|
|
@@ -60,7 +56,7 @@
|
|
|
60
56
|
FintaChart.ResourcePath.localization = 'localization/';
|
|
61
57
|
const datafeed = fileDatafeed;
|
|
62
58
|
|
|
63
|
-
|
|
59
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
64
60
|
datafeed.init().then(df => {
|
|
65
61
|
let config = {
|
|
66
62
|
chartContainer: '#chartContainer',
|
|
@@ -79,7 +75,7 @@
|
|
|
79
75
|
'4 Hours'/*, '1 Day', '1 Month', '1 Year'*/
|
|
80
76
|
]
|
|
81
77
|
};
|
|
82
|
-
const chart = window.globalChart =
|
|
78
|
+
const chart = window.globalChart = FintaChart.createChart(document.querySelector(config.chartContainer), config);
|
|
83
79
|
|
|
84
80
|
drawBasicObjects(chart)
|
|
85
81
|
});
|