react-tailwindcss-datepicker
react-tailwindcss-datepicker copied to clipboard
Modern date range picker component for React using Tailwind 3 and dayjs. Alternative to Litepie Datepicker.
 Whether the Datepicker container is at a defined width or not, the calendar or wrapper stays narrow Below is the component code: `/// return ( );` ///// `div className="flex...
If you declare dayjs.locale() somewhere alongside using this library, the weekday matching function below will fail: [react-tailwindcss-datepicker/src/helpers/index.ts](https://github.com/onesine/react-tailwindcss-datepicker/blob/bf063fe6458787622ca500ec9a33d9b2feb955d1/src/helpers/index.ts#L174) Line 174 in [bf063fe](https://github.com/onesine/react-tailwindcss-datepicker/commit/bf063fe6458787622ca500ec9a33d9b2feb955d1) ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"].forEach( because the...
```js const [value, setValue] = useState({ startDate: null endDate: null }); ``` A comma is missing in the example above.
Hello. is there any way to use Datepicker in modal/dialog/popover/etc such a way it will be above the container it's placed in? By default it looks like this: https://codesandbox.io/s/happy-mopsa-8r4sgj ...
### Description Hello @onesine & Team, I am opening this PR to show the selected shortcut in the calendar dropdown. This is to make the date selector more UX-friendly so...
Hi it would be nice if the calender is more customizable, like setting the padding, the background color the height and width, calender font size, etc
I see a weird behavior that updating the content of the input field manually normally does update the state of the widget and the date it displays. But not if...
If you click the "Last 30 days" shortcut, and then you re-open the picker to see the range on the calendar, the first month of the range is displayed and...
When implementing the package my custom tailwind styles (through tailwind.config.js) gets overwritten and I loose all my borders colors. Not sure if it overrides other colors, seems not. Seems like...
Upon adding `'./node_modules/react-tailwindcss-datepicker/dist/index.esm.js'` to my `tailwindconfig.js`'s content array some of my custom tailwind styles in separate files from where I'm calling the `Datepicker` component were overriden. This seems to only...