@linzjs/lui 21.48.0 → 21.49.0
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 +14 -0
- package/dist/components/LuiSearchInput/ResultsDisplay.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +8 -16
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiSelectInput/LuiSelectInput.scss +6 -19
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [21.49.0](https://github.com/linz/lui/compare/v21.48.1...v21.49.0) (2024-10-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* (should be refactor) Copies the way TextInput does the little error UI ([#1164](https://github.com/linz/lui/issues/1164)) ([8fdbc6a](https://github.com/linz/lui/commit/8fdbc6aa33716729f84020aa10343db6e03d80f7))
|
|
7
|
+
|
|
8
|
+
## [21.48.1](https://github.com/linz/lui/compare/v21.48.0...v21.48.1) (2024-10-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **SearchInput:** relax label type to react node ([#1162](https://github.com/linz/lui/issues/1162)) ([014586c](https://github.com/linz/lui/commit/014586c8ede1fa050b239634289c1f4838115d90))
|
|
14
|
+
|
|
1
15
|
# [21.48.0](https://github.com/linz/lui/compare/v21.47.0...v21.48.0) (2024-10-14)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -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> {
|