Use the ResizableTableContainer only if a column has a width property, and don't set the table-layout CSS property, but leave it to the user

Signed-off-by: Gustaf Räntilä <g.rantila@gmail.com>
This commit is contained in:
Gustaf Räntilä
2026-02-06 15:58:07 +01:00
committed by Johan Persson
parent a8b3395a55
commit 7eda810329
5 changed files with 9 additions and 28 deletions
@@ -230,13 +230,6 @@ export const tablePropDefs: Record<string, PropDef> = {
values: ['ReactNode'],
description: 'Content to display when the table has no data.',
},
columnSizing: {
type: 'enum',
values: ['content', 'manual'],
default: 'content',
description:
'Set to "manual" (or define any of the width properties on a column) to manually control column widths.',
},
...classNamePropDefs,
...stylePropDefs,
};