Migrating from v10 Table
to v11 Table
#2602
josh-bagwell
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This will be a guide to help the migration from the
Table
component in v10 to theTable
component in v11.Table
in v11 will now be a compound component that will more closely resemble an html table element.See below for how these components will migrate:
<Table/>
<Table/>
<Table.Caption/>
<Table.Head/>
<Table.Body/>
<TableRow/>
<Table.Row/>
<Table.Header/>
<Table.Cell/>
<Table.Footer/>
In v10,
Table
andTableRow
were the pieces you would use to build a Table.TableRow
is the only piece that will "change" with the update to v11 as it is nowTable.Row
vsTableRow
.in v11,
Table
is now a compound component that utilizes all the pieces of an html Table element.See examples here of how our
Table
component is used with it now being a compound component.Beta Was this translation helpful? Give feedback.
All reactions