cozy-ui 81.2.1 → 81.3.0

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
@@ -1,3 +1,10 @@
1
+ # [81.3.0](https://github.com/cozy/cozy-ui/compare/v81.2.1...v81.3.0) (2023-03-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add Mui Menu component ([2aa5f6b](https://github.com/cozy/cozy-ui/commit/2aa5f6b))
7
+
1
8
  ## [81.2.1](https://github.com/cozy/cozy-ui/compare/v81.2.0...v81.2.1) (2023-02-22)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "81.2.1",
3
+ "version": "81.3.0",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -1,3 +1,3 @@
1
- import { InputAdornment } from '@material-ui/core'
1
+ import InputAdornment from '@material-ui/core/InputAdornment'
2
2
 
3
3
  export default InputAdornment
@@ -0,0 +1 @@
1
+ Re-export of @material-ui. See [the official API](https://v4.mui.com/api/menu/).
@@ -0,0 +1,3 @@
1
+ import Menu from '@material-ui/core/Menu'
2
+
3
+ export default Menu
@@ -1,2 +1,2 @@
1
- import { InputAdornment } from '@material-ui/core';
1
+ import InputAdornment from '@material-ui/core/InputAdornment';
2
2
  export default InputAdornment;
@@ -0,0 +1,2 @@
1
+ import Menu from '@material-ui/core/Menu';
2
+ export default Menu;