diff --git a/docs/3.x.x/en/plugin-development/ui-components.md b/docs/3.x.x/en/plugin-development/ui-components.md
index 2f98ce7c7c..639d50a8f9 100644
--- a/docs/3.x.x/en/plugin-development/ui-components.md
+++ b/docs/3.x.x/en/plugin-development/ui-components.md
@@ -185,7 +185,7 @@ export default FooPage;
***
-## Input
+## InputsIndex
Strapi provides a built-in input library which includes :
- All kind of inputs
@@ -193,7 +193,6 @@ Strapi provides a built-in input library which includes :
- Error highlight
- i18n
-> This component is likely to be deprecated in favor of InputsWithIndex
### Usage
@@ -202,6 +201,7 @@ Strapi provides a built-in input library which includes :
| `addon` | string | no | Allows to add a string addon in your input, based on [Bootstrap](https://v4-alpha.getbootstrap.com/components/input-group/#basic-example). Ex: `` |
| `addRequiredInputDesign` | bool | no | Allows to add an asterix on the input. Ex: `` |
| `customBootstrapClass` | string | no | Allows to override the input bootstrap col system. Ex: `` |
+| customInputs | Object | no | Allows to add a new input type |
| `deactivateErrorHighlight` | bool | no | Prevents from displaying error highlight in the input: Ex: `` |
| `didCheckErrors` | bool | no | Use this props to display errors after submitting a form. Ex: `` |
| `disabled` | bool | no | Disable the input. Ex: `` |
@@ -228,7 +228,15 @@ Strapi provides a built-in input library which includes :
import React from 'react';
// Make sure you don't have a component called Input inside your ./components folder
// It will import the one in your components folder instead.
-import Input from 'components/Input';
+import Input from 'components/InputsIndex';
+
+const CustomInput = (props) => {
+ return (
+