@rolatech/angular-course 20.2.8-beta.10 → 20.2.8-beta.12
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/fesm2022/{rolatech-angular-course-course-category-index.component-CisCFZwU.mjs → rolatech-angular-course-course-category-index.component-DHLhlj08.mjs} +4 -4
- package/fesm2022/{rolatech-angular-course-course-category-index.component-CisCFZwU.mjs.map → rolatech-angular-course-course-category-index.component-DHLhlj08.mjs.map} +1 -1
- package/fesm2022/{rolatech-angular-course-course-index.component-BOGf54Ue.mjs → rolatech-angular-course-course-index.component-BndpdI0a.mjs} +4 -4
- package/fesm2022/{rolatech-angular-course-course-index.component-BOGf54Ue.mjs.map → rolatech-angular-course-course-index.component-BndpdI0a.mjs.map} +1 -1
- package/fesm2022/rolatech-angular-course.mjs +192 -207
- package/fesm2022/rolatech-angular-course.mjs.map +1 -1
- package/package.json +7 -7
- package/types/rolatech-angular-course.d.ts +32 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-course",
|
|
3
|
-
"version": "20.2.8-beta.
|
|
3
|
+
"version": "20.2.8-beta.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/core": "^20.0.0",
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"moment": "^2.30.1"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@rolatech/angular-common": "20.2.8-beta.
|
|
20
|
-
"@rolatech/angular-components": "20.2.8-beta.
|
|
21
|
-
"@rolatech/angular-services": "20.2.8-beta.
|
|
22
|
-
"@rolatech/angular-auth": "20.2.8-beta.
|
|
23
|
-
"@rolatech/angular-category": "20.2.8-beta.
|
|
24
|
-
"@rolatech/angular-comment": "20.2.8-beta.
|
|
19
|
+
"@rolatech/angular-common": "20.2.8-beta.12",
|
|
20
|
+
"@rolatech/angular-components": "20.2.8-beta.12",
|
|
21
|
+
"@rolatech/angular-services": "20.2.8-beta.12",
|
|
22
|
+
"@rolatech/angular-auth": "20.2.8-beta.12",
|
|
23
|
+
"@rolatech/angular-category": "20.2.8-beta.12",
|
|
24
|
+
"@rolatech/angular-comment": "20.2.8-beta.12",
|
|
25
25
|
"tslib": "^2.3.0"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
@@ -273,7 +273,7 @@ declare class CourseSectionItemComponent implements OnInit {
|
|
|
273
273
|
hasUnsaved: _angular_core.ModelSignal<boolean[] | undefined>;
|
|
274
274
|
editId: _angular_core.ModelSignal<any>;
|
|
275
275
|
save: _angular_core.OutputEmitterRef<CourseSection>;
|
|
276
|
-
|
|
276
|
+
cancelSection: _angular_core.OutputEmitterRef<CourseSection>;
|
|
277
277
|
delete: _angular_core.OutputEmitterRef<CourseSection>;
|
|
278
278
|
edit: _angular_core.OutputEmitterRef<CourseSection>;
|
|
279
279
|
addLecture: _angular_core.OutputEmitterRef<CourseSection>;
|
|
@@ -286,7 +286,7 @@ declare class CourseSectionItemComponent implements OnInit {
|
|
|
286
286
|
onEdit(section: CourseSection): void;
|
|
287
287
|
onAddLecture(section: CourseSection): void;
|
|
288
288
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CourseSectionItemComponent, never>;
|
|
289
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CourseSectionItemComponent, "rolatech-course-section-item", never, { "section": { "alias": "section"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "hasUnsaved": { "alias": "hasUnsaved"; "required": false; "isSignal": true; }; "editId": { "alias": "editId"; "required": false; "isSignal": true; }; }, { "section": "sectionChange"; "actions": "actionsChange"; "hasUnsaved": "hasUnsavedChange"; "editId": "editIdChange"; "save": "save"; "
|
|
289
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CourseSectionItemComponent, "rolatech-course-section-item", never, { "section": { "alias": "section"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "hasUnsaved": { "alias": "hasUnsaved"; "required": false; "isSignal": true; }; "editId": { "alias": "editId"; "required": false; "isSignal": true; }; }, { "section": "sectionChange"; "actions": "actionsChange"; "hasUnsaved": "hasUnsavedChange"; "editId": "editIdChange"; "save": "save"; "cancelSection": "cancelSection"; "delete": "delete"; "edit": "edit"; "addLecture": "addLecture"; }, never, ["*"], true, never>;
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
declare class CourseSectionLectureItemComponent implements OnInit {
|
|
@@ -300,7 +300,7 @@ declare class CourseSectionLectureItemComponent implements OnInit {
|
|
|
300
300
|
hasUnsaved: _angular_core.InputSignal<boolean>;
|
|
301
301
|
editId: _angular_core.ModelSignal<any>;
|
|
302
302
|
save: _angular_core.OutputEmitterRef<CourseSectionLecture>;
|
|
303
|
-
|
|
303
|
+
cancelLecture: _angular_core.OutputEmitterRef<CourseSectionLecture>;
|
|
304
304
|
delete: _angular_core.OutputEmitterRef<CourseSectionLecture>;
|
|
305
305
|
edit: _angular_core.OutputEmitterRef<CourseSectionLecture>;
|
|
306
306
|
mediaEdit: _angular_core.OutputEmitterRef<CourseSectionLectureVideo>;
|
|
@@ -322,7 +322,7 @@ declare class CourseSectionLectureItemComponent implements OnInit {
|
|
|
322
322
|
onDeleteMedia(data: any): void;
|
|
323
323
|
onLoadedMetadata(event: Event): void;
|
|
324
324
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CourseSectionLectureItemComponent, never>;
|
|
325
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CourseSectionLectureItemComponent, "rolatech-course-section-lecture-item", never, { "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "lecture": { "alias": "lecture"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "hasUnsaved": { "alias": "hasUnsaved"; "required": false; "isSignal": true; }; "editId": { "alias": "editId"; "required": false; "isSignal": true; }; }, { "editId": "editIdChange"; "save": "save"; "
|
|
325
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CourseSectionLectureItemComponent, "rolatech-course-section-lecture-item", never, { "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "lecture": { "alias": "lecture"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "hasUnsaved": { "alias": "hasUnsaved"; "required": false; "isSignal": true; }; "editId": { "alias": "editId"; "required": false; "isSignal": true; }; }, { "editId": "editIdChange"; "save": "save"; "cancelLecture": "cancelLecture"; "delete": "delete"; "edit": "edit"; "mediaEdit": "mediaEdit"; "thumbnailUpload": "thumbnailUpload"; "upload": "upload"; "deleteMedia": "deleteMedia"; }, never, ["*"], true, never>;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
declare class CourseSectionLectureVideoItemComponent {
|
|
@@ -432,14 +432,17 @@ declare class CategoryService extends BaseService {
|
|
|
432
432
|
declare const services: any[];
|
|
433
433
|
|
|
434
434
|
declare class CoursePricingDialogComponent {
|
|
435
|
-
|
|
436
|
-
data:
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
435
|
+
dialogRef: MatDialogRef<any, any>;
|
|
436
|
+
data: {
|
|
437
|
+
courseId: string;
|
|
438
|
+
pricing: Pricing[];
|
|
439
|
+
title: string;
|
|
440
|
+
};
|
|
441
|
+
courseService: CourseService;
|
|
442
|
+
snackBar: MatSnackBar;
|
|
443
|
+
dialog: MatDialog;
|
|
440
444
|
courseId: string;
|
|
441
445
|
pricing: Pricing[];
|
|
442
|
-
constructor(dialogRef: MatDialogRef<CoursePricingDialogComponent>, data: any, courseService: CourseService, snackBar: MatSnackBar, dialog: MatDialog);
|
|
443
446
|
close(): void;
|
|
444
447
|
addPricing(): void;
|
|
445
448
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoursePricingDialogComponent, never>;
|
|
@@ -447,11 +450,14 @@ declare class CoursePricingDialogComponent {
|
|
|
447
450
|
}
|
|
448
451
|
|
|
449
452
|
declare class CourseScheduleDialogComponent {
|
|
450
|
-
|
|
451
|
-
data:
|
|
453
|
+
dialogRef: MatDialogRef<any, any>;
|
|
454
|
+
data: {
|
|
455
|
+
courseId: string;
|
|
456
|
+
schedule: Schedule[];
|
|
457
|
+
title: string;
|
|
458
|
+
};
|
|
452
459
|
courseId: string;
|
|
453
460
|
schedule: Schedule[];
|
|
454
|
-
constructor(dialogRef: MatDialogRef<CourseScheduleDialogComponent>, data: any);
|
|
455
461
|
close(): void;
|
|
456
462
|
addSchedule(): void;
|
|
457
463
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CourseScheduleDialogComponent, never>;
|
|
@@ -459,14 +465,16 @@ declare class CourseScheduleDialogComponent {
|
|
|
459
465
|
}
|
|
460
466
|
|
|
461
467
|
declare class CourseDetailsDialogComponent {
|
|
462
|
-
|
|
463
|
-
data:
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
468
|
+
dialogRef: MatDialogRef<any, any>;
|
|
469
|
+
data: {
|
|
470
|
+
courseId: string;
|
|
471
|
+
title: string;
|
|
472
|
+
};
|
|
473
|
+
courseService: CourseService;
|
|
474
|
+
snackBar: MatSnackBar;
|
|
475
|
+
dialog: MatDialog;
|
|
467
476
|
courseId: string;
|
|
468
477
|
details: CourseDetail[];
|
|
469
|
-
constructor(dialogRef: MatDialogRef<CourseDetailsDialogComponent>, data: any, courseService: CourseService, snackBar: MatSnackBar, dialog: MatDialog);
|
|
470
478
|
close(): void;
|
|
471
479
|
addDetail(): void;
|
|
472
480
|
onDetailMediaUpload(event: any): void;
|
|
@@ -478,12 +486,16 @@ declare class CourseDetailsDialogComponent {
|
|
|
478
486
|
}
|
|
479
487
|
|
|
480
488
|
declare class CourseEditDialogComponent implements OnInit {
|
|
481
|
-
data: any;
|
|
482
489
|
dialogRef: MatDialogRef<any, any>;
|
|
483
490
|
categoryService: CategoryService;
|
|
484
491
|
courseService: CourseService;
|
|
485
492
|
snackBar: MatSnackBar;
|
|
486
493
|
dialog: MatDialog;
|
|
494
|
+
data: {
|
|
495
|
+
course: any;
|
|
496
|
+
address: any;
|
|
497
|
+
title: string;
|
|
498
|
+
};
|
|
487
499
|
course: any;
|
|
488
500
|
isUploading: boolean;
|
|
489
501
|
details: any;
|
|
@@ -501,7 +513,6 @@ declare class CourseEditDialogComponent implements OnInit {
|
|
|
501
513
|
lastStepper: boolean;
|
|
502
514
|
firstStepper: boolean;
|
|
503
515
|
stepper: _angular_core.Signal<MatStepper>;
|
|
504
|
-
constructor(data: any);
|
|
505
516
|
ngOnInit(): void;
|
|
506
517
|
close(): void;
|
|
507
518
|
compareFn(o1: any, o2: any): boolean;
|