Defined in: core/rows/coreRowsFeature.types.ts:7
TFeatures extends TableFeatures
TData extends RowData
_uniqueValuesCache: Record<string, unknown>;
Defined in: core/rows/coreRowsFeature.types.ts:11
_valuesCache: Record<string, unknown>;
Defined in: core/rows/coreRowsFeature.types.ts:12
depth: number;
Defined in: core/rows/coreRowsFeature.types.ts:16
The depth of the row (if nested or grouped) relative to the root row array.
id: string;
Defined in: core/rows/coreRowsFeature.types.ts:20
The resolved unique identifier for the row resolved via the options.getRowId option. Defaults to the row's index (or relative index if it is a subRow).
index: number;
Defined in: core/rows/coreRowsFeature.types.ts:24
The index of the row within its parent array (or the root data array).
original: TData;
Defined in: core/rows/coreRowsFeature.types.ts:28
The original row object provided to the table. If the row is a grouped row, the original row object will be the first original in the group.
optional originalSubRows: readonly TData[];
Defined in: core/rows/coreRowsFeature.types.ts:32
An array of the original subRows as returned by the options.getSubRows option.
optional parentId: string;
Defined in: core/rows/coreRowsFeature.types.ts:36
If nested, this row's parent row id.
subRows: Row<TFeatures, TData>[];
Defined in: core/rows/coreRowsFeature.types.ts:40
An array of subRows for the row as returned and created by the options.getSubRows option.
table: Table_Internal<TFeatures, TData>;
Defined in: core/rows/coreRowsFeature.types.ts:44
Reference to the parent table instance.