Buckets:
ktongue/docker_container / CAD_kevin /frontend /node_modules /@mui /material /Select /SelectInput.d.ts
| import * as React from 'react'; | |
| import { SxProps } from '@mui/system'; | |
| import { Theme } from '..'; | |
| import { MenuProps } from '../Menu'; | |
| /** | |
| * The change can be caused by different kind of events. | |
| * The type of event depends on what caused the change. | |
| * For example, when the browser auto-fills the `Select` you'll receive a `React.ChangeEvent`. | |
| */ | |
| export type SelectChangeEvent<Value = string> = | |
| | (Event & { target: { value: Value; name: string } }) | |
| | React.ChangeEvent<HTMLInputElement>; | |
| export interface SelectInputProps<Value = unknown> { | |
| autoFocus?: boolean; | |
| autoWidth: boolean; | |
| defaultOpen?: boolean; | |
| disabled?: boolean; | |
| error?: boolean; | |
| IconComponent?: React.ElementType; | |
| inputRef?: ( | |
| ref: HTMLSelectElement | { node: HTMLInputElement; value: SelectInputProps<Value>['value'] }, | |
| ) => void; | |
| MenuProps?: Partial<MenuProps>; | |
| multiple: boolean; | |
| name?: string; | |
| native: boolean; | |
| onBlur?: React.FocusEventHandler<any>; | |
| onChange?: (event: SelectChangeEvent<Value>, child: React.ReactNode) => void; | |
| onClose?: (event: React.SyntheticEvent) => void; | |
| onFocus?: React.FocusEventHandler<any>; | |
| onOpen?: (event: React.SyntheticEvent) => void; | |
| open?: boolean; | |
| readOnly?: boolean; | |
| renderValue?: (value: SelectInputProps<Value>['value']) => React.ReactNode; | |
| SelectDisplayProps?: React.HTMLAttributes<HTMLDivElement>; | |
| sx?: SxProps<Theme>; | |
| tabIndex?: number; | |
| value?: Value; | |
| variant?: 'standard' | 'outlined' | 'filled'; | |
| } | |
| declare const SelectInput: React.JSXElementConstructor<SelectInputProps>; | |
| export default SelectInput; | |
Xet Storage Details
- Size:
- 1.58 kB
- Xet hash:
- 03a1e68ec4e6fd7414b5b111379089ff2ee171a04518192833c48027c5471970
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.