Closed LaiaBigFish closed 1 month ago
Thanks for reporting @LaiaBigFish
It looks like this feature is not available yet in dmc, and I'll remove it from the docs until it's ready to go. In the meantime, would the dmc.DateTimePicker work for you? It's available, just not documented yet
https://mantine.dev/dates/date-time-picker/
import dash_mantine_components as dmc
from dash import Dash, _dash_renderer
_dash_renderer._set_react_version("18.2.0")
app = Dash(external_stylesheets=dmc.styles.ALL)
app.layout = dmc.MantineProvider(
dmc.DateTimePicker(
label="Pick date and time",
placeholder="Pick date and time",
)
)
if __name__ == "__main__":
app.run(debug=True)
Yes, that is perfect, thank you! I did not know it was available :)
The component returns only the date. Can replicate issue on website/using website example