Releases: rappasoft/laravel-livewire-tables
Releases · rappasoft/laravel-livewire-tables
v2.6.0
v2.5.0
Added
- Ability to pass mount parameters to configurable areas
Changed
- Move configure call to
boot()
instead ofbooted()
. - Mount methods now available in
configure()
method. - Non-field columns with a searchable callback are now included in the search query.
- Fixed debug query output duplicating select statements.
- Fixed header issue on column hide - #754
Removed
- Calls to set builder and columns in render as it doesn't seem to make a difference since it's also called in
booted()
.
v2.4.0
Added
- Added table event listeners to sort/filter/clear from other components.
- Added text filter.
- Added $row as second parameter to BooleanColumn
setCallback()
. - Added
setThSortButtonAttributes()
to set attributes for th sort button. - Added
setHideConfigurableAreasWhenReorderingStatus()
to hide configurable areas when reordering status which now defaults to true.
Changed
- Rework builder to fix passed parameters in
builder()
andcolumns()
methods. - Fixed possible bug with bulk actions dropdown on Tailwind when bulk actions are hidden until a selection is made.
v2.3.0
Added
- Added ability to define additional select statements outside the scope of a column using the
setAdditionalSelects(array $selects)
configuration method. - Added 8 configurable areas, see
Configurable Areas
of theDatatable
section of the documentation.
v2.2.1
v2.2.0
v2.1.1
Added
- Turkish Translation - #686
- Added missing table row click functionality
- Added ability to mark column as unclickable if you need a cell to have another clickable element with clickable rows turned on.