@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
16 lines (15 loc) • 538 B
TypeScript
import * as React from 'react';
import { InputProps } from 'semantic-ui-react';
import { DataSet, FormComponent } from '@tomino/dynamic-form';
export declare const InputView: FormComponent;
interface InputBoundProps {
name: string;
owner: DataSet;
label: string;
}
export declare class FormInputComponent extends React.Component<InputBoundProps & InputProps> {
handleInputChange: React.ReactEventHandler<HTMLInputElement>;
render(): JSX.Element;
}
export declare const FormInput: typeof FormInputComponent;
export {};