@tspro/web-music-score 5.4.0 → 5.4.1

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 (40) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/LICENSE +1 -1
  3. package/README.md +4 -4
  4. package/dist/audio/index.d.ts +1 -1
  5. package/dist/audio/index.js +1 -1
  6. package/dist/audio/index.mjs +3 -3
  7. package/dist/audio-cg/index.js +1 -1
  8. package/dist/audio-cg/index.mjs +3 -3
  9. package/dist/audio-synth/index.js +1 -1
  10. package/dist/audio-synth/index.mjs +3 -3
  11. package/dist/{chunk-QGMOI7AP.mjs → chunk-5I5KENEC.mjs} +2 -2
  12. package/dist/{chunk-ZWUBO5EW.mjs → chunk-6P4ECBUH.mjs} +3 -3
  13. package/dist/{chunk-MHDBTCVG.mjs → chunk-A5SMODAT.mjs} +3 -3
  14. package/dist/{chunk-AUT4C6TY.mjs → chunk-U2ACCEHX.mjs} +2 -2
  15. package/dist/core/index.js +2 -2
  16. package/dist/core/index.mjs +4 -4
  17. package/dist/{guitar-CarHGDAt.d.ts → guitar-CNOxM4ZK.d.ts} +1 -1
  18. package/dist/iife/audio-cg.global.js +1 -1
  19. package/dist/iife/index.global.js +11 -11
  20. package/dist/{music-objects-ONIuVUgs.d.mts → music-objects-DYMqx839.d.mts} +18 -17
  21. package/dist/{music-objects-3Esbz7ij.d.ts → music-objects-DumXKWJp.d.ts} +20 -19
  22. package/dist/{note-CJuq5aBy.d.ts → note-RVXvpfyV.d.ts} +1 -1
  23. package/dist/pieces/index.d.mts +1 -1
  24. package/dist/pieces/index.d.ts +3 -3
  25. package/dist/pieces/index.js +1 -1
  26. package/dist/pieces/index.mjs +2 -2
  27. package/dist/react-ui/index.d.mts +1 -1
  28. package/dist/react-ui/index.d.ts +5 -5
  29. package/dist/react-ui/index.js +1 -1
  30. package/dist/react-ui/index.mjs +2 -2
  31. package/dist/{scale-DulPFco_.d.ts → scale-CUYFBo-8.d.ts} +2 -2
  32. package/dist/score/index.d.mts +2 -2
  33. package/dist/score/index.d.ts +5 -5
  34. package/dist/score/index.js +162 -113
  35. package/dist/score/index.mjs +187 -138
  36. package/dist/{tempo-BnUjm25M.d.ts → tempo-DwuZsv2T.d.ts} +1 -1
  37. package/dist/theory/index.d.ts +6 -6
  38. package/dist/theory/index.js +1 -1
  39. package/dist/theory/index.mjs +3 -3
  40. package/package.json +1 -1
@@ -776,12 +776,12 @@ declare class ObjRhythmColumn extends MusicObject {
776
776
  getVoiceSymbol(voiceId: VoiceId): RhythmSymbol | undefined;
777
777
  getLyricsObject(verse: VerseNumber, line: ObjNotationLine, vpos: VerticalPos): ObjLyrics | undefined;
778
778
  addLyricsObject(lyricsObj: ObjLyrics): void;
779
- getMinWidth(): number;
780
779
  updateNoteDisplacements(): void;
781
780
  isEmpty(): boolean;
782
781
  getPlayerNotes(): ScorePlayerNote[];
783
782
  requestLayout(): void;
784
783
  layout(ctx: RenderContext, accState: AccidentalState): void;
784
+ layoutReserveSpace(ctx: RenderContext): void;
785
785
  layoutDone(): void;
786
786
  updateRect(): void;
787
787
  offset(dx: number, dy: number): void;
@@ -893,7 +893,6 @@ declare class ObjConnective extends MusicObject {
893
893
  declare class ObjMeasure extends MusicObject {
894
894
  readonly row: ObjScoreRow;
895
895
  private readonly options;
896
- static readonly MinFlexContentWidth = 10;
897
896
  private prevMeasure;
898
897
  private nextMeasure;
899
898
  private keySignature;
@@ -909,12 +908,9 @@ declare class ObjMeasure extends MusicObject {
909
908
  private barLineRight;
910
909
  private connectives;
911
910
  private beamGroups;
912
- private tabStringNotesWidth;
913
911
  private measureId;
912
+ private regions;
914
913
  private needLayout;
915
- private leftSolidAreaWidth;
916
- private minColumnsAreaWidth;
917
- private rightSolidAreaWidth;
918
914
  private voiceSymbols;
919
915
  private lastAddedRhythmColumn?;
920
916
  private lastAddedRhythmSymbol?;
@@ -998,10 +994,10 @@ declare class ObjMeasure extends MusicObject {
998
994
  getMeasureTicks(): number;
999
995
  getConsumedTicks(voiceId?: VoiceId): number;
1000
996
  getColumnsContentRect(): AnchoredRect;
1001
- getLeftSolidAreaWidth(): number;
1002
- getMinColumnsAreaWidth(): number;
1003
- getRightSolidAreaWidth(): number;
1004
- getSolidAreaWidth(): number;
997
+ getLeftSolidWidth(): number;
998
+ getMinColumnsWidth(): number;
999
+ getRightSolidWidth(): number;
1000
+ getTotalSolidWidth(): number;
1005
1001
  getMinWidth(): number;
1006
1002
  getStaffLineLeft(): number;
1007
1003
  getStaffLineRight(): number;
@@ -1088,6 +1084,15 @@ declare class ObjScoreRow extends MusicObject {
1088
1084
  draw(ctx: RenderContext): void;
1089
1085
  }
1090
1086
 
1087
+ declare class InstrumentGroupRegions {
1088
+ nameLeft: number;
1089
+ nameRight: number;
1090
+ braceLeft: number;
1091
+ braceRight: number;
1092
+ get left(): number;
1093
+ get right(): number;
1094
+ get width(): number;
1095
+ }
1091
1096
  declare class ObjDocument extends MusicObject {
1092
1097
  private needLayout;
1093
1098
  private ctx?;
@@ -1099,6 +1104,7 @@ declare class ObjDocument extends MusicObject {
1099
1104
  private newRowRequested;
1100
1105
  private allConnectiveProps;
1101
1106
  private staffGroups;
1107
+ private instrumentGroupRegions;
1102
1108
  private readonly mi;
1103
1109
  constructor();
1104
1110
  getMusicInterface(): MDocument;
@@ -1127,12 +1133,7 @@ declare class ObjDocument extends MusicObject {
1127
1133
  private forEachMeasure;
1128
1134
  resetMeasures(): void;
1129
1135
  updateCursorRect(cursorRect?: Rect): void;
1130
- getInstrumentGroupSize(ctx: RenderContext): {
1131
- nameLeft: number;
1132
- nameRight: number;
1133
- braceLeft: number;
1134
- braceRight: number;
1135
- };
1136
+ getInstrumentGroupRegions(ctx: RenderContext): InstrumentGroupRegions;
1136
1137
  requestLayout(): void;
1137
1138
  requestFullLayout(): void;
1138
1139
  layout(): void;
@@ -1392,7 +1393,7 @@ declare class LayoutGroup {
1392
1393
  readonly layoutGroupId: number;
1393
1394
  private readonly layoutObject;
1394
1395
  readonly rowAlign: boolean;
1395
- readonly widensColumn: boolean;
1396
+ readonly reserveSpace: boolean;
1396
1397
  readonly padding: number;
1397
1398
  constructor(layoutGroupId: number);
1398
1399
  getLayoutObjects(verticalPos: VerticalPos): Readonly<LayoutObjectWrapper[]>;
@@ -1,5 +1,5 @@
1
- import { N as Note, A as Accidental } from './note-CJuq5aBy.js';
2
- import { R as RhythmProps, N as NoteLength, i as NoteLengthStr, l as TupletRatio, d as Tempo, K as KeySignature, b as TimeSignature } from './tempo-BnUjm25M.js';
1
+ import { N as Note, A as Accidental } from './note-RVXvpfyV.js';
2
+ import { R as RhythmProps, N as NoteLength, i as NoteLengthStr, l as TupletRatio, d as Tempo, K as KeySignature, b as TimeSignature } from './tempo-DwuZsv2T.js';
3
3
  import { AnchoredRect, Rect, Vec } from '@tspro/ts-utils-lib';
4
4
 
5
5
  /** Staff preset values for score configuration. */
@@ -776,12 +776,12 @@ declare class ObjRhythmColumn extends MusicObject {
776
776
  getVoiceSymbol(voiceId: VoiceId): RhythmSymbol | undefined;
777
777
  getLyricsObject(verse: VerseNumber, line: ObjNotationLine, vpos: VerticalPos): ObjLyrics | undefined;
778
778
  addLyricsObject(lyricsObj: ObjLyrics): void;
779
- getMinWidth(): number;
780
779
  updateNoteDisplacements(): void;
781
780
  isEmpty(): boolean;
782
781
  getPlayerNotes(): ScorePlayerNote[];
783
782
  requestLayout(): void;
784
783
  layout(ctx: RenderContext, accState: AccidentalState): void;
784
+ layoutReserveSpace(ctx: RenderContext): void;
785
785
  layoutDone(): void;
786
786
  updateRect(): void;
787
787
  offset(dx: number, dy: number): void;
@@ -893,7 +893,6 @@ declare class ObjConnective extends MusicObject {
893
893
  declare class ObjMeasure extends MusicObject {
894
894
  readonly row: ObjScoreRow;
895
895
  private readonly options;
896
- static readonly MinFlexContentWidth = 10;
897
896
  private prevMeasure;
898
897
  private nextMeasure;
899
898
  private keySignature;
@@ -909,12 +908,9 @@ declare class ObjMeasure extends MusicObject {
909
908
  private barLineRight;
910
909
  private connectives;
911
910
  private beamGroups;
912
- private tabStringNotesWidth;
913
911
  private measureId;
912
+ private regions;
914
913
  private needLayout;
915
- private leftSolidAreaWidth;
916
- private minColumnsAreaWidth;
917
- private rightSolidAreaWidth;
918
914
  private voiceSymbols;
919
915
  private lastAddedRhythmColumn?;
920
916
  private lastAddedRhythmSymbol?;
@@ -998,10 +994,10 @@ declare class ObjMeasure extends MusicObject {
998
994
  getMeasureTicks(): number;
999
995
  getConsumedTicks(voiceId?: VoiceId): number;
1000
996
  getColumnsContentRect(): AnchoredRect;
1001
- getLeftSolidAreaWidth(): number;
1002
- getMinColumnsAreaWidth(): number;
1003
- getRightSolidAreaWidth(): number;
1004
- getSolidAreaWidth(): number;
997
+ getLeftSolidWidth(): number;
998
+ getMinColumnsWidth(): number;
999
+ getRightSolidWidth(): number;
1000
+ getTotalSolidWidth(): number;
1005
1001
  getMinWidth(): number;
1006
1002
  getStaffLineLeft(): number;
1007
1003
  getStaffLineRight(): number;
@@ -1088,6 +1084,15 @@ declare class ObjScoreRow extends MusicObject {
1088
1084
  draw(ctx: RenderContext): void;
1089
1085
  }
1090
1086
 
1087
+ declare class InstrumentGroupRegions {
1088
+ nameLeft: number;
1089
+ nameRight: number;
1090
+ braceLeft: number;
1091
+ braceRight: number;
1092
+ get left(): number;
1093
+ get right(): number;
1094
+ get width(): number;
1095
+ }
1091
1096
  declare class ObjDocument extends MusicObject {
1092
1097
  private needLayout;
1093
1098
  private ctx?;
@@ -1099,6 +1104,7 @@ declare class ObjDocument extends MusicObject {
1099
1104
  private newRowRequested;
1100
1105
  private allConnectiveProps;
1101
1106
  private staffGroups;
1107
+ private instrumentGroupRegions;
1102
1108
  private readonly mi;
1103
1109
  constructor();
1104
1110
  getMusicInterface(): MDocument;
@@ -1127,12 +1133,7 @@ declare class ObjDocument extends MusicObject {
1127
1133
  private forEachMeasure;
1128
1134
  resetMeasures(): void;
1129
1135
  updateCursorRect(cursorRect?: Rect): void;
1130
- getInstrumentGroupSize(ctx: RenderContext): {
1131
- nameLeft: number;
1132
- nameRight: number;
1133
- braceLeft: number;
1134
- braceRight: number;
1135
- };
1136
+ getInstrumentGroupRegions(ctx: RenderContext): InstrumentGroupRegions;
1136
1137
  requestLayout(): void;
1137
1138
  requestFullLayout(): void;
1138
1139
  layout(): void;
@@ -1392,7 +1393,7 @@ declare class LayoutGroup {
1392
1393
  readonly layoutGroupId: number;
1393
1394
  private readonly layoutObject;
1394
1395
  readonly rowAlign: boolean;
1395
- readonly widensColumn: boolean;
1396
+ readonly reserveSpace: boolean;
1396
1397
  readonly padding: number;
1397
1398
  constructor(layoutGroupId: number);
1398
1399
  getLayoutObjects(verticalPos: VerticalPos): Readonly<LayoutObjectWrapper[]>;
@@ -300,7 +300,7 @@ declare class Note {
300
300
  * @param b - Note b.
301
301
  * @returns - -1, 0 or 1.
302
302
  */
303
- static compareFunc(a: Note, b: Note): 1 | -1 | 0;
303
+ static compareFunc(a: Note, b: Note): 1 | 0 | -1;
304
304
  }
305
305
 
306
306
  export { type Accidental as A, DefaultPitchNotation as D, GuitarNoteLabel as G, Note as N, type ParsedNote as P, SymbolSet as S, type NoteLetter as a, PitchNotation as b, PitchNotationList as c, DefaultGuitarNoteLabel as d, GuitarNoteLabelList as e, validateGuitarNoteLabel as f, getPitchNotationName as g, validatePitchNotation as v };
@@ -1,4 +1,4 @@
1
- import { M as MDocument } from '../music-objects-ONIuVUgs.mjs';
1
+ import { M as MDocument } from '../music-objects-DYMqx839.mjs';
2
2
  import '../note-RVXvpfyV.mjs';
3
3
  import '../tempo-BlCGZuYg.mjs';
4
4
  import '@tspro/ts-utils-lib';
@@ -1,6 +1,6 @@
1
- import { M as MDocument } from '../music-objects-3Esbz7ij.js';
2
- import '../note-CJuq5aBy.js';
3
- import '../tempo-BnUjm25M.js';
1
+ import { M as MDocument } from '../music-objects-DumXKWJp.js';
2
+ import '../note-RVXvpfyV.js';
3
+ import '../tempo-DwuZsv2T.js';
4
4
  import '@tspro/ts-utils-lib';
5
5
 
6
6
  /**
@@ -1,4 +1,4 @@
1
- /* WebMusicScore v5.4.0 | (c) 2023 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
1
+ /* WebMusicScore v5.4.1 | (c) 2023-2025 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -1,5 +1,5 @@
1
- /* WebMusicScore v5.4.0 | (c) 2023 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
2
- import "../chunk-AUT4C6TY.mjs";
1
+ /* WebMusicScore v5.4.1 | (c) 2023-2025 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
2
+ import "../chunk-U2ACCEHX.mjs";
3
3
 
4
4
  // src/pieces/canon-pachelbel.ts
5
5
  import { DocumentBuilder } from "@tspro/web-music-score/score";
@@ -4,7 +4,7 @@ import { c as Scale, S as ScaleType } from '../scale-C8gHC448.mjs';
4
4
  import { b as PitchNotation, G as GuitarNoteLabel, N as Note } from '../note-RVXvpfyV.mjs';
5
5
  import { H as Handedness } from '../guitar-DXlB-9vK.mjs';
6
6
  import { Rect } from '@tspro/ts-utils-lib';
7
- import { M as MDocument, o as ScoreEventListener, s as MPlaybackButtons } from '../music-objects-ONIuVUgs.mjs';
7
+ import { M as MDocument, o as ScoreEventListener, s as MPlaybackButtons } from '../music-objects-DYMqx839.mjs';
8
8
  import '../tempo-BlCGZuYg.mjs';
9
9
 
10
10
  interface CircleOfFifthsProps {
@@ -1,11 +1,11 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
- import { c as Scale, S as ScaleType } from '../scale-DulPFco_.js';
4
- import { b as PitchNotation, G as GuitarNoteLabel, N as Note } from '../note-CJuq5aBy.js';
5
- import { H as Handedness } from '../guitar-CarHGDAt.js';
3
+ import { c as Scale, S as ScaleType } from '../scale-CUYFBo-8.js';
4
+ import { b as PitchNotation, G as GuitarNoteLabel, N as Note } from '../note-RVXvpfyV.js';
5
+ import { H as Handedness } from '../guitar-CNOxM4ZK.js';
6
6
  import { Rect } from '@tspro/ts-utils-lib';
7
- import { M as MDocument, o as ScoreEventListener, s as MPlaybackButtons } from '../music-objects-3Esbz7ij.js';
8
- import '../tempo-BnUjm25M.js';
7
+ import { M as MDocument, o as ScoreEventListener, s as MPlaybackButtons } from '../music-objects-DumXKWJp.js';
8
+ import '../tempo-DwuZsv2T.js';
9
9
 
10
10
  interface CircleOfFifthsProps {
11
11
  style?: React.CSSProperties;
@@ -1,4 +1,4 @@
1
- /* WebMusicScore v5.4.0 | (c) 2023 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
1
+ /* WebMusicScore v5.4.1 | (c) 2023-2025 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
2
2
  "use strict";
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
@@ -1,7 +1,7 @@
1
- /* WebMusicScore v5.4.0 | (c) 2023 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
1
+ /* WebMusicScore v5.4.1 | (c) 2023-2025 PahkaSoft | MIT License | Includes: Tone.js (MIT License) */
2
2
  import {
3
3
  __publicField
4
- } from "../chunk-AUT4C6TY.mjs";
4
+ } from "../chunk-U2ACCEHX.mjs";
5
5
 
6
6
  // src/react-ui/circle-of-fifths.tsx
7
7
  import * as React from "react";
@@ -1,5 +1,5 @@
1
- import { N as Note, S as SymbolSet } from './note-CJuq5aBy.js';
2
- import { K as KeySignature } from './tempo-BnUjm25M.js';
1
+ import { N as Note, S as SymbolSet } from './note-RVXvpfyV.js';
2
+ import { K as KeySignature } from './tempo-DwuZsv2T.js';
3
3
 
4
4
  /** Interval direction type. */
5
5
  type IntervalDirection = "Unison" | "Ascending" | "Descending";
@@ -1,5 +1,5 @@
1
- import { N as NoteOptions, R as RestOptions, S as StaffPreset, a as ScoreConfiguration, M as MDocument, b as MeasureOptions, V as VoiceId, T as TupletOptions, c as VerseNumber, L as LyricsOptions, d as StaffTabOrGroups, F as Fermata, e as Navigation, A as AnnotationText, f as Annotation, g as Label, C as Connective, h as TieType, i as NoteAnchor, j as VerticalPosition } from '../music-objects-ONIuVUgs.mjs';
2
- export { ak as Arpeggio, a6 as BaseConfig, a5 as Clef, ao as DynamicsAnnotation, am as LyricsAlign, an as LyricsHyphen, u as MAccidental, w as MArpeggio, I as MBarLineLeft, H as MBarLineRight, x as MBeamGroup, v as MConnective, z as MEnding, a4 as MExtensionLine, B as MFermata, D as MHeader, E as MImage, a3 as MLyrics, G as MMeasure, K as MNoteGroup, s as MPlaybackButtons, p as MPlayer, q as MRenderContext, r as MRenderer, Q as MRest, W as MRhythmColumn, X as MScoreRow, a1 as MSpecialText, Y as MStaff, y as MStaffBeamGroup, O as MStaffNoteGroup, U as MStaffRest, _ as MStaffSignature, J as MStaffTabBarLine, Z as MTab, P as MTabNoteGroup, a0 as MTabRhythm, $ as MTabSignature, a2 as MText, t as MusicInterface, aq as PlayState, ar as PlayStateChangeListener, l as ScoreEvent, o as ScoreEventListener, k as ScoreEventType, n as ScoreObjectEvent, m as ScoreStaffPosEvent, a7 as StaffConfig, al as StaffTabOrGroup, aj as Stem, ac as StringNumber, a8 as TabConfig, ap as TempoAnnotation, ad as getStringNumbers, ag as getVerseNumbers, a9 as getVoiceIds, ae as isStringNumber, ah as isVerseNumber, aa as isVoiceId, af as validateStringNumber, ai as validateVerseNumber, ab as validateVoiceId } from '../music-objects-ONIuVUgs.mjs';
1
+ import { N as NoteOptions, R as RestOptions, S as StaffPreset, a as ScoreConfiguration, M as MDocument, b as MeasureOptions, V as VoiceId, T as TupletOptions, c as VerseNumber, L as LyricsOptions, d as StaffTabOrGroups, F as Fermata, e as Navigation, A as AnnotationText, f as Annotation, g as Label, C as Connective, h as TieType, i as NoteAnchor, j as VerticalPosition } from '../music-objects-DYMqx839.mjs';
2
+ export { ak as Arpeggio, a6 as BaseConfig, a5 as Clef, ao as DynamicsAnnotation, am as LyricsAlign, an as LyricsHyphen, u as MAccidental, w as MArpeggio, I as MBarLineLeft, H as MBarLineRight, x as MBeamGroup, v as MConnective, z as MEnding, a4 as MExtensionLine, B as MFermata, D as MHeader, E as MImage, a3 as MLyrics, G as MMeasure, K as MNoteGroup, s as MPlaybackButtons, p as MPlayer, q as MRenderContext, r as MRenderer, Q as MRest, W as MRhythmColumn, X as MScoreRow, a1 as MSpecialText, Y as MStaff, y as MStaffBeamGroup, O as MStaffNoteGroup, U as MStaffRest, _ as MStaffSignature, J as MStaffTabBarLine, Z as MTab, P as MTabNoteGroup, a0 as MTabRhythm, $ as MTabSignature, a2 as MText, t as MusicInterface, aq as PlayState, ar as PlayStateChangeListener, l as ScoreEvent, o as ScoreEventListener, k as ScoreEventType, n as ScoreObjectEvent, m as ScoreStaffPosEvent, a7 as StaffConfig, al as StaffTabOrGroup, aj as Stem, ac as StringNumber, a8 as TabConfig, ap as TempoAnnotation, ad as getStringNumbers, ag as getVerseNumbers, a9 as getVoiceIds, ae as isStringNumber, ah as isVerseNumber, aa as isVoiceId, af as validateStringNumber, ai as validateVerseNumber, ab as validateVoiceId } from '../music-objects-DYMqx839.mjs';
3
3
  import { N as Note } from '../note-RVXvpfyV.mjs';
4
4
  import { S as ScaleType, c as Scale } from '../scale-C8gHC448.mjs';
5
5
  import { N as NoteLength, i as NoteLengthStr, K as KeySignature, b as TimeSignature, T as TimeSignatures, B as BeamGrouping, l as TupletRatio } from '../tempo-BlCGZuYg.mjs';
@@ -1,8 +1,8 @@
1
- import { N as NoteOptions, R as RestOptions, S as StaffPreset, a as ScoreConfiguration, M as MDocument, b as MeasureOptions, V as VoiceId, T as TupletOptions, c as VerseNumber, L as LyricsOptions, d as StaffTabOrGroups, F as Fermata, e as Navigation, A as AnnotationText, f as Annotation, g as Label, C as Connective, h as TieType, i as NoteAnchor, j as VerticalPosition } from '../music-objects-3Esbz7ij.js';
2
- export { ak as Arpeggio, a6 as BaseConfig, a5 as Clef, ao as DynamicsAnnotation, am as LyricsAlign, an as LyricsHyphen, u as MAccidental, w as MArpeggio, I as MBarLineLeft, H as MBarLineRight, x as MBeamGroup, v as MConnective, z as MEnding, a4 as MExtensionLine, B as MFermata, D as MHeader, E as MImage, a3 as MLyrics, G as MMeasure, K as MNoteGroup, s as MPlaybackButtons, p as MPlayer, q as MRenderContext, r as MRenderer, Q as MRest, W as MRhythmColumn, X as MScoreRow, a1 as MSpecialText, Y as MStaff, y as MStaffBeamGroup, O as MStaffNoteGroup, U as MStaffRest, _ as MStaffSignature, J as MStaffTabBarLine, Z as MTab, P as MTabNoteGroup, a0 as MTabRhythm, $ as MTabSignature, a2 as MText, t as MusicInterface, aq as PlayState, ar as PlayStateChangeListener, l as ScoreEvent, o as ScoreEventListener, k as ScoreEventType, n as ScoreObjectEvent, m as ScoreStaffPosEvent, a7 as StaffConfig, al as StaffTabOrGroup, aj as Stem, ac as StringNumber, a8 as TabConfig, ap as TempoAnnotation, ad as getStringNumbers, ag as getVerseNumbers, a9 as getVoiceIds, ae as isStringNumber, ah as isVerseNumber, aa as isVoiceId, af as validateStringNumber, ai as validateVerseNumber, ab as validateVoiceId } from '../music-objects-3Esbz7ij.js';
3
- import { N as Note } from '../note-CJuq5aBy.js';
4
- import { S as ScaleType, c as Scale } from '../scale-DulPFco_.js';
5
- import { N as NoteLength, i as NoteLengthStr, K as KeySignature, b as TimeSignature, T as TimeSignatures, B as BeamGrouping, l as TupletRatio } from '../tempo-BnUjm25M.js';
1
+ import { N as NoteOptions, R as RestOptions, S as StaffPreset, a as ScoreConfiguration, M as MDocument, b as MeasureOptions, V as VoiceId, T as TupletOptions, c as VerseNumber, L as LyricsOptions, d as StaffTabOrGroups, F as Fermata, e as Navigation, A as AnnotationText, f as Annotation, g as Label, C as Connective, h as TieType, i as NoteAnchor, j as VerticalPosition } from '../music-objects-DumXKWJp.js';
2
+ export { ak as Arpeggio, a6 as BaseConfig, a5 as Clef, ao as DynamicsAnnotation, am as LyricsAlign, an as LyricsHyphen, u as MAccidental, w as MArpeggio, I as MBarLineLeft, H as MBarLineRight, x as MBeamGroup, v as MConnective, z as MEnding, a4 as MExtensionLine, B as MFermata, D as MHeader, E as MImage, a3 as MLyrics, G as MMeasure, K as MNoteGroup, s as MPlaybackButtons, p as MPlayer, q as MRenderContext, r as MRenderer, Q as MRest, W as MRhythmColumn, X as MScoreRow, a1 as MSpecialText, Y as MStaff, y as MStaffBeamGroup, O as MStaffNoteGroup, U as MStaffRest, _ as MStaffSignature, J as MStaffTabBarLine, Z as MTab, P as MTabNoteGroup, a0 as MTabRhythm, $ as MTabSignature, a2 as MText, t as MusicInterface, aq as PlayState, ar as PlayStateChangeListener, l as ScoreEvent, o as ScoreEventListener, k as ScoreEventType, n as ScoreObjectEvent, m as ScoreStaffPosEvent, a7 as StaffConfig, al as StaffTabOrGroup, aj as Stem, ac as StringNumber, a8 as TabConfig, ap as TempoAnnotation, ad as getStringNumbers, ag as getVerseNumbers, a9 as getVoiceIds, ae as isStringNumber, ah as isVerseNumber, aa as isVoiceId, af as validateStringNumber, ai as validateVerseNumber, ab as validateVoiceId } from '../music-objects-DumXKWJp.js';
3
+ import { N as Note } from '../note-RVXvpfyV.js';
4
+ import { S as ScaleType, c as Scale } from '../scale-CUYFBo-8.js';
5
+ import { N as NoteLength, i as NoteLengthStr, K as KeySignature, b as TimeSignature, T as TimeSignatures, B as BeamGrouping, l as TupletRatio } from '../tempo-DwuZsv2T.js';
6
6
  import '@tspro/ts-utils-lib';
7
7
 
8
8
  /**