Skip to content

Releases: sussol/sussol-react-table

v0.1.17

01 Mar 12:52
Compare
Choose a tag to compare

Updates

  • cellAutoHeight: Auto-resize cell via its contents. Useful for responsive designs, and columns where you don't know the content length.
    • Use this in combination with wrapText: true inside the coreCellProps prop
  • Adds a coreCellProps prop to pass Blueprint cell props

v0.1.13

13 Dec 07:34
Compare
Choose a tag to compare

Features

  • Alignment API. Define a column's text alignment, or default the table to an entire alignment. (#24)

v0.1.12

13 Dec 07:33
Compare
Choose a tag to compare

Features

  • Adds cell editing API. Provide a handler function to the prop and get back value, column key and row index. (#26)

Version 0.1.11

28 Nov 10:45
Compare
Choose a tag to compare

Updates

  • [API] Default sort key and sort direction props added (defaultSortKey, defaultSortOrder)
    (#20)

Fixes

  • __tests__ no longer included in the build (#22)

Version 0.1.10

09 Nov 10:55
Compare
Choose a tag to compare

Updates

  • By default the exported component is a PureComponent (#12, 178d3ae)
  • Adds build status badge 🎫 (#14, afc1fee)

Fixes

Version 0.1.9

03 Nov 11:51
Compare
Choose a tag to compare

Features

  • Add prop API option for cellDataKey (#9)

Fixes

  • Remove unused state, searchTerm
  • Adds material-ui to devDependencies for testing
  • Fixes Material UI testing bug where theme context isn't added to FlatButton (adds wrapping helper)
  • Removes { "testEnvironment": "node" } from jest config in package.json so we can mount a full component (node does not have access to a browser DOM, natively)

Version 0.1.8

11 Oct 05:06
Compare
Choose a tag to compare

Features

  • Adds basic sorting to table columns

Fixes

  • Cleans package deps a bit. Notably, moves react and react-dom into peerDependencies so multiple copies of React are not loaded.

Updates

  • Package now includes perf updates from @blueprintjs /core and /table

Version 0.1.7

11 Jun 22:36
Compare
Choose a tag to compare

Fixes:

  • PropTypes now imported from npm module 'prop-types'. Wow so modern.
  • PropTypes for table also includes the blueprint table props.