From b39003a4c67cd7e01d09be012c9e12d99ca1730a Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 5 Jan 2022 13:18:18 -0500 Subject: [PATCH] fix(popover): allow arrow configuration with controller approach (#24512) Resolves #24487 --- core/src/components/popover/popover-interface.ts | 3 ++- core/src/components/popover/readme.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) 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; } ```