aria-ease 1.3.4 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -6,6 +6,8 @@ Out of the box accessibility utility package to develop production ready applica
6
6
 
7
7
  `npm i aria-ease`
8
8
 
9
+ `yarn add aria-ease`
10
+
9
11
  ## Features
10
12
 
11
13
  Add accessibility to menu: menu can be a dropdown, side menu, slide navigation e.t.c. Basically any component that toggles display and has a list of interactive children items. The function creates a focus trap within the menu and focus can be navigated using the arrow keys. The escape key also closes the menu and returns the focus back to the trigger.
@@ -94,6 +96,14 @@ const BlockExample = () => {
94
96
  export default BlockExample
95
97
  ```
96
98
 
99
+ [Check out more features/functionality in the docs](https://aria-ease.vercel.app/docs)
100
+
101
+ [Start contributing on GitHub](https://github.com/aria-ease/aria-ease)
102
+
103
+ Find a bug? Head on over to [issue page](https://github.com/aria-ease/aria-ease/issues) and open one. We're excited to receive pull requests.
104
+
105
+ Aria-ease is open-source software by [Isaac Victor](https://isaacvictordev.web.app/)
106
+
97
107
  ### P.S.
98
108
 
99
- Make sure to add element focus styling in css otherwise visibility might be impacted.
109
+ Make sure to add elements focus styling in css otherwise visibility might be impacted.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aria-ease",
3
- "version": "1.3.4",
4
- "description": "Out of the box utility accessibility package to develop production ready applications.",
3
+ "version": "1.3.5",
4
+ "description": "Out-of-the-box accessibility utility package to develop production ready applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"