@linzjs/lui 22.9.1 → 22.9.2
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 +7 -0
- package/dist/components/LuiSearchBox/LuiSearchBox.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.esm.js +1 -1
- package/dist/lui.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [22.9.2](https://github.com/linz/lui/compare/v22.9.1...v22.9.2) (2025-03-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* trigger release ([#1202](https://github.com/linz/lui/issues/1202)) ([3c7ddfa](https://github.com/linz/lui/commit/3c7ddfaaef0f2d6ed5a666d026b67b9717dcb151))
|
|
7
|
+
|
|
1
8
|
## [22.9.1](https://github.com/linz/lui/compare/v22.9.0...v22.9.1) (2025-03-19)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -19,6 +19,7 @@ export interface ISearchMenuOption {
|
|
|
19
19
|
onSearch?: (searchString: string) => void;
|
|
20
20
|
validateInput?: (input: string) => InputValidationResult | undefined;
|
|
21
21
|
customizedInput?: React.ReactElement;
|
|
22
|
+
hideDisclaimerOnFail?: boolean;
|
|
22
23
|
}
|
|
23
24
|
export interface ILuiSearchBoxProps {
|
|
24
25
|
searchBoxOptions: ISearchMenuOption[];
|
package/dist/index.js
CHANGED
|
@@ -42873,7 +42873,7 @@ var LuiSearchBox = function (_a) {
|
|
|
42873
42873
|
? selectedMenuOption.renderItem
|
|
42874
42874
|
: function (item) {
|
|
42875
42875
|
return React__default["default"].createElement("span", { style: resultStyle }, item.description);
|
|
42876
|
-
}, disclaimer: selectedMenuOption.disclaimer, focusUpdate: autoFocus && isFocus ? focusUpdate : undefined, externalSearch: externalSearch, initialValue: !!externalSearch ? searchString : undefined, onClickInput: onClickInput, onClearCallback: onClearInput, onSearch: selectedMenuOption.onSearch, validateInput: selectedMenuOption.validateInput })))));
|
|
42876
|
+
}, disclaimer: selectedMenuOption.disclaimer, focusUpdate: autoFocus && isFocus ? focusUpdate : undefined, externalSearch: externalSearch, initialValue: !!externalSearch ? searchString : undefined, onClickInput: onClickInput, onClearCallback: onClearInput, onSearch: selectedMenuOption.onSearch, validateInput: selectedMenuOption.validateInput, hideDisclaimerOnFail: selectedMenuOption.hideDisclaimerOnFail })))));
|
|
42877
42877
|
};
|
|
42878
42878
|
var LuiSearchBoxButton = React__default["default"].forwardRef(function (props, ref) {
|
|
42879
42879
|
var button = React.useMemo(function () {
|