pace-table-lib 1.0.65 → 1.0.67
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/dist/components/StaticTable/HelperFunctions.d.ts +1 -1
- package/dist/components/StaticTable/StaticTableConst.d.ts +5 -0
- package/dist/pace-table-lib.es.js +82 -53
- package/dist/pace-table-lib.es.js.map +1 -1
- package/dist/pace-table-lib.umd.js +82 -53
- package/dist/pace-table-lib.umd.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export declare function getFontStyleObj(stylePayload: any): CSSProperties;
|
|
|
10
10
|
export declare function interpolateColor(minColor: string, maxColor: string, ratio: number): string;
|
|
11
11
|
export declare function computeMatrix<T>(rawDataMatrix: number[][], mode: "All" | "Column-wise" | "Row-wise", transformFn: (v: number, min: number, max: number) => T): T[][];
|
|
12
12
|
export declare function compareVal(a: number, op: string, b: number): boolean;
|
|
13
|
-
export declare function applyConditionalFormatting(style: CSSProperties, conFormat?: any):
|
|
13
|
+
export declare function applyConditionalFormatting(style: CSSProperties | any, conFormat?: any): any;
|
|
14
14
|
export declare function applyFormat(obj: any, format: any): void;
|
|
15
15
|
export declare function getPercentageBy(dataValue: any, totalValue: any): number;
|
|
16
16
|
export declare function createBorder(bWidth: number, bType: string, bColor: string): string;
|
|
@@ -4,6 +4,11 @@ export declare const MONTHS_SHORT: string[];
|
|
|
4
4
|
export declare const MONTHS_FULL: string[];
|
|
5
5
|
export declare const DATE_FORMATS: string[];
|
|
6
6
|
export declare const EXCEL_EPOCH_OFFSET = 25569;
|
|
7
|
+
export declare const ICON_POSITION: {
|
|
8
|
+
Left: string;
|
|
9
|
+
Right: string;
|
|
10
|
+
OIcon: string;
|
|
11
|
+
};
|
|
7
12
|
export declare const DATE_FORMAT_OBJ: {
|
|
8
13
|
readonly DD_MM_YYYY: "DD-MM-YYYY";
|
|
9
14
|
readonly MM_DD_YYYY: "MM-DD-YYYY";
|