@coderline/alphatab 1.3.0-alpha.411 → 1.3.0-alpha.418
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.d.ts +6 -3
- package/dist/alphaTab.js +308 -97
- package/dist/alphaTab.min.js +2 -2
- package/dist/alphaTab.min.mjs +2 -2
- package/dist/alphaTab.mjs +308 -97
- package/package.json +2 -2
package/dist/alphaTab.d.ts
CHANGED
|
@@ -6170,6 +6170,7 @@ declare class BeatContainerGlyph extends Glyph {
|
|
|
6170
6170
|
minWidth: number;
|
|
6171
6171
|
get onTimeX(): number;
|
|
6172
6172
|
constructor(beat: Beat, voiceContainer: VoiceContainerGlyph);
|
|
6173
|
+
addTie(tie: Glyph): void;
|
|
6173
6174
|
registerLayoutingInfo(layoutings: BarLayoutingInfo): void;
|
|
6174
6175
|
applyLayoutingInfo(info: BarLayoutingInfo): void;
|
|
6175
6176
|
doLayout(): void;
|
|
@@ -6407,6 +6408,7 @@ declare class BarRendererBase {
|
|
|
6407
6408
|
private _preBeatGlyphs;
|
|
6408
6409
|
private _voiceContainers;
|
|
6409
6410
|
private _postBeatGlyphs;
|
|
6411
|
+
private _ties;
|
|
6410
6412
|
get nextRenderer(): BarRendererBase | null;
|
|
6411
6413
|
get previousRenderer(): BarRendererBase | null;
|
|
6412
6414
|
scoreRenderer: ScoreRenderer;
|
|
@@ -6433,9 +6435,10 @@ declare class BarRendererBase {
|
|
|
6433
6435
|
*/
|
|
6434
6436
|
canWrap: boolean;
|
|
6435
6437
|
constructor(renderer: ScoreRenderer, bar: Bar);
|
|
6438
|
+
registerTies(ties: Glyph[]): void;
|
|
6436
6439
|
get middleYPosition(): number;
|
|
6437
|
-
registerOverflowTop(topOverflow: number):
|
|
6438
|
-
registerOverflowBottom(bottomOverflow: number):
|
|
6440
|
+
registerOverflowTop(topOverflow: number): boolean;
|
|
6441
|
+
registerOverflowBottom(bottomOverflow: number): boolean;
|
|
6439
6442
|
scaleToWidth(width: number): void;
|
|
6440
6443
|
get resources(): RenderingResources;
|
|
6441
6444
|
get settings(): Settings;
|
|
@@ -6447,7 +6450,7 @@ declare class BarRendererBase {
|
|
|
6447
6450
|
private _appliedLayoutingInfo;
|
|
6448
6451
|
applyLayoutingInfo(): boolean;
|
|
6449
6452
|
isFinalized: boolean;
|
|
6450
|
-
finalizeRenderer():
|
|
6453
|
+
finalizeRenderer(): boolean;
|
|
6451
6454
|
/**
|
|
6452
6455
|
* Gets the top padding for the main content of the renderer.
|
|
6453
6456
|
* Can be used to specify where i.E. the score lines of the notation start.
|