@contractspec/example.learning-journey-ui-coaching 3.7.6 → 3.7.7

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 (56) hide show
  1. package/.turbo/turbo-build.log +3 -3
  2. package/AGENTS.md +50 -25
  3. package/README.md +63 -20
  4. package/dist/CoachingMiniApp.js +178 -178
  5. package/dist/browser/CoachingMiniApp.js +178 -178
  6. package/dist/browser/components/EngagementMeter.js +2 -2
  7. package/dist/browser/components/TipCard.js +3 -3
  8. package/dist/browser/components/TipFeed.js +6 -6
  9. package/dist/browser/components/index.js +11 -11
  10. package/dist/browser/index.js +179 -178
  11. package/dist/browser/views/Overview.js +16 -16
  12. package/dist/browser/views/Progress.js +10 -10
  13. package/dist/browser/views/Steps.js +6 -6
  14. package/dist/browser/views/Timeline.js +9 -9
  15. package/dist/browser/views/index.js +174 -174
  16. package/dist/components/EngagementMeter.js +2 -2
  17. package/dist/components/TipCard.js +3 -3
  18. package/dist/components/TipFeed.js +6 -6
  19. package/dist/components/index.d.ts +1 -1
  20. package/dist/components/index.js +11 -11
  21. package/dist/index.d.ts +3 -3
  22. package/dist/index.js +179 -178
  23. package/dist/node/CoachingMiniApp.js +178 -178
  24. package/dist/node/components/EngagementMeter.js +2 -2
  25. package/dist/node/components/TipCard.js +3 -3
  26. package/dist/node/components/TipFeed.js +6 -6
  27. package/dist/node/components/index.js +11 -11
  28. package/dist/node/index.js +179 -178
  29. package/dist/node/views/Overview.js +16 -16
  30. package/dist/node/views/Progress.js +10 -10
  31. package/dist/node/views/Steps.js +6 -6
  32. package/dist/node/views/Timeline.js +9 -9
  33. package/dist/node/views/index.js +174 -174
  34. package/dist/views/Overview.js +16 -16
  35. package/dist/views/Progress.js +10 -10
  36. package/dist/views/Steps.js +6 -6
  37. package/dist/views/Timeline.js +9 -9
  38. package/dist/views/index.d.ts +1 -1
  39. package/dist/views/index.js +174 -174
  40. package/package.json +10 -10
  41. package/src/CoachingMiniApp.tsx +70 -70
  42. package/src/components/EngagementMeter.tsx +82 -82
  43. package/src/components/TipCard.tsx +81 -81
  44. package/src/components/TipFeed.tsx +80 -80
  45. package/src/components/index.ts +1 -1
  46. package/src/docs/learning-journey-ui-coaching.docblock.ts +10 -10
  47. package/src/example.ts +25 -25
  48. package/src/index.ts +4 -6
  49. package/src/learning-journey-ui-coaching.feature.ts +12 -12
  50. package/src/views/Overview.tsx +136 -136
  51. package/src/views/Progress.tsx +146 -146
  52. package/src/views/Steps.tsx +57 -57
  53. package/src/views/Timeline.tsx +101 -101
  54. package/src/views/index.ts +1 -1
  55. package/tsconfig.json +7 -8
  56. package/tsdown.config.js +7 -13
package/tsconfig.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
- "extends": "@contractspec/tool.typescript/react-library.json",
3
- "include": ["src"],
4
- "exclude": ["node_modules"],
5
- "compilerOptions": {
6
- "rootDir": "src",
7
- "outDir": "dist"
8
- }
2
+ "extends": "@contractspec/tool.typescript/react-library.json",
3
+ "include": ["src"],
4
+ "exclude": ["node_modules"],
5
+ "compilerOptions": {
6
+ "rootDir": "src",
7
+ "outDir": "dist"
8
+ }
9
9
  }
10
-
package/tsdown.config.js CHANGED
@@ -1,16 +1,10 @@
1
- import { defineConfig, moduleLibrary, withDevExports } from '@contractspec/tool.bun';
1
+ import {
2
+ defineConfig,
3
+ moduleLibrary,
4
+ withDevExports,
5
+ } from '@contractspec/tool.bun';
2
6
 
3
7
  export default defineConfig(() => ({
4
- ...moduleLibrary,
5
- ...withDevExports,
8
+ ...moduleLibrary,
9
+ ...withDevExports,
6
10
  }));
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-