@availity/mui-menu 0.1.2 → 0.1.4

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.1.4](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.3...@availity/mui-menu@0.1.4) (2023-11-07)
6
+
7
+ ## [0.1.3](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.2...@availity/mui-menu@0.1.3) (2023-10-12)
8
+
5
9
  ## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.1...@availity/mui-menu@0.1.2) (2023-10-06)
6
10
 
7
11
  ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.0...@availity/mui-menu@0.1.1) (2023-08-23)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-menu",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Availity MUI Menu Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -28,12 +28,11 @@
28
28
  "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
29
29
  "clean": "rm -rf dist",
30
30
  "clean:nm": "rm -rf node_modules",
31
- "bundlesize": "bundlesize",
32
31
  "publish": "yarn npm publish --tolerate-republish --access public",
33
32
  "publish:canary": "yarn npm publish --access public --tag canary"
34
33
  },
35
34
  "devDependencies": {
36
- "@availity/mui-icon": "^0.6.1",
35
+ "@availity/mui-icon": "^0.7.1",
37
36
  "@mui/material": "^5.14.12",
38
37
  "react": "18.2.0",
39
38
  "react-dom": "18.2.0",
@@ -31,7 +31,7 @@ export const _Menu: StoryObj<typeof Menu> = {
31
31
  };
32
32
 
33
33
  return (
34
- <>
34
+ <div>
35
35
  <Button
36
36
  id="basic-button"
37
37
  aria-controls={open ? 'basic-menu' : undefined}
@@ -61,7 +61,7 @@ export const _Menu: StoryObj<typeof Menu> = {
61
61
  </MenuItem>
62
62
  <MenuItem onClick={handleClose}>Logout</MenuItem>
63
63
  </Menu>
64
- </>
64
+ </div>
65
65
  );
66
66
  },
67
67
  };
@@ -84,7 +84,7 @@ export const _MenuWithIcons: StoryObj<typeof Menu> = {
84
84
  };
85
85
 
86
86
  return (
87
- <>
87
+ <div>
88
88
  <Button
89
89
  id="basic-button"
90
90
  aria-controls={open ? 'basic-menu' : undefined}
@@ -122,7 +122,7 @@ export const _MenuWithIcons: StoryObj<typeof Menu> = {
122
122
  Logout
123
123
  </MenuItem>
124
124
  </Menu>
125
- </>
125
+ </div>
126
126
  );
127
127
  },
128
128
  };