@lssm/example.learning-journey-ui-onboarding 0.0.0-canary-20251217080011 → 0.0.0-canary-20251217083314

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 (126) hide show
  1. package/.turbo/turbo-build$colon$bundle.log +397 -14
  2. package/CHANGELOG.md +10 -10
  3. package/dist/OnboardingMiniApp.d.ts +16 -0
  4. package/dist/OnboardingMiniApp.js +64 -0
  5. package/dist/components/CodeSnippet.d.ts +15 -0
  6. package/dist/{components-OUN5S2z0.mjs → components/CodeSnippet.js} +5 -3
  7. package/dist/components/JourneyMap.d.ts +16 -0
  8. package/dist/components/JourneyMap.js +48 -0
  9. package/dist/components/StepChecklist.d.ts +24 -0
  10. package/dist/{JourneyMap-CZ47DksM.mjs → components/StepChecklist.js} +7 -48
  11. package/dist/components/index.d.ts +4 -0
  12. package/dist/components/index.js +5 -0
  13. package/dist/docs/index.d.ts +1 -0
  14. package/dist/docs/index.js +1 -0
  15. package/dist/docs/learning-journey-ui-onboarding.docblock.d.ts +1 -0
  16. package/dist/docs/learning-journey-ui-onboarding.docblock.js +20 -0
  17. package/dist/{index.d.mts → example.d.ts} +1 -18
  18. package/dist/example.js +34 -0
  19. package/dist/examples/learning-journey-ui-shared/dist/components/BadgeDisplay.js +44 -0
  20. package/dist/examples/learning-journey-ui-shared/dist/components/StreakCounter.js +4 -0
  21. package/dist/examples/learning-journey-ui-shared/dist/components/ViewTabs.js +48 -0
  22. package/dist/examples/learning-journey-ui-shared/dist/components/XpBar.js +46 -0
  23. package/dist/examples/learning-journey-ui-shared/dist/components/index.js +4 -0
  24. package/dist/examples/learning-journey-ui-shared/dist/docs/index.js +1 -0
  25. package/dist/examples/learning-journey-ui-shared/dist/docs/learning-journey-ui-shared.docblock.js +20 -0
  26. package/dist/examples/learning-journey-ui-shared/dist/hooks/index.js +1 -0
  27. package/dist/examples/learning-journey-ui-shared/dist/hooks/useLearningProgress.js +73 -0
  28. package/dist/examples/learning-journey-ui-shared/dist/index.js +8 -0
  29. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +15 -0
  30. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +15 -0
  31. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/index.js +28 -0
  32. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/presentations.js +71 -0
  33. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/registry.js +44 -0
  34. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +15 -0
  35. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +15 -0
  36. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +15 -0
  37. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +15 -0
  38. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +15 -0
  39. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +79 -0
  40. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +56 -0
  41. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +15 -0
  42. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +356 -0
  43. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +36 -0
  44. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +15 -0
  45. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +19 -0
  46. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +47 -0
  47. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +78 -0
  48. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +83 -0
  49. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +44 -0
  50. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +66 -0
  51. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +39 -0
  52. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +68 -0
  53. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +46 -0
  54. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +61 -0
  55. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +154 -0
  56. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +19 -0
  57. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +100 -0
  58. package/dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +19 -0
  59. package/dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/_virtual/rolldown_runtime.js +5 -0
  60. package/dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/components/atoms/Button.js +33 -0
  61. package/dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js +55 -0
  62. package/dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js +13 -0
  63. package/dist/examples/learning-journey-ui-shared/dist/libs/ui-kit-web/dist/ui/progress.js +23 -0
  64. package/dist/examples/learning-journey-ui-shared/dist/libs/ui-kit-web/dist/ui/utils.js +10 -0
  65. package/dist/examples/learning-journey-ui-shared/dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js +10 -0
  66. package/dist/index.d.ts +12 -0
  67. package/dist/index.js +14 -0
  68. package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -0
  69. package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -0
  70. package/dist/libs/contracts/dist/docs/index.js +29 -0
  71. package/dist/libs/contracts/dist/docs/presentations.js +71 -0
  72. package/dist/libs/contracts/dist/docs/registry.js +44 -0
  73. package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -0
  74. package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -0
  75. package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -0
  76. package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -0
  77. package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -0
  78. package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +80 -0
  79. package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +57 -0
  80. package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +16 -0
  81. package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +357 -0
  82. package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +37 -0
  83. package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -0
  84. package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +20 -0
  85. package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -0
  86. package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +79 -0
  87. package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +84 -0
  88. package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +45 -0
  89. package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -0
  90. package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +40 -0
  91. package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +69 -0
  92. package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -0
  93. package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +62 -0
  94. package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +155 -0
  95. package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -0
  96. package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +101 -0
  97. package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -0
  98. package/dist/libs/design-system/dist/_virtual/rolldown_runtime.js +5 -0
  99. package/dist/libs/design-system/dist/components/atoms/Button.js +33 -0
  100. package/dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js +55 -0
  101. package/dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js +13 -0
  102. package/dist/libs/ui-kit-core/dist/utils.js +10 -0
  103. package/dist/libs/ui-kit-web/dist/ui/card.js +36 -0
  104. package/dist/libs/ui-kit-web/dist/ui/progress.js +23 -0
  105. package/dist/libs/ui-kit-web/dist/ui/utils.js +10 -0
  106. package/dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js +10 -0
  107. package/dist/views/Overview.d.ts +14 -0
  108. package/dist/views/Overview.js +180 -0
  109. package/dist/views/Progress.d.ts +10 -0
  110. package/dist/views/Progress.js +162 -0
  111. package/dist/views/Steps.d.ts +11 -0
  112. package/dist/views/Steps.js +91 -0
  113. package/dist/views/Timeline.d.ts +10 -0
  114. package/dist/views/Timeline.js +97 -0
  115. package/dist/views/index.d.ts +5 -0
  116. package/dist/views/index.js +6 -0
  117. package/package.json +26 -17
  118. package/tsdown.config.js +14 -10
  119. package/dist/components/index.d.mts +0 -2
  120. package/dist/components/index.mjs +0 -4
  121. package/dist/index-BNYp4weX.d.mts +0 -33
  122. package/dist/index-BsbXKz4M.d.mts +0 -48
  123. package/dist/index.mjs +0 -110
  124. package/dist/views/index.d.mts +0 -2
  125. package/dist/views/index.mjs +0 -4
  126. package/dist/views-BS9u6UnM.mjs +0 -504
@@ -2,21 +2,404 @@
2
2
  $ tsdown
3
3
  ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
4
4
  ℹ config file: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/examples/learning-journey-ui-onboarding/tsdown.config.js (unrun)
5
- ℹ entry: src/index.ts, src/views/index.ts, src/components/index.ts
5
+ ℹ entry: src/OnboardingMiniApp.tsx, src/example.ts, src/index.ts, src/components/CodeSnippet.tsx, src/components/JourneyMap.tsx, src/components/StepChecklist.tsx, src/components/index.ts, src/docs/index.ts, src/docs/learning-journey-ui-onboarding.docblock.ts, src/views/Overview.tsx, src/views/Progress.tsx, src/views/Steps.tsx, src/views/Timeline.tsx, src/views/index.ts
6
6
  ℹ target: esnext
7
7
  ℹ tsconfig: tsconfig.json
8
8
  ℹ Build start
9
9
  ℹ Cleaning 13 files
10
- ℹ dist/index.mjs  3.91 kB │ gzip: 1.36 kB
11
- ℹ dist/views/index.mjs  0.20 kB │ gzip: 0.15 kB
12
- ℹ dist/components/index.mjs  0.20 kB │ gzip: 0.15 kB
13
- ℹ dist/views-BS9u6UnM.mjs 20.13 kB │ gzip: 3.57 kB
14
- ℹ dist/JourneyMap-CZ47DksM.mjs  5.22 kB │ gzip: 1.54 kB
15
- ℹ dist/components-OUN5S2z0.mjs  1.54 kB │ gzip: 0.66 kB
16
- ℹ dist/index.d.mts  1.79 kB │ gzip: 0.71 kB
17
- ℹ dist/views/index.d.mts  0.16 kB │ gzip: 0.13 kB
18
- ℹ dist/components/index.d.mts  0.14 kB │ gzip: 0.13 kB
19
- ℹ dist/index-BsbXKz4M.d.mts  1.22 kB │ gzip: 0.46 kB
20
- ℹ dist/index-BNYp4weX.d.mts  0.93 kB │ gzip: 0.34 kB
21
- ℹ 11 files, total: 35.45 kB
22
- ✔ Build complete in 1366ms
10
+ ℹ dist/views/Overview.js  7.04 kB │ gzip: 1.82 kB
11
+ ℹ dist/views/Progress.js  6.59 kB │ gzip: 1.54 kB
12
+ ℹ dist/views/Timeline.js  4.50 kB │ gzip: 1.26 kB
13
+ ℹ dist/components/StepChecklist.js  3.22 kB │ gzip: 1.01 kB
14
+ ℹ dist/views/Steps.js  2.98 kB │ gzip: 0.99 kB
15
+ ℹ dist/OnboardingMiniApp.js  2.46 kB │ gzip: 0.80 kB
16
+ ℹ dist/components/JourneyMap.js  2.11 kB │ gzip: 0.91 kB
17
+ ℹ dist/components/CodeSnippet.js  1.58 kB │ gzip: 0.68 kB
18
+ ℹ dist/docs/learning-journey-ui-onboarding.docblock.js  0.83 kB │ gzip: 0.46 kB
19
+ ℹ dist/example.js  0.75 kB │ gzip: 0.41 kB
20
+ ℹ dist/index.js  0.72 kB │ gzip: 0.25 kB
21
+ ℹ dist/views/index.js  0.24 kB │ gzip: 0.12 kB
22
+ ℹ dist/components/index.js  0.20 kB │ gzip: 0.11 kB
23
+ ℹ dist/docs/index.js  0.06 kB │ gzip: 0.07 kB
24
+ ℹ dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js 16.91 kB │ gzip: 7.23 kB
25
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js 16.84 kB │ gzip: 7.23 kB
26
+ ℹ dist/libs/contracts/dist/docs/tech/schema/README.docblock.js 11.21 kB │ gzip: 4.33 kB
27
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js 11.18 kB │ gzip: 4.32 kB
28
+ ℹ dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js  9.96 kB │ gzip: 3.83 kB
29
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js  9.90 kB │ gzip: 3.81 kB
30
+ ℹ dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js  9.53 kB │ gzip: 3.50 kB
31
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js  9.48 kB │ gzip: 3.50 kB
32
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js  9.22 kB │ gzip: 2.77 kB
33
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js  9.17 kB │ gzip: 2.77 kB
34
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js  6.16 kB │ gzip: 2.65 kB
35
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js  6.11 kB │ gzip: 2.65 kB
36
+ ℹ dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js  5.85 kB │ gzip: 2.66 kB
37
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js  5.81 kB │ gzip: 2.65 kB
38
+ ℹ dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js  5.66 kB │ gzip: 2.34 kB
39
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js  5.61 kB │ gzip: 2.33 kB
40
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js  4.62 kB │ gzip: 2.13 kB
41
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js  4.54 kB │ gzip: 2.13 kB
42
+ ℹ dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js  4.16 kB │ gzip: 1.78 kB
43
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js  4.12 kB │ gzip: 1.77 kB
44
+ ℹ dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js  3.85 kB │ gzip: 1.47 kB
45
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js  3.81 kB │ gzip: 1.46 kB
46
+ ℹ dist/libs/contracts/dist/docs/PUBLISHING.docblock.js  3.62 kB │ gzip: 1.65 kB
47
+ ℹ dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js  3.60 kB │ gzip: 1.53 kB
48
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js  3.59 kB │ gzip: 1.65 kB
49
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js  3.54 kB │ gzip: 1.53 kB
50
+ ℹ dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js  3.33 kB │ gzip: 1.47 kB
51
+ ℹ dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js  3.30 kB │ gzip: 1.42 kB
52
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js  3.27 kB │ gzip: 1.46 kB
53
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js  3.25 kB │ gzip: 1.59 kB
54
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js  3.23 kB │ gzip: 1.41 kB
55
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js  3.18 kB │ gzip: 1.58 kB
56
+ ℹ dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js  3.13 kB │ gzip: 1.47 kB
57
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js  3.06 kB │ gzip: 1.46 kB
58
+ ℹ dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js  2.97 kB │ gzip: 1.38 kB
59
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js  2.92 kB │ gzip: 1.37 kB
60
+ ℹ dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js  2.75 kB │ gzip: 1.22 kB
61
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js  2.69 kB │ gzip: 1.21 kB
62
+ ℹ dist/examples/learning-journey-ui-shared/dist/hooks/useLearningProgress.js  2.52 kB │ gzip: 0.90 kB
63
+ ℹ dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js  2.40 kB │ gzip: 1.13 kB
64
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js  2.34 kB │ gzip: 1.13 kB
65
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js  2.20 kB │ gzip: 0.94 kB
66
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/presentations.js  2.18 kB │ gzip: 0.79 kB
67
+ ℹ dist/libs/contracts/dist/docs/presentations.js  2.18 kB │ gzip: 0.77 kB
68
+ ℹ dist/libs/design-system/dist/ui-kit-web/dist/ui/button.js  2.17 kB │ gzip: 0.92 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-shared/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js  2.08 kB │ gzip: 1.01 kB
71
+ ℹ dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js  2.04 kB │ gzip: 0.97 kB
72
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js  1.98 kB │ gzip: 0.96 kB
73
+ ℹ dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js  1.96 kB │ gzip: 0.97 kB
74
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js  1.90 kB │ gzip: 0.96 kB
75
+ ℹ dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js  1.85 kB │ gzip: 0.87 kB
76
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js  1.79 kB │ gzip: 0.86 kB
77
+ ℹ dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js  1.73 kB │ gzip: 0.82 kB
78
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js  1.67 kB │ gzip: 0.82 kB
79
+ ℹ dist/libs/contracts/dist/docs/index.js  1.58 kB │ gzip: 0.51 kB
80
+ ℹ dist/examples/learning-journey-ui-shared/dist/components/BadgeDisplay.js  1.50 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-ui-shared/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js  1.43 kB │ gzip: 0.77 kB
83
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/index.js  1.40 kB │ gzip: 0.44 kB
84
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/components/atoms/Button.js  1.40 kB │ gzip: 0.62 kB
85
+ ℹ dist/libs/design-system/dist/components/atoms/Button.js  1.37 kB │ gzip: 0.60 kB
86
+ ℹ dist/examples/learning-journey-ui-shared/dist/components/XpBar.js  1.30 kB │ gzip: 0.62 kB
87
+ ℹ dist/libs/contracts/dist/docs/registry.js  1.25 kB │ gzip: 0.56 kB
88
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/registry.js  1.25 kB │ gzip: 0.57 kB
89
+ ℹ dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js  1.14 kB │ gzip: 0.65 kB
90
+ ℹ dist/libs/ui-kit-web/dist/ui/card.js  1.13 kB │ gzip: 0.47 kB
91
+ ℹ dist/examples/learning-journey-ui-shared/dist/components/ViewTabs.js  1.12 kB │ gzip: 0.59 kB
92
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js  1.08 kB │ gzip: 0.64 kB
93
+ ℹ dist/examples/learning-journey-ui-shared/dist/docs/learning-journey-ui-shared.docblock.js  0.79 kB │ gzip: 0.44 kB
94
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/ui-kit-web/dist/ui/progress.js  0.78 kB │ gzip: 0.45 kB
95
+ ℹ dist/libs/ui-kit-web/dist/ui/progress.js  0.75 kB │ gzip: 0.43 kB
96
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js  0.40 kB │ gzip: 0.26 kB
97
+ ℹ dist/libs/design-system/dist/ui-kit-web/dist/ui-kit-core/dist/utils.js  0.37 kB │ gzip: 0.24 kB
98
+ ℹ dist/examples/learning-journey-ui-shared/dist/index.js  0.36 kB │ gzip: 0.16 kB
99
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js  0.25 kB │ gzip: 0.18 kB
100
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/ui-kit-web/dist/ui/utils.js  0.24 kB │ gzip: 0.18 kB
101
+ ℹ dist/libs/ui-kit-web/dist/ui-kit-core/dist/utils.js  0.22 kB │ gzip: 0.17 kB
102
+ ℹ dist/libs/ui-kit-web/dist/ui/utils.js  0.21 kB │ gzip: 0.16 kB
103
+ ℹ dist/libs/ui-kit-core/dist/utils.js  0.20 kB │ gzip: 0.16 kB
104
+ ℹ dist/examples/learning-journey-ui-shared/dist/libs/design-system/dist/_virtual/rolldown_runtime.js  0.20 kB │ gzip: 0.17 kB
105
+ ℹ dist/libs/design-system/dist/_virtual/rolldown_runtime.js  0.17 kB │ gzip: 0.15 kB
106
+ ℹ dist/examples/learning-journey-ui-shared/dist/components/index.js  0.16 kB │ gzip: 0.11 kB
107
+ ℹ dist/examples/learning-journey-ui-shared/dist/components/StreakCounter.js  0.11 kB │ gzip: 0.11 kB
108
+ ℹ dist/examples/learning-journey-ui-shared/dist/hooks/index.js  0.06 kB │ gzip: 0.07 kB
109
+ ℹ dist/examples/learning-journey-ui-shared/dist/docs/index.js  0.05 kB │ gzip: 0.07 kB
110
+ ℹ dist/example.d.ts  0.98 kB │ gzip: 0.41 kB
111
+ ℹ dist/index.d.ts  0.67 kB │ gzip: 0.24 kB
112
+ ℹ dist/components/StepChecklist.d.ts  0.61 kB │ gzip: 0.32 kB
113
+ ℹ dist/OnboardingMiniApp.d.ts  0.55 kB │ gzip: 0.30 kB
114
+ ℹ dist/components/JourneyMap.d.ts  0.47 kB │ gzip: 0.28 kB
115
+ ℹ dist/views/Overview.d.ts  0.41 kB │ gzip: 0.27 kB
116
+ ℹ dist/views/Progress.d.ts  0.34 kB │ gzip: 0.23 kB
117
+ ℹ dist/components/CodeSnippet.d.ts  0.34 kB │ gzip: 0.21 kB
118
+ ℹ dist/views/Steps.d.ts  0.32 kB │ gzip: 0.23 kB
119
+ ℹ dist/views/Timeline.d.ts  0.31 kB │ gzip: 0.22 kB
120
+ ℹ dist/views/index.d.ts  0.24 kB │ gzip: 0.12 kB
121
+ ℹ dist/components/index.d.ts  0.20 kB │ gzip: 0.11 kB
122
+ ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
123
+ ℹ dist/docs/learning-journey-ui-onboarding.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
124
+ ℹ 114 files, total: 322.73 kB
125
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/organisms/MarketingHeader.js
126
+ ╭─[ ../../libs/design-system/dist/components/organisms/MarketingHeader.js:19:22 ]
127
+ │
128
+ 19 │ import { Menu } from "lucide-react";
129
+  │ ───────┬──────
130
+  │ ╰──────── Module not found, treating it as an external dependency
131
+  │
132
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
133
+ ────╯
134
+
135
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/DataChips.js
136
+ ╭─[ ../../libs/design-system/dist/components/atoms/DataChips.js:4:41 ]
137
+ │
138
+ 4 │ import { Calendar, Clock, MapPin } from "lucide-react";
139
+  │ ───────┬──────
140
+  │ ╰──────── Module not found, treating it as an external dependency
141
+  │
142
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
143
+ ───╯
144
+
145
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/organisms/MarketingHeaderMobile.js
146
+ ╭─[ ../../libs/design-system/dist/components/organisms/MarketingHeaderMobile.js:12:22 ]
147
+ │
148
+ 12 │ import { Menu } from "lucide-react";
149
+  │ ───────┬──────
150
+  │ ╰──────── Module not found, treating it as an external dependency
151
+  │
152
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
153
+ ────╯
154
+
155
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/Button.js
156
+ ╭─[ ../../libs/design-system/dist/components/atoms/Button.js:4:25 ]
157
+ │
158
+ 4 │ import { Loader2 } from "lucide-react";
159
+  │ ───────┬──────
160
+  │ ╰──────── Module not found, treating it as an external dependency
161
+  │
162
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
163
+ ───╯
164
+
165
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/molecules/CommandSearchTrigger.js
166
+ ╭─[ ../../libs/design-system/dist/components/molecules/CommandSearchTrigger.js:8:28 ]
167
+ │
168
+ 8 │ import { SearchIcon } from "lucide-react";
169
+  │ ───────┬──────
170
+  │ ╰──────── Module not found, treating it as an external dependency
171
+  │
172
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
173
+ ───╯
174
+
175
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/ActionButtons.js
176
+ ╭─[ ../../libs/design-system/dist/components/atoms/ActionButtons.js:7:60 ]
177
+ │
178
+ 7 │ import { Edit, Eye, ToggleLeft, ToggleRight, Trash2 } from "lucide-react";
179
+  │ ───────┬──────
180
+  │ ╰──────── Module not found, treating it as an external dependency
181
+  │
182
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
183
+ ───╯
184
+
185
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/organisms/Header.js
186
+ ╭─[ ../../libs/design-system/dist/components/organisms/Header.js:14:22 ]
187
+ │
188
+ 14 │ import { Menu } from "lucide-react";
189
+  │ ───────┬──────
190
+  │ ╰──────── Module not found, treating it as an external dependency
191
+  │
192
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
193
+ ────╯
194
+
195
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/atoms/LoaderCircular.js
196
+ ╭─[ ../../libs/design-system/dist/components/atoms/LoaderCircular.js:5:25 ]
197
+ │
198
+ 5 │ import { Loader2 } from "lucide-react";
199
+  │ ───────┬──────
200
+  │ ╰──────── Module not found, treating it as an external dependency
201
+  │
202
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
203
+ ───╯
204
+
205
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/marketing/MarketingComparisonSection.js
206
+ ╭─[ ../../libs/design-system/dist/components/marketing/MarketingComparisonSection.js:6:29 ]
207
+ │
208
+ 6 │ import { CheckCircle } from "lucide-react";
209
+  │ ───────┬──────
210
+  │ ╰──────── Module not found, treating it as an external dependency
211
+  │
212
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
213
+ ───╯
214
+
215
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/navigation-menu.js
216
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/navigation-menu.js:5:33 ]
217
+ │
218
+ 5 │ import { ChevronDownIcon } from "lucide-react";
219
+  │ ───────┬──────
220
+  │ ╰──────── Module not found, treating it as an external dependency
221
+  │
222
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
223
+ ───╯
224
+
225
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../learning-journey-ui-shared/dist/libs/design-system/dist/components/atoms/Button.js
226
+ ╭─[ ../learning-journey-ui-shared/dist/libs/design-system/dist/components/atoms/Button.js:4:25 ]
227
+ │
228
+ 4 │ import { Loader2 } from "lucide-react";
229
+  │ ───────┬──────
230
+  │ ╰──────── Module not found, treating it as an external dependency
231
+  │
232
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
233
+ ───╯
234
+
235
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/sheet.js
236
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/sheet.js:6:23 ]
237
+ │
238
+ 6 │ import { XIcon } from "lucide-react";
239
+  │ ───────┬──────
240
+  │ ╰──────── Module not found, treating it as an external dependency
241
+  │
242
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
243
+ ───╯
244
+
245
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/checkbox.js
246
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/checkbox.js:6:27 ]
247
+ │
248
+ 6 │ import { CheckIcon } from "lucide-react";
249
+  │ ───────┬──────
250
+  │ ╰──────── Module not found, treating it as an external dependency
251
+  │
252
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
253
+ ───╯
254
+
255
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/components/molecules/LangSwitchDropdown.js
256
+ ╭─[ ../../libs/design-system/dist/components/molecules/LangSwitchDropdown.js:4:23 ]
257
+ │
258
+ 4 │ import { Globe } from "lucide-react";
259
+  │ ───────┬──────
260
+  │ ╰──────── Module not found, treating it as an external dependency
261
+  │
262
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
263
+ ───╯
264
+
265
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/select.js
266
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/select.js:6:59 ]
267
+ │
268
+ 6 │ import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react";
269
+  │ ───────┬──────
270
+  │ ╰──────── Module not found, treating it as an external dependency
271
+  │
272
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
273
+ ───╯
274
+
275
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/carousel.js
276
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/carousel.js:7:39 ]
277
+ │
278
+ 7 │ import { ArrowLeft, ArrowRight } from "lucide-react";
279
+  │ ───────┬──────
280
+  │ ╰──────── Module not found, treating it as an external dependency
281
+  │
282
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
283
+ ───╯
284
+
285
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/radio-group.js
286
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/radio-group.js:6:28 ]
287
+ │
288
+ 6 │ import { CircleIcon } from "lucide-react";
289
+  │ ───────┬──────
290
+  │ ╰──────── Module not found, treating it as an external dependency
291
+  │
292
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
293
+ ───╯
294
+
295
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/sidebar.js
296
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/sidebar.js:12:8 ]
297
+ │
298
+ 12 │ import "lucide-react";
299
+  │ ───────┬──────
300
+  │ ╰──────── Module not found, treating it as an external dependency
301
+  │
302
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
303
+ ────╯
304
+
305
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/breadcrumb.js
306
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/breadcrumb.js:5:46 ]
307
+ │
308
+ 5 │ import { ChevronRight, MoreHorizontal } from "lucide-react";
309
+  │ ───────┬──────
310
+  │ ╰──────── Module not found, treating it as an external dependency
311
+  │
312
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
313
+ ───╯
314
+
315
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/dialog.js
316
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/dialog.js:6:23 ]
317
+ │
318
+ 6 │ import { XIcon } from "lucide-react";
319
+  │ ───────┬──────
320
+  │ ╰──────── Module not found, treating it as an external dependency
321
+  │
322
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
323
+ ───╯
324
+
325
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/command.js
326
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/command.js:7:28 ]
327
+ │
328
+ 7 │ import { SearchIcon } from "lucide-react";
329
+  │ ───────┬──────
330
+  │ ╰──────── Module not found, treating it as an external dependency
331
+  │
332
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
333
+ ───╯
334
+
335
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/dropdown-menu.js
336
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/dropdown-menu.js:6:39 ]
337
+ │
338
+ 6 │ import { CheckIcon, CircleIcon } from "lucide-react";
339
+  │ ───────┬──────
340
+  │ ╰──────── Module not found, treating it as an external dependency
341
+  │
342
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
343
+ ───╯
344
+
345
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/pagination.js
346
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/pagination.js:5:59 ]
347
+ │
348
+ 5 │ import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react";
349
+  │ ───────┬──────
350
+  │ ╰──────── Module not found, treating it as an external dependency
351
+  │
352
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
353
+ ───╯
354
+
355
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/accordion.js
356
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/accordion.js:6:33 ]
357
+ │
358
+ 6 │ import { ChevronDownIcon } from "lucide-react";
359
+  │ ───────┬──────
360
+  │ ╰──────── Module not found, treating it as an external dependency
361
+  │
362
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
363
+ ───╯
364
+
365
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/organisms/ListPage/ListPage.js
366
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/organisms/ListPage/ListPage.js:9:58 ]
367
+ │
368
+ 9 │ import { AlertTriangle, Loader2, Plus, RefreshCcw } from "lucide-react";
369
+  │ ───────┬──────
370
+  │ ╰──────── Module not found, treating it as an external dependency
371
+  │
372
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
373
+ ───╯
374
+
375
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/Pagination/Pagination.js
376
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/Pagination/Pagination.js:5:72 ]
377
+ │
378
+ 5 │ import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from "lucide-react";
379
+  │ ───────┬──────
380
+  │ ╰──────── Module not found, treating it as an external dependency
381
+  │
382
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
383
+ ───╯
384
+
385
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js
386
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js:7:48 ]
387
+ │
388
+ 7 │ import { ChevronDown, ChevronUp, Filter } from "lucide-react";
389
+  │ ───────┬──────
390
+  │ ╰──────── Module not found, treating it as an external dependency
391
+  │
392
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
393
+ ───╯
394
+
395
+ [UNRESOLVED_IMPORT] Warning: Could not resolve 'lucide-react' in ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/SearchInput/SearchInput.js
396
+ ╭─[ ../../libs/design-system/dist/ui-kit-web/dist/ui/atoms/SearchInput/SearchInput.js:5:27 ]
397
+ │
398
+ 5 │ import { Search, X } from "lucide-react";
399
+  │ ───────┬──────
400
+  │ ╰──────── Module not found, treating it as an external dependency
401
+  │
402
+  │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
403
+ ───╯
404
+
405
+ ✔ Build complete in 5236ms
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @lssm/example.learning-journey-ui-onboarding
2
2
 
3
- ## 0.0.0-canary-20251217080011
3
+ ## 0.0.0-canary-20251217083314
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,12 +9,12 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - Updated dependencies [66a5dfd]
12
- - @lssm/example.learning-journey-platform-tour@0.0.0-canary-20251217080011
13
- - @lssm/example.learning-journey-studio-onboarding@0.0.0-canary-20251217080011
14
- - @lssm/example.learning-journey-ui-shared@0.0.0-canary-20251217080011
15
- - @lssm/lib.contracts@0.0.0-canary-20251217080011
16
- - @lssm/lib.design-system@0.0.0-canary-20251217080011
17
- - @lssm/lib.schema@0.0.0-canary-20251217080011
18
- - @lssm/lib.ui-kit-core@0.0.0-canary-20251217080011
19
- - @lssm/lib.ui-kit-web@0.0.0-canary-20251217080011
20
- - @lssm/module.learning-journey@0.0.0-canary-20251217080011
12
+ - @lssm/example.learning-journey-platform-tour@0.0.0-canary-20251217083314
13
+ - @lssm/example.learning-journey-studio-onboarding@0.0.0-canary-20251217083314
14
+ - @lssm/example.learning-journey-ui-shared@0.0.0-canary-20251217083314
15
+ - @lssm/lib.contracts@0.0.0-canary-20251217083314
16
+ - @lssm/lib.design-system@0.0.0-canary-20251217083314
17
+ - @lssm/lib.schema@0.0.0-canary-20251217083314
18
+ - @lssm/lib.ui-kit-core@0.0.0-canary-20251217083314
19
+ - @lssm/lib.ui-kit-web@0.0.0-canary-20251217083314
20
+ - @lssm/module.learning-journey@0.0.0-canary-20251217083314
@@ -0,0 +1,16 @@
1
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import { LearningMiniAppProps } from "@lssm/example.learning-journey-ui-shared";
3
+
4
+ //#region src/OnboardingMiniApp.d.ts
5
+ type OnboardingMiniAppProps = Omit<LearningMiniAppProps, 'progress'> & {
6
+ progress?: LearningMiniAppProps['progress'];
7
+ };
8
+ declare function OnboardingMiniApp({
9
+ track,
10
+ progress: externalProgress,
11
+ onStepComplete: externalOnStepComplete,
12
+ onViewChange,
13
+ initialView
14
+ }: OnboardingMiniAppProps): react_jsx_runtime0.JSX.Element;
15
+ //#endregion
16
+ export { OnboardingMiniApp };
@@ -0,0 +1,64 @@
1
+ 'use client';
2
+
3
+ import { Card, CardContent } from "./libs/ui-kit-web/dist/ui/card.js";
4
+ import { useLearningProgress } from "./examples/learning-journey-ui-shared/dist/hooks/useLearningProgress.js";
5
+ import { ViewTabs } from "./examples/learning-journey-ui-shared/dist/components/ViewTabs.js";
6
+ import "./examples/learning-journey-ui-shared/dist/index.js";
7
+ import { Overview } from "./views/Overview.js";
8
+ import { Steps } from "./views/Steps.js";
9
+ import { Progress as ProgressView } from "./views/Progress.js";
10
+ import { Timeline } from "./views/Timeline.js";
11
+ import { useCallback, useState } from "react";
12
+ import { jsx, jsxs } from "react/jsx-runtime";
13
+
14
+ //#region src/OnboardingMiniApp.tsx
15
+ function OnboardingMiniApp({ track, progress: externalProgress, onStepComplete: externalOnStepComplete, onViewChange, initialView = "overview" }) {
16
+ const [currentView, setCurrentView] = useState(initialView);
17
+ const { progress: internalProgress, completeStep: internalCompleteStep } = useLearningProgress(track);
18
+ const progress = externalProgress ?? internalProgress;
19
+ const handleViewChange = useCallback((view) => {
20
+ setCurrentView(view);
21
+ onViewChange?.(view);
22
+ }, [onViewChange]);
23
+ const handleStepComplete = useCallback((stepId) => {
24
+ if (externalOnStepComplete) externalOnStepComplete(stepId);
25
+ else internalCompleteStep(stepId);
26
+ }, [externalOnStepComplete, internalCompleteStep]);
27
+ const handleStartFromOverview = useCallback(() => {
28
+ setCurrentView("steps");
29
+ onViewChange?.("steps");
30
+ }, [onViewChange]);
31
+ const renderView = () => {
32
+ const viewProps = {
33
+ track,
34
+ progress,
35
+ onStepComplete: handleStepComplete
36
+ };
37
+ switch (currentView) {
38
+ case "overview": return /* @__PURE__ */ jsx(Overview, {
39
+ ...viewProps,
40
+ onStart: handleStartFromOverview
41
+ });
42
+ case "steps": return /* @__PURE__ */ jsx(Steps, { ...viewProps });
43
+ case "progress": return /* @__PURE__ */ jsx(ProgressView, { ...viewProps });
44
+ case "timeline": return /* @__PURE__ */ jsx(Timeline, { ...viewProps });
45
+ default: return /* @__PURE__ */ jsx(Overview, {
46
+ ...viewProps,
47
+ onStart: handleStartFromOverview
48
+ });
49
+ }
50
+ };
51
+ return /* @__PURE__ */ jsxs("div", {
52
+ className: "space-y-6",
53
+ children: [/* @__PURE__ */ jsx(Card, { children: /* @__PURE__ */ jsx(CardContent, {
54
+ className: "p-4",
55
+ children: /* @__PURE__ */ jsx(ViewTabs, {
56
+ currentView,
57
+ onViewChange: handleViewChange
58
+ })
59
+ }) }), renderView()]
60
+ });
61
+ }
62
+
63
+ //#endregion
64
+ export { OnboardingMiniApp };
@@ -0,0 +1,15 @@
1
+ import * as react_jsx_runtime5 from "react/jsx-runtime";
2
+
3
+ //#region src/components/CodeSnippet.d.ts
4
+ interface CodeSnippetProps {
5
+ code: string;
6
+ language?: string;
7
+ title?: string;
8
+ }
9
+ declare function CodeSnippet({
10
+ code,
11
+ language,
12
+ title
13
+ }: CodeSnippetProps): react_jsx_runtime5.JSX.Element;
14
+ //#endregion
15
+ export { CodeSnippet };