@@ -34,7 +34,7 @@ const meta: Meta = {
34
34
35
35
export const Files : StoryFn = ( ) => (
36
36
< nav aria-label = "Files" >
37
- < TreeView aria-label = "Files" >
37
+ < TreeView aria-label = "Files" truncate = { false } >
38
38
< TreeView . Item id = "src" defaultExpanded >
39
39
< TreeView . LeadingVisual >
40
40
< TreeView . DirectoryIcon />
@@ -112,7 +112,7 @@ export const Files: StoryFn = () => (
112
112
export const FilesChanged : StoryFn = ( ) => {
113
113
return (
114
114
< nav aria-label = "Files" >
115
- < TreeView aria-label = "Files" >
115
+ < TreeView aria-label = "Files" truncate = { false } >
116
116
< TreeView . Item id = "src" defaultExpanded >
117
117
< TreeView . LeadingVisual >
118
118
< TreeView . DirectoryIcon />
@@ -786,7 +786,7 @@ export const ContainIntrinsicSize: StoryFn = () => {
786
786
export const InitialFocus : StoryFn = ( ) => (
787
787
< div >
788
788
< Button > Focusable element before TreeView</ Button >
789
- < TreeView aria-label = "Test tree" >
789
+ < TreeView aria-label = "Test tree" truncate = { false } >
790
790
< TreeView . Item id = "src" defaultExpanded >
791
791
< TreeView . LeadingVisual >
792
792
< TreeView . DirectoryIcon />
@@ -891,11 +891,11 @@ export const InitialFocus: StoryFn = () => (
891
891
</ TreeView . Item >
892
892
</ TreeView . SubTree >
893
893
</ TreeView . Item >
894
- < TreeView . Item id = "src/ReallyLongFileNameThatShouldBeTruncated .tsx" >
894
+ < TreeView . Item id = "src/ReallyLongFileNameThatShouldNotBeTruncated .tsx" >
895
895
< TreeView . LeadingVisual >
896
896
< FileIcon />
897
897
</ TreeView . LeadingVisual >
898
- ReallyLongFileNameThatShouldBeTruncated .tsx
898
+ ReallyLongFileNameThatShouldNotBeTruncated .tsx
899
899
</ TreeView . Item >
900
900
</ TreeView . SubTree >
901
901
</ TreeView . Item >
@@ -1047,15 +1047,13 @@ export const LeadingAction: StoryFn = () => {
1047
1047
1048
1048
export const MultilineItems : StoryFn = ( ) => (
1049
1049
< nav aria-label = "Files changed" >
1050
- < TreeView aria-label = "Files changed" >
1050
+ < TreeView aria-label = "Files changed" truncate = { false } >
1051
1051
< TreeView . Item id = "src" defaultExpanded >
1052
1052
< TreeView . LeadingVisual >
1053
1053
< TreeView . DirectoryIcon />
1054
1054
</ TreeView . LeadingVisual >
1055
- < div style = { { whiteSpace : 'wrap' } } >
1056
- this is a very long directory name that we have intentionally allowed to wrap over multiple lines to
1057
- demonstrate alignment
1058
- </ div >
1055
+ this is a very long directory name that we have intentionally allowed to wrap over multiple lines to demonstrate
1056
+ alignment
1059
1057
< TreeView . SubTree >
1060
1058
< TreeView . Item id = "src/Avatar.tsx" >
1061
1059
< TreeView . LeadingVisual >
@@ -1072,9 +1070,7 @@ export const MultilineItems: StoryFn = () => (
1072
1070
< TreeView . LeadingVisual >
1073
1071
< TreeView . DirectoryIcon />
1074
1072
</ TreeView . LeadingVisual >
1075
- < div style = { { whiteSpace : 'wrap' } } >
1076
- this is a medium directory name that we wrap over 2 lines to demonstrate alignment
1077
- </ div >
1073
+ this is a medium directory name that we wrap over 2 lines to demonstrate alignment
1078
1074
< TreeView . TrailingVisual label = "Added" >
1079
1075
< Octicon icon = { DiffAddedIcon } color = "success.fg" />
1080
1076
</ TreeView . TrailingVisual >
0 commit comments