@devexperts/dxcharts-lite 2.7.31 → 2.7.33
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/chart/components/chart/price-formatters/__tests__/price.formatter.test.d.ts +6 -0
- package/dist/chart/components/chart/price-formatters/__tests__/price.formatter.test.js +150 -0
- package/dist/chart/components/chart/price-formatters/price.formatter.d.ts +1 -1
- package/dist/chart/components/chart/price-formatters/price.formatter.js +10 -3
- package/dist/chart/components/chart/price-formatters/treasury-price.formatter.d.ts +1 -1
- package/dist/chart/components/chart/price-formatters/treasury-price.formatter.js +7 -2
- package/dist/chart/components/cross_tool/types/cross-and-labels.drawer.js +1 -1
- package/dist/chart/components/highlights/highlights.drawer.d.ts +3 -4
- package/dist/chart/components/highlights/highlights.drawer.js +38 -29
- package/dist/chart/components/pane/extent/y-extent-component.d.ts +7 -2
- package/dist/chart/components/pane/extent/y-extent-component.js +9 -5
- package/dist/chart/components/pane/pane.component.d.ts +7 -5
- package/dist/chart/components/pane/pane.component.js +15 -4
- package/dist/chart/components/volumes/separate-volumes.component.d.ts +3 -1
- package/dist/chart/components/volumes/separate-volumes.component.js +19 -3
- package/dist/chart/components/volumes/volumes.component.d.ts +2 -0
- package/dist/chart/components/volumes/volumes.component.js +9 -0
- package/dist/chart/components/y_axis/price_labels/data-series-y-axis-labels.provider.js +1 -1
- package/dist/chart/components/y_axis/price_labels/last-candle-labels.provider.js +4 -1
- package/dist/chart/model/hit-test-canvas.model.d.ts +1 -1
- package/dist/chart/model/hit-test-canvas.model.js +1 -0
- package/dist/chart/model/scale.model.js +4 -0
- package/dist/chart/utils/math.utils.d.ts +2 -0
- package/dist/chart/utils/math.utils.js +8 -1
- package/dist/dxchart.min.js +4 -4
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devexperts/dxcharts-lite",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.33",
|
|
4
4
|
"description": "DXCharts Lite",
|
|
5
5
|
"author": "Devexperts Solutions IE Limited",
|
|
6
6
|
"license": "MPL 2.0",
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"@types/mocha": "10.0.10",
|
|
53
53
|
"@types/node": "24.12.2",
|
|
54
54
|
"@types/resize-observer-browser": "0.1.11",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "8.61.1",
|
|
56
56
|
"@typescript-eslint/parser": "8.58.1",
|
|
57
57
|
"chai": "6.2.2",
|
|
58
58
|
"commander": "14.0.3",
|
|
59
|
-
"esbuild": "0.28.
|
|
59
|
+
"esbuild": "0.28.1",
|
|
60
60
|
"esbuild-jest": "0.5.0",
|
|
61
61
|
"esbuild-loader": "4.4.3",
|
|
62
62
|
"eslint": "9.39.4",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"jest": "30.3.0",
|
|
72
72
|
"jest-canvas-mock": "2.5.2",
|
|
73
73
|
"jest-environment-jsdom": "30.3.0",
|
|
74
|
-
"lint-staged": "
|
|
75
|
-
"mocha": "11.7.
|
|
74
|
+
"lint-staged": "17.0.7",
|
|
75
|
+
"mocha": "11.7.6",
|
|
76
76
|
"node-html-parser": "7.1.0",
|
|
77
77
|
"pinst": "3.0.0",
|
|
78
78
|
"prettier": "3.8.2",
|
|
79
|
-
"puppeteer": "24.
|
|
79
|
+
"puppeteer": "24.43.1",
|
|
80
80
|
"rimraf": "6.1.3",
|
|
81
81
|
"ts-jest": "29.4.9",
|
|
82
82
|
"ts-node": "10.9.2",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"typescript": "5.9.3",
|
|
85
85
|
"webpack": "5.106.1",
|
|
86
86
|
"webpack-cli": "6.0.1",
|
|
87
|
-
"webpack-dev-server": "5.2.
|
|
87
|
+
"webpack-dev-server": "5.2.5"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"color": "4.2.3",
|