Input type "datetime-local" doesnt work after upgrading to version 0.42

%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA

Creating it raises the error:

My layout:

app.layout = html.Div([
    dcc.Input(id='my-id', value='initial value', type='text'),
    html.Div(id='my-div'),

    dcc.Input(type="datetime-local",
              id="SelectionFrom",              
              ),

])

What i have to do to make it work?

I mean, clearly it is now not listed in “supported-behaviour” list. Will it ever be?

Having the same exact problem as you. Frustrating since it seemed to be working perfectly fine before.

Found a workaround in this theme.

Are there any updates other than this workaround? This seems like such an obvious feature to have, it’s weird that datetime-local wouldn’t be supported anymore.