File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/standalone-ui/src/questions Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ Refactor the `courses` package to `courseware` with proper abstraction naming an
9797- [x] Update view components collection to use custom registry
9898
9999** Validation** : Custom questions appear and render correctly in studio-ui CreateCard ✅
100+ ** END-TO-END CONFIRMED** : Studio-UI via CLI against standalone-ui custom questions fully operational ✅
100101
101102---
102103
Original file line number Diff line number Diff line change 11// Library entry point for custom questions in standalone-ui
22// This file exports question types and components for consumption by studio-ui
33
4- import { Course } from '@vue-skuilder/courseware' ;
4+ import { CourseWare } from '@vue-skuilder/courseware' ;
55import { DataShape } from '@vue-skuilder/common' ;
66import { ViewComponent } from '@vue-skuilder/common-ui' ;
77
@@ -68,7 +68,7 @@ export function allCustomQuestions() {
6868
6969 // Return structured data for studio-ui integration
7070 return {
71- // Course instances with question instances
71+ // CourseWare instances with question instances
7272 courses,
7373
7474 // Question class constructors for registration
@@ -97,7 +97,7 @@ export function allCustomQuestions() {
9797 * This provides TypeScript support for CLI and studio-ui integration
9898 */
9999export interface CustomQuestionsExport {
100- courses : Course [ ] ;
100+ courses : CourseWare [ ] ;
101101 questionClasses : Array <
102102 typeof SimpleTextQuestion | typeof MultipleChoiceQuestion | typeof NumberRangeQuestion
103103 > ;
You can’t perform that action at this time.
0 commit comments