UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

17 lines (16 loc) 551 B
/// <reference types="react" /> import { DropdownProps as SuiDropdownProps } from 'semantic-ui-react'; import { FormComponentProps } from '@tomino/dynamic-form'; declare type Props = { filterSource: string; filterColumn: string; schemaSource: string; template: string; asyncOptions: string; }; export declare type MenuChildProps = { name: string; }; export declare type DropdownProps = SuiDropdownProps & Props; export declare const DropdownView: (props: FormComponentProps<DropdownProps, any, any>) => JSX.Element; export {};