@rolatech/angular-course 20.0.0-beta.7 → 20.0.0-beta.8
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/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ interface Course {
|
|
|
52
52
|
details: CourseDetail[];
|
|
53
53
|
pricing: CoursePricing[];
|
|
54
54
|
schedule: CourseSchedule[];
|
|
55
|
+
address: CourseAddress;
|
|
55
56
|
}
|
|
56
57
|
interface CoursePricing {
|
|
57
58
|
id: string;
|
|
@@ -87,6 +88,23 @@ interface CourseClassroom {
|
|
|
87
88
|
isUploading?: boolean;
|
|
88
89
|
room?: string;
|
|
89
90
|
}
|
|
91
|
+
interface CourseAddress {
|
|
92
|
+
id: string;
|
|
93
|
+
name: string;
|
|
94
|
+
contact: string;
|
|
95
|
+
phone: string;
|
|
96
|
+
province: string;
|
|
97
|
+
city: string;
|
|
98
|
+
county: string;
|
|
99
|
+
town: string;
|
|
100
|
+
address: string;
|
|
101
|
+
detail: string;
|
|
102
|
+
latitude: string;
|
|
103
|
+
longitude: string;
|
|
104
|
+
media: Media[];
|
|
105
|
+
isUploading?: boolean;
|
|
106
|
+
room?: string;
|
|
107
|
+
}
|
|
90
108
|
declare enum CourseStatus {
|
|
91
109
|
ACTIVE,
|
|
92
110
|
ACCEPTED,
|
|
@@ -460,12 +478,12 @@ declare class CourseDetailsDialogComponent {
|
|
|
460
478
|
}
|
|
461
479
|
|
|
462
480
|
declare class CourseEditDialogComponent implements OnInit {
|
|
463
|
-
private dialogRef;
|
|
464
481
|
data: any;
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
482
|
+
dialogRef: MatDialogRef<any, any>;
|
|
483
|
+
categoryService: CategoryService;
|
|
484
|
+
courseService: CourseService;
|
|
485
|
+
snackBar: MatSnackBar;
|
|
486
|
+
dialog: MatDialog;
|
|
469
487
|
course: any;
|
|
470
488
|
isUploading: boolean;
|
|
471
489
|
details: any;
|
|
@@ -478,12 +496,12 @@ declare class CourseEditDialogComponent implements OnInit {
|
|
|
478
496
|
selectedCategoyIds: string[];
|
|
479
497
|
categories: CourseCategory[];
|
|
480
498
|
selectedCategory: CourseCategory;
|
|
481
|
-
|
|
499
|
+
address: any;
|
|
482
500
|
date: string[];
|
|
483
501
|
lastStepper: boolean;
|
|
484
502
|
firstStepper: boolean;
|
|
485
503
|
stepper: _angular_core.Signal<MatStepper>;
|
|
486
|
-
constructor(
|
|
504
|
+
constructor(data: any);
|
|
487
505
|
ngOnInit(): void;
|
|
488
506
|
close(): void;
|
|
489
507
|
compareFn(o1: any, o2: any): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-course",
|
|
3
|
-
"version": "20.0.0-beta.
|
|
3
|
+
"version": "20.0.0-beta.8",
|
|
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.0.0-beta.
|
|
20
|
-
"@rolatech/angular-components": "20.0.0-beta.
|
|
21
|
-
"@rolatech/angular-services": "20.0.0-beta.
|
|
22
|
-
"@rolatech/angular-auth": "20.0.0-beta.
|
|
23
|
-
"@rolatech/angular-category": "20.0.0-beta.
|
|
24
|
-
"@rolatech/angular-comment": "20.0.0-beta.
|
|
19
|
+
"@rolatech/angular-common": "20.0.0-beta.8",
|
|
20
|
+
"@rolatech/angular-components": "20.0.0-beta.8",
|
|
21
|
+
"@rolatech/angular-services": "20.0.0-beta.8",
|
|
22
|
+
"@rolatech/angular-auth": "20.0.0-beta.8",
|
|
23
|
+
"@rolatech/angular-category": "20.0.0-beta.8",
|
|
24
|
+
"@rolatech/angular-comment": "20.0.0-beta.8",
|
|
25
25
|
"tslib": "^2.3.0"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|