Skip to content

v6.10.0

Compare
Choose a tag to compare
@jbetancur jbetancur released this 02 Aug 16:36
· 188 commits to master since this release
851cf2e

Features

Fixes/ Potentially Breaking with Typescript is you previously used IDataTableProps

  • If you are importing RDT typescript interfaces such as IDataTableProps, they will no longer require you to pass any arguments as and you can just set the type to IDataTableProps. This better supports a common pattern where you may want to set default props on your table and pass through the props using a wrapping component:
const DBase: React.FC<IDataTableProps> = props => (
   <DataData {...props} dense />
)