@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 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
- * `mui-icon` updated to version `0.7.3`
10
- * `mui-button` updated to version `0.5.1`
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
@@ -7,8 +7,7 @@ import {
7
7
  import { jsx } from "react/jsx-runtime";
8
8
  var Menu = (props) => {
9
9
  return /* @__PURE__ */ jsx(MuiMenu, {
10
- ...props,
11
- slotProps: { paper: { variant: "elevation" } }
10
+ ...props
12
11
  });
13
12
  };
14
13
  var MenuItem = (props) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-menu",
3
- "version": "0.1.7",
3
+ "version": "0.2.0",
4
4
  "description": "Availity MUI Menu Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
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} slotProps={{ paper: { variant: 'elevation' } }} />;
28
+ return <MuiMenu {...props} />;
29
29
  };
30
30
 
31
31
  export type MenuItemProps = Omit<