UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

20 lines (19 loc) 627 B
import * as React from 'react'; import { Theme } from '../common'; import { FormComponentProps } from '@tomino/dynamic-form'; export declare const groupLabel: (theme: Theme) => string; declare type HeaderProps = { label: string; buttons: any; className?: string; bare?: boolean; }; export declare const PropertyHeader: ({ children, label, buttons, bare, className }: React.Props<any> & HeaderProps) => JSX.Element; declare type Props = { text: string; bare: boolean; }; export declare const Group: (controlProps: FormComponentProps<Props, any, any> & { filter: string; }) => JSX.Element; export {};