@riddledc/riddle-proof 0.7.160 → 0.7.161
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/{chunk-MV7UM4EV.js → chunk-ZE2U5EML.js} +62 -9
- package/dist/cli.cjs +62 -9
- package/dist/cli.js +1 -1
- package/dist/index.cjs +62 -9
- package/dist/index.js +1 -1
- package/dist/profile.cjs +62 -9
- package/dist/profile.js +1 -1
- package/dist/proof-run-engine.d.cts +3 -3
- package/dist/proof-run-engine.d.ts +3 -3
- package/package.json +1 -1
|
@@ -5750,6 +5750,54 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
5750
5750
|
const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
5751
5751
|
const rect = element.getBoundingClientRect();
|
|
5752
5752
|
const pointerId = payload.pointerType === "touch" ? 11 : 12;
|
|
5753
|
+
const capturedPointers = new Set();
|
|
5754
|
+
const originalOwnSetPointerCapture = Object.getOwnPropertyDescriptor(element, "setPointerCapture");
|
|
5755
|
+
const originalOwnReleasePointerCapture = Object.getOwnPropertyDescriptor(element, "releasePointerCapture");
|
|
5756
|
+
const originalOwnHasPointerCapture = Object.getOwnPropertyDescriptor(element, "hasPointerCapture");
|
|
5757
|
+
const originalSetPointerCapture = typeof element.setPointerCapture === "function" ? element.setPointerCapture.bind(element) : undefined;
|
|
5758
|
+
const originalReleasePointerCapture = typeof element.releasePointerCapture === "function" ? element.releasePointerCapture.bind(element) : undefined;
|
|
5759
|
+
const originalHasPointerCapture = typeof element.hasPointerCapture === "function" ? element.hasPointerCapture.bind(element) : undefined;
|
|
5760
|
+
const restorePointerCapture = () => {
|
|
5761
|
+
if (originalOwnSetPointerCapture) Object.defineProperty(element, "setPointerCapture", originalOwnSetPointerCapture);
|
|
5762
|
+
else delete (element as any).setPointerCapture;
|
|
5763
|
+
if (originalOwnReleasePointerCapture) Object.defineProperty(element, "releasePointerCapture", originalOwnReleasePointerCapture);
|
|
5764
|
+
else delete (element as any).releasePointerCapture;
|
|
5765
|
+
if (originalOwnHasPointerCapture) Object.defineProperty(element, "hasPointerCapture", originalOwnHasPointerCapture);
|
|
5766
|
+
else delete (element as any).hasPointerCapture;
|
|
5767
|
+
};
|
|
5768
|
+
Object.defineProperty(element, "setPointerCapture", {
|
|
5769
|
+
configurable: true,
|
|
5770
|
+
value: (activePointerId) => {
|
|
5771
|
+
capturedPointers.add(activePointerId);
|
|
5772
|
+
try {
|
|
5773
|
+
return originalSetPointerCapture?.(activePointerId);
|
|
5774
|
+
} catch {
|
|
5775
|
+
return undefined;
|
|
5776
|
+
}
|
|
5777
|
+
},
|
|
5778
|
+
});
|
|
5779
|
+
Object.defineProperty(element, "releasePointerCapture", {
|
|
5780
|
+
configurable: true,
|
|
5781
|
+
value: (activePointerId) => {
|
|
5782
|
+
capturedPointers.delete(activePointerId);
|
|
5783
|
+
try {
|
|
5784
|
+
return originalReleasePointerCapture?.(activePointerId);
|
|
5785
|
+
} catch {
|
|
5786
|
+
return undefined;
|
|
5787
|
+
}
|
|
5788
|
+
},
|
|
5789
|
+
});
|
|
5790
|
+
Object.defineProperty(element, "hasPointerCapture", {
|
|
5791
|
+
configurable: true,
|
|
5792
|
+
value: (activePointerId) => {
|
|
5793
|
+
if (capturedPointers.has(activePointerId)) return true;
|
|
5794
|
+
try {
|
|
5795
|
+
return Boolean(originalHasPointerCapture?.(activePointerId));
|
|
5796
|
+
} catch {
|
|
5797
|
+
return false;
|
|
5798
|
+
}
|
|
5799
|
+
},
|
|
5800
|
+
});
|
|
5753
5801
|
const point = (progress) => ({
|
|
5754
5802
|
clientX: rect.left + payload.start.x + (payload.end.x - payload.start.x) * progress,
|
|
5755
5803
|
clientY: rect.top + payload.start.y + (payload.end.y - payload.start.y) * progress,
|
|
@@ -5769,16 +5817,20 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
5769
5817
|
clientY: coords.clientY,
|
|
5770
5818
|
}));
|
|
5771
5819
|
};
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
|
|
5777
|
-
|
|
5820
|
+
try {
|
|
5821
|
+
dispatch("pointerover", 0);
|
|
5822
|
+
dispatch("pointerenter", 0);
|
|
5823
|
+
dispatch("pointerdown", 0);
|
|
5824
|
+
for (let step = 1; step <= payload.steps; step += 1) {
|
|
5825
|
+
dispatch("pointermove", step / payload.steps);
|
|
5826
|
+
if (payload.durationMs && payload.steps > 1) await wait(payload.durationMs / payload.steps);
|
|
5827
|
+
}
|
|
5828
|
+
dispatch("pointerup", 1);
|
|
5829
|
+
dispatch("pointerout", 1);
|
|
5830
|
+
dispatch("pointerleave", 1);
|
|
5831
|
+
} finally {
|
|
5832
|
+
restorePointerCapture();
|
|
5778
5833
|
}
|
|
5779
|
-
dispatch("pointerup", 1);
|
|
5780
|
-
dispatch("pointerout", 1);
|
|
5781
|
-
dispatch("pointerleave", 1);
|
|
5782
5834
|
}, {
|
|
5783
5835
|
pointerType,
|
|
5784
5836
|
start: localStart,
|
|
@@ -5818,6 +5870,7 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
5818
5870
|
to_x: toX,
|
|
5819
5871
|
to_y: toY,
|
|
5820
5872
|
pointer_type: pointerType,
|
|
5873
|
+
pointer_capture_polyfill: pointerType === "touch" || pointerType === "pen" ? true : undefined,
|
|
5821
5874
|
steps,
|
|
5822
5875
|
duration_ms: durationMs || undefined,
|
|
5823
5876
|
};
|
package/dist/cli.cjs
CHANGED
|
@@ -12691,6 +12691,54 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
12691
12691
|
const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
12692
12692
|
const rect = element.getBoundingClientRect();
|
|
12693
12693
|
const pointerId = payload.pointerType === "touch" ? 11 : 12;
|
|
12694
|
+
const capturedPointers = new Set();
|
|
12695
|
+
const originalOwnSetPointerCapture = Object.getOwnPropertyDescriptor(element, "setPointerCapture");
|
|
12696
|
+
const originalOwnReleasePointerCapture = Object.getOwnPropertyDescriptor(element, "releasePointerCapture");
|
|
12697
|
+
const originalOwnHasPointerCapture = Object.getOwnPropertyDescriptor(element, "hasPointerCapture");
|
|
12698
|
+
const originalSetPointerCapture = typeof element.setPointerCapture === "function" ? element.setPointerCapture.bind(element) : undefined;
|
|
12699
|
+
const originalReleasePointerCapture = typeof element.releasePointerCapture === "function" ? element.releasePointerCapture.bind(element) : undefined;
|
|
12700
|
+
const originalHasPointerCapture = typeof element.hasPointerCapture === "function" ? element.hasPointerCapture.bind(element) : undefined;
|
|
12701
|
+
const restorePointerCapture = () => {
|
|
12702
|
+
if (originalOwnSetPointerCapture) Object.defineProperty(element, "setPointerCapture", originalOwnSetPointerCapture);
|
|
12703
|
+
else delete (element as any).setPointerCapture;
|
|
12704
|
+
if (originalOwnReleasePointerCapture) Object.defineProperty(element, "releasePointerCapture", originalOwnReleasePointerCapture);
|
|
12705
|
+
else delete (element as any).releasePointerCapture;
|
|
12706
|
+
if (originalOwnHasPointerCapture) Object.defineProperty(element, "hasPointerCapture", originalOwnHasPointerCapture);
|
|
12707
|
+
else delete (element as any).hasPointerCapture;
|
|
12708
|
+
};
|
|
12709
|
+
Object.defineProperty(element, "setPointerCapture", {
|
|
12710
|
+
configurable: true,
|
|
12711
|
+
value: (activePointerId) => {
|
|
12712
|
+
capturedPointers.add(activePointerId);
|
|
12713
|
+
try {
|
|
12714
|
+
return originalSetPointerCapture?.(activePointerId);
|
|
12715
|
+
} catch {
|
|
12716
|
+
return undefined;
|
|
12717
|
+
}
|
|
12718
|
+
},
|
|
12719
|
+
});
|
|
12720
|
+
Object.defineProperty(element, "releasePointerCapture", {
|
|
12721
|
+
configurable: true,
|
|
12722
|
+
value: (activePointerId) => {
|
|
12723
|
+
capturedPointers.delete(activePointerId);
|
|
12724
|
+
try {
|
|
12725
|
+
return originalReleasePointerCapture?.(activePointerId);
|
|
12726
|
+
} catch {
|
|
12727
|
+
return undefined;
|
|
12728
|
+
}
|
|
12729
|
+
},
|
|
12730
|
+
});
|
|
12731
|
+
Object.defineProperty(element, "hasPointerCapture", {
|
|
12732
|
+
configurable: true,
|
|
12733
|
+
value: (activePointerId) => {
|
|
12734
|
+
if (capturedPointers.has(activePointerId)) return true;
|
|
12735
|
+
try {
|
|
12736
|
+
return Boolean(originalHasPointerCapture?.(activePointerId));
|
|
12737
|
+
} catch {
|
|
12738
|
+
return false;
|
|
12739
|
+
}
|
|
12740
|
+
},
|
|
12741
|
+
});
|
|
12694
12742
|
const point = (progress) => ({
|
|
12695
12743
|
clientX: rect.left + payload.start.x + (payload.end.x - payload.start.x) * progress,
|
|
12696
12744
|
clientY: rect.top + payload.start.y + (payload.end.y - payload.start.y) * progress,
|
|
@@ -12710,16 +12758,20 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
12710
12758
|
clientY: coords.clientY,
|
|
12711
12759
|
}));
|
|
12712
12760
|
};
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12716
|
-
|
|
12717
|
-
|
|
12718
|
-
|
|
12761
|
+
try {
|
|
12762
|
+
dispatch("pointerover", 0);
|
|
12763
|
+
dispatch("pointerenter", 0);
|
|
12764
|
+
dispatch("pointerdown", 0);
|
|
12765
|
+
for (let step = 1; step <= payload.steps; step += 1) {
|
|
12766
|
+
dispatch("pointermove", step / payload.steps);
|
|
12767
|
+
if (payload.durationMs && payload.steps > 1) await wait(payload.durationMs / payload.steps);
|
|
12768
|
+
}
|
|
12769
|
+
dispatch("pointerup", 1);
|
|
12770
|
+
dispatch("pointerout", 1);
|
|
12771
|
+
dispatch("pointerleave", 1);
|
|
12772
|
+
} finally {
|
|
12773
|
+
restorePointerCapture();
|
|
12719
12774
|
}
|
|
12720
|
-
dispatch("pointerup", 1);
|
|
12721
|
-
dispatch("pointerout", 1);
|
|
12722
|
-
dispatch("pointerleave", 1);
|
|
12723
12775
|
}, {
|
|
12724
12776
|
pointerType,
|
|
12725
12777
|
start: localStart,
|
|
@@ -12759,6 +12811,7 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
12759
12811
|
to_x: toX,
|
|
12760
12812
|
to_y: toY,
|
|
12761
12813
|
pointer_type: pointerType,
|
|
12814
|
+
pointer_capture_polyfill: pointerType === "touch" || pointerType === "pen" ? true : undefined,
|
|
12762
12815
|
steps,
|
|
12763
12816
|
duration_ms: durationMs || undefined,
|
|
12764
12817
|
};
|
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -14483,6 +14483,54 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
14483
14483
|
const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
14484
14484
|
const rect = element.getBoundingClientRect();
|
|
14485
14485
|
const pointerId = payload.pointerType === "touch" ? 11 : 12;
|
|
14486
|
+
const capturedPointers = new Set();
|
|
14487
|
+
const originalOwnSetPointerCapture = Object.getOwnPropertyDescriptor(element, "setPointerCapture");
|
|
14488
|
+
const originalOwnReleasePointerCapture = Object.getOwnPropertyDescriptor(element, "releasePointerCapture");
|
|
14489
|
+
const originalOwnHasPointerCapture = Object.getOwnPropertyDescriptor(element, "hasPointerCapture");
|
|
14490
|
+
const originalSetPointerCapture = typeof element.setPointerCapture === "function" ? element.setPointerCapture.bind(element) : undefined;
|
|
14491
|
+
const originalReleasePointerCapture = typeof element.releasePointerCapture === "function" ? element.releasePointerCapture.bind(element) : undefined;
|
|
14492
|
+
const originalHasPointerCapture = typeof element.hasPointerCapture === "function" ? element.hasPointerCapture.bind(element) : undefined;
|
|
14493
|
+
const restorePointerCapture = () => {
|
|
14494
|
+
if (originalOwnSetPointerCapture) Object.defineProperty(element, "setPointerCapture", originalOwnSetPointerCapture);
|
|
14495
|
+
else delete (element as any).setPointerCapture;
|
|
14496
|
+
if (originalOwnReleasePointerCapture) Object.defineProperty(element, "releasePointerCapture", originalOwnReleasePointerCapture);
|
|
14497
|
+
else delete (element as any).releasePointerCapture;
|
|
14498
|
+
if (originalOwnHasPointerCapture) Object.defineProperty(element, "hasPointerCapture", originalOwnHasPointerCapture);
|
|
14499
|
+
else delete (element as any).hasPointerCapture;
|
|
14500
|
+
};
|
|
14501
|
+
Object.defineProperty(element, "setPointerCapture", {
|
|
14502
|
+
configurable: true,
|
|
14503
|
+
value: (activePointerId) => {
|
|
14504
|
+
capturedPointers.add(activePointerId);
|
|
14505
|
+
try {
|
|
14506
|
+
return originalSetPointerCapture?.(activePointerId);
|
|
14507
|
+
} catch {
|
|
14508
|
+
return undefined;
|
|
14509
|
+
}
|
|
14510
|
+
},
|
|
14511
|
+
});
|
|
14512
|
+
Object.defineProperty(element, "releasePointerCapture", {
|
|
14513
|
+
configurable: true,
|
|
14514
|
+
value: (activePointerId) => {
|
|
14515
|
+
capturedPointers.delete(activePointerId);
|
|
14516
|
+
try {
|
|
14517
|
+
return originalReleasePointerCapture?.(activePointerId);
|
|
14518
|
+
} catch {
|
|
14519
|
+
return undefined;
|
|
14520
|
+
}
|
|
14521
|
+
},
|
|
14522
|
+
});
|
|
14523
|
+
Object.defineProperty(element, "hasPointerCapture", {
|
|
14524
|
+
configurable: true,
|
|
14525
|
+
value: (activePointerId) => {
|
|
14526
|
+
if (capturedPointers.has(activePointerId)) return true;
|
|
14527
|
+
try {
|
|
14528
|
+
return Boolean(originalHasPointerCapture?.(activePointerId));
|
|
14529
|
+
} catch {
|
|
14530
|
+
return false;
|
|
14531
|
+
}
|
|
14532
|
+
},
|
|
14533
|
+
});
|
|
14486
14534
|
const point = (progress) => ({
|
|
14487
14535
|
clientX: rect.left + payload.start.x + (payload.end.x - payload.start.x) * progress,
|
|
14488
14536
|
clientY: rect.top + payload.start.y + (payload.end.y - payload.start.y) * progress,
|
|
@@ -14502,16 +14550,20 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
14502
14550
|
clientY: coords.clientY,
|
|
14503
14551
|
}));
|
|
14504
14552
|
};
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
14508
|
-
|
|
14509
|
-
|
|
14510
|
-
|
|
14553
|
+
try {
|
|
14554
|
+
dispatch("pointerover", 0);
|
|
14555
|
+
dispatch("pointerenter", 0);
|
|
14556
|
+
dispatch("pointerdown", 0);
|
|
14557
|
+
for (let step = 1; step <= payload.steps; step += 1) {
|
|
14558
|
+
dispatch("pointermove", step / payload.steps);
|
|
14559
|
+
if (payload.durationMs && payload.steps > 1) await wait(payload.durationMs / payload.steps);
|
|
14560
|
+
}
|
|
14561
|
+
dispatch("pointerup", 1);
|
|
14562
|
+
dispatch("pointerout", 1);
|
|
14563
|
+
dispatch("pointerleave", 1);
|
|
14564
|
+
} finally {
|
|
14565
|
+
restorePointerCapture();
|
|
14511
14566
|
}
|
|
14512
|
-
dispatch("pointerup", 1);
|
|
14513
|
-
dispatch("pointerout", 1);
|
|
14514
|
-
dispatch("pointerleave", 1);
|
|
14515
14567
|
}, {
|
|
14516
14568
|
pointerType,
|
|
14517
14569
|
start: localStart,
|
|
@@ -14551,6 +14603,7 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
14551
14603
|
to_x: toX,
|
|
14552
14604
|
to_y: toY,
|
|
14553
14605
|
pointer_type: pointerType,
|
|
14606
|
+
pointer_capture_polyfill: pointerType === "touch" || pointerType === "pen" ? true : undefined,
|
|
14554
14607
|
steps,
|
|
14555
14608
|
duration_ms: durationMs || undefined,
|
|
14556
14609
|
};
|
package/dist/index.js
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
resolveRiddleProofProfileTimeoutSec,
|
|
63
63
|
slugifyRiddleProofProfileName,
|
|
64
64
|
summarizeRiddleProofProfileResult
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-ZE2U5EML.js";
|
|
66
66
|
import {
|
|
67
67
|
DEFAULT_RIDDLE_API_BASE_URL,
|
|
68
68
|
DEFAULT_RIDDLE_API_KEY_FILE,
|
package/dist/profile.cjs
CHANGED
|
@@ -5797,6 +5797,54 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
5797
5797
|
const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
5798
5798
|
const rect = element.getBoundingClientRect();
|
|
5799
5799
|
const pointerId = payload.pointerType === "touch" ? 11 : 12;
|
|
5800
|
+
const capturedPointers = new Set();
|
|
5801
|
+
const originalOwnSetPointerCapture = Object.getOwnPropertyDescriptor(element, "setPointerCapture");
|
|
5802
|
+
const originalOwnReleasePointerCapture = Object.getOwnPropertyDescriptor(element, "releasePointerCapture");
|
|
5803
|
+
const originalOwnHasPointerCapture = Object.getOwnPropertyDescriptor(element, "hasPointerCapture");
|
|
5804
|
+
const originalSetPointerCapture = typeof element.setPointerCapture === "function" ? element.setPointerCapture.bind(element) : undefined;
|
|
5805
|
+
const originalReleasePointerCapture = typeof element.releasePointerCapture === "function" ? element.releasePointerCapture.bind(element) : undefined;
|
|
5806
|
+
const originalHasPointerCapture = typeof element.hasPointerCapture === "function" ? element.hasPointerCapture.bind(element) : undefined;
|
|
5807
|
+
const restorePointerCapture = () => {
|
|
5808
|
+
if (originalOwnSetPointerCapture) Object.defineProperty(element, "setPointerCapture", originalOwnSetPointerCapture);
|
|
5809
|
+
else delete (element as any).setPointerCapture;
|
|
5810
|
+
if (originalOwnReleasePointerCapture) Object.defineProperty(element, "releasePointerCapture", originalOwnReleasePointerCapture);
|
|
5811
|
+
else delete (element as any).releasePointerCapture;
|
|
5812
|
+
if (originalOwnHasPointerCapture) Object.defineProperty(element, "hasPointerCapture", originalOwnHasPointerCapture);
|
|
5813
|
+
else delete (element as any).hasPointerCapture;
|
|
5814
|
+
};
|
|
5815
|
+
Object.defineProperty(element, "setPointerCapture", {
|
|
5816
|
+
configurable: true,
|
|
5817
|
+
value: (activePointerId) => {
|
|
5818
|
+
capturedPointers.add(activePointerId);
|
|
5819
|
+
try {
|
|
5820
|
+
return originalSetPointerCapture?.(activePointerId);
|
|
5821
|
+
} catch {
|
|
5822
|
+
return undefined;
|
|
5823
|
+
}
|
|
5824
|
+
},
|
|
5825
|
+
});
|
|
5826
|
+
Object.defineProperty(element, "releasePointerCapture", {
|
|
5827
|
+
configurable: true,
|
|
5828
|
+
value: (activePointerId) => {
|
|
5829
|
+
capturedPointers.delete(activePointerId);
|
|
5830
|
+
try {
|
|
5831
|
+
return originalReleasePointerCapture?.(activePointerId);
|
|
5832
|
+
} catch {
|
|
5833
|
+
return undefined;
|
|
5834
|
+
}
|
|
5835
|
+
},
|
|
5836
|
+
});
|
|
5837
|
+
Object.defineProperty(element, "hasPointerCapture", {
|
|
5838
|
+
configurable: true,
|
|
5839
|
+
value: (activePointerId) => {
|
|
5840
|
+
if (capturedPointers.has(activePointerId)) return true;
|
|
5841
|
+
try {
|
|
5842
|
+
return Boolean(originalHasPointerCapture?.(activePointerId));
|
|
5843
|
+
} catch {
|
|
5844
|
+
return false;
|
|
5845
|
+
}
|
|
5846
|
+
},
|
|
5847
|
+
});
|
|
5800
5848
|
const point = (progress) => ({
|
|
5801
5849
|
clientX: rect.left + payload.start.x + (payload.end.x - payload.start.x) * progress,
|
|
5802
5850
|
clientY: rect.top + payload.start.y + (payload.end.y - payload.start.y) * progress,
|
|
@@ -5816,16 +5864,20 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
5816
5864
|
clientY: coords.clientY,
|
|
5817
5865
|
}));
|
|
5818
5866
|
};
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5867
|
+
try {
|
|
5868
|
+
dispatch("pointerover", 0);
|
|
5869
|
+
dispatch("pointerenter", 0);
|
|
5870
|
+
dispatch("pointerdown", 0);
|
|
5871
|
+
for (let step = 1; step <= payload.steps; step += 1) {
|
|
5872
|
+
dispatch("pointermove", step / payload.steps);
|
|
5873
|
+
if (payload.durationMs && payload.steps > 1) await wait(payload.durationMs / payload.steps);
|
|
5874
|
+
}
|
|
5875
|
+
dispatch("pointerup", 1);
|
|
5876
|
+
dispatch("pointerout", 1);
|
|
5877
|
+
dispatch("pointerleave", 1);
|
|
5878
|
+
} finally {
|
|
5879
|
+
restorePointerCapture();
|
|
5825
5880
|
}
|
|
5826
|
-
dispatch("pointerup", 1);
|
|
5827
|
-
dispatch("pointerout", 1);
|
|
5828
|
-
dispatch("pointerleave", 1);
|
|
5829
5881
|
}, {
|
|
5830
5882
|
pointerType,
|
|
5831
5883
|
start: localStart,
|
|
@@ -5865,6 +5917,7 @@ async function executeSetupAction(action, ordinal, viewport) {
|
|
|
5865
5917
|
to_x: toX,
|
|
5866
5918
|
to_y: toY,
|
|
5867
5919
|
pointer_type: pointerType,
|
|
5920
|
+
pointer_capture_polyfill: pointerType === "touch" || pointerType === "pen" ? true : undefined,
|
|
5868
5921
|
steps,
|
|
5869
5922
|
duration_ms: durationMs || undefined,
|
|
5870
5923
|
};
|
package/dist/profile.js
CHANGED
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
resolveRiddleProofProfileTimeoutSec,
|
|
24
24
|
slugifyRiddleProofProfileName,
|
|
25
25
|
summarizeRiddleProofProfileResult
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-ZE2U5EML.js";
|
|
27
27
|
export {
|
|
28
28
|
RIDDLE_PROOF_PROFILE_CHECK_TYPES,
|
|
29
29
|
RIDDLE_PROOF_PROFILE_EVIDENCE_VERSION,
|
|
@@ -292,7 +292,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
292
292
|
blocking?: boolean;
|
|
293
293
|
details?: Record<string, unknown>;
|
|
294
294
|
ok: boolean;
|
|
295
|
-
action: "
|
|
295
|
+
action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
|
|
296
296
|
state_path: string;
|
|
297
297
|
stage: any;
|
|
298
298
|
summary: string;
|
|
@@ -382,7 +382,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
382
382
|
continueWithStage?: WorkflowStage | null;
|
|
383
383
|
blocking?: boolean;
|
|
384
384
|
details?: Record<string, unknown>;
|
|
385
|
-
action: "
|
|
385
|
+
action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
|
|
386
386
|
state_path: string;
|
|
387
387
|
stage: any;
|
|
388
388
|
checkpoint: string;
|
|
@@ -659,7 +659,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
659
659
|
error?: undefined;
|
|
660
660
|
} | {
|
|
661
661
|
ok: boolean;
|
|
662
|
-
action: "
|
|
662
|
+
action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
|
|
663
663
|
state_path: string;
|
|
664
664
|
stage: any;
|
|
665
665
|
summary: string;
|
|
@@ -292,7 +292,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
292
292
|
blocking?: boolean;
|
|
293
293
|
details?: Record<string, unknown>;
|
|
294
294
|
ok: boolean;
|
|
295
|
-
action: "
|
|
295
|
+
action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
|
|
296
296
|
state_path: string;
|
|
297
297
|
stage: any;
|
|
298
298
|
summary: string;
|
|
@@ -382,7 +382,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
382
382
|
continueWithStage?: WorkflowStage | null;
|
|
383
383
|
blocking?: boolean;
|
|
384
384
|
details?: Record<string, unknown>;
|
|
385
|
-
action: "
|
|
385
|
+
action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
|
|
386
386
|
state_path: string;
|
|
387
387
|
stage: any;
|
|
388
388
|
checkpoint: string;
|
|
@@ -659,7 +659,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
659
659
|
error?: undefined;
|
|
660
660
|
} | {
|
|
661
661
|
ok: boolean;
|
|
662
|
-
action: "
|
|
662
|
+
action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
|
|
663
663
|
state_path: string;
|
|
664
664
|
stage: any;
|
|
665
665
|
summary: string;
|