@linzjs/lui 23.11.1 → 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,10 @@
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
+
1
8
  ## [23.11.1](https://github.com/linz/lui/compare/v23.11.0...v23.11.1) (2025-08-21)
2
9
 
3
10
 
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]);