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,52 @@
|
|
|
1
|
+
/* ========================================
|
|
2
|
+
UI COMPONENT: Slide Header
|
|
3
|
+
Use for: Consistent slide titles with optional subtitle
|
|
4
|
+
Variants: left, divider
|
|
5
|
+
======================================== */
|
|
6
|
+
.slide-header {
|
|
7
|
+
text-align: center;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.slide-header h1,
|
|
11
|
+
.slide-header h2,
|
|
12
|
+
.slide-header h3 {
|
|
13
|
+
color: var(--color-primary);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.slide-header p {
|
|
17
|
+
font-size: var(--font-size-lg);
|
|
18
|
+
color: var(--text-secondary);
|
|
19
|
+
margin: 0;
|
|
20
|
+
max-width: 600px;
|
|
21
|
+
margin-inline: auto;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Eyebrow - small label above title */
|
|
25
|
+
.slide-header .eyebrow {
|
|
26
|
+
display: block;
|
|
27
|
+
font-size: var(--font-size-sm);
|
|
28
|
+
font-weight: var(--font-weight-semibold);
|
|
29
|
+
text-transform: uppercase;
|
|
30
|
+
letter-spacing: 0.05em;
|
|
31
|
+
color: var(--color-primary);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/* Left-aligned variant */
|
|
35
|
+
.slide-header-left {
|
|
36
|
+
text-align: left;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.slide-header-left p {
|
|
40
|
+
margin-inline: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/* Divider variant - adds bottom border */
|
|
44
|
+
.slide-header-divider {
|
|
45
|
+
padding-bottom: var(--space-4);
|
|
46
|
+
border-bottom: 1px solid var(--border-color);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Mobile: keep slide-header h1 larger than subtitle p */
|
|
50
|
+
html.bp-max-mobile-landscape .slide-header h1 {
|
|
51
|
+
font-size: var(--font-size-2xl-base);
|
|
52
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
SPINNER - Loading animation indicator
|
|
3
|
+
============================================================================
|
|
4
|
+
|
|
5
|
+
PURPOSE: Animated spinner for loading states
|
|
6
|
+
|
|
7
|
+
INCLUDES:
|
|
8
|
+
- Base spinner (.spinner)
|
|
9
|
+
- Size variants (.spinner-sm, .spinner-lg)
|
|
10
|
+
- Rotation animation
|
|
11
|
+
|
|
12
|
+
DEPENDENCIES:
|
|
13
|
+
- Requires: design-tokens.css (for --color-primary)
|
|
14
|
+
|
|
15
|
+
USED BY:
|
|
16
|
+
- Loading states during async operations
|
|
17
|
+
- Placeholder animations
|
|
18
|
+
- Wait indicators
|
|
19
|
+
|
|
20
|
+
AI DEBUGGING TIPS:
|
|
21
|
+
- Animation not spinning? Check @keyframes spinner-border
|
|
22
|
+
- Wrong size? Use .spinner-sm or .spinner-lg variants
|
|
23
|
+
- Color wrong? Verify color: var(--color-primary) in design-tokens
|
|
24
|
+
|
|
25
|
+
============================================================================ */
|
|
26
|
+
|
|
27
|
+
.spinner {
|
|
28
|
+
display: inline-block;
|
|
29
|
+
width: 2rem;
|
|
30
|
+
height: 2rem;
|
|
31
|
+
vertical-align: -0.125em;
|
|
32
|
+
border: 0.25em solid currentColor;
|
|
33
|
+
border-right-color: transparent;
|
|
34
|
+
border-radius: 50%;
|
|
35
|
+
-webkit-animation: 0.75s linear infinite spinner-border;
|
|
36
|
+
animation: 0.75s linear infinite spinner-border;
|
|
37
|
+
color: var(--color-primary);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.spinner-sm {
|
|
41
|
+
width: 1rem;
|
|
42
|
+
height: 1rem;
|
|
43
|
+
border-width: 0.2em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.spinner-lg {
|
|
47
|
+
width: 3rem;
|
|
48
|
+
height: 3rem;
|
|
49
|
+
border-width: 0.3em;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@keyframes spinner-border {
|
|
53
|
+
to {
|
|
54
|
+
transform: rotate(360deg);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@-webkit-keyframes spinner-border {
|
|
59
|
+
to {
|
|
60
|
+
-webkit-transform: rotate(360deg);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* ========================================
|
|
2
|
+
UI COMPONENT: Stats/Metrics
|
|
3
|
+
Use for: Displaying important numbers
|
|
4
|
+
======================================== */
|
|
5
|
+
[data-component="stats"] {
|
|
6
|
+
display: flex;
|
|
7
|
+
justify-content: space-evenly;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
flex-wrap: wrap;
|
|
10
|
+
gap: var(--space-6);
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
[data-component="stats"] .stat {
|
|
15
|
+
text-align: center;
|
|
16
|
+
padding: var(--space-6);
|
|
17
|
+
flex: 1 1 150px;
|
|
18
|
+
max-width: 280px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
[data-component="stats"] .stat-value {
|
|
22
|
+
font-size: var(--font-size-4xl);
|
|
23
|
+
font-weight: var(--font-weight-bold);
|
|
24
|
+
color: var(--color-primary);
|
|
25
|
+
display: block;
|
|
26
|
+
line-height: 1;
|
|
27
|
+
margin-bottom: var(--space-2);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
[data-component="stats"] .stat-label {
|
|
31
|
+
font-size: var(--font-size-sm);
|
|
32
|
+
color: var(--color-gray-600);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@media (max-width: 640px) {
|
|
36
|
+
[data-component="stats"] {
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
align-items: center;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
[data-component="stats"] .stat {
|
|
42
|
+
max-width: 100%;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
/* ========================================
|
|
2
|
+
UI COMPONENT: Numbered Steps
|
|
3
|
+
Use for: Step-by-step processes
|
|
4
|
+
Variants: cards (default), connected, compact, connected-minimal
|
|
5
|
+
======================================== */
|
|
6
|
+
[data-component="steps"] {
|
|
7
|
+
max-width: 800px;
|
|
8
|
+
margin: 0 auto;
|
|
9
|
+
position: relative;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
[data-component="steps"] .step {
|
|
13
|
+
display: flex;
|
|
14
|
+
gap: var(--space-5);
|
|
15
|
+
margin-bottom: var(--space-4);
|
|
16
|
+
padding: var(--space-5);
|
|
17
|
+
background: var(--bg-surface);
|
|
18
|
+
border-radius: var(--radius-lg);
|
|
19
|
+
border: 1px solid var(--color-gray-200);
|
|
20
|
+
box-shadow: var(--shadow-sm);
|
|
21
|
+
position: relative;
|
|
22
|
+
transition: var(--transition-normal);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
[data-component="steps"] .step:hover {
|
|
26
|
+
border-color: var(--color-primary);
|
|
27
|
+
box-shadow: var(--shadow-md);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
[data-component="steps"] .step:last-child {
|
|
31
|
+
margin-bottom: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
[data-component="steps"] .step-number {
|
|
35
|
+
flex-shrink: 0;
|
|
36
|
+
width: 52px;
|
|
37
|
+
height: 52px;
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
|
|
42
|
+
color: var(--color-white);
|
|
43
|
+
border-radius: 50%;
|
|
44
|
+
font-size: var(--font-size-xl);
|
|
45
|
+
font-weight: var(--font-weight-bold);
|
|
46
|
+
box-shadow: 0 4px 12px var(--color-primary-alpha-30);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
[data-component="steps"] .step-content {
|
|
50
|
+
flex: 1;
|
|
51
|
+
padding-top: var(--space-2);
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column;
|
|
54
|
+
gap: var(--space-2);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
[data-component="steps"] .step-content h3 {
|
|
58
|
+
margin-top: 0;
|
|
59
|
+
margin-bottom: var(--space-2);
|
|
60
|
+
color: var(--color-primary);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
[data-component="steps"] .step-content p {
|
|
64
|
+
margin: 0;
|
|
65
|
+
color: var(--text-secondary);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/* Connected variant - Timeline-style with connecting line */
|
|
69
|
+
[data-component="steps"][data-style="connected"] {
|
|
70
|
+
padding-left: var(--space-8);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
[data-component="steps"][data-style="connected"] .step {
|
|
74
|
+
background: transparent;
|
|
75
|
+
border: none;
|
|
76
|
+
box-shadow: none;
|
|
77
|
+
padding: var(--space-4) var(--space-4) var(--space-4) 0;
|
|
78
|
+
margin-bottom: var(--space-6);
|
|
79
|
+
position: relative;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Connecting line on each step (except last) */
|
|
83
|
+
[data-component="steps"][data-style="connected"] .step::before {
|
|
84
|
+
content: '';
|
|
85
|
+
position: absolute;
|
|
86
|
+
left: 27.5px;
|
|
87
|
+
/* Center of 52px step number (26px) + half line width (1.5px) */
|
|
88
|
+
top: 56px;
|
|
89
|
+
/* Below the step number (2px margin + 52px height + 2px gap) */
|
|
90
|
+
bottom: calc(-1 * var(--space-6) - 30px);
|
|
91
|
+
/* Extend through margin gap to next step number center */
|
|
92
|
+
width: 3px;
|
|
93
|
+
background: var(--color-primary-alpha-30);
|
|
94
|
+
border-radius: var(--radius-full);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
[data-component="steps"][data-style="connected"] .step:last-child::before {
|
|
98
|
+
display: none;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
[data-component="steps"][data-style="connected"] .step:hover {
|
|
102
|
+
border: none;
|
|
103
|
+
box-shadow: none;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
[data-component="steps"][data-style="connected"] .step-number {
|
|
107
|
+
position: relative;
|
|
108
|
+
z-index: 1;
|
|
109
|
+
border: 4px solid var(--bg-surface);
|
|
110
|
+
align-self: flex-start;
|
|
111
|
+
margin-top: 2px;
|
|
112
|
+
/* Align center of number with h3 text in card */
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
[data-component="steps"][data-style="connected"] .step-content {
|
|
116
|
+
background: var(--bg-surface);
|
|
117
|
+
padding: var(--space-4);
|
|
118
|
+
border-radius: var(--radius-lg);
|
|
119
|
+
border: 1px solid var(--color-gray-200);
|
|
120
|
+
box-shadow: var(--shadow-sm);
|
|
121
|
+
transition: var(--transition-normal);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
[data-component="steps"][data-style="connected"] .step:hover .step-content {
|
|
125
|
+
border-color: var(--color-primary);
|
|
126
|
+
box-shadow: var(--shadow-md);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/* Compact variant */
|
|
130
|
+
[data-component="steps"][data-style="compact"] .step {
|
|
131
|
+
padding: var(--space-3) var(--space-4);
|
|
132
|
+
gap: var(--space-3);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
[data-component="steps"][data-style="compact"] .step-number {
|
|
136
|
+
width: 36px;
|
|
137
|
+
height: 36px;
|
|
138
|
+
font-size: var(--font-size-base);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
[data-component="steps"][data-style="compact"] .step-content {
|
|
142
|
+
padding-top: var(--space-1);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* Connected-minimal variant - connected style without borders, for use inside cards */
|
|
146
|
+
[data-component="steps"][data-style="connected-minimal"] {
|
|
147
|
+
padding-left: var(--space-8);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
[data-component="steps"][data-style="connected-minimal"] .step {
|
|
151
|
+
background: transparent;
|
|
152
|
+
border: none;
|
|
153
|
+
box-shadow: none;
|
|
154
|
+
padding: var(--space-4) var(--space-4) var(--space-4) 0;
|
|
155
|
+
margin-bottom: var(--space-6);
|
|
156
|
+
position: relative;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
[data-component="steps"][data-style="connected-minimal"] .step::before {
|
|
160
|
+
content: '';
|
|
161
|
+
position: absolute;
|
|
162
|
+
left: 27.5px;
|
|
163
|
+
top: 56px;
|
|
164
|
+
bottom: calc(-1 * var(--space-6) - 30px);
|
|
165
|
+
width: 3px;
|
|
166
|
+
background: var(--color-primary-alpha-30);
|
|
167
|
+
border-radius: var(--radius-full);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
[data-component="steps"][data-style="connected-minimal"] .step:last-child::before {
|
|
171
|
+
display: none;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
[data-component="steps"][data-style="connected-minimal"] .step:last-child {
|
|
175
|
+
margin-bottom: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
[data-component="steps"][data-style="connected-minimal"] .step:hover {
|
|
179
|
+
border: none;
|
|
180
|
+
box-shadow: none;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
[data-component="steps"][data-style="connected-minimal"] .step-number {
|
|
184
|
+
position: relative;
|
|
185
|
+
z-index: 1;
|
|
186
|
+
border: 4px solid var(--bg-surface);
|
|
187
|
+
align-self: flex-start;
|
|
188
|
+
margin-top: 2px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
[data-component="steps"][data-style="connected-minimal"] .step-content {
|
|
192
|
+
background: transparent;
|
|
193
|
+
padding: 0;
|
|
194
|
+
border: none !important;
|
|
195
|
+
box-shadow: none !important;
|
|
196
|
+
border-radius: 0;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
[data-component="steps"][data-style="connected-minimal"] .step:hover .step-content {
|
|
200
|
+
border: none !important;
|
|
201
|
+
box-shadow: none !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@media (max-width: 640px) {
|
|
205
|
+
[data-component="steps"][data-style="connected-minimal"] {
|
|
206
|
+
padding-left: var(--space-4);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
[data-component="steps"][data-style="connected-minimal"] .step::before {
|
|
210
|
+
left: calc(var(--space-4) + 20px);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
[data-component="steps"][data-style="connected-minimal"] .step-number {
|
|
214
|
+
width: 44px;
|
|
215
|
+
height: 44px;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
@media (max-width: 640px) {
|
|
220
|
+
[data-component="steps"][data-style="connected"] {
|
|
221
|
+
padding-left: var(--space-4);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
[data-component="steps"][data-style="connected"]::before {
|
|
225
|
+
left: calc(var(--space-4) + 20px);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
[data-component="steps"][data-style="connected"] .step-number {
|
|
229
|
+
width: 44px;
|
|
230
|
+
height: 44px;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
TABLES - Simple table styling for data presentation
|
|
3
|
+
============================================================================
|
|
4
|
+
|
|
5
|
+
PURPOSE: Clean, accessible table styling for displaying tabular data
|
|
6
|
+
|
|
7
|
+
INCLUDES:
|
|
8
|
+
- Header styling with background
|
|
9
|
+
- Body row styling with borders
|
|
10
|
+
- Hover states for interactivity
|
|
11
|
+
- Responsive padding and alignment
|
|
12
|
+
|
|
13
|
+
DEPENDENCIES:
|
|
14
|
+
- Requires: design-tokens.css (for CSS variables)
|
|
15
|
+
|
|
16
|
+
USED BY: Data displays, results tables, comparison tables
|
|
17
|
+
|
|
18
|
+
USAGE:
|
|
19
|
+
<table class="table">
|
|
20
|
+
<thead>
|
|
21
|
+
<tr>
|
|
22
|
+
<th>Header 1</th>
|
|
23
|
+
<th>Header 2</th>
|
|
24
|
+
</tr>
|
|
25
|
+
</thead>
|
|
26
|
+
<tbody>
|
|
27
|
+
<tr>
|
|
28
|
+
<td>Data 1</td>
|
|
29
|
+
<td>Data 2</td>
|
|
30
|
+
</tr>
|
|
31
|
+
</tbody>
|
|
32
|
+
</table>
|
|
33
|
+
|
|
34
|
+
============================================================================ */
|
|
35
|
+
|
|
36
|
+
.table {
|
|
37
|
+
width: 100%;
|
|
38
|
+
border-collapse: collapse;
|
|
39
|
+
margin: var(--space-4) 0;
|
|
40
|
+
font-size: var(--font-size-base);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.table thead {
|
|
44
|
+
background-color: var(--bg-muted);
|
|
45
|
+
border-bottom: var(--border-width-md) solid var(--color-gray-300);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.table thead th {
|
|
49
|
+
padding: var(--space-3);
|
|
50
|
+
text-align: left;
|
|
51
|
+
font-weight: var(--font-weight-semibold);
|
|
52
|
+
color: var(--color-gray-900);
|
|
53
|
+
border-right: var(--border-width-thin) solid var(--color-gray-200);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.table thead th:last-child {
|
|
57
|
+
border-right: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.table tbody td {
|
|
61
|
+
padding: var(--space-3);
|
|
62
|
+
border-bottom: var(--border-width-thin) solid var(--color-gray-200);
|
|
63
|
+
border-right: var(--border-width-thin) solid var(--color-gray-200);
|
|
64
|
+
color: var(--color-gray-800);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.table tbody td:last-child {
|
|
68
|
+
border-right: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.table tbody tr:hover {
|
|
72
|
+
background-color: rgba(0, 0, 0, 0.02);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.table tbody tr:last-child td {
|
|
76
|
+
border-bottom: none;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* Striped rows — alternating background on even rows */
|
|
80
|
+
.table-striped thead {
|
|
81
|
+
background-color: var(--color-gray-200);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.table-striped tbody tr:nth-child(even) {
|
|
85
|
+
background-color: var(--bg-muted);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.table-striped tbody tr:nth-child(even):hover {
|
|
89
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
90
|
+
}
|