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

@ -30,27 +30,27 @@ export interface TabPanelPassThroughMethodOptions {
*/
export interface TabPanelPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: TabPanelPassThroughOptionType;
/**
* Uses to pass attributes to the header's DOM element.
* Used to pass attributes to the header's DOM element.
*/
header?: TabPanelPassThroughOptionType;
/**
* Uses to pass attributes to the header action's DOM element.
* Used to pass attributes to the header action's DOM element.
*/
headerAction?: TabPanelPassThroughOptionType;
/**
* Uses to pass attributes to the title's DOM element.
* Used to pass attributes to the title's DOM element.
*/
headerTitle?: TabPanelPassThroughOptionType;
/**
* Uses to pass attributes to the list's DOM element.
* Used to pass attributes to the list's DOM element.
*/
content?: TabPanelPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* Used to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
@ -77,12 +77,12 @@ export interface TabPanelProps {
*/
headerClass?: any;
/**
* Uses to pass all properties of the HTMLLiElement to the tab header.
* Used to pass all properties of the HTMLLiElement to the tab header.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/
headerProps?: LiHTMLAttributes | undefined;
/**
* Uses to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header.
* Used to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/
headerActionProps?: AnchorHTMLAttributes | undefined;
@ -95,7 +95,7 @@ export interface TabPanelProps {
*/
contentClass?: any;
/**
* Uses to pass all properties of the HTMLDivElement to the tab content.
* Used to pass all properties of the HTMLDivElement to the tab content.
* @deprecated since v3.26.0. Use 'pt' property instead.
*/
contentProps?: HTMLAttributes | undefined;
@ -105,7 +105,7 @@ export interface TabPanelProps {
*/
disabled?: boolean | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* Used to pass attributes to DOM elements inside the component.
* @type {TabPanelPassThroughOptions}
*/
pt?: TabPanelPassThroughOptions;