Browse Source

refactor: 修改下类名

es6
iapyang 4 years ago
parent
commit
44553b7099
  1. 2
      typescript/core/wrapper/layout/adapt/adapt.leftrightvertical.ts
  2. 6
      typescript/index.ts

2
typescript/core/wrapper/layout/adapt/adapt.leftrightvertical.ts

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

6
typescript/index.ts

@ -47,7 +47,7 @@ import { _DefaultLayout } from "./core/wrapper/layout/layout.default";
import { _DownListCombo, _DownListComboStatic } from "./widget/downlist/combo.downlist";
import { Icon } from "./base/single/icon/icon";
import { _LeftVerticalAdapt } from "./core/wrapper/layout/adapt/adapt.leftvertical";
import { LeftRightVerticalAdapt } from "./core/wrapper/layout/adapt/adapt.leftrightvertical";
import { LeftRightVerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.leftrightvertical";
type ClassConstructor<T extends {}> = T & {
@ -106,7 +106,7 @@ export interface BI extends _func, _i18n, _base, _inject {
SearchTextValueCombo: ClassConstructor<_SearchTextValueCombo> & _SearchTextValueComboStatic;
Icon: typeof Icon;
LeftVerticalAdaptLayout: ClassConstructor<_LeftVerticalAdapt>;
LeftRightVerticalAdapt: typeof LeftRightVerticalAdapt;
LeftRightVerticalAdaptLayout: typeof LeftRightVerticalAdaptLayout;
}
export default {
@ -116,5 +116,5 @@ export {
Widget,
Single,
Icon,
LeftRightVerticalAdapt,
LeftRightVerticalAdaptLayout,
};

Loading…
Cancel
Save