UNPKG

react-hook-form-chakra-fields

Version:

A collection of form fields on top of simple and accessible react component library [Chakra UI](https://chakra-ui.com/) and performant form library [React Hook Form](https://react-hook-form.com/), integrated with many other js/ts libraries.

7 lines (6 loc) 476 B
/// <reference types="react" /> import { FieldPrototypeProps } from '../Builders'; import { DateTimeOnlyInputProps } from '../Inputs'; export declare type DateTimeOnlyFieldProps = Omit<DateTimeOnlyInputProps, 'onChange'> & FieldPrototypeProps; declare const DateTimeOnlyField: ({ name, label, required, disabled, helperText, id, tip, colSpan, colStart, colEnd, rowSpan, rowStart, rowEnd, ...props }: DateTimeOnlyFieldProps) => JSX.Element; export { DateTimeOnlyField };