From a5fc135b9403840fddcb3190a46280367b514f16 Mon Sep 17 00:00:00 2001 From: Robert Snow Date: Tue, 25 Mar 2025 06:41:41 +1100 Subject: [PATCH] fix: Add Table Cell id prop back into the Cell types --- packages/react-aria-components/src/Table.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/react-aria-components/src/Table.tsx b/packages/react-aria-components/src/Table.tsx index 08438c9e18b..c614adbdf65 100644 --- a/packages/react-aria-components/src/Table.tsx +++ b/packages/react-aria-components/src/Table.tsx @@ -1189,6 +1189,8 @@ export interface CellRenderProps { } export interface CellProps extends RenderProps { + /** The unique id of the cell. */ + id?: Key, /** A string representation of the cell's contents, used for features like typeahead. */ textValue?: string, /** Indicates how many columns the data cell spans. */