@etsoo/materialui 1.1.21 → 1.1.22

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.
@@ -81,5 +81,5 @@ export function UserMenu(props) {
81
81
  }, keepMounted: true, transformOrigin: {
82
82
  vertical: "top",
83
83
  horizontal: "right"
84
- }, open: isMenuOpen, onTransitionEnd: () => eventWatcher.do(eventWatcherAction), onClick: handleClick, onClose: handleMenuClose }, children(handleMenuClose))));
84
+ }, open: isMenuOpen, transitionDuration: 0, onTransitionEnd: () => eventWatcher.do(eventWatcherAction), onClick: handleClick, onClose: handleMenuClose }, children(handleMenuClose))));
85
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -139,6 +139,7 @@ export function UserMenu(props: UserMenuProps) {
139
139
  horizontal: "right"
140
140
  }}
141
141
  open={isMenuOpen}
142
+ transitionDuration={0}
142
143
  onTransitionEnd={() => eventWatcher.do(eventWatcherAction)}
143
144
  onClick={handleClick}
144
145
  onClose={handleMenuClose}