File tree 4 files changed +10
-1
lines changed
4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
13
13
- Fixed ` VERTICAL_BREAKPOINTS ` doesn't work https://github.com/Textualize/textual/pull/5785
14
14
- Fixed ` Button ` allowing text selection https://github.com/Textualize/textual/pull/5770
15
15
16
+ ### Added
17
+
18
+ - Exposed ` CollapsibleTitle ` https://github.com/Textualize/textual/pull/5810
19
+
16
20
## [ 3.2.0] - 2025-05-02
17
21
18
22
### Fixed
Original file line number Diff line number Diff line change 12
12
from textual .widget import Widget
13
13
from textual .widgets ._button import Button
14
14
from textual .widgets ._checkbox import Checkbox
15
- from textual .widgets ._collapsible import Collapsible
15
+ from textual .widgets ._collapsible import Collapsible , CollapsibleTitle
16
16
from textual .widgets ._content_switcher import ContentSwitcher
17
17
from textual .widgets ._data_table import DataTable
18
18
from textual .widgets ._digits import Digits
54
54
"Button" ,
55
55
"Checkbox" ,
56
56
"Collapsible" ,
57
+ "CollapsibleTitle" ,
57
58
"ContentSwitcher" ,
58
59
"DataTable" ,
59
60
"Digits" ,
Original file line number Diff line number Diff line change 2
2
from ._button import Button as Button
3
3
from ._checkbox import Checkbox as Checkbox
4
4
from ._collapsible import Collapsible as Collapsible
5
+ from ._collapsible import CollapsibleTitle as CollapsibleTitle
5
6
from ._content_switcher import ContentSwitcher as ContentSwitcher
6
7
from ._data_table import DataTable as DataTable
7
8
from ._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