diff --git a/docs/pages/api-docs/form-control.md b/docs/pages/api-docs/form-control.md index 665b84e0413450..9df36c85cb0d59 100644 --- a/docs/pages/api-docs/form-control.md +++ b/docs/pages/api-docs/form-control.md @@ -50,13 +50,13 @@ You can find one composition example below and more going to [the demos](/compon | component | elementType | 'div' | The component used for the root node. Either a string to use a DOM element or a component. | | disabled | bool | false | If `true`, the label, input and helper text should be displayed in a disabled state. | | error | bool | false | If `true`, the label should be displayed in an error state. | +| focused | bool | | If `true`, the component will be displayed in focused state. | | fullWidth | bool | false | If `true`, the component will take up the full width of its container. | | hiddenLabel | bool | false | If `true`, the label will be hidden. This is used to increase density for a `FilledInput`. Be sure to add `aria-label` to the `input` element. | | margin | 'none'
| 'dense'
| 'normal'
| 'none' | If `dense` or `normal`, will adjust vertical spacing of this and contained components. | | required | bool | false | If `true`, the label will indicate that the input is required. | | size | 'small'
| 'medium'
| | The size of the text field. | | variant | 'standard'
| 'outlined'
| 'filled'
| 'standard' | The variant to use. | -| visuallyFocused | bool | | If `true`, the component will be displayed in focused state. | The `ref` is forwarded to the root element.