angular-calendar
Version:
A calendar component that can display events on a month, week or day view
18 lines • 1.02 kB
JavaScript
import { Component, Input } from '@angular/core';
export var CalendarEventActionsComponent = (function () {
function CalendarEventActionsComponent() {
}
CalendarEventActionsComponent.decorators = [
{ type: Component, args: [{
selector: 'mwl-calendar-event-actions',
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 "
},] },
];
/** @nocollapse */
CalendarEventActionsComponent.ctorParameters = function () { return []; };
CalendarEventActionsComponent.propDecorators = {
'event': [{ type: Input },],
};
return CalendarEventActionsComponent;
}());
//# sourceMappingURL=calendarEventActions.component.js.map