Skip to content

Commit

Permalink
Merge branch 'patternfly:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-king-sullyman authored Feb 9, 2024
2 parents 5ea2df6 + 2e52be2 commit 2f00eac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion packages/demo-app-ts/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import '@patternfly/patternfly/patternfly-addons.css';
import '@patternfly/patternfly/patternfly-theme-dark.css';

ReactDOM.render(<App />, document.getElementById('root'));
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export const TopologyControlBar: React.FunctionComponent<TopologyControlBarProps
>
{button.icon}
{(button.ariaLabel || button.tooltip) && (
<span className="pf-v5-u-screen-reader">{button.ariaLabel || button.tooltip}</span>
<span className="pf-v5-screen-reader">{button.ariaLabel || button.tooltip}</span>
)}
</Button>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exports[`TopologyControlBar should accept button options correctly 1`] = `
test zoom in
</span>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
test-zoom-in-aria-label
</span>
Expand Down Expand Up @@ -75,7 +75,7 @@ exports[`TopologyControlBar should accept button options correctly 1`] = `
/>
</svg>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
Zoom Out
</span>
Expand Down Expand Up @@ -111,7 +111,7 @@ exports[`TopologyControlBar should accept button options correctly 1`] = `
/>
</svg>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
Reset View
</span>
Expand Down Expand Up @@ -182,7 +182,7 @@ exports[`TopologyControlBar should display the default controls correctly 1`] =
/>
</svg>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
Zoom In
</span>
Expand Down Expand Up @@ -218,7 +218,7 @@ exports[`TopologyControlBar should display the default controls correctly 1`] =
/>
</svg>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
Zoom Out
</span>
Expand Down Expand Up @@ -254,7 +254,7 @@ exports[`TopologyControlBar should display the default controls correctly 1`] =
/>
</svg>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
Fit to Screen
</span>
Expand Down Expand Up @@ -290,7 +290,7 @@ exports[`TopologyControlBar should display the default controls correctly 1`] =
/>
</svg>
<span
class="pf-v5-u-screen-reader"
class="pf-v5-screen-reader"
>
Reset View
</span>
Expand Down

0 comments on commit 2f00eac

Please sign in to comment.