coursecode 0.1.0
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/LICENSE +21 -0
- package/README.md +322 -0
- package/THIRD_PARTY_NOTICES.md +22 -0
- package/bin/cli.js +331 -0
- package/framework/assets/logo-coursecode-black.svg +14 -0
- package/framework/assets/logo-coursecode-white.svg +14 -0
- package/framework/assets/logo-coursecode.svg +14 -0
- package/framework/css/01-base.css +160 -0
- package/framework/css/02-layout.css +499 -0
- package/framework/css/accessibility.css +834 -0
- package/framework/css/components/accordions.css +710 -0
- package/framework/css/components/assessments.css +520 -0
- package/framework/css/components/audio-player.css +570 -0
- package/framework/css/components/badges.css +80 -0
- package/framework/css/components/breadcrumbs.css +87 -0
- package/framework/css/components/buttons.css +707 -0
- package/framework/css/components/callouts.css +1280 -0
- package/framework/css/components/cards.css +475 -0
- package/framework/css/components/carousel.css +193 -0
- package/framework/css/components/checkbox-group.css +123 -0
- package/framework/css/components/checklist.css +203 -0
- package/framework/css/components/collapse.css +96 -0
- package/framework/css/components/comparison.css +33 -0
- package/framework/css/components/content-image.css +36 -0
- package/framework/css/components/document-gallery.css +425 -0
- package/framework/css/components/dropdown.css +115 -0
- package/framework/css/components/embed-frame.css +142 -0
- package/framework/css/components/engagement.css +412 -0
- package/framework/css/components/features.css +35 -0
- package/framework/css/components/flip-cards.css +253 -0
- package/framework/css/components/footer.css +353 -0
- package/framework/css/components/forms.css +294 -0
- package/framework/css/components/hero.css +216 -0
- package/framework/css/components/images.css +528 -0
- package/framework/css/components/interactive-timeline.css +274 -0
- package/framework/css/components/intro-cards.css +30 -0
- package/framework/css/components/lightbox.css +666 -0
- package/framework/css/components/loading.css +65 -0
- package/framework/css/components/modals.css +235 -0
- package/framework/css/components/notifications.css +107 -0
- package/framework/css/components/quote.css +150 -0
- package/framework/css/components/sidebar.css +684 -0
- package/framework/css/components/slide-header.css +52 -0
- package/framework/css/components/spinner.css +62 -0
- package/framework/css/components/stats.css +44 -0
- package/framework/css/components/steps.css +232 -0
- package/framework/css/components/tables.css +90 -0
- package/framework/css/components/tabs.css +347 -0
- package/framework/css/components/timeline.css +154 -0
- package/framework/css/components/toggle.css +95 -0
- package/framework/css/components/tooltip.css +226 -0
- package/framework/css/components/video-player.css +438 -0
- package/framework/css/design-tokens.css +707 -0
- package/framework/css/framework.css +86 -0
- package/framework/css/interactions/accessibility.css +75 -0
- package/framework/css/interactions/base.css +92 -0
- package/framework/css/interactions/drag-drop.css +295 -0
- package/framework/css/interactions/fill-in-the-blank.css +236 -0
- package/framework/css/interactions/hotspots.css +69 -0
- package/framework/css/interactions/index.css +45 -0
- package/framework/css/interactions/interactive-image.css +359 -0
- package/framework/css/interactions/likert.css +126 -0
- package/framework/css/interactions/matching.css +354 -0
- package/framework/css/interactions/numeric-input.css +78 -0
- package/framework/css/interactions/sequencing.css +378 -0
- package/framework/css/interactions/true-false.css +177 -0
- package/framework/css/layouts/article.css +258 -0
- package/framework/css/layouts/base.css +30 -0
- package/framework/css/layouts/canvas.css +38 -0
- package/framework/css/layouts/focused.css +236 -0
- package/framework/css/layouts/index.css +29 -0
- package/framework/css/layouts/presentation.css +191 -0
- package/framework/css/layouts/traditional.css +52 -0
- package/framework/css/responsive.css +439 -0
- package/framework/css/utilities/accessibility-utils.css +59 -0
- package/framework/css/utilities/animations.css +419 -0
- package/framework/css/utilities/borders.css +72 -0
- package/framework/css/utilities/colors.css +76 -0
- package/framework/css/utilities/container.css +46 -0
- package/framework/css/utilities/decorative.css +442 -0
- package/framework/css/utilities/display.css +257 -0
- package/framework/css/utilities/flexbox.css +80 -0
- package/framework/css/utilities/grid.css +69 -0
- package/framework/css/utilities/icons.css +534 -0
- package/framework/css/utilities/lists.css +190 -0
- package/framework/css/utilities/spacing.css +167 -0
- package/framework/css/utilities/tables.css +81 -0
- package/framework/css/utilities/typography.css +159 -0
- package/framework/css/utilities/visibility.css +117 -0
- package/framework/docs/COURSE_AUTHORING_GUIDE.md +1773 -0
- package/framework/docs/COURSE_OUTLINE_GUIDE.md +725 -0
- package/framework/docs/COURSE_OUTLINE_TEMPLATE.md +161 -0
- package/framework/docs/DATA_MODEL.md +409 -0
- package/framework/docs/FRAMEWORK_GUIDE.md +1088 -0
- package/framework/docs/USER_GUIDE.md +583 -0
- package/framework/docs/examples/cloudflare-channel-relay.js +169 -0
- package/framework/docs/examples/cloudflare-data-worker.js +102 -0
- package/framework/docs/examples/cloudflare-error-worker.js +228 -0
- package/framework/index.html +175 -0
- package/framework/js/app/AppActions.js +410 -0
- package/framework/js/app/AppState.js +225 -0
- package/framework/js/app/AppUI.js +616 -0
- package/framework/js/assessment/AssessmentActions.js +615 -0
- package/framework/js/assessment/AssessmentFactory.js +471 -0
- package/framework/js/assessment/AssessmentState.js +322 -0
- package/framework/js/assessment/AssessmentUI.js +451 -0
- package/framework/js/automation/api-engagement.js +196 -0
- package/framework/js/automation/api-interactions.js +167 -0
- package/framework/js/automation/api.js +242 -0
- package/framework/js/automation/index.js +41 -0
- package/framework/js/components/interactions/drag-drop.js +884 -0
- package/framework/js/components/interactions/fill-in.js +535 -0
- package/framework/js/components/interactions/hotspot.js +702 -0
- package/framework/js/components/interactions/interaction-base.js +511 -0
- package/framework/js/components/interactions/likert.js +301 -0
- package/framework/js/components/interactions/matching.js +699 -0
- package/framework/js/components/interactions/multiple-choice.js +377 -0
- package/framework/js/components/interactions/numeric.js +271 -0
- package/framework/js/components/interactions/sequencing.js +423 -0
- package/framework/js/components/interactions/true-false.js +241 -0
- package/framework/js/components/ui-components/accordion.js +442 -0
- package/framework/js/components/ui-components/alert.js +88 -0
- package/framework/js/components/ui-components/audio-player.js +1193 -0
- package/framework/js/components/ui-components/callout.js +121 -0
- package/framework/js/components/ui-components/carousel.js +145 -0
- package/framework/js/components/ui-components/checkbox-group.js +87 -0
- package/framework/js/components/ui-components/checklist.js +40 -0
- package/framework/js/components/ui-components/collapse.js +114 -0
- package/framework/js/components/ui-components/comparison.js +30 -0
- package/framework/js/components/ui-components/conditional-display.js +150 -0
- package/framework/js/components/ui-components/content-image.js +41 -0
- package/framework/js/components/ui-components/dropdown.js +262 -0
- package/framework/js/components/ui-components/embed-frame.js +274 -0
- package/framework/js/components/ui-components/features.js +33 -0
- package/framework/js/components/ui-components/flip-card.js +230 -0
- package/framework/js/components/ui-components/form-validator.js +76 -0
- package/framework/js/components/ui-components/hero.js +49 -0
- package/framework/js/components/ui-components/index.js +12 -0
- package/framework/js/components/ui-components/interactive-image.js +235 -0
- package/framework/js/components/ui-components/interactive-timeline.js +285 -0
- package/framework/js/components/ui-components/intro-cards.js +35 -0
- package/framework/js/components/ui-components/lightbox.js +652 -0
- package/framework/js/components/ui-components/modal.js +386 -0
- package/framework/js/components/ui-components/notifications.js +145 -0
- package/framework/js/components/ui-components/progress.js +88 -0
- package/framework/js/components/ui-components/quote.js +41 -0
- package/framework/js/components/ui-components/stats.js +33 -0
- package/framework/js/components/ui-components/steps.js +41 -0
- package/framework/js/components/ui-components/tabs.js +255 -0
- package/framework/js/components/ui-components/timeline.js +42 -0
- package/framework/js/components/ui-components/toggle-group.js +73 -0
- package/framework/js/components/ui-components/tooltip.js +458 -0
- package/framework/js/components/ui-components/value-display.js +133 -0
- package/framework/js/components/ui-components/video-player.js +686 -0
- package/framework/js/core/component-catalog.js +121 -0
- package/framework/js/core/event-bus.js +178 -0
- package/framework/js/core/interaction-catalog.js +149 -0
- package/framework/js/dev/runtime-linter.js +1725 -0
- package/framework/js/drivers/cmi5-driver.js +768 -0
- package/framework/js/drivers/driver-factory.js +77 -0
- package/framework/js/drivers/driver-interface.js +110 -0
- package/framework/js/drivers/http-driver-base.js +241 -0
- package/framework/js/drivers/lti-driver.js +508 -0
- package/framework/js/drivers/proxy-driver.js +444 -0
- package/framework/js/drivers/scorm-12-driver.js +560 -0
- package/framework/js/drivers/scorm-2004-driver.js +775 -0
- package/framework/js/drivers/scorm-driver-base.js +112 -0
- package/framework/js/engagement/engagement-manager.js +404 -0
- package/framework/js/engagement/engagement-progress.js +191 -0
- package/framework/js/engagement/engagement-trackers.js +215 -0
- package/framework/js/engagement/requirement-strategies.js +268 -0
- package/framework/js/main.js +727 -0
- package/framework/js/managers/accessibility-manager.js +499 -0
- package/framework/js/managers/assessment-manager.js +230 -0
- package/framework/js/managers/audio-manager.js +944 -0
- package/framework/js/managers/comment-manager.js +88 -0
- package/framework/js/managers/flag-manager.js +86 -0
- package/framework/js/managers/interaction-manager.js +254 -0
- package/framework/js/managers/interaction-registry.js +96 -0
- package/framework/js/managers/objective-manager.js +423 -0
- package/framework/js/managers/score-manager.js +441 -0
- package/framework/js/managers/video-manager.js +536 -0
- package/framework/js/navigation/Breadcrumbs.js +234 -0
- package/framework/js/navigation/NavigationActions.js +1132 -0
- package/framework/js/navigation/NavigationState.js +276 -0
- package/framework/js/navigation/NavigationUI.js +574 -0
- package/framework/js/navigation/document-gallery.js +357 -0
- package/framework/js/navigation/navigation-helpers.js +175 -0
- package/framework/js/navigation/navigation-validators.js +174 -0
- package/framework/js/state/index.js +8 -0
- package/framework/js/state/lms-connection.js +482 -0
- package/framework/js/state/lms-error-utils.js +58 -0
- package/framework/js/state/state-commits.js +200 -0
- package/framework/js/state/state-domains.js +86 -0
- package/framework/js/state/state-manager.js +502 -0
- package/framework/js/state/state-validation.js +311 -0
- package/framework/js/state/transaction-log.js +41 -0
- package/framework/js/state/xapi-statement-service.js +325 -0
- package/framework/js/utilities/access-control.js +99 -0
- package/framework/js/utilities/breakpoint-manager.js +315 -0
- package/framework/js/utilities/canvas-slide.js +35 -0
- package/framework/js/utilities/conditional-display.js +388 -0
- package/framework/js/utilities/course-channel.js +214 -0
- package/framework/js/utilities/course-helpers.js +420 -0
- package/framework/js/utilities/data-reporter.js +273 -0
- package/framework/js/utilities/error-reporter.js +313 -0
- package/framework/js/utilities/hotspot-helper.js +341 -0
- package/framework/js/utilities/icons.js +348 -0
- package/framework/js/utilities/logger.js +92 -0
- package/framework/js/utilities/markdown-renderer.js +45 -0
- package/framework/js/utilities/scroll-tracker.js +68 -0
- package/framework/js/utilities/ui-initializer.js +146 -0
- package/framework/js/utilities/utilities.js +293 -0
- package/framework/js/utilities/view-manager.js +227 -0
- package/framework/js/validation/html-validators.js +422 -0
- package/framework/js/validation/scorm-validators.js +438 -0
- package/framework/js/vendor/pipwerks.js +931 -0
- package/framework/scripts/generate-narration.js +629 -0
- package/framework/scripts/tts-providers/azure-provider.js +178 -0
- package/framework/scripts/tts-providers/base-provider.js +81 -0
- package/framework/scripts/tts-providers/deepgram-provider.js +135 -0
- package/framework/scripts/tts-providers/elevenlabs-provider.js +148 -0
- package/framework/scripts/tts-providers/google-provider.js +272 -0
- package/framework/scripts/tts-providers/index.js +158 -0
- package/framework/scripts/tts-providers/openai-provider.js +143 -0
- package/framework/version.json +63 -0
- package/lib/authoring-api.js +919 -0
- package/lib/build-linter.js +450 -0
- package/lib/build-packaging.js +186 -0
- package/lib/build.js +88 -0
- package/lib/cloud.js +691 -0
- package/lib/convert.js +341 -0
- package/lib/course-parser.js +936 -0
- package/lib/course-writer.js +258 -0
- package/lib/create.js +248 -0
- package/lib/css-index.js +237 -0
- package/lib/dev.js +51 -0
- package/lib/export-content.js +1246 -0
- package/lib/headless-browser.js +413 -0
- package/lib/import.js +377 -0
- package/lib/index.js +80 -0
- package/lib/info.js +79 -0
- package/lib/interaction-formatters.js +568 -0
- package/lib/manifest/cmi5-manifest.js +63 -0
- package/lib/manifest/lti-tool-config.js +53 -0
- package/lib/manifest/manifest-factory.js +99 -0
- package/lib/manifest/scorm-12-manifest.js +61 -0
- package/lib/manifest/scorm-2004-manifest.js +94 -0
- package/lib/manifest/scorm-proxy-manifest.js +104 -0
- package/lib/manifest-parser.js +96 -0
- package/lib/mcp-prompts.js +753 -0
- package/lib/mcp-server.js +316 -0
- package/lib/narration.js +53 -0
- package/lib/pdf-structure.js +142 -0
- package/lib/preview-export.js +231 -0
- package/lib/preview-routes-api.js +662 -0
- package/lib/preview-routes-editing.js +159 -0
- package/lib/preview-routes-lms.js +230 -0
- package/lib/preview-server.js +564 -0
- package/lib/project-utils.js +269 -0
- package/lib/proxy-templates/proxy.html +68 -0
- package/lib/proxy-templates/scorm-bridge.js +112 -0
- package/lib/scaffold.js +193 -0
- package/lib/schema-extractor.js +361 -0
- package/lib/slide-source-editor.js +586 -0
- package/lib/stub-player/app-viewer.js +195 -0
- package/lib/stub-player/app.js +370 -0
- package/lib/stub-player/catalog-panel.js +312 -0
- package/lib/stub-player/config-panel.js +1303 -0
- package/lib/stub-player/content-generator.js +586 -0
- package/lib/stub-player/content-viewer.js +173 -0
- package/lib/stub-player/debug-panel.js +420 -0
- package/lib/stub-player/edit-mode.js +922 -0
- package/lib/stub-player/edit-utils.js +400 -0
- package/lib/stub-player/header-bar.js +354 -0
- package/lib/stub-player/interaction-editor.js +210 -0
- package/lib/stub-player/interactions-panel.js +565 -0
- package/lib/stub-player/lms-api.js +1094 -0
- package/lib/stub-player/login-screen.js +74 -0
- package/lib/stub-player/outline-mode.js +689 -0
- package/lib/stub-player/styles/_assessments-panel.css +245 -0
- package/lib/stub-player/styles/_base.css +89 -0
- package/lib/stub-player/styles/_catalog-icons.css +96 -0
- package/lib/stub-player/styles/_catalog-panel.css +291 -0
- package/lib/stub-player/styles/_config-panel.css +636 -0
- package/lib/stub-player/styles/_content-viewer.css +834 -0
- package/lib/stub-player/styles/_debug-panel.css +576 -0
- package/lib/stub-player/styles/_edit-mode.css +128 -0
- package/lib/stub-player/styles/_header-bar.css +343 -0
- package/lib/stub-player/styles/_interaction-editor.css +140 -0
- package/lib/stub-player/styles/_interactions-panel.css +1038 -0
- package/lib/stub-player/styles/_login-screen.css +102 -0
- package/lib/stub-player/styles/_outline-mode.css +752 -0
- package/lib/stub-player/styles.css +15 -0
- package/lib/stub-player.js +160 -0
- package/lib/test-data-reporting.js +176 -0
- package/lib/test-error-reporting.js +146 -0
- package/lib/token.js +86 -0
- package/lib/upgrade.js +257 -0
- package/lib/validation-rules.js +517 -0
- package/lib/vite-plugin-content-discovery.js +296 -0
- package/package.json +108 -0
- package/schemas/XMLSchema.dtd +402 -0
- package/schemas/adlcp_v1p3.xsd +111 -0
- package/schemas/adlnav_v1p3.xsd +61 -0
- package/schemas/adlseq_v1p3.xsd +93 -0
- package/schemas/common/anyElement.xsd +27 -0
- package/schemas/common/dataTypes.xsd +138 -0
- package/schemas/common/elementNames.xsd +767 -0
- package/schemas/common/elementTypes.xsd +786 -0
- package/schemas/common/rootElement.xsd +31 -0
- package/schemas/common/vocabTypes.xsd +345 -0
- package/schemas/common/vocabValues.xsd +257 -0
- package/schemas/datatypes.dtd +203 -0
- package/schemas/ims_xml.xsd +35 -0
- package/schemas/imscp_v1p1.xsd +368 -0
- package/schemas/imsss_v1p0.xsd +67 -0
- package/schemas/imsss_v1p0auxresource.xsd +19 -0
- package/schemas/imsss_v1p0control.xsd +20 -0
- package/schemas/imsss_v1p0delivery.xsd +17 -0
- package/schemas/imsss_v1p0limit.xsd +47 -0
- package/schemas/imsss_v1p0objective.xsd +67 -0
- package/schemas/imsss_v1p0random.xsd +16 -0
- package/schemas/imsss_v1p0rollup.xsd +46 -0
- package/schemas/imsss_v1p0seqrule.xsd +108 -0
- package/schemas/imsss_v1p0util.xsd +94 -0
- package/schemas/license.txt +17 -0
- package/schemas/lom.xsd +102 -0
- package/schemas/lomCustom.xsd +62 -0
- package/schemas/lomLoose.xsd +62 -0
- package/schemas/lomStrict.xsd +62 -0
- package/schemas/xml.xsd +81 -0
- package/template/.env.example +92 -0
- package/template/course/assets/audio/example-intro.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--compact-player.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--demo-modal.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--full-player.mp3 +0 -0
- package/template/course/assets/docs/example_md_1.md +39 -0
- package/template/course/assets/docs/example_md_2.md +41 -0
- package/template/course/assets/docs/example_pdf_1_thumbnail.png +0 -0
- package/template/course/assets/docs/example_pdf_2.pdf +0 -0
- package/template/course/assets/images/course-architecture.svg +36 -0
- package/template/course/assets/images/logo.svg +14 -0
- package/template/course/assets/widgets/counter-demo.html +190 -0
- package/template/course/assets/widgets/gravity-painter.html +384 -0
- package/template/course/course-config.js +539 -0
- package/template/course/icons.js +19 -0
- package/template/course/interactions/PLUGIN_GUIDE.md +97 -0
- package/template/course/slides/example-course-structure.js +138 -0
- package/template/course/slides/example-final-exam.js +144 -0
- package/template/course/slides/example-finishing.js +127 -0
- package/template/course/slides/example-interactions-showcase.js +615 -0
- package/template/course/slides/example-preview-tour.js +129 -0
- package/template/course/slides/example-remedial.js +143 -0
- package/template/course/slides/example-summary.js +103 -0
- package/template/course/slides/example-ui-showcase.js +1805 -0
- package/template/course/slides/example-welcome.js +123 -0
- package/template/course/slides/example-workflow.js +140 -0
- package/template/course/theme.css +165 -0
- package/template/eslint.config.js +47 -0
- package/template/package.json +28 -0
- package/template/vite.config.js +339 -0
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
SEQUENCING - Sequencing interaction styles
|
|
3
|
+
============================================================================
|
|
4
|
+
|
|
5
|
+
PURPOSE: Styles for sequencing/ordering learning activities
|
|
6
|
+
|
|
7
|
+
INCLUDES:
|
|
8
|
+
- Sequence track with configurable labels (e.g., "First" → "Last")
|
|
9
|
+
- Clean, spaced drag items
|
|
10
|
+
- Subtle drag handle styling
|
|
11
|
+
- Smooth drag-over states with insertion indicators
|
|
12
|
+
- Keyboard focus and selection states
|
|
13
|
+
- Correct/incorrect feedback states
|
|
14
|
+
|
|
15
|
+
DEPENDENCIES:
|
|
16
|
+
- Requires: design-tokens.css (for CSS variables)
|
|
17
|
+
- Requires: base.css (for .interaction container)
|
|
18
|
+
|
|
19
|
+
USED BY:
|
|
20
|
+
- Process ordering activities
|
|
21
|
+
- Step-by-step procedure checks
|
|
22
|
+
- Timeline arrangement
|
|
23
|
+
|
|
24
|
+
CONFIGURATION:
|
|
25
|
+
- sequenceLabels: Array of 2+ strings (e.g., ["First", "Last"] or ["Earlier", "Middle", "Later"])
|
|
26
|
+
|
|
27
|
+
AI DEBUGGING TIPS:
|
|
28
|
+
- Items not reordering? Check dragstart/dragover/drop event listeners
|
|
29
|
+
- Drag handle missing? Verify .drag-handle span exists
|
|
30
|
+
- Drop indicators not showing? Check .drag-over-top and .drag-over-bottom classes
|
|
31
|
+
- Keyboard reordering failing? Ensure tabindex="0" on items and keydown listener
|
|
32
|
+
- Sequence track not showing? Ensure sequenceLabels config has 2+ items
|
|
33
|
+
|
|
34
|
+
COMMON CLASSES:
|
|
35
|
+
.sequence-track - Visual track showing sequence direction
|
|
36
|
+
.sequence-track-line - The arrow/line indicating direction
|
|
37
|
+
.sequence-track-labels - Container for start/end labels
|
|
38
|
+
.sequence-label - Individual label (First, Last, etc.)
|
|
39
|
+
.sequencing-list - Main container for sortable items
|
|
40
|
+
.sequence-item - Individual sortable item
|
|
41
|
+
.drag-handle - Visual handle for dragging
|
|
42
|
+
.item-text - Text content of item
|
|
43
|
+
.dragging - Item currently being dragged
|
|
44
|
+
.drag-over-top - Drop indicator above item
|
|
45
|
+
.drag-over-bottom - Drop indicator below item
|
|
46
|
+
.keyboard-selected - Item selected via keyboard
|
|
47
|
+
|
|
48
|
+
LAST UPDATED: 2024-12-11
|
|
49
|
+
============================================================================ */
|
|
50
|
+
|
|
51
|
+
/* ============================================================================
|
|
52
|
+
SEQUENCE TRACK - Visual indicator of sequence direction
|
|
53
|
+
============================================================================ */
|
|
54
|
+
|
|
55
|
+
.sequencing-layout {
|
|
56
|
+
display: grid;
|
|
57
|
+
grid-template-columns: auto 1fr;
|
|
58
|
+
gap: var(--space-5);
|
|
59
|
+
align-items: stretch;
|
|
60
|
+
margin: var(--space-4) 0;
|
|
61
|
+
max-width: 90%;
|
|
62
|
+
padding: var(--space-5);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.sequence-track {
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
align-items: center;
|
|
69
|
+
justify-content: flex-start;
|
|
70
|
+
width: 100%;
|
|
71
|
+
height: 100%;
|
|
72
|
+
min-height: 100%;
|
|
73
|
+
gap: var(--space-2);
|
|
74
|
+
padding-right: var(--space-5);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.sequence-track-line {
|
|
78
|
+
position: relative;
|
|
79
|
+
width: 4px;
|
|
80
|
+
flex: 1;
|
|
81
|
+
min-height: 80px;
|
|
82
|
+
background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
|
|
83
|
+
border-radius: var(--radius-full);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* Arrow pointing down (direction indicator) */
|
|
87
|
+
.sequence-track-line::after {
|
|
88
|
+
content: '';
|
|
89
|
+
position: absolute;
|
|
90
|
+
left: 50%;
|
|
91
|
+
bottom: -6px;
|
|
92
|
+
transform: translateX(-50%);
|
|
93
|
+
width: 0;
|
|
94
|
+
height: 0;
|
|
95
|
+
border-top: 10px solid var(--color-secondary);
|
|
96
|
+
border-left: 6px solid transparent;
|
|
97
|
+
border-right: 6px solid transparent;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.sequence-label {
|
|
101
|
+
font-size: var(--font-size-sm);
|
|
102
|
+
font-weight: var(--font-weight-semibold);
|
|
103
|
+
color: var(--color-gray-600);
|
|
104
|
+
text-transform: uppercase;
|
|
105
|
+
letter-spacing: 0.05em;
|
|
106
|
+
text-align: center;
|
|
107
|
+
flex-shrink: 0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.sequence-label-start {
|
|
111
|
+
color: var(--color-primary);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.sequence-label-end {
|
|
115
|
+
color: var(--color-secondary);
|
|
116
|
+
padding-top: var(--space-2);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* ============================================================================
|
|
120
|
+
CONTAINER
|
|
121
|
+
============================================================================ */
|
|
122
|
+
|
|
123
|
+
.sequencing-list {
|
|
124
|
+
display: flex;
|
|
125
|
+
flex-direction: column;
|
|
126
|
+
gap: var(--space-6);
|
|
127
|
+
margin: 0;
|
|
128
|
+
padding: 0;
|
|
129
|
+
background: transparent;
|
|
130
|
+
border: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/* ============================================================================
|
|
134
|
+
SEQUENCE ITEMS
|
|
135
|
+
============================================================================ */
|
|
136
|
+
|
|
137
|
+
.sequence-item {
|
|
138
|
+
display: flex;
|
|
139
|
+
align-items: center;
|
|
140
|
+
gap: var(--space-3);
|
|
141
|
+
padding: var(--space-3) var(--space-4);
|
|
142
|
+
background: var(--color-secondary);
|
|
143
|
+
color: var(--color-gray-900);
|
|
144
|
+
border: var(--border-width-md) solid transparent;
|
|
145
|
+
border-radius: var(--radius-2xl);
|
|
146
|
+
cursor: grab;
|
|
147
|
+
transition:
|
|
148
|
+
transform 0.2s ease-out,
|
|
149
|
+
box-shadow 0.15s ease-out,
|
|
150
|
+
opacity 0.15s ease-out;
|
|
151
|
+
position: relative;
|
|
152
|
+
user-select: none;
|
|
153
|
+
box-shadow: var(--shadow-sm);
|
|
154
|
+
min-height: var(--size-touch-target);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.sequence-item:hover {
|
|
158
|
+
box-shadow: var(--shadow-md);
|
|
159
|
+
transform: translateY(-1px);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.sequence-item:active {
|
|
163
|
+
cursor: grabbing;
|
|
164
|
+
transform: translateY(0);
|
|
165
|
+
box-shadow: var(--shadow-sm);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.sequence-item:focus-visible {
|
|
169
|
+
outline: 2px solid var(--color-primary);
|
|
170
|
+
outline-offset: 2px;
|
|
171
|
+
z-index: 2;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* ============================================================================
|
|
175
|
+
DRAG HANDLE (not used visually for sequencing)
|
|
176
|
+
============================================================================ */
|
|
177
|
+
|
|
178
|
+
.drag-handle {
|
|
179
|
+
display: none;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* ============================================================================
|
|
183
|
+
ITEM TEXT
|
|
184
|
+
============================================================================ */
|
|
185
|
+
|
|
186
|
+
.item-text {
|
|
187
|
+
flex: 1;
|
|
188
|
+
font-size: var(--font-size-base);
|
|
189
|
+
font-weight: var(--font-weight-normal);
|
|
190
|
+
color: inherit;
|
|
191
|
+
line-height: 1.5;
|
|
192
|
+
min-height: var(--size-touch-target);
|
|
193
|
+
display: flex;
|
|
194
|
+
align-items: center;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* ============================================================================
|
|
198
|
+
DRAG STATES
|
|
199
|
+
============================================================================ */
|
|
200
|
+
|
|
201
|
+
.sequence-item.dragging {
|
|
202
|
+
opacity: 0.5;
|
|
203
|
+
cursor: grabbing;
|
|
204
|
+
box-shadow: var(--shadow-lg);
|
|
205
|
+
z-index: 100;
|
|
206
|
+
transform: scale(1.02);
|
|
207
|
+
transition: opacity 0.15s ease-out, box-shadow 0.15s ease-out;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/* Animate items settling into new position */
|
|
211
|
+
.sequence-item.settling {
|
|
212
|
+
animation: settle 0.25s ease-out;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
@keyframes settle {
|
|
216
|
+
0% {
|
|
217
|
+
transform: scale(0.95);
|
|
218
|
+
opacity: 0.7;
|
|
219
|
+
}
|
|
220
|
+
50% {
|
|
221
|
+
transform: scale(1.02);
|
|
222
|
+
}
|
|
223
|
+
100% {
|
|
224
|
+
transform: scale(1);
|
|
225
|
+
opacity: 1;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/* Drop indicator - a clear insertion marker between items (doesn't affect layout) */
|
|
230
|
+
.sequence-item.drag-over-top::before,
|
|
231
|
+
.sequence-item.drag-over-bottom::after {
|
|
232
|
+
content: '';
|
|
233
|
+
position: absolute;
|
|
234
|
+
left: var(--space-4);
|
|
235
|
+
right: var(--space-4);
|
|
236
|
+
height: 4px;
|
|
237
|
+
background: var(--color-primary);
|
|
238
|
+
border-radius: var(--radius-full);
|
|
239
|
+
box-shadow: 0 0 0 3px var(--color-primary-alpha-20);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.sequence-item.drag-over-top::before {
|
|
243
|
+
top: calc(-1 * var(--space-6) / 2 - 2px);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.sequence-item.drag-over-bottom::after {
|
|
247
|
+
bottom: calc(-1 * var(--space-6) / 2 - 2px);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* ============================================================================
|
|
251
|
+
KEYBOARD SELECTION
|
|
252
|
+
============================================================================ */
|
|
253
|
+
|
|
254
|
+
.sequence-item.keyboard-selected {
|
|
255
|
+
outline: 2px solid var(--color-info);
|
|
256
|
+
outline-offset: 2px;
|
|
257
|
+
z-index: 2;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/* ============================================================================
|
|
261
|
+
FEEDBACK STATES
|
|
262
|
+
============================================================================ */
|
|
263
|
+
|
|
264
|
+
/* Correct sequence feedback */
|
|
265
|
+
.correct-sequence .sequence-item,
|
|
266
|
+
.sequence-item.correct {
|
|
267
|
+
border-color: var(--color-success);
|
|
268
|
+
background: var(--color-success-alpha-05);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.correct-sequence .sequence-item .drag-handle,
|
|
272
|
+
.sequence-item.correct .drag-handle {
|
|
273
|
+
color: var(--color-success);
|
|
274
|
+
background: var(--color-success-alpha-10);
|
|
275
|
+
border-color: var(--color-success-alpha-20);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/* Incorrect sequence feedback */
|
|
279
|
+
.incorrect-sequence .sequence-item,
|
|
280
|
+
.sequence-item.incorrect {
|
|
281
|
+
border-color: var(--color-danger);
|
|
282
|
+
background: var(--color-danger-alpha-05);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.incorrect-sequence .sequence-item .drag-handle,
|
|
286
|
+
.sequence-item.incorrect .drag-handle {
|
|
287
|
+
color: var(--color-danger);
|
|
288
|
+
background: var(--color-danger-alpha-10);
|
|
289
|
+
border-color: var(--color-danger-alpha-20);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/* Response display (non-interactive feedback view) */
|
|
293
|
+
.response-sequence .sequence-item {
|
|
294
|
+
cursor: default;
|
|
295
|
+
pointer-events: none;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.response-sequence .sequence-item:hover {
|
|
299
|
+
background: var(--bg-surface);
|
|
300
|
+
transform: none;
|
|
301
|
+
box-shadow: var(--shadow-sm);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.response-sequence .drag-handle {
|
|
305
|
+
display: none;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* ============================================================================
|
|
309
|
+
DISABLED STATE
|
|
310
|
+
============================================================================ */
|
|
311
|
+
|
|
312
|
+
.sequencing-list.disabled .sequence-item,
|
|
313
|
+
.sequence-item.disabled {
|
|
314
|
+
cursor: not-allowed;
|
|
315
|
+
opacity: 0.6;
|
|
316
|
+
pointer-events: none;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.sequencing-list.disabled .sequence-item:hover,
|
|
320
|
+
.sequence-item.disabled:hover {
|
|
321
|
+
background: var(--bg-surface);
|
|
322
|
+
transform: none;
|
|
323
|
+
box-shadow: var(--shadow-sm);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
/* ============================================================================
|
|
327
|
+
RESPONSIVE
|
|
328
|
+
============================================================================ */
|
|
329
|
+
|
|
330
|
+
@media (max-width: 767px) {
|
|
331
|
+
.sequencing-layout {
|
|
332
|
+
grid-template-columns: 1fr;
|
|
333
|
+
gap: var(--space-3);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.sequence-track {
|
|
337
|
+
flex-direction: row;
|
|
338
|
+
height: auto;
|
|
339
|
+
gap: var(--space-3);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.sequence-track-line {
|
|
343
|
+
width: 100%;
|
|
344
|
+
height: 3px;
|
|
345
|
+
min-height: 0;
|
|
346
|
+
flex: 1;
|
|
347
|
+
background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.sequence-track-line::after {
|
|
351
|
+
left: auto;
|
|
352
|
+
right: -6px;
|
|
353
|
+
bottom: auto;
|
|
354
|
+
top: 50%;
|
|
355
|
+
transform: translateY(-50%);
|
|
356
|
+
border-top: 6px solid transparent;
|
|
357
|
+
border-bottom: 6px solid transparent;
|
|
358
|
+
border-left: 10px solid var(--color-secondary);
|
|
359
|
+
border-right: 0;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.sequence-label {
|
|
363
|
+
font-size: var(--font-size-xs);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.sequence-label-end {
|
|
367
|
+
padding-top: 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.sequencing-list {
|
|
371
|
+
gap: var(--space-5);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.item-text {
|
|
375
|
+
font-size: var(--font-size-sm);
|
|
376
|
+
min-height: var(--size-touch-target);
|
|
377
|
+
}
|
|
378
|
+
}
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
TRUE/FALSE INTERACTION - Two-choice boolean question styles
|
|
3
|
+
============================================================================
|
|
4
|
+
|
|
5
|
+
PURPOSE: Styles for true/false questions
|
|
6
|
+
|
|
7
|
+
INCLUDES:
|
|
8
|
+
- Full-button option styling
|
|
9
|
+
- Selected state with checkmark badge
|
|
10
|
+
- Correct/incorrect feedback states
|
|
11
|
+
- Checkmark animation
|
|
12
|
+
|
|
13
|
+
DEPENDENCIES:
|
|
14
|
+
- Requires: design-tokens.css (for CSS variables)
|
|
15
|
+
- Requires: base.css (for .interaction container)
|
|
16
|
+
|
|
17
|
+
USED BY:
|
|
18
|
+
- True/false questions
|
|
19
|
+
- Yes/no questions
|
|
20
|
+
- Boolean choice activities
|
|
21
|
+
- Quick knowledge checks
|
|
22
|
+
|
|
23
|
+
AI DEBUGGING TIPS:
|
|
24
|
+
- Radio buttons showing? They're hidden with position: absolute, opacity: 0
|
|
25
|
+
- Checkmark not animating? Verify @keyframes checkmarkPop defined and animation applied
|
|
26
|
+
- State colors not changing? Check .answer-correct and .answer-incorrect classes applied to labels
|
|
27
|
+
- Touch targets too small? Labels have min-height set - increase padding on mobile
|
|
28
|
+
|
|
29
|
+
COMMON CLASSES:
|
|
30
|
+
.true-false-options - Grid container (2 columns)
|
|
31
|
+
.answer-correct - Label with correct answer selected
|
|
32
|
+
.answer-incorrect - Label with incorrect answer selected
|
|
33
|
+
|
|
34
|
+
HTML STRUCTURE:
|
|
35
|
+
<div class="true-false-options">
|
|
36
|
+
<label>
|
|
37
|
+
<input type="radio" name="question-id" value="true">
|
|
38
|
+
<span class="tf-label">True</span>
|
|
39
|
+
</label>
|
|
40
|
+
<label class="answer-correct">
|
|
41
|
+
<input type="radio" name="question-id" value="false">
|
|
42
|
+
<span class="tf-label">False</span>
|
|
43
|
+
</label>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
LAST UPDATED: 2024-12-11
|
|
47
|
+
============================================================================ */
|
|
48
|
+
|
|
49
|
+
.true-false-options {
|
|
50
|
+
display: grid;
|
|
51
|
+
grid-template-columns: 1fr 1fr;
|
|
52
|
+
gap: var(--space-4);
|
|
53
|
+
width: 100%;
|
|
54
|
+
max-width: 500px;
|
|
55
|
+
margin: 0 auto;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.true-false-options label {
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
padding: var(--space-3) var(--space-4);
|
|
63
|
+
border: 2px solid var(--color-gray-300);
|
|
64
|
+
border-radius: var(--radius-lg);
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
|
|
67
|
+
background: var(--bg-surface);
|
|
68
|
+
position: relative;
|
|
69
|
+
font-size: var(--font-size-base);
|
|
70
|
+
font-weight: var(--font-weight-semibold);
|
|
71
|
+
color: var(--color-gray-700);
|
|
72
|
+
text-transform: uppercase;
|
|
73
|
+
letter-spacing: 0.05em;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.true-false-options label:hover {
|
|
77
|
+
border-color: var(--color-secondary);
|
|
78
|
+
background: var(--bg-subtle);
|
|
79
|
+
box-shadow: var(--shadow-sm);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.true-false-options label:active {
|
|
83
|
+
transform: scale(0.98);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* Hide the native radio input */
|
|
87
|
+
.true-false-options input[type="radio"] {
|
|
88
|
+
position: absolute;
|
|
89
|
+
opacity: 0;
|
|
90
|
+
width: 0;
|
|
91
|
+
height: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Focus state for accessibility */
|
|
95
|
+
.true-false-options label:has(input[type="radio"]:focus-visible) {
|
|
96
|
+
outline: 3px solid var(--color-primary);
|
|
97
|
+
outline-offset: 2px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* Checked state */
|
|
101
|
+
.true-false-options label:has(input[type="radio"]:checked) {
|
|
102
|
+
border-color: var(--color-secondary);
|
|
103
|
+
background: var(--color-secondary-alpha-05);
|
|
104
|
+
color: var(--color-secondary);
|
|
105
|
+
box-shadow: 0 0 0 3px var(--color-secondary-alpha-10);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/* Checkmark badge for selected state */
|
|
109
|
+
.true-false-options label:has(input[type="radio"]:checked)::after {
|
|
110
|
+
content: '✓';
|
|
111
|
+
position: absolute;
|
|
112
|
+
top: var(--space-2);
|
|
113
|
+
right: var(--space-2);
|
|
114
|
+
width: 24px;
|
|
115
|
+
height: 24px;
|
|
116
|
+
background: var(--color-secondary);
|
|
117
|
+
color: var(--color-gray-900);
|
|
118
|
+
border-radius: 50%;
|
|
119
|
+
display: flex;
|
|
120
|
+
align-items: center;
|
|
121
|
+
justify-content: center;
|
|
122
|
+
font-size: var(--font-size-sm);
|
|
123
|
+
font-weight: bold;
|
|
124
|
+
animation: checkmarkPop 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
@keyframes checkmarkPop {
|
|
128
|
+
0% {
|
|
129
|
+
transform: scale(0);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
50% {
|
|
133
|
+
transform: scale(1.2);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
100% {
|
|
137
|
+
transform: scale(1);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/* Correct answer state - green */
|
|
142
|
+
.true-false-options label.answer-correct:has(input[type="radio"]:checked) {
|
|
143
|
+
border-color: var(--color-success);
|
|
144
|
+
background: var(--color-success-alpha-05);
|
|
145
|
+
color: var(--color-success);
|
|
146
|
+
box-shadow: 0 0 0 3px var(--color-success-alpha-10);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.true-false-options label.answer-correct:has(input[type="radio"]:checked)::after {
|
|
150
|
+
background: var(--color-success);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* Incorrect answer state - red */
|
|
154
|
+
.true-false-options label.answer-incorrect:has(input[type="radio"]:checked) {
|
|
155
|
+
border-color: var(--color-danger);
|
|
156
|
+
background: var(--color-danger-alpha-05);
|
|
157
|
+
color: var(--color-danger);
|
|
158
|
+
box-shadow: 0 0 0 3px var(--color-danger-alpha-10);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.true-false-options label.answer-incorrect:has(input[type="radio"]:checked)::after {
|
|
162
|
+
content: '✗';
|
|
163
|
+
background: var(--color-danger);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Label text styling */
|
|
167
|
+
.tf-label {
|
|
168
|
+
color: inherit;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/* Responsive: Stack vertically on very small screens */
|
|
172
|
+
@media (max-width: 400px) {
|
|
173
|
+
.true-false-options {
|
|
174
|
+
grid-template-columns: 1fr;
|
|
175
|
+
max-width: none;
|
|
176
|
+
}
|
|
177
|
+
}
|