UNPKG

@jsonforms/material-renderers

Version:

Material Renderer Set for JSON Forms

20 lines (19 loc) 613 B
import { Theme, TextFieldProps, InputBaseProps } from '@mui/material'; export interface JsonFormsTheme extends Theme { jsonforms?: { input?: { delete?: { background?: string; }; }; }; } export interface WithInputProps { label?: string; } export interface WithSelectProps { multiple?: boolean; } export declare const defaultInputVariant: TextFieldProps['variant']; export declare function useInputVariant(): TextFieldProps['variant']; export declare function useInputComponent(): React.JSXElementConstructor<InputBaseProps & WithInputProps>;