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
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,32 @@
2
2
3
3
All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
+
## [v3.4.11] - 2024-08-23
6
+
### New Features
7
+
- Add setIconLeft/setIconRight for Actions by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1877
8
+
9
+
## [v3.4.10] - 2024-08-23
10
+
### Bug Fixes
11
+
- Default UseComputedProperties to True to default to new views by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1873
12
+
- Allow Single Date DateRangeFilter by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1872
13
+
- Allow clearing of DateRangeFilter by Text Box by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1875
14
+
15
+
### Docs
16
+
- Docs Update by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1876
17
+
18
+
## [v3.4.9] - 2024-08-21
19
+
### Bug Fixes
20
+
- Default UseComputedProperties to False to allow previously published views to work by default by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1869
21
+
- Fix superfluous bulk actions tr > by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1868
22
+
23
+
## [v3.4.8] - 2024-08-18
24
+
### New Features
25
+
- Add an event dispatch for Filter Was Set when filterComponents is updated by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1861
26
+
27
+
## [v3.4.7] - 2024-08-18
28
+
### Bug Fixes
29
+
- Correct a locked property that is entangled in js, and add comments around some key properties to prevent reoccurrence by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1859
30
+
5
31
## [v3.4.6] - 2024-08-15
6
32
### New Features
7
33
- Column Features - deselectedIf/selectedIf by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1846
Copy file name to clipboardExpand all lines: docs/datatable/available-methods.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,21 @@ public function configure(): void
18
18
}
19
19
```
20
20
21
+
### useComputedPropertiesDisabled
22
+
23
+
If you have published the Views **prior to v3.4.5**, and do not wish to remove the published views, then you should add the following call, which will disable the new Computed Properties behaviour. Note that publishing the views is not recommended!
24
+
25
+
```php
26
+
public function configure(): void
27
+
{
28
+
$this->useComputedPropertiesDisabled();
29
+
}
30
+
```
31
+
32
+
21
33
## Attributes
22
34
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>
35
+
Documentation for Data Table Styling/Attributes is now: [Here](../datatable/styling)
| allowInvalidPreload | Boolean | true | Allows the preloading of an invalid date. When disabled, the field will be cleared if the provided date is invalid |
49
50
| allowInput | Boolean | false | Allows the user to enter a date directly into the input field. By default, direct entry is disabled. |
50
51
| altFormat | String | "F j, Y" | Exactly the same as date format, but for the altInput field |
51
52
| altInput | Boolean | false | Show the user a readable date (as per altFormat), but return something totally different to the server. |
@@ -153,7 +154,7 @@ If using the CDN approach, ensure the following config matches:
0 commit comments