@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/index.js
CHANGED
|
@@ -103629,7 +103629,7 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
103629
103629
|
return found && __hfContains(found) ? found : null;
|
|
103630
103630
|
};
|
|
103631
103631
|
}
|
|
103632
|
-
var value = Reflect.get(target, prop,
|
|
103632
|
+
var value = Reflect.get(target, prop, target);
|
|
103633
103633
|
return typeof value === "function" ? value.bind(target) : value;
|
|
103634
103634
|
},
|
|
103635
103635
|
})
|
|
@@ -103643,10 +103643,10 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
103643
103643
|
if (!__hfTimelineRegistryProxy) {
|
|
103644
103644
|
__hfTimelineRegistryProxy = new Proxy(window.__timelines, {
|
|
103645
103645
|
get: function(target, prop, receiver) {
|
|
103646
|
-
return Reflect.get(target, prop === __hfCompId ? __hfTimelineCompId : prop,
|
|
103646
|
+
return Reflect.get(target, prop === __hfCompId ? __hfTimelineCompId : prop, target);
|
|
103647
103647
|
},
|
|
103648
103648
|
set: function(target, prop, value, receiver) {
|
|
103649
|
-
return Reflect.set(target, prop === __hfCompId ? __hfTimelineCompId : prop, value,
|
|
103649
|
+
return Reflect.set(target, prop === __hfCompId ? __hfTimelineCompId : prop, value, target);
|
|
103650
103650
|
},
|
|
103651
103651
|
});
|
|
103652
103652
|
}
|
|
@@ -103656,7 +103656,7 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
103656
103656
|
? new Proxy(window, {
|
|
103657
103657
|
get: function(target, prop, receiver) {
|
|
103658
103658
|
if (prop === "__timelines") return __hfGetTimelineRegistry();
|
|
103659
|
-
var value = Reflect.get(target, prop,
|
|
103659
|
+
var value = Reflect.get(target, prop, target);
|
|
103660
103660
|
return typeof value === "function" ? value.bind(target) : value;
|
|
103661
103661
|
},
|
|
103662
103662
|
set: function(target, prop, value, receiver) {
|
|
@@ -103665,7 +103665,7 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
103665
103665
|
__hfTimelineRegistryProxy = null;
|
|
103666
103666
|
return true;
|
|
103667
103667
|
}
|
|
103668
|
-
return Reflect.set(target, prop, value,
|
|
103668
|
+
return Reflect.set(target, prop, value, target);
|
|
103669
103669
|
},
|
|
103670
103670
|
})
|
|
103671
103671
|
: window;
|
|
@@ -103729,12 +103729,12 @@ function wrapScopedCompositionScript(source2, compositionId, errorLabel = "[Hype
|
|
|
103729
103729
|
};
|
|
103730
103730
|
};
|
|
103731
103731
|
}
|
|
103732
|
-
var value = Reflect.get(utilsTarget, utilsProp,
|
|
103732
|
+
var value = Reflect.get(utilsTarget, utilsProp, utilsTarget);
|
|
103733
103733
|
return typeof value === "function" ? value.bind(utilsTarget) : value;
|
|
103734
103734
|
},
|
|
103735
103735
|
});
|
|
103736
103736
|
}
|
|
103737
|
-
var value = Reflect.get(target, prop,
|
|
103737
|
+
var value = Reflect.get(target, prop, target);
|
|
103738
103738
|
return typeof value === "function" ? value.bind(target) : value;
|
|
103739
103739
|
},
|
|
103740
103740
|
});
|