UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

15 lines (14 loc) 506 B
import * as React from 'react'; import { FormComponentProps, FormComponent, FormElement } from '@tomino/dynamic-form'; export declare type Props = { EmptyCell?: React.FC<FormComponentProps>; }; export declare type StackProps = { layout: 'row' | 'column'; gap: string; padding: string; final: boolean; }; export declare type StackChildProps = {}; export declare function itemCSS(formElement: FormElement, layout: 'column' | 'row'): string; export declare const StackView: FormComponent;