musicxml-io 0.8.0 → 0.8.2

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.
@@ -0,0 +1,510 @@
1
+ import {
2
+ exportMidi,
3
+ exportMidiWithTimingMap,
4
+ isCompressed,
5
+ parse,
6
+ parseAbc,
7
+ parseAuto,
8
+ parseCompressed,
9
+ serialize,
10
+ serializeAbc,
11
+ serializeCompressed
12
+ } from "./chunk-53J57HX6.mjs";
13
+ import {
14
+ getAllPartInfos,
15
+ getDirectionOfKind,
16
+ getDirectionsOfKind,
17
+ getPartAbbreviation,
18
+ getPartInfo,
19
+ getPartName,
20
+ getPartNameMap,
21
+ getSoundDamperPedal,
22
+ getSoundDynamics,
23
+ getSoundSoftPedal,
24
+ getSoundSostenutoPedal,
25
+ getSoundTempo,
26
+ hasBeam,
27
+ hasDirectionOfKind,
28
+ hasLyrics,
29
+ hasNotations,
30
+ hasTie,
31
+ hasTieStart,
32
+ hasTieStop,
33
+ hasTuplet,
34
+ isChordNote,
35
+ isCueNote,
36
+ isGraceNote,
37
+ isPartInfo,
38
+ isPitchedNote,
39
+ isRest,
40
+ isUnpitchedNote
41
+ } from "./chunk-R6JMBTUB.mjs";
42
+ import {
43
+ ValidationException,
44
+ addArticulation,
45
+ addBeam,
46
+ addBowing,
47
+ addBreathMark,
48
+ addCaesura,
49
+ addChord,
50
+ addChordNote,
51
+ addChordNoteChecked,
52
+ addChordSymbol,
53
+ addCoda,
54
+ addDaCapo,
55
+ addDalSegno,
56
+ addDynamics,
57
+ addEnding,
58
+ addFermata,
59
+ addFine,
60
+ addFingering,
61
+ addGraceNote,
62
+ addHarmony,
63
+ addLyric,
64
+ addNote,
65
+ addNoteChecked,
66
+ addOctaveShift,
67
+ addOrnament,
68
+ addPart,
69
+ addPedal,
70
+ addRehearsalMark,
71
+ addRepeat,
72
+ addRepeatBarline,
73
+ addSegno,
74
+ addSlur,
75
+ addStringNumber,
76
+ addTempo,
77
+ addText,
78
+ addTextDirection,
79
+ addTie,
80
+ addToCoda,
81
+ addVoice,
82
+ addWedge,
83
+ assertMeasureValid,
84
+ assertValid,
85
+ autoBeam,
86
+ changeBarline,
87
+ changeClef,
88
+ changeKey,
89
+ changeNoteDuration,
90
+ changeTime,
91
+ convertToGrace,
92
+ copyNotes,
93
+ copyNotesMultiMeasure,
94
+ createTuplet,
95
+ cutNotes,
96
+ deleteMeasure,
97
+ deleteNote,
98
+ deleteNoteChecked,
99
+ duplicatePart,
100
+ formatLocation,
101
+ generateId,
102
+ getMeasureContext,
103
+ insertClefChange,
104
+ insertMeasure,
105
+ insertNote,
106
+ isValid,
107
+ lowerAccidental,
108
+ modifyDynamics,
109
+ modifyNoteDuration,
110
+ modifyNoteDurationChecked,
111
+ modifyNotePitch,
112
+ modifyNotePitchChecked,
113
+ modifyTempo,
114
+ moveNoteToStaff,
115
+ pasteNotes,
116
+ pasteNotesMultiMeasure,
117
+ raiseAccidental,
118
+ removeArticulation,
119
+ removeBeam,
120
+ removeBowing,
121
+ removeBreathMark,
122
+ removeCaesura,
123
+ removeChordSymbol,
124
+ removeDynamics,
125
+ removeEnding,
126
+ removeFermata,
127
+ removeFingering,
128
+ removeGraceNote,
129
+ removeHarmony,
130
+ removeLyric,
131
+ removeNote,
132
+ removeOctaveShift,
133
+ removeOrnament,
134
+ removePart,
135
+ removePedal,
136
+ removeRepeat,
137
+ removeRepeatBarline,
138
+ removeSlur,
139
+ removeStringNumber,
140
+ removeTempo,
141
+ removeTie,
142
+ removeTuplet,
143
+ removeWedge,
144
+ setBarline,
145
+ setBeaming,
146
+ setNotePitch,
147
+ setNotePitchBySemitone,
148
+ setStaves,
149
+ shiftNotePitch,
150
+ stopOctaveShift,
151
+ transpose,
152
+ transposeChecked,
153
+ updateChordSymbol,
154
+ updateHarmony,
155
+ updateLyric,
156
+ validate,
157
+ validateBackupForward,
158
+ validateBeams,
159
+ validateDivisions,
160
+ validateMeasureDuration,
161
+ validateMeasureLocal,
162
+ validatePartReferences,
163
+ validatePartStructure,
164
+ validateSlurs,
165
+ validateSlursAcrossMeasures,
166
+ validateStaffStructure,
167
+ validateTies,
168
+ validateTiesAcrossMeasures,
169
+ validateTuplets,
170
+ validateVoiceStaff
171
+ } from "./chunk-CLONJVWZ.mjs";
172
+ import {
173
+ STEPS,
174
+ STEP_SEMITONES,
175
+ buildVoiceToStaffMap,
176
+ buildVoiceToStaffMapForPart,
177
+ countNotes,
178
+ extractPlaybackControls,
179
+ findBarlines,
180
+ findDirectionsByType,
181
+ findNotes,
182
+ findNotesWithNotation,
183
+ generatePlaybackSequence,
184
+ generatePlaybackTimeline,
185
+ getAbsolutePosition,
186
+ getAdjacentNotes,
187
+ getAllNotes,
188
+ getAttributesAtMeasure,
189
+ getBeamGroups,
190
+ getChordProgression,
191
+ getChords,
192
+ getClefChanges,
193
+ getClefForStaff,
194
+ getDirections,
195
+ getDirectionsAtPosition,
196
+ getDivisions,
197
+ getDuration,
198
+ getDynamics,
199
+ getEffectiveStaff,
200
+ getEndings,
201
+ getEntriesAtPosition,
202
+ getEntriesForStaff,
203
+ getEntriesInRange,
204
+ getHarmonies,
205
+ getHarmonyAtPosition,
206
+ getKeyChanges,
207
+ getLyricText,
208
+ getLyrics,
209
+ getMeasure,
210
+ getMeasureByIndex,
211
+ getMeasureCount,
212
+ getMeasureEndPosition,
213
+ getNextNote,
214
+ getNormalizedDuration,
215
+ getNormalizedPosition,
216
+ getNotesAtPosition,
217
+ getNotesForStaff,
218
+ getNotesForVoice,
219
+ getNotesInRange,
220
+ getOctaveShifts,
221
+ getPartById,
222
+ getPartByIndex,
223
+ getPartCount,
224
+ getPartIds,
225
+ getPartIndex,
226
+ getPedalMarkings,
227
+ getPrevNote,
228
+ getRepeatStructure,
229
+ getSlurSpans,
230
+ getStaffRange,
231
+ getStaveCount,
232
+ getStaves,
233
+ getStructuralChanges,
234
+ getTempoMarkings,
235
+ getTiedNoteGroups,
236
+ getTimeChanges,
237
+ getTupletGroups,
238
+ getVerseCount,
239
+ getVerticalSlice,
240
+ getVoiceLine,
241
+ getVoiceLineInRange,
242
+ getVoices,
243
+ getVoicesForStaff,
244
+ getWedges,
245
+ groupByStaff,
246
+ groupByVoice,
247
+ hasMultipleStaves,
248
+ hasNotes,
249
+ hasPlaybackControls,
250
+ inferStaff,
251
+ isRestMeasure,
252
+ iterateEntries,
253
+ iterateNotes,
254
+ measureRoundtrip,
255
+ pitchToSemitone,
256
+ scoresEqual,
257
+ withAbsolutePositions
258
+ } from "./chunk-UMEH3ENQ.mjs";
259
+ export {
260
+ STEPS,
261
+ STEP_SEMITONES,
262
+ ValidationException,
263
+ addArticulation,
264
+ addBeam,
265
+ addBowing,
266
+ addBreathMark,
267
+ addCaesura,
268
+ addChord,
269
+ addChordNote,
270
+ addChordNoteChecked,
271
+ addChordSymbol,
272
+ addCoda,
273
+ addDaCapo,
274
+ addDalSegno,
275
+ addDynamics,
276
+ addEnding,
277
+ addFermata,
278
+ addFine,
279
+ addFingering,
280
+ addGraceNote,
281
+ addHarmony,
282
+ addLyric,
283
+ addNote,
284
+ addNoteChecked,
285
+ addOctaveShift,
286
+ addOrnament,
287
+ addPart,
288
+ addPedal,
289
+ addRehearsalMark,
290
+ addRepeat,
291
+ addRepeatBarline,
292
+ addSegno,
293
+ addSlur,
294
+ addStringNumber,
295
+ addTempo,
296
+ addText,
297
+ addTextDirection,
298
+ addTie,
299
+ addToCoda,
300
+ addVoice,
301
+ addWedge,
302
+ assertMeasureValid,
303
+ assertValid,
304
+ autoBeam,
305
+ buildVoiceToStaffMap,
306
+ buildVoiceToStaffMapForPart,
307
+ changeBarline,
308
+ changeClef,
309
+ changeKey,
310
+ changeNoteDuration,
311
+ changeTime,
312
+ convertToGrace,
313
+ copyNotes,
314
+ copyNotesMultiMeasure,
315
+ countNotes,
316
+ createTuplet,
317
+ cutNotes,
318
+ deleteMeasure,
319
+ deleteNote,
320
+ deleteNoteChecked,
321
+ duplicatePart,
322
+ exportMidi,
323
+ exportMidiWithTimingMap,
324
+ extractPlaybackControls,
325
+ findBarlines,
326
+ findDirectionsByType,
327
+ findNotes,
328
+ findNotesWithNotation,
329
+ formatLocation,
330
+ generateId,
331
+ generatePlaybackSequence,
332
+ generatePlaybackTimeline,
333
+ getAbsolutePosition,
334
+ getAdjacentNotes,
335
+ getAllNotes,
336
+ getAllPartInfos,
337
+ getAttributesAtMeasure,
338
+ getBeamGroups,
339
+ getChordProgression,
340
+ getChords,
341
+ getClefChanges,
342
+ getClefForStaff,
343
+ getDirectionOfKind,
344
+ getDirections,
345
+ getDirectionsAtPosition,
346
+ getDirectionsOfKind,
347
+ getDivisions,
348
+ getDuration,
349
+ getDynamics,
350
+ getEffectiveStaff,
351
+ getEndings,
352
+ getEntriesAtPosition,
353
+ getEntriesForStaff,
354
+ getEntriesInRange,
355
+ getHarmonies,
356
+ getHarmonyAtPosition,
357
+ getKeyChanges,
358
+ getLyricText,
359
+ getLyrics,
360
+ getMeasure,
361
+ getMeasureByIndex,
362
+ getMeasureContext,
363
+ getMeasureCount,
364
+ getMeasureEndPosition,
365
+ getNextNote,
366
+ getNormalizedDuration,
367
+ getNormalizedPosition,
368
+ getNotesAtPosition,
369
+ getNotesForStaff,
370
+ getNotesForVoice,
371
+ getNotesInRange,
372
+ getOctaveShifts,
373
+ getPartAbbreviation,
374
+ getPartById,
375
+ getPartByIndex,
376
+ getPartCount,
377
+ getPartIds,
378
+ getPartIndex,
379
+ getPartInfo,
380
+ getPartName,
381
+ getPartNameMap,
382
+ getPedalMarkings,
383
+ getPrevNote,
384
+ getRepeatStructure,
385
+ getSlurSpans,
386
+ getSoundDamperPedal,
387
+ getSoundDynamics,
388
+ getSoundSoftPedal,
389
+ getSoundSostenutoPedal,
390
+ getSoundTempo,
391
+ getStaffRange,
392
+ getStaveCount,
393
+ getStaves,
394
+ getStructuralChanges,
395
+ getTempoMarkings,
396
+ getTiedNoteGroups,
397
+ getTimeChanges,
398
+ getTupletGroups,
399
+ getVerseCount,
400
+ getVerticalSlice,
401
+ getVoiceLine,
402
+ getVoiceLineInRange,
403
+ getVoices,
404
+ getVoicesForStaff,
405
+ getWedges,
406
+ groupByStaff,
407
+ groupByVoice,
408
+ hasBeam,
409
+ hasDirectionOfKind,
410
+ hasLyrics,
411
+ hasMultipleStaves,
412
+ hasNotations,
413
+ hasNotes,
414
+ hasPlaybackControls,
415
+ hasTie,
416
+ hasTieStart,
417
+ hasTieStop,
418
+ hasTuplet,
419
+ inferStaff,
420
+ insertClefChange,
421
+ insertMeasure,
422
+ insertNote,
423
+ isChordNote,
424
+ isCompressed,
425
+ isCueNote,
426
+ isGraceNote,
427
+ isPartInfo,
428
+ isPitchedNote,
429
+ isRest,
430
+ isRestMeasure,
431
+ isUnpitchedNote,
432
+ isValid,
433
+ iterateEntries,
434
+ iterateNotes,
435
+ lowerAccidental,
436
+ measureRoundtrip,
437
+ modifyDynamics,
438
+ modifyNoteDuration,
439
+ modifyNoteDurationChecked,
440
+ modifyNotePitch,
441
+ modifyNotePitchChecked,
442
+ modifyTempo,
443
+ moveNoteToStaff,
444
+ parse,
445
+ parseAbc,
446
+ parseAuto,
447
+ parseCompressed,
448
+ pasteNotes,
449
+ pasteNotesMultiMeasure,
450
+ pitchToSemitone,
451
+ raiseAccidental,
452
+ removeArticulation,
453
+ removeBeam,
454
+ removeBowing,
455
+ removeBreathMark,
456
+ removeCaesura,
457
+ removeChordSymbol,
458
+ removeDynamics,
459
+ removeEnding,
460
+ removeFermata,
461
+ removeFingering,
462
+ removeGraceNote,
463
+ removeHarmony,
464
+ removeLyric,
465
+ removeNote,
466
+ removeOctaveShift,
467
+ removeOrnament,
468
+ removePart,
469
+ removePedal,
470
+ removeRepeat,
471
+ removeRepeatBarline,
472
+ removeSlur,
473
+ removeStringNumber,
474
+ removeTempo,
475
+ removeTie,
476
+ removeTuplet,
477
+ removeWedge,
478
+ scoresEqual,
479
+ serialize,
480
+ serializeAbc,
481
+ serializeCompressed,
482
+ setBarline,
483
+ setBeaming,
484
+ setNotePitch,
485
+ setNotePitchBySemitone,
486
+ setStaves,
487
+ shiftNotePitch,
488
+ stopOctaveShift,
489
+ transpose,
490
+ transposeChecked,
491
+ updateChordSymbol,
492
+ updateHarmony,
493
+ updateLyric,
494
+ validate,
495
+ validateBackupForward,
496
+ validateBeams,
497
+ validateDivisions,
498
+ validateMeasureDuration,
499
+ validateMeasureLocal,
500
+ validatePartReferences,
501
+ validatePartStructure,
502
+ validateSlurs,
503
+ validateSlursAcrossMeasures,
504
+ validateStaffStructure,
505
+ validateTies,
506
+ validateTiesAcrossMeasures,
507
+ validateTuplets,
508
+ validateVoiceStaff,
509
+ withAbsolutePositions
510
+ };