IDynamicFormProps

interface IDynamicFormProps {
    formStructure: IDynamicFormFieldProps[],
    onSubmit: (data: { [key: string]: string | number | boolean }) => void
    onCancel?: () => void,
    type?: IFormType
    widget?: IWidgetInstance,
    submitButtonLabel?: string,
    cancelButtonLabel?: string,
    hideCancelButton?: boolean
}

Usage

import {IDynamicFormProps} from 'uxp/components';

Last updated