@coderline/alphatab 1.9.0-alpha.1848 → 1.9.0-alpha.1852
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 +7666 -7453
- package/dist/alphaTab.d.ts +44 -0
- package/dist/alphaTab.js +7666 -7453
- 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 +2 -2
package/dist/alphaTab.d.ts
CHANGED
|
@@ -4974,6 +4974,16 @@ declare class Beat {
|
|
|
4974
4974
|
* Whether this beat should rendered and played as "dead slapped".
|
|
4975
4975
|
*/
|
|
4976
4976
|
deadSlapped: boolean;
|
|
4977
|
+
/**
|
|
4978
|
+
* Gets or sets the chromatic tone value (0–11) of the pitch at which this rest should be displayed.
|
|
4979
|
+
* A value of -1 means use the default position formula.
|
|
4980
|
+
*/
|
|
4981
|
+
restDisplayTone: number;
|
|
4982
|
+
/**
|
|
4983
|
+
* Gets or sets the octave at which this rest should be displayed.
|
|
4984
|
+
* Only relevant when {@link restDisplayTone} is set. -1 means use the default position formula.
|
|
4985
|
+
*/
|
|
4986
|
+
restDisplayOctave: number;
|
|
4977
4987
|
/**
|
|
4978
4988
|
* Gets or sets the brush type applied to the notes of this beat.
|
|
4979
4989
|
*/
|
|
@@ -6686,6 +6696,13 @@ export declare class DisplaySettings {
|
|
|
6686
6696
|
* @defaultValue `3`
|
|
6687
6697
|
*/
|
|
6688
6698
|
accoladeBarPaddingRight: number;
|
|
6699
|
+
/**
|
|
6700
|
+
* The padding between inline tuning labels and the start of the tab staff.
|
|
6701
|
+
* @since 1.9.0
|
|
6702
|
+
* @category Display
|
|
6703
|
+
* @defaultValue `5`
|
|
6704
|
+
*/
|
|
6705
|
+
inlineTuningPaddingRight: number;
|
|
6689
6706
|
/**
|
|
6690
6707
|
* The top padding applied to the first main notation staff (standard, tabs, numbered, slash).
|
|
6691
6708
|
* @since 1.8.0
|
|
@@ -7124,6 +7141,13 @@ declare interface DisplaySettingsJson {
|
|
|
7124
7141
|
* @defaultValue `3`
|
|
7125
7142
|
*/
|
|
7126
7143
|
accoladeBarPaddingRight?: number;
|
|
7144
|
+
/**
|
|
7145
|
+
* The padding between inline tuning labels and the start of the tab staff.
|
|
7146
|
+
* @since 1.9.0
|
|
7147
|
+
* @category Display
|
|
7148
|
+
* @defaultValue `5`
|
|
7149
|
+
*/
|
|
7150
|
+
inlineTuningPaddingRight?: number;
|
|
7127
7151
|
/**
|
|
7128
7152
|
* The top padding applied to the first main notation staff (standard, tabs, numbered, slash).
|
|
7129
7153
|
* @since 1.8.0
|
|
@@ -11909,6 +11933,7 @@ export declare namespace model {
|
|
|
11909
11933
|
TrackNamePolicy,
|
|
11910
11934
|
TrackNameMode,
|
|
11911
11935
|
TrackNameOrientation,
|
|
11936
|
+
TuningDisplayMode,
|
|
11912
11937
|
BarNumberDisplay,
|
|
11913
11938
|
RepeatGroup,
|
|
11914
11939
|
Score,
|
|
@@ -15027,6 +15052,10 @@ declare class RenderStylesheet {
|
|
|
15027
15052
|
* Whether to show the tuning.
|
|
15028
15053
|
*/
|
|
15029
15054
|
globalDisplayTuning: boolean;
|
|
15055
|
+
/**
|
|
15056
|
+
* The place where tuning information is displayed.
|
|
15057
|
+
*/
|
|
15058
|
+
tuningDisplayMode: TuningDisplayMode;
|
|
15030
15059
|
/**
|
|
15031
15060
|
* Whether to show the tuning.(per-track)
|
|
15032
15061
|
*/
|
|
@@ -16747,6 +16776,21 @@ declare class Tuning {
|
|
|
16747
16776
|
finish(): void;
|
|
16748
16777
|
}
|
|
16749
16778
|
|
|
16779
|
+
/**
|
|
16780
|
+
* Lists the different places where string tuning information is displayed.
|
|
16781
|
+
* @public
|
|
16782
|
+
*/
|
|
16783
|
+
declare enum TuningDisplayMode {
|
|
16784
|
+
/**
|
|
16785
|
+
* Tuning information is displayed above the score.
|
|
16786
|
+
*/
|
|
16787
|
+
Score = 0,
|
|
16788
|
+
/**
|
|
16789
|
+
* Tuning note names are displayed beside the corresponding tab staff lines.
|
|
16790
|
+
*/
|
|
16791
|
+
Staff = 1
|
|
16792
|
+
}
|
|
16793
|
+
|
|
16750
16794
|
/**
|
|
16751
16795
|
* Represents a list of beats that are grouped within the same tuplet.
|
|
16752
16796
|
* @public
|