Skip to content

Commit

Permalink
Refactor #4293 - For TabView
Browse files Browse the repository at this point in the history
  • Loading branch information
ulasturann committed May 5, 2023
1 parent c28c98a commit 5b0cd29
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions components/lib/tabview/tabview.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ export interface TabPanelPassThroughOptions {
/**
* Uses to pass attributes to the header's DOM element.
*/
header?: TabPanelPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
header?: TabPanelPassThroughType<React.HTMLAttributes<HTMLLIElement>>;
/**
* Uses to pass attributes to the header action's DOM element.
*/
headerAction?: TabPanelPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
headerAction?: TabPanelPassThroughType<React.HTMLAttributes<HTMLAnchorElement>>;
/**
* Uses to pass attributes to the title's DOM element.
*/
headerTitle?: TabPanelPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
headerTitle?: TabPanelPassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the list's DOM element.
*/
Expand Down Expand Up @@ -281,27 +281,27 @@ export interface TabViewPassThroughOptions {
/**
* Uses to pass attributes to the list's DOM element.
*/
nav?: TabViewPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
nav?: TabViewPassThroughType<React.HTMLAttributes<HTMLUListElement>>;
/**
* Uses to pass attributes to the inkbar's DOM element.
*/
inkbar?: TabViewPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
inkbar?: TabViewPassThroughType<React.HTMLAttributes<HTMLLIElement>>;
/**
* Uses to pass attributes to the previous button's DOM element.
*/
prevbutton?: TabViewPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
prevbutton?: TabViewPassThroughType<React.HTMLAttributes<HTMLButtonElement>>;
/**
* Uses to pass attributes to the previous button icon's DOM element.
*/
previcon?: TabViewPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
previcon?: TabViewPassThroughType<React.HTMLAttributes<HTMLSpanElement | SVGSVGElement>>;
/**
* Uses to pass attributes to the nex button's DOM element.
*/
nextbutton?: TabViewPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
nextbutton?: TabViewPassThroughType<React.HTMLAttributes<HTMLButtonElement>>;
/**
* Uses to pass attributes to the next button icon's DOM element.
*/
nexticon?: TabViewPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
nexticon?: TabViewPassThroughType<React.HTMLAttributes<HTMLSpanElement | SVGSVGElement>>;
/**
* Uses to pass attributes to the panel's DOM element.
*/
Expand Down

0 comments on commit 5b0cd29

Please sign in to comment.