Forms API now supports setting data attributes
When you are displaying a form on a page using the API tag for the form you can also pass some field configuration to the form through the API tag.
For example, you can specify the default value for a specific field, or give a specific form field a *class* attribute value.
You can now set custom *data-* attributes on form fields through the form API tag.
In this example we are setting the "*data-test*" attribute to "My Value".
```twig
{{ _api.form.get.key('contact-form').field({'fieldKey': {'data': {'test': 'My Value'}}}) }}
```