Module Values.FormStyleConfigSource

Describes the configuration settings for the form's style properties.

Sourcetype nonrec t = {
  1. tokenReference : String_.t option;
    (*

    A reference to a design token to use to bind the form's style properties to an existing theme.

    *)
  2. value : String_.t option;
    (*

    The value of the style setting.

    *)
}
Sourceval make : ?tokenReference:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) 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