Generic ITableProps
komarovalexander
released this
28 Mar 08:27
·
108 commits
to master
since this release
data
now has specific type, and you also can setup a type in table
<Table<DataType>
//...
data={data} // data array has type DataType[]
//...
childComponents={{
cellText: {
content: ({ rowData }) => {
//.. rowData has type DataType
}
}
}}
/>
What's Changed
- remove childComponents from onDispatch call by @komarovalexander in #395
- Bump webpack-dev-middleware from 5.3.3 to 5.3.4 by @dependabot in #396
- Make ITableProps a generic by @komarovalexander in #397
- Bump express from 4.18.2 to 4.19.2 by @dependabot in #398
Full Changelog: 8.10.0...8.11.0