Releases: Legitcode/table
Releases · Legitcode/table
0.4.2
Compare
Sorry, something went wrong.
No results found
Fixed headings when hiding a column
0.4.1
Compare
Sorry, something went wrong.
No results found
0.4.0
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
Compare
Sorry, something went wrong.
No results found
0.2.6
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
Compare
Sorry, something went wrong.
No results found
fixed bug when passing an empty array
0.2.0
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
Compare
Sorry, something went wrong.
No results found
removed object.assign, simplified the table component