@y14e/menu 1.4.0 → 1.4.1

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,14 +10,14 @@ npm i @y14e/menu
10
10
 
11
11
  ```ts
12
12
  // npm
13
- import Tabs from '@y14e/menu@1.4.0';
13
+ import Menu from '@y14e/menu@1.4.1';
14
14
 
15
15
  // CDNs
16
- import Tabs from 'https://esm.sh/@y14e/menu@1.4.0';
16
+ import Menu from 'https://esm.sh/@y14e/menu@1.4.1';
17
17
  // or
18
- import Tabs from 'https://cdn.jsdelivr.net/npm/@y14e/menu@1.4.0/+esm';
18
+ import Menu from 'https://cdn.jsdelivr.net/npm/@y14e/menu@1.4.1/+esm';
19
19
  // or
20
- import Tabs from 'https://esm.unpkg.com/@y14e/menu@1.4.0';
20
+ import Menu from 'https://esm.unpkg.com/@y14e/menu@1.4.1';
21
21
  ```
22
22
 
23
23
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@y14e/menu",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "WAI-ARIA compliant menu (menu button) pattern implementation in TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",