@sigx/server-renderer 0.2.1 → 0.2.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.
@@ -1,51 +0,0 @@
1
- //#region \0rolldown/runtime.js
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
7
- var __exportAll = (all, no_symbols) => {
8
- let target = {};
9
- for (var name in all) __defProp(target, name, {
10
- get: all[name],
11
- enumerable: true
12
- });
13
- if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
14
- return target;
15
- };
16
- var __copyProps = (to, from, except, desc) => {
17
- if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
18
- key = keys[i];
19
- if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
20
- get: ((k) => from[k]).bind(null, key),
21
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
22
- });
23
- }
24
- return to;
25
- };
26
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
27
- //#endregion
28
- //#region ../sigx/dist/internals.js
29
- var internals_exports = /* @__PURE__ */ __exportAll({});
30
- import * as import__sigx_runtime_core_internals from "@sigx/runtime-core/internals";
31
- __reExport(internals_exports, import__sigx_runtime_core_internals);
32
- import * as import__sigx_reactivity_internals from "@sigx/reactivity/internals";
33
- __reExport(internals_exports, import__sigx_reactivity_internals);
34
- import * as import__sigx_runtime_dom_internals from "@sigx/runtime-dom/internals";
35
- __reExport(internals_exports, import__sigx_runtime_dom_internals);
36
- //#endregion
37
- //#region src/server/types.ts
38
- /**
39
- * Generate a stable key for a signal during SSR state tracking/restoration.
40
- *
41
- * Named signals use the provided name; unnamed signals use a positional key (`$0`, `$1`, ...).
42
- * Both server-side tracking (`createTrackingSignal`) and client-side restoration
43
- * (`createRestoringSignal`) MUST use this function to guarantee key parity.
44
- */
45
- function generateSignalKey(name, index) {
46
- return name ?? `$${index}`;
47
- }
48
- //#endregion
49
- export { internals_exports as n, __commonJSMin as r, generateSignalKey as t };
50
-
51
- //# sourceMappingURL=types-DYlI_C8F.js.map