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.4.10] - 2024-08-23
6
+
### Bug Fixes
7
+
- Default UseComputedProperties to True to default to new views by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1873
8
+
- Allow Single Date DateRangeFilter by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1872
9
+
- Allow clearing of DateRangeFilter by Text Box by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1875
10
+
11
+
### Docs
12
+
- Docs Update by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1876
13
+
5
14
## [v3.4.9] - 2024-08-21
6
15
### Bug Fixes
7
16
- 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
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