{"version":3,"file":"FormControlLabel-CLsyMVP8.js","sources":["../../node_modules/@mui/material/FormControlLabel/formControlLabelClasses.js","../../node_modules/@mui/material/FormControlLabel/FormControlLabel.js"],"sourcesContent":["import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getFormControlLabelUtilityClasses(slot) {\n return generateUtilityClass('MuiFormControlLabel', slot);\n}\nconst formControlLabelClasses = generateUtilityClasses('MuiFormControlLabel', ['root', 'labelPlacementStart', 'labelPlacementTop', 'labelPlacementBottom', 'disabled', 'label', 'error', 'required', 'asterisk']);\nexport default formControlLabelClasses;","'use client';\n\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nconst _excluded = [\"checked\", \"className\", \"componentsProps\", \"control\", \"disabled\", \"disableTypography\", \"inputRef\", \"label\", \"labelPlacement\", \"name\", \"onChange\", \"required\", \"slotProps\", \"value\"];\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport clsx from 'clsx';\nimport refType from '@mui/utils/refType';\nimport composeClasses from '@mui/utils/composeClasses';\nimport { useFormControl } from '../FormControl';\nimport Stack from '../Stack';\nimport Typography from '../Typography';\nimport capitalize from '../utils/capitalize';\nimport styled from '../styles/styled';\nimport { useDefaultProps } from '../DefaultPropsProvider';\nimport formControlLabelClasses, { getFormControlLabelUtilityClasses } from './formControlLabelClasses';\nimport formControlState from '../FormControl/formControlState';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { jsxs as _jsxs } from \"react/jsx-runtime\";\nconst useUtilityClasses = ownerState => {\n const {\n classes,\n disabled,\n labelPlacement,\n error,\n required\n } = ownerState;\n const slots = {\n root: ['root', disabled && 'disabled', `labelPlacement${capitalize(labelPlacement)}`, error && 'error', required && 'required'],\n label: ['label', disabled && 'disabled'],\n asterisk: ['asterisk', error && 'error']\n };\n return composeClasses(slots, getFormControlLabelUtilityClasses, classes);\n};\nexport const FormControlLabelRoot = styled('label', {\n name: 'MuiFormControlLabel',\n slot: 'Root',\n overridesResolver: (props, styles) => {\n const {\n ownerState\n } = props;\n return [{\n [`& .${formControlLabelClasses.label}`]: styles.label\n }, styles.root, styles[`labelPlacement${capitalize(ownerState.labelPlacement)}`]];\n }\n})(({\n theme,\n ownerState\n}) => _extends({\n display: 'inline-flex',\n alignItems: 'center',\n cursor: 'pointer',\n // For correct alignment with the text.\n verticalAlign: 'middle',\n WebkitTapHighlightColor: 'transparent',\n marginLeft: -11,\n marginRight: 16,\n // used for row presentation of radio/checkbox\n [`&.${formControlLabelClasses.disabled}`]: {\n cursor: 'default'\n }\n}, ownerState.labelPlacement === 'start' && {\n flexDirection: 'row-reverse',\n marginLeft: 16,\n // used for row presentation of radio/checkbox\n marginRight: -11\n}, ownerState.labelPlacement === 'top' && {\n flexDirection: 'column-reverse',\n marginLeft: 16\n}, ownerState.labelPlacement === 'bottom' && {\n flexDirection: 'column',\n marginLeft: 16\n}, {\n [`& .${formControlLabelClasses.label}`]: {\n [`&.${formControlLabelClasses.disabled}`]: {\n color: (theme.vars || theme).palette.text.disabled\n }\n }\n}));\nconst AsteriskComponent = styled('span', {\n name: 'MuiFormControlLabel',\n slot: 'Asterisk',\n overridesResolver: (props, styles) => styles.asterisk\n})(({\n theme\n}) => ({\n [`&.${formControlLabelClasses.error}`]: {\n color: (theme.vars || theme).palette.error.main\n }\n}));\n\n/**\n * Drop-in replacement of the `Radio`, `Switch` and `Checkbox` component.\n * Use this component if you want to display an extra label.\n */\nconst FormControlLabel = /*#__PURE__*/React.forwardRef(function FormControlLabel(inProps, ref) {\n var _ref, _slotProps$typography;\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiFormControlLabel'\n });\n const {\n className,\n componentsProps = {},\n control,\n disabled: disabledProp,\n disableTypography,\n label: labelProp,\n labelPlacement = 'end',\n required: requiredProp,\n slotProps = {}\n } = props,\n other = _objectWithoutPropertiesLoose(props, _excluded);\n const muiFormControl = useFormControl();\n const disabled = (_ref = disabledProp != null ? disabledProp : control.props.disabled) != null ? _ref : muiFormControl == null ? void 0 : muiFormControl.disabled;\n const required = requiredProp != null ? requiredProp : control.props.required;\n const controlProps = {\n disabled,\n required\n };\n ['checked', 'name', 'onChange', 'value', 'inputRef'].forEach(key => {\n if (typeof control.props[key] === 'undefined' && typeof props[key] !== 'undefined') {\n controlProps[key] = props[key];\n }\n });\n const fcs = formControlState({\n props,\n muiFormControl,\n states: ['error']\n });\n const ownerState = _extends({}, props, {\n disabled,\n labelPlacement,\n required,\n error: fcs.error\n });\n const classes = useUtilityClasses(ownerState);\n const typographySlotProps = (_slotProps$typography = slotProps.typography) != null ? _slotProps$typography : componentsProps.typography;\n let label = labelProp;\n if (label != null && label.type !== Typography && !disableTypography) {\n label = /*#__PURE__*/_jsx(Typography, _extends({\n component: \"span\"\n }, typographySlotProps, {\n className: clsx(classes.label, typographySlotProps == null ? void 0 : typographySlotProps.className),\n children: label\n }));\n }\n return /*#__PURE__*/_jsxs(FormControlLabelRoot, _extends({\n className: clsx(classes.root, className),\n ownerState: ownerState,\n ref: ref\n }, other, {\n children: [/*#__PURE__*/React.cloneElement(control, controlProps), required ? /*#__PURE__*/_jsxs(Stack, {\n display: \"block\",\n children: [label, /*#__PURE__*/_jsxs(AsteriskComponent, {\n ownerState: ownerState,\n \"aria-hidden\": true,\n className: classes.asterisk,\n children: [\"\\u2009\", '*']\n })]\n }) : label]\n }));\n});\nprocess.env.NODE_ENV !== \"production\" ? FormControlLabel.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 * If `true`, the component appears selected.\n */\n checked: PropTypes.bool,\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 props used for each slot inside.\n * @default {}\n */\n componentsProps: PropTypes.shape({\n typography: PropTypes.object\n }),\n /**\n * A control element. For instance, it can be a `Radio`, a `Switch` or a `Checkbox`.\n */\n control: PropTypes.element.isRequired,\n /**\n * If `true`, the control is disabled.\n */\n disabled: PropTypes.bool,\n /**\n * If `true`, the label is rendered as it is passed without an additional typography node.\n */\n disableTypography: PropTypes.bool,\n /**\n * Pass a ref to the `input` element.\n */\n inputRef: refType,\n /**\n * A text or an element to be used in an enclosing label element.\n */\n label: PropTypes.node,\n /**\n * The position of the label.\n * @default 'end'\n */\n labelPlacement: PropTypes.oneOf(['bottom', 'end', 'start', 'top']),\n /**\n * @ignore\n */\n name: PropTypes.string,\n /**\n * Callback fired when the state is changed.\n *\n * @param {React.SyntheticEvent} event The event source of the callback.\n * You can pull out the new checked state by accessing `event.target.checked` (boolean).\n */\n onChange: PropTypes.func,\n /**\n * If `true`, the label will indicate that the `input` is required.\n */\n required: PropTypes.bool,\n /**\n * The props used for each slot inside.\n * @default {}\n */\n slotProps: PropTypes.shape({\n typography: PropTypes.object\n }),\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 value of the component.\n */\n value: PropTypes.any\n} : void 0;\nexport default FormControlLabel;"],"names":["getFormControlLabelUtilityClasses","slot","generateUtilityClass","formControlLabelClasses","generateUtilityClasses","_excluded","useUtilityClasses","ownerState","classes","disabled","labelPlacement","error","required","slots","capitalize","composeClasses","FormControlLabelRoot","styled","props","styles","theme","_extends","AsteriskComponent","FormControlLabel","React.forwardRef","inProps","ref","_ref","_slotProps$typography","useDefaultProps","className","componentsProps","control","disabledProp","disableTypography","labelProp","requiredProp","slotProps","other","_objectWithoutPropertiesLoose","muiFormControl","useFormControl","controlProps","key","fcs","formControlState","typographySlotProps","label","Typography","_jsx","clsx","_jsxs","React.cloneElement","Stack"],"mappings":"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","x_google_ignoreList":[0,1]}