form-schema-runtime - v1.0.0
    Preparing search index...

    Interface VisibilityCondition

    A single declarative visibility condition.

    interface VisibilityCondition {
        equals?: FieldValue;
        exists?: boolean;
        field: string;
        includes?: FieldValue;
        notEquals?: FieldValue;
    }
    Index

    Properties

    equals?: FieldValue

    The dependent field is visible when the referenced value strictly equals this value.

    exists?: boolean

    The dependent field is visible when the referenced value exists, or does not exist when false.

    field: string

    Field name whose current value should be inspected.

    includes?: FieldValue

    The dependent field is visible when the referenced string or array includes this value.

    notEquals?: FieldValue

    The dependent field is visible when the referenced value does not strictly equal this value.