From cd09806edbd0677bc0d70678b7db66b34187dc96 Mon Sep 17 00:00:00 2001 From: Thomas Zerr Date: Tue, 15 Aug 2023 16:18:13 +0200 Subject: [PATCH] Fixed missing export Squash commits of branch feature/popover: - -added: popover and ci status story - -fixed: license formats - work in progress - -added: popover stories - work in progress - work in progress - work in progressclear - work in progress - -changed: realigned close button added aria label to close button - -added: comments - -added: changelog file - -fixed: findings - -fixed: background - -fixed: close button - -fixed: arrow fill color - -removed: has box shadow class, because popover already box-shadow - -added: popover export Co-authored-by: tzerr --- scm-ui/ui-overlays/src/index.ts | 2 ++ scm-ui/ui-styles/src/light.scss | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/scm-ui/ui-overlays/src/index.ts b/scm-ui/ui-overlays/src/index.ts index be8119d1bc..fe82023e57 100644 --- a/scm-ui/ui-overlays/src/index.ts +++ b/scm-ui/ui-overlays/src/index.ts @@ -40,3 +40,5 @@ export const Menu = Object.assign(MenuComponent, { export const Dialog = Object.assign(DialogComponent, { CloseButton, }); + +export { default as Popover } from "./popover/Popover"; diff --git a/scm-ui/ui-styles/src/light.scss b/scm-ui/ui-styles/src/light.scss index 9ff75ac9f6..4ec8d2c944 100644 --- a/scm-ui/ui-styles/src/light.scss +++ b/scm-ui/ui-styles/src/light.scss @@ -109,3 +109,7 @@ footer.footer { .has-hover-visible:hover { color: $grey-darker !important; } + +.popover-arrow { + fill: $grey-light !important; +}