@zuplo/cli 6.73.30 → 6.73.31
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/dist/test/invoke-test.d.ts.map +1 -1
- package/dist/test/invoke-test.js +4 -3
- package/dist/test/invoke-test.js.map +1 -1
- package/dist/test/invoke-test.test.d.ts +2 -0
- package/dist/test/invoke-test.test.d.ts.map +1 -0
- package/dist/test/invoke-test.test.js +57 -0
- package/dist/test/invoke-test.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.js +18 -1
- package/node_modules/@posthog/core/dist/posthog-core.mjs +18 -1
- package/node_modules/@posthog/core/package.json +1 -1
- package/node_modules/@posthog/core/src/posthog-core.ts +28 -1
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/editor/node_modules/hono/LICENSE +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/README.md +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/handler.js +364 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/index.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/server.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/websocket.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/index.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/websocket.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/handler.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/index.js +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/mod.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +395 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +49 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/index.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/server.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/ssg.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/websocket.js +98 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +63 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/ssg.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/websocket.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/handler.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/index.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/mod.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/handler.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/client.js +204 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/fetch-result-please.js +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/utils.js +105 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/compose.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/context.js +435 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/accepts.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/adapter/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/cookie/index.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/common.js +273 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/index.js +157 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/dev/index.js +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/factory/index.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/html/index.js +64 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/proxy/index.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/route/index.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/index.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/middleware.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/plugins.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/ssg.js +320 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/utils.js +93 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/sse.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/stream.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/text.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/testing/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/websocket/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono-base.js +405 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/http-exception.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/base.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/children.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/components.js +221 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/constants.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/context.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/client.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/components.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/context.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/css.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/index.js +181 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +399 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/render.js +641 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/server.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/utils.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/hooks/index.js +370 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/index.js +138 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +50 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/streaming.js +179 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/utils.js +200 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/body-limit/index.js +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cache/index.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/combine/index.js +101 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/compress/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/context-storage/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cors/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/csrf/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/digest.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/index.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +176 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/language.js +199 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/logger/index.js +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/method-override/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/powered-by/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +195 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/path.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timeout/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/timing.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/quick.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/tiny.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request.js +344 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/router.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/router.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +166 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +208 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/router.js +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/node.js +210 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/types.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/accept.js +245 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/basic-auth.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/body.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/buffer.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/color.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/compress.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/concurrent.js +61 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/cookie.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/crypto.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/encode.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/filepath.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/handler.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/headers.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/html.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/http-status.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/ipaddr.js +318 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/index.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwa.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jws.js +215 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwt.js +219 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/types.js +161 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/utf8.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/mime.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/stream.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/url.js +256 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/utils.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/validator.js +108 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/client.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/fetch-result-please.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/index.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/utils.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/compose.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/context.js +412 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/adapter/index.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/cookie/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/common.js +236 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/index.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/dev/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/factory/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/html/index.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/proxy/index.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/route/index.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/index.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/plugins.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/ssg.js +297 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/utils.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/sse.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/stream.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/text.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/utils.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/testing/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/websocket/index.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono-base.js +383 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/http-exception.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/base.js +342 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/children.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/components.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/constants.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/context.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/client.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/components.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/context.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/css.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/index.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/render.js +617 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/server.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/utils.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/hooks/index.js +328 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/index.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/common.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/components.js +165 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-runtime.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/streaming.js +155 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/utils.js +175 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/basic-auth/index.js +66 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/bearer-auth/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/body-limit/index.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cache/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/combine/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/compress/index.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cors/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/csrf/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/digest.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/index.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/ip-restriction/index.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jsx-renderer/index.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/language.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/logger/index.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/method-override/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +172 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timeout/index.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/timing.js +104 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/trailing-slash/index.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/quick.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/tiny.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request.js +321 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/router.js +118 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/router.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/node.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/router.js +26 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +153 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/index.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/server.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/client.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/types.d.ts +229 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/utils.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/compose.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/context.d.ts +455 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/common.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/index.d.ts +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/utils.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono-base.d.ts +220 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono.d.ts +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/http-exception.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/index.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/base.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/context.d.ts +51 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/css.d.ts +83 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/utils.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cache/index.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/compress/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/language.d.ts +120 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +94 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request/constants.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request.d.ts +324 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router.d.ts +97 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/types.d.ts +573 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/accept.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/body.d.ts +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/buffer.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/color.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/html.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/ipaddr.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/types.d.ts +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/url.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/accept.js +223 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/basic-auth.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/body.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/buffer.js +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/color.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/compress.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/concurrent.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/cookie.js +173 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/crypto.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/encode.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/filepath.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/handler.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/html.js +123 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/ipaddr.js +288 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jws.js +192 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwt.js +207 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/types.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/mime.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/stream.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/url.js +222 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/validator.js +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/package.json +699 -0
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js +26 -0
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js.map +1 -0
- package/node_modules/@zuplo/otel/out/esm/index.js +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js +405 -0
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +18 -0
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/fast-uri/index.js +37 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/security.test.js +136 -0
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/cjs/utils/cookie.js +2 -1
- package/node_modules/hono/dist/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/utils/cookie.js +2 -1
- package/node_modules/hono/package.json +2 -3
- package/node_modules/ip-address/README.md +142 -128
- package/node_modules/ip-address/dist/common.d.ts +6 -0
- package/node_modules/ip-address/dist/common.js +17 -1
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.js +3 -12
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +9 -2
- package/node_modules/ip-address/dist/ipv6.js +35 -16
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/package.json +5 -3
- package/package.json +6 -6
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js +0 -26
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js.map +0 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js +0 -405
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-6E46244D.js.LEGAL.txt → chunk-TOMTVLZA.js.LEGAL.txt} +0 -0
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var base_exports = {};
|
|
29
|
+
__export(base_exports, {
|
|
30
|
+
Fragment: () => Fragment,
|
|
31
|
+
JSXFragmentNode: () => JSXFragmentNode,
|
|
32
|
+
JSXNode: () => JSXNode,
|
|
33
|
+
booleanAttributes: () => booleanAttributes,
|
|
34
|
+
cloneElement: () => cloneElement,
|
|
35
|
+
getNameSpaceContext: () => getNameSpaceContext,
|
|
36
|
+
isValidElement: () => isValidElement,
|
|
37
|
+
jsx: () => jsx,
|
|
38
|
+
jsxFn: () => jsxFn,
|
|
39
|
+
memo: () => memo,
|
|
40
|
+
reactAPICompatVersion: () => reactAPICompatVersion,
|
|
41
|
+
shallowEqual: () => shallowEqual
|
|
42
|
+
});
|
|
43
|
+
module.exports = __toCommonJS(base_exports);
|
|
44
|
+
var import_html = require("../helper/html");
|
|
45
|
+
var import_html2 = require("../utils/html");
|
|
46
|
+
var import_constants = require("./constants");
|
|
47
|
+
var import_context = require("./context");
|
|
48
|
+
var import_common = require("./intrinsic-element/common");
|
|
49
|
+
var intrinsicElementTags = __toESM(require("./intrinsic-element/components"), 1);
|
|
50
|
+
var import_utils = require("./utils");
|
|
51
|
+
let nameSpaceContext = void 0;
|
|
52
|
+
const getNameSpaceContext = () => nameSpaceContext;
|
|
53
|
+
const toSVGAttributeName = (key) => /[A-Z]/.test(key) && // Presentation attributes are findable in style object. "clip-path", "font-size", "stroke-width", etc.
|
|
54
|
+
// Or other un-deprecated kebab-case attributes. "overline-position", "paint-order", "strikethrough-position", etc.
|
|
55
|
+
key.match(
|
|
56
|
+
/^(?:al|basel|clip(?:Path|Rule)$|co|do|fill|fl|fo|gl|let|lig|i|marker[EMS]|o|pai|pointe|sh|st[or]|text[^L]|tr|u|ve|w)/
|
|
57
|
+
) ? key.replace(/([A-Z])/g, "-$1").toLowerCase() : key;
|
|
58
|
+
const emptyTags = [
|
|
59
|
+
"area",
|
|
60
|
+
"base",
|
|
61
|
+
"br",
|
|
62
|
+
"col",
|
|
63
|
+
"embed",
|
|
64
|
+
"hr",
|
|
65
|
+
"img",
|
|
66
|
+
"input",
|
|
67
|
+
"keygen",
|
|
68
|
+
"link",
|
|
69
|
+
"meta",
|
|
70
|
+
"param",
|
|
71
|
+
"source",
|
|
72
|
+
"track",
|
|
73
|
+
"wbr"
|
|
74
|
+
];
|
|
75
|
+
const booleanAttributes = [
|
|
76
|
+
"allowfullscreen",
|
|
77
|
+
"async",
|
|
78
|
+
"autofocus",
|
|
79
|
+
"autoplay",
|
|
80
|
+
"checked",
|
|
81
|
+
"controls",
|
|
82
|
+
"default",
|
|
83
|
+
"defer",
|
|
84
|
+
"disabled",
|
|
85
|
+
"download",
|
|
86
|
+
"formnovalidate",
|
|
87
|
+
"hidden",
|
|
88
|
+
"inert",
|
|
89
|
+
"ismap",
|
|
90
|
+
"itemscope",
|
|
91
|
+
"loop",
|
|
92
|
+
"multiple",
|
|
93
|
+
"muted",
|
|
94
|
+
"nomodule",
|
|
95
|
+
"novalidate",
|
|
96
|
+
"open",
|
|
97
|
+
"playsinline",
|
|
98
|
+
"readonly",
|
|
99
|
+
"required",
|
|
100
|
+
"reversed",
|
|
101
|
+
"selected"
|
|
102
|
+
];
|
|
103
|
+
const childrenToStringToBuffer = (children, buffer) => {
|
|
104
|
+
for (let i = 0, len = children.length; i < len; i++) {
|
|
105
|
+
const child = children[i];
|
|
106
|
+
if (typeof child === "string") {
|
|
107
|
+
(0, import_html2.escapeToBuffer)(child, buffer);
|
|
108
|
+
} else if (typeof child === "boolean" || child === null || child === void 0) {
|
|
109
|
+
continue;
|
|
110
|
+
} else if (child instanceof JSXNode) {
|
|
111
|
+
child.toStringToBuffer(buffer);
|
|
112
|
+
} else if (typeof child === "number" || child.isEscaped) {
|
|
113
|
+
;
|
|
114
|
+
buffer[0] += child;
|
|
115
|
+
} else if (child instanceof Promise) {
|
|
116
|
+
buffer.unshift("", child);
|
|
117
|
+
} else {
|
|
118
|
+
childrenToStringToBuffer(child, buffer);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
class JSXNode {
|
|
123
|
+
tag;
|
|
124
|
+
props;
|
|
125
|
+
key;
|
|
126
|
+
children;
|
|
127
|
+
isEscaped = true;
|
|
128
|
+
suspendedContext;
|
|
129
|
+
constructor(tag, props, children) {
|
|
130
|
+
if (typeof tag !== "function" && !(0, import_utils.isValidTagName)(tag)) {
|
|
131
|
+
throw new Error(`Invalid JSX tag name: ${tag}`);
|
|
132
|
+
}
|
|
133
|
+
this.tag = tag;
|
|
134
|
+
this.props = props;
|
|
135
|
+
this.children = children;
|
|
136
|
+
}
|
|
137
|
+
get type() {
|
|
138
|
+
return this.tag;
|
|
139
|
+
}
|
|
140
|
+
// Added for compatibility with libraries that rely on React's internal structure
|
|
141
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
142
|
+
get ref() {
|
|
143
|
+
return this.props.ref || null;
|
|
144
|
+
}
|
|
145
|
+
toString() {
|
|
146
|
+
const render = () => {
|
|
147
|
+
const buffer = [""];
|
|
148
|
+
this.toStringToBuffer(buffer);
|
|
149
|
+
return buffer.length === 1 ? "callbacks" in buffer ? (0, import_html2.resolveCallbackSync)((0, import_html.raw)(buffer[0], buffer.callbacks)).toString() : buffer[0] : (0, import_html2.stringBufferToString)(buffer, buffer.callbacks);
|
|
150
|
+
};
|
|
151
|
+
return this.suspendedContext ? this.suspendedContext(render) : (0, import_context.runWithRenderContext)(render);
|
|
152
|
+
}
|
|
153
|
+
toStringToBuffer(buffer) {
|
|
154
|
+
const tag = this.tag;
|
|
155
|
+
const props = this.props;
|
|
156
|
+
let { children } = this;
|
|
157
|
+
buffer[0] += `<${tag}`;
|
|
158
|
+
const normalizeKey = tag === "svg" || nameSpaceContext && (0, import_context.useContext)(nameSpaceContext) === "svg" ? (key) => toSVGAttributeName((0, import_utils.normalizeIntrinsicElementKey)(key)) : (key) => (0, import_utils.normalizeIntrinsicElementKey)(key);
|
|
159
|
+
for (let [key, v] of Object.entries(props)) {
|
|
160
|
+
key = normalizeKey(key);
|
|
161
|
+
if (!(0, import_utils.isValidAttributeName)(key)) {
|
|
162
|
+
continue;
|
|
163
|
+
}
|
|
164
|
+
if (key === "children") {
|
|
165
|
+
} else if (key === "style" && typeof v === "object") {
|
|
166
|
+
let styleStr = "";
|
|
167
|
+
(0, import_utils.styleObjectForEach)(v, (property, value) => {
|
|
168
|
+
if (value != null) {
|
|
169
|
+
styleStr += `${styleStr ? ";" : ""}${property}:${value}`;
|
|
170
|
+
}
|
|
171
|
+
});
|
|
172
|
+
buffer[0] += ' style="';
|
|
173
|
+
(0, import_html2.escapeToBuffer)(styleStr, buffer);
|
|
174
|
+
buffer[0] += '"';
|
|
175
|
+
} else if (typeof v === "string") {
|
|
176
|
+
buffer[0] += ` ${key}="`;
|
|
177
|
+
(0, import_html2.escapeToBuffer)(v, buffer);
|
|
178
|
+
buffer[0] += '"';
|
|
179
|
+
} else if (v === null || v === void 0) {
|
|
180
|
+
} else if (typeof v === "number" || v.isEscaped) {
|
|
181
|
+
buffer[0] += ` ${key}="${v}"`;
|
|
182
|
+
} else if (typeof v === "boolean" && booleanAttributes.includes(key)) {
|
|
183
|
+
if (v) {
|
|
184
|
+
buffer[0] += ` ${key}=""`;
|
|
185
|
+
}
|
|
186
|
+
} else if (key === "dangerouslySetInnerHTML") {
|
|
187
|
+
if (children.length > 0) {
|
|
188
|
+
throw new Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");
|
|
189
|
+
}
|
|
190
|
+
children = [(0, import_html.raw)(v.__html)];
|
|
191
|
+
} else if (v instanceof Promise) {
|
|
192
|
+
buffer[0] += ` ${key}="`;
|
|
193
|
+
buffer.unshift('"', v);
|
|
194
|
+
} else if (typeof v === "function") {
|
|
195
|
+
if (!key.startsWith("on") && key !== "ref") {
|
|
196
|
+
throw new Error(`Invalid prop '${key}' of type 'function' supplied to '${tag}'.`);
|
|
197
|
+
}
|
|
198
|
+
} else {
|
|
199
|
+
buffer[0] += ` ${key}="`;
|
|
200
|
+
(0, import_html2.escapeToBuffer)(v.toString(), buffer);
|
|
201
|
+
buffer[0] += '"';
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
if (emptyTags.includes(tag) && children.length === 0) {
|
|
205
|
+
buffer[0] += "/>";
|
|
206
|
+
return;
|
|
207
|
+
}
|
|
208
|
+
buffer[0] += ">";
|
|
209
|
+
childrenToStringToBuffer(children, buffer);
|
|
210
|
+
buffer[0] += `</${tag}>`;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class JSXFunctionNode extends JSXNode {
|
|
214
|
+
toStringToBuffer(buffer) {
|
|
215
|
+
const { children } = this;
|
|
216
|
+
const props = { ...this.props };
|
|
217
|
+
if (children.length) {
|
|
218
|
+
props.children = children.length === 1 ? children[0] : children;
|
|
219
|
+
}
|
|
220
|
+
const res = this.tag.call(null, props);
|
|
221
|
+
if (typeof res === "boolean" || res == null) {
|
|
222
|
+
return;
|
|
223
|
+
} else if (res instanceof Promise) {
|
|
224
|
+
if (import_context.globalContexts.length === 0) {
|
|
225
|
+
buffer.unshift("", res);
|
|
226
|
+
} else {
|
|
227
|
+
const suspendedContext = (0, import_context.captureRenderContext)();
|
|
228
|
+
buffer.unshift(
|
|
229
|
+
"",
|
|
230
|
+
res.then((childRes) => {
|
|
231
|
+
if (childRes instanceof JSXNode) {
|
|
232
|
+
childRes.suspendedContext = suspendedContext;
|
|
233
|
+
}
|
|
234
|
+
return childRes;
|
|
235
|
+
})
|
|
236
|
+
);
|
|
237
|
+
}
|
|
238
|
+
} else if (res instanceof JSXNode) {
|
|
239
|
+
res.toStringToBuffer(buffer);
|
|
240
|
+
} else if (typeof res === "number" || res.isEscaped) {
|
|
241
|
+
buffer[0] += res;
|
|
242
|
+
if (res.callbacks) {
|
|
243
|
+
buffer.callbacks ||= [];
|
|
244
|
+
buffer.callbacks.push(...res.callbacks);
|
|
245
|
+
}
|
|
246
|
+
} else {
|
|
247
|
+
(0, import_html2.escapeToBuffer)(res, buffer);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class JSXFragmentNode extends JSXNode {
|
|
252
|
+
toStringToBuffer(buffer) {
|
|
253
|
+
childrenToStringToBuffer(this.children, buffer);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
const jsx = (tag, props, ...children) => {
|
|
257
|
+
props ??= {};
|
|
258
|
+
if (children.length) {
|
|
259
|
+
props.children = children.length === 1 ? children[0] : children;
|
|
260
|
+
}
|
|
261
|
+
const key = props.key;
|
|
262
|
+
delete props["key"];
|
|
263
|
+
const node = jsxFn(tag, props, children);
|
|
264
|
+
node.key = key;
|
|
265
|
+
return node;
|
|
266
|
+
};
|
|
267
|
+
let initDomRenderer = false;
|
|
268
|
+
const jsxFn = (tag, props, children) => {
|
|
269
|
+
if (!initDomRenderer) {
|
|
270
|
+
for (const k in import_common.domRenderers) {
|
|
271
|
+
;
|
|
272
|
+
intrinsicElementTags[k][import_constants.DOM_RENDERER] = import_common.domRenderers[k];
|
|
273
|
+
}
|
|
274
|
+
initDomRenderer = true;
|
|
275
|
+
}
|
|
276
|
+
if (typeof tag === "function") {
|
|
277
|
+
return new JSXFunctionNode(tag, props, children);
|
|
278
|
+
} else if (intrinsicElementTags[tag]) {
|
|
279
|
+
return new JSXFunctionNode(
|
|
280
|
+
intrinsicElementTags[tag],
|
|
281
|
+
props,
|
|
282
|
+
children
|
|
283
|
+
);
|
|
284
|
+
} else if (tag === "svg" || tag === "head") {
|
|
285
|
+
nameSpaceContext ||= (0, import_context.createContext)("");
|
|
286
|
+
return new JSXNode(tag, props, [
|
|
287
|
+
new JSXFunctionNode(
|
|
288
|
+
nameSpaceContext,
|
|
289
|
+
{
|
|
290
|
+
value: tag
|
|
291
|
+
},
|
|
292
|
+
children
|
|
293
|
+
)
|
|
294
|
+
]);
|
|
295
|
+
} else {
|
|
296
|
+
return new JSXNode(tag, props, children);
|
|
297
|
+
}
|
|
298
|
+
};
|
|
299
|
+
const shallowEqual = (a, b) => {
|
|
300
|
+
if (a === b) {
|
|
301
|
+
return true;
|
|
302
|
+
}
|
|
303
|
+
const aKeys = Object.keys(a).sort();
|
|
304
|
+
const bKeys = Object.keys(b).sort();
|
|
305
|
+
if (aKeys.length !== bKeys.length) {
|
|
306
|
+
return false;
|
|
307
|
+
}
|
|
308
|
+
for (let i = 0, len = aKeys.length; i < len; i++) {
|
|
309
|
+
if (aKeys[i] === "children" && bKeys[i] === "children" && !a.children?.length && !b.children?.length) {
|
|
310
|
+
continue;
|
|
311
|
+
} else if (a[aKeys[i]] !== b[aKeys[i]]) {
|
|
312
|
+
return false;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
return true;
|
|
316
|
+
};
|
|
317
|
+
const memo = (component, propsAreEqual = shallowEqual) => {
|
|
318
|
+
let computed = null;
|
|
319
|
+
let prevProps = void 0;
|
|
320
|
+
const wrapper = ((props) => {
|
|
321
|
+
if (prevProps && !propsAreEqual(prevProps, props)) {
|
|
322
|
+
computed = null;
|
|
323
|
+
}
|
|
324
|
+
prevProps = props;
|
|
325
|
+
return computed ||= component(props);
|
|
326
|
+
});
|
|
327
|
+
wrapper[import_constants.DOM_MEMO] = propsAreEqual;
|
|
328
|
+
wrapper[import_constants.DOM_RENDERER] = component;
|
|
329
|
+
return wrapper;
|
|
330
|
+
};
|
|
331
|
+
const Fragment = ({
|
|
332
|
+
children
|
|
333
|
+
}) => {
|
|
334
|
+
return new JSXFragmentNode(
|
|
335
|
+
"",
|
|
336
|
+
{
|
|
337
|
+
children
|
|
338
|
+
},
|
|
339
|
+
Array.isArray(children) ? children : children ? [children] : []
|
|
340
|
+
);
|
|
341
|
+
};
|
|
342
|
+
const isValidElement = (element) => {
|
|
343
|
+
return !!(element && typeof element === "object" && "tag" in element && "props" in element);
|
|
344
|
+
};
|
|
345
|
+
const cloneElement = (element, props, ...children) => {
|
|
346
|
+
let childrenToClone;
|
|
347
|
+
if (children.length > 0) {
|
|
348
|
+
childrenToClone = children;
|
|
349
|
+
} else {
|
|
350
|
+
const c = element.props.children;
|
|
351
|
+
childrenToClone = Array.isArray(c) ? c : [c];
|
|
352
|
+
}
|
|
353
|
+
return jsx(
|
|
354
|
+
element.tag,
|
|
355
|
+
{ ...element.props, ...props },
|
|
356
|
+
...childrenToClone
|
|
357
|
+
);
|
|
358
|
+
};
|
|
359
|
+
const reactAPICompatVersion = "19.0.0-hono-jsx";
|
|
360
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
361
|
+
0 && (module.exports = {
|
|
362
|
+
Fragment,
|
|
363
|
+
JSXFragmentNode,
|
|
364
|
+
JSXNode,
|
|
365
|
+
booleanAttributes,
|
|
366
|
+
cloneElement,
|
|
367
|
+
getNameSpaceContext,
|
|
368
|
+
isValidElement,
|
|
369
|
+
jsx,
|
|
370
|
+
jsxFn,
|
|
371
|
+
memo,
|
|
372
|
+
reactAPICompatVersion,
|
|
373
|
+
shallowEqual
|
|
374
|
+
});
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var children_exports = {};
|
|
19
|
+
__export(children_exports, {
|
|
20
|
+
Children: () => Children,
|
|
21
|
+
toArray: () => toArray
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(children_exports);
|
|
24
|
+
const toArray = (children) => Array.isArray(children) ? children : [children];
|
|
25
|
+
const Children = {
|
|
26
|
+
map: (children, fn) => toArray(children).map(fn),
|
|
27
|
+
forEach: (children, fn) => {
|
|
28
|
+
toArray(children).forEach(fn);
|
|
29
|
+
},
|
|
30
|
+
count: (children) => toArray(children).length,
|
|
31
|
+
only: (_children) => {
|
|
32
|
+
const children = toArray(_children);
|
|
33
|
+
if (children.length !== 1) {
|
|
34
|
+
throw new Error("Children.only() expects only one child");
|
|
35
|
+
}
|
|
36
|
+
return children[0];
|
|
37
|
+
},
|
|
38
|
+
toArray
|
|
39
|
+
};
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
Children,
|
|
43
|
+
toArray
|
|
44
|
+
});
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var components_exports = {};
|
|
19
|
+
__export(components_exports, {
|
|
20
|
+
ErrorBoundary: () => ErrorBoundary,
|
|
21
|
+
childrenToString: () => childrenToString
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(components_exports);
|
|
24
|
+
var import_html = require("../helper/html");
|
|
25
|
+
var import_html2 = require("../utils/html");
|
|
26
|
+
var import_base = require("./base");
|
|
27
|
+
var import_constants = require("./constants");
|
|
28
|
+
var import_context = require("./context");
|
|
29
|
+
var import_components = require("./dom/components");
|
|
30
|
+
var import_streaming = require("./streaming");
|
|
31
|
+
let errorBoundaryCounter = 0;
|
|
32
|
+
const childrenToString = async (children) => {
|
|
33
|
+
try {
|
|
34
|
+
return children.flat().map((c) => c == null || typeof c === "boolean" ? "" : c.toString());
|
|
35
|
+
} catch (e) {
|
|
36
|
+
if (e instanceof Promise) {
|
|
37
|
+
const resume = (0, import_context.captureRenderContext)();
|
|
38
|
+
await e;
|
|
39
|
+
return resume(() => childrenToString(children));
|
|
40
|
+
} else {
|
|
41
|
+
throw e;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
const resolveChildEarly = (c) => {
|
|
46
|
+
if (c == null || typeof c === "boolean") {
|
|
47
|
+
return "";
|
|
48
|
+
} else if (typeof c === "string") {
|
|
49
|
+
return c;
|
|
50
|
+
} else {
|
|
51
|
+
const str = c.toString();
|
|
52
|
+
if (!(str instanceof Promise)) {
|
|
53
|
+
return (0, import_html.raw)(str);
|
|
54
|
+
} else {
|
|
55
|
+
return str;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
const ErrorBoundary = async ({ children, fallback, fallbackRender, onError }) => {
|
|
60
|
+
if (!children) {
|
|
61
|
+
return (0, import_html.raw)("");
|
|
62
|
+
}
|
|
63
|
+
if (!Array.isArray(children)) {
|
|
64
|
+
children = [children];
|
|
65
|
+
}
|
|
66
|
+
const nonce = (0, import_context.useContext)(import_streaming.StreamingContext)?.scriptNonce;
|
|
67
|
+
let resume;
|
|
68
|
+
const getResume = () => resume ||= (0, import_context.captureRenderContext)();
|
|
69
|
+
let fallbackStrPromise;
|
|
70
|
+
const resolveFallbackStr = () => fallbackStrPromise ||= (async () => {
|
|
71
|
+
const awaitedFallback = await fallback;
|
|
72
|
+
if (typeof awaitedFallback === "string") {
|
|
73
|
+
return awaitedFallback;
|
|
74
|
+
} else {
|
|
75
|
+
const fallbackResult = await getResume()(() => awaitedFallback?.toString());
|
|
76
|
+
if (typeof fallbackResult === "string") {
|
|
77
|
+
return (0, import_html.raw)(
|
|
78
|
+
fallbackResult,
|
|
79
|
+
fallbackResult.callbacks || awaitedFallback?.callbacks
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
})();
|
|
84
|
+
const renderFallback = async (error) => {
|
|
85
|
+
const fallbackStr = await resolveFallbackStr();
|
|
86
|
+
return getResume()(async () => {
|
|
87
|
+
onError?.(error);
|
|
88
|
+
const fallbackRes = fallbackStr !== void 0 ? fallbackStr : fallbackRender && (0, import_base.jsx)(import_base.Fragment, {}, fallbackRender(error)) || "";
|
|
89
|
+
const fallbackResString = await (0, import_base.Fragment)({
|
|
90
|
+
children: fallbackRes
|
|
91
|
+
}).toString();
|
|
92
|
+
return (0, import_html.raw)(
|
|
93
|
+
fallbackResString,
|
|
94
|
+
fallbackResString.callbacks || fallbackRes.callbacks
|
|
95
|
+
);
|
|
96
|
+
});
|
|
97
|
+
};
|
|
98
|
+
let resArray = [];
|
|
99
|
+
try {
|
|
100
|
+
resArray = children.map(resolveChildEarly);
|
|
101
|
+
} catch (e) {
|
|
102
|
+
const resume2 = getResume();
|
|
103
|
+
if (e instanceof Promise) {
|
|
104
|
+
resArray = [
|
|
105
|
+
e.then(() => resume2(() => childrenToString(children))).catch((e2) => renderFallback(e2))
|
|
106
|
+
];
|
|
107
|
+
} else {
|
|
108
|
+
resArray = [await renderFallback(e)];
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
if (resArray.some((res) => res instanceof Promise)) {
|
|
112
|
+
getResume();
|
|
113
|
+
const index = errorBoundaryCounter++;
|
|
114
|
+
const replaceRe = RegExp(`(<template id="E:${index}"></template>.*?)(.*?)(<!--E:${index}-->)`);
|
|
115
|
+
let caught = false;
|
|
116
|
+
const catchCallback = async ({ error: error2, buffer }) => {
|
|
117
|
+
if (caught) {
|
|
118
|
+
return "";
|
|
119
|
+
}
|
|
120
|
+
caught = true;
|
|
121
|
+
const fallbackResString = await renderFallback(error2);
|
|
122
|
+
const fallbackCallbacks = fallbackResString.callbacks;
|
|
123
|
+
if (buffer) {
|
|
124
|
+
buffer[0] = buffer[0].replace(replaceRe, fallbackResString);
|
|
125
|
+
return fallbackCallbacks?.length ? (0, import_html.raw)("", fallbackCallbacks) : "";
|
|
126
|
+
}
|
|
127
|
+
return (0, import_html.raw)(
|
|
128
|
+
`<template data-hono-target="E:${index}">${fallbackResString}</template><script>
|
|
129
|
+
((d,c,n) => {
|
|
130
|
+
c=d.currentScript.previousSibling
|
|
131
|
+
d=d.getElementById('E:${index}')
|
|
132
|
+
if(!d)return
|
|
133
|
+
do{n=d.nextSibling;n.remove()}while(n.nodeType!=8||n.nodeValue!='E:${index}')
|
|
134
|
+
d.replaceWith(c.content)
|
|
135
|
+
})(document)
|
|
136
|
+
</script>`,
|
|
137
|
+
fallbackCallbacks
|
|
138
|
+
);
|
|
139
|
+
};
|
|
140
|
+
let error;
|
|
141
|
+
const promiseAll = Promise.all(resArray).catch((e) => error = e);
|
|
142
|
+
return (0, import_html.raw)(`<template id="E:${index}"></template><!--E:${index}-->`, [
|
|
143
|
+
({ phase, buffer, context }) => {
|
|
144
|
+
if (phase === import_html2.HtmlEscapedCallbackPhase.BeforeStream) {
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
return promiseAll.then(async (htmlArray) => {
|
|
148
|
+
if (error) {
|
|
149
|
+
throw error;
|
|
150
|
+
}
|
|
151
|
+
htmlArray = htmlArray.flat();
|
|
152
|
+
const content = htmlArray.join("");
|
|
153
|
+
let html = buffer ? "" : `<template data-hono-target="E:${index}">${content}</template><script${nonce ? ` nonce="${nonce}"` : ""}>
|
|
154
|
+
((d,c) => {
|
|
155
|
+
c=d.currentScript.previousSibling
|
|
156
|
+
d=d.getElementById('E:${index}')
|
|
157
|
+
if(!d)return
|
|
158
|
+
d.parentElement.insertBefore(c.content,d.nextSibling)
|
|
159
|
+
})(document)
|
|
160
|
+
</script>`;
|
|
161
|
+
if (htmlArray.every((html2) => !html2.callbacks?.length)) {
|
|
162
|
+
if (buffer) {
|
|
163
|
+
buffer[0] = buffer[0].replace(replaceRe, content);
|
|
164
|
+
}
|
|
165
|
+
return html;
|
|
166
|
+
}
|
|
167
|
+
if (buffer) {
|
|
168
|
+
buffer[0] = buffer[0].replace(
|
|
169
|
+
replaceRe,
|
|
170
|
+
(_all, pre, _, post) => `${pre}${content}${post}`
|
|
171
|
+
);
|
|
172
|
+
}
|
|
173
|
+
const callbacks = htmlArray.map((html2) => html2.callbacks || []).flat();
|
|
174
|
+
if (phase === import_html2.HtmlEscapedCallbackPhase.Stream) {
|
|
175
|
+
html = await (0, import_html2.resolveCallback)(
|
|
176
|
+
html,
|
|
177
|
+
import_html2.HtmlEscapedCallbackPhase.BeforeStream,
|
|
178
|
+
true,
|
|
179
|
+
context
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
let resolvedCount = 0;
|
|
183
|
+
const promises = callbacks.map(
|
|
184
|
+
(c) => (...args) => c(...args)?.then((content2) => {
|
|
185
|
+
resolvedCount++;
|
|
186
|
+
if (buffer) {
|
|
187
|
+
if (resolvedCount === callbacks.length) {
|
|
188
|
+
buffer[0] = buffer[0].replace(replaceRe, (_all, _pre, content3) => content3);
|
|
189
|
+
}
|
|
190
|
+
buffer[0] += content2;
|
|
191
|
+
return (0, import_html.raw)("", content2.callbacks);
|
|
192
|
+
}
|
|
193
|
+
return (0, import_html.raw)(
|
|
194
|
+
content2 + (resolvedCount !== callbacks.length ? "" : `<script>
|
|
195
|
+
((d,c,n) => {
|
|
196
|
+
d=d.getElementById('E:${index}')
|
|
197
|
+
if(!d)return
|
|
198
|
+
n=d.nextSibling
|
|
199
|
+
while(n.nodeType!=8||n.nodeValue!='E:${index}'){n=n.nextSibling}
|
|
200
|
+
n.remove()
|
|
201
|
+
d.remove()
|
|
202
|
+
})(document)
|
|
203
|
+
</script>`),
|
|
204
|
+
content2.callbacks
|
|
205
|
+
);
|
|
206
|
+
}).catch((error2) => catchCallback({ error: error2, buffer }))
|
|
207
|
+
);
|
|
208
|
+
return (0, import_html.raw)(html, promises);
|
|
209
|
+
}).catch((error2) => catchCallback({ error: error2, buffer }));
|
|
210
|
+
}
|
|
211
|
+
]);
|
|
212
|
+
} else {
|
|
213
|
+
return (0, import_base.Fragment)({ children: resArray });
|
|
214
|
+
}
|
|
215
|
+
};
|
|
216
|
+
ErrorBoundary[import_constants.DOM_RENDERER] = import_components.ErrorBoundary;
|
|
217
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
218
|
+
0 && (module.exports = {
|
|
219
|
+
ErrorBoundary,
|
|
220
|
+
childrenToString
|
|
221
|
+
});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var constants_exports = {};
|
|
19
|
+
__export(constants_exports, {
|
|
20
|
+
DOM_ERROR_HANDLER: () => DOM_ERROR_HANDLER,
|
|
21
|
+
DOM_INTERNAL_TAG: () => DOM_INTERNAL_TAG,
|
|
22
|
+
DOM_MEMO: () => DOM_MEMO,
|
|
23
|
+
DOM_RENDERER: () => DOM_RENDERER,
|
|
24
|
+
DOM_STASH: () => DOM_STASH,
|
|
25
|
+
PERMALINK: () => PERMALINK
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(constants_exports);
|
|
28
|
+
const DOM_RENDERER = /* @__PURE__ */ Symbol("RENDERER");
|
|
29
|
+
const DOM_ERROR_HANDLER = /* @__PURE__ */ Symbol("ERROR_HANDLER");
|
|
30
|
+
const DOM_STASH = /* @__PURE__ */ Symbol("STASH");
|
|
31
|
+
const DOM_INTERNAL_TAG = /* @__PURE__ */ Symbol("INTERNAL");
|
|
32
|
+
const DOM_MEMO = /* @__PURE__ */ Symbol("MEMO");
|
|
33
|
+
const PERMALINK = /* @__PURE__ */ Symbol("PERMALINK");
|
|
34
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
35
|
+
0 && (module.exports = {
|
|
36
|
+
DOM_ERROR_HANDLER,
|
|
37
|
+
DOM_INTERNAL_TAG,
|
|
38
|
+
DOM_MEMO,
|
|
39
|
+
DOM_RENDERER,
|
|
40
|
+
DOM_STASH,
|
|
41
|
+
PERMALINK
|
|
42
|
+
});
|