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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1 -1
- package/package.json +1 -1
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:
|
|
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:
|
|
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;
|