Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
import type { StaticDescription, StaticLabel } from 'payload';
|
|
import type React from 'react';
|
|
import { type ChangeEvent } from 'react';
|
|
export type TextAreaInputProps = {
|
|
readonly AfterInput?: React.ReactNode;
|
|
readonly BeforeInput?: React.ReactNode;
|
|
readonly className?: string;
|
|
readonly Description?: React.ReactNode;
|
|
readonly description?: StaticDescription;
|
|
readonly Error?: React.ReactNode;
|
|
readonly inputRef?: React.RefObject<HTMLInputElement>;
|
|
readonly Label?: React.ReactNode;
|
|
readonly label?: StaticLabel;
|
|
readonly localized?: boolean;
|
|
readonly onChange?: (e: ChangeEvent<HTMLTextAreaElement>) => void;
|
|
readonly onKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
|
|
readonly path: string;
|
|
readonly placeholder?: string;
|
|
readonly readOnly?: boolean;
|
|
readonly required?: boolean;
|
|
readonly rows?: number;
|
|
readonly rtl?: boolean;
|
|
readonly showError?: boolean;
|
|
readonly style?: React.CSSProperties;
|
|
readonly value?: string;
|
|
readonly valueToRender?: string;
|
|
};
|
|
//# sourceMappingURL=types.d.ts.map |