@coderline/alphatab 1.8.0-alpha.1643 → 1.8.0-alpha.1646

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.
@@ -3148,6 +3148,7 @@ export declare namespace alphaTex {
3148
3148
  AlphaTexDiagnosticCode,
3149
3149
  AlphaTexDiagnosticsSeverity,
3150
3150
  AlphaTexStaffNoteKind,
3151
+ AlphaTexVoiceMode,
3151
3152
  ArgumentListParseTypesMode,
3152
3153
  IAlphaTexImporter,
3153
3154
  IAlphaTexImporterState
@@ -3665,7 +3666,7 @@ declare class AlphaTexImporter extends ScoreImporter implements IAlphaTexImporte
3665
3666
  private _handleTransposition;
3666
3667
  private _detectTuningForStaff;
3667
3668
  private _barMeta;
3668
- private _newBar;
3669
+ private _getBar;
3669
3670
  startNewStaff(): Staff;
3670
3671
  applyPercussionStaff(staff: Staff): void;
3671
3672
  startNewTrack(): Track;
@@ -4021,6 +4022,14 @@ declare interface AlphaTexTextNode extends AlphaTexAstNode {
4021
4022
  declare interface AlphaTexTokenNode extends AlphaTexAstNode {
4022
4023
  }
4023
4024
 
4025
+ /**
4026
+ * @public
4027
+ */
4028
+ declare enum AlphaTexVoiceMode {
4029
+ StaffWise = 0,
4030
+ BarWise = 1
4031
+ }
4032
+
4024
4033
  /**
4025
4034
  * Defines how the arguments of the meta data tag is parsed.
4026
4035
  * @public
@@ -7121,6 +7130,7 @@ declare class EndOfTrackEvent extends MidiEvent {
7121
7130
  */
7122
7131
  export declare class EngravingSettings {
7123
7132
  private static _bravuraDefaults?;
7133
+
7124
7134
  /**
7125
7135
  * A {@link EngravingSettings} copy filled with the settings of the Bravura font used by default in alphaTab.
7126
7136
  */
@@ -7498,6 +7508,11 @@ export declare class EngravingSettings {
7498
7508
  * The relative scale of any directions glyphs drawn like coda or segno.
7499
7509
  */
7500
7510
  directionsScale: number;
7511
+ /**
7512
+ * The spacing between displaced displaced note heads
7513
+ * in case of multi-voice note head overlaps.
7514
+ */
7515
+ multiVoiceDisplacedNoteHeadSpacing: number;
7501
7516
  static readonly bravuraMetadata: SmuflMetadata;
7502
7517
  }
7503
7518
 
@@ -7890,6 +7905,11 @@ declare interface EngravingSettingsJson {
7890
7905
  * The relative scale of any directions glyphs drawn like coda or segno.
7891
7906
  */
7892
7907
  directionsScale?: number;
7908
+ /**
7909
+ * The spacing between displaced displaced note heads
7910
+ * in case of multi-voice note head overlaps.
7911
+ */
7912
+ multiVoiceDisplacedNoteHeadSpacing?: number;
7893
7913
  }
7894
7914
 
7895
7915
  /**
@@ -8068,6 +8088,7 @@ export declare class Environment {
8068
8088
  private static _printPlatformInfo;
8069
8089
 
8070
8090
 
8091
+
8071
8092
  }
8072
8093
 
8073
8094
  export declare namespace exporter {
@@ -8884,6 +8905,7 @@ declare interface IAlphaTexImporter {
8884
8905
  declare interface IAlphaTexImporterState {
8885
8906
  score: Score;
8886
8907
  accidentalMode: AlphaTexAccidentalMode;
8908
+ voiceMode: AlphaTexVoiceMode;
8887
8909
  currentDynamics: DynamicValue;
8888
8910
  currentTupletNumerator: number;
8889
8911
  currentTupletDenominator: number;
@@ -14222,6 +14244,10 @@ declare class RenderStylesheet {
14222
14244
  * Whether to show the chord diagrams on top. (per-track)
14223
14245
  */
14224
14246
  perTrackChordDiagramsOnTop: Map<number, boolean> | null;
14247
+ /**
14248
+ * Whether to show the chord diagrams in score.
14249
+ */
14250
+ globalDisplayChordDiagramsInScore: boolean;
14225
14251
  /**
14226
14252
  * The policy where to show track names when a single track is rendered.
14227
14253
  */