diff --git a/core/src/components/popover/popover-interface.ts b/core/src/components/popover/popover-interface.ts index 3c7b96ad39..e8f796a38e 100644 --- a/core/src/components/popover/popover-interface.ts +++ b/core/src/components/popover/popover-interface.ts @@ -30,12 +30,13 @@ export interface PopoverOptions { reference?: PositionReference; side?: PositionSide; align?: PositionAlign; + arrow?: boolean; trigger?: string; triggerAction?: string; } -export interface PopoverAttributes extends JSXBase.HTMLAttributes {} +export interface PopoverAttributes extends JSXBase.HTMLAttributes { } export type PopoverSize = 'cover' | 'auto'; diff --git a/core/src/components/popover/readme.md b/core/src/components/popover/readme.md index fa6d5ce2db..7639eba5db 100644 --- a/core/src/components/popover/readme.md +++ b/core/src/components/popover/readme.md @@ -108,6 +108,7 @@ interface PopoverOptions { reference?: PositionReference; side?: PositionSide; align?: PositionAlign; + arrow?: boolean; } ```