Skip to content

Releases: sahabpardaz/ctablex

v0.4.0

16 Oct 13:00
Compare
Choose a tag to compare

Highlights

Now components can be customized with xEl prop instead of xProps. It helps for a better type check.

return <Row TrProps={{ className: 'zebra' }} />;
// vs
return (
  <Row
    trEl={
      <tr className="zebra">
        <Children />
      </tr>
    }
  />
);
// or
const MyTr = withDefaultChildren('tr');
return <Row trEl={<MyTr className="zebra" />} />;

Features

Examples

v0.2.1

19 Jul 08:03
Compare
Choose a tag to compare

Features

  • columns: support multi part tables (#23) (be0152a)

Bug Fixes

  • content-value: support missing value (#22) (66ee464)

Examples

  • content: add custom content example (#21) (ff8cc88)
  • material-ui: add material ui example (#14) (7bfe86b)

v0.2.0

19 Jul 08:04
Compare
Choose a tag to compare

⚠ BREAKING CHANGES

  • rename context types and providers

Examples

Documentations

  • rename context types and providers (#19) (a28ddc9)

v0.1.0

19 Jul 08:05
Compare
Choose a tag to compare

Features

Documentations

  • add the example section to the readme file (#8) (cc62e78)

0.0.1 (2020-06-24)

Features