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

8 lines (7 loc) 260 B
export interface InputControlContext { /** Whether the input is read-only */ readOnly?: boolean; /** Whether the input is disabled */ disabled?: boolean; } export declare const InputControlContext: import("react").Context<InputControlContext>;