sibujs 1.0.0 → 1.0.2

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 (52) hide show
  1. package/dist/browser.js +4 -3
  2. package/dist/build.cjs +11 -3
  3. package/dist/build.js +10 -9
  4. package/dist/cdn.global.js +4 -4
  5. package/dist/chunk-24WSRM54.js +2002 -0
  6. package/dist/chunk-3CRQALYP.js +877 -0
  7. package/dist/chunk-6HLLIF3K.js +398 -0
  8. package/dist/chunk-7TQKR4PP.js +294 -0
  9. package/dist/chunk-CZUGLNJS.js +37 -0
  10. package/dist/chunk-DTCOOBMX.js +725 -0
  11. package/dist/chunk-FGOEVHY3.js +60 -0
  12. package/dist/chunk-HGMJFBC7.js +654 -0
  13. package/dist/chunk-HS6OOE3Q.js +365 -0
  14. package/dist/chunk-L36YN45V.js +949 -0
  15. package/dist/chunk-MJ4LVHGX.js +712 -0
  16. package/dist/chunk-N6IZB6KJ.js +567 -0
  17. package/dist/chunk-NMRUZALC.js +1097 -0
  18. package/dist/chunk-OHQQWZ7P.js +969 -0
  19. package/dist/chunk-ONCYDOK6.js +466 -0
  20. package/dist/chunk-OWLQ4HZI.js +282 -0
  21. package/dist/chunk-PZEGYCF5.js +61 -0
  22. package/dist/chunk-QVKGGB2S.js +300 -0
  23. package/dist/chunk-SDLZDHKP.js +107 -0
  24. package/dist/chunk-Y6GP4QGG.js +276 -0
  25. package/dist/chunk-YECR7UIA.js +347 -0
  26. package/dist/chunk-Z65KYU7I.js +26 -0
  27. package/dist/data.cjs +24 -4
  28. package/dist/data.js +6 -5
  29. package/dist/devtools.cjs +1 -1
  30. package/dist/devtools.js +4 -3
  31. package/dist/ecosystem.cjs +9 -2
  32. package/dist/ecosystem.js +7 -6
  33. package/dist/extras.cjs +68 -24
  34. package/dist/extras.js +21 -20
  35. package/dist/index.cjs +11 -3
  36. package/dist/index.js +10 -9
  37. package/dist/motion.js +3 -2
  38. package/dist/patterns.cjs +7 -2
  39. package/dist/patterns.d.cts +15 -0
  40. package/dist/patterns.d.ts +15 -0
  41. package/dist/patterns.js +5 -4
  42. package/dist/performance.js +3 -2
  43. package/dist/plugins.cjs +65 -29
  44. package/dist/plugins.js +9 -8
  45. package/dist/ssr-WKUPVSSK.js +36 -0
  46. package/dist/ssr.cjs +60 -41
  47. package/dist/ssr.d.cts +9 -3
  48. package/dist/ssr.d.ts +9 -3
  49. package/dist/ssr.js +8 -7
  50. package/dist/ui.js +6 -5
  51. package/dist/widgets.js +5 -4
  52. package/package.json +1 -1
@@ -0,0 +1,398 @@
1
+ import {
2
+ signal
3
+ } from "./chunk-YECR7UIA.js";
4
+
5
+ // src/ui/transition.ts
6
+ function transition(element, options = {}) {
7
+ const {
8
+ property = "all",
9
+ duration = 300,
10
+ easing = "ease",
11
+ delay = 0,
12
+ enterClass,
13
+ leaveClass,
14
+ activeClass,
15
+ onEnterDone,
16
+ onLeaveDone
17
+ } = options;
18
+ const transitionValue = `${property} ${duration}ms ${easing} ${delay}ms`;
19
+ function enter() {
20
+ return new Promise((resolve) => {
21
+ element.style.transition = transitionValue;
22
+ if (enterClass) element.classList.add(enterClass);
23
+ if (leaveClass) element.classList.remove(leaveClass);
24
+ void element.offsetHeight;
25
+ if (activeClass) element.classList.add(activeClass);
26
+ const done = () => {
27
+ if (enterClass) element.classList.remove(enterClass);
28
+ onEnterDone?.();
29
+ resolve();
30
+ };
31
+ if (duration > 0) {
32
+ setTimeout(done, duration + delay);
33
+ } else {
34
+ done();
35
+ }
36
+ });
37
+ }
38
+ function leave() {
39
+ return new Promise((resolve) => {
40
+ element.style.transition = transitionValue;
41
+ if (activeClass) element.classList.remove(activeClass);
42
+ if (leaveClass) element.classList.add(leaveClass);
43
+ if (enterClass) element.classList.remove(enterClass);
44
+ const done = () => {
45
+ if (leaveClass) element.classList.remove(leaveClass);
46
+ onLeaveDone?.();
47
+ resolve();
48
+ };
49
+ if (duration > 0) {
50
+ setTimeout(done, duration + delay);
51
+ } else {
52
+ done();
53
+ }
54
+ });
55
+ }
56
+ return { enter, leave };
57
+ }
58
+ function spring(element, keyframes, options = {}) {
59
+ const defaults = {
60
+ duration: 300,
61
+ easing: "cubic-bezier(0.34, 1.56, 0.64, 1)",
62
+ fill: "forwards"
63
+ };
64
+ return new Promise((resolve) => {
65
+ const animation = element.animate(keyframes, { ...defaults, ...options });
66
+ animation.onfinish = () => resolve();
67
+ animation.oncancel = () => resolve();
68
+ });
69
+ }
70
+
71
+ // src/ui/animationPresets.ts
72
+ var prefersReducedMotion = () => typeof window !== "undefined" && window.matchMedia?.("(prefers-reduced-motion: reduce)").matches;
73
+ function createPreset(keyframes, defaults, overrides) {
74
+ const opts = {
75
+ ...defaults,
76
+ ...overrides,
77
+ fill: overrides?.fill ?? defaults.fill ?? "forwards"
78
+ };
79
+ if (prefersReducedMotion()) {
80
+ return {
81
+ keyframes: [keyframes[keyframes.length - 1]],
82
+ options: { ...opts, duration: 0, delay: 0 }
83
+ };
84
+ }
85
+ return { keyframes, options: opts };
86
+ }
87
+ function applyPreset(el, preset) {
88
+ return new Promise((resolve) => {
89
+ const anim = el.animate(preset.keyframes, preset.options);
90
+ anim.onfinish = () => resolve();
91
+ anim.oncancel = () => resolve();
92
+ });
93
+ }
94
+ function fadeIn(opts) {
95
+ return createPreset([{ opacity: 0 }, { opacity: 1 }], { duration: 300, easing: "ease-out" }, opts);
96
+ }
97
+ function fadeOut(opts) {
98
+ return createPreset([{ opacity: 1 }, { opacity: 0 }], { duration: 300, easing: "ease-in" }, opts);
99
+ }
100
+ var slideOffsets = {
101
+ up: "translateY(20px)",
102
+ down: "translateY(-20px)",
103
+ left: "translateX(20px)",
104
+ right: "translateX(-20px)"
105
+ };
106
+ function slideIn(direction = "up", opts) {
107
+ return createPreset(
108
+ [
109
+ { transform: slideOffsets[direction], opacity: 0 },
110
+ { transform: "translate(0, 0)", opacity: 1 }
111
+ ],
112
+ { duration: 400, easing: "cubic-bezier(0.16, 1, 0.3, 1)" },
113
+ opts
114
+ );
115
+ }
116
+ function slideOut(direction = "down", opts) {
117
+ return createPreset(
118
+ [
119
+ { transform: "translate(0, 0)", opacity: 1 },
120
+ { transform: slideOffsets[direction], opacity: 0 }
121
+ ],
122
+ { duration: 300, easing: "cubic-bezier(0.4, 0, 1, 1)" },
123
+ opts
124
+ );
125
+ }
126
+ function scaleUp(opts) {
127
+ return createPreset(
128
+ [
129
+ { transform: "scale(0.85)", opacity: 0 },
130
+ { transform: "scale(1)", opacity: 1 }
131
+ ],
132
+ { duration: 350, easing: "cubic-bezier(0.34, 1.56, 0.64, 1)" },
133
+ opts
134
+ );
135
+ }
136
+ function scaleDown(opts) {
137
+ return createPreset(
138
+ [
139
+ { transform: "scale(1)", opacity: 1 },
140
+ { transform: "scale(0.85)", opacity: 0 }
141
+ ],
142
+ { duration: 250, easing: "ease-in" },
143
+ opts
144
+ );
145
+ }
146
+ function bounceIn(opts) {
147
+ return createPreset(
148
+ [
149
+ { transform: "scale(0.3)", opacity: 0 },
150
+ { transform: "scale(1.05)", opacity: 0.8, offset: 0.5 },
151
+ { transform: "scale(0.95)", opacity: 0.9, offset: 0.7 },
152
+ { transform: "scale(1)", opacity: 1 }
153
+ ],
154
+ { duration: 500, easing: "cubic-bezier(0.34, 1.56, 0.64, 1)" },
155
+ opts
156
+ );
157
+ }
158
+ function bounceOut(opts) {
159
+ return createPreset(
160
+ [
161
+ { transform: "scale(1)", opacity: 1 },
162
+ { transform: "scale(1.05)", opacity: 0.9, offset: 0.3 },
163
+ { transform: "scale(0.3)", opacity: 0 }
164
+ ],
165
+ { duration: 400, easing: "ease-in" },
166
+ opts
167
+ );
168
+ }
169
+ function flipIn(axis = "x", opts) {
170
+ const prop = axis === "x" ? "rotateX" : "rotateY";
171
+ return createPreset(
172
+ [
173
+ { transform: `perspective(400px) ${prop}(90deg)`, opacity: 0 },
174
+ { transform: `perspective(400px) ${prop}(-10deg)`, opacity: 1, offset: 0.6 },
175
+ { transform: `perspective(400px) ${prop}(0deg)`, opacity: 1 }
176
+ ],
177
+ { duration: 500, easing: "ease-out" },
178
+ opts
179
+ );
180
+ }
181
+ function shake(opts) {
182
+ return createPreset(
183
+ [
184
+ { transform: "translateX(0)" },
185
+ { transform: "translateX(-8px)", offset: 0.1 },
186
+ { transform: "translateX(8px)", offset: 0.2 },
187
+ { transform: "translateX(-6px)", offset: 0.3 },
188
+ { transform: "translateX(6px)", offset: 0.4 },
189
+ { transform: "translateX(-4px)", offset: 0.5 },
190
+ { transform: "translateX(4px)", offset: 0.6 },
191
+ { transform: "translateX(-2px)", offset: 0.7 },
192
+ { transform: "translateX(0)" }
193
+ ],
194
+ { duration: 500, easing: "ease-out", fill: "none" },
195
+ opts
196
+ );
197
+ }
198
+ function pulse(opts) {
199
+ return createPreset(
200
+ [{ transform: "scale(1)" }, { transform: "scale(1.08)", offset: 0.5 }, { transform: "scale(1)" }],
201
+ { duration: 400, easing: "ease-in-out", fill: "none" },
202
+ opts
203
+ );
204
+ }
205
+ function animate(el, preset) {
206
+ return applyPreset(el, preset);
207
+ }
208
+ function stagger(elements, preset, delayBetween = 50) {
209
+ const promises = elements.map(
210
+ (el, i) => applyPreset(el, {
211
+ keyframes: preset.keyframes,
212
+ options: {
213
+ ...preset.options,
214
+ delay: (preset.options.delay || 0) + i * delayBetween
215
+ }
216
+ })
217
+ );
218
+ return Promise.all(promises).then(() => {
219
+ });
220
+ }
221
+ async function sequence(steps) {
222
+ for (const step of steps) {
223
+ await applyPreset(step.el, step.preset);
224
+ }
225
+ }
226
+
227
+ // src/ui/TransitionGroup.ts
228
+ function TransitionGroup(options) {
229
+ const [elements, setElements] = signal([]);
230
+ const positions = /* @__PURE__ */ new Map();
231
+ function add(el) {
232
+ setElements((prev) => [...prev, el]);
233
+ if (options.enter) {
234
+ options.enter(el);
235
+ }
236
+ }
237
+ async function remove(el) {
238
+ if (options.leave) {
239
+ await options.leave(el);
240
+ }
241
+ setElements((prev) => prev.filter((e) => e !== el));
242
+ }
243
+ function track(newElements) {
244
+ const oldPositions = /* @__PURE__ */ new Map();
245
+ for (const el of elements()) {
246
+ if (typeof el.getBoundingClientRect === "function") {
247
+ oldPositions.set(el, el.getBoundingClientRect());
248
+ }
249
+ }
250
+ const currentSet = new Set(elements());
251
+ for (const el of newElements) {
252
+ if (!currentSet.has(el)) {
253
+ if (options.enter) {
254
+ options.enter(el);
255
+ }
256
+ }
257
+ }
258
+ const newSet = new Set(newElements);
259
+ for (const el of elements()) {
260
+ if (!newSet.has(el)) {
261
+ if (options.leave) {
262
+ options.leave(el);
263
+ }
264
+ }
265
+ }
266
+ setElements(newElements);
267
+ if (options.move) {
268
+ for (const el of newElements) {
269
+ const oldRect = oldPositions.get(el);
270
+ if (oldRect && typeof el.getBoundingClientRect === "function") {
271
+ const newRect = el.getBoundingClientRect();
272
+ if (oldRect.left !== newRect.left || oldRect.top !== newRect.top) {
273
+ options.move(el);
274
+ }
275
+ }
276
+ }
277
+ }
278
+ positions.clear();
279
+ for (const el of newElements) {
280
+ if (typeof el.getBoundingClientRect === "function") {
281
+ positions.set(el, el.getBoundingClientRect());
282
+ }
283
+ }
284
+ }
285
+ return { add, remove, track };
286
+ }
287
+
288
+ // src/ui/viewTransition.ts
289
+ function viewTransition(callback) {
290
+ const [isTransitioning, setIsTransitioning] = signal(false);
291
+ async function start() {
292
+ setIsTransitioning(true);
293
+ try {
294
+ if (typeof document !== "undefined" && "startViewTransition" in document && typeof document.startViewTransition === "function") {
295
+ const transition2 = document.startViewTransition(callback);
296
+ await transition2.finished;
297
+ } else {
298
+ await callback();
299
+ }
300
+ } finally {
301
+ setIsTransitioning(false);
302
+ }
303
+ }
304
+ return { start, isTransitioning };
305
+ }
306
+
307
+ // src/ui/reducedMotion.ts
308
+ function reducedMotion() {
309
+ if (typeof window === "undefined" || typeof window.matchMedia !== "function") {
310
+ const [reduced2] = signal(false);
311
+ return { reduced: reduced2, dispose: () => {
312
+ } };
313
+ }
314
+ const mql = window.matchMedia("(prefers-reduced-motion: reduce)");
315
+ const [reduced, setReduced] = signal(mql.matches);
316
+ const handler = (event) => {
317
+ setReduced(event.matches);
318
+ };
319
+ mql.addEventListener("change", handler);
320
+ function dispose() {
321
+ mql.removeEventListener("change", handler);
322
+ }
323
+ return { reduced, dispose };
324
+ }
325
+
326
+ // src/ui/springSignal.ts
327
+ var prefersReducedMotion2 = () => typeof window !== "undefined" && !!window.matchMedia?.("(prefers-reduced-motion: reduce)").matches;
328
+ function springSignal(initial, options) {
329
+ const stiffness = options?.stiffness ?? 0.15;
330
+ const damping = options?.damping ?? 0.8;
331
+ const precision = options?.precision ?? 0.01;
332
+ const [value, setValue] = signal(initial);
333
+ let current = initial;
334
+ let velocity = 0;
335
+ let target = initial;
336
+ let rafId = null;
337
+ function tick() {
338
+ const force = -stiffness * (current - target);
339
+ const dampingForce = -damping * velocity;
340
+ velocity += force + dampingForce;
341
+ current += velocity;
342
+ if (Math.abs(current - target) < precision && Math.abs(velocity) < precision) {
343
+ current = target;
344
+ velocity = 0;
345
+ rafId = null;
346
+ setValue(current);
347
+ return;
348
+ }
349
+ setValue(current);
350
+ rafId = requestAnimationFrame(tick);
351
+ }
352
+ function set(newTarget) {
353
+ target = newTarget;
354
+ if (prefersReducedMotion2()) {
355
+ current = newTarget;
356
+ velocity = 0;
357
+ if (rafId !== null) {
358
+ cancelAnimationFrame(rafId);
359
+ rafId = null;
360
+ }
361
+ setValue(current);
362
+ return;
363
+ }
364
+ if (rafId === null) {
365
+ rafId = requestAnimationFrame(tick);
366
+ }
367
+ }
368
+ function dispose() {
369
+ if (rafId !== null) {
370
+ cancelAnimationFrame(rafId);
371
+ rafId = null;
372
+ }
373
+ }
374
+ return [value, set, dispose];
375
+ }
376
+
377
+ export {
378
+ transition,
379
+ spring,
380
+ fadeIn,
381
+ fadeOut,
382
+ slideIn,
383
+ slideOut,
384
+ scaleUp,
385
+ scaleDown,
386
+ bounceIn,
387
+ bounceOut,
388
+ flipIn,
389
+ shake,
390
+ pulse,
391
+ animate,
392
+ stagger,
393
+ sequence,
394
+ TransitionGroup,
395
+ viewTransition,
396
+ reducedMotion,
397
+ springSignal
398
+ };
@@ -0,0 +1,294 @@
1
+ import {
2
+ isDev
3
+ } from "./chunk-4MYMUBRS.js";
4
+
5
+ // src/platform/ssr.ts
6
+ var _isDev = isDev();
7
+ function ssrErrorComment(err) {
8
+ if (_isDev) {
9
+ return `<!--SSR error: ${escapeHtml(err instanceof Error ? err.message : String(err))}-->`;
10
+ }
11
+ return "<!--SSR error-->";
12
+ }
13
+ var VOID_ELEMENTS = /* @__PURE__ */ new Set([
14
+ "area",
15
+ "base",
16
+ "br",
17
+ "col",
18
+ "embed",
19
+ "hr",
20
+ "img",
21
+ "input",
22
+ "link",
23
+ "meta",
24
+ "param",
25
+ "source",
26
+ "track",
27
+ "wbr"
28
+ ]);
29
+ function renderToString(element) {
30
+ if (element instanceof DocumentFragment) {
31
+ return Array.from(element.childNodes).map((child) => {
32
+ try {
33
+ return renderToString(child);
34
+ } catch (err) {
35
+ return ssrErrorComment(err);
36
+ }
37
+ }).join("");
38
+ }
39
+ if (element.nodeType === 3) {
40
+ return escapeHtml(element.textContent || "");
41
+ }
42
+ if (element.nodeType === 8) {
43
+ const content = (element.textContent || "").replace(/-->/g, "--&gt;");
44
+ return `<!--${content}-->`;
45
+ }
46
+ if (!(element instanceof HTMLElement)) {
47
+ return element.textContent || "";
48
+ }
49
+ const tag = element.tagName.toLowerCase();
50
+ let html = `<${tag}`;
51
+ for (const attr of Array.from(element.attributes)) {
52
+ html += ` ${attr.name}="${escapeAttr(attr.value)}"`;
53
+ }
54
+ if (element.dataset && !element.dataset.sibuHydrate) {
55
+ html += ` data-sibu-ssr="true"`;
56
+ }
57
+ if (VOID_ELEMENTS.has(tag)) {
58
+ return `${html} />`;
59
+ }
60
+ html += ">";
61
+ for (const child of Array.from(element.childNodes)) {
62
+ try {
63
+ html += renderToString(child);
64
+ } catch (err) {
65
+ html += ssrErrorComment(err);
66
+ }
67
+ }
68
+ html += `</${tag}>`;
69
+ return html;
70
+ }
71
+ function hydrate(component, container) {
72
+ const clientTree = component();
73
+ hydrateNode(container.firstElementChild, clientTree);
74
+ container.setAttribute("data-sibu-hydrated", "true");
75
+ }
76
+ function hydrateNode(serverNode, clientNode) {
77
+ if (!serverNode) return;
78
+ const serverChildren = Array.from(serverNode.children);
79
+ const clientChildren = Array.from(clientNode.children);
80
+ for (let i = 0; i < Math.min(serverChildren.length, clientChildren.length); i++) {
81
+ hydrateNode(serverChildren[i], clientChildren[i]);
82
+ }
83
+ }
84
+ function renderToDocument(component, options = {}) {
85
+ let content;
86
+ try {
87
+ content = renderToString(component());
88
+ } catch (err) {
89
+ content = ssrErrorComment(err);
90
+ }
91
+ const metaTags = (options.meta || []).map(
92
+ (attrs) => `<meta ${Object.entries(attrs).map(([k, v]) => `${k}="${escapeAttr(v)}"`).join(" ")} />`
93
+ ).join("\n ");
94
+ const linkTags = (options.links || []).map(
95
+ (attrs) => `<link ${Object.entries(attrs).map(([k, v]) => `${k}="${escapeAttr(v)}"`).join(" ")} />`
96
+ ).join("\n ");
97
+ const scriptTags = (options.scripts || []).map((src) => `<script src="${escapeAttr(src)}"></script>`).join("\n ");
98
+ const bodyAttrs = options.bodyAttrs ? " " + Object.entries(options.bodyAttrs).map(([k, v]) => `${k}="${escapeAttr(v)}"`).join(" ") : "";
99
+ return `<!DOCTYPE html>
100
+ <html>
101
+ <head>
102
+ <meta charset="UTF-8" />
103
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
104
+ ${options.title ? `<title>${escapeHtml(options.title)}</title>` : ""}
105
+ ${metaTags}
106
+ ${linkTags}
107
+ ${options.headExtra || ""}
108
+ </head>
109
+ <body${bodyAttrs}>
110
+ <div id="app">${content}</div>
111
+ ${scriptTags}
112
+ </body>
113
+ </html>`;
114
+ }
115
+ async function* renderToStream(element) {
116
+ if (element instanceof DocumentFragment) {
117
+ for (const child of Array.from(element.childNodes)) {
118
+ try {
119
+ yield* renderToStream(child);
120
+ } catch (err) {
121
+ yield ssrErrorComment(err);
122
+ }
123
+ }
124
+ return;
125
+ }
126
+ if (element.nodeType === 3) {
127
+ yield escapeHtml(element.textContent || "");
128
+ return;
129
+ }
130
+ if (element.nodeType === 8) {
131
+ const content = (element.textContent || "").replace(/-->/g, "--&gt;");
132
+ yield `<!--${content}-->`;
133
+ return;
134
+ }
135
+ if (!(element instanceof HTMLElement)) {
136
+ yield element.textContent || "";
137
+ return;
138
+ }
139
+ const tag = element.tagName.toLowerCase();
140
+ let openTag = `<${tag}`;
141
+ for (const attr of Array.from(element.attributes)) {
142
+ openTag += ` ${attr.name}="${escapeAttr(attr.value)}"`;
143
+ }
144
+ if (VOID_ELEMENTS.has(tag)) {
145
+ yield `${openTag} />`;
146
+ return;
147
+ }
148
+ yield `${openTag}>`;
149
+ for (const child of Array.from(element.childNodes)) {
150
+ try {
151
+ yield* renderToStream(child);
152
+ } catch (err) {
153
+ yield ssrErrorComment(err);
154
+ }
155
+ }
156
+ yield `</${tag}>`;
157
+ }
158
+ async function collectStream(stream) {
159
+ let result = "";
160
+ for await (const chunk of stream) {
161
+ result += chunk;
162
+ }
163
+ return result;
164
+ }
165
+ function renderToReadableStream(element) {
166
+ const generator = renderToStream(element);
167
+ return new ReadableStream({
168
+ async pull(controller) {
169
+ const { value, done } = await generator.next();
170
+ if (done) {
171
+ controller.close();
172
+ } else {
173
+ controller.enqueue(value);
174
+ }
175
+ },
176
+ cancel() {
177
+ generator.return(void 0);
178
+ }
179
+ });
180
+ }
181
+ function island(id, component) {
182
+ const el = component();
183
+ el.setAttribute("data-sibu-island", id);
184
+ return el;
185
+ }
186
+ function hydrateIslands(container, islands) {
187
+ const markers = container.querySelectorAll("[data-sibu-island]");
188
+ for (const marker of Array.from(markers)) {
189
+ const id = marker.getAttribute("data-sibu-island") ?? "";
190
+ const factory = islands[id];
191
+ if (!factory) continue;
192
+ const clientTree = factory();
193
+ hydrateNode(marker, clientTree);
194
+ marker.setAttribute("data-sibu-hydrated", "true");
195
+ }
196
+ container.setAttribute("data-sibu-hydrated", "partial");
197
+ }
198
+ function hydrateProgressively(container, islands, options) {
199
+ const markers = container.querySelectorAll("[data-sibu-island]");
200
+ const cleanups = [];
201
+ for (const marker of Array.from(markers)) {
202
+ const id = marker.getAttribute("data-sibu-island") ?? "";
203
+ const factory = islands[id];
204
+ if (!factory) continue;
205
+ const observer = new IntersectionObserver(
206
+ (entries) => {
207
+ for (const entry of entries) {
208
+ if (entry.isIntersecting) {
209
+ const clientTree = factory();
210
+ hydrateNode(marker, clientTree);
211
+ marker.setAttribute("data-sibu-hydrated", "true");
212
+ observer.disconnect();
213
+ break;
214
+ }
215
+ }
216
+ },
217
+ { rootMargin: "200px", ...options }
218
+ );
219
+ observer.observe(marker);
220
+ cleanups.push(() => observer.disconnect());
221
+ }
222
+ container.setAttribute("data-sibu-hydrated", "progressive");
223
+ return () => {
224
+ for (const cleanup of cleanups) cleanup();
225
+ };
226
+ }
227
+ var suspenseIdCounter = 0;
228
+ function resetSSRState() {
229
+ suspenseIdCounter = 0;
230
+ }
231
+ function ssrSuspense(props) {
232
+ const id = `sibu-sus-${suspenseIdCounter++}`;
233
+ const fallbackEl = props.fallback();
234
+ const wrapper = document.createElement("div");
235
+ wrapper.setAttribute("data-sibu-suspense-id", id);
236
+ wrapper.appendChild(fallbackEl);
237
+ const promise = props.content().then((resolvedEl) => ({
238
+ id,
239
+ html: renderToString(resolvedEl)
240
+ }));
241
+ return { element: wrapper, promise };
242
+ }
243
+ function suspenseSwapScript(id, nonce) {
244
+ const safeId = id.replace(/\\/g, "\\\\").replace(/"/g, '\\"').replace(/</g, "\\u003c").replace(/>/g, "\\u003e");
245
+ const nonceAttr = nonce ? ` nonce="${escapeAttr(nonce)}"` : "";
246
+ return `<script${nonceAttr}>(function(){var t=document.getElementById("sibu-resolved-${safeId}");var f=document.querySelector('[data-sibu-suspense-id="${safeId}"]');if(t&&f){while(t.firstChild)f.appendChild(t.firstChild);t.remove();f.removeAttribute("data-sibu-suspense-id");}})()</script>`;
247
+ }
248
+ async function* renderToSuspenseStream(element, pendingBoundaries = []) {
249
+ yield* renderToStream(element);
250
+ if (pendingBoundaries.length > 0) {
251
+ const resolved = await Promise.all(pendingBoundaries);
252
+ for (const { id, html } of resolved) {
253
+ yield `<div hidden id="sibu-resolved-${escapeAttr(id)}">${html}</div>`;
254
+ yield suspenseSwapScript(id);
255
+ }
256
+ }
257
+ }
258
+ var SSR_DATA_ATTR = "__SIBU_SSR_DATA__";
259
+ function serializeState(state, nonce) {
260
+ const json = JSON.stringify(state).replace(/</g, "\\u003c").replace(/>/g, "\\u003e").replace(/&/g, "\\u0026");
261
+ const nonceAttr = nonce ? ` nonce="${escapeAttr(nonce)}"` : "";
262
+ return `<script${nonceAttr}>window.${SSR_DATA_ATTR}=${json}</script>`;
263
+ }
264
+ function deserializeState(validate) {
265
+ if (typeof window === "undefined") return void 0;
266
+ const raw = window[SSR_DATA_ATTR];
267
+ if (raw === void 0) return void 0;
268
+ if (validate && !validate(raw)) return void 0;
269
+ return raw;
270
+ }
271
+ function escapeHtml(str) {
272
+ return str.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;");
273
+ }
274
+ function escapeAttr(str) {
275
+ return str.replace(/&/g, "&amp;").replace(/"/g, "&quot;").replace(/</g, "&lt;").replace(/>/g, "&gt;");
276
+ }
277
+
278
+ export {
279
+ renderToString,
280
+ hydrate,
281
+ renderToDocument,
282
+ renderToStream,
283
+ collectStream,
284
+ renderToReadableStream,
285
+ island,
286
+ hydrateIslands,
287
+ hydrateProgressively,
288
+ resetSSRState,
289
+ ssrSuspense,
290
+ suspenseSwapScript,
291
+ renderToSuspenseStream,
292
+ serializeState,
293
+ deserializeState
294
+ };