@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
16 lines (15 loc) • 731 B
TypeScript
/// <reference types="react" />
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;