Dash Mantine DatePicker - inputFormat

Just checking in on the functionality of the Dash Mantine DatePicker.

as I have allowFreeInput enabled and
inputFormat=‘DD-MM-YYYY’,
locale=‘pt-br’,

When I enter the date manually in the input it interprets it as MM-DD-YYYY and not in the format I am informing

dmc.DatePicker(
    fixOnBlur=True,
    allowFreeInput=True,
    label="Fim:",
    id='date-picker_final',
    inputFormat='DD-MM-YYYY',
    locale='pt-br',
    value="",
    clearable=True,
    minDate="",
    maxDate="",


),

image

image