Skip to content

Commit d05dbbb

Browse files
committed
Fix linting issue
1 parent c4325cd commit d05dbbb

File tree

6 files changed

+355
-184
lines changed

6 files changed

+355
-184
lines changed

dist/src/fusioncharts.component.d.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import { ElementRef, OnInit, KeyValueDiffers } from '@angular/core';
2-
export declare class FusionChartsComponent implements OnInit {
1+
import { ElementRef, OnInit, OnChanges, DoCheck, AfterViewInit, OnDestroy, KeyValueDiffers } from '@angular/core';
2+
export declare class FusionChartsComponent implements OnInit, OnChanges, DoCheck, AfterViewInit, OnDestroy {
33
private differs;
44
element: ElementRef;
55
chartObj: any;
66
dataSource: any;
7-
private oldDataSource;
87
type: string;
98
id: string;
109
width: string;
@@ -61,14 +60,18 @@ export declare class FusionChartsComponent implements OnInit {
6160
loadMessageImageAlpha: number;
6261
loadMessageImageScale: number;
6362
chartConfig: string;
63+
private containerId;
64+
private configObj;
65+
private oldDataSource;
66+
private constructerParams;
6467
constructor(differs: KeyValueDiffers, element: ElementRef);
6568
ngOnInit(): void;
6669
ngOnChanges(changes: any): void;
6770
ngDoCheck(): void;
6871
updateChartData(): void;
6972
updateWidth(): void;
7073
updateHeight(): void;
74+
updateType(): void;
7175
ngAfterViewInit(): void;
72-
getDataSource(): any;
7376
ngOnDestroy(): void;
7477
}

dist/src/fusioncharts.component.js

Lines changed: 104 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/fusioncharts.component.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"scripts": {
55
"build": "ngc -p tsconfig.json",
6-
"lint": "tslint src/**/*.ts",
6+
"lint": "tslint src/*.ts",
77
"test": "tsc && karma start",
88
"prepublish": "tsc",
99
"tsc": "rm -rf ./dist && tsc"
@@ -16,11 +16,13 @@
1616
"name": "FusionCharts",
1717
"email": "[email protected]"
1818
},
19-
"contributors": [{
19+
"contributors": [
20+
{
2021
"name": "Rohit Kumar",
2122
"email": "[email protected]",
2223
"url": "https://github.com/rohitkr"
23-
}],
24+
}
25+
],
2426
"keywords": [
2527
"angular"
2628
],
@@ -46,7 +48,8 @@
4648
"codelyzer": "^2.0.0-beta.4",
4749
"rxjs": "^5.1.0",
4850
"tslint": "^4.4.2",
49-
"typescript": "^2.1.5",
51+
"typescript": "^2.1.6",
52+
"zone": "^0.3.4",
5053
"zone.js": "^0.7.6"
5154
},
5255
"engines": {

0 commit comments

Comments
 (0)