@lssm/example.learning-journey-registry 0.0.0-canary-20251217060834 → 0.0.0-canary-20251217073102

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