* tidy up css * sticky header * add sticky top and left on columns * use group for cell hover when overflowing * strickly type meta as override isnt working * fix: type err --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Udit Takkar <udit222001@gmail.com>
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import "@tanstack/react-table";
|
|
|
|
declare module "@tanstack/react-table" {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
sticky?: boolean;
|
|
stickyLeft?: number;
|
|
}
|
|
}
|