@io-orkes/human-task-material-renderers-react
Version:
`@io-orkes/human-task-material-renderers-react` is a custom library that extends the `@jsonforms/material-renderers` to provide custom renderers for human task forms. This library leverages Material UI components to deliver a seamless and responsive user
15 lines (13 loc) • 354 B
TypeScript
import { default as React } from 'react';
export interface BooleanProps {
id?: string;
label?: string;
value?: boolean;
default?: boolean;
required?: boolean;
readonly?: boolean;
path: string;
handleChange?: (path: string, value: boolean) => void;
}
declare const Boolean: React.FC<BooleanProps>;
export default Boolean;