{"version":3,"file":"DialogTitle-C1UIo1cg.js","sources":["../../../node_modules/@mui/material/Dialog/dialogClasses.js","../../../node_modules/@mui/material/Dialog/DialogContext.js","../../../node_modules/@mui/material/Dialog/Dialog.js","../../../node_modules/@mui/material/DialogActions/dialogActionsClasses.js","../../../node_modules/@mui/material/DialogActions/DialogActions.js","../../../node_modules/@mui/material/DialogContent/dialogContentClasses.js","../../../node_modules/@mui/material/DialogTitle/dialogTitleClasses.js","../../../node_modules/@mui/material/DialogContent/DialogContent.js","../../../node_modules/@mui/material/DialogTitle/DialogTitle.js"],"sourcesContent":["import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getDialogUtilityClass(slot) {\n return generateUtilityClass('MuiDialog', slot);\n}\nconst dialogClasses = generateUtilityClasses('MuiDialog', ['root', 'scrollPaper', 'scrollBody', 'container', 'paper', 'paperScrollPaper', 'paperScrollBody', 'paperWidthFalse', 'paperWidthXs', 'paperWidthSm', 'paperWidthMd', 'paperWidthLg', 'paperWidthXl', 'paperFullWidth', 'paperFullScreen']);\nexport default dialogClasses;","import * as React from 'react';\nconst DialogContext = /*#__PURE__*/React.createContext({});\nif (process.env.NODE_ENV !== 'production') {\n DialogContext.displayName = 'DialogContext';\n}\nexport default DialogContext;","'use client';\n\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nconst _excluded = [\"aria-describedby\", \"aria-labelledby\", \"BackdropComponent\", \"BackdropProps\", \"children\", \"className\", \"disableEscapeKeyDown\", \"fullScreen\", \"fullWidth\", \"maxWidth\", \"onBackdropClick\", \"onClick\", \"onClose\", \"open\", \"PaperComponent\", \"PaperProps\", \"scroll\", \"TransitionComponent\", \"transitionDuration\", \"TransitionProps\"];\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport composeClasses from '@mui/utils/composeClasses';\nimport useId from '@mui/utils/useId';\nimport capitalize from '../utils/capitalize';\nimport Modal from '../Modal';\nimport Fade from '../Fade';\nimport Paper from '../Paper';\nimport { useDefaultProps } from '../DefaultPropsProvider';\nimport styled from '../styles/styled';\nimport dialogClasses, { getDialogUtilityClass } from './dialogClasses';\nimport DialogContext from './DialogContext';\nimport Backdrop from '../Backdrop';\nimport useTheme from '../styles/useTheme';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst DialogBackdrop = styled(Backdrop, {\n name: 'MuiDialog',\n slot: 'Backdrop',\n overrides: (props, styles) => styles.backdrop\n})({\n // Improve scrollable dialog support.\n zIndex: -1\n});\nconst useUtilityClasses = ownerState => {\n const {\n classes,\n scroll,\n maxWidth,\n fullWidth,\n fullScreen\n } = ownerState;\n const slots = {\n root: ['root'],\n container: ['container', `scroll${capitalize(scroll)}`],\n paper: ['paper', `paperScroll${capitalize(scroll)}`, `paperWidth${capitalize(String(maxWidth))}`, fullWidth && 'paperFullWidth', fullScreen && 'paperFullScreen']\n };\n return composeClasses(slots, getDialogUtilityClass, classes);\n};\nconst DialogRoot = styled(Modal, {\n name: 'MuiDialog',\n slot: 'Root',\n overridesResolver: (props, styles) => styles.root\n})({\n '@media print': {\n // Use !important to override the Modal inline-style.\n position: 'absolute !important'\n }\n});\nconst DialogContainer = styled('div', {\n name: 'MuiDialog',\n slot: 'Container',\n overridesResolver: (props, styles) => {\n const {\n ownerState\n } = props;\n return [styles.container, styles[`scroll${capitalize(ownerState.scroll)}`]];\n }\n})(({\n ownerState\n}) => _extends({\n height: '100%',\n '@media print': {\n height: 'auto'\n },\n // We disable the focus ring for mouse, touch and keyboard users.\n outline: 0\n}, ownerState.scroll === 'paper' && {\n display: 'flex',\n justifyContent: 'center',\n alignItems: 'center'\n}, ownerState.scroll === 'body' && {\n overflowY: 'auto',\n overflowX: 'hidden',\n textAlign: 'center',\n '&::after': {\n content: '\"\"',\n display: 'inline-block',\n verticalAlign: 'middle',\n height: '100%',\n width: '0'\n }\n}));\nconst DialogPaper = styled(Paper, {\n name: 'MuiDialog',\n slot: 'Paper',\n overridesResolver: (props, styles) => {\n const {\n ownerState\n } = props;\n return [styles.paper, styles[`scrollPaper${capitalize(ownerState.scroll)}`], styles[`paperWidth${capitalize(String(ownerState.maxWidth))}`], ownerState.fullWidth && styles.paperFullWidth, ownerState.fullScreen && styles.paperFullScreen];\n }\n})(({\n theme,\n ownerState\n}) => _extends({\n margin: 32,\n position: 'relative',\n overflowY: 'auto',\n // Fix IE11 issue, to remove at some point.\n '@media print': {\n overflowY: 'visible',\n boxShadow: 'none'\n }\n}, ownerState.scroll === 'paper' && {\n display: 'flex',\n flexDirection: 'column',\n maxHeight: 'calc(100% - 64px)'\n}, ownerState.scroll === 'body' && {\n display: 'inline-block',\n verticalAlign: 'middle',\n textAlign: 'left' // 'initial' doesn't work on IE11\n}, !ownerState.maxWidth && {\n maxWidth: 'calc(100% - 64px)'\n}, ownerState.maxWidth === 'xs' && {\n maxWidth: theme.breakpoints.unit === 'px' ? Math.max(theme.breakpoints.values.xs, 444) : `max(${theme.breakpoints.values.xs}${theme.breakpoints.unit}, 444px)`,\n [`&.${dialogClasses.paperScrollBody}`]: {\n [theme.breakpoints.down(Math.max(theme.breakpoints.values.xs, 444) + 32 * 2)]: {\n maxWidth: 'calc(100% - 64px)'\n }\n }\n}, ownerState.maxWidth && ownerState.maxWidth !== 'xs' && {\n maxWidth: `${theme.breakpoints.values[ownerState.maxWidth]}${theme.breakpoints.unit}`,\n [`&.${dialogClasses.paperScrollBody}`]: {\n [theme.breakpoints.down(theme.breakpoints.values[ownerState.maxWidth] + 32 * 2)]: {\n maxWidth: 'calc(100% - 64px)'\n }\n }\n}, ownerState.fullWidth && {\n width: 'calc(100% - 64px)'\n}, ownerState.fullScreen && {\n margin: 0,\n width: '100%',\n maxWidth: '100%',\n height: '100%',\n maxHeight: 'none',\n borderRadius: 0,\n [`&.${dialogClasses.paperScrollBody}`]: {\n margin: 0,\n maxWidth: '100%'\n }\n}));\n\n/**\n * Dialogs are overlaid modal paper based components with a backdrop.\n */\nconst Dialog = /*#__PURE__*/React.forwardRef(function Dialog(inProps, ref) {\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiDialog'\n });\n const theme = useTheme();\n const defaultTransitionDuration = {\n enter: theme.transitions.duration.enteringScreen,\n exit: theme.transitions.duration.leavingScreen\n };\n const {\n 'aria-describedby': ariaDescribedby,\n 'aria-labelledby': ariaLabelledbyProp,\n BackdropComponent,\n BackdropProps,\n children,\n className,\n disableEscapeKeyDown = false,\n fullScreen = false,\n fullWidth = false,\n maxWidth = 'sm',\n onBackdropClick,\n onClick,\n onClose,\n open,\n PaperComponent = Paper,\n PaperProps = {},\n scroll = 'paper',\n TransitionComponent = Fade,\n transitionDuration = defaultTransitionDuration,\n TransitionProps\n } = props,\n other = _objectWithoutPropertiesLoose(props, _excluded);\n const ownerState = _extends({}, props, {\n disableEscapeKeyDown,\n fullScreen,\n fullWidth,\n maxWidth,\n scroll\n });\n const classes = useUtilityClasses(ownerState);\n const backdropClick = React.useRef();\n const handleMouseDown = event => {\n // We don't want to close the dialog when clicking the dialog content.\n // Make sure the event starts and ends on the same DOM element.\n backdropClick.current = event.target === event.currentTarget;\n };\n const handleBackdropClick = event => {\n if (onClick) {\n onClick(event);\n }\n\n // Ignore the events not coming from the \"backdrop\".\n if (!backdropClick.current) {\n return;\n }\n backdropClick.current = null;\n if (onBackdropClick) {\n onBackdropClick(event);\n }\n if (onClose) {\n onClose(event, 'backdropClick');\n }\n };\n const ariaLabelledby = useId(ariaLabelledbyProp);\n const dialogContextValue = React.useMemo(() => {\n return {\n titleId: ariaLabelledby\n };\n }, [ariaLabelledby]);\n return /*#__PURE__*/_jsx(DialogRoot, _extends({\n className: clsx(classes.root, className),\n closeAfterTransition: true,\n components: {\n Backdrop: DialogBackdrop\n },\n componentsProps: {\n backdrop: _extends({\n transitionDuration,\n as: BackdropComponent\n }, BackdropProps)\n },\n disableEscapeKeyDown: disableEscapeKeyDown,\n onClose: onClose,\n open: open,\n ref: ref,\n onClick: handleBackdropClick,\n ownerState: ownerState\n }, other, {\n children: /*#__PURE__*/_jsx(TransitionComponent, _extends({\n appear: true,\n in: open,\n timeout: transitionDuration,\n role: \"presentation\"\n }, TransitionProps, {\n children: /*#__PURE__*/_jsx(DialogContainer, {\n className: clsx(classes.container),\n onMouseDown: handleMouseDown,\n ownerState: ownerState,\n children: /*#__PURE__*/_jsx(DialogPaper, _extends({\n as: PaperComponent,\n elevation: 24,\n role: \"dialog\",\n \"aria-describedby\": ariaDescribedby,\n \"aria-labelledby\": ariaLabelledby\n }, PaperProps, {\n className: clsx(classes.paper, PaperProps.className),\n ownerState: ownerState,\n children: /*#__PURE__*/_jsx(DialogContext.Provider, {\n value: dialogContextValue,\n children: children\n })\n }))\n })\n }))\n }));\n});\nprocess.env.NODE_ENV !== \"production\" ? Dialog.propTypes /* remove-proptypes */ = {\n // ┌────────────────────────────── Warning ──────────────────────────────┐\n // │ These PropTypes are generated from the TypeScript type definitions. │\n // │ To update them, edit the d.ts file and run `pnpm proptypes`. │\n // └─────────────────────────────────────────────────────────────────────┘\n /**\n * The id(s) of the element(s) that describe the dialog.\n */\n 'aria-describedby': PropTypes.string,\n /**\n * The id(s) of the element(s) that label the dialog.\n */\n 'aria-labelledby': PropTypes.string,\n /**\n * A backdrop component. This prop enables custom backdrop rendering.\n * @deprecated Use `slots.backdrop` instead. While this prop currently works, it will be removed in the next major version.\n * Use the `slots.backdrop` prop to make your application ready for the next version of Material UI.\n * @default styled(Backdrop, {\n * name: 'MuiModal',\n * slot: 'Backdrop',\n * overridesResolver: (props, styles) => {\n * return styles.backdrop;\n * },\n * })({\n * zIndex: -1,\n * })\n */\n BackdropComponent: PropTypes.elementType,\n /**\n * @ignore\n */\n BackdropProps: PropTypes.object,\n /**\n * Dialog children, usually the included sub-components.\n */\n children: PropTypes.node,\n /**\n * Override or extend the styles applied to the component.\n */\n classes: PropTypes.object,\n /**\n * @ignore\n */\n className: PropTypes.string,\n /**\n * If `true`, hitting escape will not fire the `onClose` callback.\n * @default false\n */\n disableEscapeKeyDown: PropTypes.bool,\n /**\n * If `true`, the dialog is full-screen.\n * @default false\n */\n fullScreen: PropTypes.bool,\n /**\n * If `true`, the dialog stretches to `maxWidth`.\n *\n * Notice that the dialog width grow is limited by the default margin.\n * @default false\n */\n fullWidth: PropTypes.bool,\n /**\n * Determine the max-width of the dialog.\n * The dialog width grows with the size of the screen.\n * Set to `false` to disable `maxWidth`.\n * @default 'sm'\n */\n maxWidth: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl', false]), PropTypes.string]),\n /**\n * Callback fired when the backdrop is clicked.\n * @deprecated Use the `onClose` prop with the `reason` argument to handle the `backdropClick` events.\n */\n onBackdropClick: PropTypes.func,\n /**\n * @ignore\n */\n onClick: PropTypes.func,\n /**\n * Callback fired when the component requests to be closed.\n *\n * @param {object} event The event source of the callback.\n * @param {string} reason Can be: `\"escapeKeyDown\"`, `\"backdropClick\"`.\n */\n onClose: PropTypes.func,\n /**\n * If `true`, the component is shown.\n */\n open: PropTypes.bool.isRequired,\n /**\n * The component used to render the body of the dialog.\n * @default Paper\n */\n PaperComponent: PropTypes.elementType,\n /**\n * Props applied to the [`Paper`](/material-ui/api/paper/) element.\n * @default {}\n */\n PaperProps: PropTypes.object,\n /**\n * Determine the container for scrolling the dialog.\n * @default 'paper'\n */\n scroll: PropTypes.oneOf(['body', 'paper']),\n /**\n * The system prop that allows defining system overrides as well as additional CSS styles.\n */\n sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),\n /**\n * The component used for the transition.\n * [Follow this guide](/material-ui/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.\n * @default Fade\n */\n TransitionComponent: PropTypes.elementType,\n /**\n * The duration for the transition, in milliseconds.\n * You may specify a single timeout for all transitions, or individually with an object.\n * @default {\n * enter: theme.transitions.duration.enteringScreen,\n * exit: theme.transitions.duration.leavingScreen,\n * }\n */\n transitionDuration: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({\n appear: PropTypes.number,\n enter: PropTypes.number,\n exit: PropTypes.number\n })]),\n /**\n * Props applied to the transition element.\n * By default, the element is based on this [`Transition`](https://reactcommunity.org/react-transition-group/transition/) component.\n */\n TransitionProps: PropTypes.object\n} : void 0;\nexport default Dialog;","import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getDialogActionsUtilityClass(slot) {\n return generateUtilityClass('MuiDialogActions', slot);\n}\nconst dialogActionsClasses = generateUtilityClasses('MuiDialogActions', ['root', 'spacing']);\nexport default dialogActionsClasses;","'use client';\n\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nconst _excluded = [\"className\", \"disableSpacing\"];\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport composeClasses from '@mui/utils/composeClasses';\nimport styled from '../styles/styled';\nimport { useDefaultProps } from '../DefaultPropsProvider';\nimport { getDialogActionsUtilityClass } from './dialogActionsClasses';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst useUtilityClasses = ownerState => {\n const {\n classes,\n disableSpacing\n } = ownerState;\n const slots = {\n root: ['root', !disableSpacing && 'spacing']\n };\n return composeClasses(slots, getDialogActionsUtilityClass, classes);\n};\nconst DialogActionsRoot = styled('div', {\n name: 'MuiDialogActions',\n slot: 'Root',\n overridesResolver: (props, styles) => {\n const {\n ownerState\n } = props;\n return [styles.root, !ownerState.disableSpacing && styles.spacing];\n }\n})(({\n ownerState\n}) => _extends({\n display: 'flex',\n alignItems: 'center',\n padding: 8,\n justifyContent: 'flex-end',\n flex: '0 0 auto'\n}, !ownerState.disableSpacing && {\n '& > :not(style) ~ :not(style)': {\n marginLeft: 8\n }\n}));\nconst DialogActions = /*#__PURE__*/React.forwardRef(function DialogActions(inProps, ref) {\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiDialogActions'\n });\n const {\n className,\n disableSpacing = false\n } = props,\n other = _objectWithoutPropertiesLoose(props, _excluded);\n const ownerState = _extends({}, props, {\n disableSpacing\n });\n const classes = useUtilityClasses(ownerState);\n return /*#__PURE__*/_jsx(DialogActionsRoot, _extends({\n className: clsx(classes.root, className),\n ownerState: ownerState,\n ref: ref\n }, other));\n});\nprocess.env.NODE_ENV !== \"production\" ? DialogActions.propTypes /* remove-proptypes */ = {\n // ┌────────────────────────────── Warning ──────────────────────────────┐\n // │ These PropTypes are generated from the TypeScript type definitions. │\n // │ To update them, edit the d.ts file and run `pnpm proptypes`. │\n // └─────────────────────────────────────────────────────────────────────┘\n /**\n * The content of the component.\n */\n children: PropTypes.node,\n /**\n * Override or extend the styles applied to the component.\n */\n classes: PropTypes.object,\n /**\n * @ignore\n */\n className: PropTypes.string,\n /**\n * If `true`, the actions do not have additional margin.\n * @default false\n */\n disableSpacing: PropTypes.bool,\n /**\n * The system prop that allows defining system overrides as well as additional CSS styles.\n */\n sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])\n} : void 0;\nexport default DialogActions;","import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getDialogContentUtilityClass(slot) {\n return generateUtilityClass('MuiDialogContent', slot);\n}\nconst dialogContentClasses = generateUtilityClasses('MuiDialogContent', ['root', 'dividers']);\nexport default dialogContentClasses;","import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getDialogTitleUtilityClass(slot) {\n return generateUtilityClass('MuiDialogTitle', slot);\n}\nconst dialogTitleClasses = generateUtilityClasses('MuiDialogTitle', ['root']);\nexport default dialogTitleClasses;","'use client';\n\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nconst _excluded = [\"className\", \"dividers\"];\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport composeClasses from '@mui/utils/composeClasses';\nimport styled from '../styles/styled';\nimport { useDefaultProps } from '../DefaultPropsProvider';\nimport { getDialogContentUtilityClass } from './dialogContentClasses';\nimport dialogTitleClasses from '../DialogTitle/dialogTitleClasses';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst useUtilityClasses = ownerState => {\n const {\n classes,\n dividers\n } = ownerState;\n const slots = {\n root: ['root', dividers && 'dividers']\n };\n return composeClasses(slots, getDialogContentUtilityClass, classes);\n};\nconst DialogContentRoot = styled('div', {\n name: 'MuiDialogContent',\n slot: 'Root',\n overridesResolver: (props, styles) => {\n const {\n ownerState\n } = props;\n return [styles.root, ownerState.dividers && styles.dividers];\n }\n})(({\n theme,\n ownerState\n}) => _extends({\n flex: '1 1 auto',\n // Add iOS momentum scrolling for iOS < 13.0\n WebkitOverflowScrolling: 'touch',\n overflowY: 'auto',\n padding: '20px 24px'\n}, ownerState.dividers ? {\n padding: '16px 24px',\n borderTop: `1px solid ${(theme.vars || theme).palette.divider}`,\n borderBottom: `1px solid ${(theme.vars || theme).palette.divider}`\n} : {\n [`.${dialogTitleClasses.root} + &`]: {\n paddingTop: 0\n }\n}));\nconst DialogContent = /*#__PURE__*/React.forwardRef(function DialogContent(inProps, ref) {\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiDialogContent'\n });\n const {\n className,\n dividers = false\n } = props,\n other = _objectWithoutPropertiesLoose(props, _excluded);\n const ownerState = _extends({}, props, {\n dividers\n });\n const classes = useUtilityClasses(ownerState);\n return /*#__PURE__*/_jsx(DialogContentRoot, _extends({\n className: clsx(classes.root, className),\n ownerState: ownerState,\n ref: ref\n }, other));\n});\nprocess.env.NODE_ENV !== \"production\" ? DialogContent.propTypes /* remove-proptypes */ = {\n // ┌────────────────────────────── Warning ──────────────────────────────┐\n // │ These PropTypes are generated from the TypeScript type definitions. │\n // │ To update them, edit the d.ts file and run `pnpm proptypes`. │\n // └─────────────────────────────────────────────────────────────────────┘\n /**\n * The content of the component.\n */\n children: PropTypes.node,\n /**\n * Override or extend the styles applied to the component.\n */\n classes: PropTypes.object,\n /**\n * @ignore\n */\n className: PropTypes.string,\n /**\n * Display the top and bottom dividers.\n * @default false\n */\n dividers: PropTypes.bool,\n /**\n * The system prop that allows defining system overrides as well as additional CSS styles.\n */\n sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])\n} : void 0;\nexport default DialogContent;","'use client';\n\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nconst _excluded = [\"className\", \"id\"];\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport composeClasses from '@mui/utils/composeClasses';\nimport Typography from '../Typography';\nimport styled from '../styles/styled';\nimport { useDefaultProps } from '../DefaultPropsProvider';\nimport { getDialogTitleUtilityClass } from './dialogTitleClasses';\nimport DialogContext from '../Dialog/DialogContext';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst useUtilityClasses = ownerState => {\n const {\n classes\n } = ownerState;\n const slots = {\n root: ['root']\n };\n return composeClasses(slots, getDialogTitleUtilityClass, classes);\n};\nconst DialogTitleRoot = styled(Typography, {\n name: 'MuiDialogTitle',\n slot: 'Root',\n overridesResolver: (props, styles) => styles.root\n})({\n padding: '16px 24px',\n flex: '0 0 auto'\n});\nconst DialogTitle = /*#__PURE__*/React.forwardRef(function DialogTitle(inProps, ref) {\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiDialogTitle'\n });\n const {\n className,\n id: idProp\n } = props,\n other = _objectWithoutPropertiesLoose(props, _excluded);\n const ownerState = props;\n const classes = useUtilityClasses(ownerState);\n const {\n titleId = idProp\n } = React.useContext(DialogContext);\n return /*#__PURE__*/_jsx(DialogTitleRoot, _extends({\n component: \"h2\",\n className: clsx(classes.root, className),\n ownerState: ownerState,\n ref: ref,\n variant: \"h6\",\n id: idProp != null ? idProp : titleId\n }, other));\n});\nprocess.env.NODE_ENV !== \"production\" ? DialogTitle.propTypes /* remove-proptypes */ = {\n // ┌────────────────────────────── Warning ──────────────────────────────┐\n // │ These PropTypes are generated from the TypeScript type definitions. │\n // │ To update them, edit the d.ts file and run `pnpm proptypes`. │\n // └─────────────────────────────────────────────────────────────────────┘\n /**\n * The content of the component.\n */\n children: PropTypes.node,\n /**\n * Override or extend the styles applied to the component.\n */\n classes: PropTypes.object,\n /**\n * @ignore\n */\n className: PropTypes.string,\n /**\n * @ignore\n */\n id: PropTypes.string,\n /**\n * The system prop that allows defining system overrides as well as additional CSS styles.\n */\n sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])\n} : void 0;\nexport default DialogTitle;"],"names":["getDialogUtilityClass","slot","generateUtilityClass","dialogClasses","generateUtilityClasses","DialogContext","React.createContext","_excluded","DialogBackdrop","styled","Backdrop","props","styles","useUtilityClasses","ownerState","classes","scroll","maxWidth","fullWidth","fullScreen","slots","capitalize","composeClasses","DialogRoot","Modal","DialogContainer","_extends","DialogPaper","Paper","theme","Dialog","React.forwardRef","inProps","ref","useDefaultProps","useTheme","defaultTransitionDuration","ariaDescribedby","ariaLabelledbyProp","BackdropComponent","BackdropProps","children","className","disableEscapeKeyDown","onBackdropClick","onClick","onClose","open","PaperComponent","PaperProps","TransitionComponent","Fade","transitionDuration","TransitionProps","other","_objectWithoutPropertiesLoose","backdropClick","React.useRef","handleMouseDown","event","handleBackdropClick","ariaLabelledby","useId","dialogContextValue","React.useMemo","_jsx","clsx","getDialogActionsUtilityClass","disableSpacing","DialogActionsRoot","DialogActions","getDialogContentUtilityClass","getDialogTitleUtilityClass","dialogTitleClasses","dividers","DialogContentRoot","DialogContent","DialogTitleRoot","Typography","DialogTitle","idProp","titleId","React.useContext"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8]}