pace-table-lib 1.0.78 → 1.0.79

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.
@@ -1,5 +1,5 @@
1
1
  import { ColGroupInfo, PivotNode } from "./NewPivotTable.types";
2
2
  export declare function parseColGroups(columnHeaders: string[]): ColGroupInfo[];
3
- export declare function createRowTree(tableData: any, isRowHeaderVisible: boolean): PivotNode[];
3
+ export declare function createRowTree(tableData: any, isRowHeaderVisible: boolean, rowDateFormat?: any): PivotNode[];
4
4
  export declare function createColumnHeaders(tableData: any, isRowTotalOn: boolean, isHeaderAtStart: boolean, isSparkLineVisible: boolean, isSlAtStart: boolean, sparkLineText: string, colDateFormat: any): PivotNode[];
5
5
  export declare function getNumberArr(valArr?: (string | number)[]): number[];
@@ -100,4 +100,6 @@ export declare const CONDITION_FORMATTING_OBJ: {
100
100
  IN_BETWEEN: string;
101
101
  NOT_BETWEEN: string;
102
102
  CONTAINS: string;
103
+ TOP_N: string;
104
+ BOTTOM_N: string;
103
105
  };