aria-ease 1.1.0 → 1.1.2

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 +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,7 +45,7 @@ const App = () => {
45
45
  >
46
46
  Display
47
47
  </button>
48
- <div id="custom-menu" role="menu" aria-labelledby="display-button">
48
+ <div id="custom-menu" role="menu" aria-labelledby="display-button" style={{display: 'none', marginTop: '5px'}}>
49
49
  <button role="menuitem" className="profile-menu-item">One</button>
50
50
  <button role="menuitem" className="profile-menu-item">Two</button>
51
51
  <button role="menuitem" className="profile-menu-item">Three</button>
@@ -84,3 +84,7 @@ const App = () => {
84
84
 
85
85
  export default App
86
86
  ```
87
+
88
+ ### P.S.
89
+
90
+ Make sure to add element focus styling in css otherwise visibility might be impacted.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aria-ease",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Out of the box utility accessibility package to develop production ready applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {