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
feat: rename module from angular2-calendar to angular-calendar
BREAKING CHANGE:
The module has now been renamed from angular2-calendar to angular-calendar
The path to the sass and UMD builds has now changed. To migrate change all occurences of `angular2-calendar` to `angular-calendar`
Closes#69
Finally import the calendar module into your apps module:
37
37
```
38
38
import { NgModule } from '@angular/core';
39
-
import { CalendarModule } from 'angular2-calendar';
39
+
import { CalendarModule } from 'angular-calendar';
40
40
41
41
@NgModule({
42
42
imports: [
@@ -46,19 +46,19 @@ import { CalendarModule } from 'angular2-calendar';
46
46
export class MyModule {}
47
47
```
48
48
49
-
Then you can use the `mwl-calendar-month-view`, `mwl-calendar-week-view` and `mwl-calendar-day-view` components in your app. For a full e2e example see the [demo source](https://github.com/mattlewis92/angular2-calendar/blob/master/demo/demo.component.ts).
49
+
Then you can use the `mwl-calendar-month-view`, `mwl-calendar-week-view` and `mwl-calendar-day-view` components in your app. For a full e2e example see the [demo source](https://github.com/mattlewis92/angular-calendar/blob/master/demo/demo.component.ts).
50
50
51
-
To see all available API options see the auto generated [documentation](https://mattlewis92.github.io/angular2-calendar/docs/). Full e2e examples will follow [in the future](https://github.com/mattlewis92/angular2-calendar/issues/32)
51
+
To see all available API options see the auto generated [documentation](https://mattlewis92.github.io/angular-calendar/docs/). Full e2e examples will follow [in the future](https://github.com/mattlewis92/angular-calendar/issues/32)
52
52
53
53
### Module bundlers
54
54
55
-
You can find quick start examples for all common module bundlers in the [examples](https://github.com/mattlewis92/angular2-calendar/tree/master/examples) folder.
55
+
You can find quick start examples for all common module bundlers in the [examples](https://github.com/mattlewis92/angular-calendar/tree/master/examples) folder.
0 commit comments