Skip to content

Commit 579a51a

Browse files
author
Matt Lewis
committed
feat: export drag+drop and resizable modules for use in custom templates
Fixes #419
1 parent 8d18c5b commit 579a51a

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/modules/day/calendar-day.module.ts

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ export { CalendarDayViewComponent } from './calendar-day-view.component';
2424
CalendarDayViewEventComponent
2525
],
2626
exports: [
27+
ResizableModule,
28+
DragAndDropModule,
2729
CalendarDayViewComponent,
2830
CalendarAllDayEventComponent,
2931
CalendarDayViewHourSegmentComponent,

src/modules/month/calendar-month.module.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export { MonthViewDay as CalendarMonthViewDay } from 'calendar-utils';
1919
CalendarMonthViewHeaderComponent
2020
],
2121
exports: [
22+
DragAndDropModule,
2223
CalendarMonthViewComponent,
2324
CalendarMonthCellComponent,
2425
CalendarOpenDayEventsComponent,

src/modules/week/calendar-week.module.ts

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ export {
2727
CalendarWeekViewEventComponent
2828
],
2929
exports: [
30+
ResizableModule,
31+
DragAndDropModule,
3032
CalendarWeekViewComponent,
3133
CalendarWeekViewHeaderComponent,
3234
CalendarWeekViewEventComponent

0 commit comments

Comments
 (0)