Skip to content

Commit 039a98e

Browse files
committed
angular-fusioncharts 4.0.1 release changes
1 parent 8f0c097 commit 039a98e

13 files changed

+14606
-11079
lines changed

README.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A simple and lightweight official Angular component for FusionCharts JavaScript charting library. angular-fusioncharts enables you to add JavaScript charts in your Angular application without any hassle.
44

5+
With the latest version of [email protected], we are now supporting Angular 14 & Angular 15 applications as well which was not supported till [email protected] The angular-fusioncharts 4.0.1 can be used with all the versions of FusionCharts till the v3.20.0.
6+
57
## [Demo](https://fusioncharts.github.io/angular-fusioncharts/)
68

79
- Github Repo: [https://github.com/fusioncharts/angular-fusioncharts](https://github.com/fusioncharts/angular-fusioncharts)
@@ -16,16 +18,22 @@ A simple and lightweight official Angular component for FusionCharts JavaScript
1618

1719
## Table of Contents
1820

19-
- [Getting Started](#getting-started)
20-
- [Requirements](#requirements)
21-
- [Installation](#installation)
22-
- [Working with chart API](#working-with-apis)
23-
- [Working with events](#working-with-events)
24-
- [Quick Start](#quick-start)
25-
- [Going Beyond Charts](#going-beyond-charts)
26-
- [Usage and Integration of FusionTime](#usage-and-integration-of-fusionTime)
27-
- [For Contributors](#for-contributors)
28-
- [Licensing](#licensing)
21+
- [angular-fusioncharts](#angular-fusioncharts)
22+
- [Demo](#demo)
23+
- [Table of Contents](#table-of-contents)
24+
- [Getting Started](#getting-started)
25+
- [Requirements](#requirements)
26+
- [Installation](#installation)
27+
- [Quick Start](#quick-start)
28+
- [Working with Events](#working-with-events)
29+
- [Working with APIs](#working-with-apis)
30+
- [Usage and integration of FusionTime](#usage-and-integration-of-fusiontime)
31+
- [Setup for FusionTime](#setup-for-fusiontime)
32+
- [Component code](#component-code)
33+
- [Template Code](#template-code)
34+
- [For Contributors](#for-contributors)
35+
- [Going Beyond Charts](#going-beyond-charts)
36+
- [Licensing](#licensing)
2937

3038
## Getting Started
3139

dist/LICENSE.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT
2+
License
3+
4+
Copyright (c) 2010-2022 Google LLC. https://angular.io/license
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a
7+
copy of this software and associated documentation files (the
8+
“Software”), to deal in the Software without restriction, including
9+
without limitation the rights to use, copy, ,modify, merge, publish,
10+
distribute, sublicense, and/or sell copies of the Software, and to permit
11+
persons to whom the Software is furnished to do so, subject to the
12+
following conditions:
13+
14+
The above copyright notice and this permission notice shall be included
15+
in all copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18+
OR
19+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

dist/README.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A simple and lightweight official Angular component for FusionCharts JavaScript charting library. angular-fusioncharts enables you to add JavaScript charts in your Angular application without any hassle.
44

5+
With the latest version of [email protected], we are now supporting Angular 14 & Angular 15 applications as well which was not supported till [email protected] The angular-fusioncharts 4.0.1 can be used with all the versions of FusionCharts till the v3.20.0.
6+
57
## [Demo](https://fusioncharts.github.io/angular-fusioncharts/)
68

79
- Github Repo: [https://github.com/fusioncharts/angular-fusioncharts](https://github.com/fusioncharts/angular-fusioncharts)
@@ -16,16 +18,22 @@ A simple and lightweight official Angular component for FusionCharts JavaScript
1618

1719
## Table of Contents
1820

19-
- [Getting Started](#getting-started)
20-
- [Requirements](#requirements)
21-
- [Installation](#installation)
22-
- [Working with chart API](#working-with-apis)
23-
- [Working with events](#working-with-events)
24-
- [Quick Start](#quick-start)
25-
- [Going Beyond Charts](#going-beyond-charts)
26-
- [Usage and Integration of FusionTime](#usage-and-integration-of-fusionTime)
27-
- [For Contributors](#for-contributors)
28-
- [Licensing](#licensing)
21+
- [angular-fusioncharts](#angular-fusioncharts)
22+
- [Demo](#demo)
23+
- [Table of Contents](#table-of-contents)
24+
- [Getting Started](#getting-started)
25+
- [Requirements](#requirements)
26+
- [Installation](#installation)
27+
- [Quick Start](#quick-start)
28+
- [Working with Events](#working-with-events)
29+
- [Working with APIs](#working-with-apis)
30+
- [Usage and integration of FusionTime](#usage-and-integration-of-fusiontime)
31+
- [Setup for FusionTime](#setup-for-fusiontime)
32+
- [Component code](#component-code)
33+
- [Template Code](#template-code)
34+
- [For Contributors](#for-contributors)
35+
- [Going Beyond Charts](#going-beyond-charts)
36+
- [Licensing](#licensing)
2937

3038
## Getting Started
3139

dist/dist/index.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@
4444
},
4545
"devDependencies": {},
4646
"peerDependencies": {
47-
"@angular/core": ">=12.2.17"
47+
"@angular/core": "^4.0.0",
48+
"reflect-metadata": "^0.1.8",
49+
"rxjs": "^5.0.1",
50+
"zone.js": "^0.8.16"
4851
},
4952
"engines": {
5053
"node": ">=4.4.1"

dist/src/fusioncharts.component.d.ts

+1-1
Large diffs are not rendered by default.

dist/src/fusioncharts.directive.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export declare class FusionChartsDirective {
44
private el;
55
constructor(el: ElementRef);
66
static ɵfac: i0.ɵɵFactoryDeclaration<FusionChartsDirective, never>;
7-
static ɵdir: i0.ɵɵDirectiveDeclaration<FusionChartsDirective, "[appFusionchartsDirective]", never, {}, {}, never>;
7+
static ɵdir: i0.ɵɵDirectiveDeclaration<FusionChartsDirective, "[appFusionchartsDirective]", never, {}, {}, never, never, false>;
88
}

dist/src/fusioncharts.pipe.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ import * as i0 from "@angular/core";
66
export declare class FusionChartsPipe implements PipeTransform {
77
transform(value: any, args?: any[]): string;
88
static ɵfac: i0.ɵɵFactoryDeclaration<FusionChartsPipe, never>;
9-
static ɵpipe: i0.ɵɵPipeDeclaration<FusionChartsPipe, "fusionchartsPipe">;
9+
static ɵpipe: i0.ɵɵPipeDeclaration<FusionChartsPipe, "fusionchartsPipe", false>;
1010
static ɵprov: i0.ɵɵInjectableDeclaration<FusionChartsPipe>;
1111
}

dist/src/fusioncharts.service.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-dist.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-fusioncharts",
3-
"version": "3.0.3",
3+
"version": "4.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/fusioncharts/angular-fusioncharts"

0 commit comments

Comments
 (0)