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