-
-
Notifications
You must be signed in to change notification settings - Fork 870
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export declare class CalendarModule { | ||
} |
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":{"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; | ||
} |
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; | ||
} |
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>; | ||
} |
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.