exodeui 2.6.41 → 6.0.8
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/engine.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -6
- package/dist/index.mjs +1871 -1824
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/engine.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare class ExodeUIEngine {
|
|
|
37
37
|
private objectVelocities;
|
|
38
38
|
private currentTime;
|
|
39
39
|
private frameCount;
|
|
40
|
+
private fontLeadingFactors;
|
|
40
41
|
setTriggerCallback(cb: (triggerName: string, animationName: string) => void): void;
|
|
41
42
|
setInputUpdateCallback(cb: (nameOrId: string, value: any) => void): void;
|
|
42
43
|
setComponentChangeCallback(cb: (event: ComponentEvent) => void): void;
|
|
@@ -99,6 +100,7 @@ export declare class ExodeUIEngine {
|
|
|
99
100
|
render(ctx: CanvasRenderingContext2D, width: number, height: number): void;
|
|
100
101
|
private calculateTransform;
|
|
101
102
|
private mapFontWeight;
|
|
103
|
+
private getFontLeadingFactor;
|
|
102
104
|
private renderObject;
|
|
103
105
|
private applyStrokeAlignment;
|
|
104
106
|
private getPerimeter;
|
|
@@ -127,4 +129,5 @@ export declare class ExodeUIEngine {
|
|
|
127
129
|
private drawListViewRect;
|
|
128
130
|
private solveBehaviors;
|
|
129
131
|
private applyBehaviorSensor;
|
|
132
|
+
private deepMerge;
|
|
130
133
|
}
|
package/dist/index.d.ts
CHANGED