You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
3
3
All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
+
## [v3.3.2] - 2024-07-20
6
+
### New Features
7
+
- Add a new ViewComponentColumn that runs the construction for a View Component by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1786
8
+
- Set Custom Classes for Collapsing Column - Collapse/Expand buttons by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1785
9
+
10
+
### Bug Fixes
11
+
- Fix DateTimeFilter by @RenoLooijmans in https://github.com/rappasoft/laravel-livewire-tables/pull/1784
12
+
- Fix AggregateColumn SnakeCase issue by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1777
13
+
5
14
## [v3.3.1] - 2024-07-16
6
15
### Bug Fixes
7
16
- Fix NumberRangeFilter initial state when loaded by querystring by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1774
View Component columns let you specify a component name and attributes and provide attributes to the View Component. This will render the View Component in it's entirety.
Copy file name to clipboardExpand all lines: docs/column-types/wire_link_column.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Wire Link Column (beta)
3
-
weight: 14
3
+
weight: 15
4
4
---
5
5
6
6
WireLink columns provide a way to display Wired Links in your table without having to use `format()` or partial views, with or without a Confirmation Message
if ($column->isField('total') && $row->total < 1000) {
265
-
return [
266
-
'default' => true,
267
-
'class' => 'bg-red-500 text-white',
268
-
];
269
-
}
270
-
271
-
return ['default' => true];
272
-
});
273
-
}
274
-
275
-
```
276
-
### setSearchFieldAttributes
277
-
278
-
Set a list of attributes to override on the search field
279
-
280
-
```php
281
-
public function configure(): void
282
-
{
283
-
$this->setSearchFieldAttributes([
284
-
'class' => 'this that',
285
-
]);
286
-
}
287
-
```
288
-
289
-
By default, this replaces the default classes on the search field, if you would like to keep them, set the default flag to true.
290
-
291
-
```php
292
-
public function configure(): void
293
-
{
294
-
$this->setSearchFieldAttributes([
295
-
'default' => true,
296
-
'class' => 'added these classes',
297
-
]);
298
-
}
299
-
```
23
+
Documentation for Data Table Styling/Attributes is now: <ahref="https://rappasoft.com/docs/laravel-livewire-tables/v3/columns/styling"aria-label="Documentation for Data Table Styling" >Here</a>
300
24
301
25
## Offline
302
26
@@ -461,4 +185,4 @@ public function configure(): void
0 commit comments