mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
fix(popover): allow arrow configuration with controller approach (#24512)
Resolves #24487
This commit is contained in:
@ -30,6 +30,7 @@ export interface PopoverOptions<T extends ComponentRef = ComponentRef> {
|
||||
reference?: PositionReference;
|
||||
side?: PositionSide;
|
||||
align?: PositionAlign;
|
||||
arrow?: boolean;
|
||||
|
||||
trigger?: string;
|
||||
triggerAction?: string;
|
||||
|
@ -108,6 +108,7 @@ interface PopoverOptions {
|
||||
reference?: PositionReference;
|
||||
side?: PositionSide;
|
||||
align?: PositionAlign;
|
||||
arrow?: boolean;
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user