pace-table-lib 1.0.60 → 1.0.62

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.
@@ -5,7 +5,7 @@ export declare function getCleanString(dimensionMark: string): string;
5
5
  export declare function isFirstOccurrence(arr: string[][], index: number, level: number): boolean;
6
6
  export declare function getBgColorForCell(dataIndex: number, colorObj: BgColorObj): string;
7
7
  export declare function getBgColor(obj: any, type: "row" | "dataField" | "column"): BgColorObj;
8
- export declare function formatValue(value: any, format: string, decimalValues?: number, displayUnit?: DisplayUnitsType): any;
8
+ export declare function formatValue(value: any, format: any, decimalValues?: number, displayUnit?: DisplayUnitsType): any;
9
9
  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[][];