blog/source/files/magicbroad/assets/Popover.e8cf0efd.js.map
2022-06-09 09:09:09 +08:00

1 line
92 KiB
Text

{"version":3,"file":"Popover.e8cf0efd.js","sources":["../../node_modules/@suid/material/AppBar/appBarClasses.js","../../node_modules/@suid/material/AppBar/AppBar.jsx","../../node_modules/@suid/material/Toolbar/toolbarClasses.js","../../node_modules/@suid/material/Toolbar/Toolbar.jsx","../../node_modules/@suid/material/utils/createSvgIcon.jsx","../../node_modules/@suid/material/transitions/utils.js","../../node_modules/@suid/base/Transition/Transition.jsx","../../node_modules/@suid/base/Transition/TransitionContext.js","../../node_modules/@suid/material/Fade/Fade.jsx","../../node_modules/@suid/base/BackdropUnstyled/backdropUnstyledClasses.js","../../node_modules/@suid/base/BackdropUnstyled/BackdropUnstyled.jsx","../../node_modules/@suid/material/Backdrop/Backdrop.jsx","../../node_modules/@suid/base/Portal/Portal.jsx","../../node_modules/@suid/utils/ownerDocument.js","../../node_modules/@suid/utils/ownerWindow.js","../../node_modules/@suid/utils/getScrollbarSize.js","../../node_modules/@suid/base/ModalUnstyled/ModalManager.js","../../node_modules/@suid/base/ModalUnstyled/modalUnstyledClasses.js","../../node_modules/@suid/base/ModalUnstyled/ModalUnstyled.jsx","../../node_modules/@suid/material/Modal/Modal.jsx","../../node_modules/@suid/material/CardContent/cardContentClasses.js","../../node_modules/@suid/material/CardContent/CardContent.jsx","../../node_modules/@suid/material/Grow/Grow.jsx","../../node_modules/@suid/material/Popover/popoverClasses.js","../../node_modules/@suid/utils/debounce.js","../../node_modules/@suid/material/Popover/Popover.jsx"],"sourcesContent":["import { generateUtilityClass, generateUtilityClasses } from \"@suid/base\";\nexport function getAppBarUtilityClass(slot) {\n return generateUtilityClass(\"MuiAppBar\", slot);\n}\nconst appBarClasses = generateUtilityClasses(\"MuiAppBar\", [\n \"root\",\n \"positionFixed\",\n \"positionAbsolute\",\n \"positionSticky\",\n \"positionStatic\",\n \"positionRelative\",\n \"colorDefault\",\n \"colorPrimary\",\n \"colorSecondary\",\n \"colorInherit\",\n \"colorTransparent\",\n]);\nexport default appBarClasses;\n","import Paper from \"../Paper\";\nimport styled from \"../styles/styled\";\nimport capitalize from \"../utils/capitalize\";\nimport { getAppBarUtilityClass } from \"./appBarClasses\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport clsx from \"clsx\";\nconst $ = createComponentFactory()({\n name: \"MuiAppBar\",\n selfPropNames: [\"classes\", \"color\", \"enableColorOnDark\", \"position\"],\n utilityClass: getAppBarUtilityClass,\n propDefaults: ({ set }) => set({\n component: \"header\",\n color: \"primary\",\n enableColorOnDark: false,\n position: \"fixed\",\n }),\n slotClasses: (ownerState) => ({\n root: [\n \"root\",\n `color${capitalize(ownerState.color)}`,\n `position${capitalize(ownerState.position)}`,\n ],\n }),\n});\nconst AppBarRoot = styled(Paper, {\n name: \"MuiAppBar\",\n slot: \"Root\",\n overridesResolver: (props, styles) => {\n return [\n styles.root,\n styles[`position${capitalize(props.ownerState.position)}`],\n styles[`color${capitalize(props.ownerState.color)}`],\n ];\n },\n})(({ theme, ownerState }) => {\n const backgroundColorDefault = theme.palette.mode === \"light\"\n ? theme.palette.grey[100]\n : theme.palette.grey[900];\n return {\n display: \"flex\",\n flexDirection: \"column\",\n width: \"100%\",\n boxSizing: \"border-box\",\n flexShrink: 0,\n ...(ownerState.position === \"fixed\" && {\n position: \"fixed\",\n zIndex: theme.zIndex.appBar,\n top: 0,\n left: \"auto\",\n right: 0,\n \"@media print\": {\n // Prevent the app bar to be visible on each printed page.\n position: \"absolute\",\n },\n }),\n ...(ownerState.position === \"absolute\" && {\n position: \"absolute\",\n zIndex: theme.zIndex.appBar,\n top: 0,\n left: \"auto\",\n right: 0,\n }),\n ...(ownerState.position === \"sticky\" && {\n // ⚠️ sticky is not supported by IE11.\n position: \"sticky\",\n zIndex: theme.zIndex.appBar,\n top: 0,\n left: \"auto\",\n right: 0,\n }),\n ...(ownerState.position === \"static\" && {\n position: \"static\",\n }),\n ...(ownerState.position === \"relative\" && {\n position: \"relative\",\n }),\n ...(ownerState.color === \"default\" && {\n backgroundColor: backgroundColorDefault,\n color: theme.palette.getContrastText(backgroundColorDefault),\n }),\n ...(ownerState.color &&\n ownerState.color !== \"default\" &&\n ownerState.color !== \"inherit\" &&\n ownerState.color !== \"transparent\" && {\n backgroundColor: theme.palette[ownerState.color].main,\n color: theme.palette[ownerState.color].contrastText,\n }),\n ...(ownerState.color === \"inherit\" && {\n color: \"inherit\",\n }),\n ...(theme.palette.mode === \"dark\" &&\n !ownerState.enableColorOnDark && {\n backgroundColor: undefined,\n color: undefined,\n }),\n ...(ownerState.color === \"transparent\" && {\n backgroundColor: \"transparent\",\n color: \"inherit\",\n ...(theme.palette.mode === \"dark\" && {\n backgroundImage: \"none\",\n }),\n }),\n };\n});\n/**\n *\n * Demos:\n *\n * - [App Bar](https://mui.com/components/app-bar/)\n *\n * API:\n *\n * - [AppBar API](https://mui.com/api/app-bar/)\n * - inherits [Paper API](https://mui.com/api/paper/)\n */\nconst AppBar = $.component(function AppBar({ allProps, classes, props, otherProps, }) {\n return (<AppBarRoot square ownerState={allProps} elevation={4} className={clsx(classes.root, {\n \"mui-fixed\": props.position === \"fixed\", // Useful for the Dialog\n }, otherProps.className)} {...otherProps}/>);\n});\nexport default AppBar;\n","import { generateUtilityClass, generateUtilityClasses } from \"@suid/base\";\nexport function getToolbarUtilityClass(slot) {\n return generateUtilityClass(\"MuiToolbar\", slot);\n}\nconst toolbarClasses = generateUtilityClasses(\"MuiToolbar\", [\n \"root\",\n \"gutters\",\n \"regular\",\n \"dense\",\n]);\nexport default toolbarClasses;\n","import styled from \"../styles/styled\";\nimport { getToolbarUtilityClass } from \"./toolbarClasses\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport clsx from \"clsx\";\nconst $ = createComponentFactory()({\n name: \"MuiToolbar\",\n selfPropNames: [\"children\", \"classes\", \"disableGutters\", \"variant\"],\n propDefaults: ({ set }) => set({\n component: \"div\",\n disableGutters: false,\n variant: \"regular\",\n }),\n utilityClass: getToolbarUtilityClass,\n slotClasses: (ownerState) => ({\n root: [\"root\", !ownerState.disableGutters && \"gutters\", ownerState.variant],\n }),\n});\nconst ToolbarRoot = styled(\"div\", {\n name: \"MuiToolbar\",\n slot: \"Root\",\n overridesResolver: (props, styles) => {\n const { ownerState } = props;\n return [\n styles.root,\n !ownerState.disableGutters && styles.gutters,\n styles[ownerState.variant],\n ];\n },\n})(({ theme, ownerState }) => ({\n position: \"relative\",\n display: \"flex\",\n alignItems: \"center\",\n ...(!ownerState.disableGutters && {\n paddingLeft: theme.spacing(2),\n paddingRight: theme.spacing(2),\n [theme.breakpoints.up(\"sm\")]: {\n paddingLeft: theme.spacing(3),\n paddingRight: theme.spacing(3),\n },\n }),\n ...(ownerState.variant === \"dense\" && {\n minHeight: 48,\n }),\n}), ({ theme, ownerState }) => ownerState.variant === \"regular\" && theme.mixins.toolbar);\n/**\n *\n * Demos:\n *\n * - [App Bar](https://mui.com/components/app-bar/)\n *\n * API:\n *\n * - [Toolbar API](https://mui.com/api/toolbar/)\n */\nconst Toolbar = $.component(function Toolbar({ allProps, props, classes, otherProps, }) {\n return (<ToolbarRoot {...otherProps} as={otherProps.component} className={clsx(classes.root, otherProps.className)} ownerState={allProps}>\n {props.children}\n </ToolbarRoot>);\n});\nexport default Toolbar;\n","import SvgIcon from \"../SvgIcon\";\nexport default function createSvgIcon(path, displayName) {\n const Component = (props) => (<SvgIcon data-testid={`${displayName}Icon`} {...props}>\n {path}\n </SvgIcon>);\n return Component;\n}\n","export const reflow = (node) => node.scrollTop;\nexport function getTransitionProps(props, options) {\n const { timeout, easing, style = {} } = props;\n return {\n duration: style.transitionDuration ??\n (typeof timeout === \"number\"\n ? timeout\n : typeof timeout === \"string\"\n ? 0\n : timeout[options.mode] || 0),\n easing: style.transitionTimingFunction ??\n (typeof easing === \"object\" ? easing[options.mode] : easing),\n delay: style.transitionDelay,\n };\n}\n","import { createEffect, createMemo, createSignal, mergeProps, on, onCleanup, untrack, } from \"solid-js\";\nexport const transitionSelfPropNames = [\n \"in\",\n \"mountOnEnter\",\n \"unmountOnExit\",\n \"timeout\",\n \"addEndListener\",\n \"onEnter\",\n \"onEntering\",\n \"onEntered\",\n \"onExit\",\n \"onExiting\",\n \"onExited\",\n \"children\",\n \"ref\",\n];\nexport function resolveTransitionTimeout(timeout) {\n if (typeof timeout === \"number\") {\n return {\n exit: timeout,\n enter: timeout,\n appear: timeout,\n };\n }\n else {\n return {\n exit: timeout?.exit || 0,\n enter: timeout?.enter || 0,\n appear: timeout?.appear ?? timeout?.enter ?? 0,\n };\n }\n}\nexport function Transition(inProps) {\n const props = mergeProps({\n in: false,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n enter: true,\n exit: true,\n }, inProps);\n const timeouts = createMemo(() => resolveTransitionTimeout(props.timeout));\n let initialStatus;\n if (props.in) {\n if (props.appear) {\n initialStatus = \"exited\";\n }\n else {\n initialStatus = \"entered\";\n }\n }\n else {\n if (props.unmountOnExit || props.mountOnEnter) {\n initialStatus = \"unmounted\";\n }\n else {\n initialStatus = \"exited\";\n }\n }\n const [status, setStatus] = createSignal(initialStatus);\n let enteredTimeout;\n let exitedTimeout;\n let inTimeout;\n let firstStatusChange = true;\n function onTransitionEnd(ms, cb) {\n const next = () => setTimeout(cb, ms);\n let timeout;\n let stopped = false;\n const stop = () => {\n stopped = true;\n timeout && clearTimeout(timeout);\n };\n if (props.addEndListener) {\n props.addEndListener(() => {\n if (!stopped)\n timeout = next();\n });\n }\n else {\n timeout = next();\n }\n return stop;\n }\n const result = createMemo(on(() => [status()], () => {\n const v = status();\n const result = v !== \"unmounted\" ? props.children(v) : undefined;\n if (firstStatusChange) {\n firstStatusChange = false;\n return result;\n }\n if (v === \"entering\") {\n props.onEntering?.();\n if (exitedTimeout) {\n exitedTimeout();\n exitedTimeout = undefined;\n }\n enteredTimeout = onTransitionEnd(timeouts().enter, () => setStatus(\"entered\"));\n }\n else if (v === \"entered\") {\n props.onEntered?.();\n }\n else if (v === \"exiting\") {\n props.onExiting?.();\n if (enteredTimeout) {\n enteredTimeout();\n enteredTimeout = undefined;\n }\n exitedTimeout = onTransitionEnd(timeouts().exit, () => setStatus(\"exited\"));\n }\n else if (v === \"exited\") {\n props.onExited?.();\n }\n return result;\n }));\n createEffect((firstTime) => {\n if (props.in) {\n untrack(() => props.onEnter?.());\n setStatus(\"entering\");\n }\n else {\n if (!firstTime) {\n untrack(() => props.onExit?.());\n setStatus(\"exiting\");\n }\n }\n return false;\n }, true);\n onCleanup(() => {\n enteredTimeout?.();\n exitedTimeout?.();\n inTimeout && clearTimeout(inTimeout);\n });\n return result();\n}\nexport default Transition;\n","import { createContext } from \"solid-js\";\nexport const TransitionContext = createContext();\n","import useTheme from \"../styles/useTheme\";\nimport { getTransitionProps } from \"../transitions/utils\";\nimport { reflow } from \"./../transitions/utils\";\nimport Transition, { resolveTransitionTimeout } from \"@suid/base/Transition\";\nimport { TransitionContext } from \"@suid/base/Transition/TransitionContext\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport createElementRef from \"@suid/system/createElementRef\";\nimport { children, createMemo, useContext } from \"solid-js\";\nconst $ = createComponentFactory()({\n name: \"MuiFader\",\n selfPropNames: [\"appear\", \"children\", \"easing\", \"in\", \"timeout\"],\n propDefaults: ({ set }) => {\n const theme = useTheme();\n return set({\n appear: true,\n get timeout() {\n return {\n enter: theme.transitions.duration.enteringScreen,\n exit: theme.transitions.duration.leavingScreen,\n };\n },\n });\n },\n});\nexport const fadeSelfPropNames = $.selfPropNames;\n/**\n * The Fade transition is used by the [Modal](https://mui.com/components/modal/) component.\n * It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.\n *\n * Demos:\n *\n * - [Transitions](https://mui.com/components/transitions/)\n *\n * API:\n *\n * - [Fade API](https://mui.com/api/fade/)\n * - inherits [Transition API](http://reactcommunity.org/react-transition-group/transition/#Transition-props)\n */\nconst Fade = $.component(function Fade({ props, otherProps }) {\n const theme = useTheme();\n const element = createElementRef(props);\n const timeout = createMemo(() => resolveTransitionTimeout(props.timeout));\n const c = children(() => props.children);\n const context = useContext(TransitionContext);\n return (<Transition in={props.in ?? context?.in} appear={props.appear} timeout={props.timeout} {...otherProps} ref={element} onEnter={() => {\n const e = c();\n reflow(e);\n const transitionProps = getTransitionProps({ style: otherProps.style, timeout: timeout(), easing: props.easing }, {\n mode: \"enter\",\n });\n e.style.transition = theme.transitions.create(\"opacity\", transitionProps);\n otherProps.onEnter?.();\n context?.onEnter?.();\n }} onExit={() => {\n const e = c();\n const transitionProps = getTransitionProps({\n style: otherProps.style,\n timeout: timeout(),\n easing: props.easing,\n }, {\n mode: \"enter\",\n });\n e.style.transition = theme.transitions.create(\"opacity\", transitionProps);\n otherProps.onExit?.();\n }} onExited={() => {\n otherProps.onExited?.();\n context?.onExited?.();\n }}>\n {(state) => {\n const element = c();\n if (state === \"exited\" && !props.in) {\n element.style.visibility = \"hidden\";\n }\n else {\n element.style.removeProperty(\"visibility\");\n }\n if (state === \"entering\" || state === \"entered\") {\n element.style.opacity = \"1\";\n }\n else {\n element.style.opacity = \"0\";\n }\n return element;\n }}\n </Transition>);\n});\nexport default Fade;\n","import generateUtilityClass from \"../generateUtilityClass\";\nimport generateUtilityClasses from \"../generateUtilityClasses\";\nexport function getBackdropUtilityClass(slot) {\n return generateUtilityClass(\"MuiBackdrop\", slot);\n}\nconst backdropUnstyledClasses = generateUtilityClasses(\"MuiBackdrop\", [\"root\", \"invisible\"]);\nexport default backdropUnstyledClasses;\n","import createComponentFactory from \"../createComponentFactory\";\nimport isHostComponent from \"../utils/isHostComponent\";\nimport { getBackdropUtilityClass } from \"./backdropUnstyledClasses\";\nimport Dynamic from \"@suid/system/Dynamic\";\nimport clsx from \"clsx\";\nconst $ = createComponentFactory()({\n name: \"BackdropUnstyled\",\n selfPropNames: [\n \"children\",\n \"classes\",\n \"components\",\n \"componentsProps\",\n \"invisible\",\n ],\n propDefaults: ({ set }) => set({\n component: \"div\",\n components: {},\n componentsProps: {},\n invisible: false,\n }),\n utilityClass: getBackdropUtilityClass,\n slotClasses: (ownerState) => ({\n root: [\"root\", ownerState.invisible && \"invisible\"],\n }),\n});\n/**\n *\n * Demos:\n *\n * - [Backdrop](https://mui.com/components/backdrop/)\n *\n * API:\n *\n * - [BackdropUnstyled API](https://mui.com/api/backdrop-unstyled/)\n */\nconst BackdropUnstyled = $.component(function BackdropUnstyled({ props, otherProps, allProps, classes, }) {\n const Root = () => props.components.Root || otherProps.component;\n const rootProps = () => (props.componentsProps.root || {});\n return (<Dynamic aria-hidden {...rootProps()} {...otherProps} {...(!isHostComponent(Root()) && {\n ownerState: allProps,\n })} component={Root()} className={clsx(classes.root, rootProps().className, otherProps.className)}/>);\n});\nexport default BackdropUnstyled;\n","import Fade, { fadeSelfPropNames } from \"../Fade\";\nimport styled from \"../styles/styled\";\nimport BackdropUnstyled from \"@suid/base/BackdropUnstyled\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport isHostComponent from \"@suid/base/utils/isHostComponent\";\nimport { splitProps } from \"solid-js\";\nconst $ = createComponentFactory()({\n name: \"MuiBackdrop\",\n selfPropNames: [\"classes\", \"open\", \"transitionDuration\"],\n propDefaults: ({ set }) => set({\n open: false,\n component: \"div\",\n }),\n});\nconst BackdropRoot = styled(\"div\", {\n name: \"MuiBackdrop\",\n slot: \"Root\",\n overridesResolver: (props, styles) => {\n const { ownerState } = props;\n return [styles.root, ownerState.invisible && styles.invisible];\n },\n})(({ ownerState }) => ({\n position: \"fixed\",\n display: \"flex\",\n alignItems: \"center\",\n justifyContent: \"center\",\n right: 0,\n bottom: 0,\n top: 0,\n left: 0,\n backgroundColor: \"rgba(0, 0, 0, 0.5)\",\n WebkitTapHighlightColor: \"transparent\",\n ...(ownerState.invisible && {\n backgroundColor: \"transparent\",\n }),\n}));\n/**\n *\n * Demos:\n *\n * - [Backdrop](https://mui.com/components/backdrop/)\n *\n * API:\n *\n * - [Backdrop API](https://mui.com/api/backdrop/)\n * - inherits [Fade API](https://mui.com/api/fade/)\n */\nconst Backdrop = $.component(function Backdrop({ props, otherProps }) {\n const [fadeProps, backdropProps] = splitProps(otherProps, fadeSelfPropNames);\n return (<Fade in={props.open} timeout={props.transitionDuration} {...fadeProps}>\n <BackdropUnstyled {...backdropProps} className={otherProps.className} invisible={otherProps.invisible} components={{\n Root: BackdropRoot,\n ...otherProps.components,\n }} componentsProps={{\n root: {\n ...otherProps.componentsProps?.root,\n ...((!otherProps.components?.Root ||\n !isHostComponent(otherProps.components?.Root)) &&\n {\n //ownerState: { ...baseProps.componentsProps?.root?.ownerState },\n }),\n },\n }} classes={props.classes}>\n {otherProps.children}\n </BackdropUnstyled>\n </Fade>);\n});\nexport default Backdrop;\n","import { Show } from \"solid-js\";\nimport { Portal as SolidPortal } from \"solid-js/web\";\n/**\n * Portals provide a first-class way to render children into a DOM node\n * that exists outside the DOM hierarchy of the parent component.\n *\n * Demos:\n *\n * - [Portal](https://mui.com/components/portal/)\n *\n * API:\n *\n * - [Portal API](https://mui.com/api/portal/)\n */\nexport function Portal(props) {\n const container = () => props.container ?? document.body;\n return (<Show when={!props.disablePortal} fallback={props.children}>\n <SolidPortal mount={container()}>{props.children}</SolidPortal>\n </Show>);\n}\nexport default Portal;\n","export default function ownerDocument(node) {\n return (node && node.ownerDocument) || document;\n}\n","import ownerDocument from \"./ownerDocument\";\nexport default function ownerWindow(node) {\n const doc = ownerDocument(node);\n return doc.defaultView || window;\n}\n","// A change of the browser zoom change the scrollbar size.\n// Credit https://github.com/twbs/bootstrap/blob/488fd8afc535ca3a6ad4dc581f5e89217b6a36ac/js/src/util/scrollbar.js#L14-L18\nexport default function getScrollbarSize(doc) {\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes\n const documentWidth = doc.documentElement.clientWidth;\n return Math.abs(window.innerWidth - documentWidth);\n}\n","import { unstable_ownerWindow as ownerWindow, unstable_ownerDocument as ownerDocument, unstable_getScrollbarSize as getScrollbarSize, } from \"@suid/utils\";\n// Is a vertical scrollbar displayed?\nfunction isOverflowing(container) {\n const doc = ownerDocument(container);\n if (doc.body === container) {\n return ownerWindow(container).innerWidth > doc.documentElement.clientWidth;\n }\n return container.scrollHeight > container.clientHeight;\n}\nexport function ariaHidden(element, show) {\n if (show) {\n element.setAttribute(\"aria-hidden\", \"true\");\n }\n else {\n element.removeAttribute(\"aria-hidden\");\n }\n}\nfunction getPaddingRight(element) {\n return (parseInt(ownerWindow(element).getComputedStyle(element).paddingRight, 10) ||\n 0);\n}\nfunction ariaHiddenSiblings(container, mountElement, elementsToExclude = [], show) {\n const blacklist = [mountElement, ...elementsToExclude];\n const blacklistTagNames = [\"TEMPLATE\", \"SCRIPT\", \"STYLE\"];\n [].forEach.call(container.children, (element) => {\n if (blacklist.indexOf(element) === -1 &&\n blacklistTagNames.indexOf(element.tagName) === -1) {\n ariaHidden(element, show);\n }\n });\n}\nfunction findIndexOf(items, callback) {\n let idx = -1;\n items.some((item, index) => {\n if (callback(item)) {\n idx = index;\n return true;\n }\n return false;\n });\n return idx;\n}\nfunction handleContainer(containerInfo, props) {\n const restoreStyle = [];\n const container = containerInfo.container;\n if (!props.disableScrollLock) {\n if (isOverflowing(container)) {\n // Compute the size before applying overflow hidden to avoid any scroll jumps.\n const scrollbarSize = getScrollbarSize(ownerDocument(container));\n restoreStyle.push({\n value: container.style.paddingRight,\n property: \"padding-right\",\n el: container,\n });\n // Use computed style, here to get the real padding to add our scrollbar width.\n container.style.paddingRight = `${getPaddingRight(container) + scrollbarSize}px`;\n // .mui-fixed is a global helper.\n const fixedElements = ownerDocument(container).querySelectorAll(\".mui-fixed\");\n [].forEach.call(fixedElements, (element) => {\n restoreStyle.push({\n value: element.style.paddingRight,\n property: \"padding-right\",\n el: element,\n });\n element.style.paddingRight = `${getPaddingRight(element) + scrollbarSize}px`;\n });\n }\n // Improve Gatsby support\n // https://css-tricks.com/snippets/css/force-vertical-scrollbar/\n const parent = container.parentElement;\n const containerWindow = ownerWindow(container);\n const scrollContainer = parent?.nodeName === \"HTML\" &&\n containerWindow.getComputedStyle(parent).overflowY === \"scroll\"\n ? parent\n : container;\n // Block the scroll even if no scrollbar is visible to account for mobile keyboard\n // screensize shrink.\n restoreStyle.push({\n value: scrollContainer.style.overflow,\n property: \"overflow\",\n el: scrollContainer,\n }, {\n value: scrollContainer.style.overflowX,\n property: \"overflow-x\",\n el: scrollContainer,\n }, {\n value: scrollContainer.style.overflowY,\n property: \"overflow-y\",\n el: scrollContainer,\n });\n scrollContainer.style.overflow = \"hidden\";\n }\n const restore = () => {\n restoreStyle.forEach(({ value, el, property }) => {\n if (value) {\n el.style.setProperty(property, value);\n }\n else {\n el.style.removeProperty(property);\n }\n });\n };\n return restore;\n}\nfunction getHiddenSiblings(container) {\n const hiddenSiblings = [];\n [].forEach.call(container.children, (element) => {\n if (element.getAttribute(\"aria-hidden\") === \"true\") {\n hiddenSiblings.push(element);\n }\n });\n return hiddenSiblings;\n}\n/**\n * @ignore - do not document.\n *\n * Proper state management for containers and the modals in those containers.\n * Simplified, but inspired by react-overlay's ModalManager class.\n * Used by the Modal to ensure proper styling of containers.\n */\nexport default class ModalManager {\n containers;\n modals;\n constructor() {\n this.modals = [];\n this.containers = [];\n }\n add(modal, container) {\n let modalIndex = this.modals.findIndex((v) => v.ref === modal.ref);\n if (modalIndex !== -1) {\n return modalIndex;\n }\n modalIndex = this.modals.length;\n this.modals.push(modal);\n ariaHidden(modal.ref, false);\n const hiddenSiblings = getHiddenSiblings(container);\n ariaHiddenSiblings(container, modal.ref, hiddenSiblings, true);\n const containerIndex = findIndexOf(this.containers, (item) => item.container === container);\n if (containerIndex !== -1) {\n this.containers[containerIndex].modals.push(modal);\n return modalIndex;\n }\n this.containers.push({\n modals: [modal],\n container,\n restore: null,\n hiddenSiblings,\n });\n return modalIndex;\n }\n mount(modal, props) {\n const containerIndex = findIndexOf(this.containers, (item) => !!item.modals.find((v) => v.ref === modal.ref));\n const containerInfo = this.containers[containerIndex];\n if (!containerInfo.restore) {\n containerInfo.restore = handleContainer(containerInfo, props);\n }\n }\n remove(modal) {\n const modalIndex = this.modals.findIndex((v) => v.ref === modal.ref);\n if (modalIndex === -1) {\n return modalIndex;\n }\n const containerIndex = findIndexOf(this.containers, (item) => !!item.modals.find((v) => v.ref === modal.ref));\n const containerInfo = this.containers[containerIndex];\n containerInfo.modals.splice(containerInfo.modals.findIndex((v) => v.ref === modal.ref), 1);\n this.modals.splice(modalIndex, 1);\n // If that was the last modal in a container, clean up the container.\n if (containerInfo.modals.length === 0) {\n // The modal might be closed before it had the chance to be mounted in the DOM.\n if (containerInfo.restore) {\n containerInfo.restore();\n }\n ariaHidden(modal.ref, true);\n ariaHiddenSiblings(containerInfo.container, modal.ref, containerInfo.hiddenSiblings, false);\n this.containers.splice(containerIndex, 1);\n }\n else {\n // Otherwise make sure the next top modal is visible to a screen reader.\n const nextTop = containerInfo.modals[containerInfo.modals.length - 1];\n // as soon as a modal is adding its modalRef is undefined. it can't set\n // aria-hidden because the dom element doesn't exist either\n // when modal was unmounted before modalRef gets null\n ariaHidden(nextTop.ref, false);\n }\n return modalIndex;\n }\n isTopModal(modal) {\n return (this.modals.length > 0 &&\n this.modals[this.modals.length - 1].ref === modal.ref);\n }\n}\n","import generateUtilityClass from \"../generateUtilityClass\";\nimport generateUtilityClasses from \"../generateUtilityClasses\";\nexport function getModalUtilityClass(slot) {\n return generateUtilityClass(\"MuiModal\", slot);\n}\nconst modalUnstyledClasses = generateUtilityClasses(\"MuiModal\", [\"root\", \"hidden\"]);\nexport default modalUnstyledClasses;\n","import Portal from \"../Portal\";\nimport { TransitionContext } from \"../Transition/TransitionContext\";\nimport createComponentFactory from \"../createComponentFactory\";\nimport isHostComponent from \"../utils/isHostComponent\";\nimport ModalManager, { ariaHidden } from \"./ModalManager\";\nimport { getModalUtilityClass } from \"./modalUnstyledClasses\";\nimport createElementRef from \"@suid/system/createElementRef\";\nimport ownerDocument from \"@suid/utils/ownerDocument\";\nimport clsx from \"clsx\";\nimport { createEffect, createSignal, onCleanup, Show } from \"solid-js\";\nimport { Dynamic } from \"solid-js/web\";\nconst $ = createComponentFactory()({\n name: \"ModalUnstyled\",\n propDefaults: ({ set }) => set({\n closeAfterTransition: false,\n component: \"div\",\n components: {},\n componentsProps: {},\n disableAutoFocus: false,\n disableEnforceFocus: false,\n disableEscapeKeyDown: false,\n disablePortal: false,\n disableRestoreFocus: false,\n disableScrollLock: false,\n hideBackdrop: false,\n keepMounted: false,\n open: false,\n }),\n selfPropNames: [\n \"BackdropComponent\",\n \"BackdropProps\",\n \"children\",\n \"classes\",\n \"closeAfterTransition\",\n \"components\",\n \"componentsProps\",\n \"container\",\n \"disableAutoFocus\",\n \"disableEnforceFocus\",\n \"disableEscapeKeyDown\",\n \"disablePortal\",\n \"disableRestoreFocus\",\n \"disableScrollLock\",\n \"hideBackdrop\",\n \"keepMounted\",\n \"onBackdropClick\",\n \"onClose\",\n \"open\",\n \"transition\",\n ],\n utilityClass: getModalUtilityClass,\n slotClasses: (ownerState) => ({\n root: [\"root\", !ownerState.open && ownerState.exited && \"hidden\"],\n }),\n});\nfunction getContainer(container) {\n return typeof container === \"function\"\n ? container()\n : container;\n}\n// A modal manager used to track and manage the state of open Modals.\n// Modals don't open on the server so this won't conflict with concurrent requests.\nconst defaultManager = new ModalManager();\n/**\n * Modal is a lower-level construct that is leveraged by the following components:\n *\n * * [Dialog](https://mui.com/api/dialog/)\n * * [Drawer](https://mui.com/api/drawer/)\n * * [Menu](https://mui.com/api/menu/)\n * * [Popover](https://mui.com/api/popover/)\n *\n * If you are creating a modal dialog, you probably want to use the [Dialog](https://mui.com/api/dialog/) component\n * rather than directly using Modal.\n *\n * This component shares many concepts with [react-overlays](https://react-bootstrap.github.io/react-overlays/#modals).\n *\n * Demos:\n *\n * - [Modal](https://mui.com/components/modal/)\n *\n * API:\n *\n * - [ModalUnstyled API](https://mui.com/api/modal-unstyled/)\n */\nconst ModalUnstyled = $.component(function ModalUnstyled({ allProps, otherProps, classes, props, }) {\n const element = createElementRef(otherProps);\n const manager = defaultManager;\n const getDoc = () => ownerDocument(element.ref);\n const [exited, setExited] = createSignal(true);\n const handleMounted = () => {\n manager.mount(element, { disableScrollLock: props.disableScrollLock });\n // Fix a bug on Chrome where the scroll isn't initially 0.\n element.ref.scrollTop = 0;\n };\n const handleOpen = () => {\n const resolvedContainer = getContainer(props.container) || getDoc().body;\n manager.add(element, resolvedContainer);\n // The element was already mounted.\n if (element.ref) {\n handleMounted();\n }\n };\n const isTopModal = () => manager.isTopModal(element);\n const handleClose = () => manager.remove(element);\n onCleanup(handleClose);\n createEffect((firstTime) => {\n if (firstTime) {\n if (props.open)\n handleOpen();\n if (props.open && isTopModal()) {\n handleMounted();\n }\n else {\n if (element.ref)\n ariaHidden(element.ref, true);\n }\n }\n else {\n if (props.open) {\n handleOpen();\n }\n else if (!props.transition || !props.closeAfterTransition) {\n handleClose();\n }\n }\n return false;\n }, true);\n const handleBackdropClick = (event) => {\n if (event.target !== event.currentTarget) {\n return;\n }\n props.onBackdropClick?.(event);\n props.onClose?.(event, \"backdropClick\");\n };\n const handleKeyDown = (event) => {\n if (typeof otherProps.onKeyDown === \"function\")\n otherProps.onKeyDown?.(event);\n // The handler doesn't take event.defaultPrevented into account:\n //\n // event.preventDefault() is meant to stop default behaviors like\n // clicking a checkbox to check it, hitting a button to submit a form,\n // and hitting left arrow to move the cursor in a text input etc.\n // Only special HTML elements have these default behaviors.\n if (event.key !== \"Escape\" || !isTopModal()) {\n return;\n }\n if (!props.disableEscapeKeyDown) {\n // Swallow the event, in case someone is listening for the escape key on the body.\n event.stopPropagation();\n props.onClose?.(event, \"escapeKeyDown\");\n }\n };\n const Root = () => props.components.Root || otherProps.component;\n const rootProps = () => props.componentsProps.root || {};\n const noMount = () => !props.keepMounted && !props.open && (!props.transition || exited());\n return (<TransitionContext.Provider value={{\n get in() {\n return !!props.transition && props.open;\n },\n onEnter: () => {\n props.transition && setExited(false);\n },\n onExited: () => {\n if (props.transition) {\n setExited(true);\n if (props.closeAfterTransition)\n handleClose();\n }\n },\n }}>\n <Show when={!noMount()}>\n <Portal container={props.container} disablePortal={props.disablePortal}>\n {/*\n * Marking an element with the role presentation indicates to assistive technology\n * that this element should be ignored; it exists to support the web application and\n * is not meant for humans to interact with directly.\n * https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-static-element-interactions.md\n */}\n <Dynamic {...otherProps} component={Root()} role=\"presentation\" {...rootProps()} {...(!isHostComponent(Root()) && {\n //component: baseProps.component,\n ownerState: allProps,\n })} onKeyDown={handleKeyDown} className={clsx(classes.root, rootProps().className, otherProps.className)} ref={element}>\n <Show when={!props.hideBackdrop && !!props.BackdropComponent}>\n <Dynamic component={props.BackdropComponent} open={props.open} onClick={handleBackdropClick} {...(props.BackdropProps ?? {})}/>\n </Show>\n {props.children}\n </Dynamic>\n </Portal>\n </Show>\n </TransitionContext.Provider>);\n});\nexport default ModalUnstyled;\n","import Backdrop from \"../Backdrop\";\nimport styled from \"../styles/styled\";\nimport { modalUnstyledClasses } from \"@suid/base/ModalUnstyled\";\nimport ModalUnstyled from \"@suid/base/ModalUnstyled\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport isHostComponent from \"@suid/base/utils/isHostComponent\";\nimport { createSignal, splitProps, mergeProps } from \"solid-js\";\nconst $ = createComponentFactory()({\n name: \"MuiModal\",\n selfPropNames: [\"BackdropComponent\", \"BackdropProps\"],\n});\nexport const modalClasses = modalUnstyledClasses;\nconst ModalRoot = styled(\"div\", {\n name: \"MuiModal\",\n slot: \"Root\",\n overridesResolver: (props, styles) => {\n const { ownerState } = props;\n return [\n styles.root,\n !ownerState.open && ownerState.exited && styles.hidden,\n ];\n },\n})(({ theme, ownerState }) => ({\n position: \"fixed\",\n zIndex: theme.zIndex.modal,\n right: 0,\n bottom: 0,\n top: 0,\n left: 0,\n ...(!ownerState.open &&\n ownerState.exited && {\n visibility: \"hidden\",\n }),\n}));\nconst ModalBackdrop = styled(Backdrop, {\n name: \"MuiModal\",\n slot: \"Backdrop\",\n overridesResolver: (props, styles) => {\n return styles.backdrop;\n },\n})({\n zIndex: -1,\n});\n/**\n * Modal is a lower-level construct that is leveraged by the following components:\n *\n * * [Dialog](https://mui.com/api/dialog/)\n * * [Drawer](https://mui.com/api/drawer/)\n * * [Menu](https://mui.com/api/menu/)\n * * [Popover](https://mui.com/api/popover/)\n *\n * If you are creating a modal dialog, you probably want to use the [Dialog](https://mui.com/api/dialog/) component\n * rather than directly using Modal.\n *\n * This component shares many concepts with [react-overlays](https://react-bootstrap.github.io/react-overlays/#modals).\n *\n * Demos:\n *\n * - [Modal](https://mui.com/components/modal/)\n *\n * API:\n *\n * - [Modal API](https://mui.com/api/modal/)\n */\nconst Modal = $.defineComponent(function Modal(inProps) {\n const props = $.useThemeProps({ props: inProps });\n const [, other] = splitProps(props, [\n \"BackdropComponent\",\n \"closeAfterTransition\",\n \"children\",\n \"components\",\n \"componentsProps\",\n \"disableAutoFocus\",\n \"disableEnforceFocus\",\n \"disableEscapeKeyDown\",\n \"disablePortal\",\n \"disableRestoreFocus\",\n \"disableScrollLock\",\n \"hideBackdrop\",\n \"keepMounted\",\n ]);\n const baseProps = mergeProps({\n BackdropComponent: ModalBackdrop,\n closeAfterTransition: false,\n components: {},\n componentsProps: {},\n disableAutoFocus: false,\n disableEnforceFocus: false,\n disableEscapeKeyDown: false,\n disablePortal: false,\n disableRestoreFocus: false,\n disableScrollLock: false,\n hideBackdrop: false,\n keepMounted: false,\n }, props);\n const [exited] = createSignal(true);\n const commonProps = {\n get closeAfterTransition() {\n return baseProps.closeAfterTransition;\n },\n get disableAutoFocus() {\n return baseProps.disableAutoFocus;\n },\n get disableEnforceFocus() {\n return baseProps.disableEnforceFocus;\n },\n get disableEscapeKeyDown() {\n return baseProps.disableEscapeKeyDown;\n },\n get disablePortal() {\n return baseProps.disablePortal;\n },\n get disableRestoreFocus() {\n return baseProps.disableRestoreFocus;\n },\n get disableScrollLock() {\n return baseProps.disableScrollLock;\n },\n get hideBackdrop() {\n return baseProps.hideBackdrop;\n },\n get keepMounted() {\n return baseProps.keepMounted;\n },\n };\n const ownerState = mergeProps(props, commonProps, {\n get exited() {\n return exited();\n },\n });\n return (<ModalUnstyled components={mergeProps({ Root: ModalRoot }, () => baseProps.components)} componentsProps={{\n get root() {\n return mergeProps(() => baseProps.componentsProps.root || {}, () => !baseProps.components.Root ||\n (!isHostComponent(baseProps.components.Root) && {\n get ownerState() {\n return (baseProps.componentsProps.root?.ownerState || {});\n },\n }) ||\n {});\n },\n }} BackdropComponent={baseProps.BackdropComponent} {...other} classes={ownerState.classes} {...commonProps}>\n {props.children}\n </ModalUnstyled>);\n});\nexport default Modal;\n","import { generateUtilityClass, generateUtilityClasses } from \"@suid/base\";\nexport function getCardContentUtilityClass(slot) {\n return generateUtilityClass(\"MuiCardContent\", slot);\n}\nconst cardContentClasses = generateUtilityClasses(\"MuiCardContent\", [\"root\"]);\nexport default cardContentClasses;\n","import styled from \"../styles/styled\";\nimport { getCardContentUtilityClass } from \"./cardContentClasses\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport clsx from \"clsx\";\nconst $ = createComponentFactory()({\n name: \"MuiContent\",\n selfPropNames: [\"children\", \"classes\"],\n propDefaults: ({ set }) => set({\n component: \"div\",\n }),\n utilityClass: getCardContentUtilityClass,\n slotClasses: () => ({\n root: [\"root\"],\n }),\n});\nconst CardContentRoot = styled(\"div\", {\n name: \"MuiCardContent\",\n slot: \"Root\",\n overridesResolver: (props, styles) => styles.root,\n})(() => {\n return {\n padding: 16,\n \"&:last-child\": {\n paddingBottom: 24,\n },\n };\n});\n/**\n *\n * Demos:\n *\n * - [Cards](https://mui.com/components/cards/)\n *\n * API:\n *\n * - [CardContent API](https://mui.com/api/card-content/)\n */\nconst CardContent = $.component(function CardContent({ allProps, classes, otherProps, props, }) {\n return (<CardContentRoot {...otherProps} ownerState={allProps} className={clsx(classes.root, otherProps.className)}>\n {props.children}\n </CardContentRoot>);\n});\nexport default CardContent;\n","import useTheme from \"../styles/useTheme\";\nimport { reflow, getTransitionProps } from \"../transitions/utils\";\nimport Transition from \"@suid/base/Transition\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport { children, onCleanup } from \"solid-js\";\nconst $ = createComponentFactory()({\n name: \"MuiGrow\",\n propDefaults: ({ set }) => set({\n appear: true,\n timeout: \"auto\",\n }),\n selfPropNames: [\"appear\", \"children\", \"easing\", \"in\", \"ref\", \"timeout\"],\n});\nfunction getScale(value) {\n return `scale(${value}, ${value ** 2})`;\n}\nconst styles = {\n entering: {\n opacity: 1,\n transform: getScale(1),\n },\n entered: {\n opacity: 1,\n transform: \"none\",\n },\n};\n/**\n * The Grow transition is used by the [Tooltip](/components/tooltips/) and\n * [Popover](/components/popover/) components.\n * It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.\n */\nconst Grow = $.component(function Grow({ props, otherProps }) {\n const autoTimeout = { current: undefined };\n const theme = useTheme();\n const resolved = children(() => props.children);\n let timer;\n onCleanup(() => timer && clearTimeout(timer));\n return (<Transition {...otherProps} appear={props.appear} in={props.in} onEnter={() => {\n const node = resolved();\n reflow(node); // So the animation always start from the start.\n const { duration: transitionDuration, delay, easing: transitionTimingFunction, } = getTransitionProps({\n style: otherProps.style,\n timeout: props.timeout,\n easing: props.easing,\n }, {\n mode: \"enter\",\n });\n let duration;\n if (props.timeout === \"auto\") {\n duration = theme.transitions.getAutoHeightDuration(node.clientHeight);\n autoTimeout.current = duration;\n }\n else {\n duration = transitionDuration;\n }\n node.style.transition = [\n theme.transitions.create(\"opacity\", {\n duration,\n delay,\n }),\n theme.transitions.create(\"transform\", {\n duration: Number(duration) * 0.666,\n delay,\n easing: transitionTimingFunction,\n }),\n ].join(\",\");\n otherProps.onEnter?.();\n }} onExit={() => {\n const node = resolved();\n const { duration: transitionDuration, delay, easing: transitionTimingFunction, } = getTransitionProps({\n style: otherProps.style,\n timeout: props.timeout,\n easing: props.easing,\n }, {\n mode: \"exit\",\n });\n let duration;\n if (props.timeout === \"auto\") {\n duration = theme.transitions.getAutoHeightDuration(node.clientHeight);\n autoTimeout.current = duration;\n }\n else {\n duration = transitionDuration;\n }\n node.style.transition = [\n theme.transitions.create(\"opacity\", {\n duration,\n delay,\n }),\n theme.transitions.create(\"transform\", {\n duration: Number(duration) * 0.666,\n delay: delay || Number(duration) * 0.333,\n easing: transitionTimingFunction,\n }),\n ].join(\",\");\n node.style.opacity = \"0\";\n node.style.transform = getScale(0.75);\n otherProps.onExit?.();\n }} addEndListener={(next) => {\n if (props.timeout === \"auto\") {\n timer = setTimeout(next, autoTimeout.current || 0);\n }\n if (otherProps.addEndListener) {\n otherProps.addEndListener(next);\n }\n }} timeout={props.timeout === \"auto\" ? undefined : props.timeout}>\n {(state) => {\n const element = resolved();\n element.style.opacity = \"0\";\n element.style.transform = getScale(0.75);\n if (state === \"exited\" && !props.in) {\n element.style.visibility = \"hidden\";\n }\n else {\n element.style.removeProperty(\"visibility\");\n }\n const style = {\n ...(styles[state] || {}),\n ...(otherProps.style || {}),\n };\n for (const name in style) {\n const value = style[name];\n if (value === undefined) {\n element.style.removeProperty(name);\n }\n else {\n element.style[name] = value;\n }\n }\n return element;\n }}\n </Transition>);\n});\nexport default Grow;\n","import generateUtilityClass from \"@suid/base/generateUtilityClass\";\nimport generateUtilityClasses from \"@suid/base/generateUtilityClasses\";\nexport function getPopoverUtilityClass(slot) {\n return generateUtilityClass(\"MuiPopover\", slot);\n}\nconst popoverClasses = generateUtilityClasses(\"MuiPopover\", [\n \"root\",\n \"paper\",\n]);\nexport default popoverClasses;\n","// Corresponds to 10 frames at 60 Hz.\n// A few bytes payload overhead when lodash/debounce is ~3 kB and debounce ~300 B.\nexport default function debounce(func, wait = 166) {\n let timeout;\n function debounced(...args) {\n const later = () => {\n // eslint-disable-next-line prefer-spread\n func.apply(null, args);\n };\n clearTimeout(timeout);\n timeout = setTimeout(later, wait);\n }\n debounced.clear = () => {\n clearTimeout(timeout);\n };\n return debounced;\n}\n","import Grow from \"../Grow\";\nimport Modal from \"../Modal\";\nimport Paper from \"../Paper\";\nimport styled from \"../styles/styled\";\nimport { getPopoverUtilityClass } from \"./popoverClasses\";\nimport createComponentFactory from \"@suid/base/createComponentFactory\";\nimport createRef from \"@suid/system/createRef\";\nimport debounce from \"@suid/utils/debounce\";\nimport ownerDocument from \"@suid/utils/ownerDocument\";\nimport ownerWindow from \"@suid/utils/ownerWindow\";\nimport clsx from \"clsx\";\nimport { createEffect, on, splitProps, mergeProps } from \"solid-js\";\nconst $ = createComponentFactory()({\n name: \"MuiPopover\",\n selfPropNames: [\n \"action\",\n \"anchorEl\",\n \"anchorOrigin\",\n \"anchorPosition\",\n \"anchorReference\",\n \"children\",\n \"classes\",\n \"container\",\n \"elevation\",\n \"marginThreshold\",\n \"onClose\",\n \"open\",\n \"PaperProps\",\n \"transformOrigin\",\n \"TransitionComponent\",\n \"transitionDuration\",\n \"TransitionProps\",\n ],\n utilityClass: getPopoverUtilityClass,\n slotClasses: () => ({\n root: [\"root\"],\n paper: [\"paper\"],\n }),\n});\nexport function getOffsetTop(rect, vertical) {\n let offset = 0;\n if (typeof vertical === \"number\") {\n offset = vertical;\n }\n else if (vertical === \"center\") {\n offset = rect.height / 2;\n }\n else if (vertical === \"bottom\") {\n offset = rect.height;\n }\n return offset;\n}\nexport function getOffsetLeft(rect, horizontal) {\n let offset = 0;\n if (typeof horizontal === \"number\") {\n offset = horizontal;\n }\n else if (horizontal === \"center\") {\n offset = rect.width / 2;\n }\n else if (horizontal === \"right\") {\n offset = rect.width;\n }\n return offset;\n}\nfunction getTransformOriginValue(transformOrigin) {\n return [transformOrigin.horizontal, transformOrigin.vertical]\n .map((n) => (typeof n === \"number\" ? `${n}px` : n))\n .join(\" \");\n}\nfunction resolveAnchorEl(anchorEl) {\n return typeof anchorEl === \"function\" ? anchorEl() : anchorEl;\n}\nconst PopoverRoot = styled(Modal, {\n name: \"MuiPopover\",\n slot: \"Root\",\n overridesResolver: (props, styles) => styles.root,\n})({});\nconst PopoverPaper = styled(Paper, {\n name: \"MuiPopover\",\n slot: \"Paper\",\n overridesResolver: (props, styles) => styles.paper,\n})({\n position: \"absolute\",\n overflowY: \"auto\",\n overflowX: \"hidden\",\n // So we see the popover when it's empty.\n // It's most likely on issue on userland.\n minWidth: 16,\n minHeight: 16,\n maxWidth: \"calc(100% - 32px)\",\n maxHeight: \"calc(100% - 32px)\",\n // We disable the focus ring for mouse, touch and keyboard users.\n outline: 0,\n});\nconst Popover = $.defineComponent(function Popover(inProps) {\n const props = $.useThemeProps({ props: inProps });\n const [, other] = splitProps(props, [\n \"action\",\n \"anchorEl\",\n \"anchorOrigin\",\n \"anchorPosition\",\n \"anchorReference\",\n \"children\",\n \"className\",\n \"container\",\n \"elevation\",\n \"marginThreshold\",\n \"open\",\n \"PaperProps\",\n \"transformOrigin\",\n \"TransitionComponent\",\n \"transitionDuration\",\n \"TransitionProps\",\n ]);\n const baseProps = mergeProps({\n anchorOrigin: {\n vertical: \"top\",\n horizontal: \"left\",\n },\n anchorReference: \"anchorEl\",\n elevation: 8,\n marginThreshold: 16,\n PaperProps: {},\n transformOrigin: {\n vertical: \"top\",\n horizontal: \"left\",\n },\n TransitionComponent: Grow,\n transitionDuration: \"auto\",\n }, props);\n const [, TransitionProps] = splitProps(mergeProps(() => props.TransitionProps || {}), [\"onEntering\"]);\n const paperRef = createRef(() => baseProps.PaperProps.ref);\n const ownerState = mergeProps(props, {\n get anchorOrigin() {\n return baseProps.anchorOrigin;\n },\n get anchorReference() {\n return baseProps.anchorReference;\n },\n get elevation() {\n return baseProps.elevation;\n },\n get marginThreshold() {\n return baseProps.marginThreshold;\n },\n get PaperProps() {\n return baseProps.PaperProps;\n },\n get transformOrigin() {\n return baseProps.transformOrigin;\n },\n get TransitionComponent() {\n return baseProps.TransitionComponent;\n },\n get transitionDuration() {\n return baseProps.transitionDuration;\n },\n TransitionProps: TransitionProps,\n });\n const classes = $.useClasses(ownerState);\n // Returns the top/left offset of the position\n // to attach to on the anchor element (or body if none is provided)\n const getAnchorOffset = () => {\n if (baseProps.anchorReference === \"anchorPosition\") {\n if (process.env.NODE_ENV !== \"production\") {\n if (!props.anchorPosition) {\n console.error(\"MUI: You need to provide a `anchorPosition` prop when using \" +\n '<Popover anchorReference=\"anchorPosition\" />.');\n }\n }\n return props.anchorPosition;\n }\n const resolvedAnchorEl = resolveAnchorEl(props.anchorEl);\n // If an anchor element wasn't provided, just use the parent body element of this Popover\n const anchorElement = resolvedAnchorEl && resolvedAnchorEl.nodeType === 1\n ? resolvedAnchorEl\n : ownerDocument(paperRef.current).body;\n const anchorRect = anchorElement.getBoundingClientRect();\n if (process.env.NODE_ENV !== \"production\") {\n const box = anchorElement.getBoundingClientRect();\n if (process.env.NODE_ENV !== \"test\" &&\n box.top === 0 &&\n box.left === 0 &&\n box.right === 0 &&\n box.bottom === 0) {\n console.warn([\n \"MUI: The `anchorEl` prop provided to the component is invalid.\",\n \"The anchor element should be part of the document layout.\",\n \"Make sure the element is present in the document or that it's not display none.\",\n ].join(\"\\n\"));\n }\n }\n return {\n top: anchorRect.top +\n getOffsetTop(anchorRect, baseProps.anchorOrigin.vertical),\n left: anchorRect.left +\n getOffsetLeft(anchorRect, baseProps.anchorOrigin.horizontal),\n };\n };\n // Returns the base transform origin using the element\n const getTransformOrigin = (elemRect) => {\n return {\n vertical: getOffsetTop(elemRect, baseProps.transformOrigin.vertical),\n horizontal: getOffsetLeft(elemRect, baseProps.transformOrigin.horizontal),\n };\n };\n const getPositioningStyle = (element) => {\n const elemRect = {\n width: element.offsetWidth,\n height: element.offsetHeight,\n };\n // Get the transform origin point on the element itself\n const elemTransformOrigin = getTransformOrigin(elemRect);\n if (baseProps.anchorReference === \"none\") {\n return {\n top: null,\n left: null,\n transformOrigin: getTransformOriginValue(elemTransformOrigin),\n };\n }\n // Get the offset of the anchoring element\n const anchorOffset = getAnchorOffset();\n // Calculate element positioning\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n let top = anchorOffset.top - elemTransformOrigin.vertical;\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n let left = anchorOffset.left - elemTransformOrigin.horizontal;\n const bottom = top + elemRect.height;\n const right = left + elemRect.width;\n // Use the parent window of the anchorEl if provided\n const containerWindow = ownerWindow(resolveAnchorEl(props.anchorEl));\n // Window thresholds taking required margin into account\n const heightThreshold = containerWindow.innerHeight - baseProps.marginThreshold;\n const widthThreshold = containerWindow.innerWidth - baseProps.marginThreshold;\n // Check if the vertical axis needs shifting\n if (top < baseProps.marginThreshold) {\n const diff = top - baseProps.marginThreshold;\n top -= diff;\n elemTransformOrigin.vertical += diff;\n }\n else if (bottom > heightThreshold) {\n const diff = bottom - heightThreshold;\n top -= diff;\n elemTransformOrigin.vertical += diff;\n }\n if (process.env.NODE_ENV !== \"production\") {\n if (elemRect.height > heightThreshold &&\n elemRect.height &&\n heightThreshold) {\n console.error([\n \"MUI: The popover component is too tall.\",\n `Some part of it can not be seen on the screen (${elemRect.height - heightThreshold}px).`,\n \"Please consider adding a `max-height` to improve the user-experience.\",\n ].join(\"\\n\"));\n }\n }\n // Check if the horizontal axis needs shifting\n if (left < baseProps.marginThreshold) {\n const diff = left - baseProps.marginThreshold;\n left -= diff;\n elemTransformOrigin.horizontal += diff;\n }\n else if (right > widthThreshold) {\n const diff = right - widthThreshold;\n left -= diff;\n elemTransformOrigin.horizontal += diff;\n }\n return {\n top: `${Math.round(top)}px`,\n left: `${Math.round(left)}px`,\n transformOrigin: getTransformOriginValue(elemTransformOrigin),\n };\n };\n const setPositioningStyles = () => {\n const element = paperRef.current;\n if (!element) {\n return;\n }\n const positioning = getPositioningStyle(element);\n if (positioning.top !== null) {\n element.style.top = positioning.top;\n }\n if (positioning.left !== null) {\n element.style.left = positioning.left;\n }\n element.style.transformOrigin = positioning.transformOrigin;\n };\n const handleEntering = () => {\n if (props.TransitionProps?.onEntering) {\n props.TransitionProps?.onEntering();\n }\n setPositioningStyles();\n };\n createEffect(() => {\n if (props.open) {\n setPositioningStyles();\n }\n });\n if (typeof props.action === \"function\") {\n props.action({\n updatePosition: () => {\n if (props.open)\n setPositioningStyles();\n },\n });\n }\n createEffect(on(() => [props.anchorEl, props.open, setPositioningStyles], () => {\n if (!props.open) {\n return undefined;\n }\n const handleResize = debounce(() => {\n setPositioningStyles();\n });\n const containerWindow = ownerWindow(resolveAnchorEl(props.anchorEl));\n containerWindow.addEventListener(\"resize\", handleResize);\n return () => {\n handleResize.clear();\n containerWindow.removeEventListener(\"resize\", handleResize);\n };\n }));\n const transitionDuration = () => {\n let transitionDuration = props.transitionDuration;\n if (props.transitionDuration === \"auto\" &&\n !props.TransitionComponent.muiSupportAuto) {\n transitionDuration = undefined;\n }\n return transitionDuration;\n };\n // If the container prop is provided, use that\n // If the anchorEl prop is provided, use its parent body element as the container\n // If neither are provided let the Modal take care of choosing the container\n const container = () => props.container ||\n (props.anchorEl\n ? ownerDocument(resolveAnchorEl(props.anchorEl)).body\n : undefined);\n return (<PopoverRoot BackdropProps={{ invisible: true }} className={clsx(classes.root, props.className)} container={container()} open={props.open} ownerState={ownerState} {...other}>\n <baseProps.TransitionComponent appear in={props.open} onEntering={handleEntering} timeout={transitionDuration()} {...TransitionProps}>\n <PopoverPaper elevation={baseProps.elevation} {...baseProps.PaperProps} ref={paperRef} className={clsx(classes.paper, baseProps.PaperProps.className)}>\n {props.children}\n </PopoverPaper>\n </baseProps.TransitionComponent>\n </PopoverRoot>);\n});\nexport default Popover;\n"],"names":["$","createComponentFactory","name","selfPropNames","utilityClass","getAppBarUtilityClass","propDefaults","set","component","color","enableColorOnDark","position","slotClasses","ownerState","root","capitalize","AppBarRoot","styled","Paper","slot","overridesResolver","props","styles","theme","backgroundColorDefault","palette","mode","grey","display","flexDirection","width","boxSizing","flexShrink","zIndex","appBar","top","left","right","backgroundColor","getContrastText","main","contrastText","undefined","backgroundImage","AppBar","allProps","classes","otherProps","_$createComponent","_$mergeProps","clsx","className","disableGutters","variant","getToolbarUtilityClass","ToolbarRoot","gutters","alignItems","paddingLeft","spacing","paddingRight","breakpoints","up","minHeight","mixins","toolbar","Toolbar","children","path","displayName","timeout","exit","enter","appear","inProps","mergeProps","in","mountOnEnter","unmountOnExit","timeouts","createMemo","resolveTransitionTimeout","initialStatus","status","setStatus","createSignal","enteredTimeout","exitedTimeout","firstStatusChange","ms","cb","next","setTimeout","stopped","stop","clearTimeout","addEndListener","result","on","v","onEntering","onTransitionEnd","onEntered","onExiting","onExited","createEffect","firstTime","untrack","onEnter","onExit","onCleanup","useTheme","transitions","duration","enteringScreen","leavingScreen","fadeSelfPropNames","Fade","element","createElementRef","c","context","useContext","TransitionContext","e","reflow","transitionProps","getTransitionProps","style","easing","transition","create","state","visibility","removeProperty","opacity","components","componentsProps","invisible","getBackdropUtilityClass","BackdropUnstyled","Root","rootProps","isHostComponent","open","BackdropRoot","justifyContent","bottom","WebkitTapHighlightColor","Backdrop","fadeProps","backdropProps","splitProps","transitionDuration","container","document","body","disablePortal","SolidPortal","closeAfterTransition","disableAutoFocus","disableEnforceFocus","disableEscapeKeyDown","disableRestoreFocus","disableScrollLock","hideBackdrop","keepMounted","getModalUtilityClass","exited","defaultManager","ModalManager","ModalUnstyled","manager","getDoc","ownerDocument","ref","setExited","handleMounted","mount","scrollTop","handleOpen","resolvedContainer","getContainer","add","isTopModal","handleClose","remove","ariaHidden","handleBackdropClick","event","target","currentTarget","onBackdropClick","onClose","handleKeyDown","onKeyDown","key","stopPropagation","noMount","Dynamic","BackdropComponent","BackdropProps","ModalRoot","hidden","modal","ModalBackdrop","backdrop","Modal","defineComponent","useThemeProps","other","baseProps","commonProps","getCardContentUtilityClass","CardContentRoot","padding","paddingBottom","CardContent","value","entering","transform","getScale","entered","Grow","autoTimeout","current","resolved","timer","node","delay","transitionTimingFunction","getAutoHeightDuration","clientHeight","Number","join","getPopoverUtilityClass","paper","rect","vertical","offset","height","horizontal","transformOrigin","map","n","anchorEl","PopoverRoot","PopoverPaper","overflowY","overflowX","minWidth","maxWidth","maxHeight","outline","Popover","anchorOrigin","anchorReference","elevation","marginThreshold","PaperProps","TransitionComponent","TransitionProps","paperRef","createRef","useClasses","getAnchorOffset","anchorPosition","resolvedAnchorEl","resolveAnchorEl","anchorRect","anchorElement","nodeType","getBoundingClientRect","getOffsetTop","getOffsetLeft","getTransformOrigin","elemRect","getPositioningStyle","offsetWidth","offsetHeight","elemTransformOrigin","getTransformOriginValue","anchorOffset","containerWindow","ownerWindow","heightThreshold","innerHeight","widthThreshold","innerWidth","diff","Math","round","setPositioningStyles","positioning","handleEntering","action","updatePosition","handleResize","debounce","addEventListener","clear","removeEventListener","muiSupportAuto"],"mappings":"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"}