Releases: Legitcode/table
Releases · Legitcode/table
0.4.2
24 Sep 19:27
Compare
Sorry, something went wrong.
No results found
Fixed headings when hiding a column
0.4.1
24 Sep 18:44
Compare
Sorry, something went wrong.
No results found
0.4.0
24 Sep 18:40
Compare
Sorry, something went wrong.
No results found
Added ability to hide keys, useful if each row needs to know its id for an ajax request
let modify = ( { hidden} ) => {
expect ( hidden . id ) . to . be . equal ( 1 )
}
Test ( < Table rows = { [ { id : 1 , name : 'zach' } ] } hide = { [ 'id' ] } modifyAll = { modify } /> )
. find ( 'td' )
. element ( td => {
expect ( td . props . children ) . to . be . equal ( 'zach' ) ;
} )
0.2.10
23 Sep 21:12
Compare
Sorry, something went wrong.
No results found
0.2.6
14 Sep 21:17
Compare
Sorry, something went wrong.
No results found
removed node-jsdom, tests work in node v4
added uniqueId function, no more react key warnings
0.2.5
10 Sep 17:52
Compare
Sorry, something went wrong.
No results found
fixed bug when passing an empty array
0.2.0
07 Sep 22:07
Compare
Sorry, something went wrong.
No results found
removed index.js, including the component is now import Table from 'react-legit-table' vs import {Table}
0.1.0
05 Sep 04:15
Compare
Sorry, something went wrong.
No results found
removed object.assign, simplified the table component