You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
927 B
30 lines
927 B
4 years ago
|
import { _Widget } from "../../core/widget";
|
||
|
export interface _ButtonGroup extends _Widget {
|
||
|
prependItems<T>(items: T[]): void;
|
||
|
addItems<T>(items: T[]): void;
|
||
|
removeItemAt(indexes: any): void;
|
||
|
removeItems(values: any): void;
|
||
|
populate(items?: any, ...args: any[]): void;
|
||
|
setNotSelectedValue(v: any): void;
|
||
|
getNotSelectedValue<T>(): T[];
|
||
|
setEnabledValue(v: any): void;
|
||
|
getAllButtons<T>(): T[];
|
||
|
getAllLeaves<T>(): T[];
|
||
|
getSelectedButtons<T>(): T[];
|
||
|
getNotSelectedButtons<T>(): T[];
|
||
|
getIndexByValue(value: any): number;
|
||
|
getNodeById(id: any): any;
|
||
|
getNodeByValue(value: any): any;
|
||
|
getValue<T>(): T[];
|
||
|
}
|
||
|
export interface _ButtonGroupChooseType {
|
||
|
CHOOSE_TYPE_SINGLE: number;
|
||
|
CHOOSE_TYPE_MULTI: number;
|
||
|
CHOOSE_TYPE_ALL: number;
|
||
|
CHOOSE_TYPE_NONE: number;
|
||
|
CHOOSE_TYPE_DEFAULT: number;
|
||
|
}
|
||
|
export interface _ButtonGroupStatic {
|
||
|
EVENT_CHANGE: string;
|
||
|
}
|