pace-table-lib 1.0.75 → 1.0.77
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/PivotTable/NewPivotTable.types.d.ts +2 -0
- package/dist/components/PivotTable/PivotHelperFunctions.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/pace-table-lib.es.js +927 -1270
- package/dist/pace-table-lib.es.js.map +1 -1
- package/dist/pace-table-lib.umd.js +926 -1269
- package/dist/pace-table-lib.umd.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ColGroupInfo, PivotNode } from "./NewPivotTable.types";
|
|
2
2
|
export declare function parseColGroups(columnHeaders: string[]): ColGroupInfo[];
|
|
3
3
|
export declare function createRowTree(tableData: any, isRowHeaderVisible: boolean): PivotNode[];
|
|
4
|
-
export declare function createColumnHeaders(tableData: any, isRowTotalOn: boolean, isHeaderAtStart: boolean, isSparkLineVisible: boolean, isSlAtStart: boolean, sparkLineText: string): PivotNode[];
|
|
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[];
|
package/dist/index.d.ts
CHANGED