Skip to content

Commit 3383a0c

Browse files
committed
Merge branch 'staging'
2 parents 6016496 + 4b268c9 commit 3383a0c

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

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+
718
## [1.0.3] - 2025-05-15
819

920
### Fixed
@@ -334,6 +345,8 @@ _Stable release based on [0.1.0-rc.1]._
334345

335346
- New changelog file.
336347

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
337350
[1.0.3]: https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.2...v1.0.3
338351
[1.0.2]: https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.1...v1.0.2
339352
[1.0.1]: https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.0...v1.0.1

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.3
1+
1.1.0

resources/sass/_main.scss

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,10 @@
6464
height: 100%;
6565
}
6666

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;
7571
}
7672

7773
mark:empty {

src/Components/BaseModelBrowser.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ protected function applyFilter($data): Collection
297297
} else {
298298
// Fuzzy matching with both case insensitivity and ASCII insensitivity
299299
// Check for match without ASCII conversion first
300+
$attributeFilter = trim($attributeFilter);
300301
if (mb_stripos($value, $attributeFilter) !== false) {
301302
return true;
302303
}

0 commit comments

Comments
 (0)