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, };