Type Alias: Options
Options =
object
Customization options for the FormBuilder component.
Properties
className?
optionalclassName:string
The component className.
customRenderer()?
optionalcustomRenderer: (defaultElement,component,props) =>ReactElement
The component custom renderer.
Parameters
defaultElement
ReactElement
the default rendering result.
component
ComponentType<any>
the React component.
props
any
the props that were sent to the component.
Returns
ReactElement
the customized ReactElement.
hidden?
optionalhidden:boolean
True if you want to hide the component.
style?
optionalstyle:CSSProperties|string
The component style. Supported formats - CSSProperties object, standard CSS as string, nested selectors.