@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.js CHANGED
@@ -4394,7 +4394,8 @@ function OhhwellsBridge() {
4394
4394
  e.dataTransfer.dropEffect = "copy";
4395
4395
  if (hoveredImageRef.current !== el) {
4396
4396
  hoveredImageRef.current = el;
4397
- postImageHover(el, true);
4397
+ const isStateCard = !!el.closest("[data-ohw-editable-state]");
4398
+ postImageHover(el, true, isStateCard ? true : void 0);
4398
4399
  }
4399
4400
  };
4400
4401
  const handleDragLeave = (e) => {