@rendley/sdk 1.10.1 → 1.10.2
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.
|
@@ -1193,7 +1193,7 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
1193
1193
|
style: K;
|
|
1194
1194
|
state: ClipState;
|
|
1195
1195
|
protected clipMasksLazyDeserialize: z.infer<typeof MaskFilterSchema>[];
|
|
1196
|
-
private AnimationClass;
|
|
1196
|
+
private readonly AnimationClass;
|
|
1197
1197
|
readonly animationController: InstanceType<typeof this.AnimationClass>;
|
|
1198
1198
|
constructor(options: ClipOptions);
|
|
1199
1199
|
init(layerId: string): Promise<void>;
|
|
@@ -119,10 +119,15 @@ export declare class LottieClip extends Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>
|
|
|
119
119
|
protected properties: Property[];
|
|
120
120
|
protected groups: Group[];
|
|
121
121
|
private propertyMap;
|
|
122
|
+
private autoFit;
|
|
122
123
|
constructor(options: LottieClipOptions);
|
|
123
124
|
init(layerId: string): Promise<void>;
|
|
124
125
|
private initProperties;
|
|
125
126
|
setProperty(propertyId: string, value: unknown): void;
|
|
127
|
+
getGroups(): {
|
|
128
|
+
id: string;
|
|
129
|
+
label: string;
|
|
130
|
+
}[];
|
|
126
131
|
getProperties(): Map<string, {
|
|
127
132
|
type: LottiePropertyTypeEnum;
|
|
128
133
|
id: string;
|