DatePicker utc not working

When converting a form from an edit page to template form, the DatePicker component has an error, utc does not work correctly.

My datepicker:
3

In this print I set the utc to true (in the radzen, not in the "elements"), you can see that the radzen component is set to the right value, but the primeNG component (which is what appears) is 3 hours shorter at any of the utc values.
2

1

The datePicker of the add page is also with the same error, the upper in the image was sent with the utc set to true, and the lower one as false.
4

JavaScript dates are by default created in the current user timezone. While this is convenient in most cases they get converted to UTC when serialized as JSON (before submitting it to a server). Since the timezone information is lost it is very hard to save the date properly at server-side unless you know what the client timezone is.

Radzen handles this by converting all dates to UTC by default. This however makes the dates appear "wrong" unless the utcDate pipe is used.

Here is an example that demonstrates the behavior:

Even though the same date is selected in both datepickers after JSON serialization the values are different. Since I am in GMT+2 there is a two hour difference.

Here is my test application: utc-dates.zip.

I know how utc works and used in the old form.
The problem is, whether or not I enable UTC in a datepicker of the edit, it always decreases 3 hours (GMT -3) in the hours taken by the query and because the database is old the dates are saved in it as hour in the middle of the night, so always appears in datepicker as a day ago.