{"version":3,"file":"index-BZ8WVJxR.js","sources":["../../Client/node_modules/@react-aria/utils/dist/useViewportSize.mjs","../../Client/node_modules/@react-aria/overlays/dist/useModalOverlay.mjs","../../Client/node_modules/react-aria-components/dist/Modal.mjs","../../Client/node_modules/@mui/icons-material/Close.js","../../Client/webkit/internal/overlay/index.tsx","../../Client/webkit/components/modal/index.tsx"],"sourcesContent":["import {useState as $fuDHA$useState, useEffect as $fuDHA$useEffect} from \"react\";\nimport {useIsSSR as $fuDHA$useIsSSR} from \"@react-aria/ssr\";\n\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \n\n// @ts-ignore\nlet $5df64b3807dc15ee$var$visualViewport = typeof document !== 'undefined' && window.visualViewport;\nfunction $5df64b3807dc15ee$export$d699905dd57c73ca() {\n let isSSR = (0, $fuDHA$useIsSSR)();\n let [size, setSize] = (0, $fuDHA$useState)(()=>isSSR ? {\n width: 0,\n height: 0\n } : $5df64b3807dc15ee$var$getViewportSize());\n (0, $fuDHA$useEffect)(()=>{\n // Use visualViewport api to track available height even on iOS virtual keyboard opening\n let onResize = ()=>{\n setSize((size)=>{\n let newSize = $5df64b3807dc15ee$var$getViewportSize();\n if (newSize.width === size.width && newSize.height === size.height) return size;\n return newSize;\n });\n };\n if (!$5df64b3807dc15ee$var$visualViewport) window.addEventListener('resize', onResize);\n else $5df64b3807dc15ee$var$visualViewport.addEventListener('resize', onResize);\n return ()=>{\n if (!$5df64b3807dc15ee$var$visualViewport) window.removeEventListener('resize', onResize);\n else $5df64b3807dc15ee$var$visualViewport.removeEventListener('resize', onResize);\n };\n }, []);\n return size;\n}\nfunction $5df64b3807dc15ee$var$getViewportSize() {\n return {\n width: $5df64b3807dc15ee$var$visualViewport && ($5df64b3807dc15ee$var$visualViewport === null || $5df64b3807dc15ee$var$visualViewport === void 0 ? void 0 : $5df64b3807dc15ee$var$visualViewport.width) || window.innerWidth,\n height: $5df64b3807dc15ee$var$visualViewport && ($5df64b3807dc15ee$var$visualViewport === null || $5df64b3807dc15ee$var$visualViewport === void 0 ? void 0 : $5df64b3807dc15ee$var$visualViewport.height) || window.innerHeight\n };\n}\n\n\nexport {$5df64b3807dc15ee$export$d699905dd57c73ca as useViewportSize};\n//# sourceMappingURL=useViewportSize.module.js.map\n","import {ariaHideOutside as $5e3802645cc19319$export$1c3ebcada18427bf} from \"./ariaHideOutside.mjs\";\nimport {useOverlay as $a11501f3d1d39e6c$export$ea8f71083e90600f} from \"./useOverlay.mjs\";\nimport {useOverlayFocusContain as $337b884510726a0d$export$14c98a7594375490} from \"./Overlay.mjs\";\nimport {usePreventScroll as $49c51c25361d4cd2$export$ee0f7cc6afcd1c18} from \"./usePreventScroll.mjs\";\nimport {mergeProps as $7Dhkr$mergeProps} from \"@react-aria/utils\";\nimport {useEffect as $7Dhkr$useEffect} from \"react\";\n\n/*\n * Copyright 2022 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \n\n\n\n\n\nfunction $8ac8429251c45e4b$export$dbc0f175b25fb0fb(props, state, ref) {\n let { overlayProps: overlayProps, underlayProps: underlayProps } = (0, $a11501f3d1d39e6c$export$ea8f71083e90600f)({\n ...props,\n isOpen: state.isOpen,\n onClose: state.close\n }, ref);\n (0, $49c51c25361d4cd2$export$ee0f7cc6afcd1c18)({\n isDisabled: !state.isOpen\n });\n (0, $337b884510726a0d$export$14c98a7594375490)();\n (0, $7Dhkr$useEffect)(()=>{\n if (state.isOpen) return (0, $5e3802645cc19319$export$1c3ebcada18427bf)([\n ref.current\n ]);\n }, [\n state.isOpen,\n ref\n ]);\n return {\n modalProps: (0, $7Dhkr$mergeProps)(overlayProps),\n underlayProps: underlayProps\n };\n}\n\n\nexport {$8ac8429251c45e4b$export$dbc0f175b25fb0fb as useModalOverlay};\n//# sourceMappingURL=useModalOverlay.module.js.map\n","import {Provider as $64fa3d84918910a7$export$2881499e37b75b9a, useContextProps as $64fa3d84918910a7$export$29f1550f4b0d4415, useEnterAnimation as $64fa3d84918910a7$export$6d3443f2c48bfc20, useExitAnimation as $64fa3d84918910a7$export$45fda7c47f93fd48, useRenderProps as $64fa3d84918910a7$export$4d86445c2cf5e3} from \"./utils.mjs\";\nimport {OverlayTriggerStateContext as $de32f1b87079253c$export$d2f961adcb0afbe} from \"./Dialog.mjs\";\nimport {useIsSSR as $daTMi$useIsSSR, useModalOverlay as $daTMi$useModalOverlay, Overlay as $daTMi$Overlay, DismissButton as $daTMi$DismissButton} from \"react-aria\";\nimport {useObjectRef as $daTMi$useObjectRef, useViewportSize as $daTMi$useViewportSize, mergeProps as $daTMi$mergeProps, filterDOMProps as $daTMi$filterDOMProps, mergeRefs as $daTMi$mergeRefs} from \"@react-aria/utils\";\nimport {useOverlayTriggerState as $daTMi$useOverlayTriggerState} from \"react-stately\";\nimport $daTMi$react, {createContext as $daTMi$createContext, useContext as $daTMi$useContext, forwardRef as $daTMi$forwardRef, useRef as $daTMi$useRef, useMemo as $daTMi$useMemo} from \"react\";\n\n/*\n * Copyright 2022 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \n\n\n\n\n\nconst $f3f84453ead64de5$export$ab57792b9b6974a6 = /*#__PURE__*/ (0, $daTMi$createContext)(null);\nconst $f3f84453ead64de5$var$InternalModalContext = /*#__PURE__*/ (0, $daTMi$createContext)(null);\nfunction $f3f84453ead64de5$var$Modal(props, ref) {\n let ctx = (0, $daTMi$useContext)($f3f84453ead64de5$var$InternalModalContext);\n if (ctx) return /*#__PURE__*/ (0, $daTMi$react).createElement($f3f84453ead64de5$var$ModalContent, {\n ...props,\n modalRef: ref\n }, props.children);\n let { isDismissable: isDismissable, isKeyboardDismissDisabled: isKeyboardDismissDisabled, isOpen: isOpen, defaultOpen: defaultOpen, onOpenChange: onOpenChange, children: children, isEntering: isEntering, isExiting: isExiting, UNSTABLE_portalContainer: UNSTABLE_portalContainer, shouldCloseOnInteractOutside: shouldCloseOnInteractOutside, ...otherProps } = props;\n return /*#__PURE__*/ (0, $daTMi$react).createElement($f3f84453ead64de5$export$8948f78d83984c69, {\n isDismissable: isDismissable,\n isKeyboardDismissDisabled: isKeyboardDismissDisabled,\n isOpen: isOpen,\n defaultOpen: defaultOpen,\n onOpenChange: onOpenChange,\n isEntering: isEntering,\n isExiting: isExiting,\n UNSTABLE_portalContainer: UNSTABLE_portalContainer,\n shouldCloseOnInteractOutside: shouldCloseOnInteractOutside\n }, /*#__PURE__*/ (0, $daTMi$react).createElement($f3f84453ead64de5$var$ModalContent, {\n ...otherProps,\n modalRef: ref\n }, children));\n}\n/**\n * A modal is an overlay element which blocks interaction with elements outside it.\n */ const $f3f84453ead64de5$export$2b77a92f1a5ad772 = /*#__PURE__*/ (0, $daTMi$forwardRef)($f3f84453ead64de5$var$Modal);\nfunction $f3f84453ead64de5$var$ModalOverlayWithForwardRef(props, ref) {\n [props, ref] = (0, $64fa3d84918910a7$export$29f1550f4b0d4415)(props, ref, $f3f84453ead64de5$export$ab57792b9b6974a6);\n let contextState = (0, $daTMi$useContext)((0, $de32f1b87079253c$export$d2f961adcb0afbe));\n let localState = (0, $daTMi$useOverlayTriggerState)(props);\n let state = props.isOpen != null || props.defaultOpen != null || !contextState ? localState : contextState;\n let objectRef = (0, $daTMi$useObjectRef)(ref);\n let modalRef = (0, $daTMi$useRef)(null);\n let isOverlayExiting = (0, $64fa3d84918910a7$export$45fda7c47f93fd48)(objectRef, state.isOpen);\n let isModalExiting = (0, $64fa3d84918910a7$export$45fda7c47f93fd48)(modalRef, state.isOpen);\n let isExiting = isOverlayExiting || isModalExiting || props.isExiting || false;\n let isSSR = (0, $daTMi$useIsSSR)();\n if (!state.isOpen && !isExiting || isSSR) return null;\n return /*#__PURE__*/ (0, $daTMi$react).createElement($f3f84453ead64de5$var$ModalOverlayInner, {\n ...props,\n state: state,\n isExiting: isExiting,\n overlayRef: objectRef,\n modalRef: modalRef\n });\n}\nconst $f3f84453ead64de5$export$8948f78d83984c69 = /*#__PURE__*/ (0, $daTMi$forwardRef)($f3f84453ead64de5$var$ModalOverlayWithForwardRef);\nfunction $f3f84453ead64de5$var$ModalOverlayInner({ UNSTABLE_portalContainer: UNSTABLE_portalContainer, ...props }) {\n let modalRef = props.modalRef;\n let { state: state } = props;\n let { modalProps: modalProps, underlayProps: underlayProps } = (0, $daTMi$useModalOverlay)(props, state, modalRef);\n let entering = (0, $64fa3d84918910a7$export$6d3443f2c48bfc20)(props.overlayRef) || props.isEntering || false;\n let renderProps = (0, $64fa3d84918910a7$export$4d86445c2cf5e3)({\n ...props,\n defaultClassName: 'react-aria-ModalOverlay',\n values: {\n isEntering: entering,\n isExiting: props.isExiting,\n state: state\n }\n });\n let viewport = (0, $daTMi$useViewportSize)();\n let style = {\n ...renderProps.style,\n '--visual-viewport-height': viewport.height + 'px'\n };\n return /*#__PURE__*/ (0, $daTMi$react).createElement((0, $daTMi$Overlay), {\n isExiting: props.isExiting,\n portalContainer: UNSTABLE_portalContainer\n }, /*#__PURE__*/ (0, $daTMi$react).createElement(\"div\", {\n ...(0, $daTMi$mergeProps)((0, $daTMi$filterDOMProps)(props), underlayProps),\n ...renderProps,\n style: style,\n ref: props.overlayRef,\n \"data-entering\": entering || undefined,\n \"data-exiting\": props.isExiting || undefined\n }, /*#__PURE__*/ (0, $daTMi$react).createElement((0, $64fa3d84918910a7$export$2881499e37b75b9a), {\n values: [\n [\n $f3f84453ead64de5$var$InternalModalContext,\n {\n modalProps: modalProps,\n modalRef: modalRef,\n isExiting: props.isExiting,\n isDismissable: props.isDismissable\n }\n ],\n [\n (0, $de32f1b87079253c$export$d2f961adcb0afbe),\n state\n ]\n ]\n }, renderProps.children)));\n}\nfunction $f3f84453ead64de5$var$ModalContent(props) {\n let { modalProps: modalProps, modalRef: modalRef, isExiting: isExiting, isDismissable: isDismissable } = (0, $daTMi$useContext)($f3f84453ead64de5$var$InternalModalContext);\n let state = (0, $daTMi$useContext)((0, $de32f1b87079253c$export$d2f961adcb0afbe));\n let mergedRefs = (0, $daTMi$useMemo)(()=>(0, $daTMi$mergeRefs)(props.modalRef, modalRef), [\n props.modalRef,\n modalRef\n ]);\n let ref = (0, $daTMi$useObjectRef)(mergedRefs);\n let entering = (0, $64fa3d84918910a7$export$6d3443f2c48bfc20)(ref);\n let renderProps = (0, $64fa3d84918910a7$export$4d86445c2cf5e3)({\n ...props,\n defaultClassName: 'react-aria-Modal',\n values: {\n isEntering: entering,\n isExiting: isExiting,\n state: state\n }\n });\n return /*#__PURE__*/ (0, $daTMi$react).createElement(\"div\", {\n ...(0, $daTMi$mergeProps)((0, $daTMi$filterDOMProps)(props), modalProps),\n ...renderProps,\n ref: ref,\n \"data-entering\": entering || undefined,\n \"data-exiting\": isExiting || undefined\n }, isDismissable && /*#__PURE__*/ (0, $daTMi$react).createElement((0, $daTMi$DismissButton), {\n onDismiss: state.close\n }), renderProps.children);\n}\n\n\nexport {$f3f84453ead64de5$export$ab57792b9b6974a6 as ModalContext, $f3f84453ead64de5$export$8948f78d83984c69 as ModalOverlay, $f3f84453ead64de5$export$2b77a92f1a5ad772 as Modal};\n//# sourceMappingURL=Modal.module.js.map\n","\"use strict\";\n\"use client\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _createSvgIcon = _interopRequireDefault(require(\"./utils/createSvgIcon\"));\nvar _jsxRuntime = require(\"react/jsx-runtime\");\nvar _default = exports.default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)(\"path\", {\n d: \"M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z\"\n}), 'Close');","import { PropsWithChildren } from 'react';\r\nimport { ModalOverlay } from 'react-aria-components';\r\nimport { tv } from 'tailwind-variants';\r\n\r\ntype Props = {\r\n /** A flag that determines if the modal is open and visible. */\r\n isOpen: boolean;\r\n\r\n /** A callback function triggered when the open status of the modal changes. */\r\n onOpenChange: (isOpen: boolean) => void;\r\n\r\n /** Indicates whether the user can click outside of the modal to close it. Defaults to false. */\r\n isDismissable?: boolean;\r\n\r\n /** Indicates whether the ability to close the modal via pressing escape is enabled. Defaults to false. */\r\n isKeyboardDismissable?: boolean;\r\n} & PropsWithChildren;\r\n\r\nconst style = tv({\r\n // Swyfft navbar index is 999, so we need to set the overlay to 1000 to ensure it appears above the navbar.\r\n base: 'inset-0 fixed bg-[rgba(0,0,0,0.4)] tracking-[0.5px] font-sans backdrop-blur-sm z-[1000]',\r\n variants: {\r\n isEntering: {\r\n true: 'animate-in fade-in duration-150',\r\n },\r\n isExiting: {\r\n true: 'animate-out fade-out duration-150 reverse ease-in',\r\n },\r\n },\r\n});\r\n\r\nexport function Overlay(props: Props) {\r\n return <ModalOverlay {...props} isKeyboardDismissDisabled={!props.isKeyboardDismissable} className={style} />;\r\n}\r\n","import CloseIcon from '@mui/icons-material/Close';\r\nimport { Title } from '@webkit/components/title';\r\nimport { Overlay } from '@webkit/internal/overlay';\r\nimport { PropsWithChildren } from 'react';\r\nimport { Modal as AriaModal, Dialog } from 'react-aria-components';\r\nimport { tv } from 'tailwind-variants';\r\n\r\nexport type ModalSize = 'sm' | 'md' | 'lg' | 'xl';\r\n\r\nexport type ModalProps = {\r\n /** A flag that determines if the modal is open and visible. */\r\n isOpen: boolean;\r\n\r\n /** The title shown at the top of the modal. */\r\n title: string;\r\n\r\n /** A callback function triggered when the open status of the modal changes. */\r\n onOpenChange: (isOpen: boolean) => void;\r\n\r\n /** Indicates whether the user can click outside of the modal to close it. Defaults to false. */\r\n isDismissable?: boolean;\r\n\r\n /** Indicates whether the ability to close the modal via pressing escape is enabled. Defaults to false. */\r\n isKeyboardDismissable?: boolean;\r\n\r\n /** The size of the modal. Defaults to \"medium\". */\r\n size?: ModalSize;\r\n\r\n /** If true, shows a close icon in the upper right corner. Defaults to true. */\r\n showCloseButton?: boolean;\r\n\r\n /** The ID of the underlying DOM element. */\r\n id?: string;\r\n} & PropsWithChildren;\r\n\r\nconst style = tv({\r\n // The conditional rule for the 'top' style prevents the top of the modal from being obscured by the mobile version of the navbar when it appears.\r\n base: 'h-auto sm:top-[5vh] top-[56px] max-h-[80vh] overflow-y-auto scrollbar-light absolute rounded bg-white shadow-2xl bg-clip-padding p-5 border-0 border-t-[6px] border-solid border-brand-green-250',\r\n variants: {\r\n isEntering: {\r\n true: 'animate-in ease-out duration-150 slide-in-from-bottom-3',\r\n },\r\n isExiting: {\r\n true: 'animate-out ease-in duration-150 slide-out-to-bottom-3',\r\n },\r\n // The conditional rules for large modals allow content to be fully visible when the viewport gets narrow enough to cut off either side. Similar\r\n // rules may need to be added for medium and small sized modals.\r\n size: {\r\n sm: 'w-[95%] left-[2.5%] sm:w-[30rem] sm:left-[calc(50vw-15rem)]',\r\n md: 'w-[95%] left-[2.5%] sm:w-[42rem] sm:left-[calc(50vw-21rem)] ',\r\n lg: 'w-[95%] left-[2.5%] md:w-[68rem] md:left-[calc(50vw-34rem)]',\r\n xl: 'w-[95%] left-[2.5%] md:w-[80vw] md:left-[calc(50vw-40vw)]',\r\n },\r\n },\r\n});\r\n\r\nexport function Modal({\r\n isOpen,\r\n title,\r\n size = 'md',\r\n showCloseButton = true,\r\n isDismissable,\r\n isKeyboardDismissable,\r\n id,\r\n onOpenChange,\r\n children,\r\n}: ModalProps) {\r\n return (\r\n <Overlay\r\n isOpen={isOpen}\r\n isDismissable={isDismissable || false}\r\n isKeyboardDismissable={isKeyboardDismissable === undefined ? true : isKeyboardDismissable}\r\n onOpenChange={onOpenChange}\r\n >\r\n <AriaModal className={({ isEntering, isExiting }) => style({ isEntering, isExiting, size })}>\r\n <Dialog className='focus-visible: outline-none relative' id={id} aria-label={title}>\r\n {showCloseButton && (\r\n <div\r\n className='absolute box-content top-0 right-0 z-[4] p-2 mt-[-0.5rem] mr-[-0.5rem] cursor-pointer text-brand-gray-550 rounded transition-colors hover:bg-brand-gray-300 h-[24px]'\r\n onClick={() => onOpenChange(false)}\r\n >\r\n <CloseIcon />\r\n </div>\r\n )}\r\n\r\n <Title>{title}</Title>\r\n\r\n {children}\r\n </Dialog>\r\n </AriaModal>\r\n </Overlay>\r\n );\r\n}\r\n\r\nexport function ModalRow({ children }: PropsWithChildren) {\r\n return <div className='flex gap-4 mt-4 first:mt-0 [&>*]:flex-1'>{children}</div>;\r\n}\r\n\r\nexport function ModalSeparator() {\r\n return <div className='w-full h-[1px] bg-brand-gray-200 my-4' />;\r\n}\r\n"],"names":["$5df64b3807dc15ee$var$visualViewport","$5df64b3807dc15ee$export$d699905dd57c73ca","isSSR","$fuDHA$useIsSSR","size","setSize","$fuDHA$useState","$5df64b3807dc15ee$var$getViewportSize","$fuDHA$useEffect","onResize","newSize","$8ac8429251c45e4b$export$dbc0f175b25fb0fb","props","state","ref","overlayProps","underlayProps","$a11501f3d1d39e6c$export$ea8f71083e90600f","$49c51c25361d4cd2$export$ee0f7cc6afcd1c18","$337b884510726a0d$export$14c98a7594375490","$7Dhkr$useEffect","$5e3802645cc19319$export$1c3ebcada18427bf","$7Dhkr$mergeProps","$f3f84453ead64de5$export$ab57792b9b6974a6","$daTMi$createContext","$f3f84453ead64de5$var$InternalModalContext","$f3f84453ead64de5$var$Modal","$daTMi$useContext","$daTMi$react","$f3f84453ead64de5$var$ModalContent","isDismissable","isKeyboardDismissDisabled","isOpen","defaultOpen","onOpenChange","children","isEntering","isExiting","UNSTABLE_portalContainer","shouldCloseOnInteractOutside","otherProps","$f3f84453ead64de5$export$8948f78d83984c69","$f3f84453ead64de5$export$2b77a92f1a5ad772","$daTMi$forwardRef","$f3f84453ead64de5$var$ModalOverlayWithForwardRef","$64fa3d84918910a7$export$29f1550f4b0d4415","contextState","$de32f1b87079253c$export$d2f961adcb0afbe","localState","$daTMi$useOverlayTriggerState","objectRef","$daTMi$useObjectRef","modalRef","$daTMi$useRef","isOverlayExiting","$64fa3d84918910a7$export$45fda7c47f93fd48","isModalExiting","$daTMi$useIsSSR","$f3f84453ead64de5$var$ModalOverlayInner","modalProps","$daTMi$useModalOverlay","entering","$64fa3d84918910a7$export$6d3443f2c48bfc20","renderProps","$64fa3d84918910a7$export$4d86445c2cf5e3","viewport","$daTMi$useViewportSize","style","$daTMi$Overlay","$daTMi$mergeProps","$daTMi$filterDOMProps","$64fa3d84918910a7$export$2881499e37b75b9a","mergedRefs","$daTMi$useMemo","$daTMi$mergeRefs","$daTMi$DismissButton","_interopRequireDefault","require$$0","Close","_createSvgIcon","_jsxRuntime","require$$2","tv","Overlay","jsx","ModalOverlay","Modal","title","showCloseButton","isKeyboardDismissable","id","AriaModal","jsxs","Dialog","CloseIcon","Title","ModalRow","ModalSeparator"],"mappings":"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","x_google_ignoreList":[0,1,2,3]}