diff --git a/docs/dev/reference/dca/fields.md b/docs/dev/reference/dca/fields.md
index edd7e0424..b1e58bcfb 100644
--- a/docs/dev/reference/dca/fields.md
+++ b/docs/dev/reference/dca/fields.md
@@ -129,72 +129,73 @@ create mandatory fields, add a date picker or define the rows and columns of a
textarea. You can also modify the field appearance or enable data encryption.
Each field can be validated against a regular expression.
-| Key | Value | Description |
-|:-------------------|:---------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| addWizardClass | true/false (`bool`) | Whether or not to add the `wizard` CSS class for the widget if a wizard icon is in use. Default: `true`. _Note:_ this setting does not exist anymore in Contao **4.12** and up. |
-| allowHtml | true/false (`bool`) | If true the current field will accept HTML input (see "Allowed HTML tags" in the back end System => Settings). |
-| alwaysSave | true/false (`bool`) | If true the field will always be saved, even if its value has not changed. This can be useful in conjunction with a [load callback]({{% relref "callbacks#fields-field-load" %}}). |
-| basicEntities | true/false (`bool`) | {{< version-tag "5.0" >}} If true converts basic entities like ``, `&` etc. back to their Contao representation `[&]`, `[-]` etc. when editing and vice versa when saving. |
-| blankOptionLabel | Label (`string`) | Label for the blank option (defaults to `-`). |
-| chosen | true/false (`bool`) | Native selects enhanced with [Chosen](http://harvesthq.github.io/chosen/). |
-| collapseUncheckedGroups | true/false (`bool`) | {{< version-tag "4.13" >}} If true all option groups without at least one checked option will be collapsed. The first group of options will not be collapsed if there are no options selected at all. Applies to checkbox widgets with a nested array of options only. |
-| colorpicker | true/false (`bool`) | If true the current field will have a `mooRainbow` color picker. |
-| cols | Columns (`integer`) | Number of columns (used for `textarea`, `radioTable` and `tableWizard` fields). |
-| csv | Delimiter (`string`) | The choice of this field will not be stored as serialized string but rather as given delimiter-separated list. Example: `'eval' => ['csv'=>',']` |
-| customRgxp | Regular expression (`string`) | {{< version-tag "4.11" >}} Custom regular expression to be used when using `'rgxp' => 'custom'` |
-| errorMsg | Custom Message (`string`) | Custom error message to be used when using `'rgxp' => 'custom'` |
-| customTpl | Filename (`string`) | Use own template for this input field `'customTpl' => 'template-file-name'` |
-| datepicker | true/false (`bool`) | If true the current field will have a [MooTools-DatePicker](https://github.com/arian/mootools-datepicker). |
-| dcaPicker | true/false (`bool`) | If true the general purpose picker will be shown. Allows to pick different records from the system and return them as an insert tag. |
-| decodeEntities | true/false (`bool`) | If true HTML entities will be decoded. Note that HTML entities are always decoded if allowHtml is true. |
-| disabled | true/false (`bool`) | Disables the field (not supported by all field types). |
-| doNotCopy | true/false (`bool`) | If true the current field will not be duplicated if the record is duplicated. |
-| doNotSaveEmpty | true/false (`bool`) | If true the field will not be saved if it is empty. |
-| doNotShow | true/false (`bool`) | If true the current field will not be shown in "edit all" or "show details" mode. |
-| doNotTrim | true/false (`bool`) | If true the whitespace of the input of this field will not be trimmed before saving. |
-| encrypt | true/false (`bool`) | If true the field value will be stored encrypted. |
-| extensions | File extensions (`string`) | Limits the file tree to certain file types (comma separated list). Applies to file trees only. |
-| fallback | true/false (`bool`) | If true the field can only be assigned once per table. |
-| feEditable | true/false (`bool`) | If true the current field can be edited in the front end. Applies to table `tl_member` only. |
-| feGroup | Group name (`string`) | **personal** personal data
**address** address details
**contact** contact details
**login** login details (table `tl_member` only)
You can also define your own groups. |
-| fieldType | Input field type (`string`) | **checkbox** allow multiple selections
**radio** allow a single selection only Applies to file and page trees only. |
-| files | true/false (`bool`) | If true files and folders will be shown. If false, only folders will be shown. Applies to file trees only. |
-| filesOnly | true/false (`bool`) | Removes the radio buttons or checkboxes next to folders. Applies to file trees only. |
-| findInSet | true/false (`bool`) | Sort by the actual option values instead of their labels. |
-| helpwizard | true/false (`bool`) | If true the [helpwizard](#explanation)
icon will appear next to the field label. |
-| hideInput | true/false (`bool`) | If true the field value will be hidden (it is still visible in the page source though!). |
-| includeBlankOption | true/false (`bool`) | If true a blank option will be added to the options array. Applies to drop-down menus only. |
-| isAssociative | true/false (`boolean`) | Indicates that an array of options is indeed an associative array. Example of an ambiguous array of options: `['0' => 'Zero', '1' => 'One']`. |
-| isBoolean | true/false (`bool`) | Indicates that a particular field is boolean. |
-| isGallery | true/false (`bool`) | Displays selected files of a `fileTree` widget as an image gallery. |
-| isHexColor | true/false (`bool`) | Defines the input as being a color definition in Hex notation. Invalid characters will automatically be removed. |
-| isSortable | true/false (`bool`) | {{< version-tag "4.10" >}} Enable sorting for the selected items. Applies to file trees and pickers. |
-| mandatory | true/false (`bool`) | If true the field cannot be empty. |
-| maxlength | Maximum length (`integer`) | Maximum number of characters that is allowed in the current field. |
-| maxval | Maximum value (`integer`) | Maximum number value to be checked (upper bound). |
-| metaFields | `metaWizard` fields (`array`) | Defines the available fields for the `metaWizard` input type. |
-| minlength | Minimum length (`integer`) | Minimum number of characters that have to be entered. |
-| minval | Minimum value (`integer`) | Minimum number value to be checked (lower bound). |
-| multiple | true/false (`bool`) | Make the input field multiple. Applies to text fields, select menus, radio buttons and checkboxes. Required for the checkbox wizard. |
-| nospace | true/false (`bool`) | If true whitespace characters will not be allowed. |
-| orderField | Order column (`string`) | Database column where the order of the selected items gets stored. This is only required if `isGallery` or `isDownloads` is set. Applies to file trees only. |
-| path | Path (`string`) | Custom root directory for file trees. Applies to file trees only. |
-| placeholder | Placeholder (`string`) | Displays a placeholder for the respective field.
-| preserveTags | true/false (`bool`) | If true no HTML tags will be removed at all. |
-| readonly | true/false (`bool`) | Makes the field read only (not supported by all field types). |
-| rgxp | Regular expression (`string`) | Limits the user input to certain rules (see paragraph [Regular Expressions](#regular-expressions)). |
-| rows | Rows (`integer`) | Number of rows (used for `textarea` and `tableWizard` fields). |
-| rte | Rich text editor file (`string`) | `ace` or `tinyMCE` for example. For `ace` you can also define the type, e.g. `ace\|js` or `ace\|php`. _Note:_ `allowHtml` and `decodeEntities` is automatically enabled if `rte` equals to `ace\|html` or if it starts with `tiny`. |
-| size | Size (`integer`) | Size of a multiple select menu or number of input fields. |
-| spaceToUnderscore | true/false (`bool`) | If true any whitespace character will be replaced by an underscore. |
-| style | Style attributes (`string`) | Style attributes (e.g. `border:2px`). |
-| submitOnChange | true/false (`bool`) | If true the form will be submitted when the field value changes. |
-| tl_class | CSS class(es) (`string`) | Add the given CSS class(es) to the generated HTML. See section [Arranging Fields](/reference/dca/palettes/#arranging-fields) for supported values. |
-| trailingSlash | true/false (`bool`) | If true a trailing slash will be added to the field value. If false, an existing trailing slash will be removed from the field value. |
-| unique | true/false (`bool`) | If true the field value cannot be saved if it exists already. |
-| uploadFolder | Path (`string`) | The target path for file uploads of the `upload` widget. |
-| useRawRequestData | true/false (`bool`) | If true the raw request data from the Symfony request is used. **Warning:** input filtering is bypassed! Make sure the data is never output anywhere in the back end unescaped which it would if you added the field to a regular back end list view for example. |
-| versionize | true/false (`bool`) | If false skip this field in the versioning. Default `true`. |
+| Key | Value | Description |
+|:------------------------|:---------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| addWizardClass | true/false (`bool`) | Whether or not to add the `wizard` CSS class for the widget if a wizard icon is in use. Default: `true`. _Note:_ this setting does not exist anymore in Contao **4.12** and up. |
+| allowHtml | true/false (`bool`) | If true the current field will accept HTML input (see "Allowed HTML tags" in the back end System => Settings). |
+| alwaysSave | true/false (`bool`) | If true the field will always be saved, even if its value has not changed. This can be useful in conjunction with a [load callback]({{% relref "callbacks#fields-field-load" %}}). |
+| autogrow | true/false (`bool`) | {{< version-tag "5.7" >}} If false, disables the autogrow for the Textarea widget. Default `true`. |
+| basicEntities | true/false (`bool`) | {{< version-tag "5.0" >}} If true converts basic entities like ``, `&` etc. back to their Contao representation `[&]`, `[-]` etc. when editing and vice versa when saving. |
+| blankOptionLabel | Label (`string`) | Label for the blank option (defaults to `-`). |
+| chosen | true/false (`bool`) | Native selects enhanced with [Chosen](http://harvesthq.github.io/chosen/). |
+| collapseUncheckedGroups | true/false (`bool`) | {{< version-tag "4.13" >}} If true all option groups without at least one checked option will be collapsed. The first group of options will not be collapsed if there are no options selected at all. Applies to checkbox widgets with a nested array of options only. |
+| colorpicker | true/false (`bool`) | If true the current field will have a `mooRainbow` color picker. |
+| cols | Columns (`integer`) | Number of columns (used for `textarea`, `radioTable` and `tableWizard` fields). |
+| csv | Delimiter (`string`) | The choice of this field will not be stored as serialized string but rather as given delimiter-separated list. Example: `'eval' => ['csv'=>',']` |
+| customRgxp | Regular expression (`string`) | {{< version-tag "4.11" >}} Custom regular expression to be used when using `'rgxp' => 'custom'` |
+| errorMsg | Custom Message (`string`) | Custom error message to be used when using `'rgxp' => 'custom'` |
+| customTpl | Filename (`string`) | Use own template for this input field `'customTpl' => 'template-file-name'` |
+| datepicker | true/false (`bool`) | If true the current field will have a [MooTools-DatePicker](https://github.com/arian/mootools-datepicker). |
+| dcaPicker | true/false (`bool`) | If true the general purpose picker will be shown. Allows to pick different records from the system and return them as an insert tag. |
+| decodeEntities | true/false (`bool`) | If true HTML entities will be decoded. Note that HTML entities are always decoded if allowHtml is true. |
+| disabled | true/false (`bool`) | Disables the field (not supported by all field types). |
+| doNotCopy | true/false (`bool`) | If true the current field will not be duplicated if the record is duplicated. |
+| doNotSaveEmpty | true/false (`bool`) | If true the field will not be saved if it is empty. |
+| doNotShow | true/false (`bool`) | If true the current field will not be shown in "edit all" or "show details" mode. |
+| doNotTrim | true/false (`bool`) | If true the whitespace of the input of this field will not be trimmed before saving. |
+| encrypt | true/false (`bool`) | If true the field value will be stored encrypted. |
+| extensions | File extensions (`string`) | Limits the file tree to certain file types (comma separated list). Applies to file trees only. |
+| fallback | true/false (`bool`) | If true the field can only be assigned once per table. |
+| feEditable | true/false (`bool`) | If true the current field can be edited in the front end. Applies to table `tl_member` only. |
+| feGroup | Group name (`string`) | **personal** personal data
**address** address details
**contact** contact details
**login** login details (table `tl_member` only)
You can also define your own groups. |
+| fieldType | Input field type (`string`) | **checkbox** allow multiple selections
**radio** allow a single selection only Applies to file and page trees only. |
+| files | true/false (`bool`) | If true files and folders will be shown. If false, only folders will be shown. Applies to file trees only. |
+| filesOnly | true/false (`bool`) | Removes the radio buttons or checkboxes next to folders. Applies to file trees only. |
+| findInSet | true/false (`bool`) | Sort by the actual option values instead of their labels. |
+| helpwizard | true/false (`bool`) | If true the [helpwizard](#explanation)
icon will appear next to the field label. |
+| hideInput | true/false (`bool`) | If true the field value will be hidden (it is still visible in the page source though!). |
+| includeBlankOption | true/false (`bool`) | If true a blank option will be added to the options array. Applies to drop-down menus only. |
+| isAssociative | true/false (`boolean`) | Indicates that an array of options is indeed an associative array. Example of an ambiguous array of options: `['0' => 'Zero', '1' => 'One']`. |
+| isBoolean | true/false (`bool`) | Indicates that a particular field is boolean. |
+| isGallery | true/false (`bool`) | Displays selected files of a `fileTree` widget as an image gallery. |
+| isHexColor | true/false (`bool`) | Defines the input as being a color definition in Hex notation. Invalid characters will automatically be removed. |
+| isSortable | true/false (`bool`) | {{< version-tag "4.10" >}} Enable sorting for the selected items. Applies to file trees and pickers. |
+| mandatory | true/false (`bool`) | If true the field cannot be empty. |
+| maxlength | Maximum length (`integer`) | Maximum number of characters that is allowed in the current field. |
+| maxval | Maximum value (`integer`) | Maximum number value to be checked (upper bound). |
+| metaFields | `metaWizard` fields (`array`) | Defines the available fields for the `metaWizard` input type. |
+| minlength | Minimum length (`integer`) | Minimum number of characters that have to be entered. |
+| minval | Minimum value (`integer`) | Minimum number value to be checked (lower bound). |
+| multiple | true/false (`bool`) | Make the input field multiple. Applies to text fields, select menus, radio buttons and checkboxes. Required for the checkbox wizard. |
+| nospace | true/false (`bool`) | If true whitespace characters will not be allowed. |
+| orderField | Order column (`string`) | Database column where the order of the selected items gets stored. This is only required if `isGallery` or `isDownloads` is set. Applies to file trees only. |
+| path | Path (`string`) | Custom root directory for file trees. Applies to file trees only. |
+| placeholder | Placeholder (`string`) | Displays a placeholder for the respective field.
+| preserveTags | true/false (`bool`) | If true no HTML tags will be removed at all. |
+| readonly | true/false (`bool`) | Makes the field read only (not supported by all field types). |
+| rgxp | Regular expression (`string`) | Limits the user input to certain rules (see paragraph [Regular Expressions](#regular-expressions)). |
+| rows | Rows (`integer`) | Number of rows (used for `textarea` and `tableWizard` fields). |
+| rte | Rich text editor file (`string`) | `ace` or `tinyMCE` for example. For `ace` you can also define the type, e.g. `ace\|js` or `ace\|php`. _Note:_ `allowHtml` and `decodeEntities` is automatically enabled if `rte` equals to `ace\|html` or if it starts with `tiny`. |
+| size | Size (`integer`) | Size of a multiple select menu or number of input fields. |
+| spaceToUnderscore | true/false (`bool`) | If true any whitespace character will be replaced by an underscore. |
+| style | Style attributes (`string`) | Style attributes (e.g. `border:2px`). |
+| submitOnChange | true/false (`bool`) | If true the form will be submitted when the field value changes. |
+| tl_class | CSS class(es) (`string`) | Add the given CSS class(es) to the generated HTML. See section [Arranging Fields](/reference/dca/palettes/#arranging-fields) for supported values. |
+| trailingSlash | true/false (`bool`) | If true a trailing slash will be added to the field value. If false, an existing trailing slash will be removed from the field value. |
+| unique | true/false (`bool`) | If true the field value cannot be saved if it exists already. |
+| uploadFolder | Path (`string`) | The target path for file uploads of the `upload` widget. |
+| useRawRequestData | true/false (`bool`) | If true the raw request data from the Symfony request is used. **Warning:** input filtering is bypassed! Make sure the data is never output anywhere in the back end unescaped which it would if you added the field to a regular back end list view for example. |
+| versionize | true/false (`bool`) | If false skip this field in the versioning. Default `true`. |
{{% notice warning %}}
Using the `encrypt` option is deprecated and its internal implementation relies