Skip to content

Releases: acro5piano/react-native-big-calendar

v3.3.1

19 Oct 06:32
599b609
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.3.0...v3.3.1

v3.3.0

14 Oct 03:11
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.2.3...v3.3.0

v3.2.3

01 Aug 09:34
Compare
Choose a tag to compare

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

15 Jul 14:00
Compare
Choose a tag to compare

3.2.2

What's Changed

New Contributors

Full Changelog: v3.2.1...v3.2.2

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