Skip to content

Latest commit

 

History

History
100 lines (61 loc) · 4.99 KB

CHANGELOG.md

File metadata and controls

100 lines (61 loc) · 4.99 KB

Changelog

All notable changes to this project will be documented in this file.

0.4.0 (2022-10-16)

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

  • add and use table elements context (#63) (0441555)
  • add children context (#62) (f39f6ca)
  • row: add and use CurrentRowDataProvider component (#46) (5ad330b)

Examples

0.3.0 (2020-12-20)

Features

  • add default children to table/table-body/table-header/row/rows components (#29) (7091f5f)
  • columns: add part props in columns usage (#27) (1de25ca)
  • accept and pass props to underlying components (#28) (d672f4d)

Examples

  • complex-content: add complex content example (#25) (7553c57)

Documentations

0.2.1 (2020-07-19)

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)

0.2.0 (2020-07-14)

⚠ BREAKING CHANGES

  • rename context types and providers

Examples

Documentations

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

0.1.0 (2020-07-04)

Features

Documentations

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

0.0.1 (2020-06-24)

Features