Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
13ebd57
Merge branch 'hotfix/hotfix_branch_3.0.4'
rohanoid5 Dec 5, 2019
aa2a96a
commit for unstable version upgrade
scott1905 Dec 16, 2022
13e34c6
commit for unstable 8 version
scott1905 Dec 16, 2022
b6fa5ac
commit for unstable 8 version removed http
scott1905 Dec 16, 2022
5214d42
commit for stable version of angular 8
scott1905 Dec 16, 2022
e933aab
commit for unstable version 9
scott1905 Dec 16, 2022
82bf67e
commit for unstable version 10
scott1905 Dec 16, 2022
486061d
commit for stable version of angular 10
scott1905 Dec 16, 2022
d0a4da7
commit for unstable version of angular 11
scott1905 Dec 16, 2022
57539f1
commit for stable version of angular 11
scott1905 Dec 16, 2022
b1e1f40
commit for unstable version of angular 12
scott1905 Dec 16, 2022
f9474cc
commit for stable version of angular 12
scott1905 Dec 16, 2022
1735d2d
commit for unstable version of angular 13
scott1905 Dec 16, 2022
c39418f
commit for stable version of angular 13
scott1905 Dec 16, 2022
9a86847
commit for unstable version of angular 14
scott1905 Dec 16, 2022
c7552c2
commit for stable version of angular 14
scott1905 Dec 16, 2022
818bbc2
commit for unstable version of angular 15
scott1905 Dec 16, 2022
75d246a
commit for unstable version of angular 15 second part
scott1905 Dec 16, 2022
1596f8f
fix for ticket 2245 upgrading project to angular version 15
anthony-appwrk Dec 23, 2022
7f86dfc
commit to generate stable package version
anthony-appwrk Dec 27, 2022
e200f98
fixing angular package issue
anthony-appwrk Jan 19, 2023
3313e0e
added index.min.js
kaps001 Jan 19, 2023
d3b13b8
Corrected Peer Dependencies for the package
kaps001 Jan 19, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# You can see what browsers were selected by your queries by running:
# npx browserslist

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
21 changes: 0 additions & 21 deletions LICENSE.md

This file was deleted.

18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ A simple and lightweight official Angular component for FusionCharts JavaScript
- Issues: [https://github.com/fusioncharts/angular-fusioncharts/issues](https://github.com/fusioncharts/angular-fusioncharts/issues)

---
## Validation and Verification

The FusionCharts Angular integration component have been verified and validated with different versions of Fusioncharts (3.19 / 3.18 / 3.17) with Angular versions 11/12/13


## Table of Contents

Expand Down Expand Up @@ -369,19 +365,9 @@ Useful links for FusionTime

```
$ git clone https://github.com/fusioncharts/angular-fusioncharts.git
$ cd angular-fusioncharts
$ cd angular-component
$ npm i
$ npm start
$ npm run build

```

- For publishing

```
$ npm run build
$ npm publish dist

```

## Going Beyond Charts
Expand All @@ -391,4 +377,4 @@ $ npm publish dist

## Licensing

The FusionCharts Angular integration component is open-source and distributed under the terms of the MIT/X11 License. However, you will need to download and include FusionCharts library in your page separately, which has a [separate license](https://www.fusioncharts.com/buy).
The FusionCharts React component is open-source and distributed under the terms of the MIT/X11 License. However, you will need to download and include FusionCharts library in your page separately, which has a [separate license](https://www.fusioncharts.com/buy).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

React ?

124 changes: 124 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"angular-fusioncharts": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"allowedCommonJsDependencies": [
"ng2-codemirror",
"fusioncharts"
],
"outputPath": "dist/angular-fusioncharts",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": [],
"aot": false,
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "angular-fusioncharts:build"
},
"configurations": {
"production": {
"browserTarget": "angular-fusioncharts:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "angular-fusioncharts:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.css"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets"
]
}
}
}
},
"angular-fusioncharts-e2e": {
"root": "e2e/",
"projectType": "application",
"prefix": "",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "angular-fusioncharts:serve"
},
"configurations": {
"production": {
"devServerTarget": "angular-fusioncharts:serve:production"
}
}
}
}
}
}
}
14 changes: 2 additions & 12 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,19 +365,9 @@ Useful links for FusionTime

```
$ git clone https://github.com/fusioncharts/angular-fusioncharts.git
$ cd angular-fusioncharts
$ cd angular-component
$ npm i
$ npm start
$ npm run build

```

- For publishing

```
$ npm run build
$ npm publish dist

```

## Going Beyond Charts
Expand All @@ -387,4 +377,4 @@ $ npm publish dist

## Licensing

The FusionCharts Angular integration component is open-source and distributed under the terms of the MIT/X11 License. However, you will need to download and include FusionCharts library in your page separately, which has a [separate license](https://www.fusioncharts.com/buy).
The FusionCharts React component is open-source and distributed under the terms of the MIT/X11 License. However, you will need to download and include FusionCharts library in your page separately, which has a [separate license](https://www.fusioncharts.com/buy).
Loading