@lssm/example.learning-journey-registry 0.0.0-canary-20251217062139 → 0.0.0-canary-20251217072406

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.
Files changed (110) hide show
  1. package/.turbo/turbo-build$colon$bundle.log +409 -410
  2. package/.turbo/turbo-build.log +410 -55
  3. package/CHANGELOG.md +14 -12
  4. package/dist/api.js +170 -1
  5. package/dist/docs/index.js +1 -1
  6. package/dist/docs/learning-journey-registry.docblock.js +38 -1
  7. package/dist/example.js +34 -1
  8. package/dist/examples/learning-journey-ambient-coach/src/track.js +41 -1
  9. package/dist/examples/learning-journey-crm-onboarding/dist/track.js +98 -1
  10. package/dist/examples/learning-journey-duo-drills/src/track.js +65 -1
  11. package/dist/examples/learning-journey-platform-tour/dist/track.js +105 -1
  12. package/dist/examples/learning-journey-quest-challenges/src/track.js +35 -1
  13. package/dist/examples/learning-journey-studio-onboarding/dist/track.js +90 -1
  14. package/dist/examples/learning-journey-ui-coaching/src/CoachingMiniApp.js +64 -1
  15. package/dist/examples/learning-journey-ui-coaching/src/components/EngagementMeter.js +107 -1
  16. package/dist/examples/learning-journey-ui-coaching/src/components/TipCard.js +75 -1
  17. package/dist/examples/learning-journey-ui-coaching/src/components/TipFeed.js +65 -1
  18. package/dist/examples/learning-journey-ui-coaching/src/components/index.js +3 -1
  19. package/dist/examples/learning-journey-ui-coaching/src/docs/index.js +1 -1
  20. package/dist/examples/learning-journey-ui-coaching/src/docs/learning-journey-ui-coaching.docblock.js +19 -7
  21. package/dist/examples/learning-journey-ui-coaching/src/index.js +11 -1
  22. package/dist/examples/learning-journey-ui-coaching/src/views/Overview.js +152 -1
  23. package/dist/examples/learning-journey-ui-coaching/src/views/Progress.js +117 -1
  24. package/dist/examples/learning-journey-ui-coaching/src/views/Steps.js +68 -1
  25. package/dist/examples/learning-journey-ui-coaching/src/views/Timeline.js +112 -1
  26. package/dist/examples/learning-journey-ui-coaching/src/views/index.js +4 -1
  27. package/dist/examples/learning-journey-ui-gamified/src/GamifiedMiniApp.js +64 -1
  28. package/dist/examples/learning-journey-ui-gamified/src/components/DayCalendar.js +32 -1
  29. package/dist/examples/learning-journey-ui-gamified/src/components/FlashCard.js +79 -1
  30. package/dist/examples/learning-journey-ui-gamified/src/components/MasteryRing.js +81 -1
  31. package/dist/examples/learning-journey-ui-gamified/src/components/index.js +3 -1
  32. package/dist/examples/learning-journey-ui-gamified/src/docs/index.js +1 -1
  33. package/dist/examples/learning-journey-ui-gamified/src/docs/learning-journey-ui-gamified.docblock.js +19 -7
  34. package/dist/examples/learning-journey-ui-gamified/src/index.js +11 -1
  35. package/dist/examples/learning-journey-ui-gamified/src/views/Overview.js +163 -1
  36. package/dist/examples/learning-journey-ui-gamified/src/views/Progress.js +144 -1
  37. package/dist/examples/learning-journey-ui-gamified/src/views/Steps.js +55 -1
  38. package/dist/examples/learning-journey-ui-gamified/src/views/Timeline.js +132 -1
  39. package/dist/examples/learning-journey-ui-gamified/src/views/index.js +4 -1
  40. package/dist/examples/learning-journey-ui-onboarding/src/OnboardingMiniApp.js +64 -1
  41. package/dist/examples/learning-journey-ui-onboarding/src/components/CodeSnippet.js +4 -1
  42. package/dist/examples/learning-journey-ui-onboarding/src/components/JourneyMap.js +48 -1
  43. package/dist/examples/learning-journey-ui-onboarding/src/components/StepChecklist.js +79 -1
  44. package/dist/examples/learning-journey-ui-onboarding/src/components/index.js +3 -1
  45. package/dist/examples/learning-journey-ui-onboarding/src/docs/index.js +1 -1
  46. package/dist/examples/learning-journey-ui-onboarding/src/docs/learning-journey-ui-onboarding.docblock.js +19 -7
  47. package/dist/examples/learning-journey-ui-onboarding/src/index.js +10 -1
  48. package/dist/examples/learning-journey-ui-onboarding/src/views/Overview.js +180 -1
  49. package/dist/examples/learning-journey-ui-onboarding/src/views/Progress.js +162 -1
  50. package/dist/examples/learning-journey-ui-onboarding/src/views/Steps.js +91 -1
  51. package/dist/examples/learning-journey-ui-onboarding/src/views/Timeline.js +97 -1
  52. package/dist/examples/learning-journey-ui-onboarding/src/views/index.js +4 -1
  53. package/dist/examples/learning-journey-ui-shared/src/components/BadgeDisplay.js +44 -1
  54. package/dist/examples/learning-journey-ui-shared/src/components/StreakCounter.js +45 -1
  55. package/dist/examples/learning-journey-ui-shared/src/components/ViewTabs.js +48 -1
  56. package/dist/examples/learning-journey-ui-shared/src/components/XpBar.js +46 -1
  57. package/dist/examples/learning-journey-ui-shared/src/components/index.js +4 -1
  58. package/dist/examples/learning-journey-ui-shared/src/docs/index.js +1 -1
  59. package/dist/examples/learning-journey-ui-shared/src/docs/learning-journey-ui-shared.docblock.js +19 -6
  60. package/dist/examples/learning-journey-ui-shared/src/hooks/index.js +1 -1
  61. package/dist/examples/learning-journey-ui-shared/src/hooks/useLearningProgress.js +73 -1
  62. package/dist/examples/learning-journey-ui-shared/src/index.js +8 -1
  63. package/dist/index.js +13 -1
  64. package/dist/learning-journey-registry.feature.js +66 -1
  65. package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -76
  66. package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -350
  67. package/dist/libs/contracts/dist/docs/index.js +29 -1
  68. package/dist/libs/contracts/dist/docs/presentations.js +71 -1
  69. package/dist/libs/contracts/dist/docs/registry.js +44 -1
  70. package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -383
  71. package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -68
  72. package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -140
  73. package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -86
  74. package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -1
  75. package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +24 -2
  76. package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +21 -2
  77. package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +16 -213
  78. package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +73 -5
  79. package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +37 -1
  80. package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -1
  81. package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +20 -262
  82. package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -1
  83. package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +24 -2
  84. package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +23 -2
  85. package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +25 -16
  86. package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -1
  87. package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +22 -2
  88. package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +40 -36
  89. package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -1
  90. package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +23 -2
  91. package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +36 -3
  92. package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -1
  93. package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +36 -3
  94. package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -1
  95. package/dist/libs/design-system/dist/_virtual/rolldown_runtime.js +5 -1
  96. package/dist/libs/design-system/dist/components/atoms/Button.js +33 -1
  97. package/dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js +55 -1
  98. package/dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js +13 -1
  99. package/dist/libs/ui-kit-core/dist/utils.js +10 -1
  100. package/dist/libs/ui-kit-web/dist/ui/card.js +36 -1
  101. package/dist/libs/ui-kit-web/dist/ui/progress.js +23 -1
  102. package/dist/libs/ui-kit-web/dist/ui/utils.js +10 -1
  103. package/dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js +10 -1
  104. package/dist/presentations/index.js +64 -1
  105. package/dist/progress-store.js +30 -1
  106. package/dist/tracks.js +47 -1
  107. package/dist/ui/LearningMiniApp.js +82 -1
  108. package/dist/ui/index.js +3 -1
  109. package/package.json +16 -14
  110. package/tsconfig.tsbuildinfo +1 -1
@@ -1,55 +1,410 @@
1
-
2
- $ bun build:bundle && bun build:types
3
- $ tsdown
4
- ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
5
- ℹ config file: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/examples/learning-journey-registry/tsdown.config.js (unrun)
6
- ℹ entry: src/api-types.ts, src/api.ts, src/example.ts, src/index.ts, src/learning-journey-registry.feature.ts, src/progress-store.ts, src/tracks.ts, src/docs/index.ts, src/docs/learning-journey-registry.docblock.ts, src/presentations/index.ts, src/ui/LearningMiniApp.tsx, src/ui/index.ts
7
- ℹ target: esnext
8
- ℹ tsconfig: tsconfig.json
9
- ℹ Build start
10
- ℹ Cleaning 57 files
11
- ℹ dist/api.js  3.28 kB │ gzip: 1.37 kB
12
- ℹ dist/ui/LearningMiniApp.js  1.88 kB │ gzip: 0.70 kB
13
- ℹ dist/tracks.js  1.30 kB │ gzip: 0.50 kB
14
- ℹ dist/index.js  1.23 kB │ gzip: 0.42 kB
15
- ℹ dist/docs/learning-journey-registry.docblock.js  1.21 kB │ gzip: 0.63 kB
16
- ℹ dist/presentations/index.js  0.99 kB │ gzip: 0.39 kB
17
- ℹ dist/learning-journey-registry.feature.js  0.86 kB │ gzip: 0.36 kB
18
- ℹ dist/example.js  0.52 kB │ gzip: 0.32 kB
19
- ℹ dist/progress-store.js  0.43 kB │ gzip: 0.29 kB
20
- ℹ dist/ui/index.js  0.19 kB │ gzip: 0.11 kB
21
- ℹ dist/docs/index.js  0.05 kB │ gzip: 0.07 kB
22
- ℹ dist/api-types.js  0.00 kB │ gzip: 0.02 kB
23
- ℹ dist/libs/contracts/src/docs/accessibility_wcag_compliance_specs.docblock.js 16.53 kB │ gzip: 7.16 kB
24
- ℹ dist/libs/contracts/src/docs/tech/schema/README.docblock.js 10.99 kB │ gzip: 4.29 kB
25
- ℹ dist/libs/contracts/src/docs/tech/lifecycle-stage-system.docblock.js  9.67 kB │ gzip: 3.78 kB
26
- ℹ dist/libs/contracts/src/docs/tech/llm/llm-integration.docblock.js  9.12 kB │ gzip: 3.42 kB
27
- ℹ dist/libs/contracts/src/docs/tech/PHASE_1_QUICKSTART.docblock.js  8.76 kB │ gzip: 2.68 kB
28
- ℹ dist/libs/contracts/src/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js  5.93 kB │ gzip: 2.61 kB
29
- ℹ dist/libs/contracts/src/docs/tech/templates/runtime.docblock.js  5.63 kB │ gzip: 2.58 kB
30
- ℹ dist/libs/contracts/src/docs/tech/workflows/overview.docblock.js  5.44 kB │ gzip: 2.26 kB
31
- ℹ dist/libs/contracts/src/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js  4.37 kB │ gzip: 2.06 kB
32
- ℹ dist/libs/contracts/src/docs/tech/telemetry-ingest.docblock.js  3.90 kB │ gzip: 1.70 kB
33
- ℹ dist/libs/contracts/src/docs/tech/vscode-extension.docblock.js  3.60 kB │ gzip: 1.39 kB
34
- ℹ dist/libs/contracts/src/docs/PUBLISHING.docblock.js  3.43 kB │ gzip: 1.59 kB
35
- ℹ dist/libs/contracts/src/docs/tech/auth/better-auth-nextjs.docblock.js  3.35 kB │ gzip: 1.45 kB
36
- ℹ dist/libs/contracts/src/docs/tech/studio/learning-journeys.docblock.js  3.08 kB │ gzip: 1.39 kB
37
- ℹ dist/libs/contracts/src/docs/tech/studio/platform-admin-panel.docblock.js  3.04 kB │ gzip: 1.33 kB
38
- ℹ dist/libs/contracts/src/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js  3.00 kB │ gzip: 1.53 kB
39
- ℹ dist/libs/contracts/src/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js  2.83 kB │ gzip: 1.41 kB
40
- ℹ dist/libs/contracts/src/docs/tech/presentation-runtime.docblock.js  2.75 kB │ gzip: 1.30 kB
41
- ℹ dist/libs/contracts/src/docs/tech/studio/project-routing.docblock.js  2.50 kB │ gzip: 1.12 kB
42
- ℹ dist/libs/contracts/src/docs/tech/studio/team-invitations.docblock.js  2.14 kB │ gzip: 1.04 kB
43
- ℹ dist/libs/contracts/src/docs/tech/studio/workspaces.docblock.js  1.90 kB │ gzip: 0.94 kB
44
- ℹ dist/libs/contracts/src/docs/tech/studio/learning-events.docblock.js  1.79 kB │ gzip: 0.88 kB
45
- ℹ dist/libs/contracts/src/docs/tech/contracts/openapi-export.docblock.js  1.72 kB │ gzip: 0.90 kB
46
- ℹ dist/libs/contracts/src/docs/tech/studio/project-access-teams.docblock.js  1.58 kB │ gzip: 0.78 kB
47
- ℹ dist/libs/contracts/src/docs/index.js  1.54 kB │ gzip: 0.52 kB
48
- ℹ dist/libs/contracts/src/docs/tech/studio/workspace-ops.docblock.js  1.49 kB │ gzip: 0.73 kB
49
- ℹ dist/libs/contracts/src/docs/tech/mcp-endpoints.docblock.js  1.24 kB │ gzip: 0.68 kB
50
- ℹ dist/libs/contracts/src/docs/presentations.js  1.23 kB │ gzip: 0.59 kB
51
- ℹ dist/libs/contracts/src/docs/tech/studio/sandbox-unlogged.docblock.js  0.90 kB │ gzip: 0.56 kB
52
- ℹ dist/libs/contracts/src/docs/registry.js  0.74 kB │ gzip: 0.42 kB
53
- ℹ 42 files, total: 136.15 kB
54
- ✔ Build complete in 29ms
55
- $ tsc --noEmit
1
+ $ bun build:bundle && bun build:types
2
+ $ tsdown
3
+ ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
4
+ ℹ config file: /home/runner/work/contractspec/contractspec/packages/examples/learning-journey-registry/tsdown.config.js
5
+ ℹ entry: src/api-types.ts, src/api.ts, src/example.ts, src/index.ts, src/learning-journey-registry.feature.ts, src/progress-store.ts, src/tracks.ts, src/docs/index.ts, src/docs/learning-journey-registry.docblock.ts, src/presentations/index.ts, src/ui/LearningMiniApp.tsx, src/ui/index.ts
6
+ ℹ target: esnext
7
+ ℹ tsconfig: tsconfig.json
8
+ ℹ Build start
9
+ [rolldown-plugin-dts] Warning: Failed to emit declaration file. Please try to enable `eager` option (`dts.eager` for tsdown).
10
+ ℹ dist/api.js  6.76 kB │ gzip: 1.94 kB
11
+ ℹ dist/ui/LearningMiniApp.js  3.13 kB │ gzip: 0.98 kB
12
+ ℹ dist/tracks.js  1.75 kB │ gzip: 0.58 kB
13
+ ℹ dist/presentations/index.js  1.47 kB │ gzip: 0.48 kB
14
+ ℹ dist/index.js  1.37 kB │ gzip: 0.38 kB
15
+ ℹ dist/docs/learning-journey-registry.docblock.js  1.35 kB │ gzip: 0.69 kB
16
+ ℹ dist/learning-journey-registry.feature.js  1.29 kB │ gzip: 0.48 kB
17
+ ℹ dist/progress-store.js  0.80 kB │ gzip: 0.40 kB
18
+ ℹ dist/example.js  0.73 kB │ gzip: 0.39 kB
19
+ ℹ dist/ui/index.js  0.17 kB │ gzip: 0.09 kB
20
+ ℹ dist/docs/index.js  0.05 kB │ gzip: 0.07 kB
21
+ ℹ dist/api-types.js  0.00 kB │ gzip: 0.02 kB
22
+ ℹ dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js 16.91 kB │ gzip: 7.23 kB
23
+ ℹ dist/libs/contracts/dist/docs/tech/schema/README.docblock.js 11.21 kB │ gzip: 4.33 kB
24
+ ℹ dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js  9.96 kB │ gzip: 3.83 kB
25
+ ℹ dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js  9.53 kB │ gzip: 3.50 kB
26
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js  9.22 kB │ gzip: 2.77 kB
27
+ ℹ dist/examples/learning-journey-ui-onboarding/src/views/Overview.js  7.09 kB │ gzip: 1.82 kB
28
+ ℹ dist/examples/learning-journey-ui-onboarding/src/views/Progress.js  6.61 kB │ gzip: 1.54 kB
29
+ ℹ dist/examples/learning-journey-ui-gamified/src/views/Overview.js  6.38 kB │ gzip: 1.63 kB
30
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js  6.16 kB │ gzip: 2.65 kB
31
+ ℹ dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js  5.85 kB │ gzip: 2.66 kB
32
+ ℹ dist/examples/learning-journey-ui-gamified/src/views/Progress.js  5.77 kB │ gzip: 1.56 kB
33
+ ℹ dist/examples/learning-journey-ui-coaching/src/views/Overview.js  5.76 kB │ gzip: 1.49 kB
34
+ ℹ dist/examples/learning-journey-ui-gamified/src/views/Timeline.js  5.75 kB │ gzip: 1.44 kB
35
+ ℹ dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js  5.66 kB │ gzip: 2.34 kB
36
+ ℹ dist/examples/learning-journey-ui-coaching/src/views/Progress.js  5.17 kB │ gzip: 1.32 kB
37
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js  4.62 kB │ gzip: 2.13 kB
38
+ ℹ dist/examples/learning-journey-ui-onboarding/src/views/Timeline.js  4.54 kB │ gzip: 1.28 kB
39
+ ℹ dist/examples/learning-journey-ui-coaching/src/views/Timeline.js  4.37 kB │ gzip: 1.01 kB
40
+ ℹ dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js  4.16 kB │ gzip: 1.78 kB
41
+ ℹ dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js  3.85 kB │ gzip: 1.47 kB
42
+ ℹ dist/libs/contracts/dist/docs/PUBLISHING.docblock.js  3.62 kB │ gzip: 1.65 kB
43
+ ℹ dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js  3.60 kB │ gzip: 1.53 kB
44
+ ℹ dist/examples/learning-journey-ui-coaching/src/components/EngagementMeter.js  3.46 kB │ gzip: 0.92 kB
45
+ ℹ dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js  3.33 kB │ gzip: 1.47 kB
46
+ ℹ dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js  3.30 kB │ gzip: 1.42 kB
47
+ ℹ dist/examples/learning-journey-ui-onboarding/src/components/StepChecklist.js  3.28 kB │ gzip: 1.04 kB
48
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js  3.25 kB │ gzip: 1.59 kB
49
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js  3.13 kB │ gzip: 1.47 kB
50
+ ℹ dist/examples/learning-journey-ui-onboarding/src/views/Steps.js  3.02 kB │ gzip: 1.01 kB
51
+ ℹ dist/examples/learning-journey-ui-gamified/src/components/FlashCard.js  2.99 kB │ gzip: 1.03 kB
52
+ ℹ dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js  2.97 kB │ gzip: 1.38 kB
53
+ ℹ dist/examples/learning-journey-platform-tour/dist/track.js  2.77 kB │ gzip: 0.91 kB
54
+ ℹ dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js  2.75 kB │ gzip: 1.22 kB
55
+ ℹ dist/examples/learning-journey-ui-coaching/src/components/TipCard.js  2.65 kB │ gzip: 1.03 kB
56
+ ℹ dist/examples/learning-journey-ui-coaching/src/components/TipFeed.js  2.60 kB │ gzip: 1.02 kB
57
+ ℹ dist/examples/learning-journey-ui-shared/src/hooks/useLearningProgress.js  2.52 kB │ gzip: 0.90 kB
58
+ ℹ dist/examples/learning-journey-ui-onboarding/src/OnboardingMiniApp.js  2.48 kB │ gzip: 0.80 kB
59
+ ℹ dist/examples/learning-journey-crm-onboarding/dist/track.js  2.47 kB │ gzip: 0.80 kB
60
+ ℹ dist/examples/learning-journey-ui-coaching/src/CoachingMiniApp.js  2.47 kB │ gzip: 0.80 kB
61
+ ℹ dist/examples/learning-journey-ui-gamified/src/GamifiedMiniApp.js  2.46 kB │ gzip: 0.79 kB
62
+ ℹ dist/examples/learning-journey-studio-onboarding/dist/track.js  2.41 kB │ gzip: 0.91 kB
63
+ ℹ dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js  2.40 kB │ gzip: 1.13 kB
64
+ ℹ dist/libs/contracts/dist/docs/presentations.js  2.18 kB │ gzip: 0.77 kB
65
+ ℹ dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js  2.17 kB │ gzip: 0.92 kB
66
+ ℹ dist/examples/learning-journey-ui-onboarding/src/components/JourneyMap.js  2.16 kB │ gzip: 0.93 kB
67
+ ℹ dist/examples/learning-journey-ui-gamified/src/components/MasteryRing.js  2.15 kB │ gzip: 0.88 kB
68
+ ℹ dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js  2.13 kB │ gzip: 1.02 kB
69
+ ℹ dist/examples/learning-journey-ui-coaching/src/views/Steps.js  2.05 kB │ gzip: 0.74 kB
70
+ ℹ dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js  2.04 kB │ gzip: 0.97 kB
71
+ ℹ dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js  1.96 kB │ gzip: 0.97 kB
72
+ ℹ dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js  1.85 kB │ gzip: 0.87 kB
73
+ ℹ dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js  1.73 kB │ gzip: 0.82 kB
74
+ ℹ dist/examples/learning-journey-duo-drills/src/track.js  1.68 kB │ gzip: 0.73 kB
75
+ ℹ dist/examples/learning-journey-ui-gamified/src/views/Steps.js  1.63 kB │ gzip: 0.68 kB
76
+ ℹ dist/libs/contracts/dist/docs/index.js  1.58 kB │ gzip: 0.51 kB
77
+ ℹ dist/examples/learning-journey-ambient-coach/src/track.js  1.57 kB │ gzip: 0.71 kB
78
+ ℹ dist/examples/learning-journey-ui-gamified/src/components/DayCalendar.js  1.51 kB │ gzip: 0.68 kB
79
+ ℹ dist/examples/learning-journey-ui-shared/src/components/BadgeDisplay.js  1.51 kB │ gzip: 0.78 kB
80
+ ℹ dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js  1.46 kB │ gzip: 0.77 kB
81
+ ℹ dist/examples/learning-journey-quest-challenges/src/track.js  1.43 kB │ gzip: 0.76 kB
82
+ ℹ dist/libs/design-system/dist/components/atoms/Button.js  1.37 kB │ gzip: 0.60 kB
83
+ ℹ dist/examples/learning-journey-ui-shared/src/components/XpBar.js  1.32 kB │ gzip: 0.62 kB
84
+ ℹ dist/libs/contracts/dist/docs/registry.js  1.25 kB │ gzip: 0.56 kB
85
+ ℹ dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js  1.14 kB │ gzip: 0.65 kB
86
+ ℹ dist/libs/ui-kit-web/dist/ui/card.js  1.13 kB │ gzip: 0.47 kB
87
+ ℹ dist/examples/learning-journey-ui-shared/src/components/ViewTabs.js  1.13 kB │ gzip: 0.60 kB
88
+ ℹ dist/examples/learning-journey-ui-shared/src/components/StreakCounter.js  1.10 kB │ gzip: 0.59 kB
89
+ ℹ dist/examples/learning-journey-ui-onboarding/src/docs/learning-journey-ui-onboarding.docblock.js  0.88 kB │ gzip: 0.47 kB
90
+ ℹ dist/examples/learning-journey-ui-gamified/src/docs/learning-journey-ui-gamified.docblock.js  0.87 kB │ gzip: 0.47 kB
91
+ ℹ dist/examples/learning-journey-ui-coaching/src/docs/learning-journey-ui-coaching.docblock.js  0.85 kB │ gzip: 0.46 kB
92
+ ℹ dist/examples/learning-journey-ui-shared/src/docs/learning-journey-ui-shared.docblock.js  0.81 kB │ gzip: 0.45 kB
93
+ ℹ dist/libs/ui-kit-web/dist/ui/progress.js  0.75 kB │ gzip: 0.43 kB
94
+ ℹ dist/examples/learning-journey-ui-coaching/src/index.js  0.50 kB │ gzip: 0.19 kB
95
+ ℹ dist/examples/learning-journey-ui-gamified/src/index.js  0.50 kB │ gzip: 0.19 kB
96
+ ℹ dist/examples/learning-journey-ui-onboarding/src/index.js  0.46 kB │ gzip: 0.18 kB
97
+ ℹ dist/examples/learning-journey-ui-shared/src/index.js  0.38 kB │ gzip: 0.17 kB
98
+ ℹ dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js  0.37 kB │ gzip: 0.24 kB
99
+ ℹ dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js  0.22 kB │ gzip: 0.17 kB
100
+ ℹ dist/libs/ui-kit-web/dist/ui/utils.js  0.21 kB │ gzip: 0.16 kB
101
+ ℹ dist/libs/ui-kit-core/dist/utils.js  0.20 kB │ gzip: 0.16 kB
102
+ ℹ dist/examples/learning-journey-ui-shared/src/components/index.js  0.18 kB │ gzip: 0.11 kB
103
+ ℹ dist/libs/design-system/dist/_virtual/rolldown_runtime.js  0.17 kB │ gzip: 0.15 kB
104
+ ℹ dist/examples/learning-journey-ui-coaching/src/views/index.js  0.17 kB │ gzip: 0.10 kB
105
+ ℹ dist/examples/learning-journey-ui-onboarding/src/views/index.js  0.17 kB │ gzip: 0.10 kB
106
+ ℹ dist/examples/learning-journey-ui-gamified/src/views/index.js  0.16 kB │ gzip: 0.10 kB
107
+ ℹ dist/examples/learning-journey-ui-gamified/src/components/index.js  0.14 kB │ gzip: 0.09 kB
108
+ ℹ dist/examples/learning-journey-ui-coaching/src/components/index.js  0.14 kB │ gzip: 0.09 kB
109
+ ℹ dist/examples/learning-journey-ui-onboarding/src/components/index.js  0.13 kB │ gzip: 0.10 kB
110
+ ℹ dist/examples/learning-journey-ui-onboarding/src/components/CodeSnippet.js  0.11 kB │ gzip: 0.10 kB
111
+ ℹ dist/examples/learning-journey-ui-shared/src/hooks/index.js  0.06 kB │ gzip: 0.07 kB
112
+ ℹ dist/examples/learning-journey-ui-onboarding/src/docs/index.js  0.06 kB │ gzip: 0.07 kB
113
+ ℹ dist/examples/learning-journey-ui-coaching/src/docs/index.js  0.05 kB │ gzip: 0.07 kB
114
+ ℹ dist/examples/learning-journey-ui-gamified/src/docs/index.js  0.05 kB │ gzip: 0.07 kB
115
+ ℹ dist/examples/learning-journey-ui-shared/src/docs/index.js  0.05 kB │ gzip: 0.07 kB
116
+ ℹ dist/tracks.d.ts  1.69 kB │ gzip: 0.55 kB
117
+ ℹ dist/index.d.ts  1.17 kB │ gzip: 0.34 kB
118
+ ℹ dist/ui/LearningMiniApp.d.ts  1.08 kB │ gzip: 0.47 kB
119
+ ℹ dist/api-types.d.ts  1.03 kB │ gzip: 0.46 kB
120
+ ℹ dist/example.d.ts  0.96 kB │ gzip: 0.39 kB
121
+ ℹ dist/progress-store.d.ts  0.64 kB │ gzip: 0.29 kB
122
+ ℹ dist/presentations/index.d.ts  0.56 kB │ gzip: 0.21 kB
123
+ ℹ dist/api.d.ts  0.52 kB │ gzip: 0.27 kB
124
+ ℹ dist/learning-journey-registry.feature.d.ts  0.35 kB │ gzip: 0.22 kB
125
+ ℹ dist/ui/index.d.ts  0.17 kB │ gzip: 0.09 kB
126
+ ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
127
+ ℹ dist/docs/learning-journey-registry.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
128
+ ℹ 118 files, total: 279.41 kB
129
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/Button.js
130
+ ╭─[ ../../libs/design-system/dist/components/atoms/Button.js:4:25 ]
131
+ │
132
+ 4 │ import { Loader2 } from "lucide-react";
133
+  │ ───────┬──────
134
+  │ ╰──────── Module not found, treating it as an external dependency
135
+  │
136
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
137
+ ───╯
138
+
139
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/DataChips.js
140
+ ╭─[ ../../libs/design-system/dist/components/atoms/DataChips.js:4:41 ]
141
+ │
142
+ 4 │ import { Calendar, Clock, MapPin } from "lucide-react";
143
+  │ ───────┬──────
144
+  │ ╰──────── Module not found, treating it as an external dependency
145
+  │
146
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
147
+ ───╯
148
+
149
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/ActionButtons.js
150
+ ╭─[ ../../libs/design-system/dist/components/atoms/ActionButtons.js:7:60 ]
151
+ │
152
+ 7 │ import { Edit, Eye, ToggleLeft, ToggleRight, Trash2 } from "lucide-react";
153
+  │ ───────┬──────
154
+  │ ╰──────── Module not found, treating it as an external dependency
155
+  │
156
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
157
+ ───╯
158
+
159
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/molecules/CommandSearchTrigger.js
160
+ ╭─[ ../../libs/design-system/dist/components/molecules/CommandSearchTrigger.js:8:28 ]
161
+ │
162
+ 8 │ import { SearchIcon } from "lucide-react";
163
+  │ ───────┬──────
164
+  │ ╰──────── Module not found, treating it as an external dependency
165
+  │
166
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
167
+ ───╯
168
+
169
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/organisms/Header.js
170
+ ╭─[ ../../libs/design-system/dist/components/organisms/Header.js:14:22 ]
171
+ │
172
+ 14 │ import { Menu } from "lucide-react";
173
+  │ ───────┬──────
174
+  │ ╰──────── Module not found, treating it as an external dependency
175
+  │
176
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
177
+ ────╯
178
+
179
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/organisms/MarketingHeaderMobile.js
180
+ ╭─[ ../../libs/design-system/dist/components/organisms/MarketingHeaderMobile.js:12:22 ]
181
+ │
182
+ 12 │ import { Menu } from "lucide-react";
183
+  │ ───────┬──────
184
+  │ ╰──────── Module not found, treating it as an external dependency
185
+  │
186
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
187
+ ────╯
188
+
189
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/marketing/MarketingComparisonSection.js
190
+ ╭─[ ../../libs/design-system/dist/components/marketing/MarketingComparisonSection.js:6:29 ]
191
+ │
192
+ 6 │ import { CheckCircle } from "lucide-react";
193
+  │ ───────┬──────
194
+  │ ╰──────── Module not found, treating it as an external dependency
195
+  │
196
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
197
+ ───╯
198
+
199
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/organisms/MarketingHeader.js
200
+ ╭─[ ../../libs/design-system/dist/components/organisms/MarketingHeader.js:19:22 ]
201
+ │
202
+ 19 │ import { Menu } from "lucide-react";
203
+  │ ───────┬──────
204
+  │ ╰──────── Module not found, treating it as an external dependency
205
+  │
206
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
207
+ ────╯
208
+
209
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/LoaderCircular.js
210
+ ╭─[ ../../libs/design-system/dist/components/atoms/LoaderCircular.js:5:25 ]
211
+ │
212
+ 5 │ import { Loader2 } from "lucide-react";
213
+  │ ───────┬──────
214
+  │ ╰──────── Module not found, treating it as an external dependency
215
+  │
216
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
217
+ ───╯
218
+
219
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/select.js
220
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/select.js:6:59 ]
221
+ │
222
+ 6 │ import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react";
223
+  │ ───────┬──────
224
+  │ ╰──────── Module not found, treating it as an external dependency
225
+  │
226
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
227
+ ───╯
228
+
229
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/radio-group.js
230
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/radio-group.js:6:28 ]
231
+ │
232
+ 6 │ import { CircleIcon } from "lucide-react";
233
+  │ ───────┬──────
234
+  │ ╰──────── Module not found, treating it as an external dependency
235
+  │
236
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
237
+ ───╯
238
+
239
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/checkbox.js
240
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/checkbox.js:6:27 ]
241
+ │
242
+ 6 │ import { CheckIcon } from "lucide-react";
243
+  │ ───────┬──────
244
+  │ ╰──────── Module not found, treating it as an external dependency
245
+  │
246
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
247
+ ───╯
248
+
249
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/pagination.js
250
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/pagination.js:5:59 ]
251
+ │
252
+ 5 │ import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react";
253
+  │ ───────┬──────
254
+  │ ╰──────── Module not found, treating it as an external dependency
255
+  │
256
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
257
+ ───╯
258
+
259
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/sidebar.js
260
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/sidebar.js:12:8 ]
261
+ │
262
+ 12 │ import "lucide-react";
263
+  │ ───────┬──────
264
+  │ ╰──────── Module not found, treating it as an external dependency
265
+  │
266
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
267
+ ────╯
268
+
269
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/accordion.js
270
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/accordion.js:6:33 ]
271
+ │
272
+ 6 │ import { ChevronDownIcon } from "lucide-react";
273
+  │ ───────┬──────
274
+  │ ╰──────── Module not found, treating it as an external dependency
275
+  │
276
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
277
+ ───╯
278
+
279
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/organisms/ListPage/ListPage.js
280
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/organisms/ListPage/ListPage.js:9:58 ]
281
+ │
282
+ 9 │ import { AlertTriangle, Loader2, Plus, RefreshCcw } from "lucide-react";
283
+  │ ───────┬──────
284
+  │ ╰──────── Module not found, treating it as an external dependency
285
+  │
286
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
287
+ ───╯
288
+
289
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/dropdown-menu.js
290
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/dropdown-menu.js:6:39 ]
291
+ │
292
+ 6 │ import { CheckIcon, CircleIcon } from "lucide-react";
293
+  │ ───────┬──────
294
+  │ ╰──────── Module not found, treating it as an external dependency
295
+  │
296
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
297
+ ───╯
298
+
299
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/navigation-menu.js
300
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/navigation-menu.js:5:33 ]
301
+ │
302
+ 5 │ import { ChevronDownIcon } from "lucide-react";
303
+  │ ───────┬──────
304
+  │ ╰──────── Module not found, treating it as an external dependency
305
+  │
306
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
307
+ ───╯
308
+
309
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/dialog.js
310
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/dialog.js:6:23 ]
311
+ │
312
+ 6 │ import { XIcon } from "lucide-react";
313
+  │ ───────┬──────
314
+  │ ╰──────── Module not found, treating it as an external dependency
315
+  │
316
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
317
+ ───╯
318
+
319
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/breadcrumb.js
320
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/breadcrumb.js:5:46 ]
321
+ │
322
+ 5 │ import { ChevronRight, MoreHorizontal } from "lucide-react";
323
+  │ ───────┬──────
324
+  │ ╰──────── Module not found, treating it as an external dependency
325
+  │
326
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
327
+ ───╯
328
+
329
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/sheet.js
330
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/sheet.js:6:23 ]
331
+ │
332
+ 6 │ import { XIcon } from "lucide-react";
333
+  │ ───────┬──────
334
+  │ ╰──────── Module not found, treating it as an external dependency
335
+  │
336
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
337
+ ───╯
338
+
339
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/molecules/LangSwitchDropdown.js
340
+ ╭─[ ../../libs/design-system/dist/components/molecules/LangSwitchDropdown.js:4:23 ]
341
+ │
342
+ 4 │ import { Globe } from "lucide-react";
343
+  │ ───────┬──────
344
+  │ ╰──────── Module not found, treating it as an external dependency
345
+  │
346
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
347
+ ───╯
348
+
349
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/command.js
350
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/command.js:7:28 ]
351
+ │
352
+ 7 │ import { SearchIcon } from "lucide-react";
353
+  │ ───────┬──────
354
+  │ ╰──────── Module not found, treating it as an external dependency
355
+  │
356
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
357
+ ───╯
358
+
359
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/carousel.js
360
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/carousel.js:7:39 ]
361
+ │
362
+ 7 │ import { ArrowLeft, ArrowRight } from "lucide-react";
363
+  │ ───────┬──────
364
+  │ ╰──────── Module not found, treating it as an external dependency
365
+  │
366
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
367
+ ───╯
368
+
369
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/Pagination/Pagination.js
370
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/Pagination/Pagination.js:5:72 ]
371
+ │
372
+ 5 │ import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from "lucide-react";
373
+  │ ───────┬──────
374
+  │ ╰──────── Module not found, treating it as an external dependency
375
+  │
376
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
377
+ ───╯
378
+
379
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js
380
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js:7:48 ]
381
+ │
382
+ 7 │ import { ChevronDown, ChevronUp, Filter } from "lucide-react";
383
+  │ ───────┬──────
384
+  │ ╰──────── Module not found, treating it as an external dependency
385
+  │
386
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
387
+ ───╯
388
+
389
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/SearchInput/SearchInput.js
390
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/SearchInput/SearchInput.js:5:27 ]
391
+ │
392
+ 5 │ import { Search, X } from "lucide-react";
393
+  │ ───────┬──────
394
+  │ ╰──────── Module not found, treating it as an external dependency
395
+  │
396
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
397
+ ───╯
398
+
399
+ [MISSING_EXPORT] Warning: "LearningView" is not exported by "../learning-journey-ui-shared/src/index.d.ts".
400
+ ╭─[ src/ui/LearningMiniApp.d.ts:2:10 ]
401
+ │
402
+ 2 │ import { LearningView } from '@lssm/example.learning-journey-ui-shared';
403
+  │ ──────┬─────
404
+  │ ╰─────── Missing export
405
+  │
406
+  │ Note: If you meant to import a type rather than a value, make sure to add the `type` modifier (e.g. `import { type Foo } from '@lssm/example.learning-journey-ui-shared'`).
407
+ ───╯
408
+
409
+ ✔ Build complete in 5026ms
410
+ $ tsc --noEmit
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @lssm/example.learning-journey-registry
2
2
 
3
- ## 0.0.0-canary-20251217062139
3
+ ## 0.0.0-canary-20251217072406
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,14 +9,16 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - Updated dependencies [66a5dfd]
12
- - @lssm/example.learning-journey-ambient-coach@0.0.0-canary-20251217062139
13
- - @lssm/example.learning-journey-crm-onboarding@0.0.0-canary-20251217062139
14
- - @lssm/example.learning-journey-duo-drills@0.0.0-canary-20251217062139
15
- - @lssm/example.learning-journey-platform-tour@0.0.0-canary-20251217062139
16
- - @lssm/example.learning-journey-quest-challenges@0.0.0-canary-20251217062139
17
- - @lssm/example.learning-journey-studio-onboarding@0.0.0-canary-20251217062139
18
- - @lssm/example.learning-journey-ui-coaching@0.0.0-canary-20251217062139
19
- - @lssm/example.learning-journey-ui-gamified@0.0.0-canary-20251217062139
20
- - @lssm/example.learning-journey-ui-onboarding@0.0.0-canary-20251217062139
21
- - @lssm/example.learning-journey-ui-shared@0.0.0-canary-20251217062139
22
- - @lssm/module.learning-journey@0.0.0-canary-20251217062139
12
+ - @lssm/example.learning-journey-ambient-coach@0.0.0-canary-20251217072406
13
+ - @lssm/example.learning-journey-crm-onboarding@0.0.0-canary-20251217072406
14
+ - @lssm/example.learning-journey-duo-drills@0.0.0-canary-20251217072406
15
+ - @lssm/example.learning-journey-platform-tour@0.0.0-canary-20251217072406
16
+ - @lssm/example.learning-journey-quest-challenges@0.0.0-canary-20251217072406
17
+ - @lssm/example.learning-journey-studio-onboarding@0.0.0-canary-20251217072406
18
+ - @lssm/example.learning-journey-ui-coaching@0.0.0-canary-20251217072406
19
+ - @lssm/example.learning-journey-ui-gamified@0.0.0-canary-20251217072406
20
+ - @lssm/example.learning-journey-ui-onboarding@0.0.0-canary-20251217072406
21
+ - @lssm/example.learning-journey-ui-shared@0.0.0-canary-20251217072406
22
+ - @lssm/lib.contracts@0.0.0-canary-20251217072406
23
+ - @lssm/lib.schema@0.0.0-canary-20251217072406
24
+ - @lssm/module.learning-journey@0.0.0-canary-20251217072406