Browse Source

refactor: 补充

es6
iapyang 4 years ago
parent
commit
c6299e3291
  1. 5
      typescript/core/wrapper/layout/adapt/absolute.center.ts
  2. 3
      typescript/index.ts

5
typescript/core/wrapper/layout/adapt/absolute.center.ts

@ -0,0 +1,5 @@
import { Layout } from "../../layout";
export declare class AbsoluteCenterLayout extends Layout {
static xtype: string;
}

3
typescript/index.ts

@ -64,6 +64,7 @@ import { IconArrowNode } from "./case/button/node/node.icon.arrow";
import { MidTreeLeafItem } from "./case/button/treeitem/item.mid.treeleaf";
import { FirstTreeLeafItem } from "./case/button/treeitem/item.first.treeleaf";
import { LastTreeLeafItem } from "./case/button/treeitem/item.last.treeleaf";
import { AbsoluteCenterLayout } from "./core/wrapper/layout/adapt/absolute.center";
type ClassConstructor<T extends {}> = T & {
@ -128,6 +129,7 @@ export interface BI extends _func, _i18n, _base, _inject {
InlineVerticalAdaptLayout: typeof InlineVerticalAdaptLayout;
RightVerticalAdaptLayout: typeof RightVerticalAdaptLayout;
TableAdaptLayout: typeof TableAdaptLayout;
AbsoluteCenterLayout: typeof AbsoluteCenterLayout;
IconButton: typeof IconButton;
TextEditor: typeof TextEditor;
IconLabel: typeof IconLabel;
@ -157,6 +159,7 @@ export {
InlineVerticalAdaptLayout,
RightVerticalAdaptLayout,
TableAdaptLayout,
AbsoluteCenterLayout,
IconButton,
AbstractLabel,
Label,

Loading…
Cancel
Save