Revert "Fixed typo"

This reverts commit 70980de77a.
This commit is contained in:
Cagatay Civici 2024-05-15 12:24:26 +03:00
parent 70980de77a
commit 428dbe0469
107 changed files with 753 additions and 753 deletions

View file

@ -146,7 +146,7 @@ export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent
*/
export interface PickListPassThroughOptions {
/**
* Used to pass attributes to the roots DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: PickListPassThroughOptionType;
/**
@ -174,11 +174,11 @@ export interface PickListPassThroughOptions {
*/
pcList?: ListboxPassThroughOptions<PickListSharedPassThroughMethodOptions>;
/**
* Used to pass attributes to the source list containerrs DOM element.
* Used to pass attributes to the source list containerr's DOM element.
*/
sourceListContainer?: PickListPassThroughOptionType;
/**
* Used to pass attributes to the source lists DOM element.
* Used to pass attributes to the source list's DOM element.
*/
sourceList?: PickListPassThroughOptionType;
/**
@ -202,15 +202,15 @@ export interface PickListPassThroughOptions {
*/
moveAllToSourceButton?: ButtonPassThroughOptions<PickListSharedPassThroughMethodOptions>;
/**
* Used to pass attributes to the target list containers DOM element.
* Used to pass attributes to the target list container's DOM element.
*/
targetListContainer?: PickListPassThroughOptionType;
/**
* Used to pass attributes to the target lists DOM element.
* Used to pass attributes to the target list's DOM element.
*/
targetList?: PickListPassThroughOptionType;
/**
* Used to pass attributes to the target items DOM element.
* Used to pass attributes to the target item's DOM element.
*/
item?: PickListPassThroughOptionType;
/**