Releases: acro5piano/react-native-big-calendar
Releases · acro5piano/react-native-big-calendar
v3.3.1
What's Changed
- fix infinite setState onChangeDate by @mubashiralisiddiqui in #764
- redirect changelog to GitHub release page by @acro5piano in #765
- Update dependencies
Full Changelog: v3.3.0...v3.3.1
v3.3.0
What's Changed
- Feature/hide hours column week view by @mubashiralisiddiqui in #754
- Update dependencies
New Contributors
- @mubashiralisiddiqui made their first contribution in #754
Full Changelog: v3.2.3...v3.3.0
v3.2.3
What's Changed
- Fix readme format by @fabrianibrahim in #716
- fix: fix event duration on mode month by @Pakile in #720
- Change website platform from Netlify to Vercel
New Contributors
Full Changelog: v3.2.2...v3.2.3
v3.2.2
3.2.2
What's Changed
- Update deps by @acro5piano
- Improve performance - Fixing issue #563 by @fabrianibrahim in #714
New Contributors
- @fabrianibrahim made their first contribution in #714
Full Changelog: v3.2.1...v3.2.2
v3.2.1
v3.2.0
What's Changed
- Add showAdjacentMonths to README by @CptMaumau in #642
- More label by @CptMaumau in #643
- Update deps by @dependabot
v3.1.1
v3.1.0
What's Changed
- add onPressDateHeader for month view by @CptMaumau in #638
- Show adjacent months dates on month view by @CptMaumau in #639
Full Changelog: v3.0.1...v3.1.0
v3.0.1
v3.0.0
New Feataures
- add support to style calendar cells based on cell date #610
Breaking changes ⚠️
- Deleted deprecated interfaces. Instead, use
ICalendarEventBase & T
ICalendarEvent<T>
DayJSConvertedEvent
Event
evenCellBg
andoddCellBg
is deleted in favor ofcalendarCellStyle
function. To migrate:
Before
<Calendar theme={{ evenCellBg: '#aaa', oddCellBg: '#bbb' }} />
After
<Calendar
calendarCellStyle={(date, index) => ({
backgroundColor: index % 2 === 0 ? "#aaa" : "#bbb",
})}
/>
Full Changelog: v2.9.1...v3.0.0