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
9f54c0403e
commit
0ade78a2d0
1 changed files with 28 additions and 4 deletions
32
components/lib/picklist/PickList.d.ts
vendored
32
components/lib/picklist/PickList.d.ts
vendored
|
@ -254,20 +254,44 @@ export interface PickListSlots {
|
|||
movebottomicon(): VNode[];
|
||||
/**
|
||||
* Custom move to target icon template.
|
||||
* @param {Object} scope - movetotargeticon slot's params.
|
||||
*/
|
||||
movetotargeticon(): VNode[];
|
||||
movetotargeticon(scope: {
|
||||
/**
|
||||
* Whether view change.
|
||||
*/
|
||||
viewChanged: boolean;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom move all to target icon template.
|
||||
* @param {Object} scope - movealltotargeticon slot's params.
|
||||
*/
|
||||
movealltotargeticon(): VNode[];
|
||||
movealltotargeticon(scope: {
|
||||
/**
|
||||
* Whether view change.
|
||||
*/
|
||||
viewChanged: boolean;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom move to source icon template.
|
||||
* @param {Object} scope - movetosourceicon slot's params.
|
||||
*/
|
||||
movetosourceicon(): VNode[];
|
||||
movetosourceicon(scope: {
|
||||
/**
|
||||
* Whether view change.
|
||||
*/
|
||||
viewChanged: boolean;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom move all to source icon template.
|
||||
* @param {Object} scope - movealltosourceicon slot's params.
|
||||
*/
|
||||
movealltosourceicon(): VNode[];
|
||||
movealltosourceicon(scope: {
|
||||
/**
|
||||
* Whether view change.
|
||||
*/
|
||||
viewChanged: boolean;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue