Module Values.ComponentVariantSource

Describes the style configuration of a unique variation of a main component.

Sourcetype nonrec t = {
  1. variantValues : ComponentVariantValues.t option;
    (*

    The combination of variants that comprise this variant. You can't specify tags as a valid property for variantValues.

    *)
  2. overrides : ComponentOverrides.t option;
    (*

    The properties of the component variant that can be overriden when customizing an instance of the component. You can't specify tags as a valid property for overrides.

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