@oc-digital/react-component-library 8.29.2-beta.0 → 8.29.2-beta.2
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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import { ITableContentProps } from "./EditableTable.types";
|
|
3
|
+
/**
|
|
4
|
+
* This component is responsible for rendering the table header row
|
|
5
|
+
*/
|
|
6
|
+
export declare const TableHeaderContent: FC<Pick<ITableContentProps, "headerGroups" | "includeRowSelect" | "isAllRowsSelected" | "sortMeta" | "setSortMeta" | "fieldConfig" | "shadedHeaderLeadingColumns" | "freezeHeader"> & {
|
|
7
|
+
cellSizes: number[][] | undefined;
|
|
8
|
+
stickyColumnNumberPerHeader: number[];
|
|
9
|
+
}>;
|