v0.23.0
Pre-release
Pre-release
What's Changed
- Array source by @Kreyu in #134
- Page size selectable by user by @Kreyu in #135
- [BREAKING CHANGE] Pass row data as second argument of the "formatter" column option by @Kreyu in #136
Caution
This release includes breaking change. The definition of column's formatter
option has changed, and now gets row data as second argument. For example:
// Before
'formatter' => function (string $fullName, ColumnInterface $column, array $options) {
// ...
}
// After
'formatter' => function (string $fullName, User $user, ColumnInterface $column, array $options) {
// ...
}
Full Changelog: v0.22.3...v0.23.0