Skip to content

Releases: acro5piano/react-native-big-calendar

v3.2.1

24 Jun 15:29
Compare
Choose a tag to compare

What's Changed

  • Remove peer dependencies
  • Update deps

Full Changelog: v3.2.0...v3.2.1

v3.2.0

17 Feb 01:05
Compare
Choose a tag to compare

What's Changed

v3.1.1

15 Feb 13:55
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.0...v3.1.1

v3.1.0

14 Feb 00:33
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.1...v3.1.0

v3.0.1

04 Feb 09:53
Compare
Choose a tag to compare

Bugfixes

  • fix merge-anything version #631

Full Changelog: v3.0.0...v3.0.1

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