@rive-app/canvas-advanced-lite 2.15.6 → 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.
@@ -2009,7 +2009,7 @@ var Mc = {_embind_create_inheriting_constructor:function(b, a, c) {
2009
2009
  Ib(b, {cb:!0, name:a, argPackAdvance:0, fromWireType:function() {
2010
2010
  }, toWireType:function() {
2011
2011
  },});
2012
- }, _emval_as:function(b, a, c) {
2012
+ }, _emscripten_get_now_is_monotonic:() => !0, _emval_as:function(b, a, c) {
2013
2013
  b = S(b);
2014
2014
  a = nb(a, "emval::as");
2015
2015
  var d = [], e = ab(d);
@@ -2078,7 +2078,9 @@ var Mc = {_embind_create_inheriting_constructor:function(b, a, c) {
2078
2078
  return ab(b);
2079
2079
  }, abort:() => {
2080
2080
  ya("");
2081
- }, emscripten_memcpy_big:(b, a, c) => L.copyWithin(b, a, a + c), emscripten_resize_heap:b => {
2081
+ }, emscripten_date_now:function() {
2082
+ return Date.now();
2083
+ }, emscripten_get_now:() => performance.now(), emscripten_memcpy_big:(b, a, c) => L.copyWithin(b, a, a + c), emscripten_resize_heap:b => {
2082
2084
  var a = L.length;
2083
2085
  b >>>= 0;
2084
2086
  if (2147483648 < b) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rive-app/canvas-advanced-lite",
3
- "version": "2.15.6",
3
+ "version": "2.17.0",
4
4
  "description": "Rive's lite low-level canvas based web api.",
5
5
  "main": "canvas_advanced.mjs",
6
6
  "homepage": "https://rive.app",
package/rive.wasm CHANGED
Binary file
@@ -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 {
Binary file