aboveyunhai / chakra-dayzed-datepicker

Chakra UI + Dayzed = datepicker
https://aboveyunhai.github.io/chakra-dayzed-datepicker/
MIT License
225 stars 48 forks source link

Input date manually #74

Closed amerhalilovic closed 1 month ago

amerhalilovic commented 8 months ago

I can't enter the value inside <SingleDatepicker>, is that possible?

<Controller control={control} name="due_date" render={({ field }) => { const { value, onChange } = field; return ( <SingleDatepicker configs={{ dateFormat: "dd/MM/yyyy" }} usePortal onDateChange={onChange} date={value} {...field} /> ); }} />