@@ -18,37 +18,44 @@ const ApplicationLayoutPropsTable = () => (
1818 </ thead >
1919 < tbody >
2020 < tr >
21- < td > visibilityToggleLabel</ td >
2221 < td >
23- < TableCode > string</ TableCode >
22+ < DxcFlex direction = "column" gap = "var(--spacing-gap-xs)" alignItems = "baseline" >
23+ < StatusBadge status = "required" />
24+ children
25+ </ DxcFlex >
26+ </ td >
27+ < td >
28+ < TableCode > React.ReactNode</ TableCode >
29+ </ td >
30+ < td >
31+ Use the < Code > DxcApplicationLayout.Main</ Code > provided to render main content.
2432 </ td >
25- < td > Text to be placed next to the hamburger button that toggles the visibility of the sidenav.</ td >
2633 < td > -</ td >
2734 </ tr >
2835 < tr >
29- < td > header </ td >
36+ < td > footer </ td >
3037 < td >
3138 < TableCode > React.ReactNode</ TableCode >
3239 </ td >
3340 < td >
34- Header of the application layout shown at the top of the screen. It is optional and if it is not specified,
35- the default header will be shown. Please check the Header documentation{ " " }
36- < Link href = "/components/header " passHref legacyBehavior >
41+ Footer of the application layout shown at the bottom of the screen. It is optional and if it is not specified,
42+ the default header will be shown. Please check the Footer documentation{ " " }
43+ < Link href = "/components/footer " passHref legacyBehavior >
3744 < DxcLink > here</ DxcLink >
3845 </ Link >
3946 .
4047 </ td >
4148 < td > -</ td >
4249 </ tr >
4350 < tr >
44- < td > footer </ td >
51+ < td > header </ td >
4552 < td >
4653 < TableCode > React.ReactNode</ TableCode >
4754 </ td >
4855 < td >
49- Footer of the application layout shown at the bottom of the screen. It is optional and if it is not specified,
50- the default header will be shown. Please check the Footer documentation{ " " }
51- < Link href = "/components/footer " passHref legacyBehavior >
56+ Header of the application layout shown at the top of the screen. It is optional and if it is not specified,
57+ the default header will be shown. Please check the Header documentation{ " " }
58+ < Link href = "/components/header " passHref legacyBehavior >
5259 < DxcLink > here</ DxcLink >
5360 </ Link >
5461 .
@@ -70,18 +77,11 @@ const ApplicationLayoutPropsTable = () => (
7077 < td > -</ td >
7178 </ tr >
7279 < tr >
80+ < td > visibilityToggleLabel</ td >
7381 < td >
74- < DxcFlex direction = "column" gap = "var(--spacing-gap-xs)" alignItems = "baseline" >
75- < StatusBadge status = "required" />
76- children
77- </ DxcFlex >
78- </ td >
79- < td >
80- < TableCode > React.ReactNode</ TableCode >
81- </ td >
82- < td >
83- Use the < Code > DxcApplicationLayout.Main</ Code > provided to render main content.
82+ < TableCode > string</ TableCode >
8483 </ td >
84+ < td > Text to be placed next to the hamburger button that toggles the visibility of the sidenav.</ td >
8585 < td > -</ td >
8686 </ tr >
8787 </ tbody >
@@ -172,15 +172,13 @@ const sections = [
172172 } ,
173173] ;
174174
175- const ApplicationLayoutCodePage = ( ) => {
176- return (
177- < DxcFlex direction = "column" gap = "4rem" >
178- < QuickNavContainerLayout >
179- < QuickNavContainer sections = { sections } startHeadingLevel = { 2 } > </ QuickNavContainer >
180- </ QuickNavContainerLayout >
181- < DocFooter githubLink = "https://github.com/dxc-technology/halstack-react/blob/master/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx" />
182- </ DxcFlex >
183- ) ;
184- } ;
175+ const ApplicationLayoutCodePage = ( ) => (
176+ < DxcFlex direction = "column" gap = "4rem" >
177+ < QuickNavContainerLayout >
178+ < QuickNavContainer sections = { sections } startHeadingLevel = { 2 } />
179+ </ QuickNavContainerLayout >
180+ < DocFooter githubLink = "https://github.com/dxc-technology/halstack-react/blob/master/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx" />
181+ </ DxcFlex >
182+ ) ;
185183
186184export default ApplicationLayoutCodePage ;
0 commit comments