Values.ComponentConditionPropertyRepresents a conditional expression to set a component property. Use ComponentConditionProperty to set a property to different values conditionally, based on the value of another property.
type nonrec t = {property : String_.t option;The name of the conditional property.
*)field : String_.t option;The name of a field. Specify this when the property is a data model.
*)operator : String_.t option;The operator to use to perform the evaluation, such as eq to represent equals.
*)operand : String_.t option;The value of the property to evaluate.
*)then_ : ComponentProperty.t option;The value to assign to the property if the condition is met.
*)else_ : ComponentProperty.t option;The value to assign to the property if the condition is not met.
*)operandType : String_.t option;The type of the property to evaluate.
*)}val make :
?property:String_.t ->
?field:String_.t ->
?operator:String_.t ->
?operand:String_.t ->
?then_:ComponentProperty.t ->
?else_:ComponentProperty.t ->
?operandType:String_.t ->
unit ->
t