@linzjs/lui 21.48.0 → 21.48.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [21.48.1](https://github.com/linz/lui/compare/v21.48.0...v21.48.1) (2024-10-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **SearchInput:** relax label type to react node ([#1162](https://github.com/linz/lui/issues/1162)) ([014586c](https://github.com/linz/lui/commit/014586c8ede1fa050b239634289c1f4838115d90))
|
|
7
|
+
|
|
1
8
|
# [21.48.0](https://github.com/linz/lui/compare/v21.47.0...v21.48.0) (2024-10-14)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -6,7 +6,7 @@ export interface ISearchResult {
|
|
|
6
6
|
export interface ISearchGroupedResult<SearchResult extends ISearchResult = ISearchResult> {
|
|
7
7
|
id: string;
|
|
8
8
|
description: string;
|
|
9
|
-
label:
|
|
9
|
+
label: React.ReactNode;
|
|
10
10
|
items: SearchResult[];
|
|
11
11
|
}
|
|
12
12
|
export interface IResultsProps<SearchResult extends ISearchResult = ISearchResult> {
|