@rolatech/angular-course 17.3.27 → 17.3.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/course-schedule-add-dialog/course-schedule-add-dialog.component.mjs +10 -18
- package/esm2022/lib/components/schedule-item/schedule-item.component.mjs +7 -2
- package/esm2022/lib/pages/course-manage/course-manage-schedule/course-manage-schedule.component.mjs +12 -21
- package/fesm2022/{rolatech-angular-course-course-index.component-mCY9aUg6.mjs → rolatech-angular-course-course-index.component-D339dt6A.mjs} +4 -4
- package/fesm2022/{rolatech-angular-course-course-index.component-mCY9aUg6.mjs.map → rolatech-angular-course-course-index.component-D339dt6A.mjs.map} +1 -1
- package/fesm2022/{rolatech-angular-course-rolatech-angular-course-Cyt2SX4m.mjs → rolatech-angular-course-rolatech-angular-course-AX5M1HKZ.mjs} +26 -33
- package/fesm2022/rolatech-angular-course-rolatech-angular-course-AX5M1HKZ.mjs.map +1 -0
- package/fesm2022/rolatech-angular-course.mjs +1 -1
- package/lib/components/course-schedule-add-dialog/course-schedule-add-dialog.component.d.ts +5 -7
- package/lib/pages/course-manage/course-manage-schedule/course-manage-schedule.component.d.ts +0 -2
- package/package.json +1 -1
- package/fesm2022/rolatech-angular-course-rolatech-angular-course-Cyt2SX4m.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { m as CourseActionComponent, A as CourseDetailsComponent, y as CourseDetailsDialogComponent, z as CourseEditDialogComponent, j as CourseInfoComponent, t as CourseItemComponent, k as CourseMediaComponent, B as CourseMediaOwnerRendererComponent, i as CoursePreviewComponent, u as CoursePricingAddDialogComponent, l as CoursePricingComponent, w as CoursePricingDialogComponent, e as CourseRequestStatus, g as CourseReviewStatus, v as CourseScheduleAddDialogComponent, n as CourseScheduleComponent, x as CourseScheduleDialogComponent, q as CourseSectionItemComponent, h as CourseSectionLectureContentType, r as CourseSectionLectureItemComponent, D as CourseSectionLectureVideoDialogComponent, s as CourseSectionLectureVideoItemComponent, o as CourseSectionsComponent, d as CourseStatus, f as CourseType, F as DetailItemComponent, P as PricingItemComponent, S as ScheduleDate, E as ScheduleItemComponent, b as courseManageRoutes, c as courseRoutes, p as provideAngulaCourse } from './rolatech-angular-course-rolatech-angular-course-
|
|
1
|
+
export { m as CourseActionComponent, A as CourseDetailsComponent, y as CourseDetailsDialogComponent, z as CourseEditDialogComponent, j as CourseInfoComponent, t as CourseItemComponent, k as CourseMediaComponent, B as CourseMediaOwnerRendererComponent, i as CoursePreviewComponent, u as CoursePricingAddDialogComponent, l as CoursePricingComponent, w as CoursePricingDialogComponent, e as CourseRequestStatus, g as CourseReviewStatus, v as CourseScheduleAddDialogComponent, n as CourseScheduleComponent, x as CourseScheduleDialogComponent, q as CourseSectionItemComponent, h as CourseSectionLectureContentType, r as CourseSectionLectureItemComponent, D as CourseSectionLectureVideoDialogComponent, s as CourseSectionLectureVideoItemComponent, o as CourseSectionsComponent, d as CourseStatus, f as CourseType, F as DetailItemComponent, P as PricingItemComponent, S as ScheduleDate, E as ScheduleItemComponent, b as courseManageRoutes, c as courseRoutes, p as provideAngulaCourse } from './rolatech-angular-course-rolatech-angular-course-AX5M1HKZ.mjs';
|
|
2
2
|
import '@angular/core';
|
|
3
3
|
import '@angular/forms';
|
|
4
4
|
import '@angular/common';
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DoCheck } from '@angular/core';
|
|
2
2
|
import { Schedule } from '../../interfaces';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CourseScheduleAddDialogComponent {
|
|
5
|
-
|
|
6
|
-
data: any;
|
|
4
|
+
export declare class CourseScheduleAddDialogComponent implements DoCheck {
|
|
5
|
+
output: import("@angular/core").OutputEmitterRef<any>;
|
|
7
6
|
schedule: Schedule;
|
|
8
|
-
|
|
9
|
-
close(): void;
|
|
7
|
+
ngDoCheck(): void;
|
|
10
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CourseScheduleAddDialogComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CourseScheduleAddDialogComponent, "rolatech-course-schedule-add-dialog", never, {}, {}, never, never, true, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CourseScheduleAddDialogComponent, "rolatech-course-schedule-add-dialog", never, {}, { "output": "output"; }, never, never, true, never>;
|
|
12
10
|
}
|
package/lib/pages/course-manage/course-manage-schedule/course-manage-schedule.component.d.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
3
2
|
import { BaseComponent } from '@rolatech/angular-components';
|
|
4
3
|
import { Schedule, CourseStatus } from '../../../interfaces';
|
|
5
4
|
import { CourseService } from '../../../services';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class CourseManageScheduleComponent extends BaseComponent implements OnInit {
|
|
8
7
|
courseService: CourseService;
|
|
9
|
-
snackBar: MatSnackBar;
|
|
10
8
|
isLoading: boolean;
|
|
11
9
|
schedule: Schedule[];
|
|
12
10
|
status: typeof CourseStatus;
|