Single properties - Dates

The formats relative to dates are managed using the date and time pickers from Vuetify.

The formatting and the pickers are heavily dependant on the locale option. To customize the formatting you can look at the Formatting functions section in the configuration documentation.

You can define props for the underlying components using the timePickerProps and datePickerProps options.

Notes about timezone management:

  • Date-Times are stored with the user's timezone offset (for example 2020-04-03T21:07:43+02:00 instead of the usual result of toISOString 2020-04-03T19:07:43.152Z, this gives more contextual information to your application
  • Times alone are stored without representing the offset but also without applying it in the first place. Meaning that if the user select 00:00 we will store 00:00:00Z whatever his timezone. This is because without the context of a date timezone management becomes meaningless.