From 5a46f9d4b3840a1086820e2e315661b992f3af7e Mon Sep 17 00:00:00 2001 From: luxiaobei Date: Thu, 3 Aug 2023 15:18:17 +0800 Subject: [PATCH] feat: export components --- packages/gantt/src/gantt.module.ts | 5 ++++- packages/gantt/src/public-api.ts | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/gantt/src/gantt.module.ts b/packages/gantt/src/gantt.module.ts index a22ea0f6..77947ab1 100644 --- a/packages/gantt/src/gantt.module.ts +++ b/packages/gantt/src/gantt.module.ts @@ -32,7 +32,10 @@ import { GanttLoaderComponent } from './components/loader/loader.component'; NgxGanttBarComponent, NgxGanttRangeComponent, NgxGanttBaselineComponent, - NgxGanttToolbarComponent + NgxGanttToolbarComponent, + GanttCalendarHeaderComponent, + GanttCalendarGridComponent, + GanttDragBackdropComponent ], declarations: [ NgxGanttComponent, diff --git a/packages/gantt/src/public-api.ts b/packages/gantt/src/public-api.ts index e84e435f..b5796326 100644 --- a/packages/gantt/src/public-api.ts +++ b/packages/gantt/src/public-api.ts @@ -21,3 +21,6 @@ export * from './gantt-item-upper'; export * from './gantt.pipe'; export * from './gantt-print.service'; export * from './gantt.config'; +export * from './components/calendar/header/calendar-header.component'; +export * from './components/calendar/grid/calendar-grid.component'; +export * from './components/drag-backdrop/drag-backdrop.component';