exodeui 6.3.49 → 6.3.50
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 +19 -34
- package/dist/index.mjs +3072 -2980
- package/dist/src/__tests__/adjustments.test.d.ts +1 -0
- package/dist/src/engine.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/src/engine.d.ts
CHANGED
|
@@ -50,6 +50,8 @@ export declare class ExodeUIEngine {
|
|
|
50
50
|
};
|
|
51
51
|
private _totalScroll;
|
|
52
52
|
private draggingBehaviors;
|
|
53
|
+
private dragStartPointer;
|
|
54
|
+
private dragStartPositions;
|
|
53
55
|
private isMouseDown;
|
|
54
56
|
private activeKeys;
|
|
55
57
|
private _layoutAnimCache;
|
|
@@ -162,8 +164,10 @@ export declare class ExodeUIEngine {
|
|
|
162
164
|
private handlePointerEvent;
|
|
163
165
|
handleKeyDown(e: KeyboardEvent): void;
|
|
164
166
|
handleKeyUp(e: KeyboardEvent): void;
|
|
167
|
+
private hasDragInteraction;
|
|
165
168
|
private fireEventForObject;
|
|
166
169
|
private fireAnalyticsEvent;
|
|
170
|
+
private getAnimationDuration;
|
|
167
171
|
private initGlobalAnimationTriggers;
|
|
168
172
|
private triggerGlobalAnimation;
|
|
169
173
|
private handleAnimationFinished;
|
|
@@ -241,5 +245,6 @@ export declare class ExodeUIEngine {
|
|
|
241
245
|
private applyEasing;
|
|
242
246
|
private lerp;
|
|
243
247
|
private deepMerge;
|
|
248
|
+
private processFabricAdjustmentsCanvas;
|
|
244
249
|
private renderFittedImage;
|
|
245
250
|
}
|