react-tailwindcss-datepicker icon indicating copy to clipboard operation
react-tailwindcss-datepicker copied to clipboard

Modern date range picker component for React using Tailwind 3 and dayjs. Alternative to Litepie Datepicker.

Results 152 react-tailwindcss-datepicker issues
Sort by recently updated
recently updated
newest added

Hi, Thanks for your work on this component. I have a few questions regarding its usage: 1. ~Is it possible to override the tailwind styles applied to the date picker...

There is option to disable specific dates ``` ``` Is there option to disable all the weekends (Saturday and Sunday) ? With like `Date.getDay() === 0 || Date.getDay() === 6)`

I've added an option to include a 'required' attribute on the input. It's a simple update, will submit pull request next if you'd like.

When using `displayFormat`s that use long names of the months like ``` displayFormat={"DD.MMMM.YYYY"} ``` this is always displayed in English. It should however use the localization set with `i18n`.

Not sure if this is something possible but it seems currently there is no way to prevent the clear button from opening the DatePicker again when it is clicked. For...

I have this issue that I need the calendar class with fixed instead of absolute

Solution for previous days calculation. Problem: when i18n enabled if there is multiple instance of calendar previous date calculation wrong. Solution: dayString gets ddd when it comes with i18n support...

I added `right-0` to the `containerClass` in order to display the container towards the left (because the input it was on the right edge of the screen), but how can...

When using the value from the picker which is set by onChange, the value is string When trying to use it for startFrom then it fails with the error Type...

https://github.com/onesine/react-tailwindcss-datepicker/blob/bf063fe6458787622ca500ec9a33d9b2feb955d1/src/components/Datepicker.tsx#L169-L185 Currently, calendar popup direction (left or right) is determined by comparing window center and component center. However, its calculation is only executed on initial component loading because statements are...