@opensteer/engine-abp 0.8.0 → 0.8.1
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/README.md +4 -0
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3409,7 +3409,10 @@ var BUILD_LIVE_REPLAY_PATH_SOURCE = String.raw`(target, policy) => {
|
|
|
3409
3409
|
function createAbpDomActionBridge(context) {
|
|
3410
3410
|
return {
|
|
3411
3411
|
async buildReplayPath(locator) {
|
|
3412
|
-
const { controller, document, backendNodeId } = await prepareLiveNodeContext(
|
|
3412
|
+
const { controller, document, backendNodeId } = await prepareLiveNodeContext(
|
|
3413
|
+
context,
|
|
3414
|
+
locator
|
|
3415
|
+
);
|
|
3413
3416
|
return withTemporaryExecutionResume(context, controller, async () => {
|
|
3414
3417
|
const raw = await callNodeValueFunction(controller, document, locator, backendNodeId, {
|
|
3415
3418
|
functionDeclaration: BUILD_LIVE_REPLAY_PATH_DECLARATION,
|