Browse Source

无JIRA任务 描述

es6
fay 3 years ago
parent
commit
e54193b57e
  1. 7
      dist/lib/base/single/html/html.d.ts
  2. 8
      typescript/base/single/html/html.ts
  3. 1
      typescript/index.ts

7
dist/lib/base/single/html/html.d.ts vendored

@ -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;

8
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;

1
typescript/index.ts

@ -547,4 +547,5 @@ export {
TdLayout,
MultiLayerSelectLevelTree,
SelectTreeExpander,
DirectionPager,
};

Loading…
Cancel
Save