gamma-app-controller 1.2.8 → 1.2.9
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/esm2020/lib/application-controller/common.mjs +18 -13
- package/fesm2015/gamma-app-controller.mjs +17 -12
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +17 -12
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/application-controller/common.d.ts +3 -2
- package/package.json +1 -1
|
@@ -68,7 +68,6 @@ export declare class CommonService {
|
|
|
68
68
|
JSONToCSVConvertor(JSONData: any, ReportTitle: any, ShowLabel: any): void;
|
|
69
69
|
createHtml(width: any, data: any, color: any): string;
|
|
70
70
|
scaleNumber(inputY: any, yMin: any, yMax: any, xMin: any, xMax: any): any;
|
|
71
|
-
ThousandSeparator(value: any): any;
|
|
72
71
|
reformatNumberWithThousandSeparator(value: any): any;
|
|
73
72
|
reformatNumberWithThousandSeparatorV2(value: any, exp: any): any;
|
|
74
73
|
reformatNumberWithThousandSeparatorV3(value: any, exp: any): string;
|
|
@@ -146,7 +145,9 @@ export declare class CommonService {
|
|
|
146
145
|
removeDuplicates(jobArray: any, context: any): any;
|
|
147
146
|
getKey: (obj: any) => string;
|
|
148
147
|
convertString(input: any): any;
|
|
149
|
-
|
|
148
|
+
formatNumberWithDecimalPlaces(value: any, numberOfDigits: number): any;
|
|
149
|
+
ThousandSeparatorWithTwoDecimals(value: any): any;
|
|
150
|
+
ThousandSeparator(value: any): any;
|
|
150
151
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommonService, never>;
|
|
151
152
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommonService>;
|
|
152
153
|
}
|