@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
17 lines (16 loc) • 600 B
TypeScript
/// <reference types="react" />
import { EditorComponent, FormComponentProps } from '@tomino/dynamic-form';
export declare type FormEditorProps = {
showTopMenu: boolean;
theme: string;
editorHeight: string;
formSource: string;
formSaveHandler: string;
schemaSource: string;
schemaSaveHandler: string;
dataSource: string;
maximiseHandler: string;
};
declare const FormEditorComponent: (props: FormComponentProps<FormEditorProps, any, any>) => JSX.Element;
export declare const FormEditorEditor: EditorComponent<FormEditorProps>;
export default FormEditorComponent;