@contractspec/example.learning-journey-ui-onboarding 3.0.0 → 3.2.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.
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
5
  [contractspec-bun-build] transpile target=bun root=src entries=14
6
- Bundled 14 modules in 35ms
6
+ Bundled 14 modules in 32ms
7
7
 
8
8
  ./OnboardingMiniApp.js 45.50 KB (entry point)
9
9
  ./index.js 49.71 KB (entry point)
@@ -21,7 +21,7 @@ Bundled 14 modules in 35ms
21
21
  ./example.js 0.95 KB (entry point)
22
22
 
23
23
  [contractspec-bun-build] transpile target=node root=src entries=14
24
- Bundled 14 modules in 28ms
24
+ Bundled 14 modules in 24ms
25
25
 
26
26
  ./OnboardingMiniApp.js 45.44 KB (entry point)
27
27
  ./index.js 49.63 KB (entry point)
@@ -39,7 +39,7 @@ Bundled 14 modules in 28ms
39
39
  ./example.js 0.94 KB (entry point)
40
40
 
41
41
  [contractspec-bun-build] transpile target=browser root=src entries=14
42
- Bundled 14 modules in 30ms
42
+ Bundled 14 modules in 23ms
43
43
 
44
44
  ./OnboardingMiniApp.js 45.44 KB (entry point)
45
45
  ./index.js 49.63 KB (entry point)
package/AGENTS.md ADDED
@@ -0,0 +1,33 @@
1
+ # AI Agent Guide -- `@contractspec/example.learning-journey-ui-onboarding`
2
+
3
+ Scope: `packages/examples/learning-journey-ui-onboarding/*`
4
+
5
+ Developer onboarding UI with checklists, journey maps, and step-by-step progress views.
6
+
7
+ ## Quick Context
8
+
9
+ - **Layer**: example
10
+ - **Related Packages**: `lib.ui-kit-core`, `lib.contracts-spec`, `lib.design-system`, `lib.ui-kit-web`, `module.learning-journey`, `example.learning-journey-ui-shared`, `example.learning-journey-studio-onboarding`, `example.learning-journey-platform-tour`
11
+
12
+ ## What This Demonstrates
13
+
14
+ - React-based onboarding mini-app with checklist and journey map components
15
+ - Multi-view layout (Overview, Progress, Steps, Timeline)
16
+ - Shared UI component reuse across learning journey examples
17
+ - DocBlock-driven documentation pattern
18
+
19
+ ## Public Exports
20
+
21
+ - `.` -- root barrel
22
+ - `./components` -- CodeSnippet, JourneyMap, StepChecklist
23
+ - `./views` -- Overview, Progress, Steps, Timeline
24
+ - `./OnboardingMiniApp` -- top-level mini-app component
25
+ - `./docs` -- DocBlock documentation
26
+ - `./example` -- runnable example entry
27
+
28
+ ## Local Commands
29
+
30
+ - Build: `bun run build`
31
+ - Dev: `bun run dev`
32
+ - Test: `bun test --pass-with-no-tests`
33
+ - Typecheck: `bun run typecheck`
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @contractspec/example.learning-journey-ui-onboarding
2
2
 
3
+ ## 3.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a281fc5: fix: missing dependencies
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [a281fc5]
12
+ - @contractspec/example.learning-journey-studio-onboarding@3.2.0
13
+ - @contractspec/example.learning-journey-platform-tour@3.2.0
14
+ - @contractspec/example.learning-journey-ui-shared@3.2.0
15
+ - @contractspec/module.learning-journey@3.2.0
16
+ - @contractspec/lib.contracts-spec@3.2.0
17
+ - @contractspec/lib.design-system@3.2.0
18
+ - @contractspec/lib.ui-kit-core@3.2.0
19
+ - @contractspec/lib.ui-kit-web@3.2.0
20
+
21
+ ## 3.1.1
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [02c0cc5]
26
+ - @contractspec/lib.contracts-spec@3.1.1
27
+ - @contractspec/lib.design-system@3.1.1
28
+ - @contractspec/example.learning-journey-platform-tour@3.1.1
29
+ - @contractspec/example.learning-journey-studio-onboarding@3.1.1
30
+ - @contractspec/example.learning-journey-ui-shared@3.1.1
31
+ - @contractspec/module.learning-journey@3.1.1
32
+
33
+ ## 3.1.0
34
+
35
+ ### Minor Changes
36
+
37
+ - 28987eb: chore: upgrade dependencies
38
+
39
+ ### Patch Changes
40
+
41
+ - Updated dependencies [f2a4faf]
42
+ - Updated dependencies [28987eb]
43
+ - Updated dependencies [28987eb]
44
+ - @contractspec/lib.contracts-spec@3.1.0
45
+ - @contractspec/example.learning-journey-studio-onboarding@3.1.0
46
+ - @contractspec/example.learning-journey-platform-tour@3.1.0
47
+ - @contractspec/example.learning-journey-ui-shared@3.1.0
48
+ - @contractspec/module.learning-journey@3.1.0
49
+ - @contractspec/lib.design-system@3.1.0
50
+ - @contractspec/lib.ui-kit-core@3.1.0
51
+ - @contractspec/lib.ui-kit-web@3.1.0
52
+
3
53
  ## 3.0.0
4
54
 
5
55
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-ui-onboarding",
3
- "version": "3.0.0",
3
+ "version": "3.2.0",
4
4
  "description": "Developer onboarding UI with checklists and journey maps.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -141,21 +141,21 @@
141
141
  "typecheck": "tsc --noEmit"
142
142
  },
143
143
  "dependencies": {
144
- "@contractspec/lib.ui-kit-core": "3.0.0",
145
- "@contractspec/lib.contracts-spec": "3.0.0",
146
- "@contractspec/example.learning-journey-ui-shared": "3.0.0",
147
- "@contractspec/example.learning-journey-studio-onboarding": "3.0.0",
148
- "@contractspec/example.learning-journey-platform-tour": "3.0.0",
149
- "@contractspec/module.learning-journey": "3.0.0",
150
- "@contractspec/lib.design-system": "3.0.0",
151
- "@contractspec/lib.ui-kit-web": "3.0.0",
144
+ "@contractspec/lib.ui-kit-core": "3.2.0",
145
+ "@contractspec/lib.contracts-spec": "3.2.0",
146
+ "@contractspec/example.learning-journey-ui-shared": "3.2.0",
147
+ "@contractspec/example.learning-journey-studio-onboarding": "3.2.0",
148
+ "@contractspec/example.learning-journey-platform-tour": "3.2.0",
149
+ "@contractspec/module.learning-journey": "3.2.0",
150
+ "@contractspec/lib.design-system": "3.2.0",
151
+ "@contractspec/lib.ui-kit-web": "3.2.0",
152
152
  "react": "19.2.4"
153
153
  },
154
154
  "devDependencies": {
155
- "@contractspec/tool.typescript": "3.0.0",
155
+ "@contractspec/tool.typescript": "3.2.0",
156
156
  "@types/react": "^19.2.14",
157
157
  "typescript": "^5.9.3",
158
- "@contractspec/tool.bun": "3.0.0"
158
+ "@contractspec/tool.bun": "3.2.0"
159
159
  },
160
160
  "peerDependencies": {
161
161
  "react": "^19.2.4"