File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
packages/pluggableWidgets/calendar-web Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 117117 <actionVariables >
118118 <actionVariable key =" startDate" type =" DateTime" caption =" Event start date" />
119119 <actionVariable key =" endDate" type =" DateTime" caption =" Event end date" />
120+ <actionVariable key =" allDay" type =" Boolean" caption =" Event all day" />
120121 <actionVariable key =" title" type =" String" caption =" Event title" />
121122 </actionVariables >
122123 </property >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export interface CalendarContainerProps {
4343 defaultView : DefaultViewEnum ;
4444 startDateAttribute ?: EditableValue < Date > ;
4545 eventDataAttribute ?: EditableValue < string > ;
46- onClickEvent ?: ActionValue < { startDate : Option < Date > ; endDate : Option < Date > ; title : Option < string > } > ;
46+ onClickEvent ?: ActionValue < { startDate : Option < Date > ; endDate : Option < Date > ; allDay : Option < boolean > ; title : Option < string > } > ;
4747 onCreateEvent ?: ActionValue < { startDate : Option < Date > ; endDate : Option < Date > ; allDay : Option < boolean > } > ;
4848 onChange ?: ActionValue < { oldStart : Option < Date > ; oldEnd : Option < Date > ; newStart : Option < Date > ; newEnd : Option < Date > } > ;
4949 onRangeChange ?: ActionValue < { rangeStart : Option < Date > ; rangeEnd : Option < Date > ; currentView : Option < string > } > ;
You can’t perform that action at this time.
0 commit comments