@true-engineering/true-react-common-ui-kit 3.44.0 → 3.44.1

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/README.md CHANGED
@@ -11,6 +11,12 @@
11
11
 
12
12
  # Release Notes
13
13
 
14
+ ## 3.44.1
15
+
16
+ ### Changes
17
+
18
+ - **WithPopup**: Явный рендер попапа в `document.body`
19
+
14
20
  ## 3.44.0
15
21
 
16
22
  ### Changes
@@ -8067,7 +8067,7 @@ var WithPopup = function(param) {
8067
8067
  children: triggerElement
8068
8068
  })) : triggerElement,
8069
8069
  isMounted && /* @__PURE__ */ jsx(FloatingPortal, {
8070
- root: !shouldRenderInBody ? refs.reference.current : void 0,
8070
+ root: shouldRenderInBody ? document.body : refs.reference.current,
8071
8071
  children: /* @__PURE__ */ jsx("div", _object_spread_props$R(_object_spread$_({
8072
8072
  ref: refs.setFloating,
8073
8073
  style: floatingStyles,