@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,328 @@
|
|
|
1
|
+
// src/jsx/hooks/index.ts
|
|
2
|
+
import { DOM_STASH } from "../constants.js";
|
|
3
|
+
import { buildDataStack, update } from "../dom/render.js";
|
|
4
|
+
var STASH_SATE = 0;
|
|
5
|
+
var STASH_EFFECT = 1;
|
|
6
|
+
var STASH_CALLBACK = 2;
|
|
7
|
+
var STASH_MEMO = 3;
|
|
8
|
+
var STASH_REF = 4;
|
|
9
|
+
var resolvedPromiseValueMap = /* @__PURE__ */ new WeakMap();
|
|
10
|
+
var isDepsChanged = (prevDeps, deps) => !prevDeps || !deps || prevDeps.length !== deps.length || deps.some((dep, i) => dep !== prevDeps[i]);
|
|
11
|
+
var viewTransitionState = void 0;
|
|
12
|
+
var documentStartViewTransition = (cb) => {
|
|
13
|
+
if (document?.startViewTransition) {
|
|
14
|
+
return document.startViewTransition(cb);
|
|
15
|
+
} else {
|
|
16
|
+
cb();
|
|
17
|
+
return { finished: Promise.resolve() };
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
var updateHook = void 0;
|
|
21
|
+
var viewTransitionHook = (context, node, cb) => {
|
|
22
|
+
const state = [true, false];
|
|
23
|
+
let lastVC = node.vC;
|
|
24
|
+
return documentStartViewTransition(() => {
|
|
25
|
+
if (lastVC === node.vC) {
|
|
26
|
+
viewTransitionState = state;
|
|
27
|
+
cb(context);
|
|
28
|
+
viewTransitionState = void 0;
|
|
29
|
+
lastVC = node.vC;
|
|
30
|
+
}
|
|
31
|
+
}).finished.then(() => {
|
|
32
|
+
if (state[1] && lastVC === node.vC) {
|
|
33
|
+
state[0] = false;
|
|
34
|
+
viewTransitionState = state;
|
|
35
|
+
cb(context);
|
|
36
|
+
viewTransitionState = void 0;
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
var startViewTransition = (callback) => {
|
|
41
|
+
updateHook = viewTransitionHook;
|
|
42
|
+
try {
|
|
43
|
+
callback();
|
|
44
|
+
} finally {
|
|
45
|
+
updateHook = void 0;
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
var useViewTransition = () => {
|
|
49
|
+
const buildData = buildDataStack.at(-1);
|
|
50
|
+
if (!buildData) {
|
|
51
|
+
return [false, () => {
|
|
52
|
+
}];
|
|
53
|
+
}
|
|
54
|
+
if (viewTransitionState) {
|
|
55
|
+
viewTransitionState[1] = true;
|
|
56
|
+
}
|
|
57
|
+
return [!!viewTransitionState?.[0], startViewTransition];
|
|
58
|
+
};
|
|
59
|
+
var pendingStack = [];
|
|
60
|
+
var runCallback = (type, callback) => {
|
|
61
|
+
let resolve;
|
|
62
|
+
const promise = new Promise((r) => resolve = r);
|
|
63
|
+
pendingStack.push([type, promise]);
|
|
64
|
+
try {
|
|
65
|
+
const res = callback();
|
|
66
|
+
if (res instanceof Promise) {
|
|
67
|
+
res.then(resolve, resolve);
|
|
68
|
+
} else {
|
|
69
|
+
resolve();
|
|
70
|
+
}
|
|
71
|
+
} finally {
|
|
72
|
+
pendingStack.pop();
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
var startTransition = (callback) => {
|
|
76
|
+
runCallback(1, callback);
|
|
77
|
+
};
|
|
78
|
+
var startTransitionHook = (callback) => {
|
|
79
|
+
runCallback(2, callback);
|
|
80
|
+
};
|
|
81
|
+
var useTransition = () => {
|
|
82
|
+
const buildData = buildDataStack.at(-1);
|
|
83
|
+
if (!buildData) {
|
|
84
|
+
return [false, () => {
|
|
85
|
+
}];
|
|
86
|
+
}
|
|
87
|
+
const [error, setError] = useState();
|
|
88
|
+
const [state, updateState] = useState();
|
|
89
|
+
if (error) {
|
|
90
|
+
throw error[0];
|
|
91
|
+
}
|
|
92
|
+
const startTransitionLocalHook = useCallback(
|
|
93
|
+
(callback) => {
|
|
94
|
+
startTransitionHook(() => {
|
|
95
|
+
updateState((state2) => !state2);
|
|
96
|
+
let res = callback();
|
|
97
|
+
if (res instanceof Promise) {
|
|
98
|
+
res = res.catch((e) => {
|
|
99
|
+
setError([e]);
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
return res;
|
|
103
|
+
});
|
|
104
|
+
},
|
|
105
|
+
[state]
|
|
106
|
+
);
|
|
107
|
+
const [context] = buildData;
|
|
108
|
+
return [context[0] === 2, startTransitionLocalHook];
|
|
109
|
+
};
|
|
110
|
+
var useDeferredValue = (value, ...rest) => {
|
|
111
|
+
const [values, setValues] = useState(
|
|
112
|
+
rest.length ? [rest[0], rest[0]] : [value, value]
|
|
113
|
+
);
|
|
114
|
+
if (Object.is(values[1], value)) {
|
|
115
|
+
return values[1];
|
|
116
|
+
}
|
|
117
|
+
pendingStack.push([3, Promise.resolve()]);
|
|
118
|
+
updateHook = async (context, _, cb) => {
|
|
119
|
+
cb(context);
|
|
120
|
+
values[0] = value;
|
|
121
|
+
};
|
|
122
|
+
setValues([values[0], value]);
|
|
123
|
+
updateHook = void 0;
|
|
124
|
+
pendingStack.pop();
|
|
125
|
+
return values[0];
|
|
126
|
+
};
|
|
127
|
+
var useState = (initialState) => {
|
|
128
|
+
const resolveInitialState = () => typeof initialState === "function" ? initialState() : initialState;
|
|
129
|
+
const buildData = buildDataStack.at(-1);
|
|
130
|
+
if (!buildData) {
|
|
131
|
+
return [resolveInitialState(), () => {
|
|
132
|
+
}];
|
|
133
|
+
}
|
|
134
|
+
const [, node] = buildData;
|
|
135
|
+
const stateArray = node[DOM_STASH][1][STASH_SATE] ||= [];
|
|
136
|
+
const hookIndex = node[DOM_STASH][0]++;
|
|
137
|
+
return stateArray[hookIndex] ||= [
|
|
138
|
+
resolveInitialState(),
|
|
139
|
+
(newState) => {
|
|
140
|
+
const localUpdateHook = updateHook;
|
|
141
|
+
const stateData = stateArray[hookIndex];
|
|
142
|
+
if (typeof newState === "function") {
|
|
143
|
+
newState = newState(stateData[0]);
|
|
144
|
+
}
|
|
145
|
+
if (!Object.is(newState, stateData[0])) {
|
|
146
|
+
stateData[0] = newState;
|
|
147
|
+
if (pendingStack.length) {
|
|
148
|
+
const [pendingType, pendingPromise] = pendingStack.at(-1);
|
|
149
|
+
Promise.all([
|
|
150
|
+
pendingType === 3 ? node : update([pendingType, false, localUpdateHook], node),
|
|
151
|
+
pendingPromise
|
|
152
|
+
]).then(([node2]) => {
|
|
153
|
+
if (!node2 || !(pendingType === 2 || pendingType === 3)) {
|
|
154
|
+
return;
|
|
155
|
+
}
|
|
156
|
+
const lastVC = node2.vC;
|
|
157
|
+
const addUpdateTask = () => {
|
|
158
|
+
setTimeout(() => {
|
|
159
|
+
if (lastVC !== node2.vC) {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
update([pendingType === 3 ? 1 : 0, false, localUpdateHook], node2);
|
|
163
|
+
});
|
|
164
|
+
};
|
|
165
|
+
requestAnimationFrame(addUpdateTask);
|
|
166
|
+
});
|
|
167
|
+
} else {
|
|
168
|
+
update([0, false, localUpdateHook], node);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
];
|
|
173
|
+
};
|
|
174
|
+
var useReducer = (reducer, initialArg, init) => {
|
|
175
|
+
const handler = useCallback(
|
|
176
|
+
(action) => {
|
|
177
|
+
setState((state2) => reducer(state2, action));
|
|
178
|
+
},
|
|
179
|
+
[reducer]
|
|
180
|
+
);
|
|
181
|
+
const [state, setState] = useState(() => init ? init(initialArg) : initialArg);
|
|
182
|
+
return [state, handler];
|
|
183
|
+
};
|
|
184
|
+
var useEffectCommon = (index, effect, deps) => {
|
|
185
|
+
const buildData = buildDataStack.at(-1);
|
|
186
|
+
if (!buildData) {
|
|
187
|
+
return;
|
|
188
|
+
}
|
|
189
|
+
const [, node] = buildData;
|
|
190
|
+
const effectDepsArray = node[DOM_STASH][1][STASH_EFFECT] ||= [];
|
|
191
|
+
const hookIndex = node[DOM_STASH][0]++;
|
|
192
|
+
const [prevDeps, , prevCleanup] = effectDepsArray[hookIndex] ||= [];
|
|
193
|
+
if (isDepsChanged(prevDeps, deps)) {
|
|
194
|
+
if (prevCleanup) {
|
|
195
|
+
prevCleanup();
|
|
196
|
+
}
|
|
197
|
+
const runner = () => {
|
|
198
|
+
data[index] = void 0;
|
|
199
|
+
data[2] = effect();
|
|
200
|
+
};
|
|
201
|
+
const data = [deps, void 0, void 0, void 0, void 0];
|
|
202
|
+
data[index] = runner;
|
|
203
|
+
effectDepsArray[hookIndex] = data;
|
|
204
|
+
}
|
|
205
|
+
};
|
|
206
|
+
var useEffect = (effect, deps) => useEffectCommon(3, effect, deps);
|
|
207
|
+
var useLayoutEffect = (effect, deps) => useEffectCommon(1, effect, deps);
|
|
208
|
+
var useInsertionEffect = (effect, deps) => useEffectCommon(4, effect, deps);
|
|
209
|
+
var useCallback = (callback, deps) => {
|
|
210
|
+
const buildData = buildDataStack.at(-1);
|
|
211
|
+
if (!buildData) {
|
|
212
|
+
return callback;
|
|
213
|
+
}
|
|
214
|
+
const [, node] = buildData;
|
|
215
|
+
const callbackArray = node[DOM_STASH][1][STASH_CALLBACK] ||= [];
|
|
216
|
+
const hookIndex = node[DOM_STASH][0]++;
|
|
217
|
+
const prevDeps = callbackArray[hookIndex];
|
|
218
|
+
if (isDepsChanged(prevDeps?.[1], deps)) {
|
|
219
|
+
callbackArray[hookIndex] = [callback, deps];
|
|
220
|
+
} else {
|
|
221
|
+
callback = callbackArray[hookIndex][0];
|
|
222
|
+
}
|
|
223
|
+
return callback;
|
|
224
|
+
};
|
|
225
|
+
var useRef = (initialValue) => {
|
|
226
|
+
const buildData = buildDataStack.at(-1);
|
|
227
|
+
if (!buildData) {
|
|
228
|
+
return { current: initialValue };
|
|
229
|
+
}
|
|
230
|
+
const [, node] = buildData;
|
|
231
|
+
const refArray = node[DOM_STASH][1][STASH_REF] ||= [];
|
|
232
|
+
const hookIndex = node[DOM_STASH][0]++;
|
|
233
|
+
return refArray[hookIndex] ||= { current: initialValue };
|
|
234
|
+
};
|
|
235
|
+
var use = (promise) => {
|
|
236
|
+
const cachedRes = resolvedPromiseValueMap.get(promise);
|
|
237
|
+
if (cachedRes) {
|
|
238
|
+
if (cachedRes.length === 2) {
|
|
239
|
+
throw cachedRes[1];
|
|
240
|
+
}
|
|
241
|
+
return cachedRes[0];
|
|
242
|
+
}
|
|
243
|
+
promise.then(
|
|
244
|
+
(res) => resolvedPromiseValueMap.set(promise, [res]),
|
|
245
|
+
(e) => resolvedPromiseValueMap.set(promise, [void 0, e])
|
|
246
|
+
);
|
|
247
|
+
throw promise;
|
|
248
|
+
};
|
|
249
|
+
var useMemo = (factory, deps) => {
|
|
250
|
+
const buildData = buildDataStack.at(-1);
|
|
251
|
+
if (!buildData) {
|
|
252
|
+
return factory();
|
|
253
|
+
}
|
|
254
|
+
const [, node] = buildData;
|
|
255
|
+
const memoArray = node[DOM_STASH][1][STASH_MEMO] ||= [];
|
|
256
|
+
const hookIndex = node[DOM_STASH][0]++;
|
|
257
|
+
const prevDeps = memoArray[hookIndex];
|
|
258
|
+
if (isDepsChanged(prevDeps?.[1], deps)) {
|
|
259
|
+
memoArray[hookIndex] = [factory(), deps];
|
|
260
|
+
}
|
|
261
|
+
return memoArray[hookIndex][0];
|
|
262
|
+
};
|
|
263
|
+
var idCounter = 0;
|
|
264
|
+
var useId = () => useMemo(() => `:r${(idCounter++).toString(32)}:`, []);
|
|
265
|
+
var useDebugValue = (_value, _formatter) => {
|
|
266
|
+
};
|
|
267
|
+
var createRef = () => {
|
|
268
|
+
return { current: null };
|
|
269
|
+
};
|
|
270
|
+
var forwardRef = (Component) => {
|
|
271
|
+
return (props) => {
|
|
272
|
+
const { ref, ...rest } = props;
|
|
273
|
+
return Component(rest, ref);
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
var useImperativeHandle = (ref, createHandle, deps) => {
|
|
277
|
+
useEffect(() => {
|
|
278
|
+
ref.current = createHandle();
|
|
279
|
+
return () => {
|
|
280
|
+
ref.current = null;
|
|
281
|
+
};
|
|
282
|
+
}, deps);
|
|
283
|
+
};
|
|
284
|
+
var useSyncExternalStore = (subscribe, getSnapshot, getServerSnapshot) => {
|
|
285
|
+
const buildData = buildDataStack.at(-1);
|
|
286
|
+
if (!buildData) {
|
|
287
|
+
if (!getServerSnapshot) {
|
|
288
|
+
throw new Error("getServerSnapshot is required for server side rendering");
|
|
289
|
+
}
|
|
290
|
+
return getServerSnapshot();
|
|
291
|
+
}
|
|
292
|
+
const [serverSnapshotIsUsed] = useState(!!(buildData[0][4] && getServerSnapshot));
|
|
293
|
+
const [state, setState] = useState(
|
|
294
|
+
() => serverSnapshotIsUsed ? getServerSnapshot() : getSnapshot()
|
|
295
|
+
);
|
|
296
|
+
useEffect(() => {
|
|
297
|
+
if (serverSnapshotIsUsed) {
|
|
298
|
+
setState(getSnapshot());
|
|
299
|
+
}
|
|
300
|
+
return subscribe(() => {
|
|
301
|
+
setState(getSnapshot());
|
|
302
|
+
});
|
|
303
|
+
}, []);
|
|
304
|
+
return state;
|
|
305
|
+
};
|
|
306
|
+
export {
|
|
307
|
+
STASH_EFFECT,
|
|
308
|
+
createRef,
|
|
309
|
+
forwardRef,
|
|
310
|
+
startTransition,
|
|
311
|
+
startViewTransition,
|
|
312
|
+
use,
|
|
313
|
+
useCallback,
|
|
314
|
+
useDebugValue,
|
|
315
|
+
useDeferredValue,
|
|
316
|
+
useEffect,
|
|
317
|
+
useId,
|
|
318
|
+
useImperativeHandle,
|
|
319
|
+
useInsertionEffect,
|
|
320
|
+
useLayoutEffect,
|
|
321
|
+
useMemo,
|
|
322
|
+
useReducer,
|
|
323
|
+
useRef,
|
|
324
|
+
useState,
|
|
325
|
+
useSyncExternalStore,
|
|
326
|
+
useTransition,
|
|
327
|
+
useViewTransition
|
|
328
|
+
};
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
// src/jsx/index.ts
|
|
2
|
+
import { Fragment, cloneElement, isValidElement, jsx, memo, reactAPICompatVersion } from "./base.js";
|
|
3
|
+
import { Children } from "./children.js";
|
|
4
|
+
import { ErrorBoundary } from "./components.js";
|
|
5
|
+
import { createContext, useContext } from "./context.js";
|
|
6
|
+
import { useActionState, useOptimistic } from "./dom/hooks/index.js";
|
|
7
|
+
import {
|
|
8
|
+
createRef,
|
|
9
|
+
forwardRef,
|
|
10
|
+
startTransition,
|
|
11
|
+
startViewTransition,
|
|
12
|
+
use,
|
|
13
|
+
useCallback,
|
|
14
|
+
useDebugValue,
|
|
15
|
+
useDeferredValue,
|
|
16
|
+
useEffect,
|
|
17
|
+
useId,
|
|
18
|
+
useImperativeHandle,
|
|
19
|
+
useInsertionEffect,
|
|
20
|
+
useLayoutEffect,
|
|
21
|
+
useMemo,
|
|
22
|
+
useReducer,
|
|
23
|
+
useRef,
|
|
24
|
+
useState,
|
|
25
|
+
useSyncExternalStore,
|
|
26
|
+
useTransition,
|
|
27
|
+
useViewTransition
|
|
28
|
+
} from "./hooks/index.js";
|
|
29
|
+
import { Suspense } from "./streaming.js";
|
|
30
|
+
var jsx_default = {
|
|
31
|
+
version: reactAPICompatVersion,
|
|
32
|
+
memo,
|
|
33
|
+
Fragment,
|
|
34
|
+
StrictMode: Fragment,
|
|
35
|
+
isValidElement,
|
|
36
|
+
createElement: jsx,
|
|
37
|
+
cloneElement,
|
|
38
|
+
ErrorBoundary,
|
|
39
|
+
createContext,
|
|
40
|
+
useContext,
|
|
41
|
+
useState,
|
|
42
|
+
useEffect,
|
|
43
|
+
useRef,
|
|
44
|
+
useCallback,
|
|
45
|
+
useReducer,
|
|
46
|
+
useId,
|
|
47
|
+
useDebugValue,
|
|
48
|
+
use,
|
|
49
|
+
startTransition,
|
|
50
|
+
useTransition,
|
|
51
|
+
useDeferredValue,
|
|
52
|
+
startViewTransition,
|
|
53
|
+
useViewTransition,
|
|
54
|
+
useMemo,
|
|
55
|
+
useLayoutEffect,
|
|
56
|
+
useInsertionEffect,
|
|
57
|
+
createRef,
|
|
58
|
+
forwardRef,
|
|
59
|
+
useImperativeHandle,
|
|
60
|
+
useSyncExternalStore,
|
|
61
|
+
useActionState,
|
|
62
|
+
useOptimistic,
|
|
63
|
+
Suspense,
|
|
64
|
+
Children
|
|
65
|
+
};
|
|
66
|
+
export {
|
|
67
|
+
Children,
|
|
68
|
+
ErrorBoundary,
|
|
69
|
+
Fragment,
|
|
70
|
+
Fragment as StrictMode,
|
|
71
|
+
Suspense,
|
|
72
|
+
cloneElement,
|
|
73
|
+
createContext,
|
|
74
|
+
jsx as createElement,
|
|
75
|
+
createRef,
|
|
76
|
+
jsx_default as default,
|
|
77
|
+
forwardRef,
|
|
78
|
+
isValidElement,
|
|
79
|
+
jsx,
|
|
80
|
+
memo,
|
|
81
|
+
startTransition,
|
|
82
|
+
startViewTransition,
|
|
83
|
+
use,
|
|
84
|
+
useActionState,
|
|
85
|
+
useCallback,
|
|
86
|
+
useContext,
|
|
87
|
+
useDebugValue,
|
|
88
|
+
useDeferredValue,
|
|
89
|
+
useEffect,
|
|
90
|
+
useId,
|
|
91
|
+
useImperativeHandle,
|
|
92
|
+
useInsertionEffect,
|
|
93
|
+
useLayoutEffect,
|
|
94
|
+
useMemo,
|
|
95
|
+
useOptimistic,
|
|
96
|
+
useReducer,
|
|
97
|
+
useRef,
|
|
98
|
+
useState,
|
|
99
|
+
useSyncExternalStore,
|
|
100
|
+
useTransition,
|
|
101
|
+
useViewTransition,
|
|
102
|
+
reactAPICompatVersion as version
|
|
103
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// src/jsx/intrinsic-element/common.ts
|
|
2
|
+
var deDupeKeyMap = {
|
|
3
|
+
title: [],
|
|
4
|
+
script: ["src"],
|
|
5
|
+
style: ["data-href"],
|
|
6
|
+
link: ["href"],
|
|
7
|
+
meta: ["name", "httpEquiv", "charset", "itemProp"]
|
|
8
|
+
};
|
|
9
|
+
var domRenderers = {};
|
|
10
|
+
var dataPrecedenceAttr = "data-precedence";
|
|
11
|
+
var isStylesheetLinkWithPrecedence = (props) => props.rel === "stylesheet" && "precedence" in props;
|
|
12
|
+
var shouldDeDupeByKey = (tagName, supportSort) => {
|
|
13
|
+
if (tagName === "link") {
|
|
14
|
+
return supportSort;
|
|
15
|
+
}
|
|
16
|
+
return deDupeKeyMap[tagName].length > 0;
|
|
17
|
+
};
|
|
18
|
+
export {
|
|
19
|
+
dataPrecedenceAttr,
|
|
20
|
+
deDupeKeyMap,
|
|
21
|
+
domRenderers,
|
|
22
|
+
isStylesheetLinkWithPrecedence,
|
|
23
|
+
shouldDeDupeByKey
|
|
24
|
+
};
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
// src/jsx/intrinsic-element/components.ts
|
|
2
|
+
import { raw } from "../../helper/html/index.js";
|
|
3
|
+
import { JSXNode, getNameSpaceContext } from "../base.js";
|
|
4
|
+
import { toArray } from "../children.js";
|
|
5
|
+
import { PERMALINK } from "../constants.js";
|
|
6
|
+
import { useContext } from "../context.js";
|
|
7
|
+
import {
|
|
8
|
+
dataPrecedenceAttr,
|
|
9
|
+
deDupeKeyMap,
|
|
10
|
+
isStylesheetLinkWithPrecedence,
|
|
11
|
+
shouldDeDupeByKey
|
|
12
|
+
} from "./common.js";
|
|
13
|
+
var metaTagMap = /* @__PURE__ */ new WeakMap();
|
|
14
|
+
var insertIntoHead = (tagName, tag, props, precedence) => ({ buffer, context }) => {
|
|
15
|
+
if (!buffer) {
|
|
16
|
+
return;
|
|
17
|
+
}
|
|
18
|
+
const map = metaTagMap.get(context) || {};
|
|
19
|
+
metaTagMap.set(context, map);
|
|
20
|
+
const tags = map[tagName] ||= [];
|
|
21
|
+
let duped = false;
|
|
22
|
+
const deDupeKeys = deDupeKeyMap[tagName];
|
|
23
|
+
const deDupeByKey = shouldDeDupeByKey(tagName, precedence !== void 0);
|
|
24
|
+
if (deDupeByKey) {
|
|
25
|
+
LOOP: for (const [, tagProps] of tags) {
|
|
26
|
+
if (tagName === "link" && !(tagProps.rel === "stylesheet" && tagProps[dataPrecedenceAttr] !== void 0)) {
|
|
27
|
+
continue;
|
|
28
|
+
}
|
|
29
|
+
for (const key of deDupeKeys) {
|
|
30
|
+
if ((tagProps?.[key] ?? null) === props?.[key]) {
|
|
31
|
+
duped = true;
|
|
32
|
+
break LOOP;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
if (duped) {
|
|
38
|
+
buffer[0] = buffer[0].replaceAll(tag, "");
|
|
39
|
+
} else if (deDupeByKey || tagName === "link") {
|
|
40
|
+
tags.push([tag, props, precedence]);
|
|
41
|
+
} else {
|
|
42
|
+
tags.unshift([tag, props, precedence]);
|
|
43
|
+
}
|
|
44
|
+
if (buffer[0].indexOf("</head>") !== -1) {
|
|
45
|
+
let insertTags;
|
|
46
|
+
if (tagName === "link" || precedence !== void 0) {
|
|
47
|
+
const precedences = [];
|
|
48
|
+
insertTags = tags.map(([tag2, , tagPrecedence], index) => {
|
|
49
|
+
if (tagPrecedence === void 0) {
|
|
50
|
+
return [tag2, Number.MAX_SAFE_INTEGER, index];
|
|
51
|
+
}
|
|
52
|
+
let order = precedences.indexOf(tagPrecedence);
|
|
53
|
+
if (order === -1) {
|
|
54
|
+
precedences.push(tagPrecedence);
|
|
55
|
+
order = precedences.length - 1;
|
|
56
|
+
}
|
|
57
|
+
return [tag2, order, index];
|
|
58
|
+
}).sort((a, b) => a[1] - b[1] || a[2] - b[2]).map(([tag2]) => tag2);
|
|
59
|
+
} else {
|
|
60
|
+
insertTags = tags.map(([tag2]) => tag2);
|
|
61
|
+
}
|
|
62
|
+
insertTags.forEach((tag2) => {
|
|
63
|
+
buffer[0] = buffer[0].replaceAll(tag2, "");
|
|
64
|
+
});
|
|
65
|
+
buffer[0] = buffer[0].replace(/(?=<\/head>)/, insertTags.join(""));
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
var returnWithoutSpecialBehavior = (tag, children, props) => raw(new JSXNode(tag, props, toArray(children ?? [])).toString());
|
|
69
|
+
var documentMetadataTag = (tag, children, props, sort) => {
|
|
70
|
+
if ("itemProp" in props) {
|
|
71
|
+
return returnWithoutSpecialBehavior(tag, children, props);
|
|
72
|
+
}
|
|
73
|
+
let { precedence, blocking, ...restProps } = props;
|
|
74
|
+
precedence = sort ? precedence ?? "" : void 0;
|
|
75
|
+
if (sort) {
|
|
76
|
+
restProps[dataPrecedenceAttr] = precedence;
|
|
77
|
+
}
|
|
78
|
+
const string = new JSXNode(tag, restProps, toArray(children || [])).toString();
|
|
79
|
+
if (string instanceof Promise) {
|
|
80
|
+
return string.then(
|
|
81
|
+
(resString) => raw(string, [
|
|
82
|
+
...resString.callbacks || [],
|
|
83
|
+
insertIntoHead(tag, resString, restProps, precedence)
|
|
84
|
+
])
|
|
85
|
+
);
|
|
86
|
+
} else {
|
|
87
|
+
return raw(string, [insertIntoHead(tag, string, restProps, precedence)]);
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
var title = ({ children, ...props }) => {
|
|
91
|
+
const nameSpaceContext = getNameSpaceContext();
|
|
92
|
+
if (nameSpaceContext) {
|
|
93
|
+
const context = useContext(nameSpaceContext);
|
|
94
|
+
if (context === "svg" || context === "head") {
|
|
95
|
+
return new JSXNode(
|
|
96
|
+
"title",
|
|
97
|
+
props,
|
|
98
|
+
toArray(children ?? [])
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return documentMetadataTag("title", children, props, false);
|
|
103
|
+
};
|
|
104
|
+
var script = ({
|
|
105
|
+
children,
|
|
106
|
+
...props
|
|
107
|
+
}) => {
|
|
108
|
+
const nameSpaceContext = getNameSpaceContext();
|
|
109
|
+
if (["src", "async"].some((k) => !props[k]) || nameSpaceContext && useContext(nameSpaceContext) === "head") {
|
|
110
|
+
return returnWithoutSpecialBehavior("script", children, props);
|
|
111
|
+
}
|
|
112
|
+
return documentMetadataTag("script", children, props, false);
|
|
113
|
+
};
|
|
114
|
+
var style = ({
|
|
115
|
+
children,
|
|
116
|
+
...props
|
|
117
|
+
}) => {
|
|
118
|
+
if (!["href", "precedence"].every((k) => k in props)) {
|
|
119
|
+
return returnWithoutSpecialBehavior("style", children, props);
|
|
120
|
+
}
|
|
121
|
+
props["data-href"] = props.href;
|
|
122
|
+
delete props.href;
|
|
123
|
+
return documentMetadataTag("style", children, props, true);
|
|
124
|
+
};
|
|
125
|
+
var link = ({ children, ...props }) => {
|
|
126
|
+
if (["onLoad", "onError"].some((k) => k in props) || props.rel === "stylesheet" && (!("precedence" in props) || "disabled" in props)) {
|
|
127
|
+
return returnWithoutSpecialBehavior("link", children, props);
|
|
128
|
+
}
|
|
129
|
+
return documentMetadataTag("link", children, props, isStylesheetLinkWithPrecedence(props));
|
|
130
|
+
};
|
|
131
|
+
var meta = ({ children, ...props }) => {
|
|
132
|
+
const nameSpaceContext = getNameSpaceContext();
|
|
133
|
+
if (nameSpaceContext && useContext(nameSpaceContext) === "head") {
|
|
134
|
+
return returnWithoutSpecialBehavior("meta", children, props);
|
|
135
|
+
}
|
|
136
|
+
return documentMetadataTag("meta", children, props, false);
|
|
137
|
+
};
|
|
138
|
+
var newJSXNode = (tag, { children, ...props }) => (
|
|
139
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
140
|
+
new JSXNode(tag, props, toArray(children ?? []))
|
|
141
|
+
);
|
|
142
|
+
var form = (props) => {
|
|
143
|
+
if (typeof props.action === "function") {
|
|
144
|
+
props.action = PERMALINK in props.action ? props.action[PERMALINK] : void 0;
|
|
145
|
+
}
|
|
146
|
+
return newJSXNode("form", props);
|
|
147
|
+
};
|
|
148
|
+
var formActionableElement = (tag, props) => {
|
|
149
|
+
if (typeof props.formAction === "function") {
|
|
150
|
+
props.formAction = PERMALINK in props.formAction ? props.formAction[PERMALINK] : void 0;
|
|
151
|
+
}
|
|
152
|
+
return newJSXNode(tag, props);
|
|
153
|
+
};
|
|
154
|
+
var input = (props) => formActionableElement("input", props);
|
|
155
|
+
var button = (props) => formActionableElement("button", props);
|
|
156
|
+
export {
|
|
157
|
+
button,
|
|
158
|
+
form,
|
|
159
|
+
input,
|
|
160
|
+
link,
|
|
161
|
+
meta,
|
|
162
|
+
script,
|
|
163
|
+
style,
|
|
164
|
+
title
|
|
165
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/jsx/jsx-dev-runtime.ts
|
|
2
|
+
import { jsxFn } from "./base.js";
|
|
3
|
+
import { Fragment } from "./base.js";
|
|
4
|
+
function jsxDEV(tag, props, key) {
|
|
5
|
+
let node;
|
|
6
|
+
if (!props || !("children" in props)) {
|
|
7
|
+
node = jsxFn(tag, props, []);
|
|
8
|
+
} else {
|
|
9
|
+
const children = props.children;
|
|
10
|
+
node = Array.isArray(children) ? jsxFn(tag, props, children) : jsxFn(tag, props, [children]);
|
|
11
|
+
}
|
|
12
|
+
node.key = key;
|
|
13
|
+
return node;
|
|
14
|
+
}
|
|
15
|
+
export {
|
|
16
|
+
Fragment,
|
|
17
|
+
jsxDEV
|
|
18
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// src/jsx/jsx-runtime.ts
|
|
2
|
+
import { jsxDEV, Fragment } from "./jsx-dev-runtime.js";
|
|
3
|
+
import { jsxDEV as jsxDEV2 } from "./jsx-dev-runtime.js";
|
|
4
|
+
import { html, raw } from "../helper/html/index.js";
|
|
5
|
+
import { escapeToBuffer, stringBufferToString } from "../utils/html.js";
|
|
6
|
+
import { isValidAttributeName, styleObjectForEach } from "./utils.js";
|
|
7
|
+
var jsxAttr = (key, v) => {
|
|
8
|
+
if (!isValidAttributeName(key)) {
|
|
9
|
+
return raw("");
|
|
10
|
+
}
|
|
11
|
+
const buffer = [`${key}="`];
|
|
12
|
+
if (key === "style" && typeof v === "object") {
|
|
13
|
+
let styleStr = "";
|
|
14
|
+
styleObjectForEach(v, (property, value) => {
|
|
15
|
+
if (value != null) {
|
|
16
|
+
styleStr += `${styleStr ? ";" : ""}${property}:${value}`;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
escapeToBuffer(styleStr, buffer);
|
|
20
|
+
buffer[0] += '"';
|
|
21
|
+
} else if (typeof v === "string") {
|
|
22
|
+
escapeToBuffer(v, buffer);
|
|
23
|
+
buffer[0] += '"';
|
|
24
|
+
} else if (v === null || v === void 0) {
|
|
25
|
+
return raw("");
|
|
26
|
+
} else if (typeof v === "number" || v.isEscaped) {
|
|
27
|
+
buffer[0] += `${v}"`;
|
|
28
|
+
} else if (v instanceof Promise) {
|
|
29
|
+
buffer.unshift('"', v);
|
|
30
|
+
} else {
|
|
31
|
+
escapeToBuffer(v.toString(), buffer);
|
|
32
|
+
buffer[0] += '"';
|
|
33
|
+
}
|
|
34
|
+
return buffer.length === 1 ? raw(buffer[0]) : stringBufferToString(buffer, void 0);
|
|
35
|
+
};
|
|
36
|
+
var jsxEscape = (value) => value;
|
|
37
|
+
export {
|
|
38
|
+
Fragment,
|
|
39
|
+
jsxDEV as jsx,
|
|
40
|
+
jsxAttr,
|
|
41
|
+
jsxEscape,
|
|
42
|
+
html as jsxTemplate,
|
|
43
|
+
jsxDEV2 as jsxs
|
|
44
|
+
};
|