Skip to content

Commit 9cb98cc

Browse files
authored
v3.4.7 (#1860)
* Add explanation of setRefreshMethod (#1857) * Unlocking Entangled Items (#1859) * Unlock properties locked in error --------- Co-authored-by: lrljoe <[email protected]> --------- Co-authored-by: lrljoe <[email protected]>
1 parent 8f237b0 commit 9cb98cc

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-livewire-tables` will be documented in this file
44

5+
## [v3.4.7] - 2024-08-18
6+
### Bug Fixes
7+
- 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
8+
59
## [v3.4.6] - 2024-08-15
610
### New Features
711
- Column Features - deselectedIf/selectedIf by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1846

src/Traits/WithBulkActions.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ trait WithBulkActions
1212

1313
public bool $bulkActionsStatus = true;
1414

15+
// Entangled in JS
1516
public bool $selectAll = false;
1617

1718
public array $bulkActions = [];
1819

1920
public array $bulkActionConfirms = [];
2021

22+
// Entangled in JS
2123
public array $selected = [];
2224

25+
// Entangled in JS
2326
public bool $hideBulkActionsWhenEmpty = false;
2427

2528
public ?string $bulkActionConfirmDefaultMessage;
@@ -46,6 +49,7 @@ trait WithBulkActions
4649

4750
protected array $bulkActionsMenuItemAttributes = ['default-colors' => true, 'default-styling' => true];
4851

52+
// Entangled in JS
4953
public bool $delaySelectAll = false;
5054

5155
public function bulkActions(): array

src/Traits/WithFilters.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ trait WithFilters
2222
#[Locked]
2323
public bool $filterPillsStatus = true;
2424

25-
#[Locked]
25+
// Entangled in JS
2626
public bool $filterSlideDownDefaultVisible = false;
2727

2828
#[Locked]
@@ -31,8 +31,10 @@ trait WithFilters
3131
#[Locked]
3232
public int $filterCount;
3333

34+
// Set in JS
3435
public array $filterComponents = [];
3536

37+
// Set in Frontend
3638
public array $appliedFilters = [];
3739

3840
public array $filterGenericData = [];

src/Traits/WithPagination.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,13 @@ trait WithPagination
3232
#[Locked]
3333
public bool $perPageVisibilityStatus = true;
3434

35+
// Entangled in JS
3536
public array $paginationCurrentItems = [];
3637

38+
// Entangled in JS
3739
public int $paginationCurrentCount = 0;
3840

41+
// Entangled in JS
3942
public ?int $paginationTotalItemCount = null;
4043

4144
public array $numberOfPaginatorsRendered = [];

src/Traits/WithReordering.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@ trait WithReordering
1111
use ReorderingConfiguration,
1212
ReorderingHelpers;
1313

14+
// Entangled in JS
1415
public bool $reorderStatus = false;
1516

17+
// Entangled in JS
1618
public bool $currentlyReorderingStatus = false;
1719

20+
// Entangled in JS
1821
public bool $hideReorderColumnUnlessReorderingStatus = false;
1922

23+
// Entangled in JS
2024
public bool $reorderDisplayColumn = false;
2125

26+
// Retrieved in JS
2227
public string $defaultReorderColumn = 'sort';
2328

2429
public array $orderedItems = [];

0 commit comments

Comments
 (0)