Skip to content

Commit

Permalink
Update dependency react-day-picker to v9 (#20)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-day-picker](https://daypicker.dev)
([source](https://redirect.github.com/gpbl/react-day-picker)) |
[`^8.10.1` ->
`^9.0.0`](https://renovatebot.com/diffs/npm/react-day-picker/8.10.1/9.1.3)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/react-day-picker/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-day-picker/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-day-picker/8.10.1/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-day-picker/8.10.1/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>gpbl/react-day-picker (react-day-picker)</summary>

###
[`v9.1.3`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.1.3)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.1.2...v9.1.3)

This release includes some minor build fixes and documentation updates.

#### What's Changed

- build: add `tsconfig-base.json` to package by
[@&#8203;luucvanderzee](https://redirect.github.com/luucvanderzee) in
[https://github.com/gpbl/react-day-picker/pull/2492](https://redirect.github.com/gpbl/react-day-picker/pull/2492)
- build(deps): bump
[@&#8203;date-fns/tz](https://redirect.github.com/date-fns/tz) to 1.1.2
by [@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2494](https://redirect.github.com/gpbl/react-day-picker/pull/2494)

#### New Contributors

- [@&#8203;luucvanderzee](https://redirect.github.com/luucvanderzee)
made their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2492](https://redirect.github.com/gpbl/react-day-picker/pull/2492)

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

###
[`v9.1.2`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.1.2)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.1.1...v9.1.2)

#### What's Changed

- fix: validate HTML output by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2475](https://redirect.github.com/gpbl/react-day-picker/pull/2475)
- fix: use of `dateLib` to work when mocking dates by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2481](https://redirect.github.com/gpbl/react-day-picker/pull/2481)
- fix(types): Improve `DayPickerContext` type by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2479](https://redirect.github.com/gpbl/react-day-picker/pull/2479)
- build(deps): update
[@&#8203;date-fs/tz](https://redirect.github.com/date-fs/tz) package by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2480](https://redirect.github.com/gpbl/react-day-picker/pull/2480)

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

###
[`v9.1.1`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.1.1)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.1.0...v9.1.1)

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

#### Time Zone Support

By integrating the
[@&#8203;date-fns/tz](https://redirect.github.com/date-fns/tz) utilities
for handling time zones, we have added a new experimental `timeZone`
prop. Please see the [updated
docs](https://daypicker.dev/docs/localization#time-zone) for more
details.

```tsx
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

- fix: make sure internal state is not updated in controlled mode by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2473](https://redirect.github.com/gpbl/react-day-picker/pull/2473)
- feat: new `timeZone` prop (experimental) by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2467](https://redirect.github.com/gpbl/react-day-picker/pull/2467)
- feat: export locales from `react-day-picker/locale` by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2474](https://redirect.github.com/gpbl/react-day-picker/pull/2474)

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

###
[`v9.1.0`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.1.0)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.9...v9.1.0)

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

- build: update to date-fns@4 by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2466](https://redirect.github.com/gpbl/react-day-picker/pull/2466)
- feat: add `PreviousMonthButton` and `NextMonthButton` to custom
components by [@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2437](https://redirect.github.com/gpbl/react-day-picker/pull/2437)
- feat: add `MonthsDropdown` and `YearsDropdown` custom components by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2454](https://redirect.github.com/gpbl/react-day-picker/pull/2454)
- feat(types): remove restrictions on `components` and `classNames` prop
types by [@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2452](https://redirect.github.com/gpbl/react-day-picker/pull/2452)
- feat(types): add `OnSelectHandler` type by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2436](https://redirect.github.com/gpbl/react-day-picker/pull/2436)
- fix: controlled vs. uncontrolled selections by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2462](https://redirect.github.com/gpbl/react-day-picker/pull/2462)
- fix: use correct month to disable `Chevron` of `NextMonthButton` by
[@&#8203;qgadrian](https://redirect.github.com/qgadrian) in
[https://github.com/gpbl/react-day-picker/pull/2449](https://redirect.github.com/gpbl/react-day-picker/pull/2449)
- fix(types): add missing `ClassNames` types for dropdowns by
[@&#8203;hsnaydd](https://redirect.github.com/hsnaydd) in
[https://github.com/gpbl/react-day-picker/pull/2441](https://redirect.github.com/gpbl/react-day-picker/pull/2441)
- chore: remove unnecessary `labelOptions` from `labelNext` and
`labelPrevious` by [@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2434](https://redirect.github.com/gpbl/react-day-picker/pull/2434)
- chore: move `Nav` to its own component by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2435](https://redirect.github.com/gpbl/react-day-picker/pull/2435)
- chore(types): deprecate `Button` in `CustomComponents` by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2439](https://redirect.github.com/gpbl/react-day-picker/pull/2439)

#### New Contributors

- [@&#8203;qgadrian](https://redirect.github.com/qgadrian) made their
first contribution in
[https://github.com/gpbl/react-day-picker/pull/2449](https://redirect.github.com/gpbl/react-day-picker/pull/2449)

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

###
[`v9.0.9`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.9)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.8...v9.0.9)

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

- feat: added back more properties to the value returned by
`useDayPicker` by [@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2427](https://redirect.github.com/gpbl/react-day-picker/pull/2427)
- fix: calendar is reset after selecting a day by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2429](https://redirect.github.com/gpbl/react-day-picker/pull/2429)
- fix(style): remove unnecessary styles to buttons in footer in
DayPicker by [@&#8203;hsnaydd](https://redirect.github.com/hsnaydd) in
[https://github.com/gpbl/react-day-picker/pull/2383](https://redirect.github.com/gpbl/react-day-picker/pull/2383)
- fix(style): missing class names for months and years dropdowns
[@&#8203;hsnaydd](https://redirect.github.com/hsnaydd) in
[https://github.com/gpbl/react-day-picker/pull/2394](https://redirect.github.com/gpbl/react-day-picker/pull/2394)
- fix(utilities): `dateMatchModifiers` to use `defaultDateLib` by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2413](https://redirect.github.com/gpbl/react-day-picker/pull/2413)
- fix(types): add `formatWeekNumberHeader` to `Formatters` by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2412](https://redirect.github.com/gpbl/react-day-picker/pull/2412)
- fix(types): add missing `ChevronProps` export by
[@&#8203;rishabh-ink](https://redirect.github.com/rishabh-ink) in
[https://github.com/gpbl/react-day-picker/pull/2363](https://redirect.github.com/gpbl/react-day-picker/pull/2363)

#### New Contributors

- [@&#8203;mahata](https://redirect.github.com/mahata) made their first
contribution in
[https://github.com/gpbl/react-day-picker/pull/2388](https://redirect.github.com/gpbl/react-day-picker/pull/2388)
- [@&#8203;1eeminhyeong](https://redirect.github.com/1eeminhyeong) made
their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2391](https://redirect.github.com/gpbl/react-day-picker/pull/2391)
- [@&#8203;hsnaydd](https://redirect.github.com/hsnaydd) made their
first contribution in
[https://github.com/gpbl/react-day-picker/pull/2383](https://redirect.github.com/gpbl/react-day-picker/pull/2383)

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

###
[`v9.0.8`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.8)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.7...v9.0.8)

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

#### What's Changed

- fix: update the displayed month only if start/end month change by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2358](https://redirect.github.com/gpbl/react-day-picker/pull/2358)

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

###
[`v9.0.7`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.7)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.6...v9.0.7)

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

#### What's Changed

- fix: update calendar state when `startMonth` or `endMonth` change by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2343](https://redirect.github.com/gpbl/react-day-picker/pull/2343)
- feat: allow partial locales, export `defaultLocale` by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2348](https://redirect.github.com/gpbl/react-day-picker/pull/2348)
- feat: allow `undefined` as initially selected value, as it was in v8
by [@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2341](https://redirect.github.com/gpbl/react-day-picker/pull/2341)
- docs: changed class name `calendar` to `root` in the examples by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2347](https://redirect.github.com/gpbl/react-day-picker/pull/2347)
- docs: replaced deprecated props by
[@&#8203;josephmarkus](https://redirect.github.com/josephmarkus) in
[https://github.com/gpbl/react-day-picker/pull/2336](https://redirect.github.com/gpbl/react-day-picker/pull/2336)\*

#### New Contributors

- [@&#8203;josephmarkus](https://redirect.github.com/josephmarkus) made
their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2336](https://redirect.github.com/gpbl/react-day-picker/pull/2336)

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

###
[`v9.0.6`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.6)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.5...v9.0.6)

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

- fix(build): add package.json to dist/cjs module by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2330](https://redirect.github.com/gpbl/react-day-picker/pull/2330)
- feat: add new data-attributes to the day cells by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2331](https://redirect.github.com/gpbl/react-day-picker/pull/2331)

#### New Contributors

- [@&#8203;lesleh](https://redirect.github.com/lesleh) made their first
contribution in
[https://github.com/gpbl/react-day-picker/pull/2329](https://redirect.github.com/gpbl/react-day-picker/pull/2329)

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

###
[`v9.0.5`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.5)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.4...v9.0.5)

This release improves the range mode behavior (see the [updated
docs](https://daypicker.dev/docs/selection-modes#range-mode)) and
address some styling issues.

#### What's Changed

- fix: improved range mode to work with min / required props by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2326](https://redirect.github.com/gpbl/react-day-picker/pull/2326)
- fix(style): typo in css rdp-hidden module css breaking CSS builds by
[@&#8203;ayuhito](https://redirect.github.com/ayuhito) in
[https://github.com/gpbl/react-day-picker/pull/2307](https://redirect.github.com/gpbl/react-day-picker/pull/2307)
- fix(style): borders grid are not collapsed by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2323](https://redirect.github.com/gpbl/react-day-picker/pull/2323)
- fix(style): week numbers are now centered by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
gpbl/react-day-picker@c919ad8

#### New Contributors

- [@&#8203;ayuhito](https://redirect.github.com/ayuhito) made their
first contribution in
[https://github.com/gpbl/react-day-picker/pull/2307](https://redirect.github.com/gpbl/react-day-picker/pull/2307)
- [@&#8203;rishabh-ink](https://redirect.github.com/rishabh-ink) made
their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2311](https://redirect.github.com/gpbl/react-day-picker/pull/2311)

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

###
[`v9.0.4`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.4)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.3...v9.0.4)

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

#### What's Changed

- fix(css): typo in `.rdp-range_end` by
[@&#8203;AlessioDP](https://redirect.github.com/AlessioDP) in
[https://github.com/gpbl/react-day-picker/pull/2298](https://redirect.github.com/gpbl/react-day-picker/pull/2298)
- fix(css): dropdown is transparent in Windows OS by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2300](https://redirect.github.com/gpbl/react-day-picker/pull/2300)
- fix: `endMonth` date not working as expected by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2301](https://redirect.github.com/gpbl/react-day-picker/pull/2301)
- feat: added back `onDayMouseEnter` and `onDayMouseLeave` by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2304](https://redirect.github.com/gpbl/react-day-picker/pull/2304)

#### New Contributors

- [@&#8203;AlessioDP](https://redirect.github.com/AlessioDP) made their
first contribution in
[https://github.com/gpbl/react-day-picker/pull/2298](https://redirect.github.com/gpbl/react-day-picker/pull/2298)

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

###
[`v9.0.3`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.3)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.2...v9.0.3)

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

#### What's Changed

- fix: alignment of grid elements by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2294](https://redirect.github.com/gpbl/react-day-picker/pull/2294)
- fix: range mode not updating when selected prop changes by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2295](https://redirect.github.com/gpbl/react-day-picker/pull/2295)

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

###
[`v9.0.2`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.2)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.1...v9.0.2)

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

#### What's Changed

- feat: add `excludeDisabled` prop for range mode by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2290](https://redirect.github.com/gpbl/react-day-picker/pull/2290)

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

###
[`v9.0.1`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.1)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.0.0...v9.0.1)

This update improves backward compatibility with v8.10.1.

#### What's Changed

- fix: prop types not being correctly interpreted by TS by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2283](https://redirect.github.com/gpbl/react-day-picker/pull/2283)
- feat: add `DeprecatedUI` enum by
[@&#8203;gpbl](https://redirect.github.com/gpbl) in
[https://github.com/gpbl/react-day-picker/pull/2284](https://redirect.github.com/gpbl/react-day-picker/pull/2284)

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

###
[`v9.0.0`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.0.0)

[Compare
Source](https://redirect.github.com/gpbl/react-day-picker/compare/v8.10.1...v9.0.0)

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

- See the updated docs at https://daypicker.dev and the [upgrading
Guide](https://daypicker.dev/upgrading) for more details.

##### Install the Latest Version

```bash
npm install react-day-picker@latest
```

#### What’s New

-   Moved `date-fns` from peer dependencies to dependencies.
- Added support for [UTC
dates](https://daypicker.dev/docs/localization#utc-dates) and [Jalali
Calendar](https://daypicker.dev/docs/localization#jalali-calendar).
- [Enhanced accessibility](https://daypicker.dev/docs/accessibility) to
better comply with [WCAG 2.1](https://www.w3.org/TR/WCAG21/)
recommendations.
- [Simplified styles](https://daypicker.dev/docs/styling) and new CSS
variables for easier customization.
- Improved selection logic for [range
mode](https://daypicker.dev/docs/selection-modes.mdx).
-   New `dropdown-years` and `dropdown-months` caption layouts.
-   New `hideWeekdayRow` and `hideNavigation` props.
- Updated for a complete [custom
components](https://daypicker.dev/guides/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](https://daypicker.dev/guides/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](https://daypicker.dev/upgrading) for
help upgrading your app to v9. We welcome
[feedback](https://redirect.github.com/gpbl/react-day-picker/discussions)
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](https://redirect.github.com/gpbl/react-day-picker/discussions).
Thanks.

#### New Contributors

-
[@&#8203;grzegorzpokorski](https://redirect.github.com/grzegorzpokorski)
made their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2124](https://redirect.github.com/gpbl/react-day-picker/pull/2124)
- [@&#8203;zaaakher](https://redirect.github.com/zaaakher) made their
first contribution in
[https://github.com/gpbl/react-day-picker/pull/2137](https://redirect.github.com/gpbl/react-day-picker/pull/2137)
- [@&#8203;ArthurGoupil](https://redirect.github.com/ArthurGoupil) made
their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2230](https://redirect.github.com/gpbl/react-day-picker/pull/2230)
- [@&#8203;johnnysedh3lllo](https://redirect.github.com/johnnysedh3lllo)
made their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2252](https://redirect.github.com/gpbl/react-day-picker/pull/2252)
- [@&#8203;xardit](https://redirect.github.com/xardit) made their first
contribution in
[https://github.com/gpbl/react-day-picker/pull/2254](https://redirect.github.com/gpbl/react-day-picker/pull/2254)
- [@&#8203;dave-meyer](https://redirect.github.com/dave-meyer) made
their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2231](https://redirect.github.com/gpbl/react-day-picker/pull/2231)
- [@&#8203;benasher44](https://redirect.github.com/benasher44) made
their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2249](https://redirect.github.com/gpbl/react-day-picker/pull/2249)
- [@&#8203;RyanCavanaugh](https://redirect.github.com/RyanCavanaugh)
made their first contribution in
[https://github.com/gpbl/react-day-picker/pull/2275](https://redirect.github.com/gpbl/react-day-picker/pull/2275)
- [@&#8203;kesoji](https://redirect.github.com/kesoji) made their first
contribution in
[https://github.com/gpbl/react-day-picker/pull/2281](https://redirect.github.com/gpbl/react-day-picker/pull/2281)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/patmode91/ai-music-vid-creator).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
  • Loading branch information
patmode91 authored Oct 1, 2024
2 parents da5a3b4 + dd02e1c commit 5466de2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
Binary file modified bun.lockb
Binary file not shown.
32 changes: 26 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"lucide-react": "^0.417.0",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.1",
"react-day-picker": "^9.0.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.0",
"react-resizable-panels": "^2.0.19",
Expand Down

0 comments on commit 5466de2

Please sign in to comment.