@hyperframes/producer 0.4.42 → 0.4.43
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/public-server.js
CHANGED
|
@@ -106418,7 +106418,7 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
106418
106418
|
return found && __hfContains(found) ? found : null;
|
|
106419
106419
|
};
|
|
106420
106420
|
}
|
|
106421
|
-
var value = Reflect.get(target, prop,
|
|
106421
|
+
var value = Reflect.get(target, prop, target);
|
|
106422
106422
|
return typeof value === "function" ? value.bind(target) : value;
|
|
106423
106423
|
},
|
|
106424
106424
|
})
|
|
@@ -106432,10 +106432,10 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
106432
106432
|
if (!__hfTimelineRegistryProxy) {
|
|
106433
106433
|
__hfTimelineRegistryProxy = new Proxy(window.__timelines, {
|
|
106434
106434
|
get: function(target, prop, receiver) {
|
|
106435
|
-
return Reflect.get(target, prop === __hfCompId ? __hfTimelineCompId : prop,
|
|
106435
|
+
return Reflect.get(target, prop === __hfCompId ? __hfTimelineCompId : prop, target);
|
|
106436
106436
|
},
|
|
106437
106437
|
set: function(target, prop, value, receiver) {
|
|
106438
|
-
return Reflect.set(target, prop === __hfCompId ? __hfTimelineCompId : prop, value,
|
|
106438
|
+
return Reflect.set(target, prop === __hfCompId ? __hfTimelineCompId : prop, value, target);
|
|
106439
106439
|
},
|
|
106440
106440
|
});
|
|
106441
106441
|
}
|
|
@@ -106445,7 +106445,7 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
106445
106445
|
? new Proxy(window, {
|
|
106446
106446
|
get: function(target, prop, receiver) {
|
|
106447
106447
|
if (prop === "__timelines") return __hfGetTimelineRegistry();
|
|
106448
|
-
var value = Reflect.get(target, prop,
|
|
106448
|
+
var value = Reflect.get(target, prop, target);
|
|
106449
106449
|
return typeof value === "function" ? value.bind(target) : value;
|
|
106450
106450
|
},
|
|
106451
106451
|
set: function(target, prop, value, receiver) {
|
|
@@ -106454,7 +106454,7 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
106454
106454
|
__hfTimelineRegistryProxy = null;
|
|
106455
106455
|
return true;
|
|
106456
106456
|
}
|
|
106457
|
-
return Reflect.set(target, prop, value,
|
|
106457
|
+
return Reflect.set(target, prop, value, target);
|
|
106458
106458
|
},
|
|
106459
106459
|
})
|
|
106460
106460
|
: window;
|
|
@@ -106518,12 +106518,12 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
106518
106518
|
};
|
|
106519
106519
|
};
|
|
106520
106520
|
}
|
|
106521
|
-
var value = Reflect.get(utilsTarget, utilsProp,
|
|
106521
|
+
var value = Reflect.get(utilsTarget, utilsProp, utilsTarget);
|
|
106522
106522
|
return typeof value === "function" ? value.bind(utilsTarget) : value;
|
|
106523
106523
|
},
|
|
106524
106524
|
});
|
|
106525
106525
|
}
|
|
106526
|
-
var value = Reflect.get(target, prop,
|
|
106526
|
+
var value = Reflect.get(target, prop, target);
|
|
106527
106527
|
return typeof value === "function" ? value.bind(target) : value;
|
|
106528
106528
|
},
|
|
106529
106529
|
});
|