@tetacom/svg-charts 1.2.1 → 1.2.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/chart/chart/chart.component.d.ts +2 -1
- package/chart/chart-container/chart-container.component.d.ts +5 -6
- package/chart/chart-container/series/linear-series-base.d.ts +2 -2
- package/chart/chart-container/series/scatter-series/scatter-series.component.d.ts +0 -1
- package/chart/chart-container/x-axis/x-axis.component.d.ts +2 -4
- package/chart/core/axis/axis.d.ts +3 -0
- package/chart/model/i-broadcast-message.d.ts +2 -2
- package/chart/service/chart.service.d.ts +4 -0
- package/chart/service/scale.service.d.ts +2 -0
- package/esm2020/chart/base/series-base.component.mjs +3 -3
- package/esm2020/chart/chart/chart.component.mjs +12 -4
- package/esm2020/chart/chart-container/annotation/annotation.component.mjs +6 -6
- package/esm2020/chart/chart-container/chart-container.component.mjs +21 -30
- package/esm2020/chart/chart-container/crosshair/crosshair.component.mjs +3 -3
- package/esm2020/chart/chart-container/gridlines/gridlines.component.mjs +14 -8
- package/esm2020/chart/chart-container/plotband/plot-band.component.mjs +3 -3
- package/esm2020/chart/chart-container/plotline/plotline.component.mjs +3 -3
- package/esm2020/chart/chart-container/series/area-series/area-series.component.mjs +8 -8
- package/esm2020/chart/chart-container/series/bar/bar-series.component.mjs +8 -8
- package/esm2020/chart/chart-container/series/block-area-series/block-area-series.component.mjs +6 -6
- package/esm2020/chart/chart-container/series/block-series/block-series.component.mjs +6 -6
- package/esm2020/chart/chart-container/series/line/line-series.component.mjs +3 -3
- package/esm2020/chart/chart-container/series/linear-series-base.mjs +47 -41
- package/esm2020/chart/chart-container/series/scatter-series/scatter-series.component.mjs +6 -6
- package/esm2020/chart/chart-container/series-host/series-host.component.mjs +3 -3
- package/esm2020/chart/chart-container/tooltip/tooltip.component.mjs +3 -3
- package/esm2020/chart/chart-container/x-axis/x-axis.component.mjs +6 -30
- package/esm2020/chart/chart-container/y-axis/y-axis.component.mjs +6 -6
- package/esm2020/chart/chart.module.mjs +4 -4
- package/esm2020/chart/core/axis/axis.mjs +7 -1
- package/esm2020/chart/default/default-axis-config.mjs +2 -2
- package/esm2020/chart/directives/brushable.directive.mjs +5 -6
- package/esm2020/chart/directives/zoomable.directive.mjs +49 -16
- package/esm2020/chart/legend/legend.component.mjs +3 -3
- package/esm2020/chart/model/i-broadcast-message.mjs +2 -2
- package/esm2020/chart/service/broadcast.service.mjs +3 -3
- package/esm2020/chart/service/brush.service.mjs +23 -20
- package/esm2020/chart/service/chart.service.mjs +9 -4
- package/esm2020/chart/service/scale.service.mjs +137 -4
- package/esm2020/chart/service/zoom.service.mjs +5 -5
- package/fesm2015/tetacom-svg-charts.mjs +404 -231
- package/fesm2015/tetacom-svg-charts.mjs.map +1 -1
- package/fesm2020/tetacom-svg-charts.mjs +391 -225
- package/fesm2020/tetacom-svg-charts.mjs.map +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tetacom/svg-charts",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
6
|
+
"@angular/common": "^14.0.0",
|
|
7
|
+
"@angular/core": "^14.0.0",
|
|
8
8
|
"@tetacom/ng-components": "^1.0.41",
|
|
9
9
|
"d3": "^7.1.1"
|
|
10
10
|
},
|