@fiddle-digital/string-tune 1.1.37 → 1.1.39
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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1402,6 +1402,7 @@ declare class StringCursor extends StringModule {
|
|
|
1402
1402
|
private boundPageHide;
|
|
1403
1403
|
private boundVisibilityChange;
|
|
1404
1404
|
protected enabled: boolean;
|
|
1405
|
+
private lastFrameTime;
|
|
1405
1406
|
constructor(context: StringContext);
|
|
1406
1407
|
initializeObject(globalId: number, object: StringObject, element: HTMLElement, attributes: Record<string, any>): void;
|
|
1407
1408
|
onMutate(data: StringData): void;
|
|
@@ -1418,6 +1419,7 @@ declare class StringCursor extends StringModule {
|
|
|
1418
1419
|
onDOMMutate(added: NodeList, removed: NodeList): void;
|
|
1419
1420
|
private collectCursorPortals;
|
|
1420
1421
|
private resolvePortalId;
|
|
1422
|
+
private resolvePortalLerp;
|
|
1421
1423
|
private shouldRefreshPortals;
|
|
1422
1424
|
private withPortalsForObject;
|
|
1423
1425
|
private getPortalsForObject;
|
|
@@ -1432,6 +1434,8 @@ declare class StringCursor extends StringModule {
|
|
|
1432
1434
|
private bindGlobalLifecycleListeners;
|
|
1433
1435
|
private unbindGlobalLifecycleListeners;
|
|
1434
1436
|
private setMouseCoordinates;
|
|
1437
|
+
private getFrameAdjustedLerp;
|
|
1438
|
+
private getObjectDimensions;
|
|
1435
1439
|
private calculateOffset;
|
|
1436
1440
|
removeObject(id: string): void;
|
|
1437
1441
|
destroy(): void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1402,6 +1402,7 @@ declare class StringCursor extends StringModule {
|
|
|
1402
1402
|
private boundPageHide;
|
|
1403
1403
|
private boundVisibilityChange;
|
|
1404
1404
|
protected enabled: boolean;
|
|
1405
|
+
private lastFrameTime;
|
|
1405
1406
|
constructor(context: StringContext);
|
|
1406
1407
|
initializeObject(globalId: number, object: StringObject, element: HTMLElement, attributes: Record<string, any>): void;
|
|
1407
1408
|
onMutate(data: StringData): void;
|
|
@@ -1418,6 +1419,7 @@ declare class StringCursor extends StringModule {
|
|
|
1418
1419
|
onDOMMutate(added: NodeList, removed: NodeList): void;
|
|
1419
1420
|
private collectCursorPortals;
|
|
1420
1421
|
private resolvePortalId;
|
|
1422
|
+
private resolvePortalLerp;
|
|
1421
1423
|
private shouldRefreshPortals;
|
|
1422
1424
|
private withPortalsForObject;
|
|
1423
1425
|
private getPortalsForObject;
|
|
@@ -1432,6 +1434,8 @@ declare class StringCursor extends StringModule {
|
|
|
1432
1434
|
private bindGlobalLifecycleListeners;
|
|
1433
1435
|
private unbindGlobalLifecycleListeners;
|
|
1434
1436
|
private setMouseCoordinates;
|
|
1437
|
+
private getFrameAdjustedLerp;
|
|
1438
|
+
private getObjectDimensions;
|
|
1435
1439
|
private calculateOffset;
|
|
1436
1440
|
removeObject(id: string): void;
|
|
1437
1441
|
destroy(): void;
|