{"version":3,"file":"Checkbox-fngKKp5X.js","sources":["../../node_modules/@mui/material/internal/svg-icons/CheckBoxOutlineBlank.js","../../node_modules/@mui/material/internal/svg-icons/CheckBox.js","../../node_modules/@mui/material/internal/svg-icons/IndeterminateCheckBox.js","../../node_modules/@mui/material/Checkbox/checkboxClasses.js","../../node_modules/@mui/material/Checkbox/Checkbox.js"],"sourcesContent":["'use client';\n\nimport * as React from 'react';\nimport createSvgIcon from '../../utils/createSvgIcon';\n\n/**\n * @ignore - internal component.\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"\n}), 'CheckBoxOutlineBlank');","'use client';\n\nimport * as React from 'react';\nimport createSvgIcon from '../../utils/createSvgIcon';\n\n/**\n * @ignore - internal component.\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\"\n}), 'CheckBox');","'use client';\n\nimport * as React from 'react';\nimport createSvgIcon from '../../utils/createSvgIcon';\n\n/**\n * @ignore - internal component.\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10H7v-2h10v2z\"\n}), 'IndeterminateCheckBox');","import generateUtilityClasses from '@mui/utils/generateUtilityClasses';\nimport generateUtilityClass from '@mui/utils/generateUtilityClass';\nexport function getCheckboxUtilityClass(slot) {\n return generateUtilityClass('MuiCheckbox', slot);\n}\nconst checkboxClasses = generateUtilityClasses('MuiCheckbox', ['root', 'checked', 'disabled', 'indeterminate', 'colorPrimary', 'colorSecondary', 'sizeSmall', 'sizeMedium']);\nexport default checkboxClasses;","'use client';\n\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nconst _excluded = [\"checkedIcon\", \"color\", \"icon\", \"indeterminate\", \"indeterminateIcon\", \"inputProps\", \"size\", \"className\"];\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 { alpha } from '@mui/system/colorManipulator';\nimport SwitchBase from '../internal/SwitchBase';\nimport CheckBoxOutlineBlankIcon from '../internal/svg-icons/CheckBoxOutlineBlank';\nimport CheckBoxIcon from '../internal/svg-icons/CheckBox';\nimport IndeterminateCheckBoxIcon from '../internal/svg-icons/IndeterminateCheckBox';\nimport capitalize from '../utils/capitalize';\nimport { useDefaultProps } from '../DefaultPropsProvider';\nimport styled, { rootShouldForwardProp } from '../styles/styled';\nimport checkboxClasses, { getCheckboxUtilityClass } from './checkboxClasses';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst useUtilityClasses = ownerState => {\n const {\n classes,\n indeterminate,\n color,\n size\n } = ownerState;\n const slots = {\n root: ['root', indeterminate && 'indeterminate', `color${capitalize(color)}`, `size${capitalize(size)}`]\n };\n const composedClasses = composeClasses(slots, getCheckboxUtilityClass, classes);\n return _extends({}, classes, composedClasses);\n};\nconst CheckboxRoot = styled(SwitchBase, {\n shouldForwardProp: prop => rootShouldForwardProp(prop) || prop === 'classes',\n name: 'MuiCheckbox',\n slot: 'Root',\n overridesResolver: (props, styles) => {\n const {\n ownerState\n } = props;\n return [styles.root, ownerState.indeterminate && styles.indeterminate, styles[`size${capitalize(ownerState.size)}`], ownerState.color !== 'default' && styles[`color${capitalize(ownerState.color)}`]];\n }\n})(({\n theme,\n ownerState\n}) => _extends({\n color: (theme.vars || theme).palette.text.secondary\n}, !ownerState.disableRipple && {\n '&:hover': {\n backgroundColor: theme.vars ? `rgba(${ownerState.color === 'default' ? theme.vars.palette.action.activeChannel : theme.vars.palette[ownerState.color].mainChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(ownerState.color === 'default' ? theme.palette.action.active : theme.palette[ownerState.color].main, theme.palette.action.hoverOpacity),\n // Reset on touch devices, it doesn't add specificity\n '@media (hover: none)': {\n backgroundColor: 'transparent'\n }\n }\n}, ownerState.color !== 'default' && {\n [`&.${checkboxClasses.checked}, &.${checkboxClasses.indeterminate}`]: {\n color: (theme.vars || theme).palette[ownerState.color].main\n },\n [`&.${checkboxClasses.disabled}`]: {\n color: (theme.vars || theme).palette.action.disabled\n }\n}));\nconst defaultCheckedIcon = /*#__PURE__*/_jsx(CheckBoxIcon, {});\nconst defaultIcon = /*#__PURE__*/_jsx(CheckBoxOutlineBlankIcon, {});\nconst defaultIndeterminateIcon = /*#__PURE__*/_jsx(IndeterminateCheckBoxIcon, {});\nconst Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(inProps, ref) {\n var _icon$props$fontSize, _indeterminateIcon$pr;\n const props = useDefaultProps({\n props: inProps,\n name: 'MuiCheckbox'\n });\n const {\n checkedIcon = defaultCheckedIcon,\n color = 'primary',\n icon: iconProp = defaultIcon,\n indeterminate = false,\n indeterminateIcon: indeterminateIconProp = defaultIndeterminateIcon,\n inputProps,\n size = 'medium',\n className\n } = props,\n other = _objectWithoutPropertiesLoose(props, _excluded);\n const icon = indeterminate ? indeterminateIconProp : iconProp;\n const indeterminateIcon = indeterminate ? indeterminateIconProp : checkedIcon;\n const ownerState = _extends({}, props, {\n color,\n indeterminate,\n size\n });\n const classes = useUtilityClasses(ownerState);\n return /*#__PURE__*/_jsx(CheckboxRoot, _extends({\n type: \"checkbox\",\n inputProps: _extends({\n 'data-indeterminate': indeterminate\n }, inputProps),\n icon: /*#__PURE__*/React.cloneElement(icon, {\n fontSize: (_icon$props$fontSize = icon.props.fontSize) != null ? _icon$props$fontSize : size\n }),\n checkedIcon: /*#__PURE__*/React.cloneElement(indeterminateIcon, {\n fontSize: (_indeterminateIcon$pr = indeterminateIcon.props.fontSize) != null ? _indeterminateIcon$pr : size\n }),\n ownerState: ownerState,\n ref: ref,\n className: clsx(classes.root, className)\n }, other, {\n classes: classes\n }));\n});\nprocess.env.NODE_ENV !== \"production\" ? Checkbox.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 is checked.\n */\n checked: PropTypes.bool,\n /**\n * The icon to display when the component is checked.\n * @default \n */\n checkedIcon: 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 color of the component.\n * It supports both default and custom theme colors, which can be added as shown in the\n * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).\n * @default 'primary'\n */\n color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['default', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), PropTypes.string]),\n /**\n * The default checked state. Use when the component is not controlled.\n */\n defaultChecked: PropTypes.bool,\n /**\n * If `true`, the component is disabled.\n * @default false\n */\n disabled: PropTypes.bool,\n /**\n * If `true`, the ripple effect is disabled.\n * @default false\n */\n disableRipple: PropTypes.bool,\n /**\n * The icon to display when the component is unchecked.\n * @default \n */\n icon: PropTypes.node,\n /**\n * The id of the `input` element.\n */\n id: PropTypes.string,\n /**\n * If `true`, the component appears indeterminate.\n * This does not set the native input element to indeterminate due\n * to inconsistent behavior across browsers.\n * However, we set a `data-indeterminate` attribute on the `input`.\n * @default false\n */\n indeterminate: PropTypes.bool,\n /**\n * The icon to display when the component is indeterminate.\n * @default \n */\n indeterminateIcon: PropTypes.node,\n /**\n * [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#Attributes) applied to the `input` element.\n */\n inputProps: PropTypes.object,\n /**\n * Pass a ref to the `input` element.\n */\n inputRef: refType,\n /**\n * Callback fired when the state is changed.\n *\n * @param {React.ChangeEvent} 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 `input` element is required.\n * @default false\n */\n required: PropTypes.bool,\n /**\n * The size of the component.\n * `small` is equivalent to the dense checkbox styling.\n * @default 'medium'\n */\n size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['medium', 'small']), 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 /**\n * The value of the component. The DOM API casts this to a string.\n * The browser uses \"on\" as the default value.\n */\n value: PropTypes.any\n} : void 0;\nexport default Checkbox;"],"names":["CheckBoxOutlineBlankIcon","createSvgIcon","_jsx","CheckBoxIcon","IndeterminateCheckBoxIcon","getCheckboxUtilityClass","slot","generateUtilityClass","checkboxClasses","generateUtilityClasses","_excluded","useUtilityClasses","ownerState","classes","indeterminate","color","size","slots","capitalize","composedClasses","composeClasses","_extends","CheckboxRoot","styled","SwitchBase","prop","rootShouldForwardProp","props","styles","theme","alpha","defaultCheckedIcon","defaultIcon","defaultIndeterminateIcon","Checkbox","React.forwardRef","inProps","ref","_icon$props$fontSize","_indeterminateIcon$pr","useDefaultProps","checkedIcon","iconProp","indeterminateIconProp","inputProps","className","other","_objectWithoutPropertiesLoose","icon","indeterminateIcon","React.cloneElement","clsx"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}