File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414- Fixed ` Button ` allowing text selection https://github.com/Textualize/textual/pull/5770
1515- Fixed ` Input ` invalid cursor position after updating the value https://github.com/Textualize/textual/issues/5811
1616
17+ ### Added
18+
19+ - Exposed ` CollapsibleTitle ` https://github.com/Textualize/textual/pull/5810
20+
1721## [ 3.2.0] - 2025-05-02
1822
1923### Fixed
Original file line number Diff line number Diff line change 1212 from textual .widget import Widget
1313 from textual .widgets ._button import Button
1414 from textual .widgets ._checkbox import Checkbox
15- from textual .widgets ._collapsible import Collapsible
15+ from textual .widgets ._collapsible import Collapsible , CollapsibleTitle
1616 from textual .widgets ._content_switcher import ContentSwitcher
1717 from textual .widgets ._data_table import DataTable
1818 from textual .widgets ._digits import Digits
5454 "Button" ,
5555 "Checkbox" ,
5656 "Collapsible" ,
57+ "CollapsibleTitle" ,
5758 "ContentSwitcher" ,
5859 "DataTable" ,
5960 "Digits" ,
Original file line number Diff line number Diff line change 22from ._button import Button as Button
33from ._checkbox import Checkbox as Checkbox
44from ._collapsible import Collapsible as Collapsible
5+ from ._collapsible import CollapsibleTitle as CollapsibleTitle
56from ._content_switcher import ContentSwitcher as ContentSwitcher
67from ._data_table import DataTable as DataTable
78from ._digits import Digits as Digits
Original file line number Diff line number Diff line change 1+ from textual .widgets ._collapsible import CollapsibleTitle
2+
3+ __all__ = ["CollapsibleTitle" ]
You can’t perform that action at this time.
0 commit comments