Refactor #3797 - Use camelcase for pt

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-19 11:00:52 +03:00
parent ebd8e6283b
commit afda38b1eb
9 changed files with 30 additions and 30 deletions

View file

@ -46,11 +46,11 @@ export interface TabViewPassThroughOptions {
/**
* Uses to pass attributes to the nav container's DOM element.
*/
navcontainer?: TabViewPassThroughOptionType;
navContainer?: TabViewPassThroughOptionType;
/**
* Uses to pass attributes to the nav content's DOM element.
*/
navcontent?: TabViewPassThroughOptionType;
navContent?: TabViewPassThroughOptionType;
/**
* Uses to pass attributes to the list's DOM element.
*/
@ -62,23 +62,23 @@ export interface TabViewPassThroughOptions {
/**
* Uses to pass attributes to the previous button's DOM element.
*/
prevbutton?: TabViewPassThroughOptionType;
previousButton?: TabViewPassThroughOptionType;
/**
* Uses to pass attributes to the previous button icon's DOM element.
*/
previcon?: TabViewPassThroughOptionType;
previousIcon?: TabViewPassThroughOptionType;
/**
* Uses to pass attributes to the nex button's DOM element.
*/
nextbutton?: TabViewPassThroughOptionType;
nextButton?: TabViewPassThroughOptionType;
/**
* Uses to pass attributes to the next button icon's DOM element.
*/
nexticon?: TabViewPassThroughOptionType;
nextIcon?: TabViewPassThroughOptionType;
/**
* Uses to pass attributes to the panel's DOM element.
*/
panelcontainer?: TabViewPassThroughOptionType;
panelContainer?: TabViewPassThroughOptionType;
}
/**