mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #5099 - autoOptionFocus property added to Input-like components
This commit is contained in:
parent
c8609171c2
commit
54a7a4fb50
10 changed files with 60 additions and 13 deletions
|
@ -46,11 +46,21 @@ const classes = {
|
|||
}
|
||||
],
|
||||
sourceControls: 'p-picklist-buttons p-picklist-source-controls',
|
||||
sourceWrapper: 'p-picklist-list-wrapper p-picklist-source-wrapper',
|
||||
sourceWrapper: ({ instance }) => [
|
||||
'p-picklist-list-wrapper p-picklist-source-wrapper',
|
||||
{
|
||||
'p-focus': instance.focused.sourceList
|
||||
}
|
||||
],
|
||||
sourceHeader: 'p-picklist-header',
|
||||
sourceList: 'p-picklist-list p-picklist-source-list',
|
||||
buttons: 'p-picklist-buttons p-picklist-transfer-buttons',
|
||||
targetWrapper: 'p-picklist-list-wrapper p-picklist-target-wrapper',
|
||||
targetWrapper: ({ instance }) => [
|
||||
'p-picklist-list-wrapper p-picklist-target-wrapper',
|
||||
{
|
||||
'p-focus': instance.focused.targetList
|
||||
}
|
||||
],
|
||||
targetHeader: 'p-picklist-header',
|
||||
targetList: 'p-picklist-list p-picklist-target',
|
||||
item: ({ instance, item, id, listIndex }) => [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue