@@ -2,11 +2,11 @@ import { ArgsTableWithNote, DocsHeader, DomRefTable, Footer } from '@sb/componen
2
2
import Description from ' ./PopoverDescription.md?raw' ;
3
3
import { Canvas , Markdown , Meta , Story } from ' @storybook/blocks' ;
4
4
import ' @ui5/webcomponents-icons/dist/settings.js' ;
5
- import { BarChart , MicroBarChart } from ' @ui5/webcomponents-react-charts' ;
6
5
import { useState } from ' react' ;
7
6
import { PopoverHorizontalAlign } from ' ../../enums/PopoverHorizontalAlign' ;
8
7
import { PopoverPlacementType } from ' ../../enums/PopoverPlacementType' ;
9
8
import { PopoverVerticalAlign } from ' ../../enums/PopoverVerticalAlign' ;
9
+ import { BarDesign } from ' ../../enums/BarDesign' ;
10
10
import { Bar } from ' ../Bar' ;
11
11
import { Button } from ' ../Button' ;
12
12
import { MessageStrip } from ' ../MessageStrip' ;
@@ -237,11 +237,11 @@ const PopoverComponent = () => {
237
237
onAfterClose = { handleClose }
238
238
className = { clsx (' headerPartNoPadding' , args .className )}
239
239
header = {
240
- <Bar endContent = { <Icon name = " settings" />} >
240
+ <Bar endContent = { <Icon name = " settings" />} design = { BarDesign . Header } >
241
241
<Title >Popover</Title >
242
242
</Bar >
243
243
}
244
- footer = { <Bar endContent = { <Button onClick = { handleClose } >Close</Button >} />}
244
+ footer = { <Bar endContent = { <Button onClick = { handleClose } >Close</Button >} design = { BarDesign . Footer } />}
245
245
>
246
246
<List style = { { width: ' 200px' }} >
247
247
<StandardListItem additionalText = " 3" >List Item 1</StandardListItem >
0 commit comments