File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
skeleton-react/src/components/AppBar
skeleton-svelte/src/components/AppBar Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @skeletonlabs/skeleton-svelte " : patch
3
+ " @skeletonlabs/skeleton-react " : patch
4
+ ---
5
+
6
+ chore: Remove aria role tooltip from AppBar component
7
+
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const AppBarRoot: FC<AppBarProps> = ({
18
18
children
19
19
} ) => {
20
20
return (
21
- < div className = { `${ base } ${ background } ${ spaceY } ${ border } ${ padding } ${ shadow } ${ classes } ` } role = "toolbar" data-testid = "app-bar" >
21
+ < div className = { `${ base } ${ background } ${ spaceY } ${ border } ${ padding } ${ shadow } ${ classes } ` } data-testid = "app-bar" >
22
22
{ children }
23
23
</ div >
24
24
) ;
Original file line number Diff line number Diff line change 43
43
44
44
<!-- @component A header element for the top of a page layout. -->
45
45
46
- <header class =" {base } {background } {spaceY } {border } {padding } {shadow } {classes }" role = " toolbar " data-testid =" app-bar" >
46
+ <header class =" {base } {background } {spaceY } {border } {padding } {shadow } {classes }" data-testid =" app-bar" >
47
47
<section class =" {toolbarBase } {toolbarGridCols } {toolbarGap } {toolbarClasses }" data-testid =" app-bar-toolbar" >
48
48
{#if lead }
49
49
<div class =" {leadBase } {leadSpaceX } {leadPadding } {leadClasses }" >
You can’t perform that action at this time.
0 commit comments