From 8a8a9cdf0cc516f528eb0d80e8685b75a69d0916 Mon Sep 17 00:00:00 2001 From: "1445654576@qq.com" <1445654576@qq.com> Date: Fri, 19 Nov 2021 23:12:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20(issue:=20#I4I3PH)=20=E5=AE=8C=E5=96=84p?= =?UTF-8?q?opover=E7=BB=84=E4=BB=B6positionType=E7=9A=84=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/devui-vue/devui/popover/src/popover.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/devui-vue/devui/popover/src/popover.tsx b/packages/devui-vue/devui/popover/src/popover.tsx index d0b367c3..6c365094 100644 --- a/packages/devui-vue/devui/popover/src/popover.tsx +++ b/packages/devui-vue/devui/popover/src/popover.tsx @@ -3,7 +3,7 @@ import debounce from './debounce'; import clickoutsideDirective from '../../shared/devui-directive/clickoutside' import './popover.scss' -type positionType = 'top' | 'right' | 'bottom' | 'left' +type positionType = 'top' | 'right' | 'bottom' | 'left' | 'left-top' | 'left-bottom' | 'top-left' | 'top-right' | 'right-top' | 'right-bottom' | 'bottom-left' | 'bottom-right' type triggerType = 'click' | 'hover' type popType = 'success' | 'error' | 'warning' | 'info' | 'default' const popTypeClass = { -- Gitee