Refactor #6435 - PickList

pull/6439/head
tugcekucukoglu 2024-09-19 10:58:19 +03:00
parent bc48176296
commit b8100f4c1b
2 changed files with 3 additions and 15 deletions

View File

@ -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.
*/ */

View File

@ -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')"