@rfprodz/client-d3-charts 1.2.4 → 1.2.6

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.
@@ -3,7 +3,7 @@ export interface IBarChartDataNode {
3
3
  title: string;
4
4
  value: number;
5
5
  }
6
- export declare type TBarChartData = IBarChartDataNode[];
6
+ export type TBarChartData = IBarChartDataNode[];
7
7
  export interface IBarChartOptions {
8
8
  chartTitle: string;
9
9
  width: number;
@@ -3,7 +3,7 @@ export interface ILineChartDataNode {
3
3
  timestamp: number;
4
4
  value: number;
5
5
  }
6
- export declare type TLineChartData = ILineChartDataNode[];
6
+ export type TLineChartData = ILineChartDataNode[];
7
7
  export interface ILineChartOptions {
8
8
  chartTitle: string;
9
9
  width: number;
@@ -4,7 +4,7 @@ export interface IRadarChartDataNode {
4
4
  value: number;
5
5
  unit: string;
6
6
  }
7
- export declare type TRadarChartData = IRadarChartDataNode[][];
7
+ export type TRadarChartData = IRadarChartDataNode[][];
8
8
  export interface IRadarChartOptions {
9
9
  chartTitle: string;
10
10
  width: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rfprodz/client-d3-charts",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Angular chart components based on D3JS (https://d3js.org).",
5
5
  "keywords": [
6
6
  "angular-charts",
@@ -24,10 +24,10 @@
24
24
  "tslib": "2.4.1"
25
25
  },
26
26
  "peerDependencies": {
27
- "@angular/common": "15.0.4",
28
- "@angular/core": "15.0.4",
27
+ "@angular/common": "15.1.0",
28
+ "@angular/core": "15.1.0",
29
29
  "@types/d3": "7.4.0",
30
- "d3": "7.6.1"
30
+ "d3": "7.8.1"
31
31
  },
32
32
  "module": "fesm2015/rfprodz-client-d3-charts.mjs",
33
33
  "es2020": "fesm2020/rfprodz-client-d3-charts.mjs",