mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Update PickList.d.ts
This commit is contained in:
parent
8ab8871195
commit
e0c71d8009
1 changed files with 17 additions and 0 deletions
17
components/lib/picklist/PickList.d.ts
vendored
17
components/lib/picklist/PickList.d.ts
vendored
|
@ -21,6 +21,7 @@ export interface PickListPassThroughMethodOptions {
|
|||
instance: any;
|
||||
props: PickListProps;
|
||||
state: PickListState;
|
||||
context: PickListContext;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -254,6 +255,22 @@ export interface PickListState {
|
|||
viewChanged: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export interface PickListContext {
|
||||
/**
|
||||
* Current active state of the item as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
active: boolean;
|
||||
/**
|
||||
* Current focus state of the item as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
focused: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid properties in PickList component.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue