@tetacom/svg-charts 1.7.0 → 1.7.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/chart/base/series-base.component.d.ts +13 -13
- package/chart/chart-container/chart-container.component.d.ts +0 -3
- package/chart/chart-container/series/area-series/area-series.component.d.ts +6 -18
- package/chart/chart-container/series/bar/bar-series.component.d.ts +5 -21
- package/chart/chart-container/series/block-area-series/block-area-series.component.d.ts +3 -21
- package/chart/chart-container/series/block-horizontal-series/block-horizontal-series.component.d.ts +4 -21
- package/chart/chart-container/series/block-series/block-series.component.d.ts +4 -21
- package/chart/chart-container/series/line/line-series.component.d.ts +3 -12
- package/chart/chart-container/series/linear-series-base.component.d.ts +20 -0
- package/chart/chart-container/series/public-api.d.ts +1 -1
- package/chart/chart-container/series/scatter-series/scatter-series.component.d.ts +1 -21
- package/chart/chart-container/series-controls/series-controls.component.d.ts +23 -0
- package/chart/chart-container/series-host/series-host.component.d.ts +5 -6
- package/chart/legend/legend.component.d.ts +3 -3
- package/chart/model/i-chart-config.d.ts +4 -1
- package/chart/model/series.d.ts +1 -0
- package/chart/service/chart.service.d.ts +4 -3
- package/fesm2022/tetacom-svg-charts.mjs +352 -422
- package/fesm2022/tetacom-svg-charts.mjs.map +1 -1
- package/index.d.ts +0 -1
- package/package.json +3 -2
- package/chart/chart-container/series/linear-series-base.d.ts +0 -35
- package/observable/public-api.d.ts +0 -1
- package/observable/zoneObservable.d.ts +0 -5
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tetacom/svg-charts",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^19.0.5",
|
|
6
|
-
"@angular/core": "^19.0.5"
|
|
6
|
+
"@angular/core": "^19.0.5",
|
|
7
|
+
"@tetacom/ng-components": "^1.5.1"
|
|
7
8
|
},
|
|
8
9
|
"dependencies": {
|
|
9
10
|
"tslib": "^2.6.2"
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject, Observable } from 'rxjs';
|
|
3
|
-
import { SeriesBaseComponent } from '../../base/series-base.component';
|
|
4
|
-
import { BasePoint } from '../../model/base-point';
|
|
5
|
-
import { ClipPointsDirection } from '../../model/enum/clip-points-direction';
|
|
6
|
-
import { Series } from '../../model/series';
|
|
7
|
-
import { ChartService } from '../../service/chart.service';
|
|
8
|
-
import { ScaleService } from '../../service/scale.service';
|
|
9
|
-
import { ZoomService } from '../../service/zoom.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class LinearSeriesBase<T extends BasePoint> extends SeriesBaseComponent<T> implements OnInit, OnDestroy {
|
|
12
|
-
protected svc: ChartService;
|
|
13
|
-
protected cdr: ChangeDetectorRef;
|
|
14
|
-
protected scaleService: ScaleService;
|
|
15
|
-
protected zoomService: ZoomService;
|
|
16
|
-
protected element: ElementRef;
|
|
17
|
-
defaultClipPointsMapping: Map<ClipPointsDirection, (min: number, max: number) => (point: BasePoint, idx: number, arr: Array<BasePoint>) => {}>;
|
|
18
|
-
transform: Observable<Pick<BasePoint, 'x' | 'y'>>;
|
|
19
|
-
display: Observable<number>;
|
|
20
|
-
path: Observable<string>;
|
|
21
|
-
x: any;
|
|
22
|
-
y: any;
|
|
23
|
-
markers: BasePoint[];
|
|
24
|
-
private __series;
|
|
25
|
-
protected _update: BehaviorSubject<void>;
|
|
26
|
-
set series(series: Series<T>);
|
|
27
|
-
get series(): Series<T>;
|
|
28
|
-
constructor(svc: ChartService, cdr: ChangeDetectorRef, scaleService: ScaleService, zoomService: ZoomService, element: ElementRef);
|
|
29
|
-
ngOnInit(): void;
|
|
30
|
-
ngOnDestroy(): void;
|
|
31
|
-
ngAfterViewInit(): void;
|
|
32
|
-
getTransform(event: any, scaleX: any, scaleY: any): Pick<BasePoint, 'x' | 'y'>;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearSeriesBase<any>, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearSeriesBase<any>, "ng-component", never, { "series": { "alias": "series"; "required": false; }; }, {}, never, never, true, never>;
|
|
35
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './zoneObservable';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { NgZone } from '@angular/core';
|
|
2
|
-
import { MonoTypeOperatorFunction } from 'rxjs';
|
|
3
|
-
export declare function tetaZoneFull<T>(ngZone: NgZone): MonoTypeOperatorFunction<T>;
|
|
4
|
-
export declare function tetaZoneFree<T>(ngZone: NgZone): MonoTypeOperatorFunction<T>;
|
|
5
|
-
export declare function tetaZoneOptimized<T>(ngZone: NgZone): MonoTypeOperatorFunction<T>;
|