Update PickList.d.ts

pull/3950/head
Tuğçe Küçükoğlu 2023-05-10 01:10:31 +03:00
parent 1dd42253f8
commit f101f1379d
1 changed files with 19 additions and 1 deletions

View File

@ -197,6 +197,19 @@ export interface PickListPassThroughAttributes {
[key: string]: any; [key: string]: any;
} }
export interface PickListFocusedState {
/**
* Current source list's focused state as a boolean.
* @defaultValue false
*/
sourceList: boolean;
/**
* Current target list's focused state as a boolean.
* @defaultValue false
*/
targetList: boolean;
}
/** /**
* Defines current inline state in PickList component. * Defines current inline state in PickList component.
*/ */
@ -211,7 +224,7 @@ export interface PickListState {
d_selection: any[]; d_selection: any[];
/** /**
* Current focused state as a boolean. * Current focused state as a boolean.
* @defaultValue false * @defaultValue [false, false]
*/ */
focused: boolean; focused: boolean;
/** /**
@ -219,6 +232,11 @@ export interface PickListState {
* @defaultvalue -1 * @defaultvalue -1
*/ */
focusedOptionIndex: number; focusedOptionIndex: number;
/**
* Current view change state as a boolean.
* @defaultValue false
*/
viewChanged: boolean;
} }
/** /**