File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 1.10.1] - 2021-06-20
8
+
9
+ ### Changed
10
+
11
+ - Fixed Tailwind column popup on reorder
12
+
7
13
## [ 1.10.0] - 2021-06-20
8
14
9
15
** This release requires re-publishing of assets.**
@@ -386,7 +392,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
386
392
387
393
- Initial release
388
394
389
- [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...development
395
+ [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.1...development
396
+ [ 1.10.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...v1.10.1
390
397
[ 1.10.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.9.0...v1.10.0
391
398
[ 1.9.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...v1.9.0
392
399
[ 1.8.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.1...v1.8.0
Original file line number Diff line number Diff line change 26
26
@include (' livewire-tables::tailwind.includes.filters' )
27
27
</div >
28
28
29
- <div class =" md:space-x-2 md: flex md:items-center" >
30
- @include (' livewire-tables::tailwind.includes.bulk-actions' )
31
- @include (' livewire-tables::tailwind.includes.column-select' )
32
- @include (' livewire-tables::tailwind.includes.per-page' )
29
+ <div class =" md:flex md:items-center" >
30
+ < div > @include (' livewire-tables::tailwind.includes.bulk-actions' )</ div >
31
+ < div > @include (' livewire-tables::tailwind.includes.column-select' )</ div >
32
+ < div > @include (' livewire-tables::tailwind.includes.per-page' )</ div >
33
33
</div >
34
34
</div >
35
35
Original file line number Diff line number Diff line change 1
1
@if ($columnSelect )
2
- <div class =" w-full md:w-auto mb-4 md:mb-0" >
2
+ <div class =" w-full md:w-auto mb-4 md:mb-0 md:ml-2 " >
3
3
<div
4
4
x-data =" { open: false }"
5
5
@keydown .window.escape =" open = false"
Original file line number Diff line number Diff line change 1
1
@if ($paginationEnabled && $showPerPage )
2
- <div class =" w-full md:w-auto" >
2
+ <div class =" w-full md:w-auto ml-0 md:ml-2 " >
3
3
<select
4
4
wire:model =" perPage"
5
5
id =" perPage"
You can’t perform that action at this time.
0 commit comments