Interface ShowFormOptions

Hierarchy

  • HeaderBarProps
    • ShowFormOptions

Properties

buttons: ButtonListItemProps[]
fields: FieldSchema[]
initialData?: InitialData
text?: ReactNode
validate?: ((data) => Promise<{
    field: string;
    message: string;
}[]>)

Type declaration

    • (data): Promise<{
          field: string;
          message: string;
      }[]>
    • Parameters

      • data: FieldValues

      Returns Promise<{
          field: string;
          message: string;
      }[]>

Generated using TypeDoc