@tspro/web-music-score 1.0.0 → 2.0.0

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 (43) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +271 -224
  3. package/dist/audio/index.d.mts +22 -0
  4. package/dist/audio/index.d.ts +22 -0
  5. package/dist/audio/index.js +147 -0
  6. package/dist/audio/index.mjs +109 -0
  7. package/dist/audio-cg/index.d.mts +4 -0
  8. package/dist/audio-cg/index.d.ts +4 -0
  9. package/dist/audio-cg/index.js +124 -0
  10. package/dist/audio-cg/index.mjs +91 -0
  11. package/dist/chunk-2EPWQZKJ.mjs +9 -0
  12. package/dist/core/index.d.mts +21 -0
  13. package/dist/core/index.d.ts +21 -0
  14. package/dist/core/index.js +72 -0
  15. package/dist/core/index.mjs +45 -0
  16. package/dist/guitar-BIFwFT31.d.ts +24 -0
  17. package/dist/guitar-kbJYu3Am.d.mts +24 -0
  18. package/dist/iife/index.global.js +222 -0
  19. package/dist/note-B5ZtlHc8.d.ts +99 -0
  20. package/dist/note-CraqEy8x.d.mts +99 -0
  21. package/dist/pieces/index.d.mts +15 -0
  22. package/dist/pieces/index.d.ts +15 -0
  23. package/dist/pieces/index.js +104 -0
  24. package/dist/pieces/index.mjs +77 -0
  25. package/dist/react-ui/index.d.mts +169 -0
  26. package/dist/react-ui/index.d.ts +169 -0
  27. package/dist/react-ui/index.js +624 -0
  28. package/dist/react-ui/index.mjs +582 -0
  29. package/dist/score/index.d.mts +1558 -0
  30. package/dist/score/index.d.ts +1558 -0
  31. package/dist/score/index.js +6937 -0
  32. package/dist/score/index.mjs +6863 -0
  33. package/dist/tempo--588tdcv.d.ts +203 -0
  34. package/dist/tempo-BEJBHZ5I.d.mts +203 -0
  35. package/dist/theory/index.d.mts +47 -0
  36. package/dist/theory/index.d.ts +47 -0
  37. package/dist/theory/index.js +1783 -0
  38. package/dist/theory/index.mjs +1716 -0
  39. package/package.json +99 -56
  40. package/dist/index.cjs.js +0 -40708
  41. package/dist/index.d.ts +0 -1258
  42. package/dist/index.esm.mjs +0 -40699
  43. package/dist/index.umd.min.js +0 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.0] - 2025-07-28
4
+ Major update and brought many changes.
5
+ ### ** Breaking Changes **
6
+ - Use subpath modules. There is no main export.
7
+ - Refactored musical terms that were wrong (e.g. pitch => diatonicId, noteId => chromaticId).
8
+ - Score module stayed mostly same. Some changes (e.g. enum StaffKind => StaffPreset) but nothing major.
9
+ - Classical guitar audio was put into separate module (audio-cg) because it bundles over 1MB of audio
10
+ samples. Also improved default synthesizer audio.
11
+ - Numerous other unlisted changes/improvements/fixes.
12
+
13
+ ## [1.1.0] - 2025-07-03
14
+ ### Added
15
+ - Preliminary support for rendering guitar tabs.
16
+
17
+ ### Fixed
18
+ - Ties/slurs were created multiple times.
19
+ - Beams in first measure (upbeat) were not created correctly.
20
+ - Quite much refactoring for better code.
21
+
3
22
  ## [1.0.0] - 2025-07-03
4
23
  ### Added
5
24
  - First release.