diff --git a/README.md b/README.md index 397c90d..3dc81e0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/accordion/README.md b/src/accordion/README.md index b28e685..0d7abb0 100644 --- a/src/accordion/README.md +++ b/src/accordion/README.md @@ -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/) diff --git a/src/alerts/README.md b/src/alerts/README.md index 56e8c7b..7a8bbb0 100644 --- a/src/alerts/README.md +++ b/src/alerts/README.md @@ -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) diff --git a/src/disclosure/README.md b/src/disclosure/README.md index 453be5a..9a70c05 100644 --- a/src/disclosure/README.md +++ b/src/disclosure/README.md @@ -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) diff --git a/src/menu/README.md b/src/menu/README.md index e8eaec3..b6771fa 100644 --- a/src/menu/README.md +++ b/src/menu/README.md @@ -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) diff --git a/src/modal/README.md b/src/modal/README.md index 94afbae..21de5a0 100644 --- a/src/modal/README.md +++ b/src/modal/README.md @@ -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/) diff --git a/src/popup/README.md b/src/popup/README.md index a7718be..cc925d9 100644 --- a/src/popup/README.md +++ b/src/popup/README.md @@ -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) diff --git a/src/toolbar/README.md b/src/toolbar/README.md index f91015f..e0a8da5 100644 --- a/src/toolbar/README.md +++ b/src/toolbar/README.md @@ -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/) diff --git a/src/tooltip/README.md b/src/tooltip/README.md index b3afb94..095193e 100644 --- a/src/tooltip/README.md +++ b/src/tooltip/README.md @@ -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/)