File tree Expand file tree Collapse file tree 4 files changed +19
-9
lines changed Expand file tree Collapse file tree 4 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
+ ## [ 1.1.0] - 2025-05-15
8
+
9
+ _ Stable release based on [ 1.1.0-rc.1] ._
10
+
11
+ ## [ 1.1.0-rc.1] - 2025-05-15
12
+
13
+ ### Changed
14
+
15
+ - Design empty cell background as empty string.
16
+ - Trim "fuzzy match" filter.
17
+
7
18
## [ 1.0.3] - 2025-05-15
8
19
9
20
### Fixed
@@ -334,6 +345,8 @@ _Stable release based on [0.1.0-rc.1]._
334
345
335
346
- New changelog file.
336
347
348
+ [ 1.1.0 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.3...v1.1.0
349
+ [ 1.1.0-rc.1 ] : https://github.com/internetguru/laravel-model-browser/releases/tag/v1.0.3
337
350
[ 1.0.3 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.2...v1.0.3
338
351
[ 1.0.2 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.1...v1.0.2
339
352
[ 1.0.1 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.0...v1.0.1
Original file line number Diff line number Diff line change 1
- 1.0.3
1
+ 1.1.0
Original file line number Diff line number Diff line change 64
64
height : 100% ;
65
65
}
66
66
67
- & :empty ,
68
- mark :empty {
69
- display : block ;
70
- width : 1em ;
71
- height : 0.2em ;
72
- position : relative ;
73
- top : 0.7em ;
74
- border-top : medium dashed #ced0d1 ;
67
+ & :empty :before ,
68
+ mark :empty :before {
69
+ content : ' ""' ;
70
+ color : #ced0d1 ;
75
71
}
76
72
77
73
mark :empty {
Original file line number Diff line number Diff line change @@ -297,6 +297,7 @@ protected function applyFilter($data): Collection
297
297
} else {
298
298
// Fuzzy matching with both case insensitivity and ASCII insensitivity
299
299
// Check for match without ASCII conversion first
300
+ $ attributeFilter = trim ($ attributeFilter );
300
301
if (mb_stripos ($ value , $ attributeFilter ) !== false ) {
301
302
return true ;
302
303
}
You can’t perform that action at this time.
0 commit comments