@tspro/web-music-score 1.1.0 → 3.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 (47) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +337 -204
  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-ZWFAOHYM.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-zASF7B1g.d.mts +24 -0
  18. package/dist/iife/index.global.js +221 -0
  19. package/dist/interface-CLb7xa7_.d.mts +1768 -0
  20. package/dist/interface-DXyXwLBB.d.ts +1768 -0
  21. package/dist/note-B5ZtlHc8.d.mts +99 -0
  22. package/dist/note-B5ZtlHc8.d.ts +99 -0
  23. package/dist/pieces/index.d.mts +15 -0
  24. package/dist/pieces/index.d.ts +15 -0
  25. package/dist/pieces/index.js +56 -0
  26. package/dist/pieces/index.mjs +29 -0
  27. package/dist/react-ui/index.d.mts +170 -0
  28. package/dist/react-ui/index.d.ts +170 -0
  29. package/dist/react-ui/index.js +624 -0
  30. package/dist/react-ui/index.mjs +582 -0
  31. package/dist/scale-B_2MZaT9.d.ts +87 -0
  32. package/dist/scale-C-YS5iVG.d.mts +87 -0
  33. package/dist/score/index.d.mts +43 -0
  34. package/dist/score/index.d.ts +43 -0
  35. package/dist/score/index.js +7753 -0
  36. package/dist/score/index.mjs +7669 -0
  37. package/dist/tempo-DoJd-UYT.d.ts +120 -0
  38. package/dist/tempo-TjQKn46X.d.mts +120 -0
  39. package/dist/theory/index.d.mts +48 -0
  40. package/dist/theory/index.d.ts +48 -0
  41. package/dist/theory/index.js +1783 -0
  42. package/dist/theory/index.mjs +1716 -0
  43. package/package.json +98 -55
  44. package/dist/index.cjs.js +0 -41053
  45. package/dist/index.d.ts +0 -1281
  46. package/dist/index.esm.mjs +0 -41044
  47. package/dist/index.umd.min.js +0 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.0] - 2025-08-31
4
+ Major update and brought some important changes.
5
+ ### ** Breaking Changes **
6
+ - Removed old way of creating scores using MDocument, MMeasure, etc. Use DocumentBuilder instead.
7
+ - Removed DocumentOptions. Replaced using functions addScoreConfiguration() and setMeasuresPerRow() in DocumentBuilder.
8
+ - Tie and slur removed from NoteOptions. Use addConnective() in DocumentBuilder.
9
+
10
+ ## Added
11
+ - Score configuration with multiple staves and tabs per row.
12
+ - Connective.Slide.
13
+ - Draw Connectives in tabs.
14
+
15
+ ## Changed
16
+ - Lots of undocumented fixes, changes and improvements.
17
+
18
+ ## [2.0.0] - 2025-07-28
19
+ Major update and brought many changes.
20
+ ### ** Breaking Changes **
21
+ - Use subpath modules. There is no main export.
22
+ - Refactored musical terms that were wrong (e.g. pitch => diatonicId, noteId => chromaticId).
23
+ - Score module stayed mostly same. Some changes (e.g. enum StaffKind => StaffPreset) but nothing major.
24
+ - Classical guitar audio was put into separate module (audio-cg) because it bundles over 1MB of audio
25
+ samples. Also improved default synthesizer audio.
26
+ - Numerous other unlisted changes/improvements/fixes.
27
+
3
28
  ## [1.1.0] - 2025-07-03
4
29
  ### Added
5
30
  - Preliminary support for rendering guitar tabs.