@availity/mui-menu 1.0.7 → 2.0.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 +17 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/lib/Menu.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-menu@1.0.7...@availity/mui-menu@2.0.0) (2025-11-17)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-icon` updated to version `1.0.7`
|
|
10
|
+
* `mui-button` updated to version `1.0.7`
|
|
11
|
+
|
|
12
|
+
### ⚠ BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* @mui/material upgraded to v7
|
|
15
|
+
* @mui/x-* upgraded to v8
|
|
16
|
+
* react upgraded to v19
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
|
|
21
|
+
|
|
5
22
|
## [1.0.7](https://github.com/Availity/element/compare/@availity/mui-menu@1.0.6...@availity/mui-menu@1.0.7) (2025-10-30)
|
|
6
23
|
|
|
7
24
|
### Dependency Updates
|
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ import { MenuItemProps as MenuItemProps$1 } from '@mui/material/MenuItem';
|
|
|
4
4
|
import { MenuListProps as MenuListProps$1 } from '@mui/material/MenuList';
|
|
5
5
|
|
|
6
6
|
type MenuProps = Omit<MenuProps$1, 'BackdropComponent' | 'BackdropProps' | 'classes' | 'disableAutoFocusItem' | 'disableEnforceFocus' | 'disableEscapeKeyDown' | 'elevation' | 'onBackdropClick' | 'PopoverClasses' | 'ref' | 'sx' | 'TransitionComponent' | 'TransitionProps'>;
|
|
7
|
-
declare const Menu: (props: MenuProps) => JSX.Element;
|
|
7
|
+
declare const Menu: (props: MenuProps) => React.JSX.Element;
|
|
8
8
|
type MenuItemProps = Omit<MenuItemProps$1, 'centerRipple' | 'disableRipple' | 'disableTouchRipple' | 'focusRipple' | 'TouchRippleProps' | 'touchRippleRef'>;
|
|
9
9
|
declare const MenuItem: (props: MenuItemProps) => react_jsx_runtime.JSX.Element;
|
|
10
10
|
type MenuListProps = MenuListProps$1;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { MenuItemProps as MenuItemProps$1 } from '@mui/material/MenuItem';
|
|
|
4
4
|
import { MenuListProps as MenuListProps$1 } from '@mui/material/MenuList';
|
|
5
5
|
|
|
6
6
|
type MenuProps = Omit<MenuProps$1, 'BackdropComponent' | 'BackdropProps' | 'classes' | 'disableAutoFocusItem' | 'disableEnforceFocus' | 'disableEscapeKeyDown' | 'elevation' | 'onBackdropClick' | 'PopoverClasses' | 'ref' | 'sx' | 'TransitionComponent' | 'TransitionProps'>;
|
|
7
|
-
declare const Menu: (props: MenuProps) => JSX.Element;
|
|
7
|
+
declare const Menu: (props: MenuProps) => React.JSX.Element;
|
|
8
8
|
type MenuItemProps = Omit<MenuItemProps$1, 'centerRipple' | 'disableRipple' | 'disableTouchRipple' | 'focusRipple' | 'TouchRippleProps' | 'touchRippleRef'>;
|
|
9
9
|
declare const MenuItem: (props: MenuItemProps) => react_jsx_runtime.JSX.Element;
|
|
10
10
|
type MenuListProps = MenuListProps$1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-menu",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Availity MUI Menu Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,16 +40,16 @@
|
|
|
40
40
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@availity/mui-icon": "^
|
|
44
|
-
"@mui/material": "^
|
|
45
|
-
"react": "
|
|
46
|
-
"react-dom": "
|
|
43
|
+
"@availity/mui-icon": "^2.0.0",
|
|
44
|
+
"@mui/material": "^7.3.4",
|
|
45
|
+
"react": "19.2.0",
|
|
46
|
+
"react-dom": "19.2.0",
|
|
47
47
|
"tsup": "^8.4.0",
|
|
48
48
|
"typescript": "^5.4.5"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@mui/material": "^
|
|
52
|
-
"react": ">=
|
|
51
|
+
"@mui/material": "^7.0.0",
|
|
52
|
+
"react": ">=17.0.0"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
package/src/lib/Menu.tsx
CHANGED