Is it possible to bind the kendo angular date controls directly against a luxon date object?
I tried the following:
A direct binding results in a compile error:
<kendo-label text="Luxon Date">
<kendo-datepicker [value]="luxonDate"
placeholder="Choose a date ..."
></kendo-datepicker>
</kendo-label>
Error in src/app/app.component.ts (28:37)
Type 'DateTime' is missing the following properties from type 'Date': toDateString, toTimeString, toLocaleDateString, toLocaleTimeString, and 36 more.
A binding against a Javascript date, on the other hand, works
<kendo-label text="JSDate">
<kendo-datepicker [value]="date"
placeholder="Choose a date ..."
></kendo-datepicker>
</kendo-label>
Is there also a special adapter for the Kendo DatePicker like for Angular Material Date Components (@angular/material-luxon-adapter)?