From 033e47329b7af0d651e977d531b659c1cecb8608 Mon Sep 17 00:00:00 2001 From: Gethin Webster Date: Thu, 9 Jul 2026 06:36:26 +0000 Subject: [PATCH] feat: Add usage metrics for table skeleton loading prop --- src/table/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/table/index.tsx b/src/table/index.tsx index 418e8ec73b..28a1fd60ed 100644 --- a/src/table/index.tsx +++ b/src/table/index.tsx @@ -54,6 +54,8 @@ const Table = React.forwardRef( metadata: { expandableRows: !!props.expandableRows, progressiveLoading: !!props.getLoadingStatus, + hasSkeleton: !!props.skeleton, + skeletonTotalRows: props.skeleton?.totalRows ?? null, groupSelection: !!props.expandableRows?.groupSelection, columnGroups: !!props.groupDefinitions?.length, columnGroupsDepth: getColumnGroupsDepth(props.columnDisplay),