@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.js
CHANGED
|
@@ -632,6 +632,7 @@ function FeedbackProviderInner({
|
|
|
632
632
|
const target = event.target;
|
|
633
633
|
if (!(target instanceof Element)) return;
|
|
634
634
|
if (!target.closest('[data-ew-feedback-interactive="true"]')) return;
|
|
635
|
+
if (target.closest("[data-ew-launcher]")) return;
|
|
635
636
|
event.stopPropagation();
|
|
636
637
|
};
|
|
637
638
|
window.addEventListener("pointerdown", handleSdkPointerDownCapture, true);
|
|
@@ -2360,6 +2361,7 @@ function FeedbackButton({ position = "bottom-right" }) {
|
|
|
2360
2361
|
{
|
|
2361
2362
|
ref: menuRef,
|
|
2362
2363
|
"data-ew-feedback-interactive": "true",
|
|
2364
|
+
"data-ew-launcher": true,
|
|
2363
2365
|
style: { ...wrapperStyle, touchAction: "none" },
|
|
2364
2366
|
onPointerDown: handlePointerDown,
|
|
2365
2367
|
onPointerMove: handlePointerMove,
|