@rive-app/webgl-single 2.16.0 → 2.17.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/package.json +1 -1
- package/rive.d.ts +21 -0
- package/rive.js +77 -10
- package/rive.js.map +1 -1
- package/rive_advanced.mjs.d.ts +6 -0
package/rive_advanced.mjs.d.ts
CHANGED
|
@@ -450,6 +450,12 @@ export declare class Artboard {
|
|
|
450
450
|
* @param name - Name of the Text Run to grab a reference to
|
|
451
451
|
*/
|
|
452
452
|
textRun(name: string): TextValueRun;
|
|
453
|
+
/**
|
|
454
|
+
* Returns a reference for a SMIInput object to get/set an input value for
|
|
455
|
+
* @param name - Name of the Input to grab a reference to
|
|
456
|
+
* @param path - Path of where the input exists at an artboard level
|
|
457
|
+
*/
|
|
458
|
+
inputByPath(name: string, path: string): SMIInput;
|
|
453
459
|
}
|
|
454
460
|
|
|
455
461
|
export declare class Bone extends TransformComponent {
|