exodeui 2.6.33 → 2.6.35
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 +8 -0
- package/dist/index.js +4 -4
- package/dist/index.mjs +1614 -1574
- package/dist/types.d.ts +6 -0
- package/package.json +2 -2
package/dist/engine.d.ts
CHANGED
|
@@ -11,6 +11,10 @@ export declare class ExodeUIEngine {
|
|
|
11
11
|
private imageCache;
|
|
12
12
|
private fontCache;
|
|
13
13
|
private shadowBuffer;
|
|
14
|
+
private maskBuffer;
|
|
15
|
+
private maskCtx;
|
|
16
|
+
private lumaBuffer;
|
|
17
|
+
private lumaCtx;
|
|
14
18
|
private layout;
|
|
15
19
|
private onTrigger?;
|
|
16
20
|
private onInputUpdate?;
|
|
@@ -20,6 +24,9 @@ export declare class ExodeUIEngine {
|
|
|
20
24
|
private onInputFocus?;
|
|
21
25
|
private onInputBlur?;
|
|
22
26
|
private justFiredTriggers;
|
|
27
|
+
private rootTransform;
|
|
28
|
+
private canvasWidth;
|
|
29
|
+
private canvasHeight;
|
|
23
30
|
private lastHoveredObjectId;
|
|
24
31
|
private _lastPointerPos;
|
|
25
32
|
private _prevPointerPos;
|
|
@@ -89,6 +96,7 @@ export declare class ExodeUIEngine {
|
|
|
89
96
|
private renderObject;
|
|
90
97
|
private applyStrokeAlignment;
|
|
91
98
|
private getPerimeter;
|
|
99
|
+
private applyAbsoluteTransform;
|
|
92
100
|
private applyObjectTransform;
|
|
93
101
|
private applyPath;
|
|
94
102
|
private _tracePath;
|