From e54193b57ebef145fc112817ae83ba487d5393eb Mon Sep 17 00:00:00 2001 From: fay Date: Thu, 23 Sep 2021 14:58:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/lib/base/single/html/html.d.ts | 7 +++++++ typescript/base/single/html/html.ts | 8 ++++++++ typescript/index.ts | 1 + 3 files changed, 16 insertions(+) diff --git a/dist/lib/base/single/html/html.d.ts b/dist/lib/base/single/html/html.d.ts index 1e24d0185..89fcd6850 100644 --- a/dist/lib/base/single/html/html.d.ts +++ b/dist/lib/base/single/html/html.d.ts @@ -1,6 +1,13 @@ import { Single } from "../single"; export declare class Html extends Single { static xtype: string; + props: { + text?: string; + textAlign?: "left" | "center" | "right", + whiteSpace?: "nowrap" | "normal", + lineHeight?: null | number; + highLight?: boolean; + } & Single['props']; doHighLight(): void; unHighLight(): void; setValue(v: string): void; diff --git a/typescript/base/single/html/html.ts b/typescript/base/single/html/html.ts index f44bb6432..9abc915fb 100644 --- a/typescript/base/single/html/html.ts +++ b/typescript/base/single/html/html.ts @@ -3,6 +3,14 @@ import { Single } from "../single"; export declare class Html extends Single { static xtype: string; + props: { + text?: string; + textAlign?: "left" | "center" | "right", + whiteSpace?: "nowrap" | "normal", + lineHeight?: null | number; + highLight?: boolean; + } & Single['props']; + doHighLight(): void; unHighLight(): void; diff --git a/typescript/index.ts b/typescript/index.ts index 68917f165..fdbae2aa0 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -547,4 +547,5 @@ export { TdLayout, MultiLayerSelectLevelTree, SelectTreeExpander, + DirectionPager, };