aboveyunhai / chakra-dayzed-datepicker

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

feat: Allow to configure firstDayOfWeek #26

Closed biko8 closed 1 year ago

biko8 commented 1 year ago

I'm creating website for Spain, and in spain the thay of the week is monday.

Changes on this PR are to allow users to configure firstDayOfWeek.

aboveyunhai commented 1 year ago

@biko8 nice work! let me check if there is a more dynamic way to tick the offset so you don't need to pass your own weekday_name with a different order.

aboveyunhai commented 1 year ago

now you should be able to do the following without all the configs

       configs={{
            firstDayOfWeek: 1,
          }}
aboveyunhai commented 1 year ago

npm@0.2.4 is out.

biko8 commented 1 year ago

Nice work! Thank you!