|
1 | 1 | # reactable 0.3.0
|
2 | 2 |
|
3 | 3 | This release upgrades to a new major version of React Table
|
4 |
| -([#35](https://github.com/glin/reactable/issues/35)), which introduces many |
5 |
| -new features, improvements, and bug fixes. Backward compatibility was kept |
6 |
| -where possible, but note that there are several breaking changes. |
| 4 | +([#35](https://github.com/glin/reactable/issues/35)), which brings many |
| 5 | +new features, improvements, and bug fixes. reactable has been largely rewritten |
| 6 | +to take advantage of React Table's new approach as a flexible table utility |
| 7 | +rather than a table component. |
| 8 | + |
| 9 | +This means it'll be easier to add new custom features, customize styling and markup, |
| 10 | +and maintain reactable in the future. Most of the features and fixes in this release |
| 11 | +would not have been possible or easy to do without this upgrade. |
| 12 | + |
| 13 | +Backward compatibility was kept where possible, but note that there are several |
| 14 | +breaking changes, particularly around the JavaScript API. |
7 | 15 |
|
8 | 16 | ## New features
|
9 | 17 |
|
@@ -74,6 +82,10 @@ where possible, but note that there are several breaking changes.
|
74 | 82 |
|
75 | 83 | ### JavaScript render and style functions
|
76 | 84 |
|
| 85 | +Several properties and arguments have been renamed or moved for consistency with |
| 86 | +the rest of the API. These properties were not removed unless they were very |
| 87 | +rarely used, so most code should continue to work upon upgrading. |
| 88 | + |
77 | 89 | * The `rowInfo.row` property is now **deprecated**, and has been renamed to
|
78 | 90 | `rowInfo.values`. `rowInfo.row` remains supported, but replace usages with
|
79 | 91 | `rowInfo.values` when possible.
|
|
0 commit comments