@devexperts/dxcharts-lite 2.0.0 → 2.0.2
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/README.md +28 -29
- package/dist/chart/bootstrap.d.ts +7 -2
- package/dist/chart/bootstrap.js +2 -2
- package/dist/chart/chart.d.ts +2 -0
- package/dist/chart/chart.js +3 -1
- package/dist/chart/components/chart/candle-transformer.functions.d.ts +1 -0
- package/dist/chart/components/chart/candle-transformer.functions.js +1 -0
- package/dist/chart/components/chart/chart-base.model.d.ts +1 -1
- package/dist/chart/components/chart/chart-base.model.js +2 -2
- package/dist/chart/components/chart/chart.component.d.ts +6 -0
- package/dist/chart/components/chart/chart.component.js +10 -1
- package/dist/chart/components/chart/chart.model.d.ts +7 -1
- package/dist/chart/components/chart/chart.model.js +26 -6
- package/dist/chart/components/pane/pane-hit-test.controller.d.ts +2 -2
- package/dist/chart/components/pane/pane-hit-test.controller.js +5 -5
- package/dist/chart/components/pane/pane-manager.component.d.ts +2 -1
- package/dist/chart/components/pane/pane-manager.component.js +4 -3
- package/dist/chart/components/watermark/water-mark.component.js +1 -1
- package/dist/chart/components/y_axis/price_labels/last-candle-labels.provider.d.ts +4 -3
- package/dist/chart/components/y_axis/price_labels/last-candle-labels.provider.js +7 -6
- package/dist/chart/components/y_axis/y-axis.model.d.ts +1 -0
- package/dist/chart/components/y_axis/y-axis.model.js +2 -1
- package/dist/chart/inputlisteners/canvas-input-listener.component.d.ts +7 -0
- package/dist/chart/inputlisteners/canvas-input-listener.component.js +12 -1
- package/dist/chart/model/scale.model.d.ts +1 -1
- package/dist/chart/model/scale.model.js +11 -11
- package/dist/chart/model/scaling/auto-scale.model.d.ts +2 -4
- package/dist/chart/model/scaling/auto-scale.model.js +4 -10
- package/dist/dxchart.min.js +4 -4
- package/package.json +12 -1
- package/dist/chart/chart-container.d.ts +0 -18
- package/dist/chart/chart-container.js +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devexperts/dxcharts-lite",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "DXCharts Lite",
|
|
5
5
|
"author": "Devexperts Solutions IE Limited",
|
|
6
6
|
"license": "MPL 2.0",
|
|
@@ -99,5 +99,16 @@
|
|
|
99
99
|
"files": [
|
|
100
100
|
"dist/*"
|
|
101
101
|
],
|
|
102
|
+
"keywords": [
|
|
103
|
+
"javascript",
|
|
104
|
+
"finance",
|
|
105
|
+
"chart",
|
|
106
|
+
"charts",
|
|
107
|
+
"typescript",
|
|
108
|
+
"canvas",
|
|
109
|
+
"charting-library",
|
|
110
|
+
"charting",
|
|
111
|
+
"html5-charts"
|
|
112
|
+
],
|
|
102
113
|
"packageManager": "yarn@3.5.1"
|
|
103
114
|
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (C) 2019 - 2023 Devexperts Solutions IE Limited
|
|
3
|
-
* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
|
4
|
-
* If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
5
|
-
*/
|
|
6
|
-
import EventBus from './events/event-bus';
|
|
7
|
-
import { FullChartConfig } from './chart.config';
|
|
8
|
-
import { CanvasInputListenerComponent } from './inputlisteners/canvas-input-listener.component';
|
|
9
|
-
import { CanvasBoundsContainer } from './canvas/canvas-bounds-container';
|
|
10
|
-
/**
|
|
11
|
-
* Abstraction over ChartBootstrap and PL chart.
|
|
12
|
-
*/
|
|
13
|
-
export default interface ChartContainer {
|
|
14
|
-
bus: EventBus;
|
|
15
|
-
config: FullChartConfig;
|
|
16
|
-
canvasInputListener: CanvasInputListenerComponent;
|
|
17
|
-
canvasBoundsContainer: CanvasBoundsContainer;
|
|
18
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (C) 2019 - 2023 Devexperts Solutions IE Limited
|
|
3
|
-
* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
|
4
|
-
* If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
5
|
-
*/
|
|
6
|
-
export {};
|