UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

20 lines (19 loc) 769 B
import React from 'react'; import { FormComponentProps } from '@tomino/dynamic-form'; export declare const breakingLabel: string; export declare const nonBreakingLabel: string; export declare function paintProps<C>(props: FormComponentProps<C>, context: any, className?: string, allowedProperties?: string[], componentProps?: any): any; declare type WrapperProps = FormComponentProps & { control?: any; controlProps?: string[]; styleName?: string; preserveProps?: boolean; showError?: boolean; hideLabel?: boolean; [index: string]: any; }; export declare function renderEmptyCell(props: FormComponentProps & { EmptyCell: any; }, className?: string): JSX.Element; export declare const DynamicComponent: React.FC<WrapperProps>; export {};