forked from fanruan/fineui
iapyang
4 years ago
91 changed files with 12705 additions and 9684 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 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
@ -0,0 +1,5 @@
|
||||
import { ButtonGroup } from './group.button'; |
||||
export declare class ButtonTree extends ButtonGroup { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
} |
@ -0,0 +1,15 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
export declare class Popover extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CLOSE: string; |
||||
static EVENT_OPEN: string; |
||||
static EVENT_CANCEL: string; |
||||
static EVENT_CONFIRM: string; |
||||
hide(): void; |
||||
open(): void; |
||||
close(): void; |
||||
setZindex(zindex: number): void; |
||||
} |
||||
export declare class BarPopover extends Popover { |
||||
static xtype: string; |
||||
} |
@ -1,7 +1,13 @@
|
||||
import { _BasicButton } from "./button.basic"; |
||||
import { _BasicButton, BasicButton } from "./button.basic"; |
||||
export interface _NodeButton extends _BasicButton { |
||||
isOpened(): void; |
||||
setOpened(b: boolean): void; |
||||
triggerCollapse(): void; |
||||
triggerExpand(): void; |
||||
} |
||||
export declare class NodeButton extends BasicButton { |
||||
isOpened(): boolean; |
||||
setOpened(b: boolean): void; |
||||
triggerCollapse(): void; |
||||
triggerExpand(): void; |
||||
} |
||||
|
@ -1,4 +1,5 @@
|
||||
import { BasicButton } from "../button.basic"; |
||||
export declare class IconButton extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
} |
||||
|
@ -1,4 +1,5 @@
|
||||
import { BasicButton } from "../button.basic"; |
||||
export declare class IconTextIconItem extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
} |
||||
|
@ -0,0 +1,4 @@
|
||||
import { Single } from '../single'; |
||||
export declare class IconLabel extends Single { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,13 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
export declare class CustomTree extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
initTree(nodes: any, ...args: any[]): void; |
||||
stroke(...args: any[]): void; |
||||
populate(nodes: any, ...args: any[]): void; |
||||
getAllButtons<T>(): T[]; |
||||
getAllLeaves<T>(): T[]; |
||||
getNodeById(id: any): any; |
||||
getNodeByValue(value: any): any; |
||||
getValue<T>(): T[]; |
||||
} |
@ -0,0 +1,6 @@
|
||||
import { NodeButton } from '../../../base/single/button/button.node'; |
||||
export declare class IconArrowNode extends NodeButton { |
||||
static xtype: string; |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { BasicButton } from '../../../base/single/button/button.basic'; |
||||
export declare class FirstTreeLeafItem extends BasicButton { |
||||
static xtype: string; |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
doHighLight(...args: any[]): void; |
||||
unHighLight(...args: any[]): void; |
||||
getId(): string; |
||||
getPId(): string; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { BasicButton } from '../../../base/single/button/button.basic'; |
||||
export declare class LastTreeLeafItem extends BasicButton { |
||||
static xtype: string; |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
doHighLight(...args: any[]): void; |
||||
unHighLight(...args: any[]): void; |
||||
getId(): string; |
||||
getPId(): string; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { BasicButton } from '../../../base/single/button/button.basic'; |
||||
export declare class MidTreeLeafItem extends BasicButton { |
||||
static xtype: string; |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
doHighLight(...args: any[]): void; |
||||
unHighLight(...args: any[]): void; |
||||
getId(): string; |
||||
getPId(): string; |
||||
} |
@ -1,7 +1,12 @@
|
||||
import { _Widget } from "../../core/widget"; |
||||
import { _Widget, Widget } from "../../core/widget"; |
||||
export interface _TextValueCombo extends _Widget { |
||||
populate(items: any): void; |
||||
} |
||||
export interface _TextValueComboStatic { |
||||
EVENT_CHANGE: string; |
||||
} |
||||
export declare class TextValueCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
populate(items: any): void; |
||||
} |
||||
|
@ -0,0 +1,8 @@
|
||||
import { Widget } from '../../../core/widget'; |
||||
export declare class IconCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
showView(): void; |
||||
hideView(): void; |
||||
populate(items: any[]): void; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { Layout } from "../../layout"; |
||||
export declare class TableAdaptLayout extends Layout { |
||||
static xtype: string; |
||||
appendFragment(frag: any): void; |
||||
} |
@ -0,0 +1,4 @@
|
||||
import { Layout } from "../../layout"; |
||||
export declare class HorizontalAutoLayout extends Layout { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,4 @@
|
||||
import { Layout } from "../../layout"; |
||||
export declare class InlineVerticalAdaptLayout extends Layout { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,18 @@
|
||||
import { Single } from '../../base/single/single'; |
||||
export declare class DynamicDateCombo extends Single { |
||||
static xtype: string; |
||||
static Static: 1; |
||||
static Dynamic: 2; |
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
setMinDate(minDate: string): void; |
||||
setMaxDate(maxDate: string): void; |
||||
getKey(): string; |
||||
hidePopupView(): void; |
||||
} |
@ -0,0 +1,28 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
export declare class TextEditor extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CLICK: string; |
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_SPACE: string; |
||||
static EVENT_BACKSPACE: string; |
||||
static EVENT_START: string; |
||||
static EVENT_PAUSE: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_CHANGE_CONFIRM: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_ENTER: string; |
||||
static EVENT_RESTRICT: string; |
||||
static EVENT_REMOVE: string; |
||||
static EVENT_EMPTY: string; |
||||
setWaterMark(v: string): void; |
||||
focus(): void; |
||||
blur(): void; |
||||
setErrorText(v: string): void; |
||||
getErrorText(): string; |
||||
isValid(): boolean; |
||||
} |
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
@ -0,0 +1,6 @@
|
||||
import { ButtonGroup } from './group.button'; |
||||
|
||||
export declare class ButtonTree extends ButtonGroup { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
} |
@ -0,0 +1,22 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
|
||||
export declare class Popover extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CLOSE: string; |
||||
static EVENT_OPEN: string; |
||||
static EVENT_CANCEL: string; |
||||
static EVENT_CONFIRM: string; |
||||
|
||||
hide(): void; |
||||
|
||||
open(): void; |
||||
|
||||
close(): void; |
||||
|
||||
setZindex(zindex: number): void; |
||||
} |
||||
|
||||
export declare class BarPopover extends Popover { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { Single } from '../single'; |
||||
|
||||
export declare class IconLabel extends Single { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,22 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
|
||||
export declare class CustomTree extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
initTree(nodes: any, ...args: any[]): void; |
||||
|
||||
stroke(...args: any[]): void; |
||||
|
||||
populate(nodes: any, ...args: any[]): void; |
||||
|
||||
getAllButtons<T>(): T[]; |
||||
|
||||
getAllLeaves<T>(): T[]; |
||||
|
||||
getNodeById(id: any): any; |
||||
|
||||
getNodeByValue(value: any): any; |
||||
|
||||
getValue<T>(): T[]; |
||||
} |
@ -0,0 +1,9 @@
|
||||
import { NodeButton } from '../../../base/single/button/button.node'; |
||||
|
||||
export declare class IconArrowNode extends NodeButton { |
||||
static xtype: string; |
||||
|
||||
doRedMark(...args: any[]): void; |
||||
|
||||
unRedMark(...args: any[]): void; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { BasicButton } from '../../../base/single/button/button.basic'; |
||||
|
||||
export declare class FirstTreeLeafItem extends BasicButton { |
||||
static xtype: string; |
||||
|
||||
doRedMark(...args: any[]): void; |
||||
|
||||
unRedMark(...args: any[]): void; |
||||
|
||||
doHighLight(...args: any[]): void; |
||||
|
||||
unHighLight(...args: any[]): void; |
||||
|
||||
getId(): string; |
||||
|
||||
getPId(): string; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { BasicButton } from '../../../base/single/button/button.basic'; |
||||
|
||||
export declare class LastTreeLeafItem extends BasicButton { |
||||
static xtype: string; |
||||
|
||||
doRedMark(...args: any[]): void; |
||||
|
||||
unRedMark(...args: any[]): void; |
||||
|
||||
doHighLight(...args: any[]): void; |
||||
|
||||
unHighLight(...args: any[]): void; |
||||
|
||||
getId(): string; |
||||
|
||||
getPId(): string; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { BasicButton } from '../../../base/single/button/button.basic'; |
||||
|
||||
export declare class MidTreeLeafItem extends BasicButton { |
||||
static xtype: string; |
||||
|
||||
doRedMark(...args: any[]): void; |
||||
|
||||
unRedMark(...args: any[]): void; |
||||
|
||||
doHighLight(...args: any[]): void; |
||||
|
||||
unHighLight(...args: any[]): void; |
||||
|
||||
getId(): string; |
||||
|
||||
getPId(): string; |
||||
} |
@ -0,0 +1,13 @@
|
||||
import { Widget } from '../../../core/widget'; |
||||
|
||||
export declare class IconCombo extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CHANGE: string; |
||||
|
||||
showView(): void; |
||||
|
||||
hideView(): void; |
||||
|
||||
populate(items: any[]): void; |
||||
} |
@ -0,0 +1,24 @@
|
||||
import { Single } from '../../base/single/single'; |
||||
|
||||
export declare class DynamicDateCombo extends Single { |
||||
static xtype: string; |
||||
static Static: 1; |
||||
static Dynamic: 2; |
||||
|
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
setMinDate(minDate: string): void; |
||||
|
||||
setMaxDate(maxDate: string): void; |
||||
|
||||
getKey(): string; |
||||
|
||||
hidePopupView(): void; |
||||
} |
@ -0,0 +1,36 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
|
||||
export declare class TextEditor extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CHANGE: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CLICK: string; |
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_SPACE: string; |
||||
static EVENT_BACKSPACE: string; |
||||
static EVENT_START: string; |
||||
static EVENT_PAUSE: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_CHANGE_CONFIRM: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_ENTER: string; |
||||
static EVENT_RESTRICT: string; |
||||
static EVENT_REMOVE: string; |
||||
static EVENT_EMPTY: string; |
||||
|
||||
setWaterMark(v: string): void; |
||||
|
||||
focus(): void; |
||||
|
||||
blur(): void; |
||||
|
||||
setErrorText(v: string): void; |
||||
|
||||
getErrorText(): string; |
||||
|
||||
isValid(): boolean |
||||
} |
Loading…
Reference in new issue