react-magma-dom 4.11.0-next.22 → 4.11.0-next.23

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/dist/esm/index.js CHANGED
@@ -21497,7 +21497,9 @@ var Drawer = /*#__PURE__*/forwardRef(function (props, _ref) {
21497
21497
  isAnimated = _props$isAnimated === void 0 ? false : _props$isAnimated,
21498
21498
  rest = _objectWithoutPropertiesLoose(props, _excluded$1H);
21499
21499
  var theme = useContext(ThemeContext);
21500
- var drawerStyle = _extends({}, theme.drawer["default"], theme.drawer[DrawerPosition[position]]);
21500
+ var drawerStyle = _extends({}, theme.drawer["default"], theme.drawer[DrawerPosition[position]], {
21501
+ overflowY: 'auto'
21502
+ });
21501
21503
  var containerTransition;
21502
21504
  if (isAnimated) {
21503
21505
  containerTransition = position ? transitionPreset[DrawerPosition[position]] : transitionPreset[DrawerPosition[DrawerPosition.top]];