@rolatech/angular-course 17.3.25 → 17.3.27
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/course-schedule.component.mjs +3 -3
- package/esm2022/lib/components/course-schedule-dialog/course-schedule-dialog.component.mjs +11 -18
- package/esm2022/lib/components/detail-item/detail-item.component.mjs +3 -3
- package/esm2022/lib/components/pricing-item/pricing-item.component.mjs +3 -3
- package/esm2022/lib/components/schedule-item/schedule-item.component.mjs +3 -3
- package/esm2022/lib/pages/course-manage/course-manage-schedule/course-manage-schedule.component.mjs +56 -42
- package/fesm2022/{rolatech-angular-course-course-index.component-C5CCNCnu.mjs → rolatech-angular-course-course-index.component-mCY9aUg6.mjs} +4 -4
- package/fesm2022/{rolatech-angular-course-course-index.component-C5CCNCnu.mjs.map → rolatech-angular-course-course-index.component-mCY9aUg6.mjs.map} +1 -1
- package/fesm2022/{rolatech-angular-course-rolatech-angular-course-B5OyEzQF.mjs → rolatech-angular-course-rolatech-angular-course-Cyt2SX4m.mjs} +75 -62
- package/fesm2022/rolatech-angular-course-rolatech-angular-course-Cyt2SX4m.mjs.map +1 -0
- package/fesm2022/rolatech-angular-course.mjs +1 -1
- package/lib/components/course-schedule-dialog/course-schedule-dialog.component.d.ts +2 -7
- package/lib/pages/course-manage/course-manage-schedule/course-manage-schedule.component.d.ts +2 -7
- package/package.json +1 -1
- package/fesm2022/rolatech-angular-course-rolatech-angular-course-B5OyEzQF.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-Cyt2SX4m.mjs';
|
|
2
2
|
import '@angular/core';
|
|
3
3
|
import '@angular/forms';
|
|
4
4
|
import '@angular/common';
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
import { MatDialogRef
|
|
2
|
-
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
2
|
import { Schedule } from '../../interfaces';
|
|
4
|
-
import { CourseService } from '../../services';
|
|
5
3
|
import * as i0 from "@angular/core";
|
|
6
4
|
export declare class CourseScheduleDialogComponent {
|
|
7
5
|
private dialogRef;
|
|
8
6
|
data: any;
|
|
9
|
-
private courseService;
|
|
10
|
-
private snackBar;
|
|
11
|
-
private dialog;
|
|
12
7
|
courseId: string;
|
|
13
8
|
schedule: Schedule[];
|
|
14
|
-
constructor(dialogRef: MatDialogRef<CourseScheduleDialogComponent>, data: any
|
|
9
|
+
constructor(dialogRef: MatDialogRef<CourseScheduleDialogComponent>, data: any);
|
|
15
10
|
close(): void;
|
|
16
11
|
addSchedule(): void;
|
|
17
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<CourseScheduleDialogComponent, never>;
|
package/lib/pages/course-manage/course-manage-schedule/course-manage-schedule.component.d.ts
CHANGED
|
@@ -1,21 +1,16 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
3
2
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
-
import {
|
|
3
|
+
import { BaseComponent } from '@rolatech/angular-components';
|
|
5
4
|
import { Schedule, CourseStatus } from '../../../interfaces';
|
|
6
5
|
import { CourseService } from '../../../services';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class CourseManageScheduleComponent implements OnInit {
|
|
9
|
-
route: ActivatedRoute;
|
|
7
|
+
export declare class CourseManageScheduleComponent extends BaseComponent implements OnInit {
|
|
10
8
|
courseService: CourseService;
|
|
11
|
-
dialog: MatDialog;
|
|
12
9
|
snackBar: MatSnackBar;
|
|
13
|
-
id: string;
|
|
14
10
|
isLoading: boolean;
|
|
15
11
|
schedule: Schedule[];
|
|
16
12
|
status: typeof CourseStatus;
|
|
17
13
|
courseType: any;
|
|
18
|
-
constructor();
|
|
19
14
|
ngOnInit(): void;
|
|
20
15
|
find(): void;
|
|
21
16
|
addSchedule(): void;
|