@lssm/example.learning-journey-registry 0.0.0-canary-20251217060834 → 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 (112) hide show
  1. package/.turbo/turbo-build$colon$bundle.log +402 -57
  2. package/.turbo/turbo-build.log +401 -56
  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 -0
  9. package/dist/examples/learning-journey-crm-onboarding/dist/track.js +98 -0
  10. package/dist/examples/learning-journey-duo-drills/src/track.js +65 -0
  11. package/dist/examples/learning-journey-platform-tour/dist/track.js +105 -0
  12. package/dist/examples/learning-journey-quest-challenges/src/track.js +35 -0
  13. package/dist/examples/learning-journey-studio-onboarding/dist/track.js +90 -0
  14. package/dist/examples/learning-journey-ui-coaching/src/CoachingMiniApp.js +64 -0
  15. package/dist/examples/learning-journey-ui-coaching/src/components/EngagementMeter.js +107 -0
  16. package/dist/examples/learning-journey-ui-coaching/src/components/TipCard.js +75 -0
  17. package/dist/examples/learning-journey-ui-coaching/src/components/TipFeed.js +65 -0
  18. package/dist/examples/learning-journey-ui-coaching/src/components/index.js +3 -0
  19. package/dist/examples/learning-journey-ui-coaching/src/docs/index.js +1 -0
  20. package/dist/examples/learning-journey-ui-coaching/src/docs/learning-journey-ui-coaching.docblock.js +20 -0
  21. package/dist/examples/learning-journey-ui-coaching/src/index.js +11 -0
  22. package/dist/examples/learning-journey-ui-coaching/src/views/Overview.js +152 -0
  23. package/dist/examples/learning-journey-ui-coaching/src/views/Progress.js +117 -0
  24. package/dist/examples/learning-journey-ui-coaching/src/views/Steps.js +68 -0
  25. package/dist/examples/learning-journey-ui-coaching/src/views/Timeline.js +112 -0
  26. package/dist/examples/learning-journey-ui-coaching/src/views/index.js +4 -0
  27. package/dist/examples/learning-journey-ui-gamified/src/GamifiedMiniApp.js +64 -0
  28. package/dist/examples/learning-journey-ui-gamified/src/components/DayCalendar.js +32 -0
  29. package/dist/examples/learning-journey-ui-gamified/src/components/FlashCard.js +79 -0
  30. package/dist/examples/learning-journey-ui-gamified/src/components/MasteryRing.js +81 -0
  31. package/dist/examples/learning-journey-ui-gamified/src/components/index.js +3 -0
  32. package/dist/examples/learning-journey-ui-gamified/src/docs/index.js +1 -0
  33. package/dist/examples/learning-journey-ui-gamified/src/docs/learning-journey-ui-gamified.docblock.js +20 -0
  34. package/dist/examples/learning-journey-ui-gamified/src/index.js +11 -0
  35. package/dist/examples/learning-journey-ui-gamified/src/views/Overview.js +163 -0
  36. package/dist/examples/learning-journey-ui-gamified/src/views/Progress.js +144 -0
  37. package/dist/examples/learning-journey-ui-gamified/src/views/Steps.js +55 -0
  38. package/dist/examples/learning-journey-ui-gamified/src/views/Timeline.js +132 -0
  39. package/dist/examples/learning-journey-ui-gamified/src/views/index.js +4 -0
  40. package/dist/examples/learning-journey-ui-onboarding/src/OnboardingMiniApp.js +64 -0
  41. package/dist/examples/learning-journey-ui-onboarding/src/components/CodeSnippet.js +4 -0
  42. package/dist/examples/learning-journey-ui-onboarding/src/components/JourneyMap.js +48 -0
  43. package/dist/examples/learning-journey-ui-onboarding/src/components/StepChecklist.js +79 -0
  44. package/dist/examples/learning-journey-ui-onboarding/src/components/index.js +3 -0
  45. package/dist/examples/learning-journey-ui-onboarding/src/docs/index.js +1 -0
  46. package/dist/examples/learning-journey-ui-onboarding/src/docs/learning-journey-ui-onboarding.docblock.js +20 -0
  47. package/dist/examples/learning-journey-ui-onboarding/src/index.js +10 -0
  48. package/dist/examples/learning-journey-ui-onboarding/src/views/Overview.js +180 -0
  49. package/dist/examples/learning-journey-ui-onboarding/src/views/Progress.js +162 -0
  50. package/dist/examples/learning-journey-ui-onboarding/src/views/Steps.js +91 -0
  51. package/dist/examples/learning-journey-ui-onboarding/src/views/Timeline.js +97 -0
  52. package/dist/examples/learning-journey-ui-onboarding/src/views/index.js +4 -0
  53. package/dist/examples/learning-journey-ui-shared/src/components/BadgeDisplay.js +44 -0
  54. package/dist/examples/learning-journey-ui-shared/src/components/StreakCounter.js +45 -0
  55. package/dist/examples/learning-journey-ui-shared/src/components/ViewTabs.js +48 -0
  56. package/dist/examples/learning-journey-ui-shared/src/components/XpBar.js +46 -0
  57. package/dist/examples/learning-journey-ui-shared/src/components/index.js +4 -0
  58. package/dist/examples/learning-journey-ui-shared/src/docs/index.js +1 -0
  59. package/dist/examples/learning-journey-ui-shared/src/docs/learning-journey-ui-shared.docblock.js +20 -0
  60. package/dist/examples/learning-journey-ui-shared/src/hooks/index.js +1 -0
  61. package/dist/examples/learning-journey-ui-shared/src/hooks/useLearningProgress.js +73 -0
  62. package/dist/examples/learning-journey-ui-shared/src/index.js +8 -0
  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 -0
  96. package/dist/libs/design-system/dist/components/atoms/Button.js +33 -0
  97. package/dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js +55 -0
  98. package/dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js +13 -0
  99. package/dist/libs/ui-kit-core/dist/utils.js +10 -0
  100. package/dist/libs/ui-kit-web/dist/ui/card.js +36 -0
  101. package/dist/libs/ui-kit-web/dist/ui/progress.js +23 -0
  102. package/dist/libs/ui-kit-web/dist/ui/utils.js +10 -0
  103. package/dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js +10 -0
  104. package/dist/presentations/index.js +64 -1
  105. package/dist/progress-store.js +30 -1
  106. package/dist/tracks.d.ts +1 -1
  107. package/dist/tracks.js +47 -1
  108. package/dist/ui/LearningMiniApp.d.ts +0 -1
  109. package/dist/ui/LearningMiniApp.js +82 -1
  110. package/dist/ui/index.js +3 -1
  111. package/package.json +16 -14
  112. package/tsconfig.tsbuildinfo +1 -1
@@ -5,60 +5,405 @@ $ tsdown
5
5
  ℹ target: esnext
6
6
  ℹ tsconfig: tsconfig.json
7
7
  ℹ Build start
8
- ℹ Cleaning 69 files
9
- ℹ dist/api.js  3.28 kB │ gzip: 1.37 kB
10
- ℹ dist/ui/LearningMiniApp.js  1.88 kB │ gzip: 0.70 kB
11
- ℹ dist/tracks.js  1.30 kB │ gzip: 0.50 kB
12
- ℹ dist/index.js  1.23 kB │ gzip: 0.42 kB
13
- ℹ dist/docs/learning-journey-registry.docblock.js  1.20 kB │ gzip: 0.62 kB
14
- ℹ dist/presentations/index.js  0.99 kB │ gzip: 0.39 kB
15
- ℹ dist/learning-journey-registry.feature.js  0.86 kB │ gzip: 0.36 kB
16
- ℹ dist/example.js  0.52 kB │ gzip: 0.32 kB
17
- ℹ dist/progress-store.js  0.43 kB │ gzip: 0.29 kB
18
- ℹ dist/ui/index.js  0.19 kB │ gzip: 0.11 kB
19
- ℹ dist/docs/index.js  0.05 kB │ gzip: 0.07 kB
20
- ℹ dist/api-types.js  0.00 kB │ gzip: 0.02 kB
21
- ℹ dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js 16.51 kB │ gzip: 7.15 kB
22
- ℹ dist/libs/contracts/dist/docs/tech/schema/README.docblock.js 10.97 kB │ gzip: 4.28 kB
23
- ℹ dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js  9.65 kB │ gzip: 3.77 kB
24
- ℹ dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js  9.10 kB │ gzip: 3.41 kB
25
- ℹ dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js  8.74 kB │ gzip: 2.67 kB
26
- ℹ dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js  5.91 kB │ gzip: 2.61 kB
27
- ℹ dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js  5.62 kB │ gzip: 2.58 kB
28
- ℹ dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js  5.42 kB │ gzip: 2.25 kB
29
- ℹ dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js  4.35 kB │ gzip: 2.05 kB
30
- ℹ dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js  3.89 kB │ gzip: 1.69 kB
31
- ℹ dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js  3.58 kB │ gzip: 1.38 kB
32
- ℹ dist/libs/contracts/dist/docs/PUBLISHING.docblock.js  3.42 kB │ gzip: 1.58 kB
33
- ℹ dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js  3.34 kB │ gzip: 1.45 kB
34
- ℹ dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js  3.07 kB │ gzip: 1.38 kB
35
- ℹ dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js  3.03 kB │ gzip: 1.32 kB
36
- ℹ dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js  2.98 kB │ gzip: 1.52 kB
37
- ℹ dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js  2.81 kB │ gzip: 1.41 kB
38
- ℹ dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js  2.73 kB │ gzip: 1.30 kB
39
- ℹ dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js  2.49 kB │ gzip: 1.11 kB
40
- ℹ dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js  2.13 kB │ gzip: 1.03 kB
41
- ℹ dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js  1.89 kB │ gzip: 0.93 kB
42
- ℹ dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js  1.78 kB │ gzip: 0.87 kB
43
- ℹ dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js  1.70 kB │ gzip: 0.89 kB
44
- ℹ dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js  1.57 kB │ gzip: 0.77 kB
45
- ℹ dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js  1.47 kB │ gzip: 0.73 kB
46
- ℹ dist/libs/contracts/dist/docs/index.js  1.42 kB │ gzip: 0.47 kB
47
- ℹ dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js  1.23 kB │ gzip: 0.68 kB
48
- ℹ dist/libs/contracts/dist/docs/presentations.js  1.14 kB │ gzip: 0.56 kB
49
- ℹ dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js  0.89 kB │ gzip: 0.55 kB
50
- ℹ dist/libs/contracts/dist/docs/registry.js  0.63 kB │ gzip: 0.39 kB
51
- ℹ dist/tracks.d.ts  1.69 kB │ gzip: 0.55 kB
52
- ℹ dist/index.d.ts  1.17 kB │ gzip: 0.34 kB
53
- ℹ dist/ui/LearningMiniApp.d.ts  1.15 kB │ gzip: 0.50 kB
54
- ℹ dist/api-types.d.ts  1.03 kB │ gzip: 0.46 kB
55
- ℹ dist/example.d.ts  0.96 kB │ gzip: 0.39 kB
56
- ℹ dist/progress-store.d.ts  0.64 kB │ gzip: 0.29 kB
57
- ℹ dist/presentations/index.d.ts  0.56 kB │ gzip: 0.21 kB
58
- ℹ dist/api.d.ts  0.52 kB │ gzip: 0.27 kB
59
- ℹ dist/learning-journey-registry.feature.d.ts  0.35 kB │ gzip: 0.22 kB
60
- ℹ dist/ui/index.d.ts  0.17 kB │ gzip: 0.09 kB
61
- ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
62
- ℹ dist/docs/learning-journey-registry.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
63
- ℹ 54 files, total: 143.63 kB
64
- ✔ Build complete in 4352ms
8
+ ℹ Cleaning 183 files
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/marketing/MarketingComparisonSection.js
130
+ ╭─[ ../../libs/design-system/dist/components/marketing/MarketingComparisonSection.js:6:29 ]
131
+ │
132
+ 6 │ import { CheckCircle } 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/LoaderCircular.js
140
+ ╭─[ ../../libs/design-system/dist/components/atoms/LoaderCircular.js:5:25 ]
141
+ │
142
+ 5 │ import { Loader2 } 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/molecules/CommandSearchTrigger.js
150
+ ╭─[ ../../libs/design-system/dist/components/molecules/CommandSearchTrigger.js:8:28 ]
151
+ │
152
+ 8 │ import { SearchIcon } 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/atoms/Button.js
160
+ ╭─[ ../../libs/design-system/dist/components/atoms/Button.js:4:25 ]
161
+ │
162
+ 4 │ import { Loader2 } 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/atoms/DataChips.js
170
+ ╭─[ ../../libs/design-system/dist/components/atoms/DataChips.js:4:41 ]
171
+ │
172
+ 4 │ import { Calendar, Clock, MapPin } 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/atoms/ActionButtons.js
180
+ ╭─[ ../../libs/design-system/dist/components/atoms/ActionButtons.js:7:60 ]
181
+ │
182
+ 7 │ import { Edit, Eye, ToggleLeft, ToggleRight, Trash2 } 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/organisms/MarketingHeader.js
190
+ ╭─[ ../../libs/design-system/dist/components/organisms/MarketingHeader.js:19:22 ]
191
+ │
192
+ 19 │ import { Menu } 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/Header.js
200
+ ╭─[ ../../libs/design-system/dist/components/organisms/Header.js:14:22 ]
201
+ │
202
+ 14 │ 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/organisms/MarketingHeaderMobile.js
210
+ ╭─[ ../../libs/design-system/dist/components/organisms/MarketingHeaderMobile.js:12:22 ]
211
+ │
212
+ 12 │ import { Menu } 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/breadcrumb.js
220
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/breadcrumb.js:5:46 ]
221
+ │
222
+ 5 │ import { ChevronRight, MoreHorizontal } 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/organisms/ListPage/ListPage.js
230
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/organisms/ListPage/ListPage.js:9:58 ]
231
+ │
232
+ 9 │ import { AlertTriangle, Loader2, Plus, RefreshCcw } 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/components/molecules/LangSwitchDropdown.js
240
+ ╭─[ ../../libs/design-system/dist/components/molecules/LangSwitchDropdown.js:4:23 ]
241
+ │
242
+ 4 │ import { Globe } 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/dropdown-menu.js
250
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/dropdown-menu.js:6:39 ]
251
+ │
252
+ 6 │ import { CheckIcon, CircleIcon } 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/accordion.js
260
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/accordion.js:6:33 ]
261
+ │
262
+ 6 │ import { ChevronDownIcon } from "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/select.js
270
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/select.js:6:59 ]
271
+ │
272
+ 6 │ import { CheckIcon, ChevronDownIcon, ChevronUpIcon } 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/navigation-menu.js
280
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/navigation-menu.js:5:33 ]
281
+ │
282
+ 5 │ import { ChevronDownIcon } 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/sheet.js
290
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/sheet.js:6:23 ]
291
+ │
292
+ 6 │ import { XIcon } 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/sidebar.js
300
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/sidebar.js:12:8 ]
301
+ │
302
+ 12 │ import "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/checkbox.js
310
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/checkbox.js:6:27 ]
311
+ │
312
+ 6 │ import { CheckIcon } 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/pagination.js
320
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/pagination.js:5:59 ]
321
+ │
322
+ 5 │ import { ChevronLeft, 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/carousel.js
330
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/carousel.js:7:39 ]
331
+ │
332
+ 7 │ import { ArrowLeft, ArrowRight } 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/ui-kit-web/dist/ui/radio-group.js
340
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/radio-group.js:6:28 ]
341
+ │
342
+ 6 │ import { CircleIcon } 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/dialog.js
360
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/dialog.js:6:23 ]
361
+ │
362
+ 6 │ import { XIcon } 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 5109ms