werkbank
    Preparing search index...

    Type Alias TextareaProps<Schema>

    TextareaProps: JSX.IntrinsicElements["textarea"] & ValidationProps<Schema> & {
        maxBlockSize?: number | string | null;
        minRows?: number;
    }

    Props for the Textarea component.

    Type Parameters

    • Schema extends BaseSchema<any, any, any>

    Type Declaration

    • OptionalmaxBlockSize?: number | string | null

      The maximum height of the textarea before it starts scrolling. Can be a number (pixels) or a CSS string (e.g., "50vh"). If null, it grows indefinitely.

    • OptionalminRows?: number

      The minimum number of rows to display.

      1
      

    Extends standard HTML textarea attributes and adds validation and auto-resizing properties.