@sproutsocial/seeds-react-menu 1.8.3 → 1.8.5

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.
@@ -200,6 +200,8 @@ function Popout({
200
200
  onOpenAutoFocus,
201
201
  onEscapeKeyDown,
202
202
  onCloseAutoFocus,
203
+ onPointerDownOutside,
204
+ onInteractOutside,
203
205
  ...rest
204
206
  }) {
205
207
  const [isOpen, setIsOpen] = React2.useState(defaultOpen ?? false);
@@ -227,6 +229,8 @@ function Popout({
227
229
  onOpenAutoFocus,
228
230
  onEscapeKeyDown,
229
231
  onCloseAutoFocus,
232
+ onPointerDownOutside,
233
+ onInteractOutside,
230
234
  role: "presentation",
231
235
  children: /* @__PURE__ */ jsx(StyledMotionDiv, { ...animationConfig, ...rest, children: content })
232
236
  }