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