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

![Image](https://github.com/user-attachments/assets/fe5d9bc1-76e7-494e-b1a6-f5db7b42583e)

Fix for a bug where the popup doesn't appear with latest tailwinds version v4. How i fixed this on src/components/icons/Input.tsx function showCalendarContainer one line 253 change div.classList.add("opacity-1"); -> div.classList.add("opacity-100"); function...

Added `appendToBody` prop feature. This is very handy we use datepicker in modals, popups, etc. where datapicker is rendered through parent component that makes it inside the modal. May fix...

Suddenly, the DatePicker causes the screen to look like this in development. Please let me know what the issue is and how to fix it ![Image](https://github.com/user-attachments/assets/e94378b9-5a82-45fc-87ff-afeacdcb997d)

This PR fixes an issue where shortcuts caused incorrect behavior, preventing the second calendar from syncing with the selected range. before ![before-fix](https://github.com/user-attachments/assets/ffbd54f9-75ba-4794-97e1-88fddf1cf247) after ![after-fix](https://github.com/user-attachments/assets/63dd73b3-507f-4f2b-acae-6c506366c362)

Implemented a highlight for the current active shortcut

To reproduce, set the default locale (e.g. `de`). For example, in the playground (`app/page.tsx`) replace this line: ```js - const [i18n, setI18n] = useState("en"); + const [i18n, setI18n] = useState("de");...

Hello, Thank you for building this awesome package. I love the smooth transitions ❤️ I wanted to point out a limitation and pitch a solutions. When we're using `Datepicker` within...

This small PR adds support for an `inputTabIndex` prop to allow adding a `tabIndex` to the input. Note that to verify in the playground you need to use the dev...