@rive-app/webgl-single 1.0.69 → 1.0.72
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/package.json +1 -1
- package/rive.d.ts +3 -2
- package/rive.js +122 -83
- package/rive.js.map +1 -1
- package/rive_advanced.mjs.d.ts +20 -17
package/package.json
CHANGED
package/rive.d.ts
CHANGED
|
@@ -46,11 +46,11 @@ export declare class Layout {
|
|
|
46
46
|
readonly maxX: number;
|
|
47
47
|
readonly maxY: number;
|
|
48
48
|
constructor(params?: LayoutParameters);
|
|
49
|
-
static new({ fit, alignment, minX, minY, maxX, maxY }: LayoutParameters): Layout;
|
|
49
|
+
static new({ fit, alignment, minX, minY, maxX, maxY, }: LayoutParameters): Layout;
|
|
50
50
|
/**
|
|
51
51
|
* Makes a copy of the layout, replacing any specified parameters
|
|
52
52
|
*/
|
|
53
|
-
copyWith({ fit, alignment, minX, minY, maxX, maxY }: LayoutParameters): Layout;
|
|
53
|
+
copyWith({ fit, alignment, minX, minY, maxX, maxY, }: LayoutParameters): Layout;
|
|
54
54
|
runtimeFit(rive: rc.RiveCanvas): rc.Fit;
|
|
55
55
|
runtimeAlignment(rive: rc.RiveCanvas): rc.Alignment;
|
|
56
56
|
}
|
|
@@ -256,6 +256,7 @@ export declare class Rive {
|
|
|
256
256
|
private readyForPlaying;
|
|
257
257
|
private runtime;
|
|
258
258
|
private artboard;
|
|
259
|
+
private eventCleanup;
|
|
259
260
|
private file;
|
|
260
261
|
private eventManager;
|
|
261
262
|
private taskQueue;
|