Skip to content

v0.15.0

Compare
Choose a tag to compare
@marboro92 marboro92 released this 06 Nov 16:46
· 1558 commits to master since this release

Added

  • Added an option to add a footer to the Table Table component
  • Added an example of implementing filters with the Table Table component

Changed

  • Changed spacing in Modal Modal component
  • Table
    • [Breaking Change] cellFormatter and cellRenderer APIs have been updated so arguments are within an object
      • Before: cellFormatter: (cellData, column, row) => {}
      • Now: cellFormatter: ({cellData, column, row}) => {}
    • cellFormatter can now return a react component or a string instead of being limited to strings

Fixed

  • Storybook actions addon should be in devDependencies (#432)
  • Multiselect encountered a undefined .map error when clearing all options because the check before mapping was checking strictly for the value undefined and not null (#433)