Skip to content

Commit

Permalink
fix(popover): allow arrow configuration with controller approach (#24512
Browse files Browse the repository at this point in the history
)

Resolves #24487
  • Loading branch information
sean-perkins authored Jan 5, 2022
1 parent a3724e6 commit b39003a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/components/popover/popover-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ export interface PopoverOptions<T extends ComponentRef = ComponentRef> {
reference?: PositionReference;
side?: PositionSide;
align?: PositionAlign;
arrow?: boolean;

trigger?: string;
triggerAction?: string;
}

export interface PopoverAttributes extends JSXBase.HTMLAttributes<HTMLElement> {}
export interface PopoverAttributes extends JSXBase.HTMLAttributes<HTMLElement> { }

export type PopoverSize = 'cover' | 'auto';

Expand Down
1 change: 1 addition & 0 deletions core/src/components/popover/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ interface PopoverOptions {
reference?: PositionReference;
side?: PositionSide;
align?: PositionAlign;
arrow?: boolean;
}
```

Expand Down

0 comments on commit b39003a

Please sign in to comment.