@sylergydigital/issue-pin-sdk 0.6.6 → 0.6.7
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.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -682,6 +682,7 @@ function FeedbackProviderInner({
|
|
|
682
682
|
const target = event.target;
|
|
683
683
|
if (!(target instanceof Element)) return;
|
|
684
684
|
if (!target.closest('[data-ew-feedback-interactive="true"]')) return;
|
|
685
|
+
if (target.closest("[data-ew-launcher]")) return;
|
|
685
686
|
event.stopPropagation();
|
|
686
687
|
};
|
|
687
688
|
window.addEventListener("pointerdown", handleSdkPointerDownCapture, true);
|
|
@@ -2410,6 +2411,7 @@ function FeedbackButton({ position = "bottom-right" }) {
|
|
|
2410
2411
|
{
|
|
2411
2412
|
ref: menuRef,
|
|
2412
2413
|
"data-ew-feedback-interactive": "true",
|
|
2414
|
+
"data-ew-launcher": true,
|
|
2413
2415
|
style: { ...wrapperStyle, touchAction: "none" },
|
|
2414
2416
|
onPointerDown: handlePointerDown,
|
|
2415
2417
|
onPointerMove: handlePointerMove,
|