The props object containing the following properties:
Represents the props for a conditional layout component.
Optionalbaseline?: booleanRepresents an optional property baseline that is picked from the interface IField using the PickProp utility type.
Optionalcondition?: OptionalconditionElse?: anyOptionalconditionLoading?: anyOptionaldesktopHidden?: boolean | (payload: Payload) => booleanRepresents the optional property desktopHidden of type PickProp<IField<Data, Payload>, 'desktopHidden'>.
Optionaldisabled?: booleanRepresents the disabled property of a field.
Optionalfeatures?: string[]Retrieves the 'features' property from a given variable.
Optionalhidden?: boolean | (payload: Payload) => booleanRepresents the 'hidden' property of an object.
OptionalisDisabled?: (v: Data, payload: Payload) => booleanRepresents the isDisabled property of a field in a form.
The isDisabled property determines whether the field is disabled or not.
OptionalisReadonly?: (v: Data, payload: Payload) => booleanRetrieves the value of the 'isReadonly' property from the given variable.
OptionalisVisible?: (v: Data, payload: Payload) => booleanRepresents the isVisible property of a field in a form.
OptionalnoBaseline?: booleanRepresents an optional property noBaseline that is picked from the interface IField using the PickProp utility type.
OptionalphoneHidden?: boolean | (payload: Payload) => booleanRepresents the phoneHidden property of a field object.
OptionalshouldCondition?: (prevData: Data, nextData: Data, payload: Payload) => booleanOptionaltabletHidden?: boolean | (payload: Payload) => booleanRepresents the optional property 'tabletHidden' in a field object.
OptionaltestId?: stringИдентификатор для отладки json шаблона
The children elements to be rendered inside the layout.
The condition function that determines when the children should be rendered.
The function to determine if the condition should be re-evaluated.
The component to be rendered while condition is evaluating/loading.
The component to be rendered if condition evaluates to false.
The function to handle errors during condition evaluation.
The data object to be passed to the condition and children components.
The rendered layout component.
Represents a layout component that conditionally renders its children based on given conditions.