Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(accessibility-testing): Updates content as part of content audit. #3776

Merged
merged 19 commits into from
Jan 15, 2024

Conversation

edonehoo
Copy link
Collaborator

Closes #3775

@edonehoo edonehoo self-assigned this Oct 11, 2023
@patternfly-build
Copy link
Contributor

patternfly-build commented Oct 11, 2023

Colors should pass the following contrast checks, to ensure that users across the vision spectrum can understand your product:
- Text color against background color ([Understanding WCAG 1.4.3](//www.w3.org/WAI/WCAG21/Understanding/contrast-minimum.html))
- Text color against link color ([Technique G183](//www.w3.org/TR/WCAG20-TECHS/G183.html))
- Visible boundaries of buttons and form elements against adjacent background color ([Understanding WCAG 1.4.11](//www.w3.org/WAI/WCAG21/Understanding/non-text-contrast.html))

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that we removed the section on screen reader specific considerations. Do you think the information was redundant or not helpful? Perhaps we could take some of this information and put it underneath the screen reader section above to retain some of it? Curious of your thoughts on this one.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Realizing as I continued reviewing that this was added to the development section. I have mixed feelings. I remember adding it so that users understood how things differed in a screen reader for testing, but I totally get that this also affects developing. @thatblindgeye what do you think? I'm worried that being closer to the content/writing it, I might not be able to see it as objectively. 😂

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that's tough because it can probably fit in either place. I feel like the content as it is probably fits closer in the development page. I guess it also depends if someone would be going through these pages in order or just what page interests them. I may have a clearer idea once I finish going through the current PRs but wondering whether linking to the development page would make sense? Sort of to convey "Also make sure you're testing stuff we mentioned on this page" or something, if that makes sense.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, that would make sense to me! I think after reviewing them a second time, I agree that that screen reader content probably makes more sense in the development section.

Copy link
Contributor

@thatblindgeye thatblindgeye left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some comments below, I still need to go through the checklist section but want to toy around with the PF checkboxes first since part of an initial comment I may have is the structure of the nested checklists.

Comment on lines 35 to 37
- All functionality is keyboard accessible.
- Elements in the HTML and in the layout follow a logical order.
- Elements with focus are clearly visible.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be a great followup at some point to add illustrations (definitely out of scope here, just thinking out loud 😆 )

- <label><input type="checkbox" /> The flow of information makes sense when navigating. Screen readers navigate the page in DOM order. If you used CSS to visually reposition elements, they might be announced in a nonsensical sequence. Instead, if you need something to appear earlier in the page, try to physically move it earlier in the DOM.</label>

**Accessibility points** <br />
### Accessibility points
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not really sure what they could be updated to, but I feel like one or both of the headings for these sections of checklists could be updated from "General criteria" and "Accessibility points". Maybe just this section, as the entire page is regarding accessibility points technically?

Also not sure whether the current/previous content here still fits or if it's either duplicate from the "general criteria" or needs a little more information. The "Links" item in the Structure section, for example, I'm not sure of the purpose there since we mention them again in the Labels section. @jessiehuff wdyt?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree on this! I can't immediately tell the difference between the lists, which pushes me towards a heading change or combining the two lists. But I'm not entirely sure what the common thread between the "accessibility points" section is, so I'm not sure how to go about renaming

Copy link
Contributor

@jessiehuff jessiehuff Nov 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definitely open to different names! My original intention was that the first section was thinking about the different ways of checking things (i.e. screen reader and it's different ways of navigating and keyboard) and that essentially everything should work through each of the general a11y questions and thinking big picture (i.e. just like the questions asked in the development section - is it discoverable, able to be interacted with, and understandable). The second section was more getting into the nitty gritty of checking specific things, starting from high level like structure to more granular things like labels. So totally open to anything that communicates that better! If both of you were confused, it definitely sounds like something should be changed!

In terms of the links in both the structure and labels section, that's because when I'm testing structure, especially using the rotor menu, I check each of those major elements (headings, landmarks, links, form controls, tables) and make sure that nothing immediately looks off with the way that they're handled. That's probably not totally clear though. 🙃 I guess that's what happens when a checklist starts off as more of something for your personal use to trying to communicate it more publicly haha.

**General questions**
<Checkbox label={<span><b>Buttons and form controls:</b></span>} description={ <span>
<li> All form controls have clear and descriptive labels. </li>
<li> Indicate that a button has the expandable control. </li>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there should be some clarification on this one that this line is only applicable to expandable buttons, not all buttons.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could be worth explicitly mentioning aria-expanded and how it should always have a boolean value if the button is intended to be expandable

Copy link
Contributor

@andrew-ronaldson andrew-ronaldson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks Erin!


<Checkbox label={<span><b>Aria</b> provides descriptive details to screen reader users, without reiterating or overriding the text that is already there. If there is visible text then there doesn’t need to be an <span className="ws-code">aria-label</span>. </span>} description={<span>It’s important to understand that ARIA can only affect the semantics of an element; not the behavior. For example, while you can hide an element from screen readers with <span> className="ws-code">aria-hidden=”true”</span>, that does not change the focus behavior for that element.</span>} id="general-criteria-8h" />
Copy link
Contributor

@thatblindgeye thatblindgeye Nov 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jessiehuff wdyt about tweaking this verbiage? Feel like we could name aria-label as a way to add a non-visual label to certain elements, and aria-labelledby to use an existing text or aria-label to label another element.

Though if this is meant to be more of a general point about aria rather than strictly labeling, maybe the verbiage about when you don't need an aria-label could be its own bullet? We do mention this in another PR as well, though: #3780 around line 39-41

Additionally, looks like the description has a typo in the description. <span> className="ws-code">aria-hidden=”true”</span> should be <span className="ws-code">aria-hidden=”true”</span>

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it was originally intended as more of a general statement of when something needs to be labeled vs. not, but admittedly I probably shouldn't have just singled out aria-label in that circumstance. (I started calling this out because I noticed that once people started trying to improve their a11y, they could at times just go crazy adding aria-labels even when there was no need for one and adding one might even make the experience worse.) Maybe we could change the aria-label in this context to a label in general and then call out your point in a bullet.

@edonehoo
Copy link
Collaborator Author

edonehoo commented Jan 3, 2024

@thatblindgeye @jessiehuff @andrew-ronaldson this pr is ready for another review!

<Checkbox label={<span><b>ARIA</b> labels provide descriptive details to screen reader users, without reiterating or overriding the text that is already there. If there is visible text then there doesn’t need to be an ARIA label. </span>}
description={ <span>
<li> To add a non-visual label to an element you should use <span className="ws-code">aria-label</span>. Keep in mind you should not add this to an element that already has a visual label in the UI. You can also use <span className="ws-code">aria-labelledby</span> to label an element through existing text or <span className="ws-code">aria-label</span>. </li>
<li> <span> It’s important to understand that ARIA can only affect the semantics of an element; not the behavior. For example, while you can hide an element from screen readers with <span className="ws-code">aria-hidden=”true”</span>, that does not change the focus behavior for that element.</span></li>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this really fits here anymore since it's more about labels than general ARIA. @jessiehuff wdyt about whether this should stay here, removed, moved to the Product Dev Guide page, or a secret 4th option that I haven't found yet?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I see your point @thatblindgeye. Maybe it's best to just remove those subpoints? It looks like the the point about aria only affecting the semantics is already in the dev guide page, but do we have a section where we clarify the difference between aria-label and aria-labelledby? I wonder if it would make sense to remove that point here but just make sure that we have it clear in the dev docs somewhere?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@thatblindgeye @jessiehuff I can see how the aria-labelledby point may be more helpful/visible in the dev guide. I went ahead and removed the subpoints here - I can add the aria-labelledby in a separate issue (or slip it into this PR if that seems okay) - wdyt?

edonehoo and others added 2 commits January 5, 2024 10:21
…resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>
Copy link
Contributor

@thatblindgeye thatblindgeye left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can open a followup issue to add some clarification of aria-label vs aria-lablledby if we'd like, I wouldn't hold this PR up any longer over that

@jessiehuff jessiehuff merged commit c35ccf7 into patternfly:main Jan 15, 2024
4 checks passed
nicolethoen pushed a commit to nicolethoen/patternfly-org that referenced this pull request Mar 21, 2024
patternfly#3776)

* docs(accessibility-testing): Updates content as part of content audit.

* Apply suggestions from code review

Co-authored-by: Eric Olkowski <[email protected]>

* Apply suggestions from code review

* Content tweaks in progress.

* Works on checkboxes.

* Resolves merge conflict.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Content alterations.

* Content changes from review feedback.

* Updates to buttons point.

* Grammar and typo updates.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Merging.

---------

Co-authored-by: Eric Olkowski <[email protected]>
nicolethoen pushed a commit to nicolethoen/patternfly-org that referenced this pull request Mar 22, 2024
patternfly#3776)

* docs(accessibility-testing): Updates content as part of content audit.

* Apply suggestions from code review

Co-authored-by: Eric Olkowski <[email protected]>

* Apply suggestions from code review

* Content tweaks in progress.

* Works on checkboxes.

* Resolves merge conflict.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Content alterations.

* Content changes from review feedback.

* Updates to buttons point.

* Grammar and typo updates.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Merging.

---------

Co-authored-by: Eric Olkowski <[email protected]>
nicolethoen pushed a commit to nicolethoen/patternfly-org that referenced this pull request Mar 28, 2024
patternfly#3776)

* docs(accessibility-testing): Updates content as part of content audit.

* Apply suggestions from code review

Co-authored-by: Eric Olkowski <[email protected]>

* Apply suggestions from code review

* Content tweaks in progress.

* Works on checkboxes.

* Resolves merge conflict.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Content alterations.

* Content changes from review feedback.

* Updates to buttons point.

* Grammar and typo updates.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Merging.

---------

Co-authored-by: Eric Olkowski <[email protected]>
nicolethoen added a commit that referenced this pull request Mar 28, 2024
* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(extensions): Updates the extensions landing page to add reference to the component groups extension. (#3849)

* (docs(extensions): Updates the extensions landing page to add reference to the component groups extension.

* Update packages/documentation-site/patternfly-docs/pages/landing-pages/extensions/extensions-data.json

* typo update

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(accessibility-design): Adds new documentation to support content audit. (#3781)

* docs(accessibility-design): Adds new documentation to support content audit.

* Test page name change

* Apply suggestions from code review

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Remove table

* Removes numbers from headings.

* Makes content updates and adds images.

* Updates to content describing images.

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: bump puppeteer to fix core (#3860)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* Update naming for introductory pages across website sections. (#3851)

* Update naming for introductory pages across website sections.

* Caps change

* Adjusts naming for about PatternFly page.

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(accessibility-testing): Updates content as part of content audit. (#3776)

* docs(accessibility-testing): Updates content as part of content audit.

* Apply suggestions from code review

Co-authored-by: Eric Olkowski <[email protected]>

* Apply suggestions from code review

* Content tweaks in progress.

* Works on checkboxes.

* Resolves merge conflict.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Content alterations.

* Content changes from review feedback.

* Updates to buttons point.

* Grammar and typo updates.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Merging.

---------

Co-authored-by: Eric Olkowski <[email protected]>

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: bump to latest release candidates ahead of 5.2 release (#3862)

* fix: bump to latest release candidates ahead of 5.2 release

* bump to latest component groups prerelease

* bump react to pull in bug fix

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* updates to images to make icons black (#3856)

* fix: avoid applying beta tags to nav items for next components (#3868)

* fix(truncate): typos on guidelines (#3872)

* docs(capitalization): Updates capitalization guidelines for better consistency and clarity. (#3855)

* docs(capitalization): Updates guidance for capitalization.

* Continues editing content.

* Content updates progress.

* Updates content and images.

* Content and image updates.

* Final content and image updates.

* Updates recs per content team decision.

* fix: add drag drop deps and remove unused code editor deps (#3866)

* fix: add drag drop deps and remove unused code editor deps

* bump react-docs to fix error

* bump the prerelease versions

* chore(Title): updated a11y docs to template (#3873)

* docs(release-highlights): Adds release highlights for 5.2 release. (#3853)

* docs(releases): Adds release highlights for v5.2

* docs(release-highlights): Adds release highlights for 5.2 release.

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Michael Coker <[email protected]>

* Adds more highlights.

* Adds coming soon section.

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Michael Coker <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Michael Coker <[email protected]>

---------

Co-authored-by: Michael Coker <[email protected]>

* docs(design): Adds initial information regarding Figma. (#3863)

* docs(design): Adds Figma information where Sketch is currently mentioned.

* Path update

* Update packages/documentation-site/patternfly-docs/content/contribute/design/design.md

* Path updates.

* Update packages/documentation-site/patternfly-docs/content/contribute/design/design.md

* Update packages/documentation-site/patternfly-docs/content/training/design.md

* feat: release 5.3 (#3878)

* feat: 5.3 release

* update release highlights

* fix: Bump topology to 5.2.1 (#3881)

* fix: toplogy to 5.2.1

* add yarn.lock

* update release highlights

* Update broken link on develop.md

* chore(deps): bump ip from 1.1.5 to 1.1.9 (#3895)

Bumps [ip](https://github.com/indutny/node-ip) from 1.1.5 to 1.1.9.
- [Commits](indutny/node-ip@v1.1.5...v1.1.9)

---
updated-dependencies:
- dependency-name: ip
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add edit modal guidance (#3836)

* add edit modal guidance

* edits

* chore(release): Updated component groups to 5.1.0 release (#3917)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

chore(component-groups): Updated component groups to 5.1.0 release

chore(component-groups): Updated component groups to 5.1.0 release

* Updated version.json

* feat(deps): version bump for 5.2.1 release (#3913)

* feat(deps): version bump for 5.2.1 release

* Update packages/documentation-framework/versions.json

Co-authored-by: Evan <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Evan <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Evan <[email protected]>

* Update packages/documentation-framework/versions.json

* chore(deps): bump react-charts, react-docs

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Erin Donehoo <[email protected]>

* chore(docs): update release highlights

* Update packages/documentation-framework/versions.json

---------

Co-authored-by: Evan <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>

* chore(SkipToContent): updated a11y docs to template (#3871)

* chore(SkipToContent): updated a11y docs to template

* Updated test item description verbiage

* feat(deps): version bump and release notes for 5.2.2 patch release (#3919)

* feat(deps): version bump and release notes for 5.2.2 patch release

* fix(release-highlights): correct listed table version

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Erin Donehoo <[email protected]>

---------

Co-authored-by: Erin Donehoo <[email protected]>

* feat: add pf 6 alpha banner to home page and version switcher (#3896)

* feat: add pf 6 alpha banner to home page and version switcher

* update wording

* feat(templates): add templates package to versions.json (#3902)

* feat(templates): add templates package to versions.json for docs build

* add support for template inline alert

* add to patch version, update wording

* update wording

* bump to latest alphas

* rebase from v6 branch

* fix screenshot script and update screenshots

* more screenshots

* fix the build

* update docs-framework version

* address PR comments

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: Margot <[email protected]>
Co-authored-by: Andrew Ronaldson <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Donald Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: Evan <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
nicolethoen added a commit that referenced this pull request Apr 17, 2024
* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(extensions): Updates the extensions landing page to add reference to the component groups extension. (#3849)

* (docs(extensions): Updates the extensions landing page to add reference to the component groups extension.

* Update packages/documentation-site/patternfly-docs/pages/landing-pages/extensions/extensions-data.json

* typo update

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(accessibility-design): Adds new documentation to support content audit. (#3781)

* docs(accessibility-design): Adds new documentation to support content audit.

* Test page name change

* Apply suggestions from code review

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-design.md

* Remove table

* Removes numbers from headings.

* Makes content updates and adds images.

* Updates to content describing images.

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: bump puppeteer to fix core (#3860)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* Update naming for introductory pages across website sections. (#3851)

* Update naming for introductory pages across website sections.

* Caps change

* Adjusts naming for about PatternFly page.

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(accessibility-testing): Updates content as part of content audit. (#3776)

* docs(accessibility-testing): Updates content as part of content audit.

* Apply suggestions from code review

Co-authored-by: Eric Olkowski <[email protected]>

* Apply suggestions from code review

* Content tweaks in progress.

* Works on checkboxes.

* Resolves merge conflict.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Content alterations.

* Content changes from review feedback.

* Updates to buttons point.

* Grammar and typo updates.

* Update packages/documentation-site/patternfly-docs/content/developer-resources/accessibility-testing.md

Co-authored-by: Eric Olkowski <[email protected]>

* Merging.

---------

Co-authored-by: Eric Olkowski <[email protected]>

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: bump to latest release candidates ahead of 5.2 release (#3862)

* fix: bump to latest release candidates ahead of 5.2 release

* bump to latest component groups prerelease

* bump react to pull in bug fix

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* updates to images to make icons black (#3856)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: avoid applying beta tags to nav items for next components (#3868)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix(truncate): typos on guidelines (#3872)

* docs(capitalization): Updates capitalization guidelines for better consistency and clarity. (#3855)

* docs(capitalization): Updates guidance for capitalization.

* Continues editing content.

* Content updates progress.

* Updates content and images.

* Content and image updates.

* Final content and image updates.

* Updates recs per content team decision.

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: add drag drop deps and remove unused code editor deps (#3866)

* fix: add drag drop deps and remove unused code editor deps

* bump react-docs to fix error

* bump the prerelease versions

* chore(Title): updated a11y docs to template (#3873)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(release-highlights): Adds release highlights for 5.2 release. (#3853)

* docs(releases): Adds release highlights for v5.2

* docs(release-highlights): Adds release highlights for 5.2 release.

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Michael Coker <[email protected]>

* Adds more highlights.

* Adds coming soon section.

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Michael Coker <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Michael Coker <[email protected]>

---------

Co-authored-by: Michael Coker <[email protected]>

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(design): Adds initial information regarding Figma. (#3863)

* docs(design): Adds Figma information where Sketch is currently mentioned.

* Path update

* Update packages/documentation-site/patternfly-docs/content/contribute/design/design.md

* Path updates.

* Update packages/documentation-site/patternfly-docs/content/contribute/design/design.md

* Update packages/documentation-site/patternfly-docs/content/training/design.md

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* feat: release 5.3 (#3878)

* feat: 5.3 release

* update release highlights

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* fix: Bump topology to 5.2.1 (#3881)

* fix: toplogy to 5.2.1

* add yarn.lock

* update release highlights

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* Update broken link on develop.md

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* chore(deps): bump ip from 1.1.5 to 1.1.9 (#3895)

Bumps [ip](https://github.com/indutny/node-ip) from 1.1.5 to 1.1.9.
- [Commits](indutny/node-ip@v1.1.5...v1.1.9)

---
updated-dependencies:
- dependency-name: ip
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add edit modal guidance (#3836)

* add edit modal guidance

* edits

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* chore(release): Updated component groups to 5.1.0 release (#3917)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

chore(component-groups): Updated component groups to 5.1.0 release

chore(component-groups): Updated component groups to 5.1.0 release

* Updated version.json

* feat(deps): version bump for 5.2.1 release (#3913)

* feat(deps): version bump for 5.2.1 release

* Update packages/documentation-framework/versions.json

Co-authored-by: Evan <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Evan <[email protected]>

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Evan <[email protected]>

* Update packages/documentation-framework/versions.json

* chore(deps): bump react-charts, react-docs

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Erin Donehoo <[email protected]>

* chore(docs): update release highlights

* Update packages/documentation-framework/versions.json

---------

Co-authored-by: Evan <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* chore(SkipToContent): updated a11y docs to template (#3871)

* chore(SkipToContent): updated a11y docs to template

* Updated test item description verbiage

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* feat(deps): version bump and release notes for 5.2.2 patch release (#3919)

* feat(deps): version bump and release notes for 5.2.2 patch release

* fix(release-highlights): correct listed table version

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

Co-authored-by: Erin Donehoo <[email protected]>

---------

Co-authored-by: Erin Donehoo <[email protected]>

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* feat: add pf 6 alpha banner to home page and version switcher (#3896)

* feat: add pf 6 alpha banner to home page and version switcher

* update wording

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* feat(templates): add templates package to versions.json (#3902)

* feat(templates): add templates package to versions.json for docs build

* add support for template inline alert

* add to patch version, update wording

* update wording

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* chore(Page): updated a11y docs to new template (#3880)

* chore(Page): updated a11y docs to new template

* Removed requirement of aria-labelledby on page sections

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* chore: simplify Babel configuration (#3934)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* chore(footer): Restructure new homepage footer (#3870)

* Restructure footer

* Remove PageSection from footer based on conversations

* Rework structure

* Fix footer height issue

* Update flex

* Fix typo

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* feat(docs): update medium articles (#3950)

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* docs(release-highlights): Creates release highlights for 5.3 release. (#3941)

* docs(release-highlights): Creates release highlights for 5.3 release.

* Continues working on content updates.

* docs(release-highlights): Adds release highlights for 5.3 release.

* Adds more context to menu toggle change.

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md

* Adds section for dual list selector.

* Updates topology pipeline images.

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* feat(Templates): add to org site (#3947)

* feat(Templates): add to org site

* update versions, fix Th

* hide prev version, update screenshots

* chore(release): releasing packages [ci skip]

 - @patternfly/[email protected]
 - @patternfly/[email protected]

* update documentation-framework version and git ignore

* remove react-templates untill merged in react

* remove 1 featured post

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Nicole Thoen <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: Margot <[email protected]>
Co-authored-by: Andrew Ronaldson <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Donald Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: Evan <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Jon Koops <[email protected]>
Co-authored-by: Jessie <[email protected]>
Co-authored-by: Titani <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Review and update testing your accessibility page
5 participants