forked from fanruan/fineui
data
4 years ago
42 changed files with 7058 additions and 6281 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; |
||||
} |
@ -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; |
||||
} |
||||
|
@ -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; |
||||
} |
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
Loading…
Reference in new issue