OutlinedInput API
导入
import OutlinedInput from '@mui/material/OutlinedInput';
// 或
import { OutlinedInput } from '@mui/material';
组件名称
在主题中,名称“MuiOutlinedInput
”可用于提供默认属性(props),或者样式覆盖属性
InputBase 组件的属性也是可用的。
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
autoComplete | string | This prop helps users to fill forms faster, especially on mobile devices. The name can be confusing, as it's more like an autofill. You can learn more about it following the specification. | |
autoFocus | bool | false | If true , the input element is focused during the first mount. |
classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
color | 'primary' | 'secondary' | string | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. The prop defaults to the value ( 'primary' ) inherited from the parent FormControl component. | |
components | { Input?: elementType, Root?: elementType } | {} | The components used for each slot inside the InputBase. Either a string to use a HTML element or a component. |
defaultValue | any | The default input value. Use when the component is not controlled. | |
disabled | bool | false | If true , the input element is disabled. The prop defaults to the value (false ) inherited from the parent FormControl component. |
endAdornment | node | End InputAdornment for this component. | |
error | bool | false | If true , the input will indicate an error. The prop defaults to the value (false ) inherited from the parent FormControl component. |
fullWidth | bool | false | If true , the input will take up the full width of its container. |
id | string | The id of the input element. | |
inputComponent | elementType | 'input' | The component used for the input element. Either a string to use a HTML element or a component. |
inputProps | object | {} | Attributes applied to the input element. |
inputRef | ref | Pass a ref to the input element. | |
label | node | The label of the input . It is only used for layout. The actual labelling is handled by InputLabel . | |
margin | 'dense' | 'none' | If dense , will adjust vertical spacing. This is normally obtained via context from FormControl. The prop defaults to the value ('none' ) inherited from the parent FormControl component. | |
maxRows | number | string | Maximum number of rows to display when multiline option is set to true. | |
minRows | number | string | Minimum number of rows to display when multiline option is set to true. | |
multiline | bool | false | If true , a TextareaAutosize element is rendered. |
name | string | Name attribute of the input element. | |
notched | bool | false | If true , the outline is notched to accommodate the label. |
onChange | func | Callback fired when the value is changed. Signature: function(event: object) => void event: The event source of the callback. You can pull out the new value by accessing event.target.value (string). | |
placeholder | string | The short hint displayed in the input before the user enters a value. | |
readOnly | bool | false | It prevents the user from changing the value of the field (not from interacting with the field). |
required | bool | false | If true , the input element is required. The prop defaults to the value (false ) inherited from the parent FormControl component. |
rows | number | string | Number of rows to display when multiline option is set to true. | |
slots | { input?: elementType, root?: elementType } | {} | |
startAdornment | node | Start InputAdornment for this component. | |
sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. | |
type | string | 'text' | Type of the input element. It should be a valid HTML5 input type. |
value | any | The value of the input element, required for a controlled component. |
ref
则会被传递到根元素中。继承
尽管上文没有明文记录, InputBase 组件 的属性(props) 在组件OutlinedInput上同样是可用的。 你可以利用这一点来 指向嵌套组件CSS
规则名称 | 全局类名 | 描述 |
---|---|---|
root | .MuiOutlinedInput-root | Styles applied to the root element. |
colorSecondary | .MuiOutlinedInput-colorSecondary | Styles applied to the root element if the color is secondary. |
focused | .Mui-focused | Styles applied to the root element if the component is focused. |
disabled | .Mui-disabled | Styles applied to the root element if disabled={true} . |
adornedStart | .MuiOutlinedInput-adornedStart | Styles applied to the root element if startAdornment is provided. |
adornedEnd | .MuiOutlinedInput-adornedEnd | Styles applied to the root element if endAdornment is provided. |
error | .Mui-error | Pseudo-class applied to the root element if error={true} . |
sizeSmall | .MuiOutlinedInput-sizeSmall | Styles applied to the input element if size="small" . |
multiline | .MuiOutlinedInput-multiline | Styles applied to the root element if multiline={true} . |
notchedOutline | .MuiOutlinedInput-notchedOutline | Styles applied to the NotchedOutline element. |
input | .MuiOutlinedInput-input | Styles applied to the input element. |
inputSizeSmall | .MuiOutlinedInput-inputSizeSmall | Styles applied to the input element if size="small" . |
inputMultiline | .MuiOutlinedInput-inputMultiline | Styles applied to the input element if multiline={true} . |
inputAdornedStart | .MuiOutlinedInput-inputAdornedStart | Styles applied to the input element if startAdornment is provided. |
inputAdornedEnd | .MuiOutlinedInput-inputAdornedEnd | Styles applied to the input element if endAdornment is provided. |
您可以使用组件自定义选项对组件进行个性化:
- 具备 全局类名.
- 在自定义主体中,设定一个规则名称作为组件的
styleOverrides
属性的一部分。