Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-calendar

Package Overview
Dependencies
Maintainers
1
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-calendar - npm Package Versions

1
2426

0.7.3

Diff

Changelog

Source

0.7.3 (2017-03-04)

Bug Fixes

  • loosen angular peer dependency to support angular 4 (e00c115)
  • dayView: allow dropping of external events (86e5d06), closes #150
  • monthView: add helper classes to the month view header (0008a83), closes #152
  • weekView: allow external events to be dropped on the column headers (83266f7), closes #150

Performance Improvements

  • improve performance of draggable and resizable events (71fe9cd), closes #149

<a name="0.7.2"></a>

mattlewis92
published 0.7.2 •

Changelog

Source

0.7.2 (2017-02-03)

Bug Fixes

  • disable drag events when resizing (43c128c)

<a name="0.7.1"></a>

mattlewis92
published 0.7.1 •

Changelog

Source

0.7.1 (2017-02-01)

Features

  • add all declarations to exports (Please note that these sub components will be subject to breaking changes in the next release once #16 lands, however will eventually become part of the public API. Use at your own risk!) (f20a991)

<a name="0.7.0"></a>

mattlewis92
published 0.7.0 •

Changelog

Source

0.7.0 (2017-01-28)

Features

  • add helper directives for changing the current view (df398cb), closes #124

<a name="0.6.2"></a>

mattlewis92
published 0.6.2 •

Changelog

Source

0.6.2 (2017-01-06)

Bug Fixes

  • allow events to be dragged and clicked (bc909a3), closes #123

Features

  • export the CalendarMonthViewDay interface (4142231)

<a name="0.6.1"></a>

mattlewis92
published 0.6.1 •

Changelog

Source

0.6.1 (2016-12-30)

Bug Fixes

  • update the event title in the UI when it changes (3b611bf), closes #116
  • monthView: cell events should be clickable (d61719e), closes #111

<a name="0.6.0"></a>

mattlewis92
published 0.6.0 •

Changelog

Source

0.6.0 (2016-12-21)

Features

  • draggable: allow external draggable events (8ba068c), closes #106

BREAKING CHANGES

  • draggable: if not using CalendarModule.forRoot() and manually adding providers you must now also include the DraggableHelper from the angular-draggable-droppable module

Before:

import {CalendarModule, CalendarEventTitleFormatter, CalendarDateFormatter} from 'angular-calendar';

imports: [
  CalendarModule
],
providers: [
  CalendarEventTitleFormatter,
  CalendarDateFormatter
]

After:

import {CalendarModule, CalendarEventTitleFormatter, CalendarDateFormatter} from 'angular-calendar';
import {DraggableHelper} from 'angular-draggable-droppable';

imports: [
  CalendarModule
],
providers: [
  CalendarEventTitleFormatter,
  CalendarDateFormatter,
  DraggableHelper
]

<a name="0.5.0"></a>

mattlewis92
published 0.5.0 •

Changelog

Source

0.5.0 (2016-12-18)

Bug Fixes

  • dayView: don't allow events to be resized outside of the calendar (78eb123), closes #99
  • dayView: use correct event height when resizing from the top (1c5e74f)
  • weekView: dont allow events to be resized outside of the calendar component (007fbc5), closes #99

Features

  • add drag and drop support (#100) (bbc02f3), closes #10 #102
  • remove change detection strategy from all components (#101) (36458ab), closes #94
  • rename CalendarEventTitle service to CalendarEventTitleFormatter (45c0142)

BREAKING CHANGES

  • the CalendarEventTitle service has been renamed to CalendarEventTitleFormatter
  • A dependency on the angular-draggable-droppable library has been added. System.js users will need to add this to their config:
'angular-draggable-droppable': 'npm:angular-draggable-droppable/dist/umd/angular-draggable-droppable.js'
  • For enhanced performance it is recommended that you add changeDetection: ChangeDetectionStrategy.OnPush on all components that use this library. This will restrict change detection to only run when the components inputs change

<a name="0.4.4"></a>

mattlewis92
published 0.5.0-beta.4 •

mattlewis92
published 0.5.0-beta.3 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc