toloka.client.project.template_builder.layouts.CompareLayoutV1
| Source code
CompareLayoutV1( self, common_controls: Optional[BaseComponent] = None, items: Optional[Union[BaseComponent, List[Union[BaseComponent, CompareLayoutItem]]]] = None, *, min_width: Optional[Union[BaseComponent, float]] = None, wide_common_controls: Optional[Union[BaseComponent, bool]] = None, validation: Optional[BaseComponent] = None, version: Optional[str] = '1.0.0')
Use it to arrange interface elements for comparing them. For example, you can compare several photos.
Selection buttons can be placed under each of the compared items. You can also add common elements, such as a field for comments.
Differences from layout.side-by-side:
Parameters | Type | Description |
---|---|---|
common_controls | Optional[BaseComponent] | The common fields of the component. Add information blocks that are common to all the elements being compared. |
items | Optional[Union[BaseComponent, List[Union[BaseComponent, CompareLayoutItem]]]] | An array with properties of the elements being compared. Set the appearance of the component blocks. |
min_width | Optional[Union[BaseComponent, float]] | Minimum width of the element in pixels. Default: 400 pixels. |
wide_common_controls | Optional[Union[BaseComponent, bool]] | This property increases the common field size of the elements being compared. It's set to false by default: the common fields are displayed in the center, not stretched. If true, the fields are wider than with the default value. |
validation | Optional[BaseComponent] | Validation based on condition. |