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

@ -74,43 +74,43 @@ export interface TabViewClickEvent extends TabViewChangeEvent {}
*/
export interface TabViewPassThroughOptions {
/**
* Used to pass attributes to the roots DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the nav containers DOM element.
* Used to pass attributes to the nav container's DOM element.
*/
navContainer?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the nav contents DOM element.
* Used to pass attributes to the nav content's DOM element.
*/
navContent?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the lists DOM element.
* Used to pass attributes to the list's DOM element.
*/
nav?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the inkbars DOM element.
* Used to pass attributes to the inkbar's DOM element.
*/
inkbar?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the previous buttons DOM element.
* Used to pass attributes to the previous button's DOM element.
*/
previousButton?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the previous button icons DOM element.
* Used to pass attributes to the previous button icon's DOM element.
*/
previousIcon?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the next buttons DOM element.
* Used to pass attributes to the next button's DOM element.
*/
nextButton?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the next button icons DOM element.
* Used to pass attributes to the next button icon's DOM element.
*/
nextIcon?: TabViewPassThroughOptionType;
/**
* Used to pass attributes to the panels DOM element.
* Used to pass attributes to the panel's DOM element.
*/
panelContainer?: TabViewPassThroughOptionType;
/**