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

@ -31,82 +31,82 @@ export interface PaginatorPassThroughMethodOptions {
*/
export interface PaginatorPassThroughOptions {
/**
* Uses to pass attributes to the paginator wrapper's DOM element.
* Used to pass attributes to the paginator wrapper's DOM element.
*/
paginatorWrapper?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the root's DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the start's DOM element.
* Used to pass attributes to the start's DOM element.
*/
start?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the first page button's DOM element.
* Used to pass attributes to the first page button's DOM element.
*/
firstPageButton?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the first page icon's DOM element.
* Used to pass attributes to the first page icon's DOM element.
*/
firstPageIcon?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the prev page button's DOM element.
* Used to pass attributes to the prev page button's DOM element.
*/
previousPageButton?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the prev page icon's DOM element.
* Used to pass attributes to the prev page icon's DOM element.
*/
previousPageIcon?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the next page button's DOM element.
* Used to pass attributes to the next page button's DOM element.
*/
nextPageButton?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the next page icon's DOM element.
* Used to pass attributes to the next page icon's DOM element.
*/
nextPageIcon?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the last page button's DOM element.
* Used to pass attributes to the last page button's DOM element.
*/
lastPageButton?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the last page icon's DOM element.
* Used to pass attributes to the last page icon's DOM element.
*/
lastPageIcon?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the pages's DOM element.
* Used to pass attributes to the pages's DOM element.
*/
pages?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the page button's DOM element.
* Used to pass attributes to the page button's DOM element.
*/
pageButton?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the current's DOM element.
* Used to pass attributes to the current's DOM element.
*/
current?: PaginatorPassThroughOptionType;
/**
* Uses to pass attributes to the Dropdown component.
* Used to pass attributes to the Dropdown component.
* @see {@link DropdownPassThroughOptionType}
*/
rowPerPageDropdown?: DropdownPassThroughOptionType;
/**
* Uses to pass attributes to the Dropdown component.
* Used to pass attributes to the Dropdown component.
* @see {@link DropdownPassThroughOptionType}
*/
jumpToPageDropdown?: DropdownPassThroughOptionType;
/**
* Uses to pass attributes to the Dropdown component.
* Used to pass attributes to the Dropdown component.
* @see {@link InputNumberPassThroughOptionType}
*/
jumpToPageInput?: InputNumberPassThroughOptionType;
/**
* Uses to pass attributes to the end's DOM element.
* Used to pass attributes to the end's DOM element.
*/
end?: PaginatorPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* Used to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
@ -232,7 +232,7 @@ export interface PaginatorProps {
*/
alwaysShow?: boolean | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* Used to pass attributes to DOM elements inside the component.
* @type {PaginatorPassThroughOptions}
*/
pt?: PaginatorPassThroughOptions;