UNPKG

@canard/schema-form

Version:

React-based component library that renders forms based on JSON Schema with plugin system support for validators and UI components

10 lines (9 loc) 471 B
import { type PropsWithChildren } from 'react'; interface InputControlContextProviderProps { /** Apply readOnly property to all FormTypeInput components */ readOnly?: boolean; /** Apply disabled property to all FormTypeInput components */ disabled?: boolean; } export declare const InputControlContextProvider: ({ readOnly, disabled, children, }: PropsWithChildren<InputControlContextProviderProps>) => import("react/jsx-runtime").JSX.Element; export {};