@rolatech/angular-course 19.0.0-beta.2 → 19.0.0-beta.3

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.
Files changed (22) hide show
  1. package/fesm2022/rolatech-angular-course-course-category-index.component-B94mbBqD.mjs +55 -0
  2. package/fesm2022/rolatech-angular-course-course-category-index.component-B94mbBqD.mjs.map +1 -0
  3. package/fesm2022/{rolatech-angular-course-course-index.component-KI5KmWcz.mjs → rolatech-angular-course-course-index.component-DsllhSjO.mjs} +4 -4
  4. package/fesm2022/{rolatech-angular-course-course-index.component-KI5KmWcz.mjs.map → rolatech-angular-course-course-index.component-DsllhSjO.mjs.map} +1 -1
  5. package/fesm2022/rolatech-angular-course.mjs +850 -216
  6. package/fesm2022/rolatech-angular-course.mjs.map +1 -1
  7. package/index.d.ts +2 -0
  8. package/lib/interfaces/category.d.ts +2 -1
  9. package/lib/interfaces/course.d.ts +1 -1
  10. package/lib/pages/course/course-category/course-category.component.d.ts +8 -2
  11. package/lib/pages/course/course-category-index/course-category-index.component.d.ts +18 -0
  12. package/lib/pages/course/course-category-layout/course-category-layout.component.d.ts +17 -0
  13. package/lib/pages/course/course-category.routes.d.ts +2 -0
  14. package/lib/pages/course/course-detail/course-detail.component.d.ts +7 -2
  15. package/lib/pages/course-manage/course-manage-create/course-manage-create.component.d.ts +37 -0
  16. package/lib/pages/course-manage/course-manage-index/course-manage-index.component.d.ts +43 -0
  17. package/lib/pages/course-manage/course-manage-info/course-manage-info.component.d.ts +8 -2
  18. package/lib/pages/course-manage/course-manage-layout/course-manage-layout.component.d.ts +2 -9
  19. package/lib/pages/course-manage/course-manage-request/course-manage-request.component.d.ts +36 -0
  20. package/lib/services/instructor.service.d.ts +16 -0
  21. package/package.json +1 -1
  22. package/themes/_default.scss +1 -1
package/index.d.ts CHANGED
@@ -3,4 +3,6 @@ export * from './provider';
3
3
  export * from './lib/components';
4
4
  export * from './lib/services';
5
5
  export { courseRoutes } from './lib/pages/course/course.routes';
6
+ export { courseCategoryRoutes } from './lib/pages/course/course-category.routes';
6
7
  export { courseManageRoutes } from './lib/pages/course-manage/course-manage.routes';
8
+ export declare const loadCourseRoutes: () => Promise<import("@angular/router").Routes>;
@@ -6,7 +6,8 @@ export interface CourseCategory {
6
6
  courses: Course[];
7
7
  createdAt: string;
8
8
  originId: string;
9
- children: CourseCategory;
9
+ level: number;
10
+ children: CourseCategory[];
10
11
  parent: CourseCategory;
11
12
  }
12
13
  export interface CourseCategoryMedia {
@@ -4,7 +4,7 @@ export interface Course {
4
4
  id: string;
5
5
  name: string;
6
6
  description: string;
7
- categories?: CourseCategory[];
7
+ categories: CourseCategory[];
8
8
  createdAt: string;
9
9
  updatedAt: string;
10
10
  status: CourseStatus | string;
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
2
  import { CourseCategory, Course } from '../../../interfaces';
3
3
  import { CategoryService, CourseService } from '../../../services';
4
4
  import { BaseComponent } from '@rolatech/angular-components';
@@ -6,13 +6,19 @@ import * as i0 from "@angular/core";
6
6
  export declare class CourseCategoryComponent extends BaseComponent implements OnInit {
7
7
  categoryService: CategoryService;
8
8
  courseService: CourseService;
9
+ cdr: ChangeDetectorRef;
9
10
  category: CourseCategory;
10
11
  courses: Course[];
11
12
  categories: CourseCategory[];
12
13
  loading: boolean;
14
+ c: {
15
+ name: string;
16
+ path: string;
17
+ }[];
13
18
  ngOnInit(): void;
14
19
  findAllCategories(): void;
15
- findCategoryById(id: string): void;
20
+ findCategoryById(id: string, child: string): void;
21
+ toChildCategory(item: CourseCategory): void;
16
22
  findAllCourses(): void;
17
23
  findCoursesByCategoryId(id: string): void;
18
24
  loadCoursesByCategory(item: any): void;
@@ -0,0 +1,18 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponent } from '@rolatech/angular-components';
3
+ import { Course, CourseCategory } from '../../../interfaces';
4
+ import { CourseService, CategoryService } from '../../../services';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CourseCategoryIndexComponent extends BaseComponent implements OnInit {
7
+ courses: Course[];
8
+ categories: CourseCategory[];
9
+ courseService: CourseService;
10
+ categoryService: CategoryService;
11
+ meta: any;
12
+ loading: boolean;
13
+ ngOnInit(): void;
14
+ findCourses(): void;
15
+ findCategories(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseCategoryIndexComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<CourseCategoryIndexComponent, "rolatech-course-category-index", never, {}, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,17 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponent } from '@rolatech/angular-components';
3
+ import { CourseCategory } from '../../../interfaces';
4
+ import { CategoryService, CourseService } from '../../../services';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CourseCategoryLayoutComponent extends BaseComponent implements OnInit {
7
+ categories: CourseCategory[];
8
+ categoryService: CategoryService;
9
+ courseService: CourseService;
10
+ selectIndex: number;
11
+ ngOnInit(): void;
12
+ findCategories(): void;
13
+ loadCourseByCategoryIndex(index: number): void;
14
+ nextCategory(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseCategoryLayoutComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<CourseCategoryLayoutComponent, "rolatech-course-category-layout", never, {}, {}, never, never, true, never>;
17
+ }
@@ -0,0 +1,2 @@
1
+ import { Routes } from '@angular/router';
2
+ export declare const courseCategoryRoutes: Routes;
@@ -1,12 +1,12 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { CourseSection, CourseSectionLectureContentType } from '../../../interfaces';
2
+ import { Course, CourseSection, CourseSectionLectureContentType } from '../../../interfaces';
3
3
  import { CourseSectionService, CourseService } from '../../../services';
4
4
  import { AuthService, AuthUserService } from '@rolatech/angular-auth';
5
5
  import { BaseComponent } from '@rolatech/angular-components';
6
6
  import { ViewportScroller } from '@angular/common';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class CourseDetailComponent extends BaseComponent implements OnInit {
9
- course: any;
9
+ course: Course;
10
10
  status: any;
11
11
  authService: AuthService;
12
12
  authUserService: AuthUserService;
@@ -20,6 +20,10 @@ export declare class CourseDetailComponent extends BaseComponent implements OnIn
20
20
  purchased: boolean;
21
21
  sections: CourseSection[];
22
22
  type: typeof CourseSectionLectureContentType;
23
+ c: {
24
+ name: string;
25
+ path: string;
26
+ }[];
23
27
  constructor();
24
28
  ngOnInit(): void;
25
29
  scrollToAnchor(anchorId: string): void;
@@ -33,6 +37,7 @@ export declare class CourseDetailComponent extends BaseComponent implements OnIn
33
37
  onSection(event: any): void;
34
38
  private findWishlistBy;
35
39
  findPurchasedByCourseId(): void;
40
+ private formatCategory;
36
41
  static ɵfac: i0.ɵɵFactoryDeclaration<CourseDetailComponent, never>;
37
42
  static ɵcmp: i0.ɵɵComponentDeclaration<CourseDetailComponent, "rolatech-course-detail", never, {}, {}, never, never, true, never>;
38
43
  }
@@ -0,0 +1,37 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { Media } from '@rolatech/angular-common';
3
+ import { BaseComponent } from '@rolatech/angular-components';
4
+ import { CourseService, CategoryService } from '../../../services';
5
+ import { InstructorService } from '../../../services/instructor.service';
6
+ import { CourseCategory } from '../../../interfaces';
7
+ import * as i0 from "@angular/core";
8
+ export declare class CourseManageCreateComponent extends BaseComponent implements OnInit {
9
+ courseService: CourseService;
10
+ categoryService: CategoryService;
11
+ instructorService: InstructorService;
12
+ isUploading: boolean;
13
+ media: Media[];
14
+ selectedCategoyIds: string[];
15
+ categories: CourseCategory[];
16
+ classrooms: any;
17
+ selectedClassroom: any;
18
+ parentCategory: CourseCategory;
19
+ childrenCategories: CourseCategory[];
20
+ selectedChildrenCategories: CourseCategory[];
21
+ courseType: {
22
+ key: string;
23
+ value: string;
24
+ }[];
25
+ course: any;
26
+ ngOnInit(): void;
27
+ findClassrooms(): void;
28
+ onMediaDelete(event: any): void;
29
+ create(): void;
30
+ onParentCategoryChange(event: any): void;
31
+ onChildCategoryChange(event: any): void;
32
+ onClassroomSelected(event: any): void;
33
+ onImageClick(i: any): void;
34
+ onUpload(event: any): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseManageCreateComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<CourseManageCreateComponent, "rolatech-course-manage-create", never, {}, {}, never, never, true, never>;
37
+ }
@@ -0,0 +1,43 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { MatPaginator, PageEvent } from '@angular/material/paginator';
4
+ import { MatSnackBar } from '@angular/material/snack-bar';
5
+ import { MatTableDataSource } from '@angular/material/table';
6
+ import { Course } from '../../../interfaces';
7
+ import { CourseService } from '../../../services';
8
+ import { InstructorService } from '../../../services/instructor.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class CourseManageIndexComponent implements OnInit {
11
+ paginator: import("@angular/core").Signal<MatPaginator | undefined>;
12
+ instructorService: InstructorService;
13
+ dialog: MatDialog;
14
+ snackBar: MatSnackBar;
15
+ courseService: CourseService;
16
+ isLoading: boolean;
17
+ isSearch: boolean;
18
+ pageEvent: PageEvent;
19
+ length: number;
20
+ pageSize: number;
21
+ pageSizeOptions: number[];
22
+ dataSource: MatTableDataSource<any, MatPaginator>;
23
+ courses: Course[];
24
+ displayedColumns: string[];
25
+ orderOptions: {
26
+ key: string;
27
+ value: string;
28
+ icon: string;
29
+ sort: string;
30
+ }[];
31
+ status: any;
32
+ orderString: string;
33
+ classrooms: any;
34
+ ngOnInit(): void;
35
+ find(event?: PageEvent | null): any;
36
+ findClassrooms(): void;
37
+ start(course: any): void;
38
+ stop(course: any): void;
39
+ edit(item: any): void;
40
+ delete(course: Course): void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseManageIndexComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<CourseManageIndexComponent, "rolatech-course-manage-index", never, {}, {}, never, never, true, never>;
43
+ }
@@ -16,6 +16,9 @@ export declare class CourseManageInfoComponent extends BaseComponent implements
16
16
  selectedCategoyIds: string[];
17
17
  selectedClassroom: any;
18
18
  categories: CourseCategory[];
19
+ parentCategory: CourseCategory;
20
+ childrenCategories: CourseCategory[];
21
+ selectedChildrenCategories: CourseCategory[];
19
22
  classrooms: any;
20
23
  bookedClassrooms: any;
21
24
  courseType: {
@@ -26,9 +29,12 @@ export declare class CourseManageInfoComponent extends BaseComponent implements
26
29
  findBookedClassrooms(): void;
27
30
  findClassrooms(): void;
28
31
  find(): void;
29
- compareFn(o1: CourseCategory, o2: CourseCategory): boolean;
32
+ findChildrenCategoryByParentId(parentId: string): void;
33
+ compareParentFn(o1: CourseCategory, o2: CourseCategory): boolean;
34
+ compareChildrenFn(o1: CourseCategory, o2: CourseCategory): boolean;
30
35
  compareClassroom(o1: any, o2: any): boolean;
31
- onSelectionChange(event: any): void;
36
+ onParentCategoryChange(event: any): void;
37
+ onChildCategoryChange(event: any): void;
32
38
  onClassroomSelected(event: any): void;
33
39
  update(): void;
34
40
  static ɵfac: i0.ɵɵFactoryDeclaration<CourseManageInfoComponent, never>;
@@ -1,21 +1,14 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { MatDialog } from '@angular/material/dialog';
3
- import { MatSnackBar } from '@angular/material/snack-bar';
4
- import { ActivatedRoute } from '@angular/router';
5
2
  import { CourseService } from '../../../services';
6
3
  import { Course } from '../../../interfaces';
4
+ import { BaseComponent } from '@rolatech/angular-components';
7
5
  import * as i0 from "@angular/core";
8
- export declare class CourseManageLayoutComponent implements OnInit {
9
- id: string;
6
+ export declare class CourseManageLayoutComponent extends BaseComponent implements OnInit {
10
7
  course: Course;
11
8
  submitted: boolean;
12
9
  accepted: boolean;
13
10
  isDraft: boolean;
14
- route: ActivatedRoute;
15
11
  courseService: CourseService;
16
- dialog: MatDialog;
17
- snackBar: MatSnackBar;
18
- constructor();
19
12
  ngOnInit(): void;
20
13
  get(): void;
21
14
  updateStatus(): void;
@@ -0,0 +1,36 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { PageEvent, MatPaginator } from '@angular/material/paginator';
4
+ import { MatSnackBar } from '@angular/material/snack-bar';
5
+ import { MatTableDataSource } from '@angular/material/table';
6
+ import { Course } from '../../../interfaces';
7
+ import { CourseService } from '../../../services';
8
+ import * as i0 from "@angular/core";
9
+ export declare class CourseManageRequestComponent implements OnInit {
10
+ private dialog;
11
+ private snackBar;
12
+ private courseService;
13
+ isLoading: boolean;
14
+ isSearch: boolean;
15
+ pageEvent: PageEvent;
16
+ length: number;
17
+ pageSize: number;
18
+ pageSizeOptions: number[];
19
+ dataSource: MatTableDataSource<any, MatPaginator>;
20
+ courses: Course[];
21
+ displayedColumns: string[];
22
+ paginator: import("@angular/core").Signal<MatPaginator | undefined>;
23
+ orderOptions: {
24
+ key: string;
25
+ value: string;
26
+ icon: string;
27
+ sort: string;
28
+ }[];
29
+ status: any;
30
+ orderString: string;
31
+ constructor(dialog: MatDialog, snackBar: MatSnackBar, courseService: CourseService);
32
+ ngOnInit(): void;
33
+ find(event?: PageEvent | null): any;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseManageRequestComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<CourseManageRequestComponent, "rolatech-course-manage-request", never, {}, {}, never, never, true, never>;
36
+ }
@@ -3,7 +3,23 @@ import { Observable } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class InstructorService extends BaseService {
5
5
  init(): void;
6
+ createClassroom(data: any): Observable<any>;
7
+ updateClassroom(id: string, data: any): Observable<any>;
8
+ deleteClassroom(id: string): Observable<any>;
9
+ findClassrooms(options: any): Observable<any>;
6
10
  findMyClassrooms(options: any): Observable<any>;
11
+ getClassroom(id: string): Observable<any>;
12
+ findPublicInfoByUserId(id: string): Observable<any>;
13
+ findApplications(options: any): Observable<any>;
14
+ findApplication(id: string): Observable<any>;
15
+ findTransactions(options: any): Observable<any>;
16
+ getTransaction(id: string): Observable<any>;
17
+ getApplication(): Observable<any>;
18
+ acceptApplication(id: string): Observable<any>;
19
+ rejectApplication(id: string, body: any): Observable<any>;
20
+ upload(data: FormData): Observable<any>;
21
+ uploadMedia(id: string, data: FormData): Observable<any>;
22
+ deleteMedia(id: string, mediaId: string): Observable<any>;
7
23
  static ɵfac: i0.ɵɵFactoryDeclaration<InstructorService, never>;
8
24
  static ɵprov: i0.ɵɵInjectableDeclaration<InstructorService>;
9
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolatech/angular-course",
3
- "version": "19.0.0-beta.2",
3
+ "version": "19.0.0-beta.3",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.0",
@@ -1 +1 @@
1
- .pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-20{z-index:20}.z-30{z-index:30}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.-m-1{margin:-.25rem}.m-3{margin:.75rem}.m-auto{margin:auto}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.-ml-2{margin-left:-.5rem}.-mt-4{margin-top:-1rem}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-0{margin-left:0}.ml-1{margin-left:.25rem}.ml-14{margin-left:3.5rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-\[40px\]{margin-left:40px}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-\[6px\]{margin-top:6px}.box-border{box-sizing:border-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-4{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:4}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.aspect-video{aspect-ratio:16/9}.h-0{height:0}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-20{height:5rem}.h-24{height:6rem}.h-4{height:1rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-80{height:20rem}.h-9{height:2.25rem}.h-\[190px\]{height:190px}.h-\[256px\]{height:256px}.h-auto{height:auto}.h-fit{height:-moz-fit-content;height:fit-content}.h-full{height:100%}.max-h-32{max-height:8rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.max-h-\[55vh\]{max-height:55vh}.min-h-10{min-height:2.5rem}.min-h-11{min-height:2.75rem}.min-h-\[28px\]{min-height:28px}.min-h-\[320px\]{min-height:320px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-2\/3{width:66.666667%}.w-2\/5{width:40%}.w-20{width:5rem}.w-3\/5{width:60%}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-7{width:1.75rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-\[190px\]{width:190px}.w-\[256px\]{width:256px}.w-\[60px\]{width:60px}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-9{min-width:2.25rem}.min-w-\[240px\]{min-width:240px}.min-w-\[256px\]{min-width:256px}.min-w-\[28px\]{min-width:28px}.min-w-\[320px\]{min-width:320px}.max-w-8{max-width:2rem}.max-w-\[1120px\]{max-width:1120px}.max-w-\[1280px\]{max-width:1280px}.max-w-\[500px\]{max-width:500px}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.flex-1{flex:1 1 0%}.grow{flex-grow:1}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.scale-90,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-pre{white-space:pre}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-2{border-width:2px}.border-dashed{border-style:dashed}.border-\[--rt-border-color\]{border-color:var(--rt-border-color)}.bg-\[--rt-10-percent-layer\]{background-color:var(--rt-10-percent-layer)}.bg-\[--rt-badge-chip-background\]{background-color:var(--rt-badge-chip-background)}.bg-\[--rt-base-background\]{background-color:var(--rt-base-background)}.bg-\[--rt-brand-color\]{background-color:var(--rt-brand-color)}.bg-\[--rt-raised-background\]{background-color:var(--rt-raised-background)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.bg-fixed{background-attachment:fixed}.fill-current{fill:currentColor}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.\!p-1{padding:.25rem!important}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pt-2{padding-top:.5rem}.text-center{text-align:center}.text-right{text-align:right}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[0\.9rem\]{font-size:.9rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.italic{font-style:italic}.leading-3{line-height:.75rem}.leading-none{line-height:1}.text-\[--rt-brand-color\]{color:var(--rt-brand-color)}.text-\[--rt-text-primary\]{color:var(--rt-text-primary)}.text-\[--rt-text-secondary\]{color:var(--rt-text-secondary)}.text-transparent{color:transparent}.underline{text-decoration-line:underline}.underline-offset-2{text-underline-offset:2px}.opacity-30{opacity:.3}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-dashed{outline-style:dashed}.outline-1{outline-width:1px}.outline-4{outline-width:4px}.outline-transparent{outline-color:transparent}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.hover\:bg-\[--rt-10-percent-layer\]:hover{background-color:var(--rt-10-percent-layer)}.hover\:bg-\[--rt-base-background\]:hover{background-color:var(--rt-base-background)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.hover\:outline-\[--rt-raised-background\]:hover{outline-color:var(--rt-raised-background)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.group:hover .group-hover\:visible{visibility:visible}@media (min-width:600px){.sm\:w-1\/3{width:33.333333%}}@media (min-width:768px){.md\:visible{visibility:visible}.md\:mb-1{margin-bottom:.25rem}.md\:ml-2{margin-left:.5rem}.md\:ml-8{margin-left:2rem}.md\:mr-0{margin-right:0}.md\:mt-6{margin-top:1.5rem}.md\:line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.md\:block{display:block}.md\:flex{display:flex}.md\:h-auto{height:auto}.md\:h-full{height:100%}.md\:w-1\/2{width:50%}.md\:w-1\/4{width:25%}.md\:w-3\/4{width:75%}.md\:w-80{width:20rem}.md\:w-full{width:100%}.md\:flex-row{flex-direction:row}.md\:flex-col{flex-direction:column}.md\:items-start{align-items:flex-start}.md\:gap-10{gap:2.5rem}.md\:rounded-xl{border-radius:.75rem}.md\:bg-\[--rt-base-background\]{background-color:var(--rt-base-background)}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-16{padding-left:4rem;padding-right:4rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:text-lg{font-size:1.125rem}.md\:text-lg,.md\:text-xl{line-height:1.75rem}.md\:text-xl{font-size:1.25rem}}@media (min-width:1024px){.lg\:mt-4{margin-top:1rem}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:w-1\/6{width:16.666667%}.lg\:w-\[30\%\]{width:30%}.lg\:w-\[70\%\]{width:70%}.lg\:basis-1\/2{flex-basis:50%}.lg\:flex-row{flex-direction:row}.lg\:px-0{padding-left:0;padding-right:0}.lg\:px-6{padding-left:1.5rem}.lg\:pr-6,.lg\:px-6{padding-right:1.5rem}.lg\:pt-0{padding-top:0}}@media (min-width:1280px){.xl\:max-w-\[1024px\]{max-width:1024px}}@media (min-width:1536px){.\32xl\:max-w-\[1280px\]{max-width:1280px}}
1
+ .pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-20{z-index:20}.z-30{z-index:30}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.-m-1{margin:-.25rem}.m-3{margin:.75rem}.m-auto{margin:auto}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.-ml-2{margin-left:-.5rem}.-mt-4{margin-top:-1rem}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-0{margin-left:0}.ml-1{margin-left:.25rem}.ml-14{margin-left:3.5rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-\[40px\]{margin-left:40px}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-\[6px\]{margin-top:6px}.box-border{box-sizing:border-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-4{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:4}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.aspect-video{aspect-ratio:16/9}.h-0{height:0}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-20{height:5rem}.h-24{height:6rem}.h-4{height:1rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-80{height:20rem}.h-9{height:2.25rem}.h-\[190px\]{height:190px}.h-\[256px\]{height:256px}.h-auto{height:auto}.h-fit{height:-moz-fit-content;height:fit-content}.h-full{height:100%}.max-h-32{max-height:8rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.max-h-\[55vh\]{max-height:55vh}.min-h-10{min-height:2.5rem}.min-h-11{min-height:2.75rem}.min-h-\[28px\]{min-height:28px}.min-h-\[320px\]{min-height:320px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-2\/3{width:66.666667%}.w-2\/5{width:40%}.w-20{width:5rem}.w-28{width:7rem}.w-3\/5{width:60%}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-7{width:1.75rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-\[190px\]{width:190px}.w-\[256px\]{width:256px}.w-\[60px\]{width:60px}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-9{min-width:2.25rem}.min-w-\[240px\]{min-width:240px}.min-w-\[256px\]{min-width:256px}.min-w-\[28px\]{min-width:28px}.min-w-\[320px\]{min-width:320px}.max-w-8{max-width:2rem}.max-w-\[1120px\]{max-width:1120px}.max-w-\[1280px\]{max-width:1280px}.max-w-\[500px\]{max-width:500px}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.flex-1{flex:1 1 0%}.grow{flex-grow:1}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.scale-90,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-pre{white-space:pre}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-2{border-width:2px}.border-dashed{border-style:dashed}.border-\[--rt-border-color\]{border-color:var(--rt-border-color)}.bg-\[--rt-10-percent-layer\]{background-color:var(--rt-10-percent-layer)}.bg-\[--rt-badge-chip-background\]{background-color:var(--rt-badge-chip-background)}.bg-\[--rt-base-background\]{background-color:var(--rt-base-background)}.bg-\[--rt-brand-color\]{background-color:var(--rt-brand-color)}.bg-\[--rt-raised-background\]{background-color:var(--rt-raised-background)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.bg-fixed{background-attachment:fixed}.fill-current{fill:currentColor}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.\!p-1{padding:.25rem!important}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pt-2{padding-top:.5rem}.text-center{text-align:center}.text-right{text-align:right}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[0\.9rem\]{font-size:.9rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-thin{font-weight:100}.italic{font-style:italic}.leading-3{line-height:.75rem}.leading-none{line-height:1}.text-\[\#4A4A4A\]{--tw-text-opacity:1;color:rgb(74 74 74/var(--tw-text-opacity,1))}.text-\[--rt-brand-color\]{color:var(--rt-brand-color)}.text-\[--rt-text-primary\]{color:var(--rt-text-primary)}.text-\[--rt-text-secondary\]{color:var(--rt-text-secondary)}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.text-transparent{color:transparent}.underline{text-decoration-line:underline}.underline-offset-2{text-underline-offset:2px}.opacity-30{opacity:.3}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-dashed{outline-style:dashed}.outline-1{outline-width:1px}.outline-4{outline-width:4px}.outline-transparent{outline-color:transparent}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.hover\:bg-\[--rt-10-percent-layer\]:hover{background-color:var(--rt-10-percent-layer)}.hover\:bg-\[--rt-20-percent-layer\]:hover{background-color:var(--rt-20-percent-layer)}.hover\:bg-\[--rt-base-background\]:hover{background-color:var(--rt-base-background)}.hover\:bg-\[--rt-raised-background\]:hover{background-color:var(--rt-raised-background)}.hover\:text-orange-600:hover{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity,1))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.hover\:underline:hover{text-decoration-line:underline}.hover\:outline-\[--rt-raised-background\]:hover{outline-color:var(--rt-raised-background)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.group:hover .group-hover\:visible{visibility:visible}@media (min-width:600px){.sm\:w-1\/3{width:33.333333%}}@media (min-width:768px){.md\:visible{visibility:visible}.md\:mb-1{margin-bottom:.25rem}.md\:ml-2{margin-left:.5rem}.md\:ml-8{margin-left:2rem}.md\:mr-0{margin-right:0}.md\:mt-6{margin-top:1.5rem}.md\:line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.md\:block{display:block}.md\:flex{display:flex}.md\:h-auto{height:auto}.md\:h-full{height:100%}.md\:w-1\/2{width:50%}.md\:w-1\/4{width:25%}.md\:w-3\/4{width:75%}.md\:w-80{width:20rem}.md\:w-full{width:100%}.md\:flex-row{flex-direction:row}.md\:flex-col{flex-direction:column}.md\:items-start{align-items:flex-start}.md\:gap-10{gap:2.5rem}.md\:rounded-xl{border-radius:.75rem}.md\:bg-\[--rt-base-background\]{background-color:var(--rt-base-background)}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-16{padding-left:4rem;padding-right:4rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:text-lg{font-size:1.125rem}.md\:text-lg,.md\:text-xl{line-height:1.75rem}.md\:text-xl{font-size:1.25rem}}@media (min-width:1024px){.lg\:mt-4{margin-top:1rem}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:w-1\/6{width:16.666667%}.lg\:w-\[30\%\]{width:30%}.lg\:w-\[70\%\]{width:70%}.lg\:basis-1\/2{flex-basis:50%}.lg\:flex-row{flex-direction:row}.lg\:px-0{padding-left:0;padding-right:0}.lg\:px-6{padding-left:1.5rem}.lg\:pr-6,.lg\:px-6{padding-right:1.5rem}.lg\:pt-0{padding-top:0}}@media (min-width:1280px){.xl\:max-w-\[1024px\]{max-width:1024px}}@media (min-width:1536px){.\32xl\:max-w-\[1280px\]{max-width:1280px}}