From 1db9859fe42f1de67a06d6a671140a5db61512a7 Mon Sep 17 00:00:00 2001 From: LockingReal <1191515088@qq.com> Date: Tue, 14 May 2024 22:57:06 +0800 Subject: [PATCH] chore(css): add two types of attribute values for overflow --- packages/panorama-types/types/css.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/panorama-types/types/css.d.ts b/packages/panorama-types/types/css.d.ts index a8ead14..bebabe8 100644 --- a/packages/panorama-types/types/css.d.ts +++ b/packages/panorama-types/types/css.d.ts @@ -527,7 +527,7 @@ interface VCSSStyleDeclaration { * overflow: squish squish; // squishes contents in horizontal and vertical directions * overflow: squish scroll; // scrolls contents in the Y direction */ - overflow: 'squish' | 'clip' | 'scroll' | null; + overflow: 'squish' | 'clip' | 'scroll' | 'squish squish' | 'squish clip ' | 'squish scroll' | 'clip clip' | 'clip squish' | 'clip scroll' | 'scroll scroll' | 'scroll squish' | 'scroll clip' | null; padding: string | null; paddingBottom: string | null;