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.
@@ -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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.5.8",
2
+ "version": "1.6.0",
3
3
  "main": "dist/index.js",
4
4
  "module": "dist/index.es.js",
5
5
  "types": "dist/index.d.ts",