@linzjs/lui 22.9.1 → 22.9.3

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,17 @@
1
+ ## [22.9.3](https://github.com/linz/lui/compare/v22.9.2...v22.9.3) (2025-03-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * removed logo link from maintenance page ([#1203](https://github.com/linz/lui/issues/1203)) ([4a629a3](https://github.com/linz/lui/commit/4a629a33788ca3efdaefe102c054328c05964851))
7
+
8
+ ## [22.9.2](https://github.com/linz/lui/compare/v22.9.1...v22.9.2) (2025-03-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * trigger release ([#1202](https://github.com/linz/lui/issues/1202)) ([3c7ddfa](https://github.com/linz/lui/commit/3c7ddfaaef0f2d6ed5a666d026b67b9717dcb151))
14
+
1
15
  ## [22.9.1](https://github.com/linz/lui/compare/v22.9.0...v22.9.1) (2025-03-19)
2
16
 
3
17
 
@@ -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 () {