'use client';
import * as React from 'react';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import composeClasses from '@mui/utils/composeClasses';
import NativeSelectInput from "./NativeSelectInput.js";
import formControlState from "../FormControl/formControlState.js";
import useFormControl from "../FormControl/useFormControl.js";
import ArrowDropDownIcon from "../internal/svg-icons/ArrowDropDown.js";
import Input from "../Input/index.js";
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
import { getNativeSelectUtilityClasses } from "./nativeSelectClasses.js";
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
classes
} = ownerState;
const slots = {
root: ['root']
};
return composeClasses(slots, getNativeSelectUtilityClasses, classes);
};
const defaultInput = /*#__PURE__*/_jsx(Input, {});
/**
* An alternative to `` with a much smaller bundle size footprint.
*/
const NativeSelect = /*#__PURE__*/React.forwardRef(function NativeSelect(inProps, ref) {
const props = useDefaultProps({
name: 'MuiNativeSelect',
props: inProps
});
const {
className,
children,
classes: classesProp = {},
IconComponent = ArrowDropDownIcon,
input = defaultInput,
inputProps,
variant,
...other
} = props;
const muiFormControl = useFormControl();
const fcs = formControlState({
props,
muiFormControl,
states: ['variant']
});
const ownerState = {
...props,
classes: classesProp
};
const classes = useUtilityClasses(ownerState);
const {
root,
...otherClasses
} = classesProp;
return /*#__PURE__*/_jsx(React.Fragment, {
children: /*#__PURE__*/React.cloneElement(input, {
// Most of the logic is implemented in `NativeSelectInput`.
// The `Select` component is a simple API wrapper to expose something better to play with.
inputComponent: NativeSelectInput,
inputProps: {
children,
classes: otherClasses,
IconComponent,
variant: fcs.variant,
type: undefined,
// We render a select. We can ignore the type provided by the `Input`.
...inputProps,
...(input ? input.props.inputProps : {})
},
ref,
...other,
className: clsx(classes.root, input.props.className, className)
})
});
});
process.env.NODE_ENV !== "production" ? NativeSelect.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* The option elements to populate the select with.
* Can be some `