@obolnetwork/obol-ui 1.0.99 → 1.0.101
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.
|
@@ -1466,6 +1466,14 @@ export declare const ExpandedTableCell: import("@stitches/react/types/styled-com
|
|
|
1466
1466
|
};
|
|
1467
1467
|
};
|
|
1468
1468
|
}>>;
|
|
1469
|
+
declare type ExpandedTableHeaderCellProps = {
|
|
1470
|
+
isSortable?: boolean;
|
|
1471
|
+
isSortActive?: boolean;
|
|
1472
|
+
sortDirection?: "desc" | "asc";
|
|
1473
|
+
tooltipContent?: string;
|
|
1474
|
+
onClick?: () => void;
|
|
1475
|
+
variant?: "uppercase";
|
|
1476
|
+
};
|
|
1469
1477
|
export declare const ExpandedTable: {
|
|
1470
1478
|
Root: React.FC<ExpandedTableRootProps>;
|
|
1471
1479
|
Head: React.FC<{
|
|
@@ -2935,10 +2943,7 @@ export declare const ExpandedTable: {
|
|
|
2935
2943
|
};
|
|
2936
2944
|
};
|
|
2937
2945
|
}>>;
|
|
2938
|
-
Header:
|
|
2939
|
-
children: React.ReactNode;
|
|
2940
|
-
style?: React.CSSProperties | undefined;
|
|
2941
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
2946
|
+
Header: React.FC<React.PropsWithChildren<ExpandedTableHeaderCellProps>>;
|
|
2942
2947
|
Loading: React.FC<{
|
|
2943
2948
|
columnsCount?: number | undefined;
|
|
2944
2949
|
rowsCount?: number | undefined;
|