@shotstack/shotstack-studio 1.1.1 → 1.2.0
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/core/entities/player.d.ts +2 -0
- package/dist/core/shotstack-canvas.d.ts +1 -0
- package/dist/shotstack-studio.es.js +408 -341
- package/dist/shotstack-studio.umd.js +6 -6
- package/package.json +1 -1
- package/readme.md +12 -15
|
@@ -44,6 +44,7 @@ export declare abstract class Player extends Entity {
|
|
|
44
44
|
private isRotating;
|
|
45
45
|
private rotationStart;
|
|
46
46
|
private rotationOffset;
|
|
47
|
+
private initialClipConfiguration;
|
|
47
48
|
constructor(edit: Edit, clipConfiguration: Clip);
|
|
48
49
|
protected configureKeyframes(): void;
|
|
49
50
|
load(): Promise<void>;
|
|
@@ -70,4 +71,5 @@ export declare abstract class Player extends Entity {
|
|
|
70
71
|
private onPointerOut;
|
|
71
72
|
private clipHasPresets;
|
|
72
73
|
private clipHasKeyframes;
|
|
74
|
+
private hasStateChanged;
|
|
73
75
|
}
|