@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,722 @@
|
|
|
1
|
+
import type { BaseMime } from '../utils/mime';
|
|
2
|
+
import type { StringLiteralUnion } from '../utils/types';
|
|
3
|
+
/**
|
|
4
|
+
* This code is based on React.
|
|
5
|
+
* https://github.com/facebook/react
|
|
6
|
+
* MIT License
|
|
7
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
8
|
+
*/
|
|
9
|
+
export declare namespace JSX {
|
|
10
|
+
export type CrossOrigin = 'anonymous' | 'use-credentials' | '' | undefined;
|
|
11
|
+
export interface CSSProperties {
|
|
12
|
+
[propertyKey: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
type AnyAttributes = {
|
|
15
|
+
[attributeName: string]: any;
|
|
16
|
+
};
|
|
17
|
+
interface JSXAttributes {
|
|
18
|
+
dangerouslySetInnerHTML?: {
|
|
19
|
+
__html: string;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
interface EventAttributes {
|
|
23
|
+
onScroll?: (event: Event) => void;
|
|
24
|
+
onScrollCapture?: (event: Event) => void;
|
|
25
|
+
onScrollEnd?: (event: Event) => void;
|
|
26
|
+
onScrollEndCapture?: (event: Event) => void;
|
|
27
|
+
onWheel?: (event: WheelEvent) => void;
|
|
28
|
+
onWheelCapture?: (event: WheelEvent) => void;
|
|
29
|
+
onAnimationCancel?: (event: AnimationEvent) => void;
|
|
30
|
+
onAnimationCancelCapture?: (event: AnimationEvent) => void;
|
|
31
|
+
onAnimationEnd?: (event: AnimationEvent) => void;
|
|
32
|
+
onAnimationEndCapture?: (event: AnimationEvent) => void;
|
|
33
|
+
onAnimationIteration?: (event: AnimationEvent) => void;
|
|
34
|
+
onAnimationIterationCapture?: (event: AnimationEvent) => void;
|
|
35
|
+
onAnimationStart?: (event: AnimationEvent) => void;
|
|
36
|
+
onAnimationStartCapture?: (event: AnimationEvent) => void;
|
|
37
|
+
onCopy?: (event: ClipboardEvent) => void;
|
|
38
|
+
onCopyCapture?: (event: ClipboardEvent) => void;
|
|
39
|
+
onCut?: (event: ClipboardEvent) => void;
|
|
40
|
+
onCutCapture?: (event: ClipboardEvent) => void;
|
|
41
|
+
onPaste?: (event: ClipboardEvent) => void;
|
|
42
|
+
onPasteCapture?: (event: ClipboardEvent) => void;
|
|
43
|
+
onCompositionEnd?: (event: CompositionEvent) => void;
|
|
44
|
+
onCompositionEndCapture?: (event: CompositionEvent) => void;
|
|
45
|
+
onCompositionStart?: (event: CompositionEvent) => void;
|
|
46
|
+
onCompositionStartCapture?: (event: CompositionEvent) => void;
|
|
47
|
+
onCompositionUpdate?: (event: CompositionEvent) => void;
|
|
48
|
+
onCompositionUpdateCapture?: (event: CompositionEvent) => void;
|
|
49
|
+
onBlur?: (event: FocusEvent) => void;
|
|
50
|
+
onBlurCapture?: (event: FocusEvent) => void;
|
|
51
|
+
onFocus?: (event: FocusEvent) => void;
|
|
52
|
+
onFocusCapture?: (event: FocusEvent) => void;
|
|
53
|
+
onFocusIn?: (event: FocusEvent) => void;
|
|
54
|
+
onFocusInCapture?: (event: FocusEvent) => void;
|
|
55
|
+
onFocusOut?: (event: FocusEvent) => void;
|
|
56
|
+
onFocusOutCapture?: (event: FocusEvent) => void;
|
|
57
|
+
onFullscreenChange?: (event: Event) => void;
|
|
58
|
+
onFullscreenChangeCapture?: (event: Event) => void;
|
|
59
|
+
onFullscreenError?: (event: Event) => void;
|
|
60
|
+
onFullscreenErrorCapture?: (event: Event) => void;
|
|
61
|
+
onKeyDown?: (event: KeyboardEvent) => void;
|
|
62
|
+
onKeyDownCapture?: (event: KeyboardEvent) => void;
|
|
63
|
+
onKeyPress?: (event: KeyboardEvent) => void;
|
|
64
|
+
onKeyPressCapture?: (event: KeyboardEvent) => void;
|
|
65
|
+
onKeyUp?: (event: KeyboardEvent) => void;
|
|
66
|
+
onKeyUpCapture?: (event: KeyboardEvent) => void;
|
|
67
|
+
onAuxClick?: (event: MouseEvent) => void;
|
|
68
|
+
onAuxClickCapture?: (event: MouseEvent) => void;
|
|
69
|
+
onClick?: (event: MouseEvent) => void;
|
|
70
|
+
onClickCapture?: (event: MouseEvent) => void;
|
|
71
|
+
onContextMenu?: (event: MouseEvent) => void;
|
|
72
|
+
onContextMenuCapture?: (event: MouseEvent) => void;
|
|
73
|
+
onDoubleClick?: (event: MouseEvent) => void;
|
|
74
|
+
onDoubleClickCapture?: (event: MouseEvent) => void;
|
|
75
|
+
onMouseDown?: (event: MouseEvent) => void;
|
|
76
|
+
onMouseDownCapture?: (event: MouseEvent) => void;
|
|
77
|
+
onMouseEnter?: (event: MouseEvent) => void;
|
|
78
|
+
onMouseEnterCapture?: (event: MouseEvent) => void;
|
|
79
|
+
onMouseLeave?: (event: MouseEvent) => void;
|
|
80
|
+
onMouseLeaveCapture?: (event: MouseEvent) => void;
|
|
81
|
+
onMouseMove?: (event: MouseEvent) => void;
|
|
82
|
+
onMouseMoveCapture?: (event: MouseEvent) => void;
|
|
83
|
+
onMouseOut?: (event: MouseEvent) => void;
|
|
84
|
+
onMouseOutCapture?: (event: MouseEvent) => void;
|
|
85
|
+
onMouseOver?: (event: MouseEvent) => void;
|
|
86
|
+
onMouseOverCapture?: (event: MouseEvent) => void;
|
|
87
|
+
onMouseUp?: (event: MouseEvent) => void;
|
|
88
|
+
onMouseUpCapture?: (event: MouseEvent) => void;
|
|
89
|
+
onMouseWheel?: (event: WheelEvent) => void;
|
|
90
|
+
onMouseWheelCapture?: (event: WheelEvent) => void;
|
|
91
|
+
onGotPointerCapture?: (event: PointerEvent) => void;
|
|
92
|
+
onGotPointerCaptureCapture?: (event: PointerEvent) => void;
|
|
93
|
+
onLostPointerCapture?: (event: PointerEvent) => void;
|
|
94
|
+
onLostPointerCaptureCapture?: (event: PointerEvent) => void;
|
|
95
|
+
onPointerCancel?: (event: PointerEvent) => void;
|
|
96
|
+
onPointerCancelCapture?: (event: PointerEvent) => void;
|
|
97
|
+
onPointerDown?: (event: PointerEvent) => void;
|
|
98
|
+
onPointerDownCapture?: (event: PointerEvent) => void;
|
|
99
|
+
onPointerEnter?: (event: PointerEvent) => void;
|
|
100
|
+
onPointerEnterCapture?: (event: PointerEvent) => void;
|
|
101
|
+
onPointerLeave?: (event: PointerEvent) => void;
|
|
102
|
+
onPointerLeaveCapture?: (event: PointerEvent) => void;
|
|
103
|
+
onPointerMove?: (event: PointerEvent) => void;
|
|
104
|
+
onPointerMoveCapture?: (event: PointerEvent) => void;
|
|
105
|
+
onPointerOut?: (event: PointerEvent) => void;
|
|
106
|
+
onPointerOutCapture?: (event: PointerEvent) => void;
|
|
107
|
+
onPointerOver?: (event: PointerEvent) => void;
|
|
108
|
+
onPointerOverCapture?: (event: PointerEvent) => void;
|
|
109
|
+
onPointerUp?: (event: PointerEvent) => void;
|
|
110
|
+
onPointerUpCapture?: (event: PointerEvent) => void;
|
|
111
|
+
onTouchCancel?: (event: TouchEvent) => void;
|
|
112
|
+
onTouchCancelCapture?: (event: TouchEvent) => void;
|
|
113
|
+
onTouchEnd?: (event: TouchEvent) => void;
|
|
114
|
+
onTouchEndCapture?: (event: TouchEvent) => void;
|
|
115
|
+
onTouchMove?: (event: TouchEvent) => void;
|
|
116
|
+
onTouchMoveCapture?: (event: TouchEvent) => void;
|
|
117
|
+
onTouchStart?: (event: TouchEvent) => void;
|
|
118
|
+
onTouchStartCapture?: (event: TouchEvent) => void;
|
|
119
|
+
onTransitionCancel?: (event: TransitionEvent) => void;
|
|
120
|
+
onTransitionCancelCapture?: (event: TransitionEvent) => void;
|
|
121
|
+
onTransitionEnd?: (event: TransitionEvent) => void;
|
|
122
|
+
onTransitionEndCapture?: (event: TransitionEvent) => void;
|
|
123
|
+
onTransitionRun?: (event: TransitionEvent) => void;
|
|
124
|
+
onTransitionRunCapture?: (event: TransitionEvent) => void;
|
|
125
|
+
onTransitionStart?: (event: TransitionEvent) => void;
|
|
126
|
+
onTransitionStartCapture?: (event: TransitionEvent) => void;
|
|
127
|
+
onFormData?: (event: FormDataEvent) => void;
|
|
128
|
+
onFormDataCapture?: (event: FormDataEvent) => void;
|
|
129
|
+
onReset?: (event: Event) => void;
|
|
130
|
+
onResetCapture?: (event: Event) => void;
|
|
131
|
+
onSubmit?: (event: Event) => void;
|
|
132
|
+
onSubmitCapture?: (event: Event) => void;
|
|
133
|
+
onInvalid?: (event: Event) => void;
|
|
134
|
+
onInvalidCapture?: (event: Event) => void;
|
|
135
|
+
onSelect?: (event: Event) => void;
|
|
136
|
+
onSelectCapture?: (event: Event) => void;
|
|
137
|
+
onSelectChange?: (event: Event) => void;
|
|
138
|
+
onSelectChangeCapture?: (event: Event) => void;
|
|
139
|
+
onInput?: (event: InputEvent) => void;
|
|
140
|
+
onInputCapture?: (event: InputEvent) => void;
|
|
141
|
+
onBeforeInput?: (event: InputEvent) => void;
|
|
142
|
+
onBeforeInputCapture?: (event: InputEvent) => void;
|
|
143
|
+
onChange?: (event: Event) => void;
|
|
144
|
+
onChangeCapture?: (event: Event) => void;
|
|
145
|
+
}
|
|
146
|
+
export interface HTMLAttributes extends JSXAttributes, EventAttributes, AnyAttributes {
|
|
147
|
+
accesskey?: string | undefined;
|
|
148
|
+
autocapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters' | undefined;
|
|
149
|
+
autofocus?: boolean | undefined;
|
|
150
|
+
class?: string | Promise<string> | undefined;
|
|
151
|
+
contenteditable?: boolean | 'inherit' | 'plaintext-only' | undefined;
|
|
152
|
+
contextmenu?: string | undefined;
|
|
153
|
+
dir?: string | undefined;
|
|
154
|
+
draggable?: 'true' | 'false' | boolean | undefined;
|
|
155
|
+
enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
|
|
156
|
+
hidden?: boolean | undefined;
|
|
157
|
+
id?: string | undefined;
|
|
158
|
+
inert?: boolean | undefined;
|
|
159
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | undefined;
|
|
160
|
+
is?: string | undefined;
|
|
161
|
+
itemid?: string | undefined;
|
|
162
|
+
itemprop?: string | undefined;
|
|
163
|
+
itemref?: string | undefined;
|
|
164
|
+
itemscope?: boolean | undefined;
|
|
165
|
+
itemtype?: string | undefined;
|
|
166
|
+
lang?: string | undefined;
|
|
167
|
+
nonce?: string | undefined;
|
|
168
|
+
placeholder?: string | undefined;
|
|
169
|
+
/** @see https://developer.mozilla.org/en-US/docs/Web/API/Popover_API */
|
|
170
|
+
popover?: boolean | 'auto' | 'manual' | undefined;
|
|
171
|
+
slot?: string | undefined;
|
|
172
|
+
spellcheck?: boolean | undefined;
|
|
173
|
+
style?: CSSProperties | string | undefined;
|
|
174
|
+
tabindex?: number | undefined;
|
|
175
|
+
title?: string | undefined;
|
|
176
|
+
translate?: 'yes' | 'no' | undefined;
|
|
177
|
+
itemProp?: string | undefined;
|
|
178
|
+
}
|
|
179
|
+
type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
|
|
180
|
+
type HTMLAttributeAnchorTarget = StringLiteralUnion<'_self' | '_blank' | '_parent' | '_top'>;
|
|
181
|
+
interface AnchorHTMLAttributes extends HTMLAttributes {
|
|
182
|
+
download?: string | boolean | undefined;
|
|
183
|
+
href?: string | undefined;
|
|
184
|
+
hreflang?: string | undefined;
|
|
185
|
+
media?: string | undefined;
|
|
186
|
+
ping?: string | undefined;
|
|
187
|
+
target?: HTMLAttributeAnchorTarget | undefined;
|
|
188
|
+
type?: StringLiteralUnion<BaseMime> | undefined;
|
|
189
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
190
|
+
}
|
|
191
|
+
interface AudioHTMLAttributes extends MediaHTMLAttributes {
|
|
192
|
+
}
|
|
193
|
+
interface AreaHTMLAttributes extends HTMLAttributes {
|
|
194
|
+
alt?: string | undefined;
|
|
195
|
+
coords?: string | undefined;
|
|
196
|
+
download?: string | boolean | undefined;
|
|
197
|
+
href?: string | undefined;
|
|
198
|
+
hreflang?: string | undefined;
|
|
199
|
+
media?: string | undefined;
|
|
200
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
201
|
+
shape?: string | undefined;
|
|
202
|
+
target?: HTMLAttributeAnchorTarget | undefined;
|
|
203
|
+
}
|
|
204
|
+
interface BaseHTMLAttributes extends HTMLAttributes {
|
|
205
|
+
href?: string | undefined;
|
|
206
|
+
target?: HTMLAttributeAnchorTarget | undefined;
|
|
207
|
+
}
|
|
208
|
+
interface BlockquoteHTMLAttributes extends HTMLAttributes {
|
|
209
|
+
cite?: string | undefined;
|
|
210
|
+
}
|
|
211
|
+
/** @see https://developer.mozilla.org/en-US/docs/Web/API/Popover_API */
|
|
212
|
+
type HTMLAttributePopoverTargetAction = 'show' | 'hide' | 'toggle';
|
|
213
|
+
interface ButtonHTMLAttributes extends HTMLAttributes {
|
|
214
|
+
disabled?: boolean | undefined;
|
|
215
|
+
form?: string | undefined;
|
|
216
|
+
formenctype?: HTMLAttributeFormEnctype | undefined;
|
|
217
|
+
formmethod?: HTMLAttributeFormMethod | undefined;
|
|
218
|
+
formnovalidate?: boolean | undefined;
|
|
219
|
+
formtarget?: HTMLAttributeAnchorTarget | undefined;
|
|
220
|
+
name?: string | undefined;
|
|
221
|
+
type?: 'submit' | 'reset' | 'button' | undefined;
|
|
222
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
223
|
+
popovertarget?: string | undefined;
|
|
224
|
+
popovertargetaction?: HTMLAttributePopoverTargetAction | undefined;
|
|
225
|
+
formAction?: string | Function | undefined;
|
|
226
|
+
}
|
|
227
|
+
interface CanvasHTMLAttributes extends HTMLAttributes {
|
|
228
|
+
height?: number | string | undefined;
|
|
229
|
+
width?: number | string | undefined;
|
|
230
|
+
}
|
|
231
|
+
interface ColHTMLAttributes extends HTMLAttributes {
|
|
232
|
+
span?: number | undefined;
|
|
233
|
+
width?: number | string | undefined;
|
|
234
|
+
}
|
|
235
|
+
interface ColgroupHTMLAttributes extends HTMLAttributes {
|
|
236
|
+
span?: number | undefined;
|
|
237
|
+
}
|
|
238
|
+
interface DataHTMLAttributes extends HTMLAttributes {
|
|
239
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
240
|
+
}
|
|
241
|
+
interface DetailsHTMLAttributes extends HTMLAttributes {
|
|
242
|
+
open?: boolean | undefined;
|
|
243
|
+
}
|
|
244
|
+
interface DelHTMLAttributes extends HTMLAttributes {
|
|
245
|
+
cite?: string | undefined;
|
|
246
|
+
dateTime?: string | undefined;
|
|
247
|
+
}
|
|
248
|
+
interface DialogHTMLAttributes extends HTMLAttributes {
|
|
249
|
+
open?: boolean | undefined;
|
|
250
|
+
}
|
|
251
|
+
interface EmbedHTMLAttributes extends HTMLAttributes {
|
|
252
|
+
height?: number | string | undefined;
|
|
253
|
+
src?: string | undefined;
|
|
254
|
+
type?: StringLiteralUnion<BaseMime> | undefined;
|
|
255
|
+
width?: number | string | undefined;
|
|
256
|
+
}
|
|
257
|
+
interface FieldsetHTMLAttributes extends HTMLAttributes {
|
|
258
|
+
disabled?: boolean | undefined;
|
|
259
|
+
form?: string | undefined;
|
|
260
|
+
name?: string | undefined;
|
|
261
|
+
}
|
|
262
|
+
/** @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#method */
|
|
263
|
+
type HTMLAttributeFormMethod = 'get' | 'post' | 'dialog';
|
|
264
|
+
/** @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#enctype */
|
|
265
|
+
type HTMLAttributeFormEnctype = 'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain';
|
|
266
|
+
/** @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#autocomplete */
|
|
267
|
+
type HTMLAttributeFormAutocomplete = 'on' | 'off';
|
|
268
|
+
interface FormHTMLAttributes extends HTMLAttributes {
|
|
269
|
+
'accept-charset'?: StringLiteralUnion<'utf-8'> | undefined;
|
|
270
|
+
autocomplete?: HTMLAttributeFormAutocomplete | undefined;
|
|
271
|
+
enctype?: HTMLAttributeFormEnctype | undefined;
|
|
272
|
+
method?: HTMLAttributeFormMethod | undefined;
|
|
273
|
+
name?: string | undefined;
|
|
274
|
+
novalidate?: boolean | undefined;
|
|
275
|
+
target?: HTMLAttributeAnchorTarget | undefined;
|
|
276
|
+
action?: string | Function | undefined;
|
|
277
|
+
}
|
|
278
|
+
interface HtmlHTMLAttributes extends HTMLAttributes {
|
|
279
|
+
manifest?: string | undefined;
|
|
280
|
+
}
|
|
281
|
+
interface IframeHTMLAttributes extends HTMLAttributes {
|
|
282
|
+
allow?: string | undefined;
|
|
283
|
+
allowfullscreen?: boolean | undefined;
|
|
284
|
+
height?: number | string | undefined;
|
|
285
|
+
loading?: 'eager' | 'lazy' | undefined;
|
|
286
|
+
name?: string | undefined;
|
|
287
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
288
|
+
sandbox?: string | undefined;
|
|
289
|
+
seamless?: boolean | undefined;
|
|
290
|
+
src?: string | undefined;
|
|
291
|
+
srcdoc?: string | undefined;
|
|
292
|
+
width?: number | string | undefined;
|
|
293
|
+
}
|
|
294
|
+
interface ImgHTMLAttributes extends HTMLAttributes {
|
|
295
|
+
alt?: string | undefined;
|
|
296
|
+
crossorigin?: CrossOrigin;
|
|
297
|
+
decoding?: 'async' | 'auto' | 'sync' | undefined;
|
|
298
|
+
height?: number | string | undefined;
|
|
299
|
+
loading?: 'eager' | 'lazy' | undefined;
|
|
300
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
301
|
+
sizes?: string | undefined;
|
|
302
|
+
src?: string | undefined;
|
|
303
|
+
srcset?: string | undefined;
|
|
304
|
+
usemap?: string | undefined;
|
|
305
|
+
width?: number | string | undefined;
|
|
306
|
+
}
|
|
307
|
+
interface InsHTMLAttributes extends HTMLAttributes {
|
|
308
|
+
cite?: string | undefined;
|
|
309
|
+
datetime?: string | undefined;
|
|
310
|
+
}
|
|
311
|
+
type HTMLInputTypeAttribute = StringLiteralUnion<'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'>;
|
|
312
|
+
type AutoFillAddressKind = 'billing' | 'shipping';
|
|
313
|
+
type AutoFillBase = '' | 'off' | 'on';
|
|
314
|
+
type AutoFillContactField = 'email' | 'tel' | 'tel-area-code' | 'tel-country-code' | 'tel-extension' | 'tel-local' | 'tel-local-prefix' | 'tel-local-suffix' | 'tel-national';
|
|
315
|
+
type AutoFillContactKind = 'home' | 'mobile' | 'work';
|
|
316
|
+
type AutoFillCredentialField = 'webauthn';
|
|
317
|
+
type AutoFillNormalField = 'additional-name' | 'address-level1' | 'address-level2' | 'address-level3' | 'address-level4' | 'address-line1' | 'address-line2' | 'address-line3' | 'bday-day' | 'bday-month' | 'bday-year' | 'cc-csc' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-family-name' | 'cc-given-name' | 'cc-name' | 'cc-number' | 'cc-type' | 'country' | 'country-name' | 'current-password' | 'family-name' | 'given-name' | 'honorific-prefix' | 'honorific-suffix' | 'name' | 'new-password' | 'one-time-code' | 'organization' | 'postal-code' | 'street-address' | 'transaction-amount' | 'transaction-currency' | 'username';
|
|
318
|
+
type OptionalPrefixToken<T extends string> = `${T} ` | '';
|
|
319
|
+
type OptionalPostfixToken<T extends string> = ` ${T}` | '';
|
|
320
|
+
type AutoFillField = AutoFillNormalField | `${OptionalPrefixToken<AutoFillContactKind>}${AutoFillContactField}`;
|
|
321
|
+
type AutoFillSection = `section-${string}`;
|
|
322
|
+
type AutoFill = AutoFillBase | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<AutoFillAddressKind>}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;
|
|
323
|
+
interface InputHTMLAttributes extends HTMLAttributes {
|
|
324
|
+
accept?: string | undefined;
|
|
325
|
+
alt?: string | undefined;
|
|
326
|
+
autocomplete?: StringLiteralUnion<AutoFill> | undefined;
|
|
327
|
+
capture?: boolean | 'user' | 'environment' | undefined;
|
|
328
|
+
checked?: boolean | undefined;
|
|
329
|
+
disabled?: boolean | undefined;
|
|
330
|
+
form?: string | undefined;
|
|
331
|
+
formenctype?: HTMLAttributeFormEnctype | undefined;
|
|
332
|
+
formmethod?: HTMLAttributeFormMethod | undefined;
|
|
333
|
+
formnovalidate?: boolean | undefined;
|
|
334
|
+
formtarget?: HTMLAttributeAnchorTarget | undefined;
|
|
335
|
+
height?: number | string | undefined;
|
|
336
|
+
list?: string | undefined;
|
|
337
|
+
max?: number | string | undefined;
|
|
338
|
+
maxlength?: number | undefined;
|
|
339
|
+
min?: number | string | undefined;
|
|
340
|
+
minlength?: number | undefined;
|
|
341
|
+
multiple?: boolean | undefined;
|
|
342
|
+
name?: string | undefined;
|
|
343
|
+
pattern?: string | undefined;
|
|
344
|
+
placeholder?: string | undefined;
|
|
345
|
+
readonly?: boolean | undefined;
|
|
346
|
+
required?: boolean | undefined;
|
|
347
|
+
size?: number | undefined;
|
|
348
|
+
src?: string | undefined;
|
|
349
|
+
step?: number | string | undefined;
|
|
350
|
+
type?: HTMLInputTypeAttribute | undefined;
|
|
351
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
352
|
+
width?: number | string | undefined;
|
|
353
|
+
popovertarget?: string | undefined;
|
|
354
|
+
popovertargetaction?: HTMLAttributePopoverTargetAction | undefined;
|
|
355
|
+
formAction?: string | Function | undefined;
|
|
356
|
+
}
|
|
357
|
+
interface KeygenHTMLAttributes extends HTMLAttributes {
|
|
358
|
+
challenge?: string | undefined;
|
|
359
|
+
disabled?: boolean | undefined;
|
|
360
|
+
form?: string | undefined;
|
|
361
|
+
keytype?: string | undefined;
|
|
362
|
+
name?: string | undefined;
|
|
363
|
+
}
|
|
364
|
+
interface LabelHTMLAttributes extends HTMLAttributes {
|
|
365
|
+
form?: string | undefined;
|
|
366
|
+
for?: string | undefined;
|
|
367
|
+
}
|
|
368
|
+
interface LiHTMLAttributes extends HTMLAttributes {
|
|
369
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
370
|
+
}
|
|
371
|
+
interface LinkHTMLAttributes extends HTMLAttributes {
|
|
372
|
+
as?: string | undefined;
|
|
373
|
+
crossorigin?: CrossOrigin;
|
|
374
|
+
href?: string | undefined;
|
|
375
|
+
hreflang?: string | undefined;
|
|
376
|
+
integrity?: string | undefined;
|
|
377
|
+
media?: string | undefined;
|
|
378
|
+
imagesrcset?: string | undefined;
|
|
379
|
+
imagesizes?: string | undefined;
|
|
380
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
381
|
+
sizes?: string | undefined;
|
|
382
|
+
type?: StringLiteralUnion<BaseMime> | undefined;
|
|
383
|
+
charSet?: string | undefined;
|
|
384
|
+
rel?: string | undefined;
|
|
385
|
+
precedence?: string | undefined;
|
|
386
|
+
title?: string | undefined;
|
|
387
|
+
disabled?: boolean | undefined;
|
|
388
|
+
onError?: ((event: Event) => void) | undefined;
|
|
389
|
+
onLoad?: ((event: Event) => void) | undefined;
|
|
390
|
+
blocking?: 'render' | undefined;
|
|
391
|
+
}
|
|
392
|
+
interface MapHTMLAttributes extends HTMLAttributes {
|
|
393
|
+
name?: string | undefined;
|
|
394
|
+
}
|
|
395
|
+
interface MenuHTMLAttributes extends HTMLAttributes {
|
|
396
|
+
type?: string | undefined;
|
|
397
|
+
}
|
|
398
|
+
interface MediaHTMLAttributes extends HTMLAttributes {
|
|
399
|
+
autoplay?: boolean | undefined;
|
|
400
|
+
controls?: boolean | undefined;
|
|
401
|
+
controlslist?: string | undefined;
|
|
402
|
+
crossorigin?: CrossOrigin;
|
|
403
|
+
loop?: boolean | undefined;
|
|
404
|
+
mediagroup?: string | undefined;
|
|
405
|
+
muted?: boolean | undefined;
|
|
406
|
+
playsinline?: boolean | undefined;
|
|
407
|
+
preload?: string | undefined;
|
|
408
|
+
src?: string | undefined;
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#http-equiv
|
|
412
|
+
*/
|
|
413
|
+
type MetaHttpEquiv = 'content-security-policy' | 'content-type' | 'default-style' | 'x-ua-compatible' | 'refresh';
|
|
414
|
+
/**
|
|
415
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name
|
|
416
|
+
*/
|
|
417
|
+
type MetaName = 'application-name' | 'author' | 'description' | 'generator' | 'keywords' | 'referrer' | 'theme-color' | 'color-scheme' | 'viewport' | 'creator' | 'googlebot' | 'publisher' | 'robots';
|
|
418
|
+
/**
|
|
419
|
+
* @see https://ogp.me/
|
|
420
|
+
*/
|
|
421
|
+
type MetaProperty = 'og:title' | 'og:type' | 'og:image' | 'og:url' | 'og:audio' | 'og:description' | 'og:determiner' | 'og:locale' | 'og:locale:alternate' | 'og:site_name' | 'og:video' | 'og:image:url' | 'og:image:secure_url' | 'og:image:type' | 'og:image:width' | 'og:image:height' | 'og:image:alt';
|
|
422
|
+
interface MetaHTMLAttributes extends HTMLAttributes {
|
|
423
|
+
charset?: StringLiteralUnion<'utf-8'> | undefined;
|
|
424
|
+
'http-equiv'?: StringLiteralUnion<MetaHttpEquiv> | undefined;
|
|
425
|
+
name?: StringLiteralUnion<MetaName> | undefined;
|
|
426
|
+
media?: string | undefined;
|
|
427
|
+
content?: string | undefined;
|
|
428
|
+
property?: StringLiteralUnion<MetaProperty> | undefined;
|
|
429
|
+
httpEquiv?: StringLiteralUnion<MetaHttpEquiv> | undefined;
|
|
430
|
+
}
|
|
431
|
+
interface MeterHTMLAttributes extends HTMLAttributes {
|
|
432
|
+
form?: string | undefined;
|
|
433
|
+
high?: number | undefined;
|
|
434
|
+
low?: number | undefined;
|
|
435
|
+
max?: number | string | undefined;
|
|
436
|
+
min?: number | string | undefined;
|
|
437
|
+
optimum?: number | undefined;
|
|
438
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
439
|
+
}
|
|
440
|
+
interface QuoteHTMLAttributes extends HTMLAttributes {
|
|
441
|
+
cite?: string | undefined;
|
|
442
|
+
}
|
|
443
|
+
interface ObjectHTMLAttributes extends HTMLAttributes {
|
|
444
|
+
data?: string | undefined;
|
|
445
|
+
form?: string | undefined;
|
|
446
|
+
height?: number | string | undefined;
|
|
447
|
+
name?: string | undefined;
|
|
448
|
+
type?: StringLiteralUnion<BaseMime> | undefined;
|
|
449
|
+
usemap?: string | undefined;
|
|
450
|
+
width?: number | string | undefined;
|
|
451
|
+
}
|
|
452
|
+
interface OlHTMLAttributes extends HTMLAttributes {
|
|
453
|
+
reversed?: boolean | undefined;
|
|
454
|
+
start?: number | undefined;
|
|
455
|
+
type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined;
|
|
456
|
+
}
|
|
457
|
+
interface OptgroupHTMLAttributes extends HTMLAttributes {
|
|
458
|
+
disabled?: boolean | undefined;
|
|
459
|
+
label?: string | undefined;
|
|
460
|
+
}
|
|
461
|
+
interface OptionHTMLAttributes extends HTMLAttributes {
|
|
462
|
+
disabled?: boolean | undefined;
|
|
463
|
+
label?: string | undefined;
|
|
464
|
+
selected?: boolean | undefined;
|
|
465
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
466
|
+
}
|
|
467
|
+
interface OutputHTMLAttributes extends HTMLAttributes {
|
|
468
|
+
form?: string | undefined;
|
|
469
|
+
for?: string | undefined;
|
|
470
|
+
name?: string | undefined;
|
|
471
|
+
}
|
|
472
|
+
interface ParamHTMLAttributes extends HTMLAttributes {
|
|
473
|
+
name?: string | undefined;
|
|
474
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
475
|
+
}
|
|
476
|
+
interface ProgressHTMLAttributes extends HTMLAttributes {
|
|
477
|
+
max?: number | string | undefined;
|
|
478
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
479
|
+
}
|
|
480
|
+
interface SlotHTMLAttributes extends HTMLAttributes {
|
|
481
|
+
name?: string | undefined;
|
|
482
|
+
}
|
|
483
|
+
interface ScriptHTMLAttributes extends HTMLAttributes {
|
|
484
|
+
async?: boolean | undefined;
|
|
485
|
+
crossorigin?: CrossOrigin;
|
|
486
|
+
defer?: boolean | undefined;
|
|
487
|
+
integrity?: string | undefined;
|
|
488
|
+
nomodule?: boolean | undefined;
|
|
489
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
490
|
+
src?: string | undefined;
|
|
491
|
+
/**
|
|
492
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type
|
|
493
|
+
*/
|
|
494
|
+
type?: StringLiteralUnion<'' | 'text/javascript' | 'importmap' | 'module'> | undefined;
|
|
495
|
+
crossOrigin?: CrossOrigin;
|
|
496
|
+
fetchPriority?: string | undefined;
|
|
497
|
+
noModule?: boolean | undefined;
|
|
498
|
+
referrer?: HTMLAttributeReferrerPolicy | undefined;
|
|
499
|
+
onError?: ((event: Event) => void) | undefined;
|
|
500
|
+
onLoad?: ((event: Event) => void) | undefined;
|
|
501
|
+
blocking?: 'render' | undefined;
|
|
502
|
+
}
|
|
503
|
+
interface SelectHTMLAttributes extends HTMLAttributes {
|
|
504
|
+
autocomplete?: string | undefined;
|
|
505
|
+
disabled?: boolean | undefined;
|
|
506
|
+
form?: string | undefined;
|
|
507
|
+
multiple?: boolean | undefined;
|
|
508
|
+
name?: string | undefined;
|
|
509
|
+
required?: boolean | undefined;
|
|
510
|
+
size?: number | undefined;
|
|
511
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
512
|
+
}
|
|
513
|
+
type MediaMime = BaseMime & (`image/${string}` | `audio/${string}` | `video/${string}`);
|
|
514
|
+
interface SourceHTMLAttributes extends HTMLAttributes {
|
|
515
|
+
height?: number | string | undefined;
|
|
516
|
+
media?: string | undefined;
|
|
517
|
+
sizes?: string | undefined;
|
|
518
|
+
src?: string | undefined;
|
|
519
|
+
srcset?: string | undefined;
|
|
520
|
+
type?: StringLiteralUnion<MediaMime> | undefined;
|
|
521
|
+
width?: number | string | undefined;
|
|
522
|
+
}
|
|
523
|
+
interface StyleHTMLAttributes extends HTMLAttributes {
|
|
524
|
+
media?: string | undefined;
|
|
525
|
+
scoped?: boolean | undefined;
|
|
526
|
+
/**
|
|
527
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style#type
|
|
528
|
+
*/
|
|
529
|
+
type?: '' | 'text/css' | undefined;
|
|
530
|
+
href?: string | undefined;
|
|
531
|
+
precedence?: string | undefined;
|
|
532
|
+
title?: string | undefined;
|
|
533
|
+
disabled?: boolean | undefined;
|
|
534
|
+
blocking?: 'render' | undefined;
|
|
535
|
+
}
|
|
536
|
+
interface TableHTMLAttributes extends HTMLAttributes {
|
|
537
|
+
align?: 'left' | 'center' | 'right' | undefined;
|
|
538
|
+
bgcolor?: string | undefined;
|
|
539
|
+
border?: number | undefined;
|
|
540
|
+
cellpadding?: number | string | undefined;
|
|
541
|
+
cellspacing?: number | string | undefined;
|
|
542
|
+
frame?: boolean | undefined;
|
|
543
|
+
rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all' | undefined;
|
|
544
|
+
summary?: string | undefined;
|
|
545
|
+
width?: number | string | undefined;
|
|
546
|
+
}
|
|
547
|
+
interface TextareaHTMLAttributes extends HTMLAttributes {
|
|
548
|
+
autocomplete?: string | undefined;
|
|
549
|
+
cols?: number | undefined;
|
|
550
|
+
dirname?: string | undefined;
|
|
551
|
+
disabled?: boolean | undefined;
|
|
552
|
+
form?: string | undefined;
|
|
553
|
+
maxlength?: number | undefined;
|
|
554
|
+
minlength?: number | undefined;
|
|
555
|
+
name?: string | undefined;
|
|
556
|
+
placeholder?: string | undefined;
|
|
557
|
+
readonly?: boolean | undefined;
|
|
558
|
+
required?: boolean | undefined;
|
|
559
|
+
rows?: number | undefined;
|
|
560
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
561
|
+
wrap?: string | undefined;
|
|
562
|
+
}
|
|
563
|
+
interface TdHTMLAttributes extends HTMLAttributes {
|
|
564
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
|
|
565
|
+
colspan?: number | undefined;
|
|
566
|
+
headers?: string | undefined;
|
|
567
|
+
rowspan?: number | undefined;
|
|
568
|
+
scope?: string | undefined;
|
|
569
|
+
abbr?: string | undefined;
|
|
570
|
+
height?: number | string | undefined;
|
|
571
|
+
width?: number | string | undefined;
|
|
572
|
+
valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined;
|
|
573
|
+
}
|
|
574
|
+
interface ThHTMLAttributes extends HTMLAttributes {
|
|
575
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
|
|
576
|
+
colspan?: number | undefined;
|
|
577
|
+
headers?: string | undefined;
|
|
578
|
+
rowspan?: number | undefined;
|
|
579
|
+
scope?: 'row' | 'col' | 'rowgroup' | 'colgroup' | string | undefined;
|
|
580
|
+
abbr?: string | undefined;
|
|
581
|
+
}
|
|
582
|
+
interface TimeHTMLAttributes extends HTMLAttributes {
|
|
583
|
+
datetime?: string | undefined;
|
|
584
|
+
}
|
|
585
|
+
interface TrackHTMLAttributes extends HTMLAttributes {
|
|
586
|
+
default?: boolean | undefined;
|
|
587
|
+
kind?: string | undefined;
|
|
588
|
+
label?: string | undefined;
|
|
589
|
+
src?: string | undefined;
|
|
590
|
+
srclang?: string | undefined;
|
|
591
|
+
}
|
|
592
|
+
interface VideoHTMLAttributes extends MediaHTMLAttributes {
|
|
593
|
+
height?: number | string | undefined;
|
|
594
|
+
playsinline?: boolean | undefined;
|
|
595
|
+
poster?: string | undefined;
|
|
596
|
+
width?: number | string | undefined;
|
|
597
|
+
disablePictureInPicture?: boolean | undefined;
|
|
598
|
+
disableRemotePlayback?: boolean | undefined;
|
|
599
|
+
}
|
|
600
|
+
export interface IntrinsicElements {
|
|
601
|
+
a: AnchorHTMLAttributes;
|
|
602
|
+
abbr: HTMLAttributes;
|
|
603
|
+
address: HTMLAttributes;
|
|
604
|
+
area: AreaHTMLAttributes;
|
|
605
|
+
article: HTMLAttributes;
|
|
606
|
+
aside: HTMLAttributes;
|
|
607
|
+
audio: AudioHTMLAttributes;
|
|
608
|
+
b: HTMLAttributes;
|
|
609
|
+
base: BaseHTMLAttributes;
|
|
610
|
+
bdi: HTMLAttributes;
|
|
611
|
+
bdo: HTMLAttributes;
|
|
612
|
+
big: HTMLAttributes;
|
|
613
|
+
blockquote: BlockquoteHTMLAttributes;
|
|
614
|
+
body: HTMLAttributes;
|
|
615
|
+
br: HTMLAttributes;
|
|
616
|
+
button: ButtonHTMLAttributes;
|
|
617
|
+
canvas: CanvasHTMLAttributes;
|
|
618
|
+
caption: HTMLAttributes;
|
|
619
|
+
center: HTMLAttributes;
|
|
620
|
+
cite: HTMLAttributes;
|
|
621
|
+
code: HTMLAttributes;
|
|
622
|
+
col: ColHTMLAttributes;
|
|
623
|
+
colgroup: ColgroupHTMLAttributes;
|
|
624
|
+
data: DataHTMLAttributes;
|
|
625
|
+
datalist: HTMLAttributes;
|
|
626
|
+
dd: HTMLAttributes;
|
|
627
|
+
del: DelHTMLAttributes;
|
|
628
|
+
details: DetailsHTMLAttributes;
|
|
629
|
+
dfn: HTMLAttributes;
|
|
630
|
+
dialog: DialogHTMLAttributes;
|
|
631
|
+
div: HTMLAttributes;
|
|
632
|
+
dl: HTMLAttributes;
|
|
633
|
+
dt: HTMLAttributes;
|
|
634
|
+
em: HTMLAttributes;
|
|
635
|
+
embed: EmbedHTMLAttributes;
|
|
636
|
+
fieldset: FieldsetHTMLAttributes;
|
|
637
|
+
figcaption: HTMLAttributes;
|
|
638
|
+
figure: HTMLAttributes;
|
|
639
|
+
footer: HTMLAttributes;
|
|
640
|
+
form: FormHTMLAttributes;
|
|
641
|
+
h1: HTMLAttributes;
|
|
642
|
+
h2: HTMLAttributes;
|
|
643
|
+
h3: HTMLAttributes;
|
|
644
|
+
h4: HTMLAttributes;
|
|
645
|
+
h5: HTMLAttributes;
|
|
646
|
+
h6: HTMLAttributes;
|
|
647
|
+
head: HTMLAttributes;
|
|
648
|
+
header: HTMLAttributes;
|
|
649
|
+
hgroup: HTMLAttributes;
|
|
650
|
+
hr: HTMLAttributes;
|
|
651
|
+
html: HtmlHTMLAttributes;
|
|
652
|
+
i: HTMLAttributes;
|
|
653
|
+
iframe: IframeHTMLAttributes;
|
|
654
|
+
img: ImgHTMLAttributes;
|
|
655
|
+
input: InputHTMLAttributes;
|
|
656
|
+
ins: InsHTMLAttributes;
|
|
657
|
+
kbd: HTMLAttributes;
|
|
658
|
+
keygen: KeygenHTMLAttributes;
|
|
659
|
+
label: LabelHTMLAttributes;
|
|
660
|
+
legend: HTMLAttributes;
|
|
661
|
+
li: LiHTMLAttributes;
|
|
662
|
+
link: LinkHTMLAttributes;
|
|
663
|
+
main: HTMLAttributes;
|
|
664
|
+
map: MapHTMLAttributes;
|
|
665
|
+
mark: HTMLAttributes;
|
|
666
|
+
menu: MenuHTMLAttributes;
|
|
667
|
+
menuitem: HTMLAttributes;
|
|
668
|
+
meta: MetaHTMLAttributes;
|
|
669
|
+
meter: MeterHTMLAttributes;
|
|
670
|
+
nav: HTMLAttributes;
|
|
671
|
+
noscript: HTMLAttributes;
|
|
672
|
+
object: ObjectHTMLAttributes;
|
|
673
|
+
ol: OlHTMLAttributes;
|
|
674
|
+
optgroup: OptgroupHTMLAttributes;
|
|
675
|
+
option: OptionHTMLAttributes;
|
|
676
|
+
output: OutputHTMLAttributes;
|
|
677
|
+
p: HTMLAttributes;
|
|
678
|
+
param: ParamHTMLAttributes;
|
|
679
|
+
picture: HTMLAttributes;
|
|
680
|
+
pre: HTMLAttributes;
|
|
681
|
+
progress: ProgressHTMLAttributes;
|
|
682
|
+
q: QuoteHTMLAttributes;
|
|
683
|
+
rp: HTMLAttributes;
|
|
684
|
+
rt: HTMLAttributes;
|
|
685
|
+
ruby: HTMLAttributes;
|
|
686
|
+
s: HTMLAttributes;
|
|
687
|
+
samp: HTMLAttributes;
|
|
688
|
+
search: HTMLAttributes;
|
|
689
|
+
slot: SlotHTMLAttributes;
|
|
690
|
+
script: ScriptHTMLAttributes;
|
|
691
|
+
section: HTMLAttributes;
|
|
692
|
+
select: SelectHTMLAttributes;
|
|
693
|
+
small: HTMLAttributes;
|
|
694
|
+
source: SourceHTMLAttributes;
|
|
695
|
+
span: HTMLAttributes;
|
|
696
|
+
strong: HTMLAttributes;
|
|
697
|
+
style: StyleHTMLAttributes;
|
|
698
|
+
sub: HTMLAttributes;
|
|
699
|
+
summary: HTMLAttributes;
|
|
700
|
+
sup: HTMLAttributes;
|
|
701
|
+
table: TableHTMLAttributes;
|
|
702
|
+
template: HTMLAttributes;
|
|
703
|
+
tbody: HTMLAttributes;
|
|
704
|
+
td: TdHTMLAttributes;
|
|
705
|
+
textarea: TextareaHTMLAttributes;
|
|
706
|
+
tfoot: HTMLAttributes;
|
|
707
|
+
th: ThHTMLAttributes;
|
|
708
|
+
thead: HTMLAttributes;
|
|
709
|
+
time: TimeHTMLAttributes;
|
|
710
|
+
title: HTMLAttributes;
|
|
711
|
+
tr: HTMLAttributes;
|
|
712
|
+
track: TrackHTMLAttributes;
|
|
713
|
+
u: HTMLAttributes;
|
|
714
|
+
ul: HTMLAttributes;
|
|
715
|
+
var: HTMLAttributes;
|
|
716
|
+
video: VideoHTMLAttributes;
|
|
717
|
+
wbr: HTMLAttributes;
|
|
718
|
+
}
|
|
719
|
+
export {};
|
|
720
|
+
}
|
|
721
|
+
export interface IntrinsicElements extends JSX.IntrinsicElements {
|
|
722
|
+
}
|