In dayJs, disable date overflow without using strict format

Using dayJs, i want to disable overflow e.g :

-> 32-12-2023 16:00 //invalid with format dd-mm-yyyy HH:ss

We can do this using strict mode = true :

dayjs(date, format, true);

But in this case, this date becomes invalid :

-> 3-12-2023 16:00 //invalid

Can I keep a flexible format while disabling overflow ?

Thank you