From 9b87573dab068fe8a29840347832099d77016386 Mon Sep 17 00:00:00 2001 From: zhouzebin Date: Wed, 11 May 2022 22:51:42 +0800 Subject: [PATCH] support blur material Signed-off-by: zhouzebin Change-Id: If99e0aff00cb212adafe6a335f48ce772c42a5e6 --- api/@internal/component/ets/common.d.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index 23b05409b7..df68f8941a 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -1120,6 +1120,23 @@ declare class CommonMethod { */ backgroundImagePosition(value: Position | Alignment): T; + /** + * enum Blur style + * @since 9 + */ + enum BlurStyle { + Thin, + Regular, + Thick, + } + + /** + * Background blur style + * blurStyle:BlurStyle Blur style type. + * @since 9 + */ + backgroundBlurStyle(blurStyle: BlurStyle); + /** * Opacity * @since 7 -- Gitee