mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Update PickList.d.ts
This commit is contained in:
parent
1dd42253f8
commit
f101f1379d
1 changed files with 19 additions and 1 deletions
20
components/lib/picklist/PickList.d.ts
vendored
20
components/lib/picklist/PickList.d.ts
vendored
|
@ -197,6 +197,19 @@ export interface PickListPassThroughAttributes {
|
|||
[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.
|
||||
*/
|
||||
|
@ -211,7 +224,7 @@ export interface PickListState {
|
|||
d_selection: any[];
|
||||
/**
|
||||
* Current focused state as a boolean.
|
||||
* @defaultValue false
|
||||
* @defaultValue [false, false]
|
||||
*/
|
||||
focused: boolean;
|
||||
/**
|
||||
|
@ -219,6 +232,11 @@ export interface PickListState {
|
|||
* @defaultvalue -1
|
||||
*/
|
||||
focusedOptionIndex: number;
|
||||
/**
|
||||
* Current view change state as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
viewChanged: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue