Rsuite Table Versions Save

A React table component.

5.18.3

3 weeks ago

What's Changed

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.18.2...5.18.3

5.18.2

7 months ago

What's Changed

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.18.1...5.18.2

5.18.1

7 months ago

What's Changed

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.18.0...5.18.1

5.18.0

7 months ago

Features

The children prop of the Table supports function types. When using TypeScript, it is recommended to pass a render prop to the Table component. This ensures that the correct generic type parameter is automatically propagated to the Cell component.

const products: Product[] = [{ name: 'Pineapple' }];

<Table<Product, string> ref={table} data={products}>
  {({ Column, HeaderCell, Cell }) => (
    <>
      <Column>
        <HeaderCell>Name</HeaderCell>
        {/* No need for passing explicit type parameter to Cell */}
        <Cell>{row => row.name}</Cell>
      </Column>
    </>
  )}
</Table>;

What's Changed

New Contributors

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.17.0...5.18.0

5.17.0

7 months ago

What's Changed

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.16.0...5.17.0

5.16.0

7 months ago

What's Changed

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.15.0...5.16.0

5.15.0

8 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.14.0...5.15.0

5.14.0

8 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.13.0...5.14.0

5.13.0

8 months ago

What's Changed

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.12.0...5.13.0

5.12.0

9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/rsuite/rsuite-table/compare/5.11.1...5.12.0