@swan-io/lake 13.1.1 → 13.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swan-io/lake",
3
- "version": "13.1.1",
3
+ "version": "13.1.2",
4
4
  "engines": {
5
5
  "node": "^22.12.0"
6
6
  },
@@ -128,7 +128,7 @@ export const LakeTextInput = ({ ref, ariaExpanded, ariaControls, error, disabled
128
128
  //maxCharCount is different from maxLength(props inherited of TextInput)
129
129
  //maxLength truncates the text in the limitation asked,
130
130
  //maxCharCount doesn't have limitation but displays a counter of characters
131
- maxCharCount, help, warning = false, info = false, renderEnd, ...props }) => {
131
+ maxCharCount, help, warning = false, info, renderEnd, ...props }) => {
132
132
  const inputRef = useRef(null);
133
133
  const [isHovered, setIsHovered] = useState(false);
134
134
  const [isFocused, setIsFocused] = useState(false);