Releases: d2iq/ui-kit
Releases · d2iq/ui-kit
v2.2.0
v2.1.1
v2.1.0
v2.0.2
v2.0.1
v2.0.0
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