Skip to content

Commit

Permalink
docs: update ARIA Authoring Practices Guide links
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyzerner committed Mar 16, 2023
1 parent b1a2644 commit 7ce9610
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Basic interactive UI patterns like popup menus, tooltips, and modals are surpris

`inclusive-elements` provides those basic behaviors in the form of Custom Elements, without any of the cruft. They are:

- **🦮 Accessible.** Designed following the [WAI-ARIA Authoring Practices](https://w3c.github.io/aria-practices) so everyone can use them.
- **🦮 Accessible.** Designed following the [ARIA Authoring Practices Guide](https://www.w3.org/WAI/ARIA/apg/) so everyone can use them.
- **🌳 Lightweight.** 3kB gzipped with minimal dependencies. Less if you tree-shake only the elements you need.
- **🎨 Unstyled.** Easily integrate with your design bottom-up without having to fight defaults.
- **🚀 Easy to use.** Simple API, works with any framework that supports Custom Elements.
Expand Down
2 changes: 1 addition & 1 deletion src/accordion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ window.customElements.define('ui-accordion', AccordionElement);

## Further Reading

- [WAI-ARIA Authoring Practices: Accordion](https://www.w3.org/WAI/ARIA/apg/patterns/accordion/)
- [ARIA Authoring Practices Guide: Accordion Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/accordion/)
2 changes: 1 addition & 1 deletion src/alerts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ ui-alerts {

## Further Reading

- [WAI-ARIA Authoring Practices: Alert](https://w3c.github.io/aria-practices/#alert)
- [ARIA Authoring Practices Guide: Alert Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/alert/)
- [Scott O'Hara: A toast to an accessible toast...](https://www.scottohara.me/blog/2019/07/08/a-toast-to-a11y-toasts.html)
- [Adrian Roselli: Defining 'Toast' Messages](https://adrianroselli.com/2020/01/defining-toast-messages.html)
2 changes: 1 addition & 1 deletion src/disclosure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ disclosure.addEventListener('close', callback);

## Further Reading

- [WAI-ARIA Authoring Practices: Disclosure](https://www.w3.org/WAI/ARIA/apg/patterns/disclosure/)
- [ARIA Authoring Practices Guide: Disclosure Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/disclosure/)
- [Scott O'Hara: The details and summary elements, again](https://www.scottohara.me/blog/2022/09/12/details-summary.html)
2 changes: 1 addition & 1 deletion src/menu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ MenuElement.searchDelay = 800;

## Further Reading

- [WAI-ARIA Authoring Practices: Menu](https://w3c.github.io/aria-practices/#menu)
- [ARIA Authoring Practices Guide: Menu Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/menubar/)
- [Inclusive Components: Menus & Menu Buttons](https://inclusive-components.design/menus-menu-buttons/)
- [Adrian Roselli: Don’t Use ARIA Menu Roles for Site Nav](https://adrianroselli.com/2017/10/dont-use-aria-menu-roles-for-site-nav.html)
2 changes: 1 addition & 1 deletion src/modal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ ui-modal::part(backdrop) {

## Further Reading

- [WAI-ARIA Authoring Practices: Dialog (Modal)](https://w3c.github.io/aria-practices/#dialog_modal)
- [ARIA Authoring Practices Guide: Dialog (Modal) Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/)
4 changes: 2 additions & 2 deletions src/popup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ ui-popup::part(backdrop) {

## Further Reading

- [WAI-ARIA Authoring Practices: Disclosure](https://w3c.github.io/aria-practices/#disclosure)
- [WAI-ARIA Authoring Practices: Menu Button](https://w3c.github.io/aria-practices/#menubutton)
- [ARIA Authoring Practices Guide: Disclosure Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/disclosure/)
- [ARIA Authoring Practices Guide: Menu Button Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/menu-button/)
- [Adrian Roselli: Stop Using 'Pop-up'](https://adrianroselli.com/2021/07/stop-using-pop-up.html)
2 changes: 1 addition & 1 deletion src/toolbar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ window.customElements.define('ui-toolbar', ToolbarElement);

## Further Reading

- [WAI-ARIA Authoring Practices: Toolbar](https://www.w3.org/TR/wai-aria-practices-1.1/#toolbar)
- [ARIA Authoring Practices Guide: Toolbar Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/toolbar/)
2 changes: 1 addition & 1 deletion src/tooltip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,5 @@ TooltipElement.delay = 100;

## Further Reading

- [WAI-ARIA Authoring Practices: Tooltip](https://w3c.github.io/aria-practices/#tooltip)
- [ARIA Authoring Practices Guide: Tooltip Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/tooltip/)
- [Inclusive Components: Tooltips & Toggletips](https://inclusive-components.design/tooltips-toggletips/)

0 comments on commit 7ce9610

Please sign in to comment.