File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
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
+ ## [ 0.3.2] - 2020-09-25
8
+
9
+ ### Changed
10
+
11
+ - Added thead class to option array
12
+
7
13
## [ 0.3.1] - 2020-09-18
8
14
9
15
### Changed
@@ -119,7 +125,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
119
125
120
126
- Initial release
121
127
122
- [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.1...development
128
+ [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.2...development
129
+ [ 0.3.2 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.1...v0.3.2
123
130
[ 0.3.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.0...v0.3.1
124
131
[ 0.3.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.1...v0.3.0
125
132
[ 0.2.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.0...v0.2.1
Original file line number Diff line number Diff line change @@ -304,6 +304,9 @@ They are done this way instead of the config file that way you can have per-comp
304
304
protected $options = [
305
305
// The class set on the table when using bootstrap
306
306
'bootstrap.classes.table' => 'table table-striped table-bordered',
307
+
308
+ // The class set on the table's thead when using bootstrap
309
+ 'bootstrap.classes.thead' => null,
307
310
308
311
// Whether or not the table is wrapped in a `.container-fluid` or not
309
312
'bootstrap.container' => true,
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ trait Options
21
21
'bootstrap ' => [
22
22
'classes ' => [
23
23
'table ' => 'table table-bordered table-striped ' ,
24
+ 'thead ' => null ,
24
25
],
25
26
'container ' => true ,
26
27
'responsive ' => true ,
You can’t perform that action at this time.
0 commit comments