File tree Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,20 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 1.9.0] - 2021-06-XX
8
+
9
+ ** This release requires re-publishing of assets.**
10
+
11
+ ### Added
12
+
13
+ - [ Date filters] ( https://github.com/rappasoft/laravel-livewire-tables/pull/332 )
14
+
15
+ ### Changed
16
+
17
+ - Replaced bootstrap dropdowns with Alpine on bootstrap themes which fixes them closing prematurely when selecting filters.
18
+ - Added wrapping divs around needed ` if ` statements.
19
+ - Fixed Bootstrap pagination DOM-diffing issues.
20
+
7
21
## [ 1.8.0] - 2021-06-06
8
22
9
23
### Added
@@ -363,7 +377,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
363
377
364
378
- Initial release
365
379
366
- [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...development
380
+ [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.9.0...development
381
+ [ 1.9.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...v1.9.0
367
382
[ 1.8.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.1...v1.8.0
368
383
[ 1.7.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.0...v1.7.1
369
384
[ 1.7.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.6.1...v1.7.0
Original file line number Diff line number Diff line change 6
6
</div >
7
7
8
8
<div class =" col-12 col-md-6 text-center text-md-right text-muted" >
9
- @lang (' Showing' )
9
+ < span > @lang (' Showing' )</ span >
10
10
<strong >{{ $rows -> count () ? $rows -> firstItem () : 0 } } </strong >
11
- @lang (' to' )
11
+ < span > @lang (' to' )</ span >
12
12
<strong >{{ $rows -> count () ? $rows -> lastItem () : 0 } } </strong >
13
- @lang (' of' )
13
+ < span > @lang (' of' )</ span >
14
14
<strong >{{ $rows -> total () } } </strong >
15
- @lang (' results' )
15
+ < span > @lang (' results' )</ span >
16
16
</div >
17
17
</div >
18
18
@else
Original file line number Diff line number Diff line change 6
6
</div >
7
7
8
8
<div class =" col-12 col-md-6 text-center text-md-end text-muted" >
9
- @lang (' Showing' )
9
+ < span > @lang (' Showing' )</ span >
10
10
<strong >{{ $rows -> count () ? $rows -> firstItem () : 0 } } </strong >
11
- @lang (' to' )
11
+ < span > @lang (' to' )</ span >
12
12
<strong >{{ $rows -> count () ? $rows -> lastItem () : 0 } } </strong >
13
- @lang (' of' )
13
+ < span > @lang (' of' )</ span >
14
14
<strong >{{ $rows -> total () } } </strong >
15
- @lang (' results' )
15
+ < span > @lang (' results' )</ span >
16
16
</div >
17
17
</div >
18
18
@else
You can’t perform that action at this time.
0 commit comments