@availity/mui-menu 0.1.7 → 0.2.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 +15 -2
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
- package/src/lib/Menu.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.2.0](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.8...@availity/mui-menu@0.2.0) (2024-01-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **mui-menu:** add legacy theme ([20bccf5](https://github.com/Availity/element/commit/20bccf543b091540140cdab66e4fcace4fe13c15))
|
|
11
|
+
|
|
12
|
+
## [0.1.8](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.7...@availity/mui-menu@0.1.8) (2023-12-04)
|
|
13
|
+
|
|
14
|
+
### Dependency Updates
|
|
15
|
+
|
|
16
|
+
* `mui-button` updated to version `0.6.0`
|
|
5
17
|
## [0.1.7](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.6...@availity/mui-menu@0.1.7) (2023-11-16)
|
|
6
18
|
|
|
7
19
|
### Dependency Updates
|
|
8
20
|
|
|
9
|
-
|
|
10
|
-
|
|
21
|
+
- `mui-icon` updated to version `0.7.3`
|
|
22
|
+
- `mui-button` updated to version `0.5.1`
|
|
23
|
+
|
|
11
24
|
## [0.1.6](https://github.com/Availity/element/compare/@availity/mui-menu@0.1.5...@availity/mui-menu@0.1.6) (2023-11-08)
|
|
12
25
|
|
|
13
26
|
### Dependency Updates
|
package/dist/index.js
CHANGED
|
@@ -31,8 +31,7 @@ var import_material = require("@mui/material");
|
|
|
31
31
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
32
32
|
var Menu = (props) => {
|
|
33
33
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_material.Menu, {
|
|
34
|
-
...props
|
|
35
|
-
slotProps: { paper: { variant: "elevation" } }
|
|
34
|
+
...props
|
|
36
35
|
});
|
|
37
36
|
};
|
|
38
37
|
var MenuItem = (props) => {
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
package/src/lib/Menu.tsx
CHANGED
|
@@ -25,7 +25,7 @@ export type MenuProps = Omit<
|
|
|
25
25
|
>;
|
|
26
26
|
|
|
27
27
|
export const Menu = (props: MenuProps): JSX.Element => {
|
|
28
|
-
return <MuiMenu {...props}
|
|
28
|
+
return <MuiMenu {...props} />;
|
|
29
29
|
};
|
|
30
30
|
|
|
31
31
|
export type MenuItemProps = Omit<
|