cyber-elx 1.1.5 → 1.1.10
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/DEV_DOC/LoginRegisterPagesDev.md +8 -0
- package/DEV_DOC/PaymentPageDev.md +8 -0
- package/DEV_DOC/README.md +32 -0
- package/DEV_DOC/StudentCourseDetailPageDev.md +738 -0
- package/DEV_DOC/StudentCssDev.md +313 -0
- package/DEV_DOC/StudentListCoursesPageDev.md +779 -0
- package/DEV_DOC/StudentMyCoursesPageDev.md +447 -0
- package/DEV_DOC/StudentStartupDev.md +25 -0
- package/DEV_DOC/TeacherCssDev.md +313 -0
- package/DEV_DOC/ThemeDev.md +26 -10
- package/package.json +1 -1
- package/src/api.js +3 -3
- package/src/files.js +2 -1
package/DEV_DOC/README.md
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# CyberOcean Custom Pages CLI Tool
|
|
2
|
+
|
|
3
|
+
This directory contains documentation for customizing the CyberOcean ELX platform.
|
|
4
|
+
|
|
5
|
+
## Documentation Index
|
|
6
|
+
|
|
7
|
+
### [LoginRegisterPagesDev.md](LoginRegisterPagesDev.md)
|
|
8
|
+
Custom Login & Register pages using Vue.js components. Covers the multi-step login flow (email → password → login) and password recovery flow (send code → verify → new password). Also documents the registration form with optional email verification. Includes available props, events to emit, and complete working examples.
|
|
9
|
+
|
|
10
|
+
### [PaymentPageDev.md](PaymentPageDev.md)
|
|
11
|
+
Custom Payment page for course enrollment. Handles guest vs logged-in user states, displays course information with price breakdown, and provides payment method selection (online payment or course request). Documents the course object structure, user object, and all dialog interactions.
|
|
12
|
+
|
|
13
|
+
### [StudentCourseDetailPageDev.md](StudentCourseDetailPageDev.md)
|
|
14
|
+
Custom Student Course Detail page for viewing individual courses. Displays course cover, header with logo/name, description, and accordion-style curriculum with chapters and lessons. Features a sticky price card sidebar with promo pricing, course info, buy/request button, and expiration text. Includes video modal for free preview playback and responsive 2-column to 1-column layout.
|
|
15
|
+
|
|
16
|
+
### [StudentCssDev.md](StudentCssDev.md)
|
|
17
|
+
CSS customization guide for the Student Dashboard. Covers navbar styling (background color, profile button, dropdown menu) and sidebar styling (background, active items, hover effects, submenu items). Includes important notes about using `::before` for backgrounds and required `!important` overrides.
|
|
18
|
+
|
|
19
|
+
### [StudentListCoursesPageDev.md](StudentListCoursesPageDev.md)
|
|
20
|
+
Custom Student List Courses page (course catalog). Displays categories grid, featured courses with flip-card hover effect, and promoted courses horizontal slider with navigation. Includes responsive design (1-4 columns), primary color theming via Vuex store, and slider state management with resize handling.
|
|
21
|
+
|
|
22
|
+
### [StudentMyCoursesPageDev.md](StudentMyCoursesPageDev.md)
|
|
23
|
+
Custom Student My Courses page (student dashboard home). Shows statistics cards (total courses, completed, certificates), course list with progress bars, and certificate generation for completed courses. Documents the cardsInfos structure, courses array with progress tracking, and available translation keys.
|
|
24
|
+
|
|
25
|
+
### [StudentStartupDev.md](StudentStartupDev.md)
|
|
26
|
+
Available JavaScript variables for student-related customizations. Documents the student user object accessible via `$nuxt.$store.state.auth.user` including fields like id, name, email, phone, grade, and profile image.
|
|
27
|
+
|
|
28
|
+
### [TeacherCssDev.md](TeacherCssDev.md)
|
|
29
|
+
CSS customization guide for the Teacher Dashboard. Same structure as StudentCssDev.md - covers navbar styling and sidebar styling with examples for background colors, active states, hover effects, and responsive behavior.
|
|
30
|
+
|
|
31
|
+
### [ThemeDev.md](ThemeDev.md)
|
|
32
|
+
Comprehensive theme development guide using Liquid templating. Covers layout structure, sections, templates, and all available Liquid variables for each page type (home, course, courses, category, blog, blogs, contact, about). Includes object structures for courses, categories, articles, and website URLs.
|