-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(table): remove content-based column width sizing
BREAKING CHANGE: This change removes the CellMeasurer component used to size table column width to the widest piece of content in the column Before: Not passing a function to the "width" prop on a Column component would result in the column's width being as wide as the widest piece of content in that column After: Not passing a function to the "width" prop on a Column component results in that column being sized in proportion to the width of the area the table is displayed in. For example: If a table is 1000px wide and has 5 columns, the column/s without a width prop would be 200px wide (1000px/5) Closes DCOS-50093
- Loading branch information
1 parent
5f96cac
commit 5bba31c
Showing
8 changed files
with
518 additions
and
503 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.