@forge/react

11.14.2-next.211.14.2-next.3
out/components/popup.js
~out/components/popup.jsModified
+5
Index: package/out/components/popup.js
===================================================================
--- package/out/components/popup.js
+++ package/out/components/popup.js
@@ -3,8 +3,13 @@
 exports.Popup = void 0;
 const jsx_runtime_1 = require("react/jsx-runtime");
 const content_wrapper_1 = require("./utils/content-wrapper");
 const PopupPrimitive = 'Popup';
+/**
+ * A popup displays brief content in an overlay.
+ *
+ * @see [Popup](https://developer.atlassian.com/platform/forge/ui-kit/components/popup/) in UI Kit documentation for more information
+ */
 const Popup = ({ content, trigger, isOpen, id, testId, onClose, boundary, rootBoundary, shouldFlip, placement, fallbackPlacements, autoFocus, shouldUseCaptureOnOutsideClick, shouldFitContainer, shouldDisableFocusLock, strategy, role, label, titleId, shouldRenderToParent }) => {
     return ((0, jsx_runtime_1.jsxs)(PopupPrimitive, { isOpen: isOpen, id: id, testId: testId, onClose: onClose, boundary: boundary, rootBoundary: rootBoundary, shouldFlip: shouldFlip, placement: placement, fallbackPlacements: fallbackPlacements, autoFocus: autoFocus, shouldUseCaptureOnOutsideClick: shouldUseCaptureOnOutsideClick, shouldFitContainer: shouldFitContainer, shouldDisableFocusLock: shouldDisableFocusLock, shouldRenderToParent: shouldRenderToParent, strategy: strategy, role: role, label: label, titleId: titleId, children: [(0, jsx_runtime_1.jsx)(content_wrapper_1.ContentWrapper, { name: "content", children: content() }), (0, jsx_runtime_1.jsx)(content_wrapper_1.ContentWrapper, { name: "trigger", children: trigger() })] }));
 };
 exports.Popup = Popup;