@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
15 lines (14 loc) • 699 B
TypeScript
export interface TextFieldProps {
name: string;
label?: React.ReactNode;
required?: boolean;
tooltip?: React.ReactNode;
description?: React.ReactNode;
showCharCount?: boolean;
inputMask?: string;
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
childrenAfterField?: React.ReactNode;
}
export declare const TextField: React.FC<JSX.IntrinsicElements['input'] & TextFieldProps>;
export declare const TextFieldMultiple: (props: import('./multiple').WithMultipleProps & React.ClassAttributes<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement> & TextFieldProps) => import("react/jsx-runtime").JSX.Element;
export default TextFieldMultiple;