From e263b2f41f9f39558c5cb1b6592ec8b0df15fd39 Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 18 May 2021 14:27:38 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-7826=20refactor:=20props=E5=A3=B0?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../base/single/button/listitem/icontextitem.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/typescript/base/single/button/listitem/icontextitem.ts b/typescript/base/single/button/listitem/icontextitem.ts index 87c8c1e08..eb478a850 100644 --- a/typescript/base/single/button/listitem/icontextitem.ts +++ b/typescript/base/single/button/listitem/icontextitem.ts @@ -4,6 +4,22 @@ export declare class IconTextItem extends BasicButton { static xtype: string; static EVENT_CHANGE: string; + props: { + direction: string; + logic: { + dynamic: boolean; + }; + iconWrapperWidth?: number; + iconHeight?: number; + iconWidth?: number; + textHgap: number; + textVgap: number; + textLgap: number; + textRgap: number; + text: string; + keyword: string; + } & BasicButton['props'] + doRedMark(...args: any[]): void; unRedMark(...args: any[]): void;