Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency react-day-picker to v9 #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-day-picker (source) ^8.10.1 -> ^9.3.2 age adoption passing confidence

Release Notes

gpbl/react-day-picker (react-day-picker)

v9.3.2

Compare Source

Bug fixes.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.3.1...v9.3.2

v9.3.1

Compare Source

Bug fixes.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.3.0...v9.3.1

v9.3.0

Compare Source

This release adds the dayPickerProps to the values returned by useDayPicker, enabling access to these props from custom components.

Thanks to the work by @​rodgobbi, we could enhance the performance when selecting a range of days.

We’ve also updated the default style to preserve the font-family inherited from the parent element. To restore the previous behavior, update the .rdp-root CSS class to include font-family: system-ui.

What's Changed
New Contributors

Full Changelog: gpbl/react-day-picker@v9.2.1...v9.3.0

v9.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.2.0...v9.2.1

v9.2.0

Compare Source

This release addresses an issue with localization and applies some fixes for types and CSS exports.

What's Changed
New Contributors

Full Changelog: gpbl/react-day-picker@v9.1.4...v9.2.0

v9.1.4

Compare Source

This release fixes a localization issue and improves export compatibility across various Node.js environments.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.1.3...v9.1.4

v9.1.3

Compare Source

This release includes some minor build fixes and documentation updates.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.1.2...v9.1.3

v9.1.2

Compare Source

What's Changed

Full Changelog: gpbl/react-day-picker@v9.1.1...v9.1.2

v9.1.1

Compare Source

This release improves reliability for controlled mode and adds experimental support for time zones.

Time Zone Support

By integrating the @​date-fns/tz utilities for handling time zones, we have added a new experimental timeZone prop. Please see the updated docs for more details.

import { DayPicker, TZDate } from 'react-day-picker';
<DayPicker 
    timeZone="Europe/Athens"  // set the time zone
    disabled={TZDate.tz("Europe/Athens")}  // make sure you use `TZDate` to initialize dates
/> 

[!NOTE]
If you were using the experimental react-day-picker/utc module, you can skip now it. Remove the @date-fns/utc package and just pass timeZone="UTC" to <DayPicker />.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.1.0...v9.1.1

v9.1.0

Compare Source

Thank you for using and helping improve DayPicker. Here are the notable changes in this release:

  • Updated to date-fns v4.
    • Please update @date-fns/utc if you are using react-day-picker/utc.
  • Introduced new custom components for dropdowns and navigation buttons.
  • Fixed issues with controlled vs. uncontrolled selections not working as expected.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.0.9...v9.1.0

v9.0.9

Compare Source

This release fixes a regression causing the calendar to reset when selecting the days, improves compatibility with the previous version and fixes some other bugs.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.0.8...v9.0.9

v9.0.8

Compare Source

This release fixes a regression in v9.0.7 affecting range mode.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.0.7...v9.0.8

v9.0.7

Compare Source

This release improves compatibility with v8 and fix an issue with the calendar navigation.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.0.6...v9.0.7

v9.0.6

Compare Source

This release addresses the failed import of the common-js module for some app builder and add new data- attributes to help the integration with Tailwind. Thanks for your feedback!

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.0.5...v9.0.6

v9.0.5

Compare Source

This release improves the range mode behavior (see the updated docs) and address some styling issues.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.0.4...v9.0.5

v9.0.4

Compare Source

This release fixes some bugs and improves compatibility with v8.10. Thanks for your feedback and patience! 🤖

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.0.3...v9.0.4

v9.0.3

Compare Source

This release fixes two issues found with the grid style and the range mode.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.0.2...v9.0.3

v9.0.2

Compare Source

This update improves backward compatibility with v8.10.1 for range selection mode.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.0.1...v9.0.2

v9.0.1

Compare Source

This update improves backward compatibility with v8.10.1.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.0.0...v9.0.1

v9.0.0

Compare Source

DayPicker v9 is a major release including significant updates related to accessibility, customization and localization.

Install the Latest Version
npm install react-day-picker@latest

What’s New

  • Moved date-fns from peer dependencies to dependencies.
  • Added support for UTC dates and Jalali Calendar.
  • Enhanced accessibility to better comply with WCAG 2.1 recommendations.
  • Simplified styles and new CSS variables for easier customization.
  • Improved selection logic for range mode.
  • New dropdown-years and dropdown-months caption layouts.
  • New hideWeekdayRow and hideNavigation props.
  • Updated for a complete custom components support.
  • Improved typings and props for better compatibility in TypeScript strict mode.

Breaking Changes

While we tried to keep the API as stable as possible, some breaking changes were necessary to improve the library:

  • The updated ARIA labels could require new translations or updated unit tests selectors.
  • Custom CSS styles will likely break, due to the updated CSS classes and simplified styles.
  • Custom Components have new API and may break.
  • Some typings have been renamed or deprecated.
  • The useInput hook has been removed. See Input fields guide for more details.
  • onWeekNumberClick has been removed. Use a custom component to handle week number clicks.
  • The updated build system to ESM and CommonJS could break some custom bundler.
Upgrading Guide

We prepared a Upgrading guide for help upgrading your app to v9. We welcome feedback about the upgrade process, to ensure it's smooth for everyone.

Compatibility

DayPicker v9 is compatible with React 16.8+.

Get Support and Report Issues

Get support, report issues, and provide feedback on the Discussion forums. Thanks.

New Contributors


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Jul 22, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
urban-wheels ❌ Failed (Inspect) Nov 18, 2024 0:10am

@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from a5c74c4 to dd0c908 Compare July 22, 2024 04:43
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from dd0c908 to 663c69b Compare July 22, 2024 13:32
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 663c69b to 61fa580 Compare July 23, 2024 02:01
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 61fa580 to 431f775 Compare July 24, 2024 14:04
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 431f775 to 9262475 Compare July 29, 2024 04:47
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 9262475 to b9e8d64 Compare July 30, 2024 03:10
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from b9e8d64 to 6bb0dc0 Compare July 31, 2024 13:12
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 6bb0dc0 to c0aebfd Compare August 5, 2024 00:04
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from c0aebfd to c69cb30 Compare August 8, 2024 01:08
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from c69cb30 to 33c3daf Compare September 8, 2024 00:38
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 33c3daf to 67c3232 Compare September 17, 2024 13:28
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 67c3232 to 56b25b4 Compare September 17, 2024 13:43
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 56b25b4 to 711ce07 Compare September 17, 2024 14:27
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 711ce07 to 2792825 Compare September 17, 2024 14:43
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 419b3d2 to e73e402 Compare September 22, 2024 21:58
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from e73e402 to 26e82a3 Compare September 27, 2024 00:31
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 26e82a3 to ec11cc7 Compare October 5, 2024 06:28
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from ec11cc7 to 5c4d87a Compare October 5, 2024 10:34
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 5c4d87a to 5447e75 Compare October 5, 2024 13:28
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 5447e75 to 37fe015 Compare October 14, 2024 03:57
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 37fe015 to d992217 Compare October 15, 2024 14:36
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from d992217 to 3f92336 Compare October 21, 2024 04:07
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 3f92336 to 11152b3 Compare October 23, 2024 11:32
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 11152b3 to 39d7e34 Compare October 27, 2024 19:22
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 39d7e34 to 74a93e4 Compare October 28, 2024 04:18
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from 74a93e4 to dee6a23 Compare November 5, 2024 13:09
@renovate renovate bot force-pushed the renovate/react-day-picker-9.x branch from dee6a23 to ca0fcc0 Compare November 16, 2024 16:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants