Toolkit

TK.DateTime

{
    _: TK.DateTime
}
{
    _: TK.DateTime,
    EnableTime: false
}
{
    _: TK.DateTime,
    Data: "2022-04-27 13:37:00", // Local, or "2022-04-27T11:37:00Z"  for UTC
    readOnly: true,
    disabled: true
}

Relative support

{
    _: TK.DateTime,
    EnableRelative: true
}

Without timezone

This will hide the timezone switching options and will always return the time as UTC.

{
    _: TK.DateTime,
    EnableTimeZone: false
}

Independent

Disables the sharing of the timezone setting between other datetime components.

{
    _: TK.DateTime,
    TimeZone: "UTC", // or Local
    UseGlobalTimeZone: false
}