@linzjs/lui 23.11.0 → 23.11.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
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [23.11.2](https://github.com/linz/lui/compare/v23.11.1...v23.11.2) (2025-10-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* this button was submiting when inside a form ([#1251](https://github.com/linz/lui/issues/1251)) ([b354bb2](https://github.com/linz/lui/commit/b354bb2b39f1adf6da372e0f11956c3c223ba055))
|
|
7
|
+
|
|
8
|
+
## [23.11.1](https://github.com/linz/lui/compare/v23.11.0...v23.11.1) (2025-08-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* adding more gap between input and error ([#1247](https://github.com/linz/lui/issues/1247)) ([e15dd0a](https://github.com/linz/lui/commit/e15dd0a22d74844d01a28f5879f322be3391022e))
|
|
14
|
+
|
|
1
15
|
# [23.11.0](https://github.com/linz/lui/compare/v23.10.1...v23.11.0) (2025-08-19)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -18108,7 +18108,7 @@ var LuiSearchBox = function (_a) {
|
|
|
18108
18108
|
};
|
|
18109
18109
|
var LuiSearchBoxButton = React__default["default"].forwardRef(function (props, ref) {
|
|
18110
18110
|
var button = React.useMemo(function () {
|
|
18111
|
-
return (React__default["default"].createElement(LuiButton, __assign({ level: "tertiary" }, props, { ref: ref, className: "LuiSearchBox-button" }),
|
|
18111
|
+
return (React__default["default"].createElement(LuiButton, __assign({ type: "button", level: "tertiary" }, props, { ref: ref, className: "LuiSearchBox-button" }),
|
|
18112
18112
|
props.children,
|
|
18113
18113
|
React__default["default"].createElement(LuiIcon, { size: "md", name: 'ic_keyboard_arrow_down', className: 'LuiSearchBox-button-icon', alt: '' })));
|
|
18114
18114
|
}, [props, ref]);
|