Fixed typo

This commit is contained in:
Cagatay Civici 2023-08-01 17:01:12 +03:00
parent 6594502d78
commit 56e3f23eb3
184 changed files with 2347 additions and 2347 deletions

View file

@ -104,99 +104,99 @@ export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent
*/
export interface PickListPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the source controls' DOM element.
* Used to pass attributes to the source controls' DOM element.
*/
sourceControls?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
sourceMoveUpButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
sourceMoveTopButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
sourceMoveDownButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
sourceMoveBottomButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the source wrapper's DOM element.
* Used to pass attributes to the source wrapper's DOM element.
*/
sourceWrapper?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the source header's DOM element.
* Used to pass attributes to the source header's DOM element.
*/
sourceHeader?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the source list's DOM element.
* Used to pass attributes to the source list's DOM element.
*/
sourceList?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the buttons' DOM element.
* Used to pass attributes to the buttons' DOM element.
*/
buttons?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
moveToTargetButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
moveAllToTargetButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
moveToSourceButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
moveAllToSourceButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the target wrapper's DOM element.
* Used to pass attributes to the target wrapper's DOM element.
*/
targetWrapper?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the target header's DOM element.
* Used to pass attributes to the target header's DOM element.
*/
targetHeader?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the target list's DOM element.
* Used to pass attributes to the target list's DOM element.
*/
targetList?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the target item's DOM element.
* Used to pass attributes to the target item's DOM element.
*/
item?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the target controls' DOM element.
* Used to pass attributes to the target controls' DOM element.
*/
targetControls?: PickListPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
targetMoveUpButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
targetMoveTopButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
targetMoveDownButton?: ButtonPassThroughOptionType;
/**
* Uses to pass attributes to the Button component.
* Used to pass attributes to the Button component.
*/
targetMoveBottomButton?: ButtonPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* Used to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
@ -324,47 +324,47 @@ export interface PickListProps {
*/
tabindex?: number | string | undefined;
/**
* Uses to pass all properties of the HTMLAttributes to the target list element.
* Used to pass all properties of the HTMLAttributes to the target list element.
*/
targetListProps?: HTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLAttributes to the source list element.
* Used to pass all properties of the HTMLAttributes to the source list element.
*/
sourceListProps?: HTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move up button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move up button inside the component.
*/
moveUpButtonProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move top button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move top button inside the component.
*/
moveTopButtonProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move down button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move down button inside the component.
*/
moveDownButtonProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move bottom button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move bottom button inside the component.
*/
moveBottomButtonProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move to target button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move to target button inside the component.
*/
moveToTargetProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move all to target button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move all to target button inside the component.
*/
moveAllToTargetProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move to source button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move to source button inside the component.
*/
moveToSourceProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLButtonElement to the move all to source button inside the component.
* Used to pass all properties of the HTMLButtonElement to the move all to source button inside the component.
*/
moveAllToSourceProps?: ButtonHTMLAttributes | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* Used to pass attributes to DOM elements inside the component.
* @type {PickListPassThroughOptions}
*/
pt?: PickListPassThroughOptions;