Feature: #80126 maximum field length not set as attribute "maxlength"

See forge#80126 See forge#80128

Description

If a form element is set to be use the 'String length' server side validation through the form editor, the client side validation properties minlength and maxlength will be rendered.

Result:

renderables:
  -
    type: <formElementType>
    ...
    properties:
      fluidAdditionalAttributes:
        minlength: 2
        maxlength: 3
        ...
    validators:
      -
        identifier: StringLength
        options:
          minimum: 2
          maximum: 3