@dxos/react-ui 0.7.5-labs.f5080a1 → 0.7.5-labs.ff2ff30

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.
@@ -969,13 +969,13 @@ var DialogOverlay = /* @__PURE__ */ forwardRef12(({ classNames, children, blockA
969
969
  }, children));
970
970
  });
971
971
  DialogOverlay.displayName = DIALOG_OVERLAY_NAME;
972
- var DialogContent = /* @__PURE__ */ forwardRef12(({ classNames, children, ...props }, forwardedRef) => {
972
+ var DialogContent = /* @__PURE__ */ forwardRef12(({ classNames, children, inOverlayLayout: propsInOverlayLayout, ...props }, forwardedRef) => {
973
973
  const { tx } = useThemeContext();
974
974
  const { inOverlayLayout } = useOverlayLayoutContext(DIALOG_CONTENT_NAME);
975
975
  return /* @__PURE__ */ React18.createElement(DialogContentPrimitive, {
976
976
  ...props,
977
977
  className: tx("dialog.content", "dialog", {
978
- inOverlayLayout
978
+ inOverlayLayout: propsInOverlayLayout || inOverlayLayout
979
979
  }, classNames),
980
980
  ref: forwardedRef
981
981
  }, children);