@muraldevkit/ui-toolkit 2.76.0 → 2.77.0-dev-z3RD.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.
@@ -25,6 +25,8 @@ interface MrlTextareaProps {
25
25
  state?: 'disabled' | 'error';
26
26
  /** Additional class to add to the textarea */
27
27
  className?: string;
28
+ /** Autoexpand will automatically adjust the height of the textarea based on the amount of text within it */
29
+ autoExpand?: boolean;
28
30
  }
29
31
  /**
30
32
  * Allows the user to input plain text in a multi-line format
@@ -32,5 +34,5 @@ interface MrlTextareaProps {
32
34
  * @param {MrlTextareaProps} props - the component props
33
35
  * @returns a textarea element
34
36
  */
35
- export declare function MrlTextarea({ attrs, className, inputId, state, maxLength, placeholder, value }: MrlTextareaProps): JSX.Element;
37
+ export declare function MrlTextarea({ attrs, className, inputId, state, maxLength, placeholder, value, autoExpand }: MrlTextareaProps): JSX.Element;
36
38
  export {};