You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ Run `carthage update` to build the framework, drag the following framework into
84
84
85
85
-`Fastis.framework`
86
86
-`SnapKit.framewok`
87
-
-`PrettyCards.framework`
87
+
-`PrettyCards.framework`
88
88
-`JTAppleCalendar.framework`
89
89
90
90
### Swift Package Manager
@@ -164,6 +164,7 @@ var initialValue: Value? = nil
164
164
var minimumDate: Date?=nil
165
165
var maximumDate: Date?=nil
166
166
var selectMonthOnHeaderTap: Bool=true
167
+
var allowDateRangeChanges: Bool=true
167
168
```
168
169
169
170
-`shortcuts`- Shortcuts array. Default value is `[]`. See [Shortcuts](#shortcuts) section
@@ -174,6 +175,7 @@ var selectMonthOnHeaderTap: Bool = true
174
175
-`minimumDate`- Minimal selection date. Dates less then current will be markes as unavailable. Default value is `nil`.
175
176
-`maximumDate`- Maximum selection date. Dates greather then current will be markes as unavailable. Default value is `nil`.
176
177
-`selectMonthOnHeaderTap` (Only for `.range` mode) - Set this variable to `true` if you want to allow select date ranges by tapping on months. Default value is `true`.
178
+
-`allowDateRangeChanges` (Only for `.range` mode) - Set this variable to `false` if you want to if you want to disable date range changes. Next tap after selecting range will start new range selection. Default value is `true`.
0 commit comments