/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/NativeSelect/NativeSelect.d.ts
72 строки
2 KB
Siriwat K
[internal] Prepare libraries for v9 stable release (#48206)
07 апр 2026, 11:54
Не верифицирован
07 апр 2026, 11:54
e4de3e2
Код
Авторство
О чём код?
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '../styles'; import { InternalStandardProps as StandardProps } from '../internal'; import { InputProps } from '../Input'; import { NativeSelectInputProps } from './NativeSelectInput'; import { NativeSelectClasses } from './nativeSelectClasses'; export interface NativeSelectProps extends StandardProps< InputProps, 'inputProps' | 'value' | 'onChange' > { /** * The option elements to populate the select with. * Can be some `<option>` elements. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. * @default {} */ classes?: Partial<NativeSelectClasses> | undefined; /** * The icon that displays the arrow. * @default ArrowDropDownIcon */ IconComponent?: React.ElementType | undefined; /** * An `Input` element; does not have to be a material-ui specific `Input`. * @default <Input /> */ input?: React.ReactElement<unknown, any> | undefined; /** * [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/select#attributes) applied to the `select` element. */ inputProps?: Partial<NativeSelectInputProps> | undefined; /** * Callback fired when a menu item is selected. * * @param {React.ChangeEvent<HTMLSelectElement>} event The event source of the callback. * You can pull out the new value by accessing `event.target.value` (string). */ onChange?: NativeSelectInputProps['onChange'] | undefined; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme> | undefined; /** * The `input` value. The DOM API casts this to a string. */ value?: unknown; /** * The variant to use. */ variant?: 'standard' | 'outlined' | 'filled' | undefined; } /** * An alternative to `<Select native />` with a much smaller bundle size footprint. * * Demos: * * - [Select](https://mui.com/material-ui/react-select/) * * API: * * - [NativeSelect API](https://mui.com/material-ui/api/native-select/) * - inherits [Input API](https://mui.com/material-ui/api/input/) */ declare const NativeSelect: ((props: NativeSelectProps) => React.JSX.Element) & { muiName: string }; export default NativeSelect;