vue-simple-calendar
Advanced tools
Changelog
6.0.5 (2022-08-12)
Changelog
6.0.4 (2022-02-27)
Changelog
6.0.3 (2021-11-20)
Changelog
6.0.2 (2021-07-10)
CalendarMath
in calendar view component led to IDE warnings in template (#132)Changelog
6.0.0 (2021-03-27)
CalendarMathMixin
is now CalendarMath
, a normal classChangelog
5.0.0 (2020-09-04)
Any reference to a "thing that is scheduled on the calendar" is now called an "item" rather than an "event" due to the confusion possible with DOM and Vue-emitted events. (#129)
click-event
event is now called click-item
events
property is now called items
.event
slot is now the item
slot, and the calendar item is passed as value
cv-event
CSS class is now cv-item
normalizeEvent
function is now normalizeItem
originalEvent
is now originalItem
showEventTimes
is now `showTimeseventTop
, eventContentHeight
, and eventBorderHeight
are now item*
eventRow
is now itemRow
fixedEvents
is now fixedItems
wrap-event-title-on-hover
CSS class is now wrap-item-title-on-hover
cv-weekdays
DIV now between cw-week
and cv-day
. This could impact some custom CSS theming (for example, if you used something like .cv-weekdays > .cv-day
as a selector).hasItems
class. (#143, thanks @SwithFr!)click-date
event now passes the list of calendar items falling on that date as the second argument (windowEvent
is pushed to argument 3) #143dragStart
event for an item now passes the item's id
(stringified) into the dataTransfer
data. This should make it easier to create custom drag/drop functionality where someone could drag a calendar item outside this component.enable-date-selection
prop.displayWeekNumbers
property. This has a named slot to allow full control.Changelog
4.4.0 (2020-05-24)
$event
(the native click event) to the onClickDay
handler (#142, thanks @GiboMac)