Skip to content

Releases: sussol/sussol-react-table

v0.1.17

Choose a tag to compare

@jtrein jtrein released this 01 Mar 12:52

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

Choose a tag to compare

@jtrein jtrein released this 13 Dec 07:34

Features

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

v0.1.12

Choose a tag to compare

@jtrein jtrein released this 13 Dec 07:33

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

Choose a tag to compare

@jtrein jtrein released this 28 Nov 10:45

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

Choose a tag to compare

@jtrein jtrein released this 09 Nov 10:55

Updates

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

Fixes

Version 0.1.9

Choose a tag to compare

@jtrein jtrein released this 03 Nov 11:51

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

Choose a tag to compare

@jtrein jtrein released this 11 Oct 05:06

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

Choose a tag to compare

@Chris-Petty Chris-Petty released this 11 Jun 22:36

Fixes:

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