interface GenericFormProps {
    field: IDataBuilderField;
    readOnly?: boolean;
    isAdminMode?: boolean;
    onChange: (value: any) => void;
    editableVariablesSchemaLocators?: string[];
    onAddVariable?: (locator: string, schema: any) => void;
    errorFieldsLocators?: string[];
    frozenFieldsLocators?: string[];
    showNullValueFields?: boolean;
    hideReadOnlyFields?: boolean;
}

Hierarchy (View Summary)

Properties

readOnly?: boolean
isAdminMode?: boolean
onChange: (value: any) => void
editableVariablesSchemaLocators?: string[]
onAddVariable?: (locator: string, schema: any) => void
errorFieldsLocators?: string[]
frozenFieldsLocators?: string[]
showNullValueFields?: boolean
hideReadOnlyFields?: boolean