Skip to content

Commit

Permalink
Merge pull request #1 from iisakkirotko/mikemaster
Browse files Browse the repository at this point in the history
Details documentation PR commits
  • Loading branch information
mikegiann01 committed May 21, 2024
2 parents f35c9bb + 3499a45 commit c9cea72
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions solara/components/details.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,41 @@

@solara.component
def Details(summary="Summary", children=[], expand=False):
"""Creates an expandable/collapsible section with a summary and additional children content
```solara
import solara
show_message = solara.reactive(True)
disable = solara.reactive(False)
@solara.component
def Page():
summary_text = "Click to expand for more details"
additional_content = [
"Additional detail 1",
"Additional detail 2",
"Additional detail 3"
]
solara.Details(
summary=summary_text,
children=additional_content,
expand=False
)
```
## Arguments:
*summary: String showing the summary text for the expandable section: Defaults "Summary"
*children: List showing the children content of the expandable section: Defaults to an Empty list
*expand: Boolean showing if the section is expanded or collapsed: Defaults to False
"""

expand, set_expand = solara.use_state_or_update(expand)

def on_v_model(v_model):
Expand Down

0 comments on commit c9cea72

Please sign in to comment.