Skip to content

Releases: acro5piano/react-native-big-calendar

v3.0.0

21 Jan 01:57
Compare
Choose a tag to compare

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 and oddCellBg is deleted in favor of calendarCellStyle 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

v2.9.1

24 Dec 12:44
Compare
Choose a tag to compare
  • fix Multiple day event in Month view onPressEvent is just working on first day and not on remaining days #578

v2.9.0

24 Dec 08:19
Compare
Choose a tag to compare

Bugfixes

Breaking change ⚠️

ICalendarEvent has been deprecated. To do convert this, please rewrite like this:

Before:

import { ICalendarEvent } from 'react-native-big-calendar'

type MyEvent = ICalendarEvent<{ color: string }>
import { ICalendarEventBase } from 'react-native-big-calendar'

type MyEvent = ICalendarEvent & { color: string }

Full Changelog: v2.8.0...v2.9.0

v2.8.0

17 Dec 05:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.7.0...v2.8.0

v2.7.0

07 Dec 14:35
Compare
Choose a tag to compare

New Features

New Contributors

Chore

v2.6.0

05 Dec 09:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.5.0...v2.6.0

v2.5.0

30 Nov 02:36
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.4.0...v2.5.0

v2.4.0

26 Nov 01:48
Compare
Choose a tag to compare
  • Add option for Hour Row Height #549

v2.3.0

09 Nov 16:54
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @kbwo made their first contribution in #544

Full Changelog: v2.2.0...v2.3.0

v2.2.0

04 Nov 02:28
Compare
Choose a tag to compare

2.2.0

New features

  • Make month event min height customizable and fix for custom events #534

Chore

  • Update deps