@solidjs/web 2.0.0-experimental.9 → 2.0.0-rc.0

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 (85) hide show
  1. package/README.md +22 -4
  2. package/dist/dev.cjs +1585 -225
  3. package/dist/dev.js +1510 -201
  4. package/dist/server.cjs +2642 -264
  5. package/dist/server.js +2542 -217
  6. package/dist/web.cjs +1523 -218
  7. package/dist/web.js +1448 -194
  8. package/frames/dist/client.cjs +1916 -0
  9. package/frames/dist/client.dev.cjs +1933 -0
  10. package/frames/dist/client.dev.js +1921 -0
  11. package/frames/dist/client.js +1904 -0
  12. package/frames/dist/server.cjs +3667 -0
  13. package/frames/dist/server.js +3654 -0
  14. package/frames/package.json +30 -0
  15. package/package.json +349 -37
  16. package/serialization/decode/package.json +20 -0
  17. package/serialization/dist/decode.cjs +110 -0
  18. package/serialization/dist/decode.js +104 -0
  19. package/serialization/dist/serialization.cjs +232 -0
  20. package/serialization/dist/serialization.js +215 -0
  21. package/serialization/package.json +20 -0
  22. package/serialization/types/index.d.ts +182 -0
  23. package/serialization/types/serializer-decode.d.ts +182 -0
  24. package/serialization/types-cjs/index.d.cts +182 -0
  25. package/serialization/types-cjs/package.json +3 -0
  26. package/serialization/types-cjs/serializer-decode.d.cts +182 -0
  27. package/server-functions/dist/client.cjs +646 -0
  28. package/server-functions/dist/client.js +617 -0
  29. package/server-functions/dist/rich-args.cjs +11 -0
  30. package/server-functions/dist/rich-args.js +9 -0
  31. package/server-functions/dist/server.cjs +1077 -0
  32. package/server-functions/dist/server.dev.cjs +1077 -0
  33. package/server-functions/dist/server.dev.js +1045 -0
  34. package/server-functions/dist/server.js +1045 -0
  35. package/server-functions/package.json +40 -0
  36. package/server-functions/rich-args/package.json +20 -0
  37. package/storage/package.json +8 -3
  38. package/storage/types/index.d.ts +26 -0
  39. package/storage/types-cjs/index.d.cts +28 -0
  40. package/storage/types-cjs/package.json +3 -0
  41. package/types/client.d.ts +290 -27
  42. package/types/cookies.d.ts +93 -0
  43. package/types/core.d.ts +6 -2
  44. package/types/frames/client.d.ts +36 -0
  45. package/types/frames/frame-client.d.ts +338 -0
  46. package/types/frames/frame-sink.d.ts +194 -0
  47. package/types/frames/frame-transport.d.ts +222 -0
  48. package/types/frames/serializer.d.ts +182 -0
  49. package/types/frames/server.d.ts +52 -0
  50. package/types/index.d.ts +209 -24
  51. package/types/jsx-properties.d.ts +93 -0
  52. package/types/jsx.d.ts +4150 -1
  53. package/types/response.d.ts +174 -0
  54. package/types/serializer-decode.d.ts +182 -0
  55. package/types/serializer.d.ts +182 -0
  56. package/types/server-functions/client.d.ts +201 -0
  57. package/types/server-functions/flash.d.ts +38 -0
  58. package/types/server-functions/rich-args.d.ts +10 -0
  59. package/types/server-functions/server.d.ts +588 -0
  60. package/types/server-functions/shared.d.ts +523 -0
  61. package/types/server-mock.d.ts +249 -12
  62. package/types/server.d.ts +424 -51
  63. package/types-cjs/client.d.cts +337 -0
  64. package/types-cjs/cookies.d.cts +93 -0
  65. package/types-cjs/core.d.cts +6 -0
  66. package/types-cjs/frames/client.d.cts +36 -0
  67. package/types-cjs/frames/frame-client.d.cts +338 -0
  68. package/types-cjs/frames/frame-sink.d.cts +194 -0
  69. package/types-cjs/frames/frame-transport.d.cts +222 -0
  70. package/types-cjs/frames/serializer.d.cts +182 -0
  71. package/types-cjs/frames/server.d.cts +52 -0
  72. package/types-cjs/index.d.cts +230 -0
  73. package/types-cjs/jsx-properties.d.cts +93 -0
  74. package/types-cjs/jsx.d.cts +4150 -0
  75. package/types-cjs/package.json +3 -0
  76. package/types-cjs/response.d.cts +174 -0
  77. package/types-cjs/serializer-decode.d.cts +182 -0
  78. package/types-cjs/serializer.d.cts +182 -0
  79. package/types-cjs/server-functions/client.d.cts +201 -0
  80. package/types-cjs/server-functions/flash.d.cts +38 -0
  81. package/types-cjs/server-functions/rich-args.d.cts +10 -0
  82. package/types-cjs/server-functions/server.d.cts +588 -0
  83. package/types-cjs/server-functions/shared.d.cts +523 -0
  84. package/types-cjs/server-mock.d.cts +277 -0
  85. package/types-cjs/server.d.cts +523 -0
@@ -0,0 +1,182 @@
1
+ // The DECODE half of the serialization surface (published as
2
+ // `@solidjs/web/serialization/decode`): what reading a serialized payload
3
+ // needs — `fromCrossJSON`-backed deserializers and the shared plugin set —
4
+ // with none of the encode machinery. Lazy client consumers (the frames
5
+ // data tables, `deserializeStream`) load this module so the encode half
6
+ // never ships to a browser that only reads. The full serializer.d.ts
7
+ // re-exports everything here; see its banner for the stability contract
8
+ // (integration-facing, exempt from the 2.0 stability guarantee).
9
+ // ---- Plugin types ----
10
+ //
11
+ // Declared here by hand (seroval's published d.ts use extensionless
12
+ // ESM-relative imports that `moduleResolution: "nodenext"` cannot follow —
13
+ // a bare type re-export would silently degrade the surface to `any` under
14
+ // skipLibCheck, and an import would make every entry whose types reach
15
+ // this module — the MAIN client entry included, via the server-function
16
+ // seam's `JSONCodecOptions` — unimportable from a strict Node16 CJS
17
+ // consumer). The declarations mirror seroval ~1.5 exactly; the `~` pin is
18
+ // what makes mirroring safe. Plugin AUTHORING (`createPlugin`,
19
+ // `OpaqueReference`) lives on the full serialization entry.
20
+
21
+ /**
22
+ * Seroval's node shape — the intermediate representation `serializeJSON`
23
+ * emits and `createJSONDeserializer` consumes. Safe to `JSON.stringify`.
24
+ * Declared by hand like the plugin types below (same rationale): the
25
+ * observable envelope — a numeric type tag, an optional reference id —
26
+ * with the rest owned by the codec. Real seroval nodes satisfy it; treat
27
+ * it as an opaque token.
28
+ *
29
+ * Integration-facing; may change (see the entry banner).
30
+ */
31
+ export interface SerovalNode {
32
+ /** Node type tag (seroval-internal enum). */
33
+ t: number;
34
+ /** Reference id, when the node participates in cross-referencing. */
35
+ i?: number | undefined;
36
+ [key: string]: unknown;
37
+ }
38
+
39
+ /** Per-plugin bookkeeping seroval hands each plugin callback. */
40
+ export interface PluginData {
41
+ id: number;
42
+ }
43
+
44
+ /**
45
+ * The shape of a plugin's parsed payload: a map of `SerovalNode`s produced
46
+ * by the parse contexts, consumed by `serialize`/`deserialize`.
47
+ */
48
+ export type PluginInfo = { [key: string]: SerovalNode };
49
+
50
+ /** Parse context for `parse.sync`: turns child values into nodes. */
51
+ export interface SyncParsePluginContext {
52
+ parse<T>(current: T): SerovalNode;
53
+ }
54
+
55
+ /** Parse context for `parse.async`: like sync, but child parses await. */
56
+ export interface AsyncParsePluginContext {
57
+ parse<T>(current: T): Promise<SerovalNode>;
58
+ }
59
+
60
+ /**
61
+ * Parse context for `parse.stream`: sync parsing plus the streaming
62
+ * lifecycle (pending-state tracking, late node emission, cleanup).
63
+ */
64
+ export interface StreamParsePluginContext {
65
+ parse<T>(current: T): SerovalNode;
66
+ parseWithError<T>(current: T): SerovalNode | undefined;
67
+ isAlive(): boolean;
68
+ pushPendingState(): void;
69
+ popPendingState(): void;
70
+ onParse(node: SerovalNode): void;
71
+ onError(error: unknown): void;
72
+ addCleanup(callback: () => void): void;
73
+ }
74
+
75
+ /** Serialize context: renders child nodes to JS source. */
76
+ export interface SerializePluginContext {
77
+ serialize(node: SerovalNode): string;
78
+ }
79
+
80
+ /** Deserialize context: revives child nodes to runtime values. */
81
+ export interface DeserializePluginContext {
82
+ deserialize<T>(node: SerovalNode): T;
83
+ }
84
+
85
+ /**
86
+ * A Seroval plugin usable with the web serializers — teaches the codec how
87
+ * to encode/decode a custom value type (`Value` is the value it matches,
88
+ * `Info` its parsed payload). Supply matching plugins on both peers of a
89
+ * transport. Bare `SerializerPlugin` (both parameters defaulted to `any`)
90
+ * is the list-element type every `plugins` option accepts.
91
+ *
92
+ * Integration-facing; may change (see the entry banner).
93
+ */
94
+ export interface SerializerPlugin<Value = any, Info extends PluginInfo = any> {
95
+ /** A unique string identifying the plugin — namespace it (`"app/Thing"`). */
96
+ tag: string;
97
+ /** Dependency plugins, resolved ahead of this one. */
98
+ extends?: SerializerPlugin[];
99
+ /** Whether `value` is this plugin's to encode. */
100
+ test(value: unknown): boolean;
101
+ /** Parsing modes — provide the ones the transports you target use. */
102
+ parse: {
103
+ sync?: (value: Value, ctx: SyncParsePluginContext, data: PluginData) => Info;
104
+ async?: (value: Value, ctx: AsyncParsePluginContext, data: PluginData) => Promise<Info>;
105
+ stream?: (value: Value, ctx: StreamParsePluginContext, data: PluginData) => Info;
106
+ };
107
+ /** Renders the parsed payload as JS source (script-injection form). */
108
+ serialize(node: Info, ctx: SerializePluginContext, data: PluginData): string;
109
+ /** Revives the parsed payload back into the runtime value. */
110
+ deserialize(node: Info, ctx: DeserializePluginContext, data: PluginData): Value;
111
+ }
112
+
113
+ /**
114
+ * Baseline plugin set for serializing web-platform values (AbortSignal,
115
+ * Event, FormData, Headers, ReadableStream, Request, Response, URL, ...).
116
+ * Applied by every serializer in this module; custom plugins compose ahead
117
+ * of it via `resolveSerializerPlugins`.
118
+ *
119
+ * Integration-facing; may change (see the entry banner).
120
+ */
121
+ export const DEFAULT_WEB_PLUGINS: readonly SerializerPlugin[];
122
+
123
+ /**
124
+ * Composes custom plugins with `DEFAULT_WEB_PLUGINS`. Custom plugins come
125
+ * first so they can shadow a default for values both would match. Returns a
126
+ * fresh array; the defaults are never mutated. Useful when handing a full
127
+ * plugin list to another serialization layer.
128
+ *
129
+ * Integration-facing; may change (see the entry banner).
130
+ */
131
+ export function resolveSerializerPlugins(customPlugins?: SerializerPlugin[]): SerializerPlugin[];
132
+
133
+ /**
134
+ * Options shared by both halves of the JSON codec. All of them must match
135
+ * on the serializing and deserializing peer or payloads will not
136
+ * round-trip — for server functions, set them once through the
137
+ * client/server `codec` config option.
138
+ *
139
+ * Integration-facing; may change (see the entry banner).
140
+ */
141
+ export interface JSONCodecOptions {
142
+ /** Extra plugins, composed ahead of `DEFAULT_WEB_PLUGINS`. Must match on both peers. */
143
+ plugins?: SerializerPlugin[];
144
+ /**
145
+ * Seroval feature bitflags to exclude. Defaults to disabling `RegExp`
146
+ * (payloads may come from an untrusted peer). Must match on both peers.
147
+ * Outside development, the encoding side additionally strips
148
+ * `Error.prototype.stack` on top of any override — serialized stacks leak
149
+ * server paths to the client. Decoding stays permissive, so payloads from
150
+ * a development peer still round-trip.
151
+ */
152
+ disabledFeatures?: number;
153
+ /** Maximum parse/deserialize depth. Defaults to 64. Must match on both peers. */
154
+ depthLimit?: number;
155
+ }
156
+
157
+ /**
158
+ * Creates the decoding counterpart of `serializeJSON`. Cross-references
159
+ * between chunks resolve through state shared across calls, so all chunks
160
+ * from one stream must go through the same deserializer instance. The first
161
+ * chunk's return value is the decoded source value; feeding later chunks
162
+ * settles the async values referenced inside it.
163
+ *
164
+ * Integration-facing; may change (see the entry banner).
165
+ */
166
+ export function createJSONDeserializer(options?: JSONCodecOptions): <T>(node: SerovalNode) => T;
167
+
168
+ /**
169
+ * A resident, response-scoped decode table over the keyed JSON codec: apply
170
+ * each frame `data` chunk with `apply`, resolve `{ $ref }` slot args with
171
+ * `resolve`. The frames client host wires one per response
172
+ * (`applyData: c => table.apply(c)`).
173
+ *
174
+ * Integration-facing; may change (see the entry banner). This serialization
175
+ * entry is the single home of the data table — the frames client consumes
176
+ * it internally rather than re-exporting it.
177
+ */
178
+ export interface JSONDataTable {
179
+ apply(chunk: { key?: string; node?: unknown; initial?: boolean }): void;
180
+ resolve<T = unknown>(ref: { $ref: string }): T;
181
+ }
182
+ export function createJSONDataTable(options?: JSONCodecOptions): JSONDataTable;