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 +7 -0
- package/package.json +1 -1
- package/react/InputAdornment/index.js +1 -1
- package/react/MuiCozyTheme/Menu/Readme.md +1 -0
- package/react/MuiCozyTheme/Menu/index.js +3 -0
- package/transpiled/react/InputAdornment/index.js +1 -1
- package/transpiled/react/MuiCozyTheme/Menu/index.js +2 -0
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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Re-export of @material-ui. See [the official API](https://v4.mui.com/api/menu/).
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import InputAdornment from '@material-ui/core/InputAdornment';
|
|
2
2
|
export default InputAdornment;
|