simple-table-core 1.5.8 → 1.6.0
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/simple-table/RenderCells.d.ts +2 -1
- package/dist/components/simple-table/TableCell.d.ts +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types/TableCellProps.d.ts +1 -0
- package/dist/types/TableRow.d.ts +1 -0
- package/dist/utils/rowUtils.d.ts +2 -1
- package/package.json +1 -1
package/dist/utils/rowUtils.d.ts
CHANGED
|
@@ -25,11 +25,12 @@ export declare const hasNestedRows: (row: Row, groupingKey?: string) => boolean;
|
|
|
25
25
|
* Flatten rows recursively based on row grouping configuration
|
|
26
26
|
* Now calculates ALL properties including position and isLastGroupRow
|
|
27
27
|
*/
|
|
28
|
-
export declare const flattenRowsWithGrouping: ({ depth, expandAll, unexpandedRows, rowGrouping, rowIdAccessor, rows, }: {
|
|
28
|
+
export declare const flattenRowsWithGrouping: ({ depth, expandAll, unexpandedRows, rowGrouping, rowIdAccessor, rows, displayPositionOffset, }: {
|
|
29
29
|
depth?: number | undefined;
|
|
30
30
|
expandAll?: boolean | undefined;
|
|
31
31
|
unexpandedRows: Set<string>;
|
|
32
32
|
rowGrouping?: string[] | undefined;
|
|
33
33
|
rowIdAccessor: Accessor;
|
|
34
34
|
rows: Row[];
|
|
35
|
+
displayPositionOffset?: number | undefined;
|
|
35
36
|
}) => TableRow[];
|
package/package.json
CHANGED