exodeui 6.2.7 → 6.2.9
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/index.js +32 -32
- package/dist/index.mjs +3432 -3416
- package/dist/src/engine.d.ts +5 -0
- package/package.json +1 -1
package/dist/src/engine.d.ts
CHANGED
|
@@ -63,6 +63,10 @@ export declare class ExodeUIEngine {
|
|
|
63
63
|
setInputFocusCallback(cb: (name: string) => void): void;
|
|
64
64
|
setInputBlurCallback(cb: (name: string) => void): void;
|
|
65
65
|
updateConstraint(objectId: string, index: number, properties: Partial<Constraint>): void;
|
|
66
|
+
private debug_objectsRendered;
|
|
67
|
+
private debug_objectsTotal;
|
|
68
|
+
private lastRenderTime;
|
|
69
|
+
debugMode: boolean;
|
|
66
70
|
constructor();
|
|
67
71
|
private setInternalInput;
|
|
68
72
|
setLayout(fit: Fit, alignment: Alignment): void;
|
|
@@ -132,6 +136,7 @@ export declare class ExodeUIEngine {
|
|
|
132
136
|
private interpolateFill;
|
|
133
137
|
private interpolateStroke;
|
|
134
138
|
render(ctx: CanvasRenderingContext2D, width: number, height: number): void;
|
|
139
|
+
private isObjectInView;
|
|
135
140
|
private calculateTransform;
|
|
136
141
|
private mapFontWeight;
|
|
137
142
|
private drawTextDecoration;
|