From 893d9db785921cf8047d61d992ec6f7aa8534525 Mon Sep 17 00:00:00 2001 From: Reza Date: Sun, 25 Mar 2018 20:32:30 +0430 Subject: [PATCH] fixed bugs and selectable week numbers --- README.md | 6 +++--- package.json | 4 ++-- src/calendar/day/multi-dot/index.js | 3 +++ src/calendar/header/index.js | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f4207f8..43bcdfa 100644 --- a/README.md +++ b/README.md @@ -129,13 +129,13 @@ Multi-Dot marking Use markingType = 'multi-dot' if you want to display more than one dot. Both the Calendar and CalendarList control support multiple dots by using 'dots' array in markedDates. The property 'color' is mandatory while 'key' and 'selectedColor' are optional. If key is omitted then the array index is used as key. If selectedColor is omitted then 'color' will be used for selected dates. ```javascript -const vacation = {key:'vacation', color: 'red', selectedColor: 'blue'}; -const massage = {key:'massage', color: 'blue', selectedColor: 'blue'}; +const vacation = {key:'vacation', color: 'red'}; +const massage = {key:'massage', color: 'blue'}; const workout = {key:'workout', color: 'green'};