With the following code:
from dash import Dash, dcc
app = Dash(__name__)
app.layout = [dcc.Input(type="number", value=0, step=0.1)]
if __name__ == "__main__":
app.run(debug=True, port=8063)
The step doesn't increment correctly with Dash 4.0.0rc5
In an app with a callback that shows the value as None:
vs
