veryfront 0.1.543 → 0.1.545
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/deno.js +1 -1
- package/esm/src/agent/testing/live-evals/result.d.ts.map +1 -1
- package/esm/src/agent/testing/live-evals/result.js +10 -21
- package/esm/src/build/embedded/preset.d.ts.map +1 -1
- package/esm/src/build/embedded/preset.js +0 -6
- package/esm/src/html/dev-scripts.d.ts +1 -1
- package/esm/src/html/dev-scripts.d.ts.map +1 -1
- package/esm/src/html/dev-scripts.js +2 -4
- package/esm/src/mcp/server.d.ts.map +1 -1
- package/esm/src/mcp/server.js +22 -5
- package/esm/src/rendering/rsc/client-boot.ts +16 -3
- package/esm/src/rendering/rsc/hydrate-client.ts +0 -11
- package/esm/src/rendering/rsc/types.d.ts +1 -1
- package/esm/src/rendering/rsc/types.d.ts.map +1 -1
- package/esm/src/server/handlers/dev/endpoints.handler.d.ts.map +1 -1
- package/esm/src/server/handlers/dev/endpoints.handler.js +0 -6
- package/esm/src/server/services/rsc/endpoints/endpoint-router.d.ts.map +1 -1
- package/esm/src/server/services/rsc/endpoints/endpoint-router.js +0 -3
- package/esm/src/server/services/rsc/endpoints/rsc-bundles.generated.d.ts.map +1 -1
- package/esm/src/server/services/rsc/endpoints/rsc-bundles.generated.js +2 -2
- package/esm/src/server/services/rsc/endpoints/script-handlers.d.ts.map +1 -1
- package/esm/src/server/services/rsc/endpoints/script-handlers.js +12 -3
- package/esm/src/server/services/rsc/orchestrators/handler.d.ts +0 -2
- package/esm/src/server/services/rsc/orchestrators/handler.d.ts.map +1 -1
- package/esm/src/server/services/rsc/orchestrators/handler.js +0 -6
- package/esm/src/server/services/rsc/orchestrators/page-handler.d.ts.map +1 -1
- package/esm/src/server/services/rsc/orchestrators/page-handler.js +1 -4
- package/esm/src/types/index.d.ts +1 -1
- package/esm/src/types/index.d.ts.map +1 -1
- package/esm/src/types/rsc.d.ts +0 -4
- package/esm/src/types/rsc.d.ts.map +1 -1
- package/esm/src/utils/constants/server.d.ts +0 -3
- package/esm/src/utils/constants/server.d.ts.map +1 -1
- package/esm/src/utils/constants/server.js +0 -3
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/deps/esm.sh/@types/react-dom@19.2.3/client.d.ts +1 -1
- package/src/deps/esm.sh/@types/react-dom@19.2.3/static.d.ts +1 -1
- package/src/deps/esm.sh/@types/react@19.2.3/global.d.ts +165 -0
- package/src/deps/esm.sh/@types/react@19.2.3/index.d.ts +4301 -0
- package/src/deps/esm.sh/react-dom@19.2.4/client.d.ts +1 -1
- package/src/src/agent/testing/live-evals/result.ts +43 -30
- package/src/src/build/embedded/preset.ts +0 -6
- package/src/src/html/dev-scripts.ts +2 -4
- package/src/src/mcp/server.ts +27 -6
- package/src/src/rendering/rsc/types.ts +0 -1
- package/src/src/server/handlers/dev/endpoints.handler.ts +0 -6
- package/src/src/server/services/rsc/endpoints/endpoint-router.ts +0 -4
- package/src/src/server/services/rsc/endpoints/rsc-bundles.generated.ts +2 -2
- package/src/src/server/services/rsc/endpoints/script-handlers.ts +12 -3
- package/src/src/server/services/rsc/orchestrators/handler.ts +0 -7
- package/src/src/server/services/rsc/orchestrators/page-handler.ts +1 -4
- package/src/src/types/index.ts +0 -1
- package/src/src/types/rsc.ts +0 -5
- package/src/src/utils/constants/server.ts +0 -3
- package/src/src/utils/version-constant.ts +1 -1
- package/esm/src/rendering/rsc/client-hydrator.ts +0 -210
- package/esm/src/server/handlers/dev/scripts/dev-loader.d.ts +0 -9
- package/esm/src/server/handlers/dev/scripts/dev-loader.d.ts.map +0 -1
- package/esm/src/server/handlers/dev/scripts/dev-loader.js +0 -16
- package/esm/src/server/services/rsc/orchestrators/hydrator-handler.d.ts +0 -12
- package/esm/src/server/services/rsc/orchestrators/hydrator-handler.d.ts.map +0 -1
- package/esm/src/server/services/rsc/orchestrators/hydrator-handler.js +0 -92
- package/src/src/server/handlers/dev/scripts/dev-loader.ts +0 -17
- package/src/src/server/services/rsc/orchestrators/hydrator-handler.ts +0 -107
|
@@ -7,7 +7,10 @@ function shouldStopEsbuild() {
|
|
|
7
7
|
}
|
|
8
8
|
function jsResponse(body) {
|
|
9
9
|
return new Response(body, {
|
|
10
|
-
headers: {
|
|
10
|
+
headers: {
|
|
11
|
+
"content-type": "application/javascript",
|
|
12
|
+
"cache-control": "no-cache",
|
|
13
|
+
},
|
|
11
14
|
});
|
|
12
15
|
}
|
|
13
16
|
async function buildOrServeScript(adapter, path, fallbackBundle, esbuildOptions) {
|
|
@@ -30,12 +33,18 @@ async function buildOrServeScript(adapter, path, fallbackBundle, esbuildOptions)
|
|
|
30
33
|
try {
|
|
31
34
|
const src = await adapter.fs.readFile(path);
|
|
32
35
|
return new Response(src, {
|
|
33
|
-
headers: {
|
|
36
|
+
headers: {
|
|
37
|
+
"content-type": "application/typescript",
|
|
38
|
+
"cache-control": "no-cache",
|
|
39
|
+
},
|
|
34
40
|
});
|
|
35
41
|
}
|
|
36
42
|
catch {
|
|
37
43
|
return new Response("// client-boot: source not available", {
|
|
38
|
-
headers: {
|
|
44
|
+
headers: {
|
|
45
|
+
"content-type": "application/javascript",
|
|
46
|
+
"cache-control": "no-cache",
|
|
47
|
+
},
|
|
39
48
|
});
|
|
40
49
|
}
|
|
41
50
|
}
|
|
@@ -6,13 +6,11 @@ export declare class RSCDevServerHandler {
|
|
|
6
6
|
private readonly renderHandler;
|
|
7
7
|
private readonly streamHandler;
|
|
8
8
|
private readonly pageHandler;
|
|
9
|
-
private readonly hydratorHandler;
|
|
10
9
|
constructor(projectDir: string);
|
|
11
10
|
handleManifest(): Promise<Response>;
|
|
12
11
|
handleRender(pathname: string, searchParams: URLSearchParams, request?: Request): Promise<Response>;
|
|
13
12
|
handleStream(pathname: string, searchParams: URLSearchParams): Promise<Response>;
|
|
14
13
|
handlePage(pathname: string, searchParams: URLSearchParams, nonce?: string): Response;
|
|
15
|
-
handleHydratorScript(): Promise<Response>;
|
|
16
14
|
private ensureRenderer;
|
|
17
15
|
}
|
|
18
16
|
//# sourceMappingURL=handler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["../../../../../../src/src/server/services/rsc/orchestrators/handler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["../../../../../../src/src/server/services/rsc/orchestrators/handler.ts"],"names":[],"mappings":"AAQA,qBAAa,mBAAmB;IASlB,OAAO,CAAC,QAAQ,CAAC,UAAU;IARvC,OAAO,CAAC,QAAQ,CAA4B;IAC5C,OAAO,CAAC,cAAc,CAAiD;IAEvE,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAkB;IAClD,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAgB;IAC9C,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAgB;IAC9C,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAc;gBAEb,UAAU,EAAE,MAAM;IAO/C,cAAc,IAAI,OAAO,CAAC,QAAQ,CAAC;IAI7B,YAAY,CAChB,QAAQ,EAAE,MAAM,EAChB,YAAY,EAAE,eAAe,EAC7B,OAAO,CAAC,EAAE,OAAO,GAChB,OAAO,CAAC,QAAQ,CAAC;IAKd,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,GAAG,OAAO,CAAC,QAAQ,CAAC;IAKtF,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ;YAIvE,cAAc;CAW7B"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { buildClientManifest } from "../../../../rendering/rsc/component-analyzer.js";
|
|
2
2
|
import { RSCRenderer } from "../../../../rendering/rsc/server-renderer/index.js";
|
|
3
|
-
import { HydratorHandler } from "./hydrator-handler.js";
|
|
4
3
|
import { ManifestHandler } from "./manifest-handler.js";
|
|
5
4
|
import { PageHandler } from "./page-handler.js";
|
|
6
5
|
import { RenderHandler } from "./render-handler.js";
|
|
@@ -13,14 +12,12 @@ export class RSCDevServerHandler {
|
|
|
13
12
|
renderHandler;
|
|
14
13
|
streamHandler;
|
|
15
14
|
pageHandler;
|
|
16
|
-
hydratorHandler;
|
|
17
15
|
constructor(projectDir) {
|
|
18
16
|
this.projectDir = projectDir;
|
|
19
17
|
this.manifestHandler = new ManifestHandler(projectDir);
|
|
20
18
|
this.renderHandler = new RenderHandler(projectDir, () => this.renderer);
|
|
21
19
|
this.streamHandler = new StreamHandler(this.renderHandler);
|
|
22
20
|
this.pageHandler = new PageHandler();
|
|
23
|
-
this.hydratorHandler = new HydratorHandler();
|
|
24
21
|
}
|
|
25
22
|
handleManifest() {
|
|
26
23
|
return this.manifestHandler.handle(this.clientManifest);
|
|
@@ -36,9 +33,6 @@ export class RSCDevServerHandler {
|
|
|
36
33
|
handlePage(pathname, searchParams, nonce) {
|
|
37
34
|
return this.pageHandler.handle(pathname, searchParams, nonce);
|
|
38
35
|
}
|
|
39
|
-
handleHydratorScript() {
|
|
40
|
-
return this.hydratorHandler.handle();
|
|
41
|
-
}
|
|
42
36
|
async ensureRenderer() {
|
|
43
37
|
if (this.renderer)
|
|
44
38
|
return;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"page-handler.d.ts","sourceRoot":"","sources":["../../../../../../src/src/server/services/rsc/orchestrators/page-handler.ts"],"names":[],"mappings":"AAuBA,qBAAa,WAAW;IACtB,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ;IAQjF,OAAO,CAAC,SAAS;
|
|
1
|
+
{"version":3,"file":"page-handler.d.ts","sourceRoot":"","sources":["../../../../../../src/src/server/services/rsc/orchestrators/page-handler.ts"],"names":[],"mappings":"AAuBA,qBAAa,WAAW;IACtB,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ;IAQjF,OAAO,CAAC,SAAS;CAsElB"}
|
|
@@ -42,8 +42,6 @@ export class PageHandler {
|
|
|
42
42
|
<body>
|
|
43
43
|
<div id="rsc-root"></div>
|
|
44
44
|
<script type="module"${nonceAttr}>
|
|
45
|
-
await import('/_veryfront/rsc/hydrate.js').catch(() => void 0);
|
|
46
|
-
|
|
47
45
|
async function fetchPayload(url) {
|
|
48
46
|
try {
|
|
49
47
|
const res = await fetch(url);
|
|
@@ -88,8 +86,7 @@ export class PageHandler {
|
|
|
88
86
|
document.getElementById('rsc-root').innerHTML = safeHtml;
|
|
89
87
|
window.__RSC_CLIENT_REFS__ = payload.clientRefs;
|
|
90
88
|
|
|
91
|
-
|
|
92
|
-
return window.VeryfrontHydrate.run();
|
|
89
|
+
return import('/_veryfront/rsc/client.js?hydrate=1');
|
|
93
90
|
})().catch(error => {
|
|
94
91
|
console.error('[RSC] Failed to load:', error);
|
|
95
92
|
document.getElementById('rsc-root').innerHTML = '<p>Failed to load RSC component</p>';
|
package/esm/src/types/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import type * as React from "../../react/react.js";
|
|
|
8
8
|
export type { BundleResult, BundlerOptions, EmbeddedBundleManifest, MDXBundleOptions, MDXBundleResult, } from "./bundler.js";
|
|
9
9
|
export type { AppRouteMatch, Handler, HandlerContext, HandlerMetadata, HandlerResult, MiddlewareFunction, ParsedDomain, RouteHandlerModule, RoutePattern, RouteRegistryConfig, SecurityConfig, } from "./server.js";
|
|
10
10
|
export { HandlerPriority } from "./server.js";
|
|
11
|
-
export type { ClientComponentMeta, ComponentAnalysis, ComponentType,
|
|
11
|
+
export type { ClientComponentMeta, ComponentAnalysis, ComponentType, RSCNode, RSCPayload, RSCRendererOptions, } from "./rsc.js";
|
|
12
12
|
export type { HMRConnectedMessage, HMRMessage, HMRMessageType, HMRReloadMessage, HMRUpdateMessage, } from "./hmr.js";
|
|
13
13
|
export type { BundleInfo, Entity, EntityInfo, EntityTypeInfo, Frontmatter, LoaderData, } from "./entities.js";
|
|
14
14
|
export type { AppProps } from "./app.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/types/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAEnD,YAAY,EACV,YAAY,EACZ,cAAc,EACd,sBAAsB,EACtB,gBAAgB,EAChB,eAAe,GAChB,MAAM,cAAc,CAAC;AACtB,YAAY,EACV,aAAa,EACb,OAAO,EACP,cAAc,EACd,eAAe,EACf,aAAa,EACb,kBAAkB,EAClB,YAAY,EACZ,kBAAkB,EAClB,YAAY,EACZ,mBAAmB,EACnB,cAAc,GACf,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC9C,YAAY,EACV,mBAAmB,EACnB,iBAAiB,EACjB,aAAa,EACb,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/types/index.ts"],"names":[],"mappings":"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"}
|
package/esm/src/types/rsc.d.ts
CHANGED
|
@@ -24,10 +24,6 @@ export interface RSCRendererOptions {
|
|
|
24
24
|
projectDir: string;
|
|
25
25
|
mode?: "development" | "production";
|
|
26
26
|
}
|
|
27
|
-
export interface RSCHydratorOptions {
|
|
28
|
-
manifestUrl?: string;
|
|
29
|
-
onError?: (error: Error) => void;
|
|
30
|
-
}
|
|
31
27
|
export type ComponentType = "server" | "client" | "unknown";
|
|
32
28
|
export interface ComponentAnalysis {
|
|
33
29
|
type: ComponentType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rsc.d.ts","sourceRoot":"","sources":["../../../src/src/types/rsc.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC;IAChD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACnC,MAAM,CAAC,EAAE;QACP,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;QACf,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC;KACf,CAAC;IACF,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;IACjD,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC;CACrC;AAED,MAAM,
|
|
1
|
+
{"version":3,"file":"rsc.d.ts","sourceRoot":"","sources":["../../../src/src/types/rsc.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC;IAChD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACnC,MAAM,CAAC,EAAE;QACP,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;QACf,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC;KACf,CAAC;IACF,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;IACjD,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC;CACrC;AAED,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;AAE5D,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,aAAa,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,OAAO,CAAC;IACtB,YAAY,EAAE,OAAO,CAAC;CACvB"}
|
|
@@ -36,7 +36,6 @@ export declare const INTERNAL_PATH_PREFIXES: {
|
|
|
36
36
|
export declare const INTERNAL_ENDPOINTS: {
|
|
37
37
|
readonly HMR_RUNTIME: "/_veryfront/hmr-runtime.js";
|
|
38
38
|
readonly HMR: "/_veryfront/hmr.js";
|
|
39
|
-
readonly HYDRATE: "/_veryfront/hydrate.js";
|
|
40
39
|
readonly ERROR_OVERLAY: "/_veryfront/error-overlay.js";
|
|
41
40
|
readonly DEV_LOADER: "/_veryfront/dev-loader.js";
|
|
42
41
|
readonly CLIENT_LOG: "/_veryfront/log";
|
|
@@ -53,8 +52,6 @@ export declare const INTERNAL_ENDPOINTS: {
|
|
|
53
52
|
readonly RSC_PAGE: "/_veryfront/rsc/page";
|
|
54
53
|
readonly RSC_MODULE: "/_veryfront/rsc/module";
|
|
55
54
|
readonly RSC_DOM: "/_veryfront/rsc/dom.js";
|
|
56
|
-
readonly RSC_HYDRATOR: "/_veryfront/rsc/hydrator.js";
|
|
57
|
-
readonly RSC_HYDRATE_CLIENT: "/_veryfront/rsc/hydrate-client.js";
|
|
58
55
|
readonly LIB_CHAT_REACT: "/_veryfront/lib/chat/react.js";
|
|
59
56
|
readonly LIB_CHAT_COMPONENTS: "/_veryfront/lib/chat/components.js";
|
|
60
57
|
readonly LIB_CHAT_PRIMITIVES: "/_veryfront/lib/chat/primitives.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../../src/src/utils/constants/server.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAExD,mFAAmF;AACnF,eAAO,MAAM,sBAAsB,OAAO,CAAC;AAE3C,sDAAsD;AACtD,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,sBAAsB;IACjC,wCAAwC;;IAExC,0DAA0D;;IAE1D,4BAA4B;;IAE5B,6BAA6B;;IAE7B,0BAA0B;;IAE1B,gDAAgD;;IAEhD,mBAAmB;;IAEnB,+BAA+B;;CAEvB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../../src/src/utils/constants/server.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAExD,mFAAmF;AACnF,eAAO,MAAM,sBAAsB,OAAO,CAAC;AAE3C,sDAAsD;AACtD,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,sBAAsB;IACjC,wCAAwC;;IAExC,0DAA0D;;IAE1D,4BAA4B;;IAE5B,6BAA6B;;IAE7B,0BAA0B;;IAE1B,gDAAgD;;IAEhD,mBAAmB;;IAEnB,+BAA+B;;CAEvB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;CA8BrB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,UAAU;IACrB,kCAAkC;;IAElC,uBAAuB;;IAEvB,qBAAqB;;IAErB,uBAAuB;;CAEf,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,YAAY;IACvB,wCAAwC;;IAExC,4DAA4D;;IAE5D,yBAAyB;;IAEzB,0BAA0B;;IAE1B,gCAAgC;;CAExB,CAAC;AAEX,mCAAmC;AACnC,eAAO,MAAM,iBAAiB,oBAAqB,CAAC;AAEpD;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAE5D;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAEvD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,QAAQ,EAAE,MAAM,EAChB,QAAQ,GAAE,MAAsC,GAC/C,MAAM,CAIR;AAGD,eAAO,MAAM,oBAAoB;;;CAGvB,CAAC"}
|
|
@@ -37,7 +37,6 @@ export const INTERNAL_ENDPOINTS = {
|
|
|
37
37
|
// Development endpoints
|
|
38
38
|
HMR_RUNTIME: `${INTERNAL_PREFIX}/hmr-runtime.js`,
|
|
39
39
|
HMR: `${INTERNAL_PREFIX}/hmr.js`,
|
|
40
|
-
HYDRATE: `${INTERNAL_PREFIX}/hydrate.js`,
|
|
41
40
|
ERROR_OVERLAY: `${INTERNAL_PREFIX}/error-overlay.js`,
|
|
42
41
|
// Legacy endpoint retained for backward compatibility (no active handler).
|
|
43
42
|
DEV_LOADER: `${INTERNAL_PREFIX}/dev-loader.js`,
|
|
@@ -57,8 +56,6 @@ export const INTERNAL_ENDPOINTS = {
|
|
|
57
56
|
RSC_PAGE: `${INTERNAL_PREFIX}/rsc/page`,
|
|
58
57
|
RSC_MODULE: `${INTERNAL_PREFIX}/rsc/module`,
|
|
59
58
|
RSC_DOM: `${INTERNAL_PREFIX}/rsc/dom.js`,
|
|
60
|
-
RSC_HYDRATOR: `${INTERNAL_PREFIX}/rsc/hydrator.js`,
|
|
61
|
-
RSC_HYDRATE_CLIENT: `${INTERNAL_PREFIX}/rsc/hydrate-client.js`,
|
|
62
59
|
// Library module endpoints
|
|
63
60
|
LIB_CHAT_REACT: `${INTERNAL_PREFIX}/lib/chat/react.js`,
|
|
64
61
|
LIB_CHAT_COMPONENTS: `${INTERNAL_PREFIX}/lib/chat/components.js`,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.545";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED
package/src/deno.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
// See https://github.com/facebook/react/blob/main/packages/react-dom/client.js to see how the exports are declared,
|
|
6
6
|
|
|
7
|
-
import React = require("https://esm.sh/@types/react@19.2.
|
|
7
|
+
import React = require("https://esm.sh/@types/react@19.2.3/index.d.ts");
|
|
8
8
|
|
|
9
9
|
export {};
|
|
10
10
|
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
/*
|
|
2
|
+
React projects that don't include the DOM library need these interfaces to compile.
|
|
3
|
+
React Native applications use React, but there is no DOM available. The JavaScript runtime
|
|
4
|
+
is ES6/ES2015 only. These definitions allow such projects to compile with only `--lib ES6`.
|
|
5
|
+
|
|
6
|
+
Warning: all of these interfaces are empty. If you want type definitions for various properties
|
|
7
|
+
(such as HTMLInputElement.prototype.value), you need to add `--lib DOM` (via command line or tsconfig.json).
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
interface Event {}
|
|
11
|
+
interface AnimationEvent extends Event {}
|
|
12
|
+
interface ClipboardEvent extends Event {}
|
|
13
|
+
interface CompositionEvent extends Event {}
|
|
14
|
+
interface DragEvent extends Event {}
|
|
15
|
+
interface FocusEvent extends Event {}
|
|
16
|
+
interface InputEvent extends Event {}
|
|
17
|
+
interface KeyboardEvent extends Event {}
|
|
18
|
+
interface MouseEvent extends Event {}
|
|
19
|
+
interface TouchEvent extends Event {}
|
|
20
|
+
interface PointerEvent extends Event {}
|
|
21
|
+
interface ToggleEvent extends Event {}
|
|
22
|
+
interface TransitionEvent extends Event {}
|
|
23
|
+
interface UIEvent extends Event {}
|
|
24
|
+
interface WheelEvent extends Event {}
|
|
25
|
+
|
|
26
|
+
interface EventTarget {}
|
|
27
|
+
interface Document {}
|
|
28
|
+
interface DataTransfer {}
|
|
29
|
+
interface StyleMedia {}
|
|
30
|
+
|
|
31
|
+
interface Element {}
|
|
32
|
+
interface DocumentFragment {}
|
|
33
|
+
|
|
34
|
+
interface HTMLElement extends Element {}
|
|
35
|
+
interface HTMLAnchorElement extends HTMLElement {}
|
|
36
|
+
interface HTMLAreaElement extends HTMLElement {}
|
|
37
|
+
interface HTMLAudioElement extends HTMLElement {}
|
|
38
|
+
interface HTMLBaseElement extends HTMLElement {}
|
|
39
|
+
interface HTMLBodyElement extends HTMLElement {}
|
|
40
|
+
interface HTMLBRElement extends HTMLElement {}
|
|
41
|
+
interface HTMLButtonElement extends HTMLElement {}
|
|
42
|
+
interface HTMLCanvasElement extends HTMLElement {}
|
|
43
|
+
interface HTMLDataElement extends HTMLElement {}
|
|
44
|
+
interface HTMLDataListElement extends HTMLElement {}
|
|
45
|
+
interface HTMLDetailsElement extends HTMLElement {}
|
|
46
|
+
interface HTMLDialogElement extends HTMLElement {}
|
|
47
|
+
interface HTMLDivElement extends HTMLElement {}
|
|
48
|
+
interface HTMLDListElement extends HTMLElement {}
|
|
49
|
+
interface HTMLEmbedElement extends HTMLElement {}
|
|
50
|
+
interface HTMLFieldSetElement extends HTMLElement {}
|
|
51
|
+
interface HTMLFormElement extends HTMLElement {}
|
|
52
|
+
interface HTMLHeadingElement extends HTMLElement {}
|
|
53
|
+
interface HTMLHeadElement extends HTMLElement {}
|
|
54
|
+
interface HTMLHRElement extends HTMLElement {}
|
|
55
|
+
interface HTMLHtmlElement extends HTMLElement {}
|
|
56
|
+
interface HTMLIFrameElement extends HTMLElement {}
|
|
57
|
+
interface HTMLImageElement extends HTMLElement {}
|
|
58
|
+
interface HTMLInputElement extends HTMLElement {}
|
|
59
|
+
interface HTMLModElement extends HTMLElement {}
|
|
60
|
+
interface HTMLLabelElement extends HTMLElement {}
|
|
61
|
+
interface HTMLLegendElement extends HTMLElement {}
|
|
62
|
+
interface HTMLLIElement extends HTMLElement {}
|
|
63
|
+
interface HTMLLinkElement extends HTMLElement {}
|
|
64
|
+
interface HTMLMapElement extends HTMLElement {}
|
|
65
|
+
interface HTMLMetaElement extends HTMLElement {}
|
|
66
|
+
interface HTMLMeterElement extends HTMLElement {}
|
|
67
|
+
interface HTMLObjectElement extends HTMLElement {}
|
|
68
|
+
interface HTMLOListElement extends HTMLElement {}
|
|
69
|
+
interface HTMLOptGroupElement extends HTMLElement {}
|
|
70
|
+
interface HTMLOptionElement extends HTMLElement {}
|
|
71
|
+
interface HTMLOutputElement extends HTMLElement {}
|
|
72
|
+
interface HTMLParagraphElement extends HTMLElement {}
|
|
73
|
+
interface HTMLParamElement extends HTMLElement {}
|
|
74
|
+
interface HTMLPreElement extends HTMLElement {}
|
|
75
|
+
interface HTMLProgressElement extends HTMLElement {}
|
|
76
|
+
interface HTMLQuoteElement extends HTMLElement {}
|
|
77
|
+
interface HTMLSlotElement extends HTMLElement {}
|
|
78
|
+
interface HTMLScriptElement extends HTMLElement {}
|
|
79
|
+
interface HTMLSelectElement extends HTMLElement {}
|
|
80
|
+
interface HTMLSourceElement extends HTMLElement {}
|
|
81
|
+
interface HTMLSpanElement extends HTMLElement {}
|
|
82
|
+
interface HTMLStyleElement extends HTMLElement {}
|
|
83
|
+
interface HTMLTableElement extends HTMLElement {}
|
|
84
|
+
interface HTMLTableColElement extends HTMLElement {}
|
|
85
|
+
interface HTMLTableDataCellElement extends HTMLElement {}
|
|
86
|
+
interface HTMLTableHeaderCellElement extends HTMLElement {}
|
|
87
|
+
interface HTMLTableRowElement extends HTMLElement {}
|
|
88
|
+
interface HTMLTableSectionElement extends HTMLElement {}
|
|
89
|
+
interface HTMLTemplateElement extends HTMLElement {}
|
|
90
|
+
interface HTMLTextAreaElement extends HTMLElement {}
|
|
91
|
+
interface HTMLTimeElement extends HTMLElement {}
|
|
92
|
+
interface HTMLTitleElement extends HTMLElement {}
|
|
93
|
+
interface HTMLTrackElement extends HTMLElement {}
|
|
94
|
+
interface HTMLUListElement extends HTMLElement {}
|
|
95
|
+
interface HTMLVideoElement extends HTMLElement {}
|
|
96
|
+
interface HTMLWebViewElement extends HTMLElement {}
|
|
97
|
+
|
|
98
|
+
interface SVGElement extends Element {}
|
|
99
|
+
interface SVGSVGElement extends SVGElement {}
|
|
100
|
+
interface SVGCircleElement extends SVGElement {}
|
|
101
|
+
interface SVGClipPathElement extends SVGElement {}
|
|
102
|
+
interface SVGDefsElement extends SVGElement {}
|
|
103
|
+
interface SVGDescElement extends SVGElement {}
|
|
104
|
+
interface SVGEllipseElement extends SVGElement {}
|
|
105
|
+
interface SVGFEBlendElement extends SVGElement {}
|
|
106
|
+
interface SVGFEColorMatrixElement extends SVGElement {}
|
|
107
|
+
interface SVGFEComponentTransferElement extends SVGElement {}
|
|
108
|
+
interface SVGFECompositeElement extends SVGElement {}
|
|
109
|
+
interface SVGFEConvolveMatrixElement extends SVGElement {}
|
|
110
|
+
interface SVGFEDiffuseLightingElement extends SVGElement {}
|
|
111
|
+
interface SVGFEDisplacementMapElement extends SVGElement {}
|
|
112
|
+
interface SVGFEDistantLightElement extends SVGElement {}
|
|
113
|
+
interface SVGFEDropShadowElement extends SVGElement {}
|
|
114
|
+
interface SVGFEFloodElement extends SVGElement {}
|
|
115
|
+
interface SVGFEFuncAElement extends SVGElement {}
|
|
116
|
+
interface SVGFEFuncBElement extends SVGElement {}
|
|
117
|
+
interface SVGFEFuncGElement extends SVGElement {}
|
|
118
|
+
interface SVGFEFuncRElement extends SVGElement {}
|
|
119
|
+
interface SVGFEGaussianBlurElement extends SVGElement {}
|
|
120
|
+
interface SVGFEImageElement extends SVGElement {}
|
|
121
|
+
interface SVGFEMergeElement extends SVGElement {}
|
|
122
|
+
interface SVGFEMergeNodeElement extends SVGElement {}
|
|
123
|
+
interface SVGFEMorphologyElement extends SVGElement {}
|
|
124
|
+
interface SVGFEOffsetElement extends SVGElement {}
|
|
125
|
+
interface SVGFEPointLightElement extends SVGElement {}
|
|
126
|
+
interface SVGFESpecularLightingElement extends SVGElement {}
|
|
127
|
+
interface SVGFESpotLightElement extends SVGElement {}
|
|
128
|
+
interface SVGFETileElement extends SVGElement {}
|
|
129
|
+
interface SVGFETurbulenceElement extends SVGElement {}
|
|
130
|
+
interface SVGFilterElement extends SVGElement {}
|
|
131
|
+
interface SVGForeignObjectElement extends SVGElement {}
|
|
132
|
+
interface SVGGElement extends SVGElement {}
|
|
133
|
+
interface SVGImageElement extends SVGElement {}
|
|
134
|
+
interface SVGLineElement extends SVGElement {}
|
|
135
|
+
interface SVGLinearGradientElement extends SVGElement {}
|
|
136
|
+
interface SVGMarkerElement extends SVGElement {}
|
|
137
|
+
interface SVGMaskElement extends SVGElement {}
|
|
138
|
+
interface SVGMetadataElement extends SVGElement {}
|
|
139
|
+
interface SVGPathElement extends SVGElement {}
|
|
140
|
+
interface SVGPatternElement extends SVGElement {}
|
|
141
|
+
interface SVGPolygonElement extends SVGElement {}
|
|
142
|
+
interface SVGPolylineElement extends SVGElement {}
|
|
143
|
+
interface SVGRadialGradientElement extends SVGElement {}
|
|
144
|
+
interface SVGRectElement extends SVGElement {}
|
|
145
|
+
interface SVGSetElement extends SVGElement {}
|
|
146
|
+
interface SVGStopElement extends SVGElement {}
|
|
147
|
+
interface SVGSwitchElement extends SVGElement {}
|
|
148
|
+
interface SVGSymbolElement extends SVGElement {}
|
|
149
|
+
interface SVGTextElement extends SVGElement {}
|
|
150
|
+
interface SVGTextPathElement extends SVGElement {}
|
|
151
|
+
interface SVGTSpanElement extends SVGElement {}
|
|
152
|
+
interface SVGUseElement extends SVGElement {}
|
|
153
|
+
interface SVGViewElement extends SVGElement {}
|
|
154
|
+
|
|
155
|
+
interface FormData {}
|
|
156
|
+
interface Text {}
|
|
157
|
+
interface TouchList {}
|
|
158
|
+
interface WebGLRenderingContext {}
|
|
159
|
+
interface WebGL2RenderingContext {}
|
|
160
|
+
|
|
161
|
+
interface TrustedHTML {}
|
|
162
|
+
|
|
163
|
+
interface Blob {}
|
|
164
|
+
interface MediaStream {}
|
|
165
|
+
interface MediaSource {}
|