Add virtualized prop to Table component (#33246)

Adding a new virtualized prop to the Table component to better support rendering large numbers of rows
This commit is contained in:
James Brooks
2026-03-17 08:31:43 +00:00
committed by GitHub
parent 1b42218ca3
commit 05594087b9
9 changed files with 309 additions and 76 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Added `virtualized` prop to `Table` component for virtualized rendering of large datasets. Accepts `true` for default row height, `{ rowHeight: number }` for fixed height, or `{ estimatedRowHeight: number }` for variable height rows.