Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gui.extension.Element doc fixed #1820

Merged
4 changes: 2 additions & 2 deletions taipy/gui/extension/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def __init__(
*react_component* is ignored.

Arguments:
default_property (str): the name of the default property for this element.
properties (List[ElementProperty]): The list of properties for this element.
default_property (str): The name of the default property for this element.
properties (Dict[str, ElementProperty]): The dictionary containing the properties of this element, where the keys are the property names and the values are instances of ElementProperty.
inner_properties (Optional[List[ElementProperty]]): The optional list of inner properties for this element.<br/>
Default values are set/binded automatically.
react_component (Optional[str]): The name of the component to be created on the front-end.<br/>
Expand Down
Loading