Skip to content

Generic ITableProps

Compare
Choose a tag to compare
@komarovalexander komarovalexander released this 28 Mar 08:27
· 108 commits to master since this release
dad181e

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 
            }
        }
    }}
  
/>

#343

What's Changed

Full Changelog: 8.10.0...8.11.0