@marimo-team/islands 0.23.15-dev4 → 0.23.15-dev40

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.
Files changed (92) hide show
  1. package/dist/{ConnectedDataExplorerComponent-CU4fZJzG.js → ConnectedDataExplorerComponent-7p7rt9iw.js} +4 -4
  2. package/dist/{ErrorBoundary-DE6tzZf-.js → ErrorBoundary-B_CAG7_e.js} +1 -1
  3. package/dist/{ImageComparisonComponent-CHrI72em.js → ImageComparisonComponent-1i5IBhon.js} +173 -129
  4. package/dist/assets/__vite-browser-external-CjNAy01L.js +1 -0
  5. package/dist/assets/worker-B3XPCb6y.js +98 -0
  6. package/dist/{chat-ui-DinOvbWu.js → chat-ui-C0z13gJB.js} +3111 -3111
  7. package/dist/{code-visibility-Dk8cVOny.js → code-visibility-CSsHnVZu.js} +946 -864
  8. package/dist/{constants-T20xxyNf.js → debounce-BOD3DbfP.js} +1 -24
  9. package/dist/{formats-Dzx4J_z1.js → formats-CitsMtUm.js} +1 -1
  10. package/dist/{glide-data-editor-CjTu7ukN.js → glide-data-editor-CwZz71BD.js} +3 -3
  11. package/dist/{html-to-image-_wGfk8V-.js → html-to-image-CEo5pRYw.js} +2291 -2250
  12. package/dist/{input-DtsN7xm-.js → input-BGPrFH3g.js} +2 -2
  13. package/dist/main.js +1297 -1201
  14. package/dist/{mermaid-BYqXy_NE.js → mermaid-UdmxG2PZ.js} +2 -2
  15. package/dist/{process-output-Mh4UrjwM.js → process-output-BOvvilRG.js} +1 -1
  16. package/dist/{reveal-component-B5DXLyO7.js → reveal-component-DGjJVNMQ.js} +618 -605
  17. package/dist/{spec-Cz-Bj1JI.js → spec-DSs9v0xx.js} +1 -1
  18. package/dist/style.css +1 -1
  19. package/dist/{toDate-CWNNlFEX.js → toDate-BRJgtOGm.js} +14 -5
  20. package/dist/{useAsyncData-KfHB8wQR.js → useAsyncData-BSOyAbac.js} +1 -1
  21. package/dist/{useDeepCompareMemoize-nJMtxhm4.js → useDeepCompareMemoize-BTLeWzuR.js} +1 -1
  22. package/dist/{useLifecycle-DegSo0lV.js → useLifecycle-C6wHjkhW.js} +1 -1
  23. package/dist/{useTheme-6eZ3GOTS.js → useTheme-Df_vGflw.js} +62 -27
  24. package/dist/{vega-component-DzyyM9fc.js → vega-component-BAvmvTjO.js} +6 -6
  25. package/package.json +1 -1
  26. package/src/components/chat/__tests__/chat-utils.test.ts +244 -1
  27. package/src/components/chat/__tests__/message-queue.test.tsx +121 -0
  28. package/src/components/chat/chat-panel.tsx +196 -67
  29. package/src/components/chat/chat-utils.ts +111 -2
  30. package/src/components/editor/SortableCell.tsx +6 -2
  31. package/src/components/editor/__tests__/output-persistence.test.tsx +241 -0
  32. package/src/components/editor/actions/__tests__/pair-with-agent-commands.test.ts +153 -0
  33. package/src/components/editor/actions/pair-with-agent-commands.ts +109 -0
  34. package/src/components/editor/actions/pair-with-agent-modal.tsx +20 -64
  35. package/src/components/editor/ai/add-cell-with-ai.tsx +14 -5
  36. package/src/components/editor/ai/ai-completion-editor.tsx +4 -1
  37. package/src/components/editor/cell/cell-context-menu.tsx +7 -0
  38. package/src/components/editor/chrome/panels/packages-panel.tsx +11 -1
  39. package/src/components/editor/columns/__tests__/cell-column.test.tsx +105 -0
  40. package/src/components/editor/columns/cell-column.tsx +34 -4
  41. package/src/components/editor/columns/sortable-column.tsx +24 -4
  42. package/src/components/editor/file-tree/download.ts +46 -0
  43. package/src/components/editor/file-tree/file-explorer.tsx +3 -21
  44. package/src/components/editor/file-tree/file-viewer.tsx +4 -27
  45. package/src/components/editor/navigation/__tests__/navigation.test.ts +33 -0
  46. package/src/components/editor/navigation/navigation.ts +8 -1
  47. package/src/components/editor/notebook-cell.tsx +203 -106
  48. package/src/components/editor/renderers/__tests__/cells-renderer.test.tsx +66 -0
  49. package/src/components/editor/renderers/cell-array.tsx +26 -13
  50. package/src/components/editor/renderers/cells-renderer.tsx +8 -2
  51. package/src/components/editor/renderers/slides-layout/__tests__/plugin.test.ts +29 -0
  52. package/src/components/editor/renderers/slides-layout/types.ts +4 -0
  53. package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +19 -19
  54. package/src/components/slides/reveal-component.tsx +37 -4
  55. package/src/components/slides/slide-form.tsx +72 -0
  56. package/src/components/ui/toast.tsx +11 -3
  57. package/src/components/ui/toaster.tsx +65 -9
  58. package/src/core/cells/__tests__/utils.test.ts +59 -0
  59. package/src/core/cells/utils.ts +51 -0
  60. package/src/core/codemirror/completion/__tests__/signature-hint.test.ts +97 -3
  61. package/src/core/codemirror/completion/signature-hint.ts +78 -11
  62. package/src/core/constants.ts +6 -0
  63. package/src/core/islands/__tests__/bridge.test.ts +341 -46
  64. package/src/core/islands/__tests__/main.test.ts +176 -0
  65. package/src/core/islands/__tests__/parse.test.ts +105 -0
  66. package/src/core/islands/bootstrap.ts +8 -3
  67. package/src/core/islands/bridge.ts +116 -23
  68. package/src/core/islands/components/__tests__/web-components.test.tsx +214 -0
  69. package/src/core/islands/components/web-components.tsx +76 -15
  70. package/src/core/islands/constants.ts +1 -0
  71. package/src/core/islands/main.ts +69 -3
  72. package/src/core/islands/parse.ts +70 -23
  73. package/src/core/islands/worker/__tests__/controller.test.ts +173 -0
  74. package/src/core/islands/worker/worker.tsx +145 -57
  75. package/src/core/runtime/__tests__/runtime.test.ts +64 -0
  76. package/src/core/runtime/runtime.ts +30 -10
  77. package/src/core/wasm/worker/bootstrap.ts +113 -20
  78. package/src/css/app/Cell.css +10 -0
  79. package/src/hooks/__tests__/useHotkey.test.tsx +88 -0
  80. package/src/hooks/useHotkey.ts +29 -4
  81. package/src/plugins/impl/anywidget/__tests__/host.test.ts +6 -9
  82. package/src/plugins/impl/anywidget/__tests__/widget-binding.test.ts +22 -61
  83. package/src/plugins/impl/anywidget/model-proxy.ts +0 -13
  84. package/src/plugins/impl/anywidget/widget-binding.ts +4 -34
  85. package/src/plugins/impl/image-comparison/ImageComparisonComponent.tsx +53 -2
  86. package/src/plugins/impl/image-comparison/__tests__/ImageComparisonComponent.test.tsx +71 -0
  87. package/src/plugins/impl/matplotlib/__tests__/matplotlib-renderer.test.ts +71 -3
  88. package/src/plugins/impl/matplotlib/matplotlib-renderer.ts +1 -0
  89. package/src/theme/__tests__/useTheme.test.ts +68 -0
  90. package/src/theme/useTheme.ts +16 -1
  91. package/dist/assets/__vite-browser-external-BQCLNwri.js +0 -1
  92. package/dist/assets/worker-DAWRHcPq.js +0 -73
@@ -6,17 +6,17 @@ import { s as __toESM } from "./chunk-BNovOVIE.js";
6
6
  import { _ as Logger, g as cn, h as Events, l as useEventListener, t as Button } from "./button-BacYv-bE.js";
7
7
  import { t as require_react } from "./react-DA-nE2FX.js";
8
8
  import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
9
- import { lt as kioskModeAtom, pt as outputIsStale } from "./html-to-image-_wGfk8V-.js";
9
+ import { dt as kioskModeAtom, ht as outputIsStale } from "./html-to-image-CEo5pRYw.js";
10
10
  import "./chunk-5FQGJX7Z-BbqSm5gU.js";
11
11
  import { u as createLucideIcon } from "./dist--2Bqjvs0.js";
12
- import { a as DEFAULT_SLIDE_TYPE, c as Slide, ct as PanelGroup, i as DEFAULT_DECK_TRANSITION, lt as PanelResizeHandle, on as EyeOff, s as SlideSidebar, sn as Expand, st as Panel, t as useNotebookCodeAvailable, un as Code } from "./code-visibility-Dk8cVOny.js";
13
- import { X as useDebouncedCallback } from "./input-DtsN7xm-.js";
14
- import "./toDate-CWNNlFEX.js";
12
+ import { a as DEFAULT_DECK_VERTICAL_ALIGN, c as SlideSidebar, cn as Expand, ct as Panel, dn as Code, i as DEFAULT_DECK_TRANSITION, l as Slide, lt as PanelGroup, o as DEFAULT_SLIDE_TYPE, sn as EyeOff, t as useNotebookCodeAvailable, ut as PanelResizeHandle } from "./code-visibility-CSsHnVZu.js";
13
+ import { X as useDebouncedCallback } from "./input-BGPrFH3g.js";
14
+ import "./toDate-BRJgtOGm.js";
15
15
  import "./react-dom-BTJzcVJ9.js";
16
16
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
17
17
  import { X as useFullScreenElement } from "./zod-CijjQh4u.js";
18
18
  import { t as Tooltip } from "./tooltip-Czds6Qr8.js";
19
- import { D as useEvent_default, g as isIslands, y as useAtomValue } from "./useTheme-6eZ3GOTS.js";
19
+ import { A as useEvent_default, S as useAtomValue, y as isIslands } from "./useTheme-Df_vGflw.js";
20
20
  import "./dist-U4F-tbMs.js";
21
21
  import "./main-Tj_-QTyF.js";
22
22
  import "./dist-Dv_Y15yk.js";
@@ -151,52 +151,52 @@ var StickyNote = createLucideIcon("sticky-note", [["path", {
151
151
  return !e7.styleComputed;
152
152
  })).forEach((function(e7) {
153
153
  e7.styleComputed = p(e7);
154
- })), e6.filter(oo).forEach(so);
155
- var t2 = e6.filter(ao);
156
- t2.forEach(io), t2.forEach((function(e7) {
157
- so(e7), f(e7);
158
- })), t2.forEach(co);
154
+ })), e6.filter(co).forEach(lo);
155
+ var t2 = e6.filter(so);
156
+ t2.forEach(oo), t2.forEach((function(e7) {
157
+ lo(e7), f(e7);
158
+ })), t2.forEach(uo);
159
159
  }, f = function(e6) {
160
160
  return e6.dirty = n;
161
- }, io = function(e6) {
161
+ }, oo = function(e6) {
162
162
  e6.availableWidth = e6.element.parentNode.clientWidth, e6.currentWidth = e6.element.scrollWidth, e6.previousFontSize = e6.currentFontSize, e6.currentFontSize = Math.min(Math.max(e6.minSize, e6.availableWidth / e6.currentWidth * e6.previousFontSize), e6.maxSize), e6.whiteSpace = e6.multiLine && e6.currentFontSize === e6.minSize ? "normal" : "nowrap";
163
- }, ao = function(e6) {
163
+ }, so = function(e6) {
164
164
  return e6.dirty !== i || e6.dirty === i && e6.element.parentNode.clientWidth !== e6.availableWidth;
165
165
  }, p = function(t2) {
166
166
  var n2 = e5.getComputedStyle(t2.element, null);
167
167
  return t2.currentFontSize = parseFloat(n2.getPropertyValue("font-size")), t2.display = n2.getPropertyValue("display"), t2.whiteSpace = n2.getPropertyValue("white-space"), true;
168
- }, oo = function(e6) {
168
+ }, co = function(e6) {
169
169
  var t2 = false;
170
170
  return !e6.preStyleTestCompleted && (/inline-/.test(e6.display) || (t2 = true, e6.display = "inline-block"), e6.whiteSpace !== "nowrap" && (t2 = true, e6.whiteSpace = "nowrap"), e6.preStyleTestCompleted = true, t2);
171
- }, so = function(e6) {
171
+ }, lo = function(e6) {
172
172
  e6.element.style.whiteSpace = e6.whiteSpace, e6.element.style.display = e6.display, e6.element.style.fontSize = e6.currentFontSize + "px";
173
- }, co = function(e6) {
173
+ }, uo = function(e6) {
174
174
  e6.element.dispatchEvent(new CustomEvent("fit", { detail: {
175
175
  oldValue: e6.previousFontSize,
176
176
  newValue: e6.currentFontSize,
177
177
  scaleFactor: e6.currentFontSize / e6.previousFontSize
178
178
  } }));
179
- }, lo = function(e6, t2) {
179
+ }, fo = function(e6, t2) {
180
180
  return function(n2) {
181
181
  e6.dirty = t2, e6.active && c(n2);
182
182
  };
183
- }, uo = function(e6) {
183
+ }, po = function(e6) {
184
184
  return function() {
185
185
  o = o.filter((function(t2) {
186
186
  return t2.element !== e6.element;
187
187
  })), e6.observeMutations && e6.observer.disconnect(), e6.element.style.whiteSpace = e6.originalStyle.whiteSpace, e6.element.style.display = e6.originalStyle.display, e6.element.style.fontSize = e6.originalStyle.fontSize;
188
188
  };
189
- }, fo = function(e6) {
189
+ }, mo = function(e6) {
190
190
  return function() {
191
191
  e6.active || (e6.active = true, c());
192
192
  };
193
- }, po = function(e6) {
193
+ }, ho = function(e6) {
194
194
  return function() {
195
195
  return e6.active = false;
196
196
  };
197
- }, mo = function(e6) {
198
- e6.observeMutations && (e6.observer = new MutationObserver(lo(e6, r)), e6.observer.observe(e6.element, e6.observeMutations));
199
- }, ho = {
197
+ }, go = function(e6) {
198
+ e6.observeMutations && (e6.observer = new MutationObserver(fo(e6, r)), e6.observer.observe(e6.element, e6.observeMutations));
199
+ }, _o = {
200
200
  minSize: 16,
201
201
  maxSize: 512,
202
202
  multiLine: true,
@@ -205,18 +205,18 @@ var StickyNote = createLucideIcon("sticky-note", [["path", {
205
205
  childList: true,
206
206
  characterData: true
207
207
  }
208
- }, go = null, _o = function() {
209
- e5.clearTimeout(go), go = e5.setTimeout(l(i), bo.observeWindowDelay);
210
- }, vo = ["resize", "orientationchange"];
211
- return Object.defineProperty(bo, "observeWindow", { set: function(t2) {
208
+ }, vo = null, yo = function() {
209
+ e5.clearTimeout(vo), vo = e5.setTimeout(l(i), So.observeWindowDelay);
210
+ }, bo = ["resize", "orientationchange"];
211
+ return Object.defineProperty(So, "observeWindow", { set: function(t2) {
212
212
  var n2 = `${t2 ? "add" : "remove"}EventListener`;
213
- vo.forEach((function(t3) {
214
- e5[n2](t3, _o);
213
+ bo.forEach((function(t3) {
214
+ e5[n2](t3, yo);
215
215
  }));
216
- } }), bo.observeWindow = true, bo.observeWindowDelay = 100, bo.fitAll = l(a), bo;
216
+ } }), So.observeWindow = true, So.observeWindowDelay = 100, So.fitAll = l(a), So;
217
217
  }
218
- function yo(e6, t2) {
219
- var n2 = Object.assign({}, ho, t2), r2 = e6.map((function(e7) {
218
+ function xo(e6, t2) {
219
+ var n2 = Object.assign({}, _o, t2), r2 = e6.map((function(e7) {
220
220
  var t3 = Object.assign({}, n2, {
221
221
  element: e7,
222
222
  active: true
@@ -226,20 +226,20 @@ var StickyNote = createLucideIcon("sticky-note", [["path", {
226
226
  whiteSpace: e8.element.style.whiteSpace,
227
227
  display: e8.element.style.display,
228
228
  fontSize: e8.element.style.fontSize
229
- }, mo(e8), e8.newbie = true, e8.dirty = true, o.push(e8);
229
+ }, go(e8), e8.newbie = true, e8.dirty = true, o.push(e8);
230
230
  })(t3), {
231
231
  element: e7,
232
- fit: lo(t3, a),
233
- unfreeze: fo(t3),
234
- freeze: po(t3),
235
- unsubscribe: uo(t3)
232
+ fit: fo(t3, a),
233
+ unfreeze: mo(t3),
234
+ freeze: ho(t3),
235
+ unsubscribe: po(t3)
236
236
  };
237
237
  }));
238
238
  return c(), r2;
239
239
  }
240
- function bo(e6) {
240
+ function So(e6) {
241
241
  var n2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
242
- return typeof e6 == "string" ? yo(t(document.querySelectorAll(e6)), n2) : yo([e6], n2)[0];
242
+ return typeof e6 == "string" ? xo(t(document.querySelectorAll(e6)), n2) : xo([e6], n2)[0];
243
243
  }
244
244
  })(typeof window > "u" ? null : window), Ci = class {
245
245
  constructor(e5) {
@@ -671,8 +671,8 @@ var StickyNote = createLucideIcon("sticky-note", [["path", {
671
671
  r.length === 1 ? i = a = parseInt(r[0], 10) : (i = parseInt(r[0], 10), a = parseInt(r[1], 10));
672
672
  let o = this.element.offsetWidth, s = t.length, c, l;
673
673
  c = typeof this.Reveal.getConfig().parallaxBackgroundHorizontal == "number" ? this.Reveal.getConfig().parallaxBackgroundHorizontal : s > 1 ? (i - o) / (s - 1) : 0, l = c * e5.h * -1;
674
- let u = this.element.offsetHeight, f = n.length, io, ao;
675
- io = typeof this.Reveal.getConfig().parallaxBackgroundVertical == "number" ? this.Reveal.getConfig().parallaxBackgroundVertical : (a - u) / (f - 1), ao = f > 0 ? io * e5.v : 0, this.element.style.backgroundPosition = l + "px " + -ao + "px";
674
+ let u = this.element.offsetHeight, f = n.length, oo, so;
675
+ oo = typeof this.Reveal.getConfig().parallaxBackgroundVertical == "number" ? this.Reveal.getConfig().parallaxBackgroundVertical : (a - u) / (f - 1), so = f > 0 ? oo * e5.v : 0, this.element.style.backgroundPosition = l + "px " + -so + "px";
676
676
  }
677
677
  }
678
678
  destroy() {
@@ -1078,32 +1078,32 @@ var StickyNote = createLucideIcon("sticky-note", [["path", {
1078
1078
  e6 && e6.background && (l = e6.background);
1079
1079
  }
1080
1080
  yield new Promise(requestAnimationFrame), this.Reveal.layoutSlideContents(o, s), yield new Promise(requestAnimationFrame);
1081
- let u = t.map((e6) => e6.scrollHeight), f = [], io = t[0].parentNode, ao = 1;
1081
+ let u = t.map((e6) => e6.scrollHeight), f = [], oo = t[0].parentNode, so = 1;
1082
1082
  t.forEach(function(t2, r2) {
1083
1083
  if (t2.classList.contains("stack") === false) {
1084
- let c2 = (i - o) / 2, io2 = (a - s) / 2, p = u[r2], oo = Math.max(Math.ceil(p / a), 1);
1085
- oo = Math.min(oo, e5.pdfMaxPagesPerSlide), (oo === 1 && e5.center || t2.classList.contains("center")) && (io2 = Math.max((a - p) / 2, 0));
1086
- let so = document.createElement("div");
1087
- if (f.push(so), so.className = "pdf-page", so.style.height = (a + e5.pdfPageHeightOffset) * oo + "px", l && (so.style.background = l), so.appendChild(t2), t2.style.left = c2 + "px", t2.style.top = io2 + "px", t2.style.width = o + "px", this.Reveal.slideContent.layout(t2), t2.slideBackgroundElement && so.insertBefore(t2.slideBackgroundElement, t2), e5.showNotes) {
1084
+ let c2 = (i - o) / 2, oo2 = (a - s) / 2, p = u[r2], co = Math.max(Math.ceil(p / a), 1);
1085
+ co = Math.min(co, e5.pdfMaxPagesPerSlide), (co === 1 && e5.center || t2.classList.contains("center")) && (oo2 = Math.max((a - p) / 2, 0));
1086
+ let lo = document.createElement("div");
1087
+ if (f.push(lo), lo.className = "pdf-page", lo.style.height = (a + e5.pdfPageHeightOffset) * co + "px", l && (lo.style.background = l), lo.appendChild(t2), t2.style.left = c2 + "px", t2.style.top = oo2 + "px", t2.style.width = o + "px", this.Reveal.slideContent.layout(t2), t2.slideBackgroundElement && lo.insertBefore(t2.slideBackgroundElement, t2), e5.showNotes) {
1088
1088
  let n2 = this.Reveal.getSlideNotes(t2);
1089
1089
  if (n2) {
1090
1090
  let t3 = typeof e5.showNotes == "string" ? e5.showNotes : "inline", r3 = document.createElement("div");
1091
- r3.classList.add("speaker-notes"), r3.classList.add("speaker-notes-pdf"), r3.setAttribute("data-layout", t3), r3.innerHTML = n2, t3 === "separate-page" ? f.push(r3) : (r3.style.left = "8px", r3.style.bottom = "8px", r3.style.width = i - 16 + "px", so.appendChild(r3));
1091
+ r3.classList.add("speaker-notes"), r3.classList.add("speaker-notes-pdf"), r3.setAttribute("data-layout", t3), r3.innerHTML = n2, t3 === "separate-page" ? f.push(r3) : (r3.style.left = "8px", r3.style.bottom = "8px", r3.style.width = i - 16 + "px", lo.appendChild(r3));
1092
1092
  }
1093
1093
  }
1094
1094
  if (n) {
1095
1095
  let e6 = document.createElement("div");
1096
- e6.classList.add("slide-number"), e6.classList.add("slide-number-pdf"), e6.innerHTML = ao++, so.appendChild(e6);
1096
+ e6.classList.add("slide-number"), e6.classList.add("slide-number-pdf"), e6.innerHTML = so++, lo.appendChild(e6);
1097
1097
  }
1098
1098
  if (e5.pdfSeparateFragments) {
1099
- let e6 = this.Reveal.fragments.sort(so.querySelectorAll(".fragment"), true), t3;
1099
+ let e6 = this.Reveal.fragments.sort(lo.querySelectorAll(".fragment"), true), t3;
1100
1100
  e6.forEach(function(e7, r3) {
1101
1101
  t3 && t3.forEach(function(e8) {
1102
1102
  e8.classList.remove("current-fragment");
1103
1103
  }), e7.forEach(function(e8) {
1104
1104
  e8.classList.add("visible", "current-fragment");
1105
1105
  }, this);
1106
- let i2 = so.cloneNode(true);
1106
+ let i2 = lo.cloneNode(true);
1107
1107
  if (n) {
1108
1108
  let e8 = i2.querySelector(".slide-number-pdf"), t4 = r3 + 1;
1109
1109
  e8.innerHTML += "." + t4;
@@ -1114,11 +1114,11 @@ var StickyNote = createLucideIcon("sticky-note", [["path", {
1114
1114
  e8.classList.remove("visible", "current-fragment");
1115
1115
  });
1116
1116
  });
1117
- } else E$2(so, ".fragment:not(.fade-out)").forEach(function(e6) {
1117
+ } else E$2(lo, ".fragment:not(.fade-out)").forEach(function(e6) {
1118
1118
  e6.classList.add("visible");
1119
1119
  });
1120
1120
  }
1121
- }, this), yield new Promise(requestAnimationFrame), f.forEach((e6) => io.appendChild(e6)), this.Reveal.slideContent.layout(this.Reveal.getSlidesElement()), this.Reveal.dispatchEvent({ type: "pdf-ready" }), c.classList.remove("loading-scroll-mode");
1121
+ }, this), yield new Promise(requestAnimationFrame), f.forEach((e6) => oo.appendChild(e6)), this.Reveal.slideContent.layout(this.Reveal.getSlidesElement()), this.Reveal.dispatchEvent({ type: "pdf-ready" }), c.classList.remove("loading-scroll-mode");
1122
1122
  });
1123
1123
  }
1124
1124
  isActive() {
@@ -2100,22 +2100,22 @@ function Ut$1(e5, t) {
2100
2100
  let n = {}, r = {}, i = false, a = false, o, s, c, l, u = {
2101
2101
  hasNavigatedHorizontally: false,
2102
2102
  hasNavigatedVertically: false
2103
- }, f = [], io = 1, ao = {
2103
+ }, f = [], oo = 1, so = {
2104
2104
  layout: "",
2105
2105
  overview: ""
2106
- }, p = {}, oo = "idle", so = 0, co, lo = 0, uo = -1, fo = false, po = new Ci(n), mo = new Ii(n), ho = new Mi(n), go = new Hi(n), _o = new Bi(n), vo = new Oi(n), yo = new Ui(n), bo = new qi(n), xo = new Wi(n), So = new ji(n), Co = new Ki(n), wo = new _i(n), To = new $i(n), Eo = new Xi(n), Do = new Yi(n), Oo = new Gi(n), ko = new Qi(n), Ao = new Ji(n), No = new Zi(n);
2107
- function Po(a2) {
2106
+ }, p = {}, co = "idle", lo = 0, uo, fo = 0, po = -1, mo = false, ho = new Ci(n), go = new Ii(n), _o = new Mi(n), vo = new Hi(n), yo = new Bi(n), bo = new Oi(n), xo = new Ui(n), So = new qi(n), Co = new Wi(n), wo = new ji(n), To = new Ki(n), Eo = new _i(n), Do = new $i(n), Oo = new Xi(n), ko = new Yi(n), Ao = new Gi(n), jo = new Qi(n), Mo = new Ji(n), No = new Zi(n);
2107
+ function Io(a2) {
2108
2108
  if (!e5) throw 'Unable to find presentation root (<div class="reveal">).';
2109
2109
  if (i) throw "Reveal.js has already been initialized.";
2110
2110
  if (i = true, p.wrapper = e5, p.slides = e5.querySelector(".slides"), !p.slides) throw 'Unable to find slides container (<div class="slides">).';
2111
- return r = Q$2(Q$2(Q$2(Q$2(Q$2({}, ts), r), t), a2), Mt$1()), /print-pdf/gi.test(window.location.search) && (r.view = "print"), Bo(), window.addEventListener("load", bs, false), Do.load(r.plugins, r.dependencies).then(Ho), new Promise((e6) => n.on("ready", e6));
2111
+ return r = Q$2(Q$2(Q$2(Q$2(Q$2({}, ts), r), t), a2), Mt$1()), /print-pdf/gi.test(window.location.search) && (r.view = "print"), Lo(), window.addEventListener("load", Ss, false), ko.load(r.plugins, r.dependencies).then(Uo), new Promise((e6) => n.on("ready", e6));
2112
2112
  }
2113
- function Bo() {
2113
+ function Lo() {
2114
2114
  r.embedded === true ? p.viewport = V$1(e5, ".reveal-viewport") || e5 : (p.viewport = document.body, document.documentElement.classList.add("reveal-full-page")), p.viewport.classList.add("reveal-viewport");
2115
2115
  }
2116
- function Ho() {
2117
- i !== false && (a = true, qo(), Jo(), ls(), os(), cs(), Us(), us(), _o.update(true), Wo(), Co.readURL(), setTimeout(() => {
2118
- p.slides.classList.remove("no-transition"), p.wrapper.classList.add("ready"), _s({
2116
+ function Uo() {
2117
+ i !== false && (a = true, qo(), Xo(), ds(), is(), ls(), Gs(), fs(), yo.update(true), Go(), To.readURL(), setTimeout(() => {
2118
+ p.slides.classList.remove("no-transition"), p.wrapper.classList.add("ready"), ys({
2119
2119
  type: "ready",
2120
2120
  data: {
2121
2121
  indexh: o,
@@ -2125,9 +2125,9 @@ function Ut$1(e5, t) {
2125
2125
  });
2126
2126
  }, 1));
2127
2127
  }
2128
- function Wo() {
2128
+ function Go() {
2129
2129
  let e6 = r.view === "print", t2 = r.view === "scroll" || r.view === "reader";
2130
- (e6 || t2) && (e6 ? fs() : Ao.unbind(), p.viewport.classList.add("loading-scroll-mode"), e6 ? document.readyState === "complete" ? yo.activate() : window.addEventListener("load", () => yo.activate()) : vo.activate());
2130
+ (e6 || t2) && (e6 ? ms() : Mo.unbind(), p.viewport.classList.add("loading-scroll-mode"), e6 ? document.readyState === "complete" ? xo.activate() : window.addEventListener("load", () => xo.activate()) : bo.activate());
2131
2131
  }
2132
2132
  function qo() {
2133
2133
  r.showHiddenSlides || E$2(p.wrapper, 'section[data-visibility="hidden"]').forEach((e6) => {
@@ -2135,17 +2135,17 @@ function Ut$1(e5, t) {
2135
2135
  t2.childElementCount === 1 && /section/i.test(t2.nodeName) ? t2.remove() : e6.remove();
2136
2136
  });
2137
2137
  }
2138
- function Jo() {
2139
- p.slides.classList.add("no-transition"), le$2 ? p.wrapper.classList.add("no-hover") : p.wrapper.classList.remove("no-hover"), _o.render(), mo.render(), ho.render(), wo.render(), To.render(), No.render(), p.pauseOverlay = wi(p.wrapper, "div", "pause-overlay", r.controls ? '<button class="resume-button">Resume presentation</button>' : null), p.statusElement = Yo(), p.wrapper.setAttribute("role", "application");
2138
+ function Xo() {
2139
+ p.slides.classList.add("no-transition"), le$2 ? p.wrapper.classList.add("no-hover") : p.wrapper.classList.remove("no-hover"), yo.render(), go.render(), _o.render(), Eo.render(), Do.render(), No.render(), p.pauseOverlay = wi(p.wrapper, "div", "pause-overlay", r.controls ? '<button class="resume-button">Resume presentation</button>' : null), p.statusElement = Zo(), p.wrapper.setAttribute("role", "application");
2140
2140
  }
2141
- function Yo() {
2141
+ function Zo() {
2142
2142
  let e6 = p.wrapper.querySelector(".aria-status");
2143
2143
  return e6 || (e6 = document.createElement("div"), e6.style.position = "absolute", e6.style.height = "1px", e6.style.width = "1px", e6.style.overflow = "hidden", e6.style.clip = "rect( 1px, 1px, 1px, 1px )", e6.classList.add("aria-status"), e6.setAttribute("aria-live", "polite"), e6.setAttribute("aria-atomic", "true"), p.wrapper.appendChild(e6)), e6;
2144
2144
  }
2145
- function Xo(e6) {
2145
+ function Qo(e6) {
2146
2146
  p.statusElement.textContent = e6;
2147
2147
  }
2148
- function Qo(e6) {
2148
+ function $o(e6) {
2149
2149
  let t2 = "";
2150
2150
  if (e6.nodeType === 3) t2 += e6.textContent.trim();
2151
2151
  else if (e6.nodeType === 1) {
@@ -2153,10 +2153,10 @@ function Ut$1(e5, t) {
2153
2153
  if (n2 !== "true" && !r2) {
2154
2154
  if (e6.tagName === "IMG" || e6.tagName === "VIDEO") {
2155
2155
  let n3 = e6.getAttribute("alt");
2156
- n3 && (t2 += $o(n3));
2156
+ n3 && (t2 += rs(n3));
2157
2157
  }
2158
2158
  Array.from(e6.childNodes).forEach((e7) => {
2159
- t2 += Qo(e7);
2159
+ t2 += $o(e7);
2160
2160
  }), [
2161
2161
  "P",
2162
2162
  "DIV",
@@ -2170,58 +2170,58 @@ function Ut$1(e5, t) {
2170
2170
  "H5",
2171
2171
  "H6",
2172
2172
  "BLOCKQUOTE"
2173
- ].includes(e6.tagName) && t2.trim() !== "" && (t2 = $o(t2));
2173
+ ].includes(e6.tagName) && t2.trim() !== "" && (t2 = rs(t2));
2174
2174
  }
2175
2175
  }
2176
2176
  return t2 = t2.trim(), t2 === "" ? "" : t2 + " ";
2177
2177
  }
2178
- function $o(e6) {
2178
+ function rs(e6) {
2179
2179
  let t2 = e6.trim();
2180
2180
  return t2 === "" ? e6 : /[.!?]$/.test(t2) ? t2 : t2 + ".";
2181
2181
  }
2182
- function os() {
2182
+ function is() {
2183
2183
  setInterval(() => {
2184
- (!vo.isActive() && p.wrapper.scrollTop !== 0 || p.wrapper.scrollLeft !== 0) && (p.wrapper.scrollTop = 0, p.wrapper.scrollLeft = 0);
2184
+ (!bo.isActive() && p.wrapper.scrollTop !== 0 || p.wrapper.scrollLeft !== 0) && (p.wrapper.scrollTop = 0, p.wrapper.scrollLeft = 0);
2185
2185
  }, 1e3);
2186
2186
  }
2187
- function cs() {
2188
- document.addEventListener("fullscreenchange", Dc), document.addEventListener("webkitfullscreenchange", Dc);
2189
- }
2190
2187
  function ls() {
2191
- r.postMessage && window.addEventListener("message", Sc, false);
2188
+ document.addEventListener("fullscreenchange", kc), document.addEventListener("webkitfullscreenchange", kc);
2192
2189
  }
2193
- function us(e6) {
2190
+ function ds() {
2191
+ r.postMessage && window.addEventListener("message", wc, false);
2192
+ }
2193
+ function fs(e6) {
2194
2194
  let t2 = Q$2({}, r);
2195
2195
  if (typeof e6 == "object" && ge$1(r, e6), n.isReady() === false) return;
2196
2196
  let i2 = p.wrapper.querySelectorAll(de$1).length;
2197
- p.wrapper.classList.remove(t2.transition), p.wrapper.classList.add(r.transition), p.wrapper.setAttribute("data-transition-speed", r.transitionSpeed), p.wrapper.setAttribute("data-background-transition", r.backgroundTransition), p.viewport.style.setProperty("--slide-width", typeof r.width == "string" ? r.width : r.width + "px"), p.viewport.style.setProperty("--slide-height", typeof r.height == "string" ? r.height : r.height + "px"), r.shuffle && Ws(), Ke$1(p.wrapper, "embedded", r.embedded), Ke$1(p.wrapper, "rtl", r.rtl), Ke$1(p.wrapper, "center", r.center), r.pause === false && Ms(), go.reset(), co && (co = (co.destroy(), null)), i2 > 1 && r.autoSlide && r.autoSlideStoppable && (co = new es(p.wrapper, () => Math.min(Math.max((Date.now() - uo) / so, 0), 1)), co.on("click", Oc), fo = false), r.navigationMode === "default" ? p.wrapper.removeAttribute("data-navigation-mode") : p.wrapper.setAttribute("data-navigation-mode", r.navigationMode), No.configure(r, t2), ko.configure(r, t2), Eo.configure(r, t2), wo.configure(r, t2), To.configure(r, t2), So.configure(r, t2), bo.configure(r, t2), mo.configure(r, t2), Vs();
2197
+ p.wrapper.classList.remove(t2.transition), p.wrapper.classList.add(r.transition), p.wrapper.setAttribute("data-transition-speed", r.transitionSpeed), p.wrapper.setAttribute("data-background-transition", r.backgroundTransition), p.viewport.style.setProperty("--slide-width", typeof r.width == "string" ? r.width : r.width + "px"), p.viewport.style.setProperty("--slide-height", typeof r.height == "string" ? r.height : r.height + "px"), r.shuffle && Ks(), Ke$1(p.wrapper, "embedded", r.embedded), Ke$1(p.wrapper, "rtl", r.rtl), Ke$1(p.wrapper, "center", r.center), r.pause === false && Ps(), vo.reset(), uo && (uo = (uo.destroy(), null)), i2 > 1 && r.autoSlide && r.autoSlideStoppable && (uo = new es(p.wrapper, () => Math.min(Math.max((Date.now() - po) / lo, 0), 1)), uo.on("click", Ac), mo = false), r.navigationMode === "default" ? p.wrapper.removeAttribute("data-navigation-mode") : p.wrapper.setAttribute("data-navigation-mode", r.navigationMode), No.configure(r, t2), jo.configure(r, t2), Oo.configure(r, t2), Eo.configure(r, t2), Do.configure(r, t2), wo.configure(r, t2), So.configure(r, t2), go.configure(r, t2), Us();
2198
2198
  }
2199
- function ds() {
2200
- window.addEventListener("resize", Tc, false), r.touch && Ao.bind(), r.keyboard && So.bind(), r.progress && To.bind(), r.respondToHashChanges && Co.bind(), wo.bind(), ko.bind(), p.slides.addEventListener("click", wc, false), p.slides.addEventListener("transitionend", Cc, false), p.pauseOverlay.addEventListener("click", Ms, false), r.focusBodyOnPageVisibilityChange && document.addEventListener("visibilitychange", Ec, false);
2199
+ function ps() {
2200
+ window.addEventListener("resize", Dc, false), r.touch && Mo.bind(), r.keyboard && wo.bind(), r.progress && Do.bind(), r.respondToHashChanges && To.bind(), Eo.bind(), jo.bind(), p.slides.addEventListener("click", Ec, false), p.slides.addEventListener("transitionend", Tc, false), p.pauseOverlay.addEventListener("click", Ps, false), r.focusBodyOnPageVisibilityChange && document.addEventListener("visibilitychange", Oc, false);
2201
2201
  }
2202
- function fs() {
2203
- Ao.unbind(), ko.unbind(), So.unbind(), wo.unbind(), To.unbind(), Co.unbind(), window.removeEventListener("resize", Tc, false), p.slides.removeEventListener("click", wc, false), p.slides.removeEventListener("transitionend", Cc, false), p.pauseOverlay.removeEventListener("click", Ms, false);
2202
+ function ms() {
2203
+ Mo.unbind(), jo.unbind(), wo.unbind(), Eo.unbind(), Do.unbind(), To.unbind(), window.removeEventListener("resize", Dc, false), p.slides.removeEventListener("click", Ec, false), p.slides.removeEventListener("transitionend", Tc, false), p.pauseOverlay.removeEventListener("click", Ps, false);
2204
2204
  }
2205
- function ps() {
2206
- i = false, a !== false && (fs(), fc(), No.destroy(), ko.destroy(), Oo.destroy(), Do.destroy(), Eo.destroy(), wo.destroy(), To.destroy(), _o.destroy(), mo.destroy(), ho.destroy(), document.removeEventListener("fullscreenchange", Dc), document.removeEventListener("webkitfullscreenchange", Dc), document.removeEventListener("visibilitychange", Ec, false), window.removeEventListener("message", Sc, false), window.removeEventListener("load", bs, false), p.pauseOverlay && p.pauseOverlay.remove(), p.statusElement && p.statusElement.remove(), document.documentElement.classList.remove("reveal-full-page"), p.wrapper.classList.remove("ready", "center", "has-horizontal-slides", "has-vertical-slides"), p.wrapper.removeAttribute("data-transition-speed"), p.wrapper.removeAttribute("data-background-transition"), p.viewport.classList.remove("reveal-viewport"), p.viewport.style.removeProperty("--slide-width"), p.viewport.style.removeProperty("--slide-height"), p.slides.style.removeProperty("width"), p.slides.style.removeProperty("height"), p.slides.style.removeProperty("zoom"), p.slides.style.removeProperty("left"), p.slides.style.removeProperty("top"), p.slides.style.removeProperty("bottom"), p.slides.style.removeProperty("right"), p.slides.style.removeProperty("transform"), Array.from(p.wrapper.querySelectorAll(de$1)).forEach((e6) => {
2205
+ function hs() {
2206
+ i = false, a !== false && (ms(), mc(), No.destroy(), jo.destroy(), Ao.destroy(), ko.destroy(), Oo.destroy(), Eo.destroy(), Do.destroy(), yo.destroy(), go.destroy(), _o.destroy(), document.removeEventListener("fullscreenchange", kc), document.removeEventListener("webkitfullscreenchange", kc), document.removeEventListener("visibilitychange", Oc, false), window.removeEventListener("message", wc, false), window.removeEventListener("load", Ss, false), p.pauseOverlay && p.pauseOverlay.remove(), p.statusElement && p.statusElement.remove(), document.documentElement.classList.remove("reveal-full-page"), p.wrapper.classList.remove("ready", "center", "has-horizontal-slides", "has-vertical-slides"), p.wrapper.removeAttribute("data-transition-speed"), p.wrapper.removeAttribute("data-background-transition"), p.viewport.classList.remove("reveal-viewport"), p.viewport.style.removeProperty("--slide-width"), p.viewport.style.removeProperty("--slide-height"), p.slides.style.removeProperty("width"), p.slides.style.removeProperty("height"), p.slides.style.removeProperty("zoom"), p.slides.style.removeProperty("left"), p.slides.style.removeProperty("top"), p.slides.style.removeProperty("bottom"), p.slides.style.removeProperty("right"), p.slides.style.removeProperty("transform"), Array.from(p.wrapper.querySelectorAll(de$1)).forEach((e6) => {
2207
2207
  e6.style.removeProperty("display"), e6.style.removeProperty("top"), e6.removeAttribute("hidden"), e6.removeAttribute("aria-hidden");
2208
2208
  }));
2209
2209
  }
2210
- function ms(t2, n2, r2) {
2210
+ function gs(t2, n2, r2) {
2211
2211
  e5.addEventListener(t2, n2, r2);
2212
2212
  }
2213
- function hs(t2, n2, r2) {
2213
+ function _s(t2, n2, r2) {
2214
2214
  e5.removeEventListener(t2, n2, r2);
2215
2215
  }
2216
- function gs(e6) {
2217
- typeof e6.layout == "string" && (ao.layout = e6.layout), typeof e6.overview == "string" && (ao.overview = e6.overview), ao.layout ? ae$2(p.slides, ao.layout + " " + ao.overview) : ae$2(p.slides, ao.overview);
2216
+ function vs(e6) {
2217
+ typeof e6.layout == "string" && (so.layout = e6.layout), typeof e6.overview == "string" && (so.overview = e6.overview), so.layout ? ae$2(p.slides, so.layout + " " + so.overview) : ae$2(p.slides, so.overview);
2218
2218
  }
2219
- function _s({ target: e6 = p.wrapper, type: t2, data: n2, bubbles: r2 = true }) {
2219
+ function ys({ target: e6 = p.wrapper, type: t2, data: n2, bubbles: r2 = true }) {
2220
2220
  let i2 = document.createEvent("HTMLEvents", 1, 2);
2221
- return i2.initEvent(t2, r2, true), ge$1(i2, n2), e6.dispatchEvent(i2), e6 === p.wrapper && ys(t2), i2;
2221
+ return i2.initEvent(t2, r2, true), ge$1(i2, n2), e6.dispatchEvent(i2), e6 === p.wrapper && xs(t2), i2;
2222
2222
  }
2223
- function vs(e6) {
2224
- _s({
2223
+ function bs(e6) {
2224
+ ys({
2225
2225
  type: "slidechanged",
2226
2226
  data: {
2227
2227
  indexh: o,
@@ -2232,41 +2232,41 @@ function Ut$1(e5, t) {
2232
2232
  }
2233
2233
  });
2234
2234
  }
2235
- function ys(e6, t2) {
2235
+ function xs(e6, t2) {
2236
2236
  if (r.postMessageEvents && window.parent !== window.self) {
2237
2237
  let n2 = {
2238
2238
  namespace: "reveal",
2239
2239
  eventName: e6,
2240
- state: lc()
2240
+ state: dc()
2241
2241
  };
2242
2242
  ge$1(n2, t2), window.parent.postMessage(JSON.stringify(n2), "*");
2243
2243
  }
2244
2244
  }
2245
- function bs() {
2246
- if (p.wrapper && !yo.isActive()) {
2245
+ function Ss() {
2246
+ if (p.wrapper && !xo.isActive()) {
2247
2247
  let e6 = p.viewport.offsetWidth, t2 = p.viewport.offsetHeight;
2248
2248
  if (!r.disableLayout) {
2249
2249
  le$2 && !r.embedded && document.documentElement.style.setProperty("--vh", window.innerHeight * 0.01 + "px");
2250
- let n2 = vo.isActive() ? Cs(e6, t2) : Cs(), i2 = io;
2251
- xs(r.width, r.height), p.slides.style.width = n2.width + "px", p.slides.style.height = n2.height + "px", io = Math.min(n2.presentationWidth / n2.width, n2.presentationHeight / n2.height), io = Math.max(io, r.minScale), io = Math.min(io, r.maxScale), io === 1 || vo.isActive() ? (p.slides.style.zoom = "", p.slides.style.left = "", p.slides.style.top = "", p.slides.style.bottom = "", p.slides.style.right = "", gs({ layout: "" })) : (p.slides.style.zoom = "", p.slides.style.left = "50%", p.slides.style.top = "50%", p.slides.style.bottom = "auto", p.slides.style.right = "auto", gs({ layout: "translate(-50%, -50%) scale(" + io + ")" }));
2250
+ let n2 = bo.isActive() ? Ts(e6, t2) : Ts(), i2 = oo;
2251
+ Cs(r.width, r.height), p.slides.style.width = n2.width + "px", p.slides.style.height = n2.height + "px", oo = Math.min(n2.presentationWidth / n2.width, n2.presentationHeight / n2.height), oo = Math.max(oo, r.minScale), oo = Math.min(oo, r.maxScale), oo === 1 || bo.isActive() ? (p.slides.style.zoom = "", p.slides.style.left = "", p.slides.style.top = "", p.slides.style.bottom = "", p.slides.style.right = "", vs({ layout: "" })) : (p.slides.style.zoom = "", p.slides.style.left = "50%", p.slides.style.top = "50%", p.slides.style.bottom = "auto", p.slides.style.right = "auto", vs({ layout: "translate(-50%, -50%) scale(" + oo + ")" }));
2252
2252
  let a2 = Array.from(p.wrapper.querySelectorAll(de$1));
2253
2253
  for (let e7 = 0, t3 = a2.length; e7 < t3; e7++) {
2254
2254
  let t4 = a2[e7];
2255
2255
  t4.style.display !== "none" && (r.center || t4.classList.contains("center") ? t4.classList.contains("stack") ? t4.style.top = 0 : t4.style.top = Math.max((n2.height - t4.scrollHeight) / 2, 0) + "px" : t4.style.top = "");
2256
2256
  }
2257
- i2 !== io && _s({
2257
+ i2 !== oo && ys({
2258
2258
  type: "resize",
2259
2259
  data: {
2260
2260
  oldScale: i2,
2261
- scale: io,
2261
+ scale: oo,
2262
2262
  size: n2
2263
2263
  }
2264
2264
  });
2265
2265
  }
2266
- Ss(), p.viewport.style.setProperty("--slide-scale", io), p.viewport.style.setProperty("--viewport-width", e6 + "px"), p.viewport.style.setProperty("--viewport-height", t2 + "px"), vo.layout(), To.update(), _o.updateParallax(), xo.isActive() && xo.update();
2266
+ ws(), p.viewport.style.setProperty("--slide-scale", oo), p.viewport.style.setProperty("--viewport-width", e6 + "px"), p.viewport.style.setProperty("--viewport-height", t2 + "px"), bo.layout(), Do.update(), yo.updateParallax(), Co.isActive() && Co.update();
2267
2267
  }
2268
2268
  }
2269
- function xs(e6, t2) {
2269
+ function Cs(e6, t2) {
2270
2270
  E$2(p.slides, "section > .stretch, section > .r-stretch").forEach((n2) => {
2271
2271
  let r2 = Ei(n2, t2);
2272
2272
  if (/(img|video)/gi.test(n2.nodeName)) {
@@ -2275,13 +2275,13 @@ function Ut$1(e5, t) {
2275
2275
  } else n2.style.width = e6 + "px", n2.style.height = r2 + "px";
2276
2276
  });
2277
2277
  }
2278
- function Ss() {
2279
- if (p.wrapper && !r.disableLayout && !yo.isActive() && typeof r.scrollActivationWidth == "number" && r.view !== "scroll") {
2280
- let e6 = Cs();
2281
- e6.presentationWidth > 0 && e6.presentationWidth <= r.scrollActivationWidth ? vo.isActive() || (_o.create(), vo.activate()) : vo.isActive() && vo.deactivate();
2278
+ function ws() {
2279
+ if (p.wrapper && !r.disableLayout && !xo.isActive() && typeof r.scrollActivationWidth == "number" && r.view !== "scroll") {
2280
+ let e6 = Ts();
2281
+ e6.presentationWidth > 0 && e6.presentationWidth <= r.scrollActivationWidth ? bo.isActive() || (yo.create(), bo.activate()) : bo.isActive() && bo.deactivate();
2282
2282
  }
2283
2283
  }
2284
- function Cs(e6, t2) {
2284
+ function Ts(e6, t2) {
2285
2285
  let n2 = r.width, i2 = r.height;
2286
2286
  r.disableLayout && (n2 = p.slides.offsetWidth, i2 = p.slides.offsetHeight);
2287
2287
  let a2 = {
@@ -2292,58 +2292,58 @@ function Ut$1(e5, t) {
2292
2292
  };
2293
2293
  return a2.presentationWidth -= a2.presentationWidth * r.margin, a2.presentationHeight -= a2.presentationHeight * r.margin, typeof a2.width == "string" && /%$/.test(a2.width) && (a2.width = parseInt(a2.width, 10) / 100 * a2.presentationWidth), typeof a2.height == "string" && /%$/.test(a2.height) && (a2.height = parseInt(a2.height, 10) / 100 * a2.presentationHeight), a2;
2294
2294
  }
2295
- function ws(e6, t2) {
2295
+ function Es(e6, t2) {
2296
2296
  typeof e6 == "object" && typeof e6.setAttribute == "function" && e6.setAttribute("data-previous-indexv", t2 || 0);
2297
2297
  }
2298
- function Ts(e6) {
2298
+ function Ds(e6) {
2299
2299
  if (typeof e6 == "object" && typeof e6.setAttribute == "function" && e6.classList.contains("stack")) {
2300
2300
  let t2 = e6.hasAttribute("data-start-indexv") ? "data-start-indexv" : "data-previous-indexv";
2301
2301
  return parseInt(e6.getAttribute(t2) || 0, 10);
2302
2302
  }
2303
2303
  return 0;
2304
2304
  }
2305
- function Es(e6 = l) {
2305
+ function Os(e6 = l) {
2306
2306
  return e6 && e6.parentNode && !!e6.parentNode.nodeName.match(/section/i);
2307
2307
  }
2308
- function Ds(e6 = l) {
2308
+ function ks(e6 = l) {
2309
2309
  return e6.classList.contains(".stack") || e6.querySelector("section") !== null;
2310
2310
  }
2311
- function Os() {
2312
- return l && Es(l) ? !l.nextElementSibling : false;
2311
+ function As() {
2312
+ return l && Os(l) ? !l.nextElementSibling : false;
2313
2313
  }
2314
- function ks() {
2314
+ function js() {
2315
2315
  return o === 0 && s === 0;
2316
2316
  }
2317
- function As() {
2318
- return l ? !(l.nextElementSibling || Es(l) && l.parentNode.nextElementSibling) : false;
2317
+ function Ms() {
2318
+ return l ? !(l.nextElementSibling || Os(l) && l.parentNode.nextElementSibling) : false;
2319
2319
  }
2320
- function js() {
2320
+ function Ns() {
2321
2321
  if (r.pause) {
2322
2322
  let e6 = p.wrapper.classList.contains("paused");
2323
- fc(), p.wrapper.classList.add("paused"), e6 === false && _s({ type: "paused" });
2323
+ mc(), p.wrapper.classList.add("paused"), e6 === false && ys({ type: "paused" });
2324
2324
  }
2325
2325
  }
2326
- function Ms() {
2326
+ function Ps() {
2327
2327
  let e6 = p.wrapper.classList.contains("paused");
2328
- p.wrapper.classList.remove("paused"), dc(), e6 && _s({ type: "resumed" });
2328
+ p.wrapper.classList.remove("paused"), pc(), e6 && ys({ type: "resumed" });
2329
2329
  }
2330
- function Ns(e6) {
2331
- typeof e6 == "boolean" ? e6 ? js() : Ms() : Ps() ? Ms() : js();
2330
+ function Fs(e6) {
2331
+ typeof e6 == "boolean" ? e6 ? Ns() : Ps() : Is() ? Ps() : Ns();
2332
2332
  }
2333
- function Ps() {
2333
+ function Is() {
2334
2334
  return p.wrapper.classList.contains("paused");
2335
2335
  }
2336
- function Fs(e6) {
2337
- typeof e6 == "boolean" ? e6 ? ho.show() : ho.hide() : ho.isVisible() ? ho.hide() : ho.show();
2336
+ function Ls(e6) {
2337
+ typeof e6 == "boolean" ? e6 ? _o.show() : _o.hide() : _o.isVisible() ? _o.hide() : _o.show();
2338
2338
  }
2339
- function Is(e6) {
2340
- typeof e6 == "boolean" ? e6 ? mc() : pc() : fo ? mc() : pc();
2339
+ function Rs(e6) {
2340
+ typeof e6 == "boolean" ? e6 ? gc() : hc() : mo ? gc() : hc();
2341
2341
  }
2342
- function Ls() {
2343
- return !!(so && !fo);
2342
+ function zs() {
2343
+ return !!(lo && !mo);
2344
2344
  }
2345
- function Rs(t2, n2, i2, a2) {
2346
- if (_s({
2345
+ function Bs(t2, n2, i2, a2) {
2346
+ if (ys({
2347
2347
  type: "beforeslidechange",
2348
2348
  data: {
2349
2349
  indexh: t2 === void 0 ? o : t2,
@@ -2353,90 +2353,90 @@ function Ut$1(e5, t) {
2353
2353
  }).defaultPrevented) return;
2354
2354
  c = l;
2355
2355
  let u2 = p.wrapper.querySelectorAll(te$2);
2356
- if (vo.isActive()) {
2357
- let e6 = vo.getSlideByIndices(t2, n2);
2358
- e6 && vo.scrollToSlide(e6);
2356
+ if (bo.isActive()) {
2357
+ let e6 = bo.getSlideByIndices(t2, n2);
2358
+ e6 && bo.scrollToSlide(e6);
2359
2359
  return;
2360
2360
  }
2361
2361
  if (u2.length === 0) return;
2362
- n2 === void 0 && !xo.isActive() && (n2 = Ts(u2[t2])), c && c.parentNode && c.parentNode.classList.contains("stack") && ws(c.parentNode, s);
2363
- let io2 = f.concat();
2362
+ n2 === void 0 && !Co.isActive() && (n2 = Ds(u2[t2])), c && c.parentNode && c.parentNode.classList.contains("stack") && Es(c.parentNode, s);
2363
+ let oo2 = f.concat();
2364
2364
  f.length = 0;
2365
- let ao2 = o || 0, so2 = s || 0;
2366
- o = Gs(te$2, t2 === void 0 ? o : t2), s = Gs(_e$1, n2 === void 0 ? s : n2);
2367
- let co2 = o !== ao2 || s !== so2;
2368
- co2 || (c = null);
2369
- let lo2 = u2[o], uo2 = lo2.querySelectorAll("section");
2370
- e5.classList.toggle("is-vertical-slide", uo2.length > 1), l = uo2[s] || lo2;
2371
- let fo2 = false;
2372
- co2 && c && l && !xo.isActive() && (oo = "running", fo2 = zs(c, l, ao2, so2), fo2 && p.slides.classList.add("disable-slide-transitions")), Js(), bs(), xo.isActive() && xo.update(), i2 !== void 0 && bo.goto(i2), c && c !== l && (c.classList.remove("present"), c.setAttribute("aria-hidden", "true"), ks() && setTimeout(() => {
2373
- nc().forEach((e6) => {
2374
- ws(e6, 0);
2365
+ let so2 = o || 0, lo2 = s || 0;
2366
+ o = qs(te$2, t2 === void 0 ? o : t2), s = qs(_e$1, n2 === void 0 ? s : n2);
2367
+ let uo2 = o !== so2 || s !== lo2;
2368
+ uo2 || (c = null);
2369
+ let fo2 = u2[o], po2 = fo2.querySelectorAll("section");
2370
+ e5.classList.toggle("is-vertical-slide", po2.length > 1), l = po2[s] || fo2;
2371
+ let mo2 = false;
2372
+ uo2 && c && l && !Co.isActive() && (co = "running", mo2 = Vs(c, l, so2, lo2), mo2 && p.slides.classList.add("disable-slide-transitions")), Xs(), Ss(), Co.isActive() && Co.update(), i2 !== void 0 && So.goto(i2), c && c !== l && (c.classList.remove("present"), c.setAttribute("aria-hidden", "true"), js() && setTimeout(() => {
2373
+ ic().forEach((e6) => {
2374
+ Es(e6, 0);
2375
2375
  });
2376
2376
  }, 0));
2377
2377
  e: for (let e6 = 0, t3 = f.length; e6 < t3; e6++) {
2378
- for (let t4 = 0; t4 < io2.length; t4++) if (io2[t4] === f[e6]) {
2379
- io2.splice(t4, 1);
2378
+ for (let t4 = 0; t4 < oo2.length; t4++) if (oo2[t4] === f[e6]) {
2379
+ oo2.splice(t4, 1);
2380
2380
  continue e;
2381
2381
  }
2382
- p.viewport.classList.add(f[e6]), _s({ type: f[e6] });
2382
+ p.viewport.classList.add(f[e6]), ys({ type: f[e6] });
2383
2383
  }
2384
- for (; io2.length; ) p.viewport.classList.remove(io2.pop());
2385
- co2 && (po.afterSlideChanged(), vs(a2)), (co2 || !c) && (po.stopEmbeddedContent(c), po.startEmbeddedContent(l)), requestAnimationFrame(() => {
2386
- Xo(Qo(l));
2387
- }), To.update(), wo.update(), No.update(), _o.update(), _o.updateParallax(), mo.update(), bo.update(), Co.writeURL(), dc(), fo2 && (setTimeout(() => {
2384
+ for (; oo2.length; ) p.viewport.classList.remove(oo2.pop());
2385
+ uo2 && (ho.afterSlideChanged(), bs(a2)), (uo2 || !c) && (ho.stopEmbeddedContent(c), ho.startEmbeddedContent(l)), requestAnimationFrame(() => {
2386
+ Qo($o(l));
2387
+ }), Do.update(), Eo.update(), No.update(), yo.update(), yo.updateParallax(), go.update(), So.update(), To.writeURL(), pc(), mo2 && (setTimeout(() => {
2388
2388
  p.slides.classList.remove("disable-slide-transitions");
2389
- }, 0), r.autoAnimate && go.run(c, l));
2389
+ }, 0), r.autoAnimate && vo.run(c, l));
2390
2390
  }
2391
- function zs(e6, t2, n2, r2) {
2391
+ function Vs(e6, t2, n2, r2) {
2392
2392
  return e6.hasAttribute("data-auto-animate") && t2.hasAttribute("data-auto-animate") && e6.getAttribute("data-auto-animate-id") === t2.getAttribute("data-auto-animate-id") && !(o > n2 || s > r2 ? t2 : e6).hasAttribute("data-auto-animate-restart");
2393
2393
  }
2394
- function Bs(e6, t2, n2) {
2394
+ function Hs(e6, t2, n2) {
2395
2395
  let i2 = o || 0;
2396
2396
  o = t2, s = n2;
2397
2397
  let a2 = l !== e6;
2398
- c = l, l = e6, l && c && r.autoAnimate && zs(c, l, i2, s) && go.run(c, l), a2 && (po.afterSlideChanged(), c && (po.stopEmbeddedContent(c), po.stopEmbeddedContent(c.slideBackgroundElement)), po.startEmbeddedContent(l), po.startEmbeddedContent(l.slideBackgroundElement)), requestAnimationFrame(() => {
2399
- Xo(Qo(l));
2400
- }), vs();
2398
+ c = l, l = e6, l && c && r.autoAnimate && Vs(c, l, i2, s) && vo.run(c, l), a2 && (ho.afterSlideChanged(), c && (ho.stopEmbeddedContent(c), ho.stopEmbeddedContent(c.slideBackgroundElement)), ho.startEmbeddedContent(l), ho.startEmbeddedContent(l.slideBackgroundElement)), requestAnimationFrame(() => {
2399
+ Qo($o(l));
2400
+ }), bs();
2401
2401
  }
2402
- function Vs() {
2403
- fs(), ds(), bs(), so = r.autoSlide, dc(), _o.create(), Co.writeURL(), r.sortFragmentsOnSync === true && bo.sortAll(), o !== void 0 && (o = Gs(te$2, o), s = Gs(_e$1, s)), wo.update(), To.update(), Js(), No.update(), No.updateVisibility(), Oo.update(), _o.update(true), mo.update(), po.formatEmbeddedContent(), r.autoPlayMedia === false ? po.stopEmbeddedContent(l, { unloadIframes: false }) : po.startEmbeddedContent(l), xo.isActive() && xo.layout(), _s({ type: "sync" });
2402
+ function Us() {
2403
+ ms(), ps(), Ss(), lo = r.autoSlide, pc(), yo.create(), To.writeURL(), r.sortFragmentsOnSync === true && So.sortAll(), o !== void 0 && (o = qs(te$2, o), s = qs(_e$1, s)), Eo.update(), Do.update(), Xs(), No.update(), No.updateVisibility(), Ao.update(), yo.update(true), go.update(), ho.formatEmbeddedContent(), r.autoPlayMedia === false ? ho.stopEmbeddedContent(l, { unloadIframes: false }) : ho.startEmbeddedContent(l), Co.isActive() && Co.layout(), ys({ type: "sync" });
2404
2404
  }
2405
- function Hs(e6 = l) {
2406
- _o.sync(e6), bo.sync(e6), po.load(e6), _o.update(), No.update(), _s({
2405
+ function Ws(e6 = l) {
2406
+ yo.sync(e6), So.sync(e6), ho.load(e6), yo.update(), No.update(), ys({
2407
2407
  type: "slidesync",
2408
2408
  data: { slide: e6 }
2409
2409
  });
2410
2410
  }
2411
- function Us() {
2412
- ec().forEach((e6) => {
2411
+ function Gs() {
2412
+ nc().forEach((e6) => {
2413
2413
  E$2(e6, "section").forEach((e7, t2) => {
2414
2414
  t2 > 0 && (e7.classList.remove("present"), e7.classList.remove("past"), e7.classList.add("future"), e7.setAttribute("aria-hidden", "true"));
2415
2415
  });
2416
2416
  });
2417
2417
  }
2418
- function Ws(e6 = ec()) {
2418
+ function Ks(e6 = nc()) {
2419
2419
  e6.forEach((t2, n2) => {
2420
2420
  let r2 = e6[Math.floor(Math.random() * e6.length)];
2421
2421
  r2.parentNode === t2.parentNode && t2.parentNode.insertBefore(t2, r2);
2422
2422
  let i2 = t2.querySelectorAll("section");
2423
- i2.length && Ws(i2);
2423
+ i2.length && Ks(i2);
2424
2424
  });
2425
2425
  }
2426
- function Gs(e6, t2) {
2427
- let n2 = E$2(p.wrapper, e6), i2 = n2.length, a2 = vo.isActive() || yo.isActive(), o2 = false, s2 = false;
2426
+ function qs(e6, t2) {
2427
+ let n2 = E$2(p.wrapper, e6), i2 = n2.length, a2 = bo.isActive() || xo.isActive(), o2 = false, s2 = false;
2428
2428
  if (i2) {
2429
2429
  r.loop && (t2 >= i2 && (o2 = true), t2 %= i2, t2 < 0 && (t2 = i2 + t2, s2 = true)), t2 = Math.max(Math.min(t2, i2 - 1), 0);
2430
2430
  for (let e8 = 0; e8 < i2; e8++) {
2431
- let i3 = n2[e8], c3 = r.rtl && !Es(i3);
2431
+ let i3 = n2[e8], c3 = r.rtl && !Os(i3);
2432
2432
  if (i3.classList.remove("past"), i3.classList.remove("present"), i3.classList.remove("future"), i3.setAttribute("hidden", ""), i3.setAttribute("aria-hidden", "true"), i3.querySelector("section") && i3.classList.add("stack"), a2) {
2433
2433
  i3.classList.add("present");
2434
2434
  continue;
2435
2435
  }
2436
- e8 < t2 ? (i3.classList.add(c3 ? "future" : "past"), r.fragments && Ks(i3)) : e8 > t2 ? (i3.classList.add(c3 ? "past" : "future"), r.fragments && qs(i3)) : e8 === t2 && r.fragments && (o2 ? qs(i3) : s2 && Ks(i3));
2436
+ e8 < t2 ? (i3.classList.add(c3 ? "future" : "past"), r.fragments && Js(i3)) : e8 > t2 ? (i3.classList.add(c3 ? "past" : "future"), r.fragments && Ys(i3)) : e8 === t2 && r.fragments && (o2 ? Ys(i3) : s2 && Js(i3));
2437
2437
  }
2438
2438
  let e7 = n2[t2], c2 = e7.classList.contains("present");
2439
- e7.classList.add("present"), e7.removeAttribute("hidden"), e7.removeAttribute("aria-hidden"), c2 || _s({
2439
+ e7.classList.add("present"), e7.removeAttribute("hidden"), e7.removeAttribute("aria-hidden"), c2 || ys({
2440
2440
  target: e7,
2441
2441
  type: "visible",
2442
2442
  bubbles: false
@@ -2446,35 +2446,35 @@ function Ut$1(e5, t) {
2446
2446
  } else t2 = 0;
2447
2447
  return t2;
2448
2448
  }
2449
- function Ks(e6) {
2449
+ function Js(e6) {
2450
2450
  E$2(e6, ".fragment").forEach((e7) => {
2451
2451
  e7.classList.add("visible"), e7.classList.remove("current-fragment");
2452
2452
  });
2453
2453
  }
2454
- function qs(e6) {
2454
+ function Ys(e6) {
2455
2455
  E$2(e6, ".fragment.visible").forEach((e7) => {
2456
2456
  e7.classList.remove("visible", "current-fragment");
2457
2457
  });
2458
2458
  }
2459
- function Js() {
2460
- let e6 = ec(), t2 = e6.length, n2, i2;
2459
+ function Xs() {
2460
+ let e6 = nc(), t2 = e6.length, n2, i2;
2461
2461
  if (t2 && o !== void 0) {
2462
- let a2 = xo.isActive(), c2 = a2 ? 10 : r.viewDistance;
2463
- le$2 && (c2 = a2 ? 6 : r.mobileViewDistance), yo.isActive() && (c2 = Number.MAX_VALUE);
2462
+ let a2 = Co.isActive(), c2 = a2 ? 10 : r.viewDistance;
2463
+ le$2 && (c2 = a2 ? 6 : r.mobileViewDistance), xo.isActive() && (c2 = Number.MAX_VALUE);
2464
2464
  for (let l2 = 0; l2 < t2; l2++) {
2465
- let u2 = e6[l2], f2 = E$2(u2, "section"), io2 = f2.length;
2466
- if (n2 = Math.abs((o || 0) - l2) || 0, r.loop && (n2 = Math.abs(((o || 0) - l2) % (t2 - c2)) || 0), n2 < c2 ? po.load(u2) : po.unload(u2), io2) {
2467
- let e7 = a2 ? 0 : Ts(u2);
2468
- for (let t3 = 0; t3 < io2; t3++) {
2465
+ let u2 = e6[l2], f2 = E$2(u2, "section"), oo2 = f2.length;
2466
+ if (n2 = Math.abs((o || 0) - l2) || 0, r.loop && (n2 = Math.abs(((o || 0) - l2) % (t2 - c2)) || 0), n2 < c2 ? ho.load(u2) : ho.unload(u2), oo2) {
2467
+ let e7 = a2 ? 0 : Ds(u2);
2468
+ for (let t3 = 0; t3 < oo2; t3++) {
2469
2469
  let r2 = f2[t3];
2470
- i2 = Math.abs(l2 === (o || 0) ? (s || 0) - t3 : t3 - e7), n2 + i2 < c2 ? po.load(r2) : po.unload(r2);
2470
+ i2 = Math.abs(l2 === (o || 0) ? (s || 0) - t3 : t3 - e7), n2 + i2 < c2 ? ho.load(r2) : ho.unload(r2);
2471
2471
  }
2472
2472
  }
2473
2473
  }
2474
- ic() ? p.wrapper.classList.add("has-vertical-slides") : p.wrapper.classList.remove("has-vertical-slides"), rc() ? p.wrapper.classList.add("has-horizontal-slides") : p.wrapper.classList.remove("has-horizontal-slides");
2474
+ oc() ? p.wrapper.classList.add("has-vertical-slides") : p.wrapper.classList.remove("has-vertical-slides"), ac() ? p.wrapper.classList.add("has-horizontal-slides") : p.wrapper.classList.remove("has-horizontal-slides");
2475
2475
  }
2476
2476
  }
2477
- function Ys({ includeFragments: e6 = false } = {}) {
2477
+ function Zs({ includeFragments: e6 = false } = {}) {
2478
2478
  let t2 = p.wrapper.querySelectorAll(te$2), n2 = p.wrapper.querySelectorAll(_e$1), i2 = {
2479
2479
  left: o > 0,
2480
2480
  right: o < t2.length - 1,
@@ -2482,7 +2482,7 @@ function Ut$1(e5, t) {
2482
2482
  down: s < n2.length - 1
2483
2483
  };
2484
2484
  if (r.loop && (t2.length > 1 && (i2.left = true, i2.right = true), n2.length > 1 && (i2.up = true, i2.down = true)), t2.length > 1 && r.navigationMode === "linear" && (i2.right = i2.right || i2.down, i2.left = i2.left || i2.up), e6 === true) {
2485
- let e7 = bo.availableRoutes();
2485
+ let e7 = So.availableRoutes();
2486
2486
  i2.left = i2.left || e7.prev, i2.up = i2.up || e7.prev, i2.down = i2.down || e7.next, i2.right = i2.right || e7.next;
2487
2487
  }
2488
2488
  if (r.rtl) {
@@ -2491,8 +2491,8 @@ function Ut$1(e5, t) {
2491
2491
  }
2492
2492
  return i2;
2493
2493
  }
2494
- function Xs(e6 = l) {
2495
- let t2 = ec(), n2 = 0;
2494
+ function Qs(e6 = l) {
2495
+ let t2 = nc(), n2 = 0;
2496
2496
  e: for (let r2 = 0; r2 < t2.length; r2++) {
2497
2497
  let i2 = t2[r2], a2 = i2.querySelectorAll("section");
2498
2498
  for (let t3 = 0; t3 < a2.length; t3++) {
@@ -2504,8 +2504,8 @@ function Ut$1(e5, t) {
2504
2504
  }
2505
2505
  return n2;
2506
2506
  }
2507
- function Zs() {
2508
- let e6 = oc(), t2 = Xs();
2507
+ function $s() {
2508
+ let e6 = cc(), t2 = Qs();
2509
2509
  if (l) {
2510
2510
  let e7 = l.querySelectorAll(".fragment");
2511
2511
  if (e7.length > 0) {
@@ -2515,11 +2515,11 @@ function Ut$1(e5, t) {
2515
2515
  }
2516
2516
  return Math.min(t2 / (e6 - 1), 1);
2517
2517
  }
2518
- function Qs(e6) {
2518
+ function ec(e6) {
2519
2519
  let t2 = o, n2 = s, r2;
2520
- if (e6) if (vo.isActive()) t2 = parseInt(e6.getAttribute("data-index-h"), 10), e6.getAttribute("data-index-v") && (n2 = parseInt(e6.getAttribute("data-index-v"), 10));
2520
+ if (e6) if (bo.isActive()) t2 = parseInt(e6.getAttribute("data-index-h"), 10), e6.getAttribute("data-index-v") && (n2 = parseInt(e6.getAttribute("data-index-v"), 10));
2521
2521
  else {
2522
- let r3 = Es(e6), i2 = r3 ? e6.parentNode : e6, a2 = ec();
2522
+ let r3 = Os(e6), i2 = r3 ? e6.parentNode : e6, a2 = nc();
2523
2523
  t2 = Math.max(a2.indexOf(i2), 0), n2 = void 0, r3 && (n2 = Math.max(E$2(e6.parentNode, "section").indexOf(e6), 0));
2524
2524
  }
2525
2525
  if (!e6 && l && l.querySelectorAll(".fragment").length > 0) {
@@ -2532,26 +2532,26 @@ function Ut$1(e5, t) {
2532
2532
  f: r2
2533
2533
  };
2534
2534
  }
2535
- function $s() {
2535
+ function tc() {
2536
2536
  return E$2(p.wrapper, de$1 + ':not(.stack):not([data-visibility="uncounted"])');
2537
2537
  }
2538
- function ec() {
2538
+ function nc() {
2539
2539
  return E$2(p.wrapper, te$2);
2540
2540
  }
2541
- function tc() {
2541
+ function rc() {
2542
2542
  return E$2(p.wrapper, ".slides>section>section");
2543
2543
  }
2544
- function nc() {
2544
+ function ic() {
2545
2545
  return E$2(p.wrapper, te$2 + ".stack");
2546
2546
  }
2547
- function rc() {
2548
- return ec().length > 1;
2547
+ function ac() {
2548
+ return nc().length > 1;
2549
2549
  }
2550
- function ic() {
2551
- return tc().length > 1;
2550
+ function oc() {
2551
+ return rc().length > 1;
2552
2552
  }
2553
- function ac() {
2554
- return $s().map((e6) => {
2553
+ function sc() {
2554
+ return tc().map((e6) => {
2555
2555
  let t2 = {};
2556
2556
  for (let n2 = 0; n2 < e6.attributes.length; n2++) {
2557
2557
  let r2 = e6.attributes[n2];
@@ -2560,102 +2560,102 @@ function Ut$1(e5, t) {
2560
2560
  return t2;
2561
2561
  });
2562
2562
  }
2563
- function oc() {
2564
- return $s().length;
2563
+ function cc() {
2564
+ return tc().length;
2565
2565
  }
2566
- function sc(e6, t2) {
2567
- let n2 = ec()[e6], r2 = n2 && n2.querySelectorAll("section");
2566
+ function lc(e6, t2) {
2567
+ let n2 = nc()[e6], r2 = n2 && n2.querySelectorAll("section");
2568
2568
  return r2 && r2.length && typeof t2 == "number" ? r2 ? r2[t2] : void 0 : n2;
2569
2569
  }
2570
- function cc(e6, t2) {
2571
- let n2 = typeof e6 == "number" ? sc(e6, t2) : e6;
2570
+ function uc(e6, t2) {
2571
+ let n2 = typeof e6 == "number" ? lc(e6, t2) : e6;
2572
2572
  if (n2) return n2.slideBackgroundElement;
2573
2573
  }
2574
- function lc() {
2575
- let e6 = Qs();
2574
+ function dc() {
2575
+ let e6 = ec();
2576
2576
  return Q$2({
2577
2577
  indexh: e6.h,
2578
2578
  indexv: e6.v,
2579
2579
  indexf: e6.f,
2580
- paused: Ps(),
2581
- overview: xo.isActive()
2582
- }, Oo.getState());
2580
+ paused: Is(),
2581
+ overview: Co.isActive()
2582
+ }, Ao.getState());
2583
2583
  }
2584
- function uc(e6) {
2584
+ function fc(e6) {
2585
2585
  if (typeof e6 == "object") {
2586
- Rs(fe$1(e6.indexh), fe$1(e6.indexv), fe$1(e6.indexf));
2586
+ Bs(fe$1(e6.indexh), fe$1(e6.indexv), fe$1(e6.indexf));
2587
2587
  let t2 = fe$1(e6.paused), n2 = fe$1(e6.overview);
2588
- typeof t2 == "boolean" && t2 !== Ps() && Ns(t2), typeof n2 == "boolean" && n2 !== xo.isActive() && xo.toggle(n2), Oo.setState(e6);
2588
+ typeof t2 == "boolean" && t2 !== Is() && Fs(t2), typeof n2 == "boolean" && n2 !== Co.isActive() && Co.toggle(n2), Ao.setState(e6);
2589
2589
  }
2590
2590
  }
2591
- function dc() {
2592
- if (fc(), l && r.autoSlide !== false) {
2591
+ function pc() {
2592
+ if (mc(), l && r.autoSlide !== false) {
2593
2593
  let e6 = l.querySelector(".current-fragment[data-autoslide]"), t2 = e6 ? e6.getAttribute("data-autoslide") : null, n2 = l.parentNode ? l.parentNode.getAttribute("data-autoslide") : null, i2 = l.getAttribute("data-autoslide");
2594
- t2 ? so = parseInt(t2, 10) : i2 ? so = parseInt(i2, 10) : n2 ? so = parseInt(n2, 10) : (so = r.autoSlide, l.querySelectorAll(".fragment").length === 0 && E$2(l, "video, audio").forEach((e7) => {
2595
- e7.hasAttribute("data-autoplay") && so && e7.duration * 1e3 / e7.playbackRate > so && (so = e7.duration * 1e3 / e7.playbackRate + 1e3);
2596
- })), so && !fo && !Ps() && !xo.isActive() && (!As() || bo.availableRoutes().next || r.loop === true) && (lo = setTimeout(() => {
2597
- typeof r.autoSlideMethod == "function" ? r.autoSlideMethod() : bc(), dc();
2598
- }, so), uo = Date.now()), co && co.setPlaying(lo !== -1);
2594
+ t2 ? lo = parseInt(t2, 10) : i2 ? lo = parseInt(i2, 10) : n2 ? lo = parseInt(n2, 10) : (lo = r.autoSlide, l.querySelectorAll(".fragment").length === 0 && E$2(l, "video, audio").forEach((e7) => {
2595
+ e7.hasAttribute("data-autoplay") && lo && e7.duration * 1e3 / e7.playbackRate > lo && (lo = e7.duration * 1e3 / e7.playbackRate + 1e3);
2596
+ })), lo && !mo && !Is() && !Co.isActive() && (!Ms() || So.availableRoutes().next || r.loop === true) && (fo = setTimeout(() => {
2597
+ typeof r.autoSlideMethod == "function" ? r.autoSlideMethod() : Sc(), pc();
2598
+ }, lo), po = Date.now()), uo && uo.setPlaying(fo !== -1);
2599
2599
  }
2600
2600
  }
2601
- function fc() {
2602
- clearTimeout(lo), lo = -1;
2603
- }
2604
- function pc() {
2605
- so && !fo && (fo = true, _s({ type: "autoslidepaused" }), clearTimeout(lo), co && co.setPlaying(false));
2606
- }
2607
2601
  function mc() {
2608
- so && fo && (fo = false, _s({ type: "autoslideresumed" }), dc());
2602
+ clearTimeout(fo), fo = -1;
2609
2603
  }
2610
- function hc({ skipFragments: e6 = false } = {}) {
2611
- if (u.hasNavigatedHorizontally = true, vo.isActive()) return vo.prev();
2612
- r.rtl ? (xo.isActive() || e6 || bo.next() === false) && Ys().left && Rs(o + 1, r.navigationMode === "grid" ? s : void 0) : (xo.isActive() || e6 || bo.prev() === false) && Ys().left && Rs(o - 1, r.navigationMode === "grid" ? s : void 0);
2604
+ function hc() {
2605
+ lo && !mo && (mo = true, ys({ type: "autoslidepaused" }), clearTimeout(fo), uo && uo.setPlaying(false));
2613
2606
  }
2614
- function gc({ skipFragments: e6 = false } = {}) {
2615
- if (u.hasNavigatedHorizontally = true, vo.isActive()) return vo.next();
2616
- r.rtl ? (xo.isActive() || e6 || bo.prev() === false) && Ys().right && Rs(o - 1, r.navigationMode === "grid" ? s : void 0) : (xo.isActive() || e6 || bo.next() === false) && Ys().right && Rs(o + 1, r.navigationMode === "grid" ? s : void 0);
2607
+ function gc() {
2608
+ lo && mo && (mo = false, ys({ type: "autoslideresumed" }), pc());
2617
2609
  }
2618
2610
  function _c({ skipFragments: e6 = false } = {}) {
2619
- if (vo.isActive()) return vo.prev();
2620
- (xo.isActive() || e6 || bo.prev() === false) && Ys().up && Rs(o, s - 1);
2611
+ if (u.hasNavigatedHorizontally = true, bo.isActive()) return bo.prev();
2612
+ r.rtl ? (Co.isActive() || e6 || So.next() === false) && Zs().left && Bs(o + 1, r.navigationMode === "grid" ? s : void 0) : (Co.isActive() || e6 || So.prev() === false) && Zs().left && Bs(o - 1, r.navigationMode === "grid" ? s : void 0);
2621
2613
  }
2622
2614
  function vc({ skipFragments: e6 = false } = {}) {
2623
- if (u.hasNavigatedVertically = true, vo.isActive()) return vo.next();
2624
- (xo.isActive() || e6 || bo.next() === false) && Ys().down && Rs(o, s + 1);
2615
+ if (u.hasNavigatedHorizontally = true, bo.isActive()) return bo.next();
2616
+ r.rtl ? (Co.isActive() || e6 || So.prev() === false) && Zs().right && Bs(o - 1, r.navigationMode === "grid" ? s : void 0) : (Co.isActive() || e6 || So.next() === false) && Zs().right && Bs(o + 1, r.navigationMode === "grid" ? s : void 0);
2625
2617
  }
2626
2618
  function yc({ skipFragments: e6 = false } = {}) {
2627
- if (vo.isActive()) return vo.prev();
2628
- if (e6 || bo.prev() === false) if (Ys().up) _c({ skipFragments: e6 });
2619
+ if (bo.isActive()) return bo.prev();
2620
+ (Co.isActive() || e6 || So.prev() === false) && Zs().up && Bs(o, s - 1);
2621
+ }
2622
+ function bc({ skipFragments: e6 = false } = {}) {
2623
+ if (u.hasNavigatedVertically = true, bo.isActive()) return bo.next();
2624
+ (Co.isActive() || e6 || So.next() === false) && Zs().down && Bs(o, s + 1);
2625
+ }
2626
+ function xc({ skipFragments: e6 = false } = {}) {
2627
+ if (bo.isActive()) return bo.prev();
2628
+ if (e6 || So.prev() === false) if (Zs().up) yc({ skipFragments: e6 });
2629
2629
  else {
2630
2630
  let t2;
2631
2631
  if (t2 = r.rtl ? E$2(p.wrapper, te$2 + ".future").pop() : E$2(p.wrapper, te$2 + ".past").pop(), t2 && t2.classList.contains("stack")) {
2632
2632
  let e7 = t2.querySelectorAll("section").length - 1 || void 0;
2633
- Rs(o - 1, e7);
2634
- } else r.rtl ? gc({ skipFragments: e6 }) : hc({ skipFragments: e6 });
2633
+ Bs(o - 1, e7);
2634
+ } else r.rtl ? vc({ skipFragments: e6 }) : _c({ skipFragments: e6 });
2635
2635
  }
2636
2636
  }
2637
- function bc({ skipFragments: e6 = false } = {}) {
2638
- if (u.hasNavigatedHorizontally = true, u.hasNavigatedVertically = true, vo.isActive()) return vo.next();
2639
- if (e6 || bo.next() === false) {
2640
- let t2 = Ys();
2641
- t2.down && t2.right && r.loop && Os() && (t2.down = false), t2.down ? vc({ skipFragments: e6 }) : r.rtl ? hc({ skipFragments: e6 }) : gc({ skipFragments: e6 });
2637
+ function Sc({ skipFragments: e6 = false } = {}) {
2638
+ if (u.hasNavigatedHorizontally = true, u.hasNavigatedVertically = true, bo.isActive()) return bo.next();
2639
+ if (e6 || So.next() === false) {
2640
+ let t2 = Zs();
2641
+ t2.down && t2.right && r.loop && As() && (t2.down = false), t2.down ? bc({ skipFragments: e6 }) : r.rtl ? _c({ skipFragments: e6 }) : vc({ skipFragments: e6 });
2642
2642
  }
2643
2643
  }
2644
- function xc(e6) {
2645
- r.autoSlideStoppable && pc();
2644
+ function Cc(e6) {
2645
+ r.autoSlideStoppable && hc();
2646
2646
  }
2647
- function Sc(e6) {
2647
+ function wc(e6) {
2648
2648
  let t2 = e6.data;
2649
2649
  if (typeof t2 == "string" && t2.charAt(0) === "{" && t2.charAt(t2.length - 1) === "}" && (t2 = JSON.parse(t2), t2.method && typeof n[t2.method] == "function")) if (Li.test(t2.method) === false) {
2650
2650
  let e7 = n[t2.method].apply(n, t2.args);
2651
- ys("callback", {
2651
+ xs("callback", {
2652
2652
  method: t2.method,
2653
2653
  result: e7
2654
2654
  });
2655
2655
  } else console.warn('reveal.js: "' + t2.method + '" is is blacklisted from the postMessage API');
2656
2656
  }
2657
- function Cc(e6) {
2658
- oo === "running" && /section/gi.test(e6.target.nodeName) && (oo = "idle", _s({
2657
+ function Tc(e6) {
2658
+ co === "running" && /section/gi.test(e6.target.nodeName) && (co = "idle", ys({
2659
2659
  type: "slidetransitionend",
2660
2660
  data: {
2661
2661
  indexh: o,
@@ -2665,153 +2665,153 @@ function Ut$1(e5, t) {
2665
2665
  }
2666
2666
  }));
2667
2667
  }
2668
- function wc(e6) {
2668
+ function Ec(e6) {
2669
2669
  let t2 = V$1(e6.target, 'a[href^="#"]');
2670
2670
  if (t2) {
2671
- let r2 = t2.getAttribute("href"), i2 = Co.getIndicesFromHash(r2);
2671
+ let r2 = t2.getAttribute("href"), i2 = To.getIndicesFromHash(r2);
2672
2672
  i2 && (n.slide(i2.h, i2.v, i2.f), e6.preventDefault());
2673
2673
  }
2674
2674
  }
2675
- function Tc(e6) {
2676
- bs();
2675
+ function Dc(e6) {
2676
+ Ss();
2677
2677
  }
2678
- function Ec(e6) {
2678
+ function Oc(e6) {
2679
2679
  document.hidden === false && document.activeElement !== document.body && (typeof document.activeElement.blur == "function" && document.activeElement.blur(), document.body.focus());
2680
2680
  }
2681
- function Dc(e6) {
2681
+ function kc(e6) {
2682
2682
  (document.fullscreenElement || document.webkitFullscreenElement) === p.wrapper && (e6.stopImmediatePropagation(), setTimeout(() => {
2683
2683
  n.layout(), n.focus.focus();
2684
2684
  }, 1));
2685
2685
  }
2686
- function Oc(e6) {
2687
- As() && r.loop === false ? (Rs(0, 0), mc()) : fo ? mc() : pc();
2686
+ function Ac(e6) {
2687
+ Ms() && r.loop === false ? (Bs(0, 0), gc()) : mo ? gc() : hc();
2688
2688
  }
2689
- let kc = {
2689
+ let jc = {
2690
2690
  VERSION: Ot$1,
2691
- initialize: Po,
2692
- configure: us,
2693
- destroy: ps,
2694
- sync: Vs,
2695
- syncSlide: Hs,
2696
- syncFragments: bo.sync.bind(bo),
2697
- slide: Rs,
2698
- left: hc,
2699
- right: gc,
2700
- up: _c,
2701
- down: vc,
2702
- prev: yc,
2703
- next: bc,
2704
- navigateLeft: hc,
2705
- navigateRight: gc,
2706
- navigateUp: _c,
2707
- navigateDown: vc,
2708
- navigatePrev: yc,
2709
- navigateNext: bc,
2710
- navigateFragment: bo.goto.bind(bo),
2711
- prevFragment: bo.prev.bind(bo),
2712
- nextFragment: bo.next.bind(bo),
2713
- on: ms,
2714
- off: hs,
2715
- addEventListener: ms,
2716
- removeEventListener: hs,
2717
- layout: bs,
2718
- shuffle: Ws,
2719
- availableRoutes: Ys,
2720
- availableFragments: bo.availableRoutes.bind(bo),
2721
- toggleHelp: Oo.toggleHelp.bind(Oo),
2722
- toggleOverview: xo.toggle.bind(xo),
2723
- toggleScrollView: vo.toggle.bind(vo),
2724
- togglePause: Ns,
2725
- toggleAutoSlide: Is,
2726
- toggleJumpToSlide: Fs,
2727
- isFirstSlide: ks,
2728
- isLastSlide: As,
2729
- isLastVerticalSlide: Os,
2730
- isVerticalSlide: Es,
2731
- isVerticalStack: Ds,
2732
- isPaused: Ps,
2733
- isAutoSliding: Ls,
2691
+ initialize: Io,
2692
+ configure: fs,
2693
+ destroy: hs,
2694
+ sync: Us,
2695
+ syncSlide: Ws,
2696
+ syncFragments: So.sync.bind(So),
2697
+ slide: Bs,
2698
+ left: _c,
2699
+ right: vc,
2700
+ up: yc,
2701
+ down: bc,
2702
+ prev: xc,
2703
+ next: Sc,
2704
+ navigateLeft: _c,
2705
+ navigateRight: vc,
2706
+ navigateUp: yc,
2707
+ navigateDown: bc,
2708
+ navigatePrev: xc,
2709
+ navigateNext: Sc,
2710
+ navigateFragment: So.goto.bind(So),
2711
+ prevFragment: So.prev.bind(So),
2712
+ nextFragment: So.next.bind(So),
2713
+ on: gs,
2714
+ off: _s,
2715
+ addEventListener: gs,
2716
+ removeEventListener: _s,
2717
+ layout: Ss,
2718
+ shuffle: Ks,
2719
+ availableRoutes: Zs,
2720
+ availableFragments: So.availableRoutes.bind(So),
2721
+ toggleHelp: Ao.toggleHelp.bind(Ao),
2722
+ toggleOverview: Co.toggle.bind(Co),
2723
+ toggleScrollView: bo.toggle.bind(bo),
2724
+ togglePause: Fs,
2725
+ toggleAutoSlide: Rs,
2726
+ toggleJumpToSlide: Ls,
2727
+ isFirstSlide: js,
2728
+ isLastSlide: Ms,
2729
+ isLastVerticalSlide: As,
2730
+ isVerticalSlide: Os,
2731
+ isVerticalStack: ks,
2732
+ isPaused: Is,
2733
+ isAutoSliding: zs,
2734
2734
  isSpeakerNotes: No.isSpeakerNotesWindow.bind(No),
2735
- isOverview: xo.isActive.bind(xo),
2736
- isFocused: ko.isFocused.bind(ko),
2737
- isOverlayOpen: Oo.isOpen.bind(Oo),
2738
- isScrollView: vo.isActive.bind(vo),
2739
- isPrintView: yo.isActive.bind(yo),
2735
+ isOverview: Co.isActive.bind(Co),
2736
+ isFocused: jo.isFocused.bind(jo),
2737
+ isOverlayOpen: Ao.isOpen.bind(Ao),
2738
+ isScrollView: bo.isActive.bind(bo),
2739
+ isPrintView: xo.isActive.bind(xo),
2740
2740
  isReady: () => a,
2741
- loadSlide: po.load.bind(po),
2742
- unloadSlide: po.unload.bind(po),
2743
- startEmbeddedContent: () => po.startEmbeddedContent(l),
2744
- stopEmbeddedContent: () => po.stopEmbeddedContent(l, { unloadIframes: false }),
2745
- previewIframe: Oo.previewIframe.bind(Oo),
2746
- previewImage: Oo.previewImage.bind(Oo),
2747
- previewVideo: Oo.previewVideo.bind(Oo),
2748
- showPreview: Oo.previewIframe.bind(Oo),
2749
- hidePreview: Oo.close.bind(Oo),
2750
- addEventListeners: ds,
2751
- removeEventListeners: fs,
2752
- dispatchEvent: _s,
2753
- getState: lc,
2754
- setState: uc,
2755
- getProgress: Zs,
2756
- getIndices: Qs,
2757
- getSlidesAttributes: ac,
2758
- getSlidePastCount: Xs,
2759
- getTotalSlides: oc,
2760
- getSlide: sc,
2741
+ loadSlide: ho.load.bind(ho),
2742
+ unloadSlide: ho.unload.bind(ho),
2743
+ startEmbeddedContent: () => ho.startEmbeddedContent(l),
2744
+ stopEmbeddedContent: () => ho.stopEmbeddedContent(l, { unloadIframes: false }),
2745
+ previewIframe: Ao.previewIframe.bind(Ao),
2746
+ previewImage: Ao.previewImage.bind(Ao),
2747
+ previewVideo: Ao.previewVideo.bind(Ao),
2748
+ showPreview: Ao.previewIframe.bind(Ao),
2749
+ hidePreview: Ao.close.bind(Ao),
2750
+ addEventListeners: ps,
2751
+ removeEventListeners: ms,
2752
+ dispatchEvent: ys,
2753
+ getState: dc,
2754
+ setState: fc,
2755
+ getProgress: $s,
2756
+ getIndices: ec,
2757
+ getSlidesAttributes: sc,
2758
+ getSlidePastCount: Qs,
2759
+ getTotalSlides: cc,
2760
+ getSlide: lc,
2761
2761
  getPreviousSlide: () => c,
2762
2762
  getCurrentSlide: () => l,
2763
- getSlideBackground: cc,
2763
+ getSlideBackground: uc,
2764
2764
  getSlideNotes: No.getSlideNotes.bind(No),
2765
- getSlides: $s,
2766
- getHorizontalSlides: ec,
2767
- getVerticalSlides: tc,
2768
- hasHorizontalSlides: rc,
2769
- hasVerticalSlides: ic,
2765
+ getSlides: tc,
2766
+ getHorizontalSlides: nc,
2767
+ getVerticalSlides: rc,
2768
+ hasHorizontalSlides: ac,
2769
+ hasVerticalSlides: oc,
2770
2770
  hasNavigatedHorizontally: () => u.hasNavigatedHorizontally,
2771
2771
  hasNavigatedVertically: () => u.hasNavigatedVertically,
2772
- shouldAutoAnimateBetween: zs,
2773
- addKeyBinding: So.addKeyBinding.bind(So),
2774
- removeKeyBinding: So.removeKeyBinding.bind(So),
2775
- triggerKey: So.triggerKey.bind(So),
2776
- registerKeyboardShortcut: So.registerKeyboardShortcut.bind(So),
2777
- getComputedSlideSize: Cs,
2778
- setCurrentScrollPage: Bs,
2772
+ shouldAutoAnimateBetween: Vs,
2773
+ addKeyBinding: wo.addKeyBinding.bind(wo),
2774
+ removeKeyBinding: wo.removeKeyBinding.bind(wo),
2775
+ triggerKey: wo.triggerKey.bind(wo),
2776
+ registerKeyboardShortcut: wo.registerKeyboardShortcut.bind(wo),
2777
+ getComputedSlideSize: Ts,
2778
+ setCurrentScrollPage: Hs,
2779
2779
  removeHiddenSlides: qo,
2780
- getScale: () => io,
2780
+ getScale: () => oo,
2781
2781
  getConfig: () => r,
2782
2782
  getQueryHash: Mt$1,
2783
- getSlidePath: Co.getHash.bind(Co),
2783
+ getSlidePath: To.getHash.bind(To),
2784
2784
  getRevealElement: () => e5,
2785
2785
  getSlidesElement: () => p.slides,
2786
2786
  getViewportElement: () => p.viewport,
2787
- getBackgroundsElement: () => _o.element,
2788
- registerPlugin: Do.registerPlugin.bind(Do),
2789
- hasPlugin: Do.hasPlugin.bind(Do),
2790
- getPlugin: Do.getPlugin.bind(Do),
2791
- getPlugins: Do.getRegisteredPlugins.bind(Do)
2787
+ getBackgroundsElement: () => yo.element,
2788
+ registerPlugin: ko.registerPlugin.bind(ko),
2789
+ hasPlugin: ko.hasPlugin.bind(ko),
2790
+ getPlugin: ko.getPlugin.bind(ko),
2791
+ getPlugins: ko.getRegisteredPlugins.bind(ko)
2792
2792
  };
2793
- return ge$1(n, We$1(Q$2({}, kc), {
2794
- announceStatus: Xo,
2795
- getStatusText: Qo,
2796
- focus: ko,
2797
- scroll: vo,
2798
- progress: To,
2799
- controls: wo,
2800
- location: Co,
2801
- overview: xo,
2802
- keyboard: So,
2803
- fragments: bo,
2804
- backgrounds: _o,
2805
- slideContent: po,
2806
- slideNumber: mo,
2807
- onUserInput: xc,
2808
- closeOverlay: Oo.close.bind(Oo),
2809
- updateSlidesVisibility: Js,
2810
- layoutSlideContents: xs,
2811
- transformSlides: gs,
2812
- cueAutoSlide: dc,
2813
- cancelAutoSlide: fc
2814
- })), kc;
2793
+ return ge$1(n, We$1(Q$2({}, jc), {
2794
+ announceStatus: Qo,
2795
+ getStatusText: $o,
2796
+ focus: jo,
2797
+ scroll: bo,
2798
+ progress: Do,
2799
+ controls: Eo,
2800
+ location: To,
2801
+ overview: Co,
2802
+ keyboard: wo,
2803
+ fragments: So,
2804
+ backgrounds: yo,
2805
+ slideContent: ho,
2806
+ slideNumber: go,
2807
+ onUserInput: Cc,
2808
+ closeOverlay: Ao.close.bind(Ao),
2809
+ updateSlidesVisibility: Xs,
2810
+ layoutSlideContents: Cs,
2811
+ transformSlides: vs,
2812
+ cueAutoSlide: pc,
2813
+ cancelAutoSlide: mc
2814
+ })), jc;
2815
2815
  }
2816
2816
  var ce$1 = Ut$1, qt$1 = [];
2817
2817
  ce$1.initialize = (e5) => {
@@ -2856,36 +2856,36 @@ function v$1(e5, t, n) {
2856
2856
  function y(e5, t, n) {
2857
2857
  return e5 ? JSON.stringify(v$1(e5, t, n)) : "[]";
2858
2858
  }
2859
- function b({ config: e5, plugins: t = ee$1, onReady: n, onSync: r, onSlideSync: i, onSlideChange: a, onSlideTransitionEnd: o, onFragmentShown: s, onFragmentHidden: c, onOverviewShown: l, onOverviewHidden: u, onPaused: f, onResumed: io, deckRef: ao, className: p, style: oo, children: so }) {
2860
- let co = (0, import_react.useRef)(null), lo = (0, import_react.useRef)(null), uo = (0, import_react.useRef)(null), [fo, po] = (0, import_react.useState)(null), mo = (0, import_react.useRef)(t), ho = (0, import_react.useRef)(false), go = (0, import_react.useRef)(e5), _o = (0, import_react.useRef)(null), vo = (0, import_react.useRef)(/* @__PURE__ */ new WeakMap()), yo = (0, import_react.useRef)(1), bo = (0, import_react.useRef)(false), xo = (0, import_react.useRef)(0);
2859
+ function b({ config: e5, plugins: t = ee$1, onReady: n, onSync: r, onSlideSync: i, onSlideChange: a, onSlideTransitionEnd: o, onFragmentShown: s, onFragmentHidden: c, onOverviewShown: l, onOverviewHidden: u, onPaused: f, onResumed: oo, deckRef: so, className: p, style: co, children: lo }) {
2860
+ let uo = (0, import_react.useRef)(null), fo = (0, import_react.useRef)(null), po = (0, import_react.useRef)(null), [mo, ho] = (0, import_react.useState)(null), go = (0, import_react.useRef)(t), _o = (0, import_react.useRef)(false), vo = (0, import_react.useRef)(e5), yo = (0, import_react.useRef)(null), bo = (0, import_react.useRef)(/* @__PURE__ */ new WeakMap()), xo = (0, import_react.useRef)(1), So = (0, import_react.useRef)(false), Co = (0, import_react.useRef)(0);
2861
2861
  return (0, import_react.useEffect)(() => {
2862
- if (bo.current = true, xo.current += 1, uo.current) uo.current.isReady() && po(uo.current);
2862
+ if (So.current = true, Co.current += 1, po.current) po.current.isReady() && ho(po.current);
2863
2863
  else {
2864
- let t2 = new ce$1(co.current, {
2864
+ let t2 = new ce$1(uo.current, {
2865
2865
  ...e5,
2866
- plugins: mo.current
2866
+ plugins: go.current
2867
2867
  });
2868
- go.current = e5, uo.current = t2, t2.initialize().then(() => {
2869
- !bo.current || uo.current !== t2 || (po(t2), n == null ? void 0 : n(t2));
2868
+ vo.current = e5, po.current = t2, t2.initialize().then(() => {
2869
+ !So.current || po.current !== t2 || (ho(t2), n == null ? void 0 : n(t2));
2870
2870
  });
2871
2871
  }
2872
2872
  return () => {
2873
- bo.current = false;
2874
- let e6 = uo.current;
2873
+ So.current = false;
2874
+ let e6 = po.current;
2875
2875
  if (!e6) return;
2876
- let t2 = ++xo.current;
2876
+ let t2 = ++Co.current;
2877
2877
  Promise.resolve().then(() => {
2878
- if (!(bo.current || xo.current !== t2) && uo.current === e6) {
2878
+ if (!(So.current || Co.current !== t2) && po.current === e6) {
2879
2879
  try {
2880
2880
  e6.destroy();
2881
2881
  } catch {
2882
2882
  }
2883
- uo.current === e6 && (uo.current = null);
2883
+ po.current === e6 && (po.current = null);
2884
2884
  }
2885
2885
  });
2886
2886
  };
2887
- }, []), (0, import_react.useEffect)(() => (g(ao, fo), () => g(ao, null)), [ao, fo]), (0, import_react.useEffect)(() => {
2888
- if (!fo) return;
2887
+ }, []), (0, import_react.useEffect)(() => (g(so, mo), () => g(so, null)), [so, mo]), (0, import_react.useEffect)(() => {
2888
+ if (!mo) return;
2889
2889
  let e6 = [
2890
2890
  ["sync", r],
2891
2891
  ["slidesync", i],
@@ -2896,14 +2896,14 @@ function b({ config: e5, plugins: t = ee$1, onReady: n, onSync: r, onSlideSync:
2896
2896
  ["overviewshown", l],
2897
2897
  ["overviewhidden", u],
2898
2898
  ["paused", f],
2899
- ["resumed", io]
2899
+ ["resumed", oo]
2900
2900
  ].filter((e7) => e7[1] != null);
2901
- for (let [t2, n2] of e6) fo.on(t2, n2);
2901
+ for (let [t2, n2] of e6) mo.on(t2, n2);
2902
2902
  return () => {
2903
- for (let [t2, n2] of e6) fo.off(t2, n2);
2903
+ for (let [t2, n2] of e6) mo.off(t2, n2);
2904
2904
  };
2905
2905
  }, [
2906
- fo,
2906
+ mo,
2907
2907
  r,
2908
2908
  i,
2909
2909
  a,
@@ -2913,30 +2913,30 @@ function b({ config: e5, plugins: t = ee$1, onReady: n, onSync: r, onSlideSync:
2913
2913
  l,
2914
2914
  u,
2915
2915
  f,
2916
- io
2916
+ oo
2917
2917
  ]), (0, import_react.useLayoutEffect)(() => {
2918
2918
  var _a2;
2919
- !fo || !((_a2 = uo.current) == null ? void 0 : _a2.isReady()) || te$1(go.current, e5) && (ho.current = true, uo.current.configure(e5 ?? {}), go.current = e5);
2920
- }, [fo, e5]), (0, import_react.useLayoutEffect)(() => {
2919
+ !mo || !((_a2 = po.current) == null ? void 0 : _a2.isReady()) || te$1(vo.current, e5) && (_o.current = true, po.current.configure(e5 ?? {}), vo.current = e5);
2920
+ }, [mo, e5]), (0, import_react.useLayoutEffect)(() => {
2921
2921
  var _a2;
2922
- let e6 = ho.current;
2923
- ho.current = false;
2924
- let t2 = y(lo.current, vo.current, yo);
2922
+ let e6 = _o.current;
2923
+ _o.current = false;
2924
+ let t2 = y(fo.current, bo.current, xo);
2925
2925
  if (e6) {
2926
- _o.current = t2;
2926
+ yo.current = t2;
2927
2927
  return;
2928
2928
  }
2929
- ((_a2 = uo.current) == null ? void 0 : _a2.isReady()) && _o.current !== t2 && (uo.current.sync(), _o.current = t2);
2929
+ ((_a2 = po.current) == null ? void 0 : _a2.isReady()) && yo.current !== t2 && (po.current.sync(), yo.current = t2);
2930
2930
  }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)(h.Provider, {
2931
- value: fo,
2931
+ value: mo,
2932
2932
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
2933
2933
  className: p ? `reveal ${p}` : "reveal",
2934
- style: oo,
2935
- ref: co,
2934
+ style: co,
2935
+ ref: uo,
2936
2936
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
2937
2937
  className: "slides",
2938
- ref: lo,
2939
- children: so
2938
+ ref: fo,
2939
+ children: lo
2940
2940
  })
2941
2941
  })
2942
2942
  });
@@ -2988,8 +2988,8 @@ function C$1(e5, t) {
2988
2988
  }
2989
2989
  return n;
2990
2990
  }
2991
- function w({ children: e5, background: t, backgroundImage: n, backgroundVideo: r, backgroundVideoLoop: i, backgroundVideoMuted: a, backgroundIframe: o, backgroundColor: s, backgroundGradient: c, backgroundSize: l, backgroundPosition: u, backgroundRepeat: f, backgroundOpacity: io, backgroundTransition: ao, visibility: p, autoAnimate: oo, autoAnimateId: so, autoAnimateRestart: co, autoAnimateUnmatched: lo, autoAnimateEasing: uo, autoAnimateDuration: fo, autoAnimateDelay: po, transition: mo, transitionSpeed: ho, autoSlide: go, notes: _o, backgroundInteractive: vo, preload: yo, ...bo }) {
2992
- let xo = (0, import_react.useContext)(h), So = (0, import_react.useRef)(null), wo = (0, import_react.useRef)(null), To = (0, import_react.useRef)(null), Eo = C$1(bo, {
2991
+ function w({ children: e5, background: t, backgroundImage: n, backgroundVideo: r, backgroundVideoLoop: i, backgroundVideoMuted: a, backgroundIframe: o, backgroundColor: s, backgroundGradient: c, backgroundSize: l, backgroundPosition: u, backgroundRepeat: f, backgroundOpacity: oo, backgroundTransition: so, visibility: p, autoAnimate: co, autoAnimateId: lo, autoAnimateRestart: uo, autoAnimateUnmatched: fo, autoAnimateEasing: po, autoAnimateDuration: mo, autoAnimateDelay: ho, transition: go, transitionSpeed: _o, autoSlide: vo, notes: yo, backgroundInteractive: bo, preload: xo, ...So }) {
2992
+ let Co = (0, import_react.useContext)(h), wo = (0, import_react.useRef)(null), To = (0, import_react.useRef)(null), Do = (0, import_react.useRef)(null), Oo = C$1(So, {
2993
2993
  background: t,
2994
2994
  backgroundImage: n,
2995
2995
  backgroundVideo: r,
@@ -3001,36 +3001,36 @@ function w({ children: e5, background: t, backgroundImage: n, backgroundVideo: r
3001
3001
  backgroundSize: l,
3002
3002
  backgroundPosition: u,
3003
3003
  backgroundRepeat: f,
3004
- backgroundOpacity: io,
3005
- backgroundTransition: ao,
3004
+ backgroundOpacity: oo,
3005
+ backgroundTransition: so,
3006
3006
  visibility: p,
3007
- autoAnimate: oo,
3008
- autoAnimateId: so,
3009
- autoAnimateRestart: co,
3010
- autoAnimateUnmatched: lo,
3011
- autoAnimateEasing: uo,
3012
- autoAnimateDuration: fo,
3013
- autoAnimateDelay: po,
3014
- transition: mo,
3015
- transitionSpeed: ho,
3016
- autoSlide: go,
3017
- notes: _o,
3018
- backgroundInteractive: vo,
3019
- preload: yo
3020
- }), Do = S$1(Eo);
3007
+ autoAnimate: co,
3008
+ autoAnimateId: lo,
3009
+ autoAnimateRestart: uo,
3010
+ autoAnimateUnmatched: fo,
3011
+ autoAnimateEasing: po,
3012
+ autoAnimateDuration: mo,
3013
+ autoAnimateDelay: ho,
3014
+ transition: go,
3015
+ transitionSpeed: _o,
3016
+ autoSlide: vo,
3017
+ notes: yo,
3018
+ backgroundInteractive: bo,
3019
+ preload: xo
3020
+ }), ko = S$1(Oo);
3021
3021
  return (0, import_react.useLayoutEffect)(() => {
3022
- let e6 = So.current;
3023
- if (!xo || !e6 || typeof xo.syncSlide != "function") return;
3024
- if (wo.current !== xo) {
3025
- wo.current = xo, To.current = Do;
3022
+ let e6 = wo.current;
3023
+ if (!Co || !e6 || typeof Co.syncSlide != "function") return;
3024
+ if (To.current !== Co) {
3025
+ To.current = Co, Do.current = ko;
3026
3026
  return;
3027
3027
  }
3028
- if (Do === "[]") return;
3029
- let t2 = wo.current === xo, n2 = To.current === Do;
3030
- t2 && n2 || (xo.syncSlide(e6), wo.current = xo, To.current = Do);
3031
- }, [xo, Do]), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("section", {
3032
- ref: So,
3033
- ...Eo,
3028
+ if (ko === "[]") return;
3029
+ let t2 = To.current === Co, n2 = Do.current === ko;
3030
+ t2 && n2 || (Co.syncSlide(e6), To.current = Co, Do.current = ko);
3031
+ }, [Co, ko]), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("section", {
3032
+ ref: wo,
3033
+ ...Oo,
3034
3034
  children: e5
3035
3035
  });
3036
3036
  }
@@ -3412,16 +3412,16 @@ ${c}` : c;
3412
3412
  r2 = t[0], e5 = e5.substring(r2.length);
3413
3413
  let c = Qe(t[2].split("\n", 1)[0], t[1].length), l = e5.split("\n", 1)[0], u = !c.trim(), f = 0;
3414
3414
  if (this.options.pedantic ? (f = 2, s2 = c.trimStart()) : u ? f = t[1].length + 1 : (f = c.search(this.rules.other.nonSpaceChar), f = f > 4 ? 1 : f, s2 = c.slice(f), f += t[1].length), u && this.rules.other.blankLine.test(l) && (r2 += l + "\n", e5 = e5.substring(l.length + 1), n2 = true), !n2) {
3415
- let t2 = this.rules.other.nextBulletRegex(f), n3 = this.rules.other.hrRegex(f), i2 = this.rules.other.fencesBeginRegex(f), a2 = this.rules.other.headingBeginRegex(f), o2 = this.rules.other.htmlBeginRegex(f), io = this.rules.other.blockquoteBeginRegex(f);
3415
+ let t2 = this.rules.other.nextBulletRegex(f), n3 = this.rules.other.hrRegex(f), i2 = this.rules.other.fencesBeginRegex(f), a2 = this.rules.other.headingBeginRegex(f), o2 = this.rules.other.htmlBeginRegex(f), oo = this.rules.other.blockquoteBeginRegex(f);
3416
3416
  for (; e5; ) {
3417
- let ao = e5.split("\n", 1)[0], p;
3418
- if (l = ao, this.options.pedantic ? (l = l.replace(this.rules.other.listReplaceNesting, " "), p = l) : p = l.replace(this.rules.other.tabCharGlobal, " "), i2.test(l) || a2.test(l) || o2.test(l) || io.test(l) || t2.test(l) || n3.test(l)) break;
3417
+ let so = e5.split("\n", 1)[0], p;
3418
+ if (l = so, this.options.pedantic ? (l = l.replace(this.rules.other.listReplaceNesting, " "), p = l) : p = l.replace(this.rules.other.tabCharGlobal, " "), i2.test(l) || a2.test(l) || o2.test(l) || oo.test(l) || t2.test(l) || n3.test(l)) break;
3419
3419
  if (p.search(this.rules.other.nonSpaceChar) >= f || !l.trim()) s2 += "\n" + p.slice(f);
3420
3420
  else {
3421
3421
  if (u || c.replace(this.rules.other.tabCharGlobal, " ").search(this.rules.other.nonSpaceChar) >= 4 || i2.test(c) || a2.test(c) || n3.test(c)) break;
3422
3422
  s2 += "\n" + l;
3423
3423
  }
3424
- u = !l.trim(), r2 += ao + "\n", e5 = e5.substring(ao.length + 1), c = p.slice(f);
3424
+ u = !l.trim(), r2 += so + "\n", e5 = e5.substring(so.length + 1), c = p.slice(f);
3425
3425
  }
3426
3426
  }
3427
3427
  i.loose || (o ? i.loose = true : this.rules.other.doubleBlankLine.test(r2) && (o = true)), i.items.push({
@@ -4620,8 +4620,8 @@ const SlideCellView = (e5) => (Logger.warn("SlideCellView islands stub rendered;
4620
4620
  var PERSIST_DELAY_MS = 300;
4621
4621
  const SlideNotesEditor = (e5) => {
4622
4622
  var _a2;
4623
- let t = (0, import_compiler_runtime$1.c)(25), { layout: i, setLayout: a, cellId: o, className: s } = e5, c = o ? ((_a2 = i.cells.get(o)) == null ? void 0 : _a2.speakerNotes) ?? "" : "", [l, u] = (0, import_react.useState)(c), f = (0, import_react.useRef)(false), io;
4624
- t[0] !== i || t[1] !== a ? (io = (e6, t2) => {
4623
+ let t = (0, import_compiler_runtime$1.c)(25), { layout: i, setLayout: a, cellId: o, className: s } = e5, c = o ? ((_a2 = i.cells.get(o)) == null ? void 0 : _a2.speakerNotes) ?? "" : "", [l, u] = (0, import_react.useState)(c), f = (0, import_react.useRef)(false), oo;
4624
+ t[0] !== i || t[1] !== a ? (oo = (e6, t2) => {
4625
4625
  f.current = false;
4626
4626
  let n = i.cells.get(e6);
4627
4627
  if (((n == null ? void 0 : n.speakerNotes) ?? "") === t2) return;
@@ -4633,41 +4633,41 @@ const SlideNotesEditor = (e5) => {
4633
4633
  ...i,
4634
4634
  cells: r
4635
4635
  });
4636
- }, t[0] = i, t[1] = a, t[2] = io) : io = t[2];
4637
- let ao = useDebouncedCallback(useEvent_default(io), PERSIST_DELAY_MS), p = (0, import_react.useRef)(o), oo, so;
4638
- t[3] !== o || t[4] !== l || t[5] !== c || t[6] !== ao ? (oo = () => {
4636
+ }, t[0] = i, t[1] = a, t[2] = oo) : oo = t[2];
4637
+ let so = useDebouncedCallback(useEvent_default(oo), PERSIST_DELAY_MS), p = (0, import_react.useRef)(o), co, lo;
4638
+ t[3] !== o || t[4] !== l || t[5] !== c || t[6] !== so ? (co = () => {
4639
4639
  if (p.current !== o) {
4640
- ao.flush(), f.current = false, u(c), p.current = o;
4640
+ so.flush(), f.current = false, u(c), p.current = o;
4641
4641
  return;
4642
4642
  }
4643
4643
  !f.current && c !== l && u(c);
4644
- }, so = [
4644
+ }, lo = [
4645
4645
  o,
4646
4646
  c,
4647
4647
  l,
4648
- ao
4649
- ], t[3] = o, t[4] = l, t[5] = c, t[6] = ao, t[7] = oo, t[8] = so) : (oo = t[7], so = t[8]), (0, import_react.useEffect)(oo, so);
4650
- let co, lo;
4651
- t[9] === ao ? (co = t[10], lo = t[11]) : (co = () => () => {
4652
- ao.flush();
4653
- }, lo = [ao], t[9] = ao, t[10] = co, t[11] = lo), (0, import_react.useEffect)(co, lo);
4654
- let uo;
4655
- t[12] !== o || t[13] !== ao ? (uo = (e6) => {
4656
- u(e6), o && (f.current = true, ao(o, e6));
4657
- }, t[12] = o, t[13] = ao, t[14] = uo) : uo = t[14];
4658
- let fo = uo, po;
4659
- t[15] === s ? po = t[16] : (po = cn("h-full min-h-0 flex flex-col bg-muted/40 dark:bg-muted/20 border-t", s), t[15] = s, t[16] = po);
4660
- let ho;
4661
- t[17] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (ho = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("header", {
4648
+ so
4649
+ ], t[3] = o, t[4] = l, t[5] = c, t[6] = so, t[7] = co, t[8] = lo) : (co = t[7], lo = t[8]), (0, import_react.useEffect)(co, lo);
4650
+ let uo, fo;
4651
+ t[9] === so ? (uo = t[10], fo = t[11]) : (uo = () => () => {
4652
+ so.flush();
4653
+ }, fo = [so], t[9] = so, t[10] = uo, t[11] = fo), (0, import_react.useEffect)(uo, fo);
4654
+ let po;
4655
+ t[12] !== o || t[13] !== so ? (po = (e6) => {
4656
+ u(e6), o && (f.current = true, so(o, e6));
4657
+ }, t[12] = o, t[13] = so, t[14] = po) : po = t[14];
4658
+ let mo = po, ho;
4659
+ t[15] === s ? ho = t[16] : (ho = cn("h-full min-h-0 flex flex-col bg-muted/40 dark:bg-muted/20 border-t", s), t[15] = s, t[16] = ho);
4660
+ let go;
4661
+ t[17] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (go = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("header", {
4662
4662
  className: "flex items-center gap-1.5 px-3 h-8 shrink-0 text-xs font-medium uppercase tracking-wide text-muted-foreground",
4663
4663
  children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)(StickyNote, { className: "h-3.5 w-3.5" }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { children: "Speaker notes" })]
4664
- }), t[17] = ho) : ho = t[17];
4665
- let go;
4666
- t[18] !== o || t[19] !== l || t[20] !== fo ? (go = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
4664
+ }), t[17] = go) : go = t[17];
4665
+ let vo;
4666
+ t[18] !== o || t[19] !== l || t[20] !== mo ? (vo = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
4667
4667
  className: "flex-1 min-h-0 p-2",
4668
4668
  children: o ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("textarea", {
4669
4669
  value: l,
4670
- onChange: (e6) => fo(e6.target.value),
4670
+ onChange: (e6) => mo(e6.target.value),
4671
4671
  onClick: Events.stopPropagation(),
4672
4672
  placeholder: "Add notes for this slide. Visible to you in speaker view (press S during presentation).",
4673
4673
  className: cn("h-full w-full resize-none rounded-sm border border-input/25 bg-background", "px-3 py-2 text-sm leading-relaxed text-foreground placeholder:text-muted-foreground", "ring-offset-background focus-visible:outline-hidden focus-visible:ring-1 focus-visible:ring-ring focus-visible:border-accent"),
@@ -4676,14 +4676,14 @@ const SlideNotesEditor = (e5) => {
4676
4676
  className: "h-full flex items-center justify-center text-xs text-muted-foreground",
4677
4677
  children: "Select a slide to add notes."
4678
4678
  })
4679
- }), t[18] = o, t[19] = l, t[20] = fo, t[21] = go) : go = t[21];
4680
- let _o;
4681
- return t[22] !== po || t[23] !== go ? (_o = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("section", {
4682
- className: po,
4679
+ }), t[18] = o, t[19] = l, t[20] = mo, t[21] = vo) : vo = t[21];
4680
+ let yo;
4681
+ return t[22] !== ho || t[23] !== vo ? (yo = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("section", {
4682
+ className: ho,
4683
4683
  "aria-label": "Speaker notes",
4684
4684
  onKeyDown: _temp$1,
4685
- children: [ho, go]
4686
- }), t[22] = po, t[23] = go, t[24] = _o) : _o = t[24], _o;
4685
+ children: [go, vo]
4686
+ }), t[22] = ho, t[23] = vo, t[24] = yo) : yo = t[24], yo;
4687
4687
  };
4688
4688
  function _temp$1(e5) {
4689
4689
  return e5.stopPropagation();
@@ -5982,16 +5982,16 @@ ${c}` : c;
5982
5982
  r2 = t[0], e5 = e5.substring(r2.length);
5983
5983
  let c = ie(t[2].split("\n", 1)[0], t[1].length), l = e5.split("\n", 1)[0], u = !c.trim(), f = 0;
5984
5984
  if (this.options.pedantic ? (f = 2, s2 = c.trimStart()) : u ? f = t[1].length + 1 : (f = c.search(this.rules.other.nonSpaceChar), f = f > 4 ? 1 : f, s2 = c.slice(f), f += t[1].length), u && this.rules.other.blankLine.test(l) && (r2 += l + "\n", e5 = e5.substring(l.length + 1), n2 = true), !n2) {
5985
- let t2 = this.rules.other.nextBulletRegex(f), n3 = this.rules.other.hrRegex(f), i2 = this.rules.other.fencesBeginRegex(f), a2 = this.rules.other.headingBeginRegex(f), o2 = this.rules.other.htmlBeginRegex(f), io = this.rules.other.blockquoteBeginRegex(f);
5985
+ let t2 = this.rules.other.nextBulletRegex(f), n3 = this.rules.other.hrRegex(f), i2 = this.rules.other.fencesBeginRegex(f), a2 = this.rules.other.headingBeginRegex(f), o2 = this.rules.other.htmlBeginRegex(f), oo = this.rules.other.blockquoteBeginRegex(f);
5986
5986
  for (; e5; ) {
5987
- let ao = e5.split("\n", 1)[0], p;
5988
- if (l = ao, this.options.pedantic ? (l = l.replace(this.rules.other.listReplaceNesting, " "), p = l) : p = l.replace(this.rules.other.tabCharGlobal, " "), i2.test(l) || a2.test(l) || o2.test(l) || io.test(l) || t2.test(l) || n3.test(l)) break;
5987
+ let so = e5.split("\n", 1)[0], p;
5988
+ if (l = so, this.options.pedantic ? (l = l.replace(this.rules.other.listReplaceNesting, " "), p = l) : p = l.replace(this.rules.other.tabCharGlobal, " "), i2.test(l) || a2.test(l) || o2.test(l) || oo.test(l) || t2.test(l) || n3.test(l)) break;
5989
5989
  if (p.search(this.rules.other.nonSpaceChar) >= f || !l.trim()) s2 += "\n" + p.slice(f);
5990
5990
  else {
5991
5991
  if (u || c.replace(this.rules.other.tabCharGlobal, " ").search(this.rules.other.nonSpaceChar) >= 4 || i2.test(c) || a2.test(c) || n3.test(c)) break;
5992
5992
  s2 += "\n" + l;
5993
5993
  }
5994
- u = !l.trim(), r2 += ao + "\n", e5 = e5.substring(ao.length + 1), c = p.slice(f);
5994
+ u = !l.trim(), r2 += so + "\n", e5 = e5.substring(so.length + 1), c = p.slice(f);
5995
5995
  }
5996
5996
  }
5997
5997
  i.loose || (o ? i.loose = true : this.rules.other.doubleBlankLine.test(r2) && (o = true)), i.items.push({
@@ -7208,35 +7208,35 @@ function useParkedPreview(e5) {
7208
7208
  activeCellId: a,
7209
7209
  cellId: null
7210
7210
  }, t[3] = a, t[4] = l);
7211
- let [u, f] = (0, import_react.useState)(l), io = u.cellId;
7212
- u.activeCellId === a ? s && io !== a && (io = a, f({
7211
+ let [u, f] = (0, import_react.useState)(l), oo = u.cellId;
7212
+ u.activeCellId === a ? s && oo !== a && (oo = a, f({
7213
7213
  activeCellId: a,
7214
- cellId: io
7215
- })) : (io = s ? a : null, f({
7214
+ cellId: oo
7215
+ })) : (oo = s ? a : null, f({
7216
7216
  activeCellId: a,
7217
- cellId: io
7217
+ cellId: oo
7218
7218
  }));
7219
- let ao = !c && a != null && io === a, p = ao ? io : null, oo;
7220
- t[5] === p ? oo = t[6] : (oo = {
7219
+ let so = !c && a != null && oo === a, p = so ? oo : null, co;
7220
+ t[5] === p ? co = t[6] : (co = {
7221
7221
  cellId: p,
7222
7222
  show: true
7223
- }, t[5] = p, t[6] = oo);
7224
- let [so, co] = (0, import_react.useState)(oo), lo = so.show;
7225
- so.cellId !== p && (lo = true, co({
7223
+ }, t[5] = p, t[6] = co);
7224
+ let [lo, uo] = (0, import_react.useState)(co), fo = lo.show;
7225
+ lo.cellId !== p && (fo = true, uo({
7226
7226
  cellId: p,
7227
7227
  show: true
7228
7228
  }));
7229
- let uo;
7230
- t[7] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (uo = () => co(_temp), t[7] = uo) : uo = t[7];
7231
- let fo = useEvent_default(uo), po = c || ao ? n ?? null : null, mo;
7232
- return t[8] !== p || t[9] !== lo || t[10] !== ao || t[11] !== s || t[12] !== po || t[13] !== fo ? (mo = {
7233
- parkedPreviewCell: po,
7234
- isHeldEdit: ao,
7229
+ let po;
7230
+ t[7] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (po = () => uo(_temp), t[7] = po) : po = t[7];
7231
+ let mo = useEvent_default(po), ho = c || so ? n ?? null : null, go;
7232
+ return t[8] !== p || t[9] !== fo || t[10] !== so || t[11] !== s || t[12] !== ho || t[13] !== mo ? (go = {
7233
+ parkedPreviewCell: ho,
7234
+ isHeldEdit: so,
7235
7235
  isNoOutputPreview: s,
7236
7236
  heldEditCellId: p,
7237
- heldShowsCode: lo,
7238
- toggleHeldShowsCode: fo
7239
- }, t[8] = p, t[9] = lo, t[10] = ao, t[11] = s, t[12] = po, t[13] = fo, t[14] = mo) : mo = t[14], mo;
7237
+ heldShowsCode: fo,
7238
+ toggleHeldShowsCode: mo
7239
+ }, t[8] = p, t[9] = fo, t[10] = so, t[11] = s, t[12] = ho, t[13] = mo, t[14] = go) : go = t[14], go;
7240
7240
  }
7241
7241
  function _temp(e5) {
7242
7242
  return {
@@ -7244,13 +7244,23 @@ function _temp(e5) {
7244
7244
  show: !e5.show
7245
7245
  };
7246
7246
  }
7247
+ function resolveSlideContentStyle(e5) {
7248
+ switch (e5 ?? "center") {
7249
+ case "top":
7250
+ return { margin: "0 20px auto" };
7251
+ case "bottom":
7252
+ return { margin: "auto 20px 0" };
7253
+ default:
7254
+ return { margin: "auto 20px" };
7255
+ }
7256
+ }
7247
7257
  var SubslideView = (e5) => {
7248
- let t = (0, import_compiler_runtime.c)(24), { subslide: n, resolveShowCode: r, isEditable: i, slideConfigs: a } = e5, o, s, c, u, f, ao;
7249
- if (t[0] !== i || t[1] !== r || t[2] !== a || t[3] !== n) {
7258
+ let t = (0, import_compiler_runtime.c)(24), { subslide: n, resolveShowCode: r, isEditable: i, slideConfigs: a, contentStyle: o } = e5, s, c, u, f, oo, so;
7259
+ if (t[0] !== o || t[1] !== i || t[2] !== r || t[3] !== a || t[4] !== n) {
7250
7260
  let { slideLevel: e6, cumulativeByBlock: p2 } = buildSubslideNotes(n, a);
7251
- s = e6;
7252
- let oo2 = n.blocks.some((e7) => e7.cells.some((e8) => r(e8.id)));
7253
- o = w, ao = "h-full w-full overflow-auto flex", c = oo2 ? "mo-slide-content flex flex-col gap-3" : "mo-slide-content", t[10] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (u = { margin: "auto 20px" }, t[10] = u) : u = t[10], f = n.blocks.map((e7, t2) => {
7261
+ c = e6;
7262
+ let co2 = n.blocks.some((e7) => e7.cells.some((e8) => r(e8.id)));
7263
+ s = w, so = "h-full w-full overflow-auto flex", u = co2 ? "mo-slide-content flex flex-col gap-3" : "mo-slide-content", f = o, oo = n.blocks.map((e7, t2) => {
7254
7264
  let n2 = e7.cells.map((e8) => r(e8.id) ? i ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SlideCellView, { cell: e8 }, e8.id) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SlideCellReadOnlyView, { cell: e8 }, e8.id) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Slide, {
7255
7265
  cellId: e8.id,
7256
7266
  status: e8.status,
@@ -7265,23 +7275,23 @@ var SubslideView = (e5) => {
7265
7275
  }, t2);
7266
7276
  }
7267
7277
  return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react.Fragment, { children: n2 }, t2);
7268
- }), t[0] = i, t[1] = r, t[2] = a, t[3] = n, t[4] = o, t[5] = s, t[6] = c, t[7] = u, t[8] = f, t[9] = ao;
7269
- } else o = t[4], s = t[5], c = t[6], u = t[7], f = t[8], ao = t[9];
7278
+ }), t[0] = o, t[1] = i, t[2] = r, t[3] = a, t[4] = n, t[5] = s, t[6] = c, t[7] = u, t[8] = f, t[9] = oo, t[10] = so;
7279
+ } else s = t[5], c = t[6], u = t[7], f = t[8], oo = t[9], so = t[10];
7270
7280
  let p;
7271
- t[11] !== c || t[12] !== u || t[13] !== f ? (p = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7272
- className: c,
7273
- style: u,
7274
- children: f
7275
- }), t[11] = c, t[12] = u, t[13] = f, t[14] = p) : p = t[14];
7276
- let oo;
7277
- t[15] !== ao || t[16] !== p ? (oo = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7278
- className: ao,
7279
- children: p
7280
- }), t[15] = ao, t[16] = p, t[17] = oo) : oo = t[17];
7281
- let so;
7282
- t[18] === s ? so = t[19] : (so = s && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(NotesAside, { text: s }), t[18] = s, t[19] = so);
7281
+ t[11] !== u || t[12] !== f || t[13] !== oo ? (p = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7282
+ className: u,
7283
+ style: f,
7284
+ children: oo
7285
+ }), t[11] = u, t[12] = f, t[13] = oo, t[14] = p) : p = t[14];
7283
7286
  let co;
7284
- return t[20] !== o || t[21] !== oo || t[22] !== so ? (co = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(o, { children: [oo, so] }), t[20] = o, t[21] = oo, t[22] = so, t[23] = co) : co = t[23], co;
7287
+ t[15] !== so || t[16] !== p ? (co = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7288
+ className: so,
7289
+ children: p
7290
+ }), t[15] = so, t[16] = p, t[17] = co) : co = t[17];
7291
+ let lo;
7292
+ t[18] === c ? lo = t[19] : (lo = c && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(NotesAside, { text: c }), t[18] = c, t[19] = lo);
7293
+ let fo;
7294
+ return t[20] !== s || t[21] !== co || t[22] !== lo ? (fo = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(s, { children: [co, lo] }), t[20] = s, t[21] = co, t[22] = lo, t[23] = fo) : fo = t[23], fo;
7285
7295
  };
7286
7296
  function parkedRendersSource(e5) {
7287
7297
  let { isNoOutputPreview: t, isEditable: n, showCode: r } = e5;
@@ -7306,175 +7316,178 @@ var ParkedPreviewContent = (e5) => {
7306
7316
  output: c,
7307
7317
  stale: u
7308
7318
  }), t[5] = n.id, t[6] = n.output, t[7] = n.status, t[8] = u, t[9] = f) : f = t[9], f;
7309
- }, reveal_component_default = ({ slideCells: e5, layout: o, setLayout: s, noOutputIds: l, activeIndex: u, onSlideChange: f, mode: io, configWidth: p, isEditable: mo = false }) => {
7310
- var _a2, _b2;
7311
- let ho = (0, import_react.useRef)(null), xo = (0, import_react.useRef)(null), { width: So, height: wo } = useSlideDimensions(ho), To = useFullScreenElement() != null, Eo = useAtomValue(kioskModeAtom), Do = (0, import_react.useMemo)(() => Eo ? [] : [ce], [Eo]), [Oo, ko] = (0, import_react.useState)(() => /* @__PURE__ */ new Set()), Ao = useNotebookCodeAvailable(e5), jo = !isIslands() && Ao, Mo = u == null ? void 0 : e5[u], No = Mo ?? e5.at(0), { parkedPreviewCell: Po, isHeldEdit: Fo, isNoOutputPreview: Io, heldEditCellId: Lo, heldShowsCode: Ro, toggleHeldShowsCode: zo } = useParkedPreview({
7312
- activeCell: Mo,
7319
+ }, reveal_component_default = ({ slideCells: e5, layout: o, setLayout: s, noOutputIds: l, activeIndex: u, onSlideChange: f, mode: lo, configWidth: uo, isEditable: po = false }) => {
7320
+ var _a2, _b2, _c;
7321
+ let _o = (0, import_react.useRef)(null), vo = (0, import_react.useRef)(null), { width: wo, height: To } = useSlideDimensions(_o), Do = useFullScreenElement() != null, Oo = useAtomValue(kioskModeAtom), ko = (0, import_react.useMemo)(() => Oo ? [] : [ce], [Oo]), [Ao, jo] = (0, import_react.useState)(() => /* @__PURE__ */ new Set()), Mo = useNotebookCodeAvailable(e5), No = !isIslands() && Mo, Po = u == null ? void 0 : e5[u], Fo = Po ?? e5.at(0), { parkedPreviewCell: Io, isHeldEdit: Lo, isNoOutputPreview: Ro, heldEditCellId: zo, heldShowsCode: Bo, toggleHeldShowsCode: Vo } = useParkedPreview({
7322
+ activeCell: Po,
7313
7323
  slideConfigs: o.cells,
7314
7324
  noOutputIds: l
7315
- }), Bo = (e6) => shouldShowCode({
7325
+ }), Ho = (e6) => shouldShowCode({
7316
7326
  cells: o.cells,
7317
7327
  cellId: e6,
7318
- showCodeOverrides: Oo,
7319
- codeToggleEnabled: jo
7320
- }), Vo = (Mo == null ? void 0 : Mo.id) ?? (No == null ? void 0 : No.id), Ho = Fo ? Ro : Bo(Vo), Uo = jo && Vo != null && (((_a2 = o.cells.get(Vo)) == null ? void 0 : _a2.showCode) ?? false), Wo = (0, import_react.useMemo)(() => composeSlides({
7328
+ showCodeOverrides: Ao,
7329
+ codeToggleEnabled: No
7330
+ }), Uo = (Po == null ? void 0 : Po.id) ?? (Fo == null ? void 0 : Fo.id), Wo = Lo ? Bo : Ho(Uo), Go = No && Uo != null && (((_a2 = o.cells.get(Uo)) == null ? void 0 : _a2.showCode) ?? false), Ko = (0, import_react.useMemo)(() => composeSlides({
7321
7331
  cells: e5,
7322
7332
  getType: (e6) => deckSlideType({
7323
7333
  cell: e6,
7324
7334
  noOutputIds: l,
7325
- heldEditCellId: Lo,
7335
+ heldEditCellId: zo,
7326
7336
  slideConfigs: o.cells
7327
7337
  })
7328
7338
  }), [
7329
7339
  e5,
7330
7340
  l,
7331
7341
  o.cells,
7332
- Lo
7333
- ]), { cellToTarget: Go, targetToCellIndex: Ko } = (0, import_react.useMemo)(() => buildSlideIndices({
7334
- composition: Wo,
7342
+ zo
7343
+ ]), { cellToTarget: qo, targetToCellIndex: Jo } = (0, import_react.useMemo)(() => buildSlideIndices({
7344
+ composition: Ko,
7335
7345
  cells: e5,
7336
7346
  getId: (e6) => e6.id
7337
- }), [Wo, e5]), qo = ((_b2 = o.deck) == null ? void 0 : _b2.transition) ?? "slide", Jo = (0, import_react.useMemo)(() => {
7347
+ }), [Ko, e5]), Yo = ((_b2 = o.deck) == null ? void 0 : _b2.transition) ?? "slide", Xo = resolveSlideContentStyle((_c = o.deck) == null ? void 0 : _c.verticalAlign), Zo = (0, import_react.useMemo)(() => {
7338
7348
  let e6 = new URL(window.location.href);
7339
7349
  return e6.searchParams.set("kiosk", "true"), e6.searchParams.set("show-chrome", "false"), e6.toString();
7340
- }, []), Yo = (0, import_react.useMemo)(() => ({
7350
+ }, []), Qo = (0, import_react.useMemo)(() => ({
7341
7351
  embedded: true,
7342
- width: So,
7343
- height: wo,
7352
+ width: wo,
7353
+ height: To,
7344
7354
  center: false,
7345
7355
  minScale: 0.2,
7346
7356
  maxScale: 2,
7347
- transition: qo,
7357
+ transition: Yo,
7348
7358
  keyboardCondition: (e6) => !Events.fromInput(e6),
7349
- url: Jo
7359
+ url: Zo,
7360
+ scrollActivationWidth: 0
7350
7361
  }), [
7351
- So,
7352
7362
  wo,
7353
- qo,
7354
- Jo
7355
- ]), Xo = useEvent_default((t) => {
7363
+ To,
7364
+ Yo,
7365
+ Zo
7366
+ ]), $o = useEvent_default((t) => {
7356
7367
  let n = resolveDeckNavigationTarget({
7357
7368
  activeIndex: u,
7358
7369
  cells: e5,
7359
- cellToTarget: Go,
7370
+ cellToTarget: qo,
7360
7371
  getId: (e6) => e6.id
7361
7372
  }), r = n && computeDeckNavigation(t.getIndices(), n);
7362
7373
  r && (t.slide(r.h, r.v, r.f), clearPreviousVerticalIndices(t));
7363
7374
  });
7364
7375
  (0, import_react.useEffect)(() => {
7365
- let e6 = xo.current;
7366
- e6 != null && Xo(e6);
7376
+ let e6 = vo.current;
7377
+ e6 != null && $o(e6);
7367
7378
  }, [
7368
7379
  u,
7369
- Go,
7380
+ qo,
7370
7381
  e5,
7371
- Xo
7382
+ $o
7372
7383
  ]);
7373
- let Zo = useEvent_default(() => {
7374
- if (!(Vo == null || Uo)) {
7375
- if (Fo) {
7376
- zo();
7384
+ let ns = useEvent_default(() => {
7385
+ if (!(Uo == null || Go)) {
7386
+ if (Lo) {
7387
+ Vo();
7377
7388
  return;
7378
7389
  }
7379
- (0, import_react.startTransition)(() => ko((e6) => {
7390
+ (0, import_react.startTransition)(() => jo((e6) => {
7380
7391
  let t = new Set(e6);
7381
- return t.has(Vo) ? t.delete(Vo) : t.add(Vo), t;
7392
+ return t.has(Uo) ? t.delete(Uo) : t.add(Uo), t;
7382
7393
  }));
7383
7394
  }
7384
- }), Qo = useEvent_default((e6) => {
7395
+ }), rs = useEvent_default((e6) => {
7385
7396
  var _a3;
7386
- Xo(e6), jo && e6.addKeyBinding({
7397
+ $o(e6), No && e6.addKeyBinding({
7387
7398
  keyCode: 67,
7388
7399
  key: "C",
7389
7400
  description: "Toggle code editor"
7390
- }, Zo);
7401
+ }, ns);
7391
7402
  let t = (_a3 = e6.getSlidesElement()) == null ? void 0 : _a3.closest(".reveal");
7392
7403
  t instanceof HTMLElement && (t.tabIndex = -1, t.focus({ preventScroll: true }));
7393
- }), $o = useEvent_default(() => {
7394
- if (Po != null) return;
7395
- let e6 = xo.current;
7404
+ }), is = useEvent_default(() => {
7405
+ if (Io != null) return;
7406
+ let e6 = vo.current;
7396
7407
  if (!e6) return;
7397
- let t = resolveActiveCellIndex(Ko, e6.getIndices());
7408
+ let t = resolveActiveCellIndex(Jo, e6.getIndices());
7398
7409
  t != null && (f == null ? void 0 : f(t));
7399
- }), ns = useEvent_default((t) => {
7400
- if (!Po || u == null || Events.fromInput(t)) return;
7410
+ }), as = useEvent_default((t) => {
7411
+ if (!Io || u == null || Events.fromInput(t)) return;
7401
7412
  let n = classifyNavKey(t);
7402
7413
  if (n === 0) return;
7403
7414
  t.preventDefault(), t.stopPropagation();
7404
7415
  let i = u + n;
7405
7416
  i < 0 || i >= e5.length || (f == null ? void 0 : f(i));
7406
- }), rs = useEvent_default(() => {
7407
- $o(), triggerResize(xo.current);
7417
+ }), os = useEvent_default(() => {
7418
+ is(), triggerResize(vo.current);
7408
7419
  });
7409
- useEventListener(document, "keydown", ns, { capture: true });
7410
- let is = Fo ? null : Io ? "Hidden as there is no output" : "Skipped in presentation", as = Fo ? Ro : Bo(Po == null ? void 0 : Po.id), os = parkedRendersSource({
7411
- isNoOutputPreview: Io,
7412
- isEditable: mo,
7413
- showCode: as
7414
- }), ss = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7415
- ref: ho,
7420
+ useEventListener(document, "keydown", as, { capture: true });
7421
+ let ss = Lo ? null : Ro ? "Hidden as there is no output" : "Skipped in presentation", cs = Lo ? Bo : Ho(Io == null ? void 0 : Io.id), ls = parkedRendersSource({
7422
+ isNoOutputPreview: Ro,
7423
+ isEditable: po,
7424
+ showCode: cs
7425
+ }), us = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7426
+ ref: _o,
7416
7427
  className: "h-full w-full min-w-0 flex items-center justify-center overflow-hidden",
7417
7428
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7418
7429
  className: "group relative",
7419
7430
  style: {
7420
- width: So,
7421
- height: wo
7431
+ width: wo,
7432
+ height: To
7422
7433
  },
7423
7434
  children: [
7424
7435
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(b, {
7425
- deckRef: xo,
7436
+ deckRef: vo,
7426
7437
  className: "aspect-video w-full overflow-hidden border rounded bg-background mo-slides-theme prose-slides focus:outline-hidden focus-visible:outline-hidden",
7427
- config: Yo,
7428
- onReady: Qo,
7429
- onSlideChange: rs,
7430
- onFragmentShown: $o,
7431
- onFragmentHidden: $o,
7432
- plugins: Do,
7433
- children: Wo.stacks.map((e6, t) => e6.subslides.length === 1 ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SubslideView, {
7438
+ config: Qo,
7439
+ onReady: rs,
7440
+ onSlideChange: os,
7441
+ onFragmentShown: is,
7442
+ onFragmentHidden: is,
7443
+ plugins: ko,
7444
+ children: Ko.stacks.map((e6, t) => e6.subslides.length === 1 ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SubslideView, {
7434
7445
  subslide: e6.subslides[0],
7435
- resolveShowCode: Bo,
7436
- isEditable: mo,
7437
- slideConfigs: o.cells
7446
+ resolveShowCode: Ho,
7447
+ isEditable: po,
7448
+ slideConfigs: o.cells,
7449
+ contentStyle: Xo
7438
7450
  }, t) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ne, { children: e6.subslides.map((e7, t2) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SubslideView, {
7439
7451
  subslide: e7,
7440
- resolveShowCode: Bo,
7441
- isEditable: mo,
7442
- slideConfigs: o.cells
7452
+ resolveShowCode: Ho,
7453
+ isEditable: po,
7454
+ slideConfigs: o.cells,
7455
+ contentStyle: Xo
7443
7456
  }, t2)) }, t))
7444
7457
  }),
7445
- Po && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7458
+ Io && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7446
7459
  className: "absolute inset-0 z-10 border rounded bg-background flex flex-col overflow-hidden",
7447
- "aria-label": is ?? void 0,
7448
- children: [is && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7460
+ "aria-label": ss ?? void 0,
7461
+ children: [ss && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7449
7462
  className: "flex items-center gap-1.5 px-3 py-1.5 text-xs text-muted-foreground border-b bg-muted/40",
7450
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)(EyeOff, { className: "h-3.5 w-3.5" }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { children: is })]
7463
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)(EyeOff, { className: "h-3.5 w-3.5" }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { children: ss })]
7451
7464
  }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7452
7465
  className: "flex-1 overflow-auto flex",
7453
7466
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7454
- className: os ? "mo-slide-content flex flex-col gap-3" : "mo-slide-content",
7455
- style: { margin: "auto 20px" },
7467
+ className: ls ? "mo-slide-content flex flex-col gap-3" : "mo-slide-content",
7468
+ style: Xo,
7456
7469
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ParkedPreviewContent, {
7457
- cell: Po,
7458
- isNoOutputPreview: Io,
7459
- isEditable: mo,
7460
- showCode: as
7470
+ cell: Io,
7471
+ isNoOutputPreview: Ro,
7472
+ isEditable: po,
7473
+ showCode: cs
7461
7474
  })
7462
7475
  })
7463
7476
  })]
7464
- }, Po.id),
7477
+ }, Io.id),
7465
7478
  /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7466
7479
  className: "absolute top-2 right-2 z-20 opacity-0 group-hover:opacity-70 text-muted-foreground transition-opacity",
7467
- children: [jo && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Tooltip, {
7468
- content: Uo ? "Code is always shown for this slide" : Ho ? "Hide code (C)" : "Show code (C)",
7480
+ children: [No && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Tooltip, {
7481
+ content: Go ? "Code is always shown for this slide" : Wo ? "Hide code (C)" : "Show code (C)",
7469
7482
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Button, {
7470
7483
  "data-testid": "marimo-plugin-slides-toggle-code",
7471
7484
  variant: "ghost",
7472
7485
  size: "icon",
7473
- className: cn("text-muted-foreground h-7 w-7", Ho && "text-foreground bg-muted", Uo && "opacity-50 cursor-not-allowed"),
7474
- "aria-pressed": Ho,
7475
- "aria-disabled": Uo,
7476
- "aria-label": Uo ? "Code always shown" : Ho ? "Hide code" : "Show code",
7477
- onClick: Zo,
7486
+ className: cn("text-muted-foreground h-7 w-7", Wo && "text-foreground bg-muted", Go && "opacity-50 cursor-not-allowed"),
7487
+ "aria-pressed": Wo,
7488
+ "aria-disabled": Go,
7489
+ "aria-label": Go ? "Code always shown" : Wo ? "Hide code" : "Show code",
7490
+ onClick: ns,
7478
7491
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Code, { className: "h-4 w-4" })
7479
7492
  })
7480
7493
  }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Tooltip, {
@@ -7487,7 +7500,7 @@ var ParkedPreviewContent = (e5) => {
7487
7500
  "aria-label": "Enter fullscreen",
7488
7501
  onClick: () => {
7489
7502
  var _a3, _b3;
7490
- (_b3 = (_a3 = xo.current) == null ? void 0 : _a3.getViewportElement()) == null ? void 0 : _b3.requestFullscreen().catch((e6) => {
7503
+ (_b3 = (_a3 = vo.current) == null ? void 0 : _a3.getViewportElement()) == null ? void 0 : _b3.requestFullscreen().catch((e6) => {
7491
7504
  Logger.error("Failed to request fullscreen", e6);
7492
7505
  });
7493
7506
  },
@@ -7498,9 +7511,9 @@ var ParkedPreviewContent = (e5) => {
7498
7511
  ]
7499
7512
  })
7500
7513
  });
7501
- return io === "read" ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7514
+ return lo === "read" ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", {
7502
7515
  className: "flex-1 min-w-0 flex flex-row gap-3",
7503
- children: ss
7516
+ children: us
7504
7517
  }) : /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", {
7505
7518
  className: "flex-1 min-w-0 flex flex-row gap-3",
7506
7519
  children: [/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(PanelGroup, {
@@ -7511,7 +7524,7 @@ var ParkedPreviewContent = (e5) => {
7511
7524
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Panel, {
7512
7525
  defaultSize: 92,
7513
7526
  minSize: 60,
7514
- children: ss
7527
+ children: us
7515
7528
  }),
7516
7529
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PanelResizeHandle, {
7517
7530
  className: "mo-slides-notes-resize",
@@ -7519,7 +7532,7 @@ var ParkedPreviewContent = (e5) => {
7519
7532
  coarse: 12,
7520
7533
  fine: 4
7521
7534
  },
7522
- disabled: To
7535
+ disabled: Do
7523
7536
  }),
7524
7537
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Panel, {
7525
7538
  defaultSize: 10,
@@ -7529,15 +7542,15 @@ var ParkedPreviewContent = (e5) => {
7529
7542
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SlideNotesEditor, {
7530
7543
  layout: o,
7531
7544
  setLayout: s,
7532
- cellId: No == null ? void 0 : No.id
7545
+ cellId: Fo == null ? void 0 : Fo.id
7533
7546
  })
7534
7547
  })
7535
7548
  ]
7536
7549
  }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SlideSidebar, {
7537
- configWidth: p,
7550
+ configWidth: uo,
7538
7551
  layout: o,
7539
7552
  setLayout: s,
7540
- activeConfigCell: No
7553
+ activeConfigCell: Fo
7541
7554
  })]
7542
7555
  });
7543
7556
  };