Skip to content

v2.0.0

Compare
Choose a tag to compare
@mesosphere-ci mesosphere-ci released this 18 Mar 11:05
· 830 commits to master since this release

2.0.0 (2019-03-18)

Bug Fixes

  • table: remove content-based column width sizing (5bba31c)

BREAKING CHANGES

  • table: 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