@rive-app/webgl2 2.30.1 → 2.30.3
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 +17 -0
- package/rive.js +64 -12
- package/rive.js.map +1 -1
- package/rive.wasm +0 -0
- package/rive_advanced.mjs.d.ts +4 -0
package/rive.wasm
CHANGED
|
Binary file
|
package/rive_advanced.mjs.d.ts
CHANGED
|
@@ -934,6 +934,9 @@ export declare class ViewModelInstanceList extends ViewModelInstanceValue {
|
|
|
934
934
|
export declare class ViewModelInstanceAssetImage extends ViewModelInstanceValue {
|
|
935
935
|
value(image: ImageInternal | null):void;
|
|
936
936
|
}
|
|
937
|
+
export declare class ViewModelInstanceArtboard extends ViewModelInstanceValue {
|
|
938
|
+
value(artboard: Artboard):void;
|
|
939
|
+
}
|
|
937
940
|
|
|
938
941
|
export declare class ViewModelInstance {
|
|
939
942
|
get propertyCount(): number;
|
|
@@ -946,6 +949,7 @@ export declare class ViewModelInstance {
|
|
|
946
949
|
list(path: string): ViewModelInstanceList;
|
|
947
950
|
viewModel(path: string): ViewModelInstance;
|
|
948
951
|
image(path: string): ViewModelInstanceAssetImage;
|
|
952
|
+
artboard(path: string): ViewModelInstanceArtboard;
|
|
949
953
|
replaceViewModel(path: string, value: ViewModelInstance): boolean;
|
|
950
954
|
incrementReferenceCount(): void;
|
|
951
955
|
decrementReferenceCount(): void;
|