Browse Source

Pull request #1677: KERNEL-6431 调整类型

Merge in VISUAL/fineui from ~ALAN/fineui:master to master

* commit '1bb7d6a908ca56a20b6050567a251ab156e81821':
  KERNEL-6431 调整类型
es6
alan 4 years ago
parent
commit
db6ee47192
  1. 2
      typescript/base/single/iframe/iframe.ts
  2. 2
      typescript/core/wrapper/layout/layout.card.ts
  3. 4
      typescript/index.ts

2
typescript/base/single/iframe/iframe.ts

@ -10,7 +10,7 @@ export interface _Iframe extends _Single {
getName(): string;
}
export declare class iframe extends Single {
export declare class Iframe extends Single {
static xtype: string;
setSrc(v: string): void;

2
typescript/core/wrapper/layout/layout.card.ts

@ -14,7 +14,7 @@ export declare class CardLayout extends Layout {
addCardByName(cardName: string, cardItem: any): Widget
showCardByName(cardName: string, action: any, callback: () => void): void;
showCardByName(cardName: string, action?: any, callback?: () => void): void;
showLastCard(): void;

4
typescript/index.ts

@ -8,7 +8,7 @@ import { _Button, _ButtonStatic, Button } from "./base/single/button/buttons/but
import { TextButton, _TextButton, _TextButtonStatic } from "./base/single/button/buttons/button.text";
import { _IconTextItem, _IconTextItemStatic } from "./base/single/button/listitem/icontextitem";
import { _Editor, _EditorStatic, Editor } from "./base/single/editor/editor";
import { iframe, _Iframe } from "./base/single/iframe/iframe";
import { Iframe, _Iframe } from "./base/single/iframe/iframe";
import { _Checkbox, _CheckboxStatic } from "./base/single/input/checkbox";
import { _Input, _InputStatic } from "./base/single/input/input";
import { _AbstractLabel, AbstractLabel } from "./base/single/label/abstract.label";
@ -348,5 +348,5 @@ export {
CardLayout,
DynamicYearMonthCombo,
TimeCombo,
iframe,
Iframe,
};

Loading…
Cancel
Save