Releases: wix/react-native-calendars
Releases Β· wix/react-native-calendars
v1.17.0
Refactor period marking API
Breaking changes:
Period marking structure became more flat
Refactor interactive marking to period marking
Breaking changes:
Interactive marking now is called 'period' marking and structure of marking has become more nested:
markedDates={
{'2012-05-20': {periods: [{textColor: 'green'}]},
'2012-05-22': {periods: [{startingDay: true, color: 'green'}]},
'2012-05-23': {periods: [{endingDay: true, color: 'green', textColor: 'gray'}]},
'2012-05-04': {disabled: true, periods: [{startingDay: true, color: 'green'}, {endingDay: true, color: 'green'}]}
}}