forked from fanruan/fineui
iapyang
4 years ago
55 changed files with 3947 additions and 3053 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,7 +1,14 @@ |
|||||||
import { _Single } from "../single"; |
import { Single, _Single } from "../single"; |
||||||
export interface _Iframe extends _Single { |
export interface _Iframe extends _Single { |
||||||
setSrc(v: string): void; |
setSrc(v: string): void; |
||||||
getSrc(): string; |
getSrc(): string; |
||||||
setNam(v: string): void; |
setName(v: string): void; |
||||||
|
getName(): string; |
||||||
|
} |
||||||
|
export declare class Iframe extends Single { |
||||||
|
static xtype: string; |
||||||
|
setSrc(v: string): void; |
||||||
|
getSrc(): string; |
||||||
|
setName(v: string): void; |
||||||
getName(): string; |
getName(): string; |
||||||
} |
} |
||||||
|
@ -0,0 +1,20 @@ |
|||||||
|
import { Widget } from "../../widget"; |
||||||
|
import { Layout } from "../layout"; |
||||||
|
export declare class CardLayout extends Layout { |
||||||
|
static xtype: string; |
||||||
|
empty(): void; |
||||||
|
isCardExisted(cardName: string): boolean; |
||||||
|
getCardByName<T>(name: string): T; |
||||||
|
deleteCardByName(cardName: string): void; |
||||||
|
addCardByName(cardName: string, cardItem: any): Widget; |
||||||
|
showCardByName(cardName: string, action?: any, callback?: () => void): void; |
||||||
|
showLastCard(): void; |
||||||
|
setDefaultShowName(name: string): void; |
||||||
|
getDefaultShowName(): string; |
||||||
|
getAllCardNames(): string[]; |
||||||
|
getShowingCard<T>(): T; |
||||||
|
deleteAllCard(): void; |
||||||
|
hideAllCard(): void; |
||||||
|
isAllCardHide(): boolean; |
||||||
|
removeWidget(nameOrWidget: string | Widget): void; |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
export declare class MultiLayerSelectTreeCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
setValue(v: string[] | string): void; |
||||||
|
getValue(): string[]; |
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
export declare class MultiLayerSingleTreeCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
setValue(v: string[] | string): void; |
||||||
|
getValue(): string[]; |
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
import { TreeValue } from "../../base/tree/ztree/treeview"; |
||||||
|
export declare class MultiTreeInsertCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_STOP: string; |
||||||
|
static EVENT_CLICK_ITEM: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
showView(): void; |
||||||
|
hideView(): void; |
||||||
|
setValue(v: TreeValue): void; |
||||||
|
getValue(): TreeValue; |
||||||
|
populate(): void; |
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
export declare class MultiTreeListCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_STOP: string; |
||||||
|
static EVENT_CLICK_ITEM: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
showView(): void; |
||||||
|
hideView(): void; |
||||||
|
setValue(v: string[]): void; |
||||||
|
getValue(): string[]; |
||||||
|
populate(): void; |
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
export declare class TimeCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_KEY_DOWN: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_VALID: string; |
||||||
|
static EVENT_ERROR: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
hidePopupView(): void; |
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
export declare class DynamicYearMonthCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_ERROR: string; |
||||||
|
static EVENT_VALID: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
hideView(): void; |
||||||
|
getKey(): string; |
||||||
|
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,11 +1,23 @@ |
|||||||
import { _Single } from "../single"; |
import { Single, _Single } from "../single"; |
||||||
|
|
||||||
export interface _Iframe extends _Single { |
export interface _Iframe extends _Single { |
||||||
setSrc(v: string): void; |
setSrc(v: string): void; |
||||||
|
|
||||||
getSrc(): string; |
getSrc(): string; |
||||||
|
|
||||||
setNam(v: string): void; |
setName(v: string): void; |
||||||
|
|
||||||
|
getName(): string; |
||||||
|
} |
||||||
|
|
||||||
|
export declare class Iframe extends Single { |
||||||
|
static xtype: string; |
||||||
|
|
||||||
|
setSrc(v: string): void; |
||||||
|
|
||||||
|
getSrc(): string; |
||||||
|
|
||||||
|
setName(v: string): void; |
||||||
|
|
||||||
getName(): string; |
getName(): string; |
||||||
} |
} |
||||||
|
@ -0,0 +1,36 @@ |
|||||||
|
import { Widget } from "../../widget"; |
||||||
|
import { Layout } from "../layout"; |
||||||
|
|
||||||
|
export declare class CardLayout extends Layout { |
||||||
|
static xtype: string; |
||||||
|
|
||||||
|
empty(): void; |
||||||
|
|
||||||
|
isCardExisted(cardName: string): boolean; |
||||||
|
|
||||||
|
getCardByName<T>(name: string):T; |
||||||
|
|
||||||
|
deleteCardByName(cardName: string): void; |
||||||
|
|
||||||
|
addCardByName(cardName: string, cardItem: any): Widget |
||||||
|
|
||||||
|
showCardByName(cardName: string, action?: any, callback?: () => void): void; |
||||||
|
|
||||||
|
showLastCard(): void; |
||||||
|
|
||||||
|
setDefaultShowName(name: string): void; |
||||||
|
|
||||||
|
getDefaultShowName(): string; |
||||||
|
|
||||||
|
getAllCardNames(): string[]; |
||||||
|
|
||||||
|
getShowingCard<T>(): T; |
||||||
|
|
||||||
|
deleteAllCard(): void; |
||||||
|
|
||||||
|
hideAllCard(): void; |
||||||
|
|
||||||
|
isAllCardHide(): boolean; |
||||||
|
|
||||||
|
removeWidget(nameOrWidget: string | Widget): void; |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
|
||||||
|
export declare class TimeCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_KEY_DOWN: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_VALID: string; |
||||||
|
static EVENT_ERROR: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
hidePopupView(): void; |
||||||
|
} |
@ -0,0 +1,14 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
|
||||||
|
export declare class DynamicYearMonthCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_ERROR: string; |
||||||
|
static EVENT_VALID: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
hideView(): void; |
||||||
|
|
||||||
|
getKey(): string; |
||||||
|
} |
Loading…
Reference in new issue