@coderline/alphatab 1.9.0-alpha.1785 → 1.9.0-alpha.1804
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/dist/alphaTab.core.min.mjs +2 -2
- package/dist/alphaTab.core.mjs +399 -52
- package/dist/alphaTab.d.ts +15 -1
- package/dist/alphaTab.js +399 -52
- package/dist/alphaTab.min.js +2 -2
- package/dist/alphaTab.min.mjs +1 -1
- package/dist/alphaTab.mjs +1 -1
- package/dist/alphaTab.worker.min.mjs +1 -1
- package/dist/alphaTab.worker.mjs +1 -1
- package/dist/alphaTab.worklet.min.mjs +1 -1
- package/dist/alphaTab.worklet.mjs +1 -1
- package/package.json +3 -3
package/dist/alphaTab.d.ts
CHANGED
|
@@ -11515,6 +11515,12 @@ declare class MidiTickLookup {
|
|
|
11515
11515
|
* @returns The time in midi ticks at which the beat is played the first time or 0 if the beat is not contained
|
|
11516
11516
|
*/
|
|
11517
11517
|
getBeatStart(beat: Beat): number;
|
|
11518
|
+
/**
|
|
11519
|
+
* Gets the playback range in midi ticks for a given beat.
|
|
11520
|
+
* @param beat The beat to find the time period for.
|
|
11521
|
+
* @returns The relative playback range within the parent masterbar at which the beat start and ends playing
|
|
11522
|
+
*/
|
|
11523
|
+
getRelativeBeatPlaybackRange(beat: Beat): PlaybackRange | undefined;
|
|
11518
11524
|
/**
|
|
11519
11525
|
* Adds a new {@link MasterBarTickLookup} to the lookup table.
|
|
11520
11526
|
* @param masterBar The item to add.
|
|
@@ -12232,7 +12238,15 @@ export declare enum NotationElement {
|
|
|
12232
12238
|
/**
|
|
12233
12239
|
* The slurs shown on bend effects within the score staff.
|
|
12234
12240
|
*/
|
|
12235
|
-
ScoreBendSlur = 55
|
|
12241
|
+
ScoreBendSlur = 55,
|
|
12242
|
+
/**
|
|
12243
|
+
* The hammer-on pull-off text shown on slurs.
|
|
12244
|
+
*/
|
|
12245
|
+
EffectHammerOnPullOffText = 56,
|
|
12246
|
+
/**
|
|
12247
|
+
* The slide text shown on slurs.
|
|
12248
|
+
*/
|
|
12249
|
+
EffectSlideText = 57
|
|
12236
12250
|
}
|
|
12237
12251
|
|
|
12238
12252
|
/**
|