@ohhwells/bridge 0.1.11 → 0.1.12

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 CHANGED
@@ -4433,7 +4433,8 @@ function OhhwellsBridge() {
4433
4433
  e.dataTransfer.dropEffect = "copy";
4434
4434
  if (hoveredImageRef.current !== el) {
4435
4435
  hoveredImageRef.current = el;
4436
- postImageHover(el, true);
4436
+ const isStateCard = !!el.closest("[data-ohw-editable-state]");
4437
+ postImageHover(el, true, isStateCard ? true : void 0);
4437
4438
  }
4438
4439
  };
4439
4440
  const handleDragLeave = (e) => {