@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.
- package/CHANGELOG.md +25 -0
- package/README.md +337 -204
- package/dist/audio/index.d.mts +22 -0
- package/dist/audio/index.d.ts +22 -0
- package/dist/audio/index.js +147 -0
- package/dist/audio/index.mjs +109 -0
- package/dist/audio-cg/index.d.mts +4 -0
- package/dist/audio-cg/index.d.ts +4 -0
- package/dist/audio-cg/index.js +124 -0
- package/dist/audio-cg/index.mjs +91 -0
- package/dist/chunk-ZWFAOHYM.mjs +9 -0
- package/dist/core/index.d.mts +21 -0
- package/dist/core/index.d.ts +21 -0
- package/dist/core/index.js +72 -0
- package/dist/core/index.mjs +45 -0
- package/dist/guitar-BIFwFT31.d.ts +24 -0
- package/dist/guitar-zASF7B1g.d.mts +24 -0
- package/dist/iife/index.global.js +221 -0
- package/dist/interface-CLb7xa7_.d.mts +1768 -0
- package/dist/interface-DXyXwLBB.d.ts +1768 -0
- package/dist/note-B5ZtlHc8.d.mts +99 -0
- package/dist/note-B5ZtlHc8.d.ts +99 -0
- package/dist/pieces/index.d.mts +15 -0
- package/dist/pieces/index.d.ts +15 -0
- package/dist/pieces/index.js +56 -0
- package/dist/pieces/index.mjs +29 -0
- package/dist/react-ui/index.d.mts +170 -0
- package/dist/react-ui/index.d.ts +170 -0
- package/dist/react-ui/index.js +624 -0
- package/dist/react-ui/index.mjs +582 -0
- package/dist/scale-B_2MZaT9.d.ts +87 -0
- package/dist/scale-C-YS5iVG.d.mts +87 -0
- package/dist/score/index.d.mts +43 -0
- package/dist/score/index.d.ts +43 -0
- package/dist/score/index.js +7753 -0
- package/dist/score/index.mjs +7669 -0
- package/dist/tempo-DoJd-UYT.d.ts +120 -0
- package/dist/tempo-TjQKn46X.d.mts +120 -0
- package/dist/theory/index.d.mts +48 -0
- package/dist/theory/index.d.ts +48 -0
- package/dist/theory/index.js +1783 -0
- package/dist/theory/index.mjs +1716 -0
- package/package.json +98 -55
- package/dist/index.cjs.js +0 -41053
- package/dist/index.d.ts +0 -1281
- package/dist/index.esm.mjs +0 -41044
- 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.
|