Module Values.FormStyleSource

Describes the configuration for the form's style.

Sourcetype nonrec t = {
  1. horizontalGap : FormStyleConfig.t option;
    (*

    The spacing for the horizontal gap.

    *)
  2. verticalGap : FormStyleConfig.t option;
    (*

    The spacing for the vertical gap.

    *)
  3. outerPadding : FormStyleConfig.t option;
    (*

    The size of the outer padding for the form.

    *)
}
Sourceval make : ?horizontalGap:??? -> ?verticalGap:??? -> ?outerPadding:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t