Skip to content

Commit aa1259e

Browse files
committed
fix types and descriptions
1 parent 1ef5378 commit aa1259e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packages/uui-popover-container/lib/uui-popover-container.element.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ export type PopoverContainerPlacement =
2222
@defineElement('uui-popover-container')
2323
export class UUIPopoverContainerElement extends LitElement {
2424
/**
25-
* Set the distance between popover-modal and trigger.
25+
* Set the distance between popover container element and target element.
2626
* @type {number}
27-
* @attr disabled
28-
* @default false
27+
* @attr margin
28+
* @default 0
2929
*/
3030
@property({ type: Number })
3131
margin = 0;
3232

3333
/**
34-
* Define the placement of the popover-modal.
34+
* Define the placement of the popover container.
3535
* @attr placement
3636
* @default 'bottom-start'
3737
*/

packages/uui-popover-container/lib/uui-popover-container.story.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const Overview: Story = {
2727
},
2828
args: {
2929
placement: 'bottom-start',
30+
margin: 0,
3031
},
3132
argTypes: {
3233
placement: {

0 commit comments

Comments
 (0)