@mw-kit/mw-ui 1.7.73 → 1.7.74

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.
@@ -690,7 +690,7 @@ var AbsoluteContainer = React__default.forwardRef(function (props, fowardedRef)
690
690
  if (props.position) return;
691
691
  setPosition(getPosition);
692
692
  }, [ref]);
693
- var htmlProps = filterObject(props, ['center', 'position', 'children']);
693
+ var htmlProps = filterObject(props, ['center', 'position', 'children', 'content']);
694
694
  var cssKeys = {
695
695
  width: 'width',
696
696
  'max-width': 'maxWidth',
@@ -718,7 +718,9 @@ var AbsoluteContainer = React__default.forwardRef(function (props, fowardedRef)
718
718
  position: position,
719
719
  ref: setRef,
720
720
  transition: _extends({}, propsTransition, transition)
721
- }), React__default.createElement("div", null, props.children));
721
+ }), React__default.createElement("div", {
722
+ children: 'content' in props ? React__default.createElement(props.content, null) : props.children
723
+ }));
722
724
  }
723
725
  });
724
726
  });