pace-table-lib 1.0.77 → 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.
- package/dist/components/PivotTable/PivotContextMenu.d.ts +19 -0
- package/dist/components/PivotTable/PivotHelperFunctions.d.ts +1 -1
- package/dist/components/StaticTable/StaticTableConst.d.ts +3 -1
- package/dist/pace-table-lib.es.js +9094 -15857
- package/dist/pace-table-lib.umd.js +67 -19877
- package/dist/stats.html +1 -1
- package/package.json +1 -1
- package/dist/pace-table-lib.es.js.map +0 -1
- package/dist/pace-table-lib.umd.js.map +0 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import "./PivotContextMenu.scss";
|
|
2
|
+
interface PivotContextMenuData {
|
|
3
|
+
visible: boolean;
|
|
4
|
+
x: number;
|
|
5
|
+
y: number;
|
|
6
|
+
}
|
|
7
|
+
interface PivotContextMenuProps {
|
|
8
|
+
contextMenuData: PivotContextMenuData;
|
|
9
|
+
hasColGroups: boolean;
|
|
10
|
+
hasRowGroups: boolean;
|
|
11
|
+
allColGroupsExpanded: boolean;
|
|
12
|
+
allRowGroupsExpanded: boolean;
|
|
13
|
+
onExpandColGroups: () => void;
|
|
14
|
+
onCollapseColGroups: () => void;
|
|
15
|
+
onExpandRowGroups: () => void;
|
|
16
|
+
onCollapseRowGroups: () => void;
|
|
17
|
+
}
|
|
18
|
+
declare const PivotContextMenu: ({ contextMenuData, hasColGroups, hasRowGroups, allColGroupsExpanded, allRowGroupsExpanded, onExpandColGroups, onCollapseColGroups, onExpandRowGroups, onCollapseRowGroups, }: PivotContextMenuProps) => import("react").ReactPortal | null;
|
|
19
|
+
export default PivotContextMenu;
|
|
@@ -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[];
|
|
@@ -91,7 +91,7 @@ export declare const SORT_FOR: {
|
|
|
91
91
|
ROW: string;
|
|
92
92
|
COLUMN: string;
|
|
93
93
|
};
|
|
94
|
-
export declare const
|
|
94
|
+
export declare const CONDITION_FORMATTING_OBJ: {
|
|
95
95
|
MAX_IN_TABLE: string;
|
|
96
96
|
MIN_IN_TABLE: string;
|
|
97
97
|
DUPLICATE: string;
|
|
@@ -100,4 +100,6 @@ export declare const CONDITION_FORMTTING_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
|
};
|