Refactor #6435 - PickList
parent
bc48176296
commit
b8100f4c1b
|
@ -172,15 +172,11 @@ export interface PickListPassThroughOptions {
|
|||
/**
|
||||
* Used to pass attributes to the Listbox component.
|
||||
*/
|
||||
pcList?: ListboxPassThroughOptions<PickListSharedPassThroughMethodOptions>;
|
||||
pcListbox?: ListboxPassThroughOptions<PickListSharedPassThroughMethodOptions>;
|
||||
/**
|
||||
* Used to pass attributes to the source list containerr's DOM element.
|
||||
*/
|
||||
sourceListContainer?: PickListPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the source list's DOM element.
|
||||
*/
|
||||
sourceList?: PickListPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the transfer controls' DOM element.
|
||||
*/
|
||||
|
@ -205,14 +201,6 @@ export interface PickListPassThroughOptions {
|
|||
* Used to pass attributes to the target list container's DOM element.
|
||||
*/
|
||||
targetListContainer?: PickListPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the target list's DOM element.
|
||||
*/
|
||||
targetList?: PickListPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the target item's DOM element.
|
||||
*/
|
||||
item?: PickListPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the target controls' DOM element.
|
||||
*/
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
:focusOnHover="focusOnHover"
|
||||
:striped="striped"
|
||||
:disabled="disabled"
|
||||
:pt="ptm('pcList')"
|
||||
:pt="ptm('pcListbox')"
|
||||
:unstyled="unstyled"
|
||||
@focus="onListFocus($event, 'sourceList')"
|
||||
@blur="onListBlur($event, 'sourceList')"
|
||||
|
@ -113,7 +113,7 @@
|
|||
:focusOnHover="focusOnHover"
|
||||
:striped="striped"
|
||||
:disabled="disabled"
|
||||
:pt="ptm('pcList')"
|
||||
:pt="ptm('pcListbox')"
|
||||
:unstyled="unstyled"
|
||||
@focus="onListFocus($event, 'targetList')"
|
||||
@blur="onListBlur($event, 'targetList')"
|
||||
|
|
Loading…
Reference in New Issue