fis-component 0.1.0 → 0.1.1

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/dist/esm/index.js CHANGED
@@ -66092,7 +66092,7 @@ const FISInputArea = forwardRef((props, ref) => {
66092
66092
  "input-area-lg": size === "lg",
66093
66093
  "input-area-icon": iconSuffix,
66094
66094
  negative,
66095
- }), style: { width: fixedWidth ? `${fixedWidth}px` : "auto" }, children: [jsx(TextAreaSC, { ...rest, onChange: handleChange, onKeyDown: handleKeyPress, ref: mergeRefs(ref, inputRef), disabled: disabled, className: classNames({
66095
+ }), style: { width: fixedWidth ? `${fixedWidth}px` : "auto" }, children: [jsx(TextAreaSC, { ...rest, onChange: handleChange, onKeyDown: handleKeyPress, ref: mergeRefs(ref, inputRef), disabled: disabled, maxLength: maxLength, className: classNames({
66096
66096
  negative,
66097
66097
  "input-area-lg": size === "lg",
66098
66098
  "input-area-icon": iconSuffix,