Skip to content

Commit 975bfc2

Browse files
committed
apply change requests
1 parent cca1682 commit 975bfc2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

chartlets.js/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Added icon support for `Button`, `IconButton` and `Tabs` components.
1010
(#124).
1111

12-
* Added (MUI) component `Accordion`. (#134)
12+
* Added (MUI) component `Accordion`. (#41, #134)
1313

1414
## Version 0.1.7 (from 2025/12/03)
1515

chartlets.py/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Added `size` and removed `variant` property from `IconButton`
44
component to align with component in chartlets.js. (#124)
55

6-
* Added (MUI) component `Accordion`. (#134)
6+
* Added (MUI) component `Accordion`. (#41, #134)
77

88
## Version 0.1.7 (from 2025/12/03)
99

chartlets.py/demo/my_extension/my_panel_9.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def render_panel(
4545

4646
table = Table(id="table", rows=rows, columns=columns, hover=True)
4747

48-
info_text = Typography(id="info_text", children=["This is a text."])
48+
info_text = Typography(id="info_text", children=["This is a text."], style={"margin": "30px"})
4949

5050
accordion1 = Accordion(
5151
id="accordion1",
@@ -60,7 +60,7 @@ def render_panel(
6060
icon="arrow_drop_down",
6161
# expanded=True,
6262
# disabled=True
63-
children=[table],
63+
children=[table, info_text],
6464
)
6565

6666
return Box(

0 commit comments

Comments
 (0)