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

@ -57,75 +57,75 @@ export interface PanelMenuPassThroughMethodOptions {
*/
export interface PanelMenuPassThroughOptions {
/**
* Used to pass attributes to the roots DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the panels DOM element.
* Used to pass attributes to the panel's DOM element.
*/
panel?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the headers DOM element.
* Used to pass attributes to the header's DOM element.
*/
header?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the header contents DOM element.
* Used to pass attributes to the header content's DOM element.
*/
headerContent?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the header links DOM element.
* Used to pass attributes to the header link's DOM element.
*/
headerLink?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the submenuIcons DOM element.
* Used to pass attributes to the submenuIcon's DOM element.
*/
submenuIcon?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the header icons DOM element.
* Used to pass attributes to the header icon's DOM element.
*/
headerIcon?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the header labels DOM element.
* Used to pass attributes to the header label's DOM element.
*/
headerLabel?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the content containers DOM element.
* Used to pass attributes to the content container's DOM element.
*/
contentContainer?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the contents DOM element.
* Used to pass attributes to the content's DOM element.
*/
content?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the root lists DOM element.
* Used to pass attributes to the root list's DOM element.
*/
rootList?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the list items DOM element.
* Used to pass attributes to the list item's DOM element.
*/
menuitem?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the item contents DOM element.
* Used to pass attributes to the item content's DOM element.
*/
itemContent?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the item links DOM element.
* Used to pass attributes to the item link's DOM element.
*/
itemLink?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the item icons DOM element.
* Used to pass attributes to the item icon's DOM element.
*/
itemIcon?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the item labels DOM element.
* Used to pass attributes to the item label's DOM element.
*/
itemLabel?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the submenus DOM element.
* Used to pass attributes to the submenu's DOM element.
*/
submenu?: PanelMenuPassThroughOptionType;
/**
* Used to pass attributes to the separators DOM element.
* Used to pass attributes to the separator's DOM element.
*/
separator?: PanelMenuPassThroughOptionType;
/**