{"version":3,"file":"InputAdornment-rgTzkDRK.js","sources":["../../../node_modules/@mui/material/InputAdornment/inputAdornmentClasses.js","../../../node_modules/@mui/material/InputAdornment/InputAdornment.js"],"sourcesContent":["import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getInputAdornmentUtilityClass(slot) {\n return generateUtilityClass('MuiInputAdornment', slot);\n}\nconst inputAdornmentClasses = generateUtilityClasses('MuiInputAdornment', ['root', 'filled', 'standard', 'outlined', 'positionStart', 'positionEnd', 'disablePointerEvents', 'hiddenLabel', 'sizeSmall']);\nexport default inputAdornmentClasses;","'use client';\n\nvar _span;\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport composeClasses from '@mui/utils/composeClasses';\nimport capitalize from \"../utils/capitalize.js\";\nimport Typography from \"../Typography/index.js\";\nimport FormControlContext from \"../FormControl/FormControlContext.js\";\nimport useFormControl from \"../FormControl/useFormControl.js\";\nimport { styled } from \"../zero-styled/index.js\";\nimport memoTheme from \"../utils/memoTheme.js\";\nimport { useDefaultProps } from \"../DefaultPropsProvider/index.js\";\nimport inputAdornmentClasses, { getInputAdornmentUtilityClass } from \"./inputAdornmentClasses.js\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst overridesResolver = (props, styles) => {\n const {\n ownerState\n } = props;\n return [styles.root, styles[`position${capitalize(ownerState.position)}`], ownerState.disablePointerEvents === true && styles.disablePointerEvents, styles[ownerState.variant]];\n};\nconst useUtilityClasses = ownerState => {\n const {\n classes,\n disablePointerEvents,\n hiddenLabel,\n position,\n size,\n variant\n } = ownerState;\n const slots = {\n root: ['root', disablePointerEvents && 'disablePointerEvents', position && `position${capitalize(position)}`, variant, hiddenLabel && 'hiddenLabel', size && `size${capitalize(size)}`]\n };\n return composeClasses(slots, getInputAdornmentUtilityClass, classes);\n};\nconst InputAdornmentRoot = styled('div', {\n name: 'MuiInputAdornment',\n slot: 'Root',\n overridesResolver\n})(memoTheme(({\n theme\n}) => ({\n display: 'flex',\n maxHeight: '2em',\n alignItems: 'center',\n whiteSpace: 'nowrap',\n color: (theme.vars || theme).palette.action.active,\n variants: [{\n props: {\n variant: 'filled'\n },\n style: {\n [`&.${inputAdornmentClasses.positionStart}&:not(.${inputAdornmentClasses.hiddenLabel})`]: {\n marginTop: 16\n }\n }\n }, {\n props: {\n position: 'start'\n },\n style: {\n marginRight: 8\n }\n }, {\n props: {\n position: 'end'\n },\n style: {\n marginLeft: 8\n }\n }, {\n props: {\n disablePointerEvents: true\n },\n style: {\n pointerEvents: 'none'\n }\n }]\n})));\nconst InputAdornment = /*#__PURE__*/React.forwardRef(function InputAdornment(inProps, ref) {\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiInputAdornment'\n });\n const {\n children,\n className,\n component = 'div',\n disablePointerEvents = false,\n disableTypography = false,\n position,\n variant: variantProp,\n ...other\n } = props;\n const muiFormControl = useFormControl() || {};\n let variant = variantProp;\n if (variantProp && muiFormControl.variant) {\n if (process.env.NODE_ENV !== 'production') {\n if (variantProp === muiFormControl.variant) {\n console.error('MUI: The `InputAdornment` variant infers the variant prop ' + 'you do not have to provide one.');\n }\n }\n }\n if (muiFormControl && !variant) {\n variant = muiFormControl.variant;\n }\n const ownerState = {\n ...props,\n hiddenLabel: muiFormControl.hiddenLabel,\n size: muiFormControl.size,\n disablePointerEvents,\n position,\n variant\n };\n const classes = useUtilityClasses(ownerState);\n return /*#__PURE__*/_jsx(FormControlContext.Provider, {\n value: null,\n children: /*#__PURE__*/_jsx(InputAdornmentRoot, {\n as: component,\n ownerState: ownerState,\n className: clsx(classes.root, className),\n ref: ref,\n ...other,\n children: typeof children === 'string' && !disableTypography ? /*#__PURE__*/_jsx(Typography, {\n color: \"textSecondary\",\n children: children\n }) : /*#__PURE__*/_jsxs(React.Fragment, {\n children: [position === 'start' ? (/* notranslate needed while Google Translate will not fix zero-width space issue */_span || (_span = /*#__PURE__*/_jsx(\"span\", {\n className: \"notranslate\",\n \"aria-hidden\": true,\n children: \"\\u200B\"\n }))) : null, children]\n })\n })\n });\n});\nprocess.env.NODE_ENV !== \"production\" ? InputAdornment.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, normally an `IconButton` or string.\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 * The component used for the root node.\n * Either a string to use a HTML element or a component.\n */\n component: PropTypes.elementType,\n /**\n * Disable pointer events on the root.\n * This allows for the content of the adornment to focus the `input` on click.\n * @default false\n */\n disablePointerEvents: PropTypes.bool,\n /**\n * If children is a string then disable wrapping in a Typography component.\n * @default false\n */\n disableTypography: PropTypes.bool,\n /**\n * The position this adornment should appear relative to the `Input`.\n */\n position: PropTypes.oneOf(['end', 'start']).isRequired,\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 variant to use.\n * Note: If you are using the `TextField` component or the `FormControl` component\n * you do not have to set this manually.\n */\n variant: PropTypes.oneOf(['filled', 'outlined', 'standard'])\n} : void 0;\nexport default InputAdornment;"],"names":["getInputAdornmentUtilityClass","slot","generateUtilityClass","inputAdornmentClasses","generateUtilityClasses","_span","overridesResolver","props","styles","ownerState","capitalize","useUtilityClasses","classes","disablePointerEvents","hiddenLabel","position","size","variant","slots","composeClasses","InputAdornmentRoot","styled","memoTheme","theme","InputAdornment","React.forwardRef","inProps","ref","useDefaultProps","children","className","component","disableTypography","variantProp","other","muiFormControl","useFormControl","_jsx","FormControlContext","clsx","Typography","_jsxs","React.Fragment"],"mappings":"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","x_google_ignoreList":[0,1]}