pxengine 0.1.133 → 0.1.134

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.mjs CHANGED
@@ -16183,7 +16183,7 @@ var FullscreenModal = ({ url, title, slideCount, initialSlide = 1, onClose }) =>
16183
16183
  newSlide = currentSlide <= 1 ? totalSlides : currentSlide - 1;
16184
16184
  }
16185
16185
  setCurrentSlide(newSlide);
16186
- iframe.contentWindow.postMessage({ type: command }, "*");
16186
+ iframe.contentWindow.postMessage({ type: "goToSlide", slide: newSlide }, "*");
16187
16187
  };
16188
16188
  return /* @__PURE__ */ jsxs109("div", { className: "fixed inset-0 z-50 bg-black flex flex-col", children: [
16189
16189
  /* @__PURE__ */ jsxs109("div", { className: "flex items-center justify-between gap-4 px-4 h-11 bg-zinc-950/90 border-b border-zinc-800/60 flex-shrink-0", children: [
@@ -16396,7 +16396,7 @@ var PresentationJobCard = ({
16396
16396
  newSlide = currentSlide <= 1 ? totalSlides : currentSlide - 1;
16397
16397
  }
16398
16398
  setCurrentSlide(newSlide);
16399
- iframe.contentWindow.postMessage({ type: command }, "*");
16399
+ iframe.contentWindow.postMessage({ type: "goToSlide", slide: newSlide }, "*");
16400
16400
  };
16401
16401
  const isTerminal = status === "complete" || status === "failed";
16402
16402
  const building = Boolean(outlineWritePollUrl) || approvingOutline;