@coderline/alphatab 1.3.0-alpha.782 → 1.3.0-alpha.783
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 -0
- package/dist/alphaTab.js +5 -4
- package/dist/alphaTab.min.js +2 -2
- package/dist/alphaTab.min.mjs +2 -2
- package/dist/alphaTab.mjs +5 -4
- package/package.json +1 -1
package/dist/alphaTab.d.ts
CHANGED
|
@@ -6991,6 +6991,10 @@ declare class FontSizes {
|
|
|
6991
6991
|
type index_d$1_Cursors = Cursors;
|
|
6992
6992
|
declare const index_d$1_Cursors: typeof Cursors;
|
|
6993
6993
|
type index_d$1_ICanvas = ICanvas;
|
|
6994
|
+
type index_d$1_TextAlign = TextAlign;
|
|
6995
|
+
declare const index_d$1_TextAlign: typeof TextAlign;
|
|
6996
|
+
type index_d$1_TextBaseline = TextBaseline;
|
|
6997
|
+
declare const index_d$1_TextBaseline: typeof TextBaseline;
|
|
6994
6998
|
type index_d$1_IContainer = IContainer;
|
|
6995
6999
|
type index_d$1_IMouseEventArgs = IMouseEventArgs;
|
|
6996
7000
|
type index_d$1_IUiFacade<TSettings> = IUiFacade<TSettings>;
|
|
@@ -7004,6 +7008,8 @@ declare namespace index_d$1 {
|
|
|
7004
7008
|
export {
|
|
7005
7009
|
index_d$1_Cursors as Cursors,
|
|
7006
7010
|
index_d$1_ICanvas as ICanvas,
|
|
7011
|
+
index_d$1_TextAlign as TextAlign,
|
|
7012
|
+
index_d$1_TextBaseline as TextBaseline,
|
|
7007
7013
|
index_d$1_IContainer as IContainer,
|
|
7008
7014
|
index_d$1_IMouseEventArgs as IMouseEventArgs,
|
|
7009
7015
|
index_d$1_IUiFacade as IUiFacade,
|
package/dist/alphaTab.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* alphaTab v1.3.0-alpha.
|
|
2
|
+
* alphaTab v1.3.0-alpha.783 (develop, build 783)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2023, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -26270,7 +26270,6 @@
|
|
|
26270
26270
|
else {
|
|
26271
26271
|
Logger.error('Font', `[${this._originalFamilies.join(',')}] Loading Failed, rendering cannot start`, e);
|
|
26272
26272
|
window.clearInterval(failCounterId);
|
|
26273
|
-
debugger;
|
|
26274
26273
|
}
|
|
26275
26274
|
};
|
|
26276
26275
|
let successHandler = (font) => {
|
|
@@ -41912,8 +41911,8 @@
|
|
|
41912
41911
|
// </auto-generated>
|
|
41913
41912
|
class VersionInfo {
|
|
41914
41913
|
}
|
|
41915
|
-
VersionInfo.version = '1.3.0-alpha.
|
|
41916
|
-
VersionInfo.date = '2023-10-01T12:
|
|
41914
|
+
VersionInfo.version = '1.3.0-alpha.783';
|
|
41915
|
+
VersionInfo.date = '2023-10-01T12:07:13.906Z';
|
|
41917
41916
|
|
|
41918
41917
|
var index$5 = /*#__PURE__*/Object.freeze({
|
|
41919
41918
|
__proto__: null,
|
|
@@ -44956,6 +44955,8 @@
|
|
|
44956
44955
|
var index$1 = /*#__PURE__*/Object.freeze({
|
|
44957
44956
|
__proto__: null,
|
|
44958
44957
|
Cursors: Cursors,
|
|
44958
|
+
get TextAlign () { return TextAlign; },
|
|
44959
|
+
get TextBaseline () { return TextBaseline; },
|
|
44959
44960
|
CssFontSvgCanvas: CssFontSvgCanvas,
|
|
44960
44961
|
FontSizes: FontSizes,
|
|
44961
44962
|
SvgCanvas: SvgCanvas
|