@sproutsocial/seeds-react-menu 1.8.4 → 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.
package/dist/v2/index.js CHANGED
@@ -231,6 +231,8 @@ function Popout({
231
231
  onOpenAutoFocus,
232
232
  onEscapeKeyDown,
233
233
  onCloseAutoFocus,
234
+ onPointerDownOutside,
235
+ onInteractOutside,
234
236
  ...rest
235
237
  }) {
236
238
  const [isOpen, setIsOpen] = React2.useState(defaultOpen ?? false);
@@ -258,6 +260,8 @@ function Popout({
258
260
  onOpenAutoFocus,
259
261
  onEscapeKeyDown,
260
262
  onCloseAutoFocus,
263
+ onPointerDownOutside,
264
+ onInteractOutside,
261
265
  role: "presentation",
262
266
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(StyledMotionDiv, { ...animationConfig, ...rest, children: content })
263
267
  }