@linzjs/lui 23.6.1 → 23.6.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.6.2](https://github.com/linz/lui/compare/v23.6.1...v23.6.2) (2025-07-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove console log ([#1237](https://github.com/linz/lui/issues/1237)) ([80e2282](https://github.com/linz/lui/commit/80e2282e03bc1fe474b7582fb8ed69318e9894c5))
7
+
1
8
  ## [23.6.1](https://github.com/linz/lui/compare/v23.6.0...v23.6.1) (2025-07-07)
2
9
 
3
10
 
package/dist/index.js CHANGED
@@ -7202,7 +7202,6 @@ var LuiTextAreaInput = React__default["default"].forwardRef(function (props, ref
7202
7202
  var _a, _b;
7203
7203
  var id = useGenerateOrDefaultId((_a = props.inputProps) === null || _a === void 0 ? void 0 : _a.id);
7204
7204
  var rows = props.rows !== undefined ? props.rows : 5;
7205
- console.log('🚀 ~ rows:', rows);
7206
7205
  return (React__default["default"].createElement("div", { className: clsx('LuiTextAreaInput', ((_b = props.inputProps) === null || _b === void 0 ? void 0 : _b.disabled) ? 'isDisabled' : '', props.error ? 'hasError' : '', props.warning ? 'hasWarning' : '') },
7207
7206
  React__default["default"].createElement("label", { htmlFor: id },
7208
7207
  props.mandatory && (React__default["default"].createElement("span", { className: "LuiTextAreaInput-mandatory" }, "*")),