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

@ -60,68 +60,68 @@ export interface ListboxFilterEvent {
*/
export interface ListboxPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the header's DOM element.
* Used to pass attributes to the header's DOM element.
*/
header?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the filter container's DOM element.
* Used to pass attributes to the filter container's DOM element.
*/
filterContainer?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the filter input's DOM element.
* Used to pass attributes to the filter input's DOM element.
*/
filterInput?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the filter icon's DOM element.
* Used to pass attributes to the filter icon's DOM element.
*/
filterIcon?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the wrapper's DOM element.
* Used to pass attributes to the wrapper's DOM element.
*/
wrapper?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the VirtualScroller component.
* Used to pass attributes to the VirtualScroller component.
* @see {@link VirtualScrollerPassThroughOptionType}
*/
virtualScroller?: VirtualScrollerPassThroughOptionType;
/**
* Uses to pass attributes to the list's DOM element.
* Used to pass attributes to the list's DOM element.
*/
list?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the item group's DOM element.
* Used to pass attributes to the item group's DOM element.
*/
itemGroup?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the item's DOM element.
* Used to pass attributes to the item's DOM element.
*/
item?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the emptyMessage's DOM element.
* Used to pass attributes to the emptyMessage's DOM element.
*/
emptyMessage?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the hidden first focusable element's DOM element.
* Used to pass attributes to the hidden first focusable element's DOM element.
*/
hiddenFirstFocusableEl?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the hidden filter result's DOM element.
* Used to pass attributes to the hidden filter result's DOM element.
*/
hiddenFilterResult?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the hidden selected message's DOM element.
* Used to pass attributes to the hidden selected message's DOM element.
*/
hiddenSelectedMessage?: ListboxPassThroughOptionType;
/**
* Uses to pass attributes to the hidden last focusable element's DOM element.
* Used to pass attributes to the hidden last focusable element's DOM element.
*/
hiddenLastFocusableEl?: ListboxPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* Used to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
@ -258,7 +258,7 @@ export interface ListboxProps {
*/
filterFields?: string[] | undefined;
/**
* Uses to pass all properties of the HTMLInputElement to the filter input inside the component.
* Used to pass all properties of the HTMLInputElement to the filter input inside the component.
*/
filterInputProps?: InputHTMLAttributes | undefined;
/**
@ -319,7 +319,7 @@ export interface ListboxProps {
*/
'aria-labelledby'?: string | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* Used to pass attributes to DOM elements inside the component.
* @type {ListboxPassThroughOptions}
*/
pt?: ListboxPassThroughOptions;