Skip to content

Commit

Permalink
fix(typings): dont include reference to core-js
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Lewis committed Sep 28, 2016
1 parent 945c09f commit 4daac27
Show file tree
Hide file tree
Showing 86 changed files with 1,330 additions and 2 deletions.
2 changes: 2 additions & 0 deletions dist/esm/src/calendar.module.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export declare class CalendarModule {
}
50 changes: 50 additions & 0 deletions dist/esm/src/calendar.module.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/esm/src/calendar.module.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/esm/src/calendar.module.metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"__symbolic":"module","version":1,"metadata":{"CalendarModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"declarations":[{"__symbolic":"reference","module":"./components/day/calendarDayView.component","name":"CalendarDayView"},{"__symbolic":"reference","module":"./components/week/calendarWeekView.component","name":"CalendarWeekView"},{"__symbolic":"reference","module":"./components/month/calendarMonthView.component","name":"CalendarMonthView"},{"__symbolic":"reference","module":"./components/common/calendarEventActions.component","name":"CalendarEventActions"},{"__symbolic":"reference","module":"./components/common/calendarEventTitle.component","name":"CalendarEventTitle"},{"__symbolic":"reference","module":"./components/month/calendarMonthCell.component","name":"CalendarMonthCell"},{"__symbolic":"reference","module":"./components/month/calendarOpenDayEvents.component","name":"CalendarOpenDayEvents"},{"__symbolic":"reference","module":"./components/week/calendarWeekViewHeader.component","name":"CalendarWeekViewHeader"},{"__symbolic":"reference","module":"./components/week/calendarWeekViewEvent.component","name":"CalendarWeekViewEvent"},{"__symbolic":"reference","module":"./components/day/calendarAllDayEvent.component","name":"CalendarAllDayEvent"},{"__symbolic":"reference","module":"./components/day/calendarDayViewHourSegment.component","name":"CalendarDayViewHourSegment"},{"__symbolic":"reference","module":"./components/day/calendarDayViewEvent.component","name":"CalendarDayViewEvent"},{"__symbolic":"reference","module":"./directives/calendarTooltip.directive","name":"CalendarTooltipWindow"},{"__symbolic":"reference","module":"./directives/calendarTooltip.directive","name":"CalendarTooltip"},{"__symbolic":"reference","module":"./pipes/calendarDate.pipe","name":"CalendarDate"},{"__symbolic":"reference","module":"./pipes/calendarEventTitle.pipe","name":"CalendarEventTitle"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"exports":[{"__symbolic":"reference","module":"./components/day/calendarDayView.component","name":"CalendarDayView"},{"__symbolic":"reference","module":"./components/week/calendarWeekView.component","name":"CalendarWeekView"},{"__symbolic":"reference","module":"./components/month/calendarMonthView.component","name":"CalendarMonthView"},{"__symbolic":"reference","module":"./pipes/calendarDate.pipe","name":"CalendarDate"}],"entryComponents":[{"__symbolic":"reference","module":"./directives/calendarTooltip.directive","name":"CalendarTooltipWindow"}]}]}]}}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { CalendarEvent } from 'calendar-utils';
export declare class CalendarEventActions {
event: CalendarEvent;
}
19 changes: 19 additions & 0 deletions dist/esm/src/components/common/calendarEventActions.component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"__symbolic":"module","version":1,"metadata":{"CalendarEventActions":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"mwl-calendar-event-actions","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"template":"\n <span *ngIf=\"event.actions\" class=\"cal-event-actions\">\n <a\n class=\"cal-event-action\"\n href=\"javascript:;\"\n *ngFor=\"let action of event.actions\"\n (click)=\"action.onClick({event: event})\"\n [ngClass]=\"action.cssClass\"\n [innerHtml]=\"action.label\">\n </a>\n </span>\n "}]}],"members":{"event":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}]}}}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { CalendarEvent } from 'calendar-utils';
export declare class CalendarEventTitle {
event: CalendarEvent;
view: string;
}
20 changes: 20 additions & 0 deletions dist/esm/src/components/common/calendarEventTitle.component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"__symbolic":"module","version":1,"metadata":{"CalendarEventTitle":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"mwl-calendar-event-title","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"template":"\n <a\n class=\"cal-event-title\"\n href=\"javascript:;\"\n [innerHTML]=\"event | calendarEventTitle:view\">\n </a>\n "}]}],"members":{"event":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"view":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}]}}}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { EventEmitter } from '@angular/core';
import { CalendarEvent } from 'calendar-utils';
export declare class CalendarAllDayEvent {
event: CalendarEvent;
eventClicked: EventEmitter<any>;
}
21 changes: 21 additions & 0 deletions dist/esm/src/components/day/calendarAllDayEvent.component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4daac27

Please sign in to comment.