i want the text to be upeercase with ant design, i tried this:
<Form form={form} layout='vertical' autoComplete='off'>
<Form.Item
name='apellido_empleado'
label='Apellidos'
rules={[
{
required: true,
message: 'Por favor ingrese los apellidos',
transform: (v) => v.toUpperCase(),
},
]}>
<Input />
</Form.Item>
it seems that the property transform only work for validations.