[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-react-email":3,"mdc--1c69ud-key":33,"related-org-vercel-labs-react-email":3272,"related-repo-vercel-labs-react-email":3446},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"react-email","render email templates from JSON specs","React Email renderer for json-render that turns JSON specs into HTML or plain-text emails using @react-email\u002Fcomponents and @react-email\u002Frender. Use when working with @json-render\u002Freact-email, building transactional or marketing emails from JSON, creating email catalogs, rendering AI-generated email specs, or when the user mentions react-email, HTML email, or transactional email.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19],{"name":13,"slug":14,"type":15},"HTML","html","tag",{"name":17,"slug":18,"type":15},"Templates","templates",{"name":20,"slug":21,"type":15},"Email","email",15678,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render","2026-07-17T06:08:40.503336",null,845,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"The Generative UI framework","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render\u002Ftree\u002FHEAD\u002Fskills\u002Freact-email","---\nname: react-email\ndescription: React Email renderer for json-render that turns JSON specs into HTML or plain-text emails using @react-email\u002Fcomponents and @react-email\u002Frender. Use when working with @json-render\u002Freact-email, building transactional or marketing emails from JSON, creating email catalogs, rendering AI-generated email specs, or when the user mentions react-email, HTML email, or transactional email.\nmetadata:\n  tags: react-email, email, json-render, html email, transactional email\n---\n\n# @json-render\u002Freact-email\n\nReact Email renderer that converts JSON specs into HTML or plain-text email output.\n\n## Quick Start\n\n```typescript\nimport { renderToHtml } from \"@json-render\u002Freact-email\";\nimport { schema, standardComponentDefinitions } from \"@json-render\u002Freact-email\";\nimport { defineCatalog } from \"@json-render\u002Fcore\";\n\nconst catalog = defineCatalog(schema, {\n  components: standardComponentDefinitions,\n});\n\nconst spec = {\n  root: \"html-1\",\n  elements: {\n    \"html-1\": { type: \"Html\", props: { lang: \"en\", dir: \"ltr\" }, children: [\"head-1\", \"body-1\"] },\n    \"head-1\": { type: \"Head\", props: {}, children: [] },\n    \"body-1\": {\n      type: \"Body\",\n      props: { style: { backgroundColor: \"#f6f9fc\" } },\n      children: [\"container-1\"],\n    },\n    \"container-1\": {\n      type: \"Container\",\n      props: { style: { maxWidth: \"600px\", margin: \"0 auto\", padding: \"20px\" } },\n      children: [\"heading-1\", \"text-1\"],\n    },\n    \"heading-1\": { type: \"Heading\", props: { text: \"Welcome\" }, children: [] },\n    \"text-1\": { type: \"Text\", props: { text: \"Thanks for signing up.\" }, children: [] },\n  },\n};\n\nconst html = await renderToHtml(spec);\n```\n\n## Spec Structure (Element Tree)\n\nSame flat element tree as `@json-render\u002Freact`: `root` key plus `elements` map. Root must be `Html`; children of `Html` should be `Head` and `Body`. Use `Container` (e.g. max-width 600px) inside `Body` for client-safe layout.\n\n## Creating a Catalog and Registry\n\n```typescript\nimport { defineCatalog } from \"@json-render\u002Fcore\";\nimport { schema, defineRegistry, renderToHtml } from \"@json-render\u002Freact-email\";\nimport { standardComponentDefinitions } from \"@json-render\u002Freact-email\u002Fcatalog\";\nimport { Container, Heading, Text } from \"@react-email\u002Fcomponents\";\nimport { z } from \"zod\";\n\nconst catalog = defineCatalog(schema, {\n  components: {\n    ...standardComponentDefinitions,\n    Alert: {\n      props: z.object({\n        message: z.string(),\n        variant: z.enum([\"info\", \"success\", \"warning\"]).nullable(),\n      }),\n      slots: [],\n      description: \"A highlighted message block\",\n    },\n  },\n  actions: {},\n});\n\nconst { registry } = defineRegistry(catalog, {\n  components: {\n    Alert: ({ props }) => (\n      \u003CContainer style={{ padding: 16, backgroundColor: \"#eff6ff\", borderRadius: 8 }}>\n        \u003CText style={{ margin: 0 }}>{props.message}\u003C\u002FText>\n      \u003C\u002FContainer>\n    ),\n  },\n});\n\nconst html = await renderToHtml(spec, { registry });\n```\n\n## Server-Side Render APIs\n\n| Function | Purpose |\n|----------|---------|\n| `renderToHtml(spec, options?)` | Render spec to HTML email string |\n| `renderToPlainText(spec, options?)` | Render spec to plain-text email string |\n\n`RenderOptions`: `registry`, `includeStandard` (default true), `state` (for `$state` \u002F `$cond`).\n\n## Visibility and State\n\nSupports `visible` conditions, `$state`, `$cond`, repeat (`repeat.statePath`), and the same expression syntax as `@json-render\u002Freact`. Use `state` in `RenderOptions` when rendering server-side so expressions resolve.\n\n## Server-Safe Import\n\nImport schema and catalog without React or `@react-email\u002Fcomponents`:\n\n```typescript\nimport { schema, standardComponentDefinitions } from \"@json-render\u002Freact-email\u002Fserver\";\n```\n\n## Key Exports\n\n| Export | Purpose |\n|--------|---------|\n| `defineRegistry` | Create type-safe component registry from catalog |\n| `Renderer` | Render spec in browser (e.g. preview); use with `JSONUIProvider` for state\u002Factions |\n| `createRenderer` | Standalone renderer component with state\u002Factions\u002Fvalidation |\n| `renderToHtml` | Server: spec to HTML string |\n| `renderToPlainText` | Server: spec to plain-text string |\n| `schema` | Email element schema |\n| `standardComponents` | Pre-built component implementations |\n| `standardComponentDefinitions` | Catalog definitions (Zod props) |\n\n## Sub-path Exports\n\n| Path | Purpose |\n|------|---------|\n| `@json-render\u002Freact-email` | Full package |\n| `@json-render\u002Freact-email\u002Fserver` | Schema and catalog only (no React) |\n| `@json-render\u002Freact-email\u002Fcatalog` | Standard component definitions and types |\n| `@json-render\u002Freact-email\u002Frender` | Render functions only |\n\n## Standard Components\n\nAll components accept a `style` prop (object) for inline styles. Use inline styles for email client compatibility; avoid external CSS.\n\n### Document structure\n\n| Component | Description |\n|-----------|-------------|\n| `Html` | Root wrapper (lang, dir). Children: Head, Body. |\n| `Head` | Email head section. |\n| `Body` | Body wrapper; use `style` for background. |\n\n### Layout\n\n| Component | Description |\n|-----------|-------------|\n| `Container` | Constrain width (e.g. max-width 600px). |\n| `Section` | Group content; table-based for compatibility. |\n| `Row` | Horizontal row. |\n| `Column` | Column in a Row; set width via style. |\n\n### Content\n\n| Component | Description |\n|-----------|-------------|\n| `Heading` | Heading text (as: h1–h6). |\n| `Text` | Body text. |\n| `Link` | Hyperlink (text, href). |\n| `Button` | CTA link styled as button (text, href). |\n| `Image` | Image from URL (src, alt, width, height). |\n| `Hr` | Horizontal rule. |\n\n### Utility\n\n| Component | Description |\n|-----------|-------------|\n| `Preview` | Inbox preview text (inside Html). |\n| `Markdown` | Markdown content as email-safe HTML. |\n\n## Email Best Practices\n\n- Keep width constrained (e.g. Container max-width 600px).\n- Use inline styles or React Email's style props; many clients strip `\u003Cstyle>` blocks.\n- Prefer table-based layout (Section, Row, Column) for broad client support.\n- Use absolute URLs for images; many clients block relative or cid: references in some contexts.\n- Test in multiple clients (Gmail, Outlook, Apple Mail); use a preview tool or Litmus-like service when possible.\n",{"data":34,"body":37},{"name":4,"description":6,"metadata":35},{"tags":36},"react-email, email, json-render, html email, transactional email",{"type":38,"children":39},"root",[40,49,55,62,1292,1298,1368,1374,2329,2335,2397,2447,2453,2507,2513,2524,2579,2585,2749,2755,2841,2847,2860,2867,2944,2950,3037,3043,3163,3169,3223,3229,3267],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"json-renderreact-email",[46],{"type":47,"value":48},"text","@json-render\u002Freact-email",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"React Email renderer that converts JSON specs into HTML or plain-text email output.",{"type":41,"tag":56,"props":57,"children":59},"h2",{"id":58},"quick-start",[60],{"type":47,"value":61},"Quick Start",{"type":41,"tag":63,"props":64,"children":69},"pre",{"className":65,"code":66,"language":67,"meta":68,"style":68},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { renderToHtml } from \"@json-render\u002Freact-email\";\nimport { schema, standardComponentDefinitions } from \"@json-render\u002Freact-email\";\nimport { defineCatalog } from \"@json-render\u002Fcore\";\n\nconst catalog = defineCatalog(schema, {\n  components: standardComponentDefinitions,\n});\n\nconst spec = {\n  root: \"html-1\",\n  elements: {\n    \"html-1\": { type: \"Html\", props: { lang: \"en\", dir: \"ltr\" }, children: [\"head-1\", \"body-1\"] },\n    \"head-1\": { type: \"Head\", props: {}, children: [] },\n    \"body-1\": {\n      type: \"Body\",\n      props: { style: { backgroundColor: \"#f6f9fc\" } },\n      children: [\"container-1\"],\n    },\n    \"container-1\": {\n      type: \"Container\",\n      props: { style: { maxWidth: \"600px\", margin: \"0 auto\", padding: \"20px\" } },\n      children: [\"heading-1\", \"text-1\"],\n    },\n    \"heading-1\": { type: \"Heading\", props: { text: \"Welcome\" }, children: [] },\n    \"text-1\": { type: \"Text\", props: { text: \"Thanks for signing up.\" }, children: [] },\n  },\n};\n\nconst html = await renderToHtml(spec);\n","typescript","",[70],{"type":41,"tag":71,"props":72,"children":73},"code",{"__ignoreMap":68},[74,128,179,221,231,270,294,312,320,341,371,388,559,638,662,692,753,792,801,825,854,964,1018,1026,1129,1231,1240,1249,1257],{"type":41,"tag":75,"props":76,"children":79},"span",{"class":77,"line":78},"line",1,[80,86,92,98,103,108,113,118,123],{"type":41,"tag":75,"props":81,"children":83},{"style":82},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[84],{"type":47,"value":85},"import",{"type":41,"tag":75,"props":87,"children":89},{"style":88},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[90],{"type":47,"value":91}," {",{"type":41,"tag":75,"props":93,"children":95},{"style":94},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[96],{"type":47,"value":97}," renderToHtml",{"type":41,"tag":75,"props":99,"children":100},{"style":88},[101],{"type":47,"value":102}," }",{"type":41,"tag":75,"props":104,"children":105},{"style":82},[106],{"type":47,"value":107}," from",{"type":41,"tag":75,"props":109,"children":110},{"style":88},[111],{"type":47,"value":112}," \"",{"type":41,"tag":75,"props":114,"children":116},{"style":115},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[117],{"type":47,"value":48},{"type":41,"tag":75,"props":119,"children":120},{"style":88},[121],{"type":47,"value":122},"\"",{"type":41,"tag":75,"props":124,"children":125},{"style":88},[126],{"type":47,"value":127},";\n",{"type":41,"tag":75,"props":129,"children":131},{"class":77,"line":130},2,[132,136,140,145,150,155,159,163,167,171,175],{"type":41,"tag":75,"props":133,"children":134},{"style":82},[135],{"type":47,"value":85},{"type":41,"tag":75,"props":137,"children":138},{"style":88},[139],{"type":47,"value":91},{"type":41,"tag":75,"props":141,"children":142},{"style":94},[143],{"type":47,"value":144}," schema",{"type":41,"tag":75,"props":146,"children":147},{"style":88},[148],{"type":47,"value":149},",",{"type":41,"tag":75,"props":151,"children":152},{"style":94},[153],{"type":47,"value":154}," standardComponentDefinitions",{"type":41,"tag":75,"props":156,"children":157},{"style":88},[158],{"type":47,"value":102},{"type":41,"tag":75,"props":160,"children":161},{"style":82},[162],{"type":47,"value":107},{"type":41,"tag":75,"props":164,"children":165},{"style":88},[166],{"type":47,"value":112},{"type":41,"tag":75,"props":168,"children":169},{"style":115},[170],{"type":47,"value":48},{"type":41,"tag":75,"props":172,"children":173},{"style":88},[174],{"type":47,"value":122},{"type":41,"tag":75,"props":176,"children":177},{"style":88},[178],{"type":47,"value":127},{"type":41,"tag":75,"props":180,"children":182},{"class":77,"line":181},3,[183,187,191,196,200,204,208,213,217],{"type":41,"tag":75,"props":184,"children":185},{"style":82},[186],{"type":47,"value":85},{"type":41,"tag":75,"props":188,"children":189},{"style":88},[190],{"type":47,"value":91},{"type":41,"tag":75,"props":192,"children":193},{"style":94},[194],{"type":47,"value":195}," defineCatalog",{"type":41,"tag":75,"props":197,"children":198},{"style":88},[199],{"type":47,"value":102},{"type":41,"tag":75,"props":201,"children":202},{"style":82},[203],{"type":47,"value":107},{"type":41,"tag":75,"props":205,"children":206},{"style":88},[207],{"type":47,"value":112},{"type":41,"tag":75,"props":209,"children":210},{"style":115},[211],{"type":47,"value":212},"@json-render\u002Fcore",{"type":41,"tag":75,"props":214,"children":215},{"style":88},[216],{"type":47,"value":122},{"type":41,"tag":75,"props":218,"children":219},{"style":88},[220],{"type":47,"value":127},{"type":41,"tag":75,"props":222,"children":224},{"class":77,"line":223},4,[225],{"type":41,"tag":75,"props":226,"children":228},{"emptyLinePlaceholder":227},true,[229],{"type":47,"value":230},"\n",{"type":41,"tag":75,"props":232,"children":234},{"class":77,"line":233},5,[235,241,246,251,256,261,265],{"type":41,"tag":75,"props":236,"children":238},{"style":237},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[239],{"type":47,"value":240},"const",{"type":41,"tag":75,"props":242,"children":243},{"style":94},[244],{"type":47,"value":245}," catalog ",{"type":41,"tag":75,"props":247,"children":248},{"style":88},[249],{"type":47,"value":250},"=",{"type":41,"tag":75,"props":252,"children":254},{"style":253},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[255],{"type":47,"value":195},{"type":41,"tag":75,"props":257,"children":258},{"style":94},[259],{"type":47,"value":260},"(schema",{"type":41,"tag":75,"props":262,"children":263},{"style":88},[264],{"type":47,"value":149},{"type":41,"tag":75,"props":266,"children":267},{"style":88},[268],{"type":47,"value":269}," {\n",{"type":41,"tag":75,"props":271,"children":273},{"class":77,"line":272},6,[274,280,285,289],{"type":41,"tag":75,"props":275,"children":277},{"style":276},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[278],{"type":47,"value":279},"  components",{"type":41,"tag":75,"props":281,"children":282},{"style":88},[283],{"type":47,"value":284},":",{"type":41,"tag":75,"props":286,"children":287},{"style":94},[288],{"type":47,"value":154},{"type":41,"tag":75,"props":290,"children":291},{"style":88},[292],{"type":47,"value":293},",\n",{"type":41,"tag":75,"props":295,"children":297},{"class":77,"line":296},7,[298,303,308],{"type":41,"tag":75,"props":299,"children":300},{"style":88},[301],{"type":47,"value":302},"}",{"type":41,"tag":75,"props":304,"children":305},{"style":94},[306],{"type":47,"value":307},")",{"type":41,"tag":75,"props":309,"children":310},{"style":88},[311],{"type":47,"value":127},{"type":41,"tag":75,"props":313,"children":315},{"class":77,"line":314},8,[316],{"type":41,"tag":75,"props":317,"children":318},{"emptyLinePlaceholder":227},[319],{"type":47,"value":230},{"type":41,"tag":75,"props":321,"children":323},{"class":77,"line":322},9,[324,328,333,337],{"type":41,"tag":75,"props":325,"children":326},{"style":237},[327],{"type":47,"value":240},{"type":41,"tag":75,"props":329,"children":330},{"style":94},[331],{"type":47,"value":332}," spec ",{"type":41,"tag":75,"props":334,"children":335},{"style":88},[336],{"type":47,"value":250},{"type":41,"tag":75,"props":338,"children":339},{"style":88},[340],{"type":47,"value":269},{"type":41,"tag":75,"props":342,"children":344},{"class":77,"line":343},10,[345,350,354,358,363,367],{"type":41,"tag":75,"props":346,"children":347},{"style":276},[348],{"type":47,"value":349},"  root",{"type":41,"tag":75,"props":351,"children":352},{"style":88},[353],{"type":47,"value":284},{"type":41,"tag":75,"props":355,"children":356},{"style":88},[357],{"type":47,"value":112},{"type":41,"tag":75,"props":359,"children":360},{"style":115},[361],{"type":47,"value":362},"html-1",{"type":41,"tag":75,"props":364,"children":365},{"style":88},[366],{"type":47,"value":122},{"type":41,"tag":75,"props":368,"children":369},{"style":88},[370],{"type":47,"value":293},{"type":41,"tag":75,"props":372,"children":374},{"class":77,"line":373},11,[375,380,384],{"type":41,"tag":75,"props":376,"children":377},{"style":276},[378],{"type":47,"value":379},"  elements",{"type":41,"tag":75,"props":381,"children":382},{"style":88},[383],{"type":47,"value":284},{"type":41,"tag":75,"props":385,"children":386},{"style":88},[387],{"type":47,"value":269},{"type":41,"tag":75,"props":389,"children":391},{"class":77,"line":390},12,[392,397,401,405,409,413,418,422,426,431,435,439,444,448,452,457,461,465,470,474,478,483,487,491,496,500,505,510,514,519,523,528,532,536,540,545,549,554],{"type":41,"tag":75,"props":393,"children":394},{"style":88},[395],{"type":47,"value":396},"    \"",{"type":41,"tag":75,"props":398,"children":399},{"style":276},[400],{"type":47,"value":362},{"type":41,"tag":75,"props":402,"children":403},{"style":88},[404],{"type":47,"value":122},{"type":41,"tag":75,"props":406,"children":407},{"style":88},[408],{"type":47,"value":284},{"type":41,"tag":75,"props":410,"children":411},{"style":88},[412],{"type":47,"value":91},{"type":41,"tag":75,"props":414,"children":415},{"style":276},[416],{"type":47,"value":417}," type",{"type":41,"tag":75,"props":419,"children":420},{"style":88},[421],{"type":47,"value":284},{"type":41,"tag":75,"props":423,"children":424},{"style":88},[425],{"type":47,"value":112},{"type":41,"tag":75,"props":427,"children":428},{"style":115},[429],{"type":47,"value":430},"Html",{"type":41,"tag":75,"props":432,"children":433},{"style":88},[434],{"type":47,"value":122},{"type":41,"tag":75,"props":436,"children":437},{"style":88},[438],{"type":47,"value":149},{"type":41,"tag":75,"props":440,"children":441},{"style":276},[442],{"type":47,"value":443}," props",{"type":41,"tag":75,"props":445,"children":446},{"style":88},[447],{"type":47,"value":284},{"type":41,"tag":75,"props":449,"children":450},{"style":88},[451],{"type":47,"value":91},{"type":41,"tag":75,"props":453,"children":454},{"style":276},[455],{"type":47,"value":456}," lang",{"type":41,"tag":75,"props":458,"children":459},{"style":88},[460],{"type":47,"value":284},{"type":41,"tag":75,"props":462,"children":463},{"style":88},[464],{"type":47,"value":112},{"type":41,"tag":75,"props":466,"children":467},{"style":115},[468],{"type":47,"value":469},"en",{"type":41,"tag":75,"props":471,"children":472},{"style":88},[473],{"type":47,"value":122},{"type":41,"tag":75,"props":475,"children":476},{"style":88},[477],{"type":47,"value":149},{"type":41,"tag":75,"props":479,"children":480},{"style":276},[481],{"type":47,"value":482}," dir",{"type":41,"tag":75,"props":484,"children":485},{"style":88},[486],{"type":47,"value":284},{"type":41,"tag":75,"props":488,"children":489},{"style":88},[490],{"type":47,"value":112},{"type":41,"tag":75,"props":492,"children":493},{"style":115},[494],{"type":47,"value":495},"ltr",{"type":41,"tag":75,"props":497,"children":498},{"style":88},[499],{"type":47,"value":122},{"type":41,"tag":75,"props":501,"children":502},{"style":88},[503],{"type":47,"value":504}," },",{"type":41,"tag":75,"props":506,"children":507},{"style":276},[508],{"type":47,"value":509}," children",{"type":41,"tag":75,"props":511,"children":512},{"style":88},[513],{"type":47,"value":284},{"type":41,"tag":75,"props":515,"children":516},{"style":94},[517],{"type":47,"value":518}," [",{"type":41,"tag":75,"props":520,"children":521},{"style":88},[522],{"type":47,"value":122},{"type":41,"tag":75,"props":524,"children":525},{"style":115},[526],{"type":47,"value":527},"head-1",{"type":41,"tag":75,"props":529,"children":530},{"style":88},[531],{"type":47,"value":122},{"type":41,"tag":75,"props":533,"children":534},{"style":88},[535],{"type":47,"value":149},{"type":41,"tag":75,"props":537,"children":538},{"style":88},[539],{"type":47,"value":112},{"type":41,"tag":75,"props":541,"children":542},{"style":115},[543],{"type":47,"value":544},"body-1",{"type":41,"tag":75,"props":546,"children":547},{"style":88},[548],{"type":47,"value":122},{"type":41,"tag":75,"props":550,"children":551},{"style":94},[552],{"type":47,"value":553},"] ",{"type":41,"tag":75,"props":555,"children":556},{"style":88},[557],{"type":47,"value":558},"},\n",{"type":41,"tag":75,"props":560,"children":562},{"class":77,"line":561},13,[563,567,571,575,579,583,587,591,595,600,604,608,612,616,621,625,629,634],{"type":41,"tag":75,"props":564,"children":565},{"style":88},[566],{"type":47,"value":396},{"type":41,"tag":75,"props":568,"children":569},{"style":276},[570],{"type":47,"value":527},{"type":41,"tag":75,"props":572,"children":573},{"style":88},[574],{"type":47,"value":122},{"type":41,"tag":75,"props":576,"children":577},{"style":88},[578],{"type":47,"value":284},{"type":41,"tag":75,"props":580,"children":581},{"style":88},[582],{"type":47,"value":91},{"type":41,"tag":75,"props":584,"children":585},{"style":276},[586],{"type":47,"value":417},{"type":41,"tag":75,"props":588,"children":589},{"style":88},[590],{"type":47,"value":284},{"type":41,"tag":75,"props":592,"children":593},{"style":88},[594],{"type":47,"value":112},{"type":41,"tag":75,"props":596,"children":597},{"style":115},[598],{"type":47,"value":599},"Head",{"type":41,"tag":75,"props":601,"children":602},{"style":88},[603],{"type":47,"value":122},{"type":41,"tag":75,"props":605,"children":606},{"style":88},[607],{"type":47,"value":149},{"type":41,"tag":75,"props":609,"children":610},{"style":276},[611],{"type":47,"value":443},{"type":41,"tag":75,"props":613,"children":614},{"style":88},[615],{"type":47,"value":284},{"type":41,"tag":75,"props":617,"children":618},{"style":88},[619],{"type":47,"value":620}," {},",{"type":41,"tag":75,"props":622,"children":623},{"style":276},[624],{"type":47,"value":509},{"type":41,"tag":75,"props":626,"children":627},{"style":88},[628],{"type":47,"value":284},{"type":41,"tag":75,"props":630,"children":631},{"style":94},[632],{"type":47,"value":633}," [] ",{"type":41,"tag":75,"props":635,"children":636},{"style":88},[637],{"type":47,"value":558},{"type":41,"tag":75,"props":639,"children":641},{"class":77,"line":640},14,[642,646,650,654,658],{"type":41,"tag":75,"props":643,"children":644},{"style":88},[645],{"type":47,"value":396},{"type":41,"tag":75,"props":647,"children":648},{"style":276},[649],{"type":47,"value":544},{"type":41,"tag":75,"props":651,"children":652},{"style":88},[653],{"type":47,"value":122},{"type":41,"tag":75,"props":655,"children":656},{"style":88},[657],{"type":47,"value":284},{"type":41,"tag":75,"props":659,"children":660},{"style":88},[661],{"type":47,"value":269},{"type":41,"tag":75,"props":663,"children":665},{"class":77,"line":664},15,[666,671,675,679,684,688],{"type":41,"tag":75,"props":667,"children":668},{"style":276},[669],{"type":47,"value":670},"      type",{"type":41,"tag":75,"props":672,"children":673},{"style":88},[674],{"type":47,"value":284},{"type":41,"tag":75,"props":676,"children":677},{"style":88},[678],{"type":47,"value":112},{"type":41,"tag":75,"props":680,"children":681},{"style":115},[682],{"type":47,"value":683},"Body",{"type":41,"tag":75,"props":685,"children":686},{"style":88},[687],{"type":47,"value":122},{"type":41,"tag":75,"props":689,"children":690},{"style":88},[691],{"type":47,"value":293},{"type":41,"tag":75,"props":693,"children":695},{"class":77,"line":694},16,[696,701,705,709,714,718,722,727,731,735,740,744,748],{"type":41,"tag":75,"props":697,"children":698},{"style":276},[699],{"type":47,"value":700},"      props",{"type":41,"tag":75,"props":702,"children":703},{"style":88},[704],{"type":47,"value":284},{"type":41,"tag":75,"props":706,"children":707},{"style":88},[708],{"type":47,"value":91},{"type":41,"tag":75,"props":710,"children":711},{"style":276},[712],{"type":47,"value":713}," style",{"type":41,"tag":75,"props":715,"children":716},{"style":88},[717],{"type":47,"value":284},{"type":41,"tag":75,"props":719,"children":720},{"style":88},[721],{"type":47,"value":91},{"type":41,"tag":75,"props":723,"children":724},{"style":276},[725],{"type":47,"value":726}," backgroundColor",{"type":41,"tag":75,"props":728,"children":729},{"style":88},[730],{"type":47,"value":284},{"type":41,"tag":75,"props":732,"children":733},{"style":88},[734],{"type":47,"value":112},{"type":41,"tag":75,"props":736,"children":737},{"style":115},[738],{"type":47,"value":739},"#f6f9fc",{"type":41,"tag":75,"props":741,"children":742},{"style":88},[743],{"type":47,"value":122},{"type":41,"tag":75,"props":745,"children":746},{"style":88},[747],{"type":47,"value":102},{"type":41,"tag":75,"props":749,"children":750},{"style":88},[751],{"type":47,"value":752}," },\n",{"type":41,"tag":75,"props":754,"children":756},{"class":77,"line":755},17,[757,762,766,770,774,779,783,788],{"type":41,"tag":75,"props":758,"children":759},{"style":276},[760],{"type":47,"value":761},"      children",{"type":41,"tag":75,"props":763,"children":764},{"style":88},[765],{"type":47,"value":284},{"type":41,"tag":75,"props":767,"children":768},{"style":94},[769],{"type":47,"value":518},{"type":41,"tag":75,"props":771,"children":772},{"style":88},[773],{"type":47,"value":122},{"type":41,"tag":75,"props":775,"children":776},{"style":115},[777],{"type":47,"value":778},"container-1",{"type":41,"tag":75,"props":780,"children":781},{"style":88},[782],{"type":47,"value":122},{"type":41,"tag":75,"props":784,"children":785},{"style":94},[786],{"type":47,"value":787},"]",{"type":41,"tag":75,"props":789,"children":790},{"style":88},[791],{"type":47,"value":293},{"type":41,"tag":75,"props":793,"children":795},{"class":77,"line":794},18,[796],{"type":41,"tag":75,"props":797,"children":798},{"style":88},[799],{"type":47,"value":800},"    },\n",{"type":41,"tag":75,"props":802,"children":804},{"class":77,"line":803},19,[805,809,813,817,821],{"type":41,"tag":75,"props":806,"children":807},{"style":88},[808],{"type":47,"value":396},{"type":41,"tag":75,"props":810,"children":811},{"style":276},[812],{"type":47,"value":778},{"type":41,"tag":75,"props":814,"children":815},{"style":88},[816],{"type":47,"value":122},{"type":41,"tag":75,"props":818,"children":819},{"style":88},[820],{"type":47,"value":284},{"type":41,"tag":75,"props":822,"children":823},{"style":88},[824],{"type":47,"value":269},{"type":41,"tag":75,"props":826,"children":828},{"class":77,"line":827},20,[829,833,837,841,846,850],{"type":41,"tag":75,"props":830,"children":831},{"style":276},[832],{"type":47,"value":670},{"type":41,"tag":75,"props":834,"children":835},{"style":88},[836],{"type":47,"value":284},{"type":41,"tag":75,"props":838,"children":839},{"style":88},[840],{"type":47,"value":112},{"type":41,"tag":75,"props":842,"children":843},{"style":115},[844],{"type":47,"value":845},"Container",{"type":41,"tag":75,"props":847,"children":848},{"style":88},[849],{"type":47,"value":122},{"type":41,"tag":75,"props":851,"children":852},{"style":88},[853],{"type":47,"value":293},{"type":41,"tag":75,"props":855,"children":857},{"class":77,"line":856},21,[858,862,866,870,874,878,882,887,891,895,900,904,908,913,917,921,926,930,934,939,943,947,952,956,960],{"type":41,"tag":75,"props":859,"children":860},{"style":276},[861],{"type":47,"value":700},{"type":41,"tag":75,"props":863,"children":864},{"style":88},[865],{"type":47,"value":284},{"type":41,"tag":75,"props":867,"children":868},{"style":88},[869],{"type":47,"value":91},{"type":41,"tag":75,"props":871,"children":872},{"style":276},[873],{"type":47,"value":713},{"type":41,"tag":75,"props":875,"children":876},{"style":88},[877],{"type":47,"value":284},{"type":41,"tag":75,"props":879,"children":880},{"style":88},[881],{"type":47,"value":91},{"type":41,"tag":75,"props":883,"children":884},{"style":276},[885],{"type":47,"value":886}," maxWidth",{"type":41,"tag":75,"props":888,"children":889},{"style":88},[890],{"type":47,"value":284},{"type":41,"tag":75,"props":892,"children":893},{"style":88},[894],{"type":47,"value":112},{"type":41,"tag":75,"props":896,"children":897},{"style":115},[898],{"type":47,"value":899},"600px",{"type":41,"tag":75,"props":901,"children":902},{"style":88},[903],{"type":47,"value":122},{"type":41,"tag":75,"props":905,"children":906},{"style":88},[907],{"type":47,"value":149},{"type":41,"tag":75,"props":909,"children":910},{"style":276},[911],{"type":47,"value":912}," margin",{"type":41,"tag":75,"props":914,"children":915},{"style":88},[916],{"type":47,"value":284},{"type":41,"tag":75,"props":918,"children":919},{"style":88},[920],{"type":47,"value":112},{"type":41,"tag":75,"props":922,"children":923},{"style":115},[924],{"type":47,"value":925},"0 auto",{"type":41,"tag":75,"props":927,"children":928},{"style":88},[929],{"type":47,"value":122},{"type":41,"tag":75,"props":931,"children":932},{"style":88},[933],{"type":47,"value":149},{"type":41,"tag":75,"props":935,"children":936},{"style":276},[937],{"type":47,"value":938}," padding",{"type":41,"tag":75,"props":940,"children":941},{"style":88},[942],{"type":47,"value":284},{"type":41,"tag":75,"props":944,"children":945},{"style":88},[946],{"type":47,"value":112},{"type":41,"tag":75,"props":948,"children":949},{"style":115},[950],{"type":47,"value":951},"20px",{"type":41,"tag":75,"props":953,"children":954},{"style":88},[955],{"type":47,"value":122},{"type":41,"tag":75,"props":957,"children":958},{"style":88},[959],{"type":47,"value":102},{"type":41,"tag":75,"props":961,"children":962},{"style":88},[963],{"type":47,"value":752},{"type":41,"tag":75,"props":965,"children":967},{"class":77,"line":966},22,[968,972,976,980,984,989,993,997,1001,1006,1010,1014],{"type":41,"tag":75,"props":969,"children":970},{"style":276},[971],{"type":47,"value":761},{"type":41,"tag":75,"props":973,"children":974},{"style":88},[975],{"type":47,"value":284},{"type":41,"tag":75,"props":977,"children":978},{"style":94},[979],{"type":47,"value":518},{"type":41,"tag":75,"props":981,"children":982},{"style":88},[983],{"type":47,"value":122},{"type":41,"tag":75,"props":985,"children":986},{"style":115},[987],{"type":47,"value":988},"heading-1",{"type":41,"tag":75,"props":990,"children":991},{"style":88},[992],{"type":47,"value":122},{"type":41,"tag":75,"props":994,"children":995},{"style":88},[996],{"type":47,"value":149},{"type":41,"tag":75,"props":998,"children":999},{"style":88},[1000],{"type":47,"value":112},{"type":41,"tag":75,"props":1002,"children":1003},{"style":115},[1004],{"type":47,"value":1005},"text-1",{"type":41,"tag":75,"props":1007,"children":1008},{"style":88},[1009],{"type":47,"value":122},{"type":41,"tag":75,"props":1011,"children":1012},{"style":94},[1013],{"type":47,"value":787},{"type":41,"tag":75,"props":1015,"children":1016},{"style":88},[1017],{"type":47,"value":293},{"type":41,"tag":75,"props":1019,"children":1021},{"class":77,"line":1020},23,[1022],{"type":41,"tag":75,"props":1023,"children":1024},{"style":88},[1025],{"type":47,"value":800},{"type":41,"tag":75,"props":1027,"children":1029},{"class":77,"line":1028},24,[1030,1034,1038,1042,1046,1050,1054,1058,1062,1067,1071,1075,1079,1083,1087,1092,1096,1100,1105,1109,1113,1117,1121,1125],{"type":41,"tag":75,"props":1031,"children":1032},{"style":88},[1033],{"type":47,"value":396},{"type":41,"tag":75,"props":1035,"children":1036},{"style":276},[1037],{"type":47,"value":988},{"type":41,"tag":75,"props":1039,"children":1040},{"style":88},[1041],{"type":47,"value":122},{"type":41,"tag":75,"props":1043,"children":1044},{"style":88},[1045],{"type":47,"value":284},{"type":41,"tag":75,"props":1047,"children":1048},{"style":88},[1049],{"type":47,"value":91},{"type":41,"tag":75,"props":1051,"children":1052},{"style":276},[1053],{"type":47,"value":417},{"type":41,"tag":75,"props":1055,"children":1056},{"style":88},[1057],{"type":47,"value":284},{"type":41,"tag":75,"props":1059,"children":1060},{"style":88},[1061],{"type":47,"value":112},{"type":41,"tag":75,"props":1063,"children":1064},{"style":115},[1065],{"type":47,"value":1066},"Heading",{"type":41,"tag":75,"props":1068,"children":1069},{"style":88},[1070],{"type":47,"value":122},{"type":41,"tag":75,"props":1072,"children":1073},{"style":88},[1074],{"type":47,"value":149},{"type":41,"tag":75,"props":1076,"children":1077},{"style":276},[1078],{"type":47,"value":443},{"type":41,"tag":75,"props":1080,"children":1081},{"style":88},[1082],{"type":47,"value":284},{"type":41,"tag":75,"props":1084,"children":1085},{"style":88},[1086],{"type":47,"value":91},{"type":41,"tag":75,"props":1088,"children":1089},{"style":276},[1090],{"type":47,"value":1091}," text",{"type":41,"tag":75,"props":1093,"children":1094},{"style":88},[1095],{"type":47,"value":284},{"type":41,"tag":75,"props":1097,"children":1098},{"style":88},[1099],{"type":47,"value":112},{"type":41,"tag":75,"props":1101,"children":1102},{"style":115},[1103],{"type":47,"value":1104},"Welcome",{"type":41,"tag":75,"props":1106,"children":1107},{"style":88},[1108],{"type":47,"value":122},{"type":41,"tag":75,"props":1110,"children":1111},{"style":88},[1112],{"type":47,"value":504},{"type":41,"tag":75,"props":1114,"children":1115},{"style":276},[1116],{"type":47,"value":509},{"type":41,"tag":75,"props":1118,"children":1119},{"style":88},[1120],{"type":47,"value":284},{"type":41,"tag":75,"props":1122,"children":1123},{"style":94},[1124],{"type":47,"value":633},{"type":41,"tag":75,"props":1126,"children":1127},{"style":88},[1128],{"type":47,"value":558},{"type":41,"tag":75,"props":1130,"children":1132},{"class":77,"line":1131},25,[1133,1137,1141,1145,1149,1153,1157,1161,1165,1170,1174,1178,1182,1186,1190,1194,1198,1202,1207,1211,1215,1219,1223,1227],{"type":41,"tag":75,"props":1134,"children":1135},{"style":88},[1136],{"type":47,"value":396},{"type":41,"tag":75,"props":1138,"children":1139},{"style":276},[1140],{"type":47,"value":1005},{"type":41,"tag":75,"props":1142,"children":1143},{"style":88},[1144],{"type":47,"value":122},{"type":41,"tag":75,"props":1146,"children":1147},{"style":88},[1148],{"type":47,"value":284},{"type":41,"tag":75,"props":1150,"children":1151},{"style":88},[1152],{"type":47,"value":91},{"type":41,"tag":75,"props":1154,"children":1155},{"style":276},[1156],{"type":47,"value":417},{"type":41,"tag":75,"props":1158,"children":1159},{"style":88},[1160],{"type":47,"value":284},{"type":41,"tag":75,"props":1162,"children":1163},{"style":88},[1164],{"type":47,"value":112},{"type":41,"tag":75,"props":1166,"children":1167},{"style":115},[1168],{"type":47,"value":1169},"Text",{"type":41,"tag":75,"props":1171,"children":1172},{"style":88},[1173],{"type":47,"value":122},{"type":41,"tag":75,"props":1175,"children":1176},{"style":88},[1177],{"type":47,"value":149},{"type":41,"tag":75,"props":1179,"children":1180},{"style":276},[1181],{"type":47,"value":443},{"type":41,"tag":75,"props":1183,"children":1184},{"style":88},[1185],{"type":47,"value":284},{"type":41,"tag":75,"props":1187,"children":1188},{"style":88},[1189],{"type":47,"value":91},{"type":41,"tag":75,"props":1191,"children":1192},{"style":276},[1193],{"type":47,"value":1091},{"type":41,"tag":75,"props":1195,"children":1196},{"style":88},[1197],{"type":47,"value":284},{"type":41,"tag":75,"props":1199,"children":1200},{"style":88},[1201],{"type":47,"value":112},{"type":41,"tag":75,"props":1203,"children":1204},{"style":115},[1205],{"type":47,"value":1206},"Thanks for signing up.",{"type":41,"tag":75,"props":1208,"children":1209},{"style":88},[1210],{"type":47,"value":122},{"type":41,"tag":75,"props":1212,"children":1213},{"style":88},[1214],{"type":47,"value":504},{"type":41,"tag":75,"props":1216,"children":1217},{"style":276},[1218],{"type":47,"value":509},{"type":41,"tag":75,"props":1220,"children":1221},{"style":88},[1222],{"type":47,"value":284},{"type":41,"tag":75,"props":1224,"children":1225},{"style":94},[1226],{"type":47,"value":633},{"type":41,"tag":75,"props":1228,"children":1229},{"style":88},[1230],{"type":47,"value":558},{"type":41,"tag":75,"props":1232,"children":1234},{"class":77,"line":1233},26,[1235],{"type":41,"tag":75,"props":1236,"children":1237},{"style":88},[1238],{"type":47,"value":1239},"  },\n",{"type":41,"tag":75,"props":1241,"children":1243},{"class":77,"line":1242},27,[1244],{"type":41,"tag":75,"props":1245,"children":1246},{"style":88},[1247],{"type":47,"value":1248},"};\n",{"type":41,"tag":75,"props":1250,"children":1252},{"class":77,"line":1251},28,[1253],{"type":41,"tag":75,"props":1254,"children":1255},{"emptyLinePlaceholder":227},[1256],{"type":47,"value":230},{"type":41,"tag":75,"props":1258,"children":1260},{"class":77,"line":1259},29,[1261,1265,1270,1274,1279,1283,1288],{"type":41,"tag":75,"props":1262,"children":1263},{"style":237},[1264],{"type":47,"value":240},{"type":41,"tag":75,"props":1266,"children":1267},{"style":94},[1268],{"type":47,"value":1269}," html ",{"type":41,"tag":75,"props":1271,"children":1272},{"style":88},[1273],{"type":47,"value":250},{"type":41,"tag":75,"props":1275,"children":1276},{"style":82},[1277],{"type":47,"value":1278}," await",{"type":41,"tag":75,"props":1280,"children":1281},{"style":253},[1282],{"type":47,"value":97},{"type":41,"tag":75,"props":1284,"children":1285},{"style":94},[1286],{"type":47,"value":1287},"(spec)",{"type":41,"tag":75,"props":1289,"children":1290},{"style":88},[1291],{"type":47,"value":127},{"type":41,"tag":56,"props":1293,"children":1295},{"id":1294},"spec-structure-element-tree",[1296],{"type":47,"value":1297},"Spec Structure (Element Tree)",{"type":41,"tag":50,"props":1299,"children":1300},{},[1301,1303,1309,1311,1316,1318,1324,1326,1331,1333,1338,1340,1345,1347,1352,1354,1359,1361,1366],{"type":47,"value":1302},"Same flat element tree as ",{"type":41,"tag":71,"props":1304,"children":1306},{"className":1305},[],[1307],{"type":47,"value":1308},"@json-render\u002Freact",{"type":47,"value":1310},": ",{"type":41,"tag":71,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":47,"value":38},{"type":47,"value":1317}," key plus ",{"type":41,"tag":71,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":47,"value":1323},"elements",{"type":47,"value":1325}," map. Root must be ",{"type":41,"tag":71,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":47,"value":430},{"type":47,"value":1332},"; children of ",{"type":41,"tag":71,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":47,"value":430},{"type":47,"value":1339}," should be ",{"type":41,"tag":71,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":47,"value":599},{"type":47,"value":1346}," and ",{"type":41,"tag":71,"props":1348,"children":1350},{"className":1349},[],[1351],{"type":47,"value":683},{"type":47,"value":1353},". Use ",{"type":41,"tag":71,"props":1355,"children":1357},{"className":1356},[],[1358],{"type":47,"value":845},{"type":47,"value":1360}," (e.g. max-width 600px) inside ",{"type":41,"tag":71,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":47,"value":683},{"type":47,"value":1367}," for client-safe layout.",{"type":41,"tag":56,"props":1369,"children":1371},{"id":1370},"creating-a-catalog-and-registry",[1372],{"type":47,"value":1373},"Creating a Catalog and Registry",{"type":41,"tag":63,"props":1375,"children":1377},{"className":65,"code":1376,"language":67,"meta":68,"style":68},"import { defineCatalog } from \"@json-render\u002Fcore\";\nimport { schema, defineRegistry, renderToHtml } from \"@json-render\u002Freact-email\";\nimport { standardComponentDefinitions } from \"@json-render\u002Freact-email\u002Fcatalog\";\nimport { Container, Heading, Text } from \"@react-email\u002Fcomponents\";\nimport { z } from \"zod\";\n\nconst catalog = defineCatalog(schema, {\n  components: {\n    ...standardComponentDefinitions,\n    Alert: {\n      props: z.object({\n        message: z.string(),\n        variant: z.enum([\"info\", \"success\", \"warning\"]).nullable(),\n      }),\n      slots: [],\n      description: \"A highlighted message block\",\n    },\n  },\n  actions: {},\n});\n\nconst { registry } = defineRegistry(catalog, {\n  components: {\n    Alert: ({ props }) => (\n      \u003CContainer style={{ padding: 16, backgroundColor: \"#eff6ff\", borderRadius: 8 }}>\n        \u003CText style={{ margin: 0 }}>{props.message}\u003C\u002FText>\n      \u003C\u002FContainer>\n    ),\n  },\n});\n\nconst html = await renderToHtml(spec, { registry });\n",[1378],{"type":41,"tag":71,"props":1379,"children":1380},{"__ignoreMap":68},[1381,1420,1476,1516,1575,1616,1623,1654,1669,1686,1702,1737,1771,1870,1886,1907,1936,1943,1950,1967,1982,1989,2031,2046,2082,2163,2217,2233,2245,2252,2268,2276],{"type":41,"tag":75,"props":1382,"children":1383},{"class":77,"line":78},[1384,1388,1392,1396,1400,1404,1408,1412,1416],{"type":41,"tag":75,"props":1385,"children":1386},{"style":82},[1387],{"type":47,"value":85},{"type":41,"tag":75,"props":1389,"children":1390},{"style":88},[1391],{"type":47,"value":91},{"type":41,"tag":75,"props":1393,"children":1394},{"style":94},[1395],{"type":47,"value":195},{"type":41,"tag":75,"props":1397,"children":1398},{"style":88},[1399],{"type":47,"value":102},{"type":41,"tag":75,"props":1401,"children":1402},{"style":82},[1403],{"type":47,"value":107},{"type":41,"tag":75,"props":1405,"children":1406},{"style":88},[1407],{"type":47,"value":112},{"type":41,"tag":75,"props":1409,"children":1410},{"style":115},[1411],{"type":47,"value":212},{"type":41,"tag":75,"props":1413,"children":1414},{"style":88},[1415],{"type":47,"value":122},{"type":41,"tag":75,"props":1417,"children":1418},{"style":88},[1419],{"type":47,"value":127},{"type":41,"tag":75,"props":1421,"children":1422},{"class":77,"line":130},[1423,1427,1431,1435,1439,1444,1448,1452,1456,1460,1464,1468,1472],{"type":41,"tag":75,"props":1424,"children":1425},{"style":82},[1426],{"type":47,"value":85},{"type":41,"tag":75,"props":1428,"children":1429},{"style":88},[1430],{"type":47,"value":91},{"type":41,"tag":75,"props":1432,"children":1433},{"style":94},[1434],{"type":47,"value":144},{"type":41,"tag":75,"props":1436,"children":1437},{"style":88},[1438],{"type":47,"value":149},{"type":41,"tag":75,"props":1440,"children":1441},{"style":94},[1442],{"type":47,"value":1443}," defineRegistry",{"type":41,"tag":75,"props":1445,"children":1446},{"style":88},[1447],{"type":47,"value":149},{"type":41,"tag":75,"props":1449,"children":1450},{"style":94},[1451],{"type":47,"value":97},{"type":41,"tag":75,"props":1453,"children":1454},{"style":88},[1455],{"type":47,"value":102},{"type":41,"tag":75,"props":1457,"children":1458},{"style":82},[1459],{"type":47,"value":107},{"type":41,"tag":75,"props":1461,"children":1462},{"style":88},[1463],{"type":47,"value":112},{"type":41,"tag":75,"props":1465,"children":1466},{"style":115},[1467],{"type":47,"value":48},{"type":41,"tag":75,"props":1469,"children":1470},{"style":88},[1471],{"type":47,"value":122},{"type":41,"tag":75,"props":1473,"children":1474},{"style":88},[1475],{"type":47,"value":127},{"type":41,"tag":75,"props":1477,"children":1478},{"class":77,"line":181},[1479,1483,1487,1491,1495,1499,1503,1508,1512],{"type":41,"tag":75,"props":1480,"children":1481},{"style":82},[1482],{"type":47,"value":85},{"type":41,"tag":75,"props":1484,"children":1485},{"style":88},[1486],{"type":47,"value":91},{"type":41,"tag":75,"props":1488,"children":1489},{"style":94},[1490],{"type":47,"value":154},{"type":41,"tag":75,"props":1492,"children":1493},{"style":88},[1494],{"type":47,"value":102},{"type":41,"tag":75,"props":1496,"children":1497},{"style":82},[1498],{"type":47,"value":107},{"type":41,"tag":75,"props":1500,"children":1501},{"style":88},[1502],{"type":47,"value":112},{"type":41,"tag":75,"props":1504,"children":1505},{"style":115},[1506],{"type":47,"value":1507},"@json-render\u002Freact-email\u002Fcatalog",{"type":41,"tag":75,"props":1509,"children":1510},{"style":88},[1511],{"type":47,"value":122},{"type":41,"tag":75,"props":1513,"children":1514},{"style":88},[1515],{"type":47,"value":127},{"type":41,"tag":75,"props":1517,"children":1518},{"class":77,"line":223},[1519,1523,1527,1532,1536,1541,1545,1550,1554,1558,1562,1567,1571],{"type":41,"tag":75,"props":1520,"children":1521},{"style":82},[1522],{"type":47,"value":85},{"type":41,"tag":75,"props":1524,"children":1525},{"style":88},[1526],{"type":47,"value":91},{"type":41,"tag":75,"props":1528,"children":1529},{"style":94},[1530],{"type":47,"value":1531}," Container",{"type":41,"tag":75,"props":1533,"children":1534},{"style":88},[1535],{"type":47,"value":149},{"type":41,"tag":75,"props":1537,"children":1538},{"style":94},[1539],{"type":47,"value":1540}," Heading",{"type":41,"tag":75,"props":1542,"children":1543},{"style":88},[1544],{"type":47,"value":149},{"type":41,"tag":75,"props":1546,"children":1547},{"style":94},[1548],{"type":47,"value":1549}," Text",{"type":41,"tag":75,"props":1551,"children":1552},{"style":88},[1553],{"type":47,"value":102},{"type":41,"tag":75,"props":1555,"children":1556},{"style":82},[1557],{"type":47,"value":107},{"type":41,"tag":75,"props":1559,"children":1560},{"style":88},[1561],{"type":47,"value":112},{"type":41,"tag":75,"props":1563,"children":1564},{"style":115},[1565],{"type":47,"value":1566},"@react-email\u002Fcomponents",{"type":41,"tag":75,"props":1568,"children":1569},{"style":88},[1570],{"type":47,"value":122},{"type":41,"tag":75,"props":1572,"children":1573},{"style":88},[1574],{"type":47,"value":127},{"type":41,"tag":75,"props":1576,"children":1577},{"class":77,"line":233},[1578,1582,1586,1591,1595,1599,1603,1608,1612],{"type":41,"tag":75,"props":1579,"children":1580},{"style":82},[1581],{"type":47,"value":85},{"type":41,"tag":75,"props":1583,"children":1584},{"style":88},[1585],{"type":47,"value":91},{"type":41,"tag":75,"props":1587,"children":1588},{"style":94},[1589],{"type":47,"value":1590}," z",{"type":41,"tag":75,"props":1592,"children":1593},{"style":88},[1594],{"type":47,"value":102},{"type":41,"tag":75,"props":1596,"children":1597},{"style":82},[1598],{"type":47,"value":107},{"type":41,"tag":75,"props":1600,"children":1601},{"style":88},[1602],{"type":47,"value":112},{"type":41,"tag":75,"props":1604,"children":1605},{"style":115},[1606],{"type":47,"value":1607},"zod",{"type":41,"tag":75,"props":1609,"children":1610},{"style":88},[1611],{"type":47,"value":122},{"type":41,"tag":75,"props":1613,"children":1614},{"style":88},[1615],{"type":47,"value":127},{"type":41,"tag":75,"props":1617,"children":1618},{"class":77,"line":272},[1619],{"type":41,"tag":75,"props":1620,"children":1621},{"emptyLinePlaceholder":227},[1622],{"type":47,"value":230},{"type":41,"tag":75,"props":1624,"children":1625},{"class":77,"line":296},[1626,1630,1634,1638,1642,1646,1650],{"type":41,"tag":75,"props":1627,"children":1628},{"style":237},[1629],{"type":47,"value":240},{"type":41,"tag":75,"props":1631,"children":1632},{"style":94},[1633],{"type":47,"value":245},{"type":41,"tag":75,"props":1635,"children":1636},{"style":88},[1637],{"type":47,"value":250},{"type":41,"tag":75,"props":1639,"children":1640},{"style":253},[1641],{"type":47,"value":195},{"type":41,"tag":75,"props":1643,"children":1644},{"style":94},[1645],{"type":47,"value":260},{"type":41,"tag":75,"props":1647,"children":1648},{"style":88},[1649],{"type":47,"value":149},{"type":41,"tag":75,"props":1651,"children":1652},{"style":88},[1653],{"type":47,"value":269},{"type":41,"tag":75,"props":1655,"children":1656},{"class":77,"line":314},[1657,1661,1665],{"type":41,"tag":75,"props":1658,"children":1659},{"style":276},[1660],{"type":47,"value":279},{"type":41,"tag":75,"props":1662,"children":1663},{"style":88},[1664],{"type":47,"value":284},{"type":41,"tag":75,"props":1666,"children":1667},{"style":88},[1668],{"type":47,"value":269},{"type":41,"tag":75,"props":1670,"children":1671},{"class":77,"line":322},[1672,1677,1682],{"type":41,"tag":75,"props":1673,"children":1674},{"style":88},[1675],{"type":47,"value":1676},"    ...",{"type":41,"tag":75,"props":1678,"children":1679},{"style":94},[1680],{"type":47,"value":1681},"standardComponentDefinitions",{"type":41,"tag":75,"props":1683,"children":1684},{"style":88},[1685],{"type":47,"value":293},{"type":41,"tag":75,"props":1687,"children":1688},{"class":77,"line":343},[1689,1694,1698],{"type":41,"tag":75,"props":1690,"children":1691},{"style":276},[1692],{"type":47,"value":1693},"    Alert",{"type":41,"tag":75,"props":1695,"children":1696},{"style":88},[1697],{"type":47,"value":284},{"type":41,"tag":75,"props":1699,"children":1700},{"style":88},[1701],{"type":47,"value":269},{"type":41,"tag":75,"props":1703,"children":1704},{"class":77,"line":373},[1705,1709,1713,1717,1722,1727,1732],{"type":41,"tag":75,"props":1706,"children":1707},{"style":276},[1708],{"type":47,"value":700},{"type":41,"tag":75,"props":1710,"children":1711},{"style":88},[1712],{"type":47,"value":284},{"type":41,"tag":75,"props":1714,"children":1715},{"style":94},[1716],{"type":47,"value":1590},{"type":41,"tag":75,"props":1718,"children":1719},{"style":88},[1720],{"type":47,"value":1721},".",{"type":41,"tag":75,"props":1723,"children":1724},{"style":253},[1725],{"type":47,"value":1726},"object",{"type":41,"tag":75,"props":1728,"children":1729},{"style":94},[1730],{"type":47,"value":1731},"(",{"type":41,"tag":75,"props":1733,"children":1734},{"style":88},[1735],{"type":47,"value":1736},"{\n",{"type":41,"tag":75,"props":1738,"children":1739},{"class":77,"line":390},[1740,1745,1749,1753,1757,1762,1767],{"type":41,"tag":75,"props":1741,"children":1742},{"style":276},[1743],{"type":47,"value":1744},"        message",{"type":41,"tag":75,"props":1746,"children":1747},{"style":88},[1748],{"type":47,"value":284},{"type":41,"tag":75,"props":1750,"children":1751},{"style":94},[1752],{"type":47,"value":1590},{"type":41,"tag":75,"props":1754,"children":1755},{"style":88},[1756],{"type":47,"value":1721},{"type":41,"tag":75,"props":1758,"children":1759},{"style":253},[1760],{"type":47,"value":1761},"string",{"type":41,"tag":75,"props":1763,"children":1764},{"style":94},[1765],{"type":47,"value":1766},"()",{"type":41,"tag":75,"props":1768,"children":1769},{"style":88},[1770],{"type":47,"value":293},{"type":41,"tag":75,"props":1772,"children":1773},{"class":77,"line":561},[1774,1779,1783,1787,1791,1796,1801,1805,1810,1814,1818,1822,1827,1831,1835,1839,1844,1848,1853,1857,1862,1866],{"type":41,"tag":75,"props":1775,"children":1776},{"style":276},[1777],{"type":47,"value":1778},"        variant",{"type":41,"tag":75,"props":1780,"children":1781},{"style":88},[1782],{"type":47,"value":284},{"type":41,"tag":75,"props":1784,"children":1785},{"style":94},[1786],{"type":47,"value":1590},{"type":41,"tag":75,"props":1788,"children":1789},{"style":88},[1790],{"type":47,"value":1721},{"type":41,"tag":75,"props":1792,"children":1793},{"style":253},[1794],{"type":47,"value":1795},"enum",{"type":41,"tag":75,"props":1797,"children":1798},{"style":94},[1799],{"type":47,"value":1800},"([",{"type":41,"tag":75,"props":1802,"children":1803},{"style":88},[1804],{"type":47,"value":122},{"type":41,"tag":75,"props":1806,"children":1807},{"style":115},[1808],{"type":47,"value":1809},"info",{"type":41,"tag":75,"props":1811,"children":1812},{"style":88},[1813],{"type":47,"value":122},{"type":41,"tag":75,"props":1815,"children":1816},{"style":88},[1817],{"type":47,"value":149},{"type":41,"tag":75,"props":1819,"children":1820},{"style":88},[1821],{"type":47,"value":112},{"type":41,"tag":75,"props":1823,"children":1824},{"style":115},[1825],{"type":47,"value":1826},"success",{"type":41,"tag":75,"props":1828,"children":1829},{"style":88},[1830],{"type":47,"value":122},{"type":41,"tag":75,"props":1832,"children":1833},{"style":88},[1834],{"type":47,"value":149},{"type":41,"tag":75,"props":1836,"children":1837},{"style":88},[1838],{"type":47,"value":112},{"type":41,"tag":75,"props":1840,"children":1841},{"style":115},[1842],{"type":47,"value":1843},"warning",{"type":41,"tag":75,"props":1845,"children":1846},{"style":88},[1847],{"type":47,"value":122},{"type":41,"tag":75,"props":1849,"children":1850},{"style":94},[1851],{"type":47,"value":1852},"])",{"type":41,"tag":75,"props":1854,"children":1855},{"style":88},[1856],{"type":47,"value":1721},{"type":41,"tag":75,"props":1858,"children":1859},{"style":253},[1860],{"type":47,"value":1861},"nullable",{"type":41,"tag":75,"props":1863,"children":1864},{"style":94},[1865],{"type":47,"value":1766},{"type":41,"tag":75,"props":1867,"children":1868},{"style":88},[1869],{"type":47,"value":293},{"type":41,"tag":75,"props":1871,"children":1872},{"class":77,"line":640},[1873,1878,1882],{"type":41,"tag":75,"props":1874,"children":1875},{"style":88},[1876],{"type":47,"value":1877},"      }",{"type":41,"tag":75,"props":1879,"children":1880},{"style":94},[1881],{"type":47,"value":307},{"type":41,"tag":75,"props":1883,"children":1884},{"style":88},[1885],{"type":47,"value":293},{"type":41,"tag":75,"props":1887,"children":1888},{"class":77,"line":664},[1889,1894,1898,1903],{"type":41,"tag":75,"props":1890,"children":1891},{"style":276},[1892],{"type":47,"value":1893},"      slots",{"type":41,"tag":75,"props":1895,"children":1896},{"style":88},[1897],{"type":47,"value":284},{"type":41,"tag":75,"props":1899,"children":1900},{"style":94},[1901],{"type":47,"value":1902}," []",{"type":41,"tag":75,"props":1904,"children":1905},{"style":88},[1906],{"type":47,"value":293},{"type":41,"tag":75,"props":1908,"children":1909},{"class":77,"line":694},[1910,1915,1919,1923,1928,1932],{"type":41,"tag":75,"props":1911,"children":1912},{"style":276},[1913],{"type":47,"value":1914},"      description",{"type":41,"tag":75,"props":1916,"children":1917},{"style":88},[1918],{"type":47,"value":284},{"type":41,"tag":75,"props":1920,"children":1921},{"style":88},[1922],{"type":47,"value":112},{"type":41,"tag":75,"props":1924,"children":1925},{"style":115},[1926],{"type":47,"value":1927},"A highlighted message block",{"type":41,"tag":75,"props":1929,"children":1930},{"style":88},[1931],{"type":47,"value":122},{"type":41,"tag":75,"props":1933,"children":1934},{"style":88},[1935],{"type":47,"value":293},{"type":41,"tag":75,"props":1937,"children":1938},{"class":77,"line":755},[1939],{"type":41,"tag":75,"props":1940,"children":1941},{"style":88},[1942],{"type":47,"value":800},{"type":41,"tag":75,"props":1944,"children":1945},{"class":77,"line":794},[1946],{"type":41,"tag":75,"props":1947,"children":1948},{"style":88},[1949],{"type":47,"value":1239},{"type":41,"tag":75,"props":1951,"children":1952},{"class":77,"line":803},[1953,1958,1962],{"type":41,"tag":75,"props":1954,"children":1955},{"style":276},[1956],{"type":47,"value":1957},"  actions",{"type":41,"tag":75,"props":1959,"children":1960},{"style":88},[1961],{"type":47,"value":284},{"type":41,"tag":75,"props":1963,"children":1964},{"style":88},[1965],{"type":47,"value":1966}," {},\n",{"type":41,"tag":75,"props":1968,"children":1969},{"class":77,"line":827},[1970,1974,1978],{"type":41,"tag":75,"props":1971,"children":1972},{"style":88},[1973],{"type":47,"value":302},{"type":41,"tag":75,"props":1975,"children":1976},{"style":94},[1977],{"type":47,"value":307},{"type":41,"tag":75,"props":1979,"children":1980},{"style":88},[1981],{"type":47,"value":127},{"type":41,"tag":75,"props":1983,"children":1984},{"class":77,"line":856},[1985],{"type":41,"tag":75,"props":1986,"children":1987},{"emptyLinePlaceholder":227},[1988],{"type":47,"value":230},{"type":41,"tag":75,"props":1990,"children":1991},{"class":77,"line":966},[1992,1996,2000,2005,2009,2014,2018,2023,2027],{"type":41,"tag":75,"props":1993,"children":1994},{"style":237},[1995],{"type":47,"value":240},{"type":41,"tag":75,"props":1997,"children":1998},{"style":88},[1999],{"type":47,"value":91},{"type":41,"tag":75,"props":2001,"children":2002},{"style":94},[2003],{"type":47,"value":2004}," registry ",{"type":41,"tag":75,"props":2006,"children":2007},{"style":88},[2008],{"type":47,"value":302},{"type":41,"tag":75,"props":2010,"children":2011},{"style":88},[2012],{"type":47,"value":2013}," =",{"type":41,"tag":75,"props":2015,"children":2016},{"style":253},[2017],{"type":47,"value":1443},{"type":41,"tag":75,"props":2019,"children":2020},{"style":94},[2021],{"type":47,"value":2022},"(catalog",{"type":41,"tag":75,"props":2024,"children":2025},{"style":88},[2026],{"type":47,"value":149},{"type":41,"tag":75,"props":2028,"children":2029},{"style":88},[2030],{"type":47,"value":269},{"type":41,"tag":75,"props":2032,"children":2033},{"class":77,"line":1020},[2034,2038,2042],{"type":41,"tag":75,"props":2035,"children":2036},{"style":276},[2037],{"type":47,"value":279},{"type":41,"tag":75,"props":2039,"children":2040},{"style":88},[2041],{"type":47,"value":284},{"type":41,"tag":75,"props":2043,"children":2044},{"style":88},[2045],{"type":47,"value":269},{"type":41,"tag":75,"props":2047,"children":2048},{"class":77,"line":1028},[2049,2053,2057,2062,2067,2072,2077],{"type":41,"tag":75,"props":2050,"children":2051},{"style":253},[2052],{"type":47,"value":1693},{"type":41,"tag":75,"props":2054,"children":2055},{"style":88},[2056],{"type":47,"value":284},{"type":41,"tag":75,"props":2058,"children":2059},{"style":88},[2060],{"type":47,"value":2061}," ({",{"type":41,"tag":75,"props":2063,"children":2065},{"style":2064},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[2066],{"type":47,"value":443},{"type":41,"tag":75,"props":2068,"children":2069},{"style":88},[2070],{"type":47,"value":2071}," })",{"type":41,"tag":75,"props":2073,"children":2074},{"style":237},[2075],{"type":47,"value":2076}," =>",{"type":41,"tag":75,"props":2078,"children":2079},{"style":94},[2080],{"type":47,"value":2081}," (\n",{"type":41,"tag":75,"props":2083,"children":2084},{"class":77,"line":1131},[2085,2090,2095,2100,2105,2109,2115,2119,2123,2127,2131,2136,2140,2144,2149,2153,2158],{"type":41,"tag":75,"props":2086,"children":2087},{"style":88},[2088],{"type":47,"value":2089},"      \u003C",{"type":41,"tag":75,"props":2091,"children":2092},{"style":94},[2093],{"type":47,"value":2094},"Container style",{"type":41,"tag":75,"props":2096,"children":2097},{"style":88},[2098],{"type":47,"value":2099},"={{",{"type":41,"tag":75,"props":2101,"children":2103},{"style":2102},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[2104],{"type":47,"value":938},{"type":41,"tag":75,"props":2106,"children":2107},{"style":88},[2108],{"type":47,"value":284},{"type":41,"tag":75,"props":2110,"children":2112},{"style":2111},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2113],{"type":47,"value":2114}," 16",{"type":41,"tag":75,"props":2116,"children":2117},{"style":88},[2118],{"type":47,"value":149},{"type":41,"tag":75,"props":2120,"children":2121},{"style":2102},[2122],{"type":47,"value":726},{"type":41,"tag":75,"props":2124,"children":2125},{"style":88},[2126],{"type":47,"value":284},{"type":41,"tag":75,"props":2128,"children":2129},{"style":88},[2130],{"type":47,"value":112},{"type":41,"tag":75,"props":2132,"children":2133},{"style":115},[2134],{"type":47,"value":2135},"#eff6ff",{"type":41,"tag":75,"props":2137,"children":2138},{"style":88},[2139],{"type":47,"value":122},{"type":41,"tag":75,"props":2141,"children":2142},{"style":88},[2143],{"type":47,"value":149},{"type":41,"tag":75,"props":2145,"children":2146},{"style":2102},[2147],{"type":47,"value":2148}," borderRadius",{"type":41,"tag":75,"props":2150,"children":2151},{"style":88},[2152],{"type":47,"value":284},{"type":41,"tag":75,"props":2154,"children":2155},{"style":2111},[2156],{"type":47,"value":2157}," 8",{"type":41,"tag":75,"props":2159,"children":2160},{"style":88},[2161],{"type":47,"value":2162}," }}>\n",{"type":41,"tag":75,"props":2164,"children":2165},{"class":77,"line":1233},[2166,2171,2176,2180,2184,2188,2193,2198,2203,2208,2212],{"type":41,"tag":75,"props":2167,"children":2168},{"style":88},[2169],{"type":47,"value":2170},"        \u003C",{"type":41,"tag":75,"props":2172,"children":2173},{"style":94},[2174],{"type":47,"value":2175},"Text style",{"type":41,"tag":75,"props":2177,"children":2178},{"style":88},[2179],{"type":47,"value":2099},{"type":41,"tag":75,"props":2181,"children":2182},{"style":2102},[2183],{"type":47,"value":912},{"type":41,"tag":75,"props":2185,"children":2186},{"style":88},[2187],{"type":47,"value":284},{"type":41,"tag":75,"props":2189,"children":2190},{"style":2111},[2191],{"type":47,"value":2192}," 0",{"type":41,"tag":75,"props":2194,"children":2195},{"style":88},[2196],{"type":47,"value":2197}," }}>{",{"type":41,"tag":75,"props":2199,"children":2200},{"style":94},[2201],{"type":47,"value":2202},"props.message",{"type":41,"tag":75,"props":2204,"children":2205},{"style":88},[2206],{"type":47,"value":2207},"}\u003C\u002F",{"type":41,"tag":75,"props":2209,"children":2210},{"style":94},[2211],{"type":47,"value":1169},{"type":41,"tag":75,"props":2213,"children":2214},{"style":88},[2215],{"type":47,"value":2216},">\n",{"type":41,"tag":75,"props":2218,"children":2219},{"class":77,"line":1242},[2220,2225,2229],{"type":41,"tag":75,"props":2221,"children":2222},{"style":88},[2223],{"type":47,"value":2224},"      \u003C\u002F",{"type":41,"tag":75,"props":2226,"children":2227},{"style":94},[2228],{"type":47,"value":845},{"type":41,"tag":75,"props":2230,"children":2231},{"style":88},[2232],{"type":47,"value":2216},{"type":41,"tag":75,"props":2234,"children":2235},{"class":77,"line":1251},[2236,2241],{"type":41,"tag":75,"props":2237,"children":2238},{"style":94},[2239],{"type":47,"value":2240},"    )",{"type":41,"tag":75,"props":2242,"children":2243},{"style":88},[2244],{"type":47,"value":293},{"type":41,"tag":75,"props":2246,"children":2247},{"class":77,"line":1259},[2248],{"type":41,"tag":75,"props":2249,"children":2250},{"style":88},[2251],{"type":47,"value":1239},{"type":41,"tag":75,"props":2253,"children":2255},{"class":77,"line":2254},30,[2256,2260,2264],{"type":41,"tag":75,"props":2257,"children":2258},{"style":88},[2259],{"type":47,"value":302},{"type":41,"tag":75,"props":2261,"children":2262},{"style":94},[2263],{"type":47,"value":307},{"type":41,"tag":75,"props":2265,"children":2266},{"style":88},[2267],{"type":47,"value":127},{"type":41,"tag":75,"props":2269,"children":2271},{"class":77,"line":2270},31,[2272],{"type":41,"tag":75,"props":2273,"children":2274},{"emptyLinePlaceholder":227},[2275],{"type":47,"value":230},{"type":41,"tag":75,"props":2277,"children":2279},{"class":77,"line":2278},32,[2280,2284,2288,2292,2296,2300,2305,2309,2313,2317,2321,2325],{"type":41,"tag":75,"props":2281,"children":2282},{"style":237},[2283],{"type":47,"value":240},{"type":41,"tag":75,"props":2285,"children":2286},{"style":94},[2287],{"type":47,"value":1269},{"type":41,"tag":75,"props":2289,"children":2290},{"style":88},[2291],{"type":47,"value":250},{"type":41,"tag":75,"props":2293,"children":2294},{"style":82},[2295],{"type":47,"value":1278},{"type":41,"tag":75,"props":2297,"children":2298},{"style":253},[2299],{"type":47,"value":97},{"type":41,"tag":75,"props":2301,"children":2302},{"style":94},[2303],{"type":47,"value":2304},"(spec",{"type":41,"tag":75,"props":2306,"children":2307},{"style":88},[2308],{"type":47,"value":149},{"type":41,"tag":75,"props":2310,"children":2311},{"style":88},[2312],{"type":47,"value":91},{"type":41,"tag":75,"props":2314,"children":2315},{"style":94},[2316],{"type":47,"value":2004},{"type":41,"tag":75,"props":2318,"children":2319},{"style":88},[2320],{"type":47,"value":302},{"type":41,"tag":75,"props":2322,"children":2323},{"style":94},[2324],{"type":47,"value":307},{"type":41,"tag":75,"props":2326,"children":2327},{"style":88},[2328],{"type":47,"value":127},{"type":41,"tag":56,"props":2330,"children":2332},{"id":2331},"server-side-render-apis",[2333],{"type":47,"value":2334},"Server-Side Render APIs",{"type":41,"tag":2336,"props":2337,"children":2338},"table",{},[2339,2358],{"type":41,"tag":2340,"props":2341,"children":2342},"thead",{},[2343],{"type":41,"tag":2344,"props":2345,"children":2346},"tr",{},[2347,2353],{"type":41,"tag":2348,"props":2349,"children":2350},"th",{},[2351],{"type":47,"value":2352},"Function",{"type":41,"tag":2348,"props":2354,"children":2355},{},[2356],{"type":47,"value":2357},"Purpose",{"type":41,"tag":2359,"props":2360,"children":2361},"tbody",{},[2362,2380],{"type":41,"tag":2344,"props":2363,"children":2364},{},[2365,2375],{"type":41,"tag":2366,"props":2367,"children":2368},"td",{},[2369],{"type":41,"tag":71,"props":2370,"children":2372},{"className":2371},[],[2373],{"type":47,"value":2374},"renderToHtml(spec, options?)",{"type":41,"tag":2366,"props":2376,"children":2377},{},[2378],{"type":47,"value":2379},"Render spec to HTML email string",{"type":41,"tag":2344,"props":2381,"children":2382},{},[2383,2392],{"type":41,"tag":2366,"props":2384,"children":2385},{},[2386],{"type":41,"tag":71,"props":2387,"children":2389},{"className":2388},[],[2390],{"type":47,"value":2391},"renderToPlainText(spec, options?)",{"type":41,"tag":2366,"props":2393,"children":2394},{},[2395],{"type":47,"value":2396},"Render spec to plain-text email string",{"type":41,"tag":50,"props":2398,"children":2399},{},[2400,2406,2407,2413,2415,2421,2423,2429,2431,2437,2439,2445],{"type":41,"tag":71,"props":2401,"children":2403},{"className":2402},[],[2404],{"type":47,"value":2405},"RenderOptions",{"type":47,"value":1310},{"type":41,"tag":71,"props":2408,"children":2410},{"className":2409},[],[2411],{"type":47,"value":2412},"registry",{"type":47,"value":2414},", ",{"type":41,"tag":71,"props":2416,"children":2418},{"className":2417},[],[2419],{"type":47,"value":2420},"includeStandard",{"type":47,"value":2422}," (default true), ",{"type":41,"tag":71,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":47,"value":2428},"state",{"type":47,"value":2430}," (for ",{"type":41,"tag":71,"props":2432,"children":2434},{"className":2433},[],[2435],{"type":47,"value":2436},"$state",{"type":47,"value":2438}," \u002F ",{"type":41,"tag":71,"props":2440,"children":2442},{"className":2441},[],[2443],{"type":47,"value":2444},"$cond",{"type":47,"value":2446},").",{"type":41,"tag":56,"props":2448,"children":2450},{"id":2449},"visibility-and-state",[2451],{"type":47,"value":2452},"Visibility and State",{"type":41,"tag":50,"props":2454,"children":2455},{},[2456,2458,2464,2466,2471,2472,2477,2479,2485,2487,2492,2493,2498,2500,2505],{"type":47,"value":2457},"Supports ",{"type":41,"tag":71,"props":2459,"children":2461},{"className":2460},[],[2462],{"type":47,"value":2463},"visible",{"type":47,"value":2465}," conditions, ",{"type":41,"tag":71,"props":2467,"children":2469},{"className":2468},[],[2470],{"type":47,"value":2436},{"type":47,"value":2414},{"type":41,"tag":71,"props":2473,"children":2475},{"className":2474},[],[2476],{"type":47,"value":2444},{"type":47,"value":2478},", repeat (",{"type":41,"tag":71,"props":2480,"children":2482},{"className":2481},[],[2483],{"type":47,"value":2484},"repeat.statePath",{"type":47,"value":2486},"), and the same expression syntax as ",{"type":41,"tag":71,"props":2488,"children":2490},{"className":2489},[],[2491],{"type":47,"value":1308},{"type":47,"value":1353},{"type":41,"tag":71,"props":2494,"children":2496},{"className":2495},[],[2497],{"type":47,"value":2428},{"type":47,"value":2499}," in ",{"type":41,"tag":71,"props":2501,"children":2503},{"className":2502},[],[2504],{"type":47,"value":2405},{"type":47,"value":2506}," when rendering server-side so expressions resolve.",{"type":41,"tag":56,"props":2508,"children":2510},{"id":2509},"server-safe-import",[2511],{"type":47,"value":2512},"Server-Safe Import",{"type":41,"tag":50,"props":2514,"children":2515},{},[2516,2518,2523],{"type":47,"value":2517},"Import schema and catalog without React or ",{"type":41,"tag":71,"props":2519,"children":2521},{"className":2520},[],[2522],{"type":47,"value":1566},{"type":47,"value":284},{"type":41,"tag":63,"props":2525,"children":2527},{"className":65,"code":2526,"language":67,"meta":68,"style":68},"import { schema, standardComponentDefinitions } from \"@json-render\u002Freact-email\u002Fserver\";\n",[2528],{"type":41,"tag":71,"props":2529,"children":2530},{"__ignoreMap":68},[2531],{"type":41,"tag":75,"props":2532,"children":2533},{"class":77,"line":78},[2534,2538,2542,2546,2550,2554,2558,2562,2566,2571,2575],{"type":41,"tag":75,"props":2535,"children":2536},{"style":82},[2537],{"type":47,"value":85},{"type":41,"tag":75,"props":2539,"children":2540},{"style":88},[2541],{"type":47,"value":91},{"type":41,"tag":75,"props":2543,"children":2544},{"style":94},[2545],{"type":47,"value":144},{"type":41,"tag":75,"props":2547,"children":2548},{"style":88},[2549],{"type":47,"value":149},{"type":41,"tag":75,"props":2551,"children":2552},{"style":94},[2553],{"type":47,"value":154},{"type":41,"tag":75,"props":2555,"children":2556},{"style":88},[2557],{"type":47,"value":102},{"type":41,"tag":75,"props":2559,"children":2560},{"style":82},[2561],{"type":47,"value":107},{"type":41,"tag":75,"props":2563,"children":2564},{"style":88},[2565],{"type":47,"value":112},{"type":41,"tag":75,"props":2567,"children":2568},{"style":115},[2569],{"type":47,"value":2570},"@json-render\u002Freact-email\u002Fserver",{"type":41,"tag":75,"props":2572,"children":2573},{"style":88},[2574],{"type":47,"value":122},{"type":41,"tag":75,"props":2576,"children":2577},{"style":88},[2578],{"type":47,"value":127},{"type":41,"tag":56,"props":2580,"children":2582},{"id":2581},"key-exports",[2583],{"type":47,"value":2584},"Key Exports",{"type":41,"tag":2336,"props":2586,"children":2587},{},[2588,2603],{"type":41,"tag":2340,"props":2589,"children":2590},{},[2591],{"type":41,"tag":2344,"props":2592,"children":2593},{},[2594,2599],{"type":41,"tag":2348,"props":2595,"children":2596},{},[2597],{"type":47,"value":2598},"Export",{"type":41,"tag":2348,"props":2600,"children":2601},{},[2602],{"type":47,"value":2357},{"type":41,"tag":2359,"props":2604,"children":2605},{},[2606,2623,2648,2665,2682,2699,2716,2733],{"type":41,"tag":2344,"props":2607,"children":2608},{},[2609,2618],{"type":41,"tag":2366,"props":2610,"children":2611},{},[2612],{"type":41,"tag":71,"props":2613,"children":2615},{"className":2614},[],[2616],{"type":47,"value":2617},"defineRegistry",{"type":41,"tag":2366,"props":2619,"children":2620},{},[2621],{"type":47,"value":2622},"Create type-safe component registry from catalog",{"type":41,"tag":2344,"props":2624,"children":2625},{},[2626,2635],{"type":41,"tag":2366,"props":2627,"children":2628},{},[2629],{"type":41,"tag":71,"props":2630,"children":2632},{"className":2631},[],[2633],{"type":47,"value":2634},"Renderer",{"type":41,"tag":2366,"props":2636,"children":2637},{},[2638,2640,2646],{"type":47,"value":2639},"Render spec in browser (e.g. preview); use with ",{"type":41,"tag":71,"props":2641,"children":2643},{"className":2642},[],[2644],{"type":47,"value":2645},"JSONUIProvider",{"type":47,"value":2647}," for state\u002Factions",{"type":41,"tag":2344,"props":2649,"children":2650},{},[2651,2660],{"type":41,"tag":2366,"props":2652,"children":2653},{},[2654],{"type":41,"tag":71,"props":2655,"children":2657},{"className":2656},[],[2658],{"type":47,"value":2659},"createRenderer",{"type":41,"tag":2366,"props":2661,"children":2662},{},[2663],{"type":47,"value":2664},"Standalone renderer component with state\u002Factions\u002Fvalidation",{"type":41,"tag":2344,"props":2666,"children":2667},{},[2668,2677],{"type":41,"tag":2366,"props":2669,"children":2670},{},[2671],{"type":41,"tag":71,"props":2672,"children":2674},{"className":2673},[],[2675],{"type":47,"value":2676},"renderToHtml",{"type":41,"tag":2366,"props":2678,"children":2679},{},[2680],{"type":47,"value":2681},"Server: spec to HTML string",{"type":41,"tag":2344,"props":2683,"children":2684},{},[2685,2694],{"type":41,"tag":2366,"props":2686,"children":2687},{},[2688],{"type":41,"tag":71,"props":2689,"children":2691},{"className":2690},[],[2692],{"type":47,"value":2693},"renderToPlainText",{"type":41,"tag":2366,"props":2695,"children":2696},{},[2697],{"type":47,"value":2698},"Server: spec to plain-text string",{"type":41,"tag":2344,"props":2700,"children":2701},{},[2702,2711],{"type":41,"tag":2366,"props":2703,"children":2704},{},[2705],{"type":41,"tag":71,"props":2706,"children":2708},{"className":2707},[],[2709],{"type":47,"value":2710},"schema",{"type":41,"tag":2366,"props":2712,"children":2713},{},[2714],{"type":47,"value":2715},"Email element schema",{"type":41,"tag":2344,"props":2717,"children":2718},{},[2719,2728],{"type":41,"tag":2366,"props":2720,"children":2721},{},[2722],{"type":41,"tag":71,"props":2723,"children":2725},{"className":2724},[],[2726],{"type":47,"value":2727},"standardComponents",{"type":41,"tag":2366,"props":2729,"children":2730},{},[2731],{"type":47,"value":2732},"Pre-built component implementations",{"type":41,"tag":2344,"props":2734,"children":2735},{},[2736,2744],{"type":41,"tag":2366,"props":2737,"children":2738},{},[2739],{"type":41,"tag":71,"props":2740,"children":2742},{"className":2741},[],[2743],{"type":47,"value":1681},{"type":41,"tag":2366,"props":2745,"children":2746},{},[2747],{"type":47,"value":2748},"Catalog definitions (Zod props)",{"type":41,"tag":56,"props":2750,"children":2752},{"id":2751},"sub-path-exports",[2753],{"type":47,"value":2754},"Sub-path Exports",{"type":41,"tag":2336,"props":2756,"children":2757},{},[2758,2773],{"type":41,"tag":2340,"props":2759,"children":2760},{},[2761],{"type":41,"tag":2344,"props":2762,"children":2763},{},[2764,2769],{"type":41,"tag":2348,"props":2765,"children":2766},{},[2767],{"type":47,"value":2768},"Path",{"type":41,"tag":2348,"props":2770,"children":2771},{},[2772],{"type":47,"value":2357},{"type":41,"tag":2359,"props":2774,"children":2775},{},[2776,2792,2808,2824],{"type":41,"tag":2344,"props":2777,"children":2778},{},[2779,2787],{"type":41,"tag":2366,"props":2780,"children":2781},{},[2782],{"type":41,"tag":71,"props":2783,"children":2785},{"className":2784},[],[2786],{"type":47,"value":48},{"type":41,"tag":2366,"props":2788,"children":2789},{},[2790],{"type":47,"value":2791},"Full package",{"type":41,"tag":2344,"props":2793,"children":2794},{},[2795,2803],{"type":41,"tag":2366,"props":2796,"children":2797},{},[2798],{"type":41,"tag":71,"props":2799,"children":2801},{"className":2800},[],[2802],{"type":47,"value":2570},{"type":41,"tag":2366,"props":2804,"children":2805},{},[2806],{"type":47,"value":2807},"Schema and catalog only (no React)",{"type":41,"tag":2344,"props":2809,"children":2810},{},[2811,2819],{"type":41,"tag":2366,"props":2812,"children":2813},{},[2814],{"type":41,"tag":71,"props":2815,"children":2817},{"className":2816},[],[2818],{"type":47,"value":1507},{"type":41,"tag":2366,"props":2820,"children":2821},{},[2822],{"type":47,"value":2823},"Standard component definitions and types",{"type":41,"tag":2344,"props":2825,"children":2826},{},[2827,2836],{"type":41,"tag":2366,"props":2828,"children":2829},{},[2830],{"type":41,"tag":71,"props":2831,"children":2833},{"className":2832},[],[2834],{"type":47,"value":2835},"@json-render\u002Freact-email\u002Frender",{"type":41,"tag":2366,"props":2837,"children":2838},{},[2839],{"type":47,"value":2840},"Render functions only",{"type":41,"tag":56,"props":2842,"children":2844},{"id":2843},"standard-components",[2845],{"type":47,"value":2846},"Standard Components",{"type":41,"tag":50,"props":2848,"children":2849},{},[2850,2852,2858],{"type":47,"value":2851},"All components accept a ",{"type":41,"tag":71,"props":2853,"children":2855},{"className":2854},[],[2856],{"type":47,"value":2857},"style",{"type":47,"value":2859}," prop (object) for inline styles. Use inline styles for email client compatibility; avoid external CSS.",{"type":41,"tag":2861,"props":2862,"children":2864},"h3",{"id":2863},"document-structure",[2865],{"type":47,"value":2866},"Document structure",{"type":41,"tag":2336,"props":2868,"children":2869},{},[2870,2886],{"type":41,"tag":2340,"props":2871,"children":2872},{},[2873],{"type":41,"tag":2344,"props":2874,"children":2875},{},[2876,2881],{"type":41,"tag":2348,"props":2877,"children":2878},{},[2879],{"type":47,"value":2880},"Component",{"type":41,"tag":2348,"props":2882,"children":2883},{},[2884],{"type":47,"value":2885},"Description",{"type":41,"tag":2359,"props":2887,"children":2888},{},[2889,2905,2921],{"type":41,"tag":2344,"props":2890,"children":2891},{},[2892,2900],{"type":41,"tag":2366,"props":2893,"children":2894},{},[2895],{"type":41,"tag":71,"props":2896,"children":2898},{"className":2897},[],[2899],{"type":47,"value":430},{"type":41,"tag":2366,"props":2901,"children":2902},{},[2903],{"type":47,"value":2904},"Root wrapper (lang, dir). Children: Head, Body.",{"type":41,"tag":2344,"props":2906,"children":2907},{},[2908,2916],{"type":41,"tag":2366,"props":2909,"children":2910},{},[2911],{"type":41,"tag":71,"props":2912,"children":2914},{"className":2913},[],[2915],{"type":47,"value":599},{"type":41,"tag":2366,"props":2917,"children":2918},{},[2919],{"type":47,"value":2920},"Email head section.",{"type":41,"tag":2344,"props":2922,"children":2923},{},[2924,2932],{"type":41,"tag":2366,"props":2925,"children":2926},{},[2927],{"type":41,"tag":71,"props":2928,"children":2930},{"className":2929},[],[2931],{"type":47,"value":683},{"type":41,"tag":2366,"props":2933,"children":2934},{},[2935,2937,2942],{"type":47,"value":2936},"Body wrapper; use ",{"type":41,"tag":71,"props":2938,"children":2940},{"className":2939},[],[2941],{"type":47,"value":2857},{"type":47,"value":2943}," for background.",{"type":41,"tag":2861,"props":2945,"children":2947},{"id":2946},"layout",[2948],{"type":47,"value":2949},"Layout",{"type":41,"tag":2336,"props":2951,"children":2952},{},[2953,2967],{"type":41,"tag":2340,"props":2954,"children":2955},{},[2956],{"type":41,"tag":2344,"props":2957,"children":2958},{},[2959,2963],{"type":41,"tag":2348,"props":2960,"children":2961},{},[2962],{"type":47,"value":2880},{"type":41,"tag":2348,"props":2964,"children":2965},{},[2966],{"type":47,"value":2885},{"type":41,"tag":2359,"props":2968,"children":2969},{},[2970,2986,3003,3020],{"type":41,"tag":2344,"props":2971,"children":2972},{},[2973,2981],{"type":41,"tag":2366,"props":2974,"children":2975},{},[2976],{"type":41,"tag":71,"props":2977,"children":2979},{"className":2978},[],[2980],{"type":47,"value":845},{"type":41,"tag":2366,"props":2982,"children":2983},{},[2984],{"type":47,"value":2985},"Constrain width (e.g. max-width 600px).",{"type":41,"tag":2344,"props":2987,"children":2988},{},[2989,2998],{"type":41,"tag":2366,"props":2990,"children":2991},{},[2992],{"type":41,"tag":71,"props":2993,"children":2995},{"className":2994},[],[2996],{"type":47,"value":2997},"Section",{"type":41,"tag":2366,"props":2999,"children":3000},{},[3001],{"type":47,"value":3002},"Group content; table-based for compatibility.",{"type":41,"tag":2344,"props":3004,"children":3005},{},[3006,3015],{"type":41,"tag":2366,"props":3007,"children":3008},{},[3009],{"type":41,"tag":71,"props":3010,"children":3012},{"className":3011},[],[3013],{"type":47,"value":3014},"Row",{"type":41,"tag":2366,"props":3016,"children":3017},{},[3018],{"type":47,"value":3019},"Horizontal row.",{"type":41,"tag":2344,"props":3021,"children":3022},{},[3023,3032],{"type":41,"tag":2366,"props":3024,"children":3025},{},[3026],{"type":41,"tag":71,"props":3027,"children":3029},{"className":3028},[],[3030],{"type":47,"value":3031},"Column",{"type":41,"tag":2366,"props":3033,"children":3034},{},[3035],{"type":47,"value":3036},"Column in a Row; set width via style.",{"type":41,"tag":2861,"props":3038,"children":3040},{"id":3039},"content",[3041],{"type":47,"value":3042},"Content",{"type":41,"tag":2336,"props":3044,"children":3045},{},[3046,3060],{"type":41,"tag":2340,"props":3047,"children":3048},{},[3049],{"type":41,"tag":2344,"props":3050,"children":3051},{},[3052,3056],{"type":41,"tag":2348,"props":3053,"children":3054},{},[3055],{"type":47,"value":2880},{"type":41,"tag":2348,"props":3057,"children":3058},{},[3059],{"type":47,"value":2885},{"type":41,"tag":2359,"props":3061,"children":3062},{},[3063,3079,3095,3112,3129,3146],{"type":41,"tag":2344,"props":3064,"children":3065},{},[3066,3074],{"type":41,"tag":2366,"props":3067,"children":3068},{},[3069],{"type":41,"tag":71,"props":3070,"children":3072},{"className":3071},[],[3073],{"type":47,"value":1066},{"type":41,"tag":2366,"props":3075,"children":3076},{},[3077],{"type":47,"value":3078},"Heading text (as: h1–h6).",{"type":41,"tag":2344,"props":3080,"children":3081},{},[3082,3090],{"type":41,"tag":2366,"props":3083,"children":3084},{},[3085],{"type":41,"tag":71,"props":3086,"children":3088},{"className":3087},[],[3089],{"type":47,"value":1169},{"type":41,"tag":2366,"props":3091,"children":3092},{},[3093],{"type":47,"value":3094},"Body text.",{"type":41,"tag":2344,"props":3096,"children":3097},{},[3098,3107],{"type":41,"tag":2366,"props":3099,"children":3100},{},[3101],{"type":41,"tag":71,"props":3102,"children":3104},{"className":3103},[],[3105],{"type":47,"value":3106},"Link",{"type":41,"tag":2366,"props":3108,"children":3109},{},[3110],{"type":47,"value":3111},"Hyperlink (text, href).",{"type":41,"tag":2344,"props":3113,"children":3114},{},[3115,3124],{"type":41,"tag":2366,"props":3116,"children":3117},{},[3118],{"type":41,"tag":71,"props":3119,"children":3121},{"className":3120},[],[3122],{"type":47,"value":3123},"Button",{"type":41,"tag":2366,"props":3125,"children":3126},{},[3127],{"type":47,"value":3128},"CTA link styled as button (text, href).",{"type":41,"tag":2344,"props":3130,"children":3131},{},[3132,3141],{"type":41,"tag":2366,"props":3133,"children":3134},{},[3135],{"type":41,"tag":71,"props":3136,"children":3138},{"className":3137},[],[3139],{"type":47,"value":3140},"Image",{"type":41,"tag":2366,"props":3142,"children":3143},{},[3144],{"type":47,"value":3145},"Image from URL (src, alt, width, height).",{"type":41,"tag":2344,"props":3147,"children":3148},{},[3149,3158],{"type":41,"tag":2366,"props":3150,"children":3151},{},[3152],{"type":41,"tag":71,"props":3153,"children":3155},{"className":3154},[],[3156],{"type":47,"value":3157},"Hr",{"type":41,"tag":2366,"props":3159,"children":3160},{},[3161],{"type":47,"value":3162},"Horizontal rule.",{"type":41,"tag":2861,"props":3164,"children":3166},{"id":3165},"utility",[3167],{"type":47,"value":3168},"Utility",{"type":41,"tag":2336,"props":3170,"children":3171},{},[3172,3186],{"type":41,"tag":2340,"props":3173,"children":3174},{},[3175],{"type":41,"tag":2344,"props":3176,"children":3177},{},[3178,3182],{"type":41,"tag":2348,"props":3179,"children":3180},{},[3181],{"type":47,"value":2880},{"type":41,"tag":2348,"props":3183,"children":3184},{},[3185],{"type":47,"value":2885},{"type":41,"tag":2359,"props":3187,"children":3188},{},[3189,3206],{"type":41,"tag":2344,"props":3190,"children":3191},{},[3192,3201],{"type":41,"tag":2366,"props":3193,"children":3194},{},[3195],{"type":41,"tag":71,"props":3196,"children":3198},{"className":3197},[],[3199],{"type":47,"value":3200},"Preview",{"type":41,"tag":2366,"props":3202,"children":3203},{},[3204],{"type":47,"value":3205},"Inbox preview text (inside Html).",{"type":41,"tag":2344,"props":3207,"children":3208},{},[3209,3218],{"type":41,"tag":2366,"props":3210,"children":3211},{},[3212],{"type":41,"tag":71,"props":3213,"children":3215},{"className":3214},[],[3216],{"type":47,"value":3217},"Markdown",{"type":41,"tag":2366,"props":3219,"children":3220},{},[3221],{"type":47,"value":3222},"Markdown content as email-safe HTML.",{"type":41,"tag":56,"props":3224,"children":3226},{"id":3225},"email-best-practices",[3227],{"type":47,"value":3228},"Email Best Practices",{"type":41,"tag":3230,"props":3231,"children":3232},"ul",{},[3233,3239,3252,3257,3262],{"type":41,"tag":3234,"props":3235,"children":3236},"li",{},[3237],{"type":47,"value":3238},"Keep width constrained (e.g. Container max-width 600px).",{"type":41,"tag":3234,"props":3240,"children":3241},{},[3242,3244,3250],{"type":47,"value":3243},"Use inline styles or React Email's style props; many clients strip ",{"type":41,"tag":71,"props":3245,"children":3247},{"className":3246},[],[3248],{"type":47,"value":3249},"\u003Cstyle>",{"type":47,"value":3251}," blocks.",{"type":41,"tag":3234,"props":3253,"children":3254},{},[3255],{"type":47,"value":3256},"Prefer table-based layout (Section, Row, Column) for broad client support.",{"type":41,"tag":3234,"props":3258,"children":3259},{},[3260],{"type":47,"value":3261},"Use absolute URLs for images; many clients block relative or cid: references in some contexts.",{"type":41,"tag":3234,"props":3263,"children":3264},{},[3265],{"type":47,"value":3266},"Test in multiple clients (Gmail, Outlook, Apple Mail); use a preview tool or Litmus-like service when possible.",{"type":41,"tag":2857,"props":3268,"children":3269},{},[3270],{"type":47,"value":3271},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3273,"total":3445},[3274,3292,3304,3316,3331,3348,3360,3373,3386,3399,3411,3430],{"slug":3275,"name":3275,"fn":3276,"description":3277,"org":3278,"tags":3279,"stars":3289,"repoUrl":3290,"updatedAt":3291},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3280,3283,3286],{"name":3281,"slug":3282,"type":15},"Agents","agents",{"name":3284,"slug":3285,"type":15},"Automation","automation",{"name":3287,"slug":3288,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":3293,"name":3293,"fn":3294,"description":3295,"org":3296,"tags":3297,"stars":3289,"repoUrl":3290,"updatedAt":3303},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3298,3299,3302],{"name":3284,"slug":3285,"type":15},{"name":3300,"slug":3301,"type":15},"AWS","aws",{"name":3287,"slug":3288,"type":15},"2026-07-17T06:08:33.665276",{"slug":3305,"name":3305,"fn":3306,"description":3307,"org":3308,"tags":3309,"stars":3289,"repoUrl":3290,"updatedAt":3315},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3310,3311,3312],{"name":3281,"slug":3282,"type":15},{"name":3287,"slug":3288,"type":15},{"name":3313,"slug":3314,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":3317,"name":3317,"fn":3318,"description":3319,"org":3320,"tags":3321,"stars":3289,"repoUrl":3290,"updatedAt":3330},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3322,3325,3326,3327],{"name":3323,"slug":3324,"type":15},"API Development","api-development",{"name":3284,"slug":3285,"type":15},{"name":3287,"slug":3288,"type":15},{"name":3328,"slug":3329,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":3332,"name":3332,"fn":3333,"description":3334,"org":3335,"tags":3336,"stars":3289,"repoUrl":3290,"updatedAt":3347},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3337,3338,3341,3344],{"name":3287,"slug":3288,"type":15},{"name":3339,"slug":3340,"type":15},"Debugging","debugging",{"name":3342,"slug":3343,"type":15},"QA","qa",{"name":3345,"slug":3346,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":3349,"name":3349,"fn":3350,"description":3351,"org":3352,"tags":3353,"stars":3289,"repoUrl":3290,"updatedAt":3359},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3354,3355,3356],{"name":3281,"slug":3282,"type":15},{"name":3287,"slug":3288,"type":15},{"name":3357,"slug":3358,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":3361,"name":3361,"fn":3362,"description":3363,"org":3364,"tags":3365,"stars":3289,"repoUrl":3290,"updatedAt":3372},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3366,3367,3370],{"name":3287,"slug":3288,"type":15},{"name":3368,"slug":3369,"type":15},"Messaging","messaging",{"name":3371,"slug":3361,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":3374,"name":3374,"fn":3375,"description":3376,"org":3377,"tags":3378,"stars":3289,"repoUrl":3290,"updatedAt":3385},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3379,3380,3381,3382],{"name":3284,"slug":3285,"type":15},{"name":3287,"slug":3288,"type":15},{"name":3345,"slug":3346,"type":15},{"name":3383,"slug":3384,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":3387,"name":3387,"fn":3388,"description":3389,"org":3390,"tags":3391,"stars":3396,"repoUrl":3397,"updatedAt":3398},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3392,3395],{"name":3393,"slug":3394,"type":15},"Deployment","deployment",{"name":3383,"slug":3384,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":3400,"name":3400,"fn":3401,"description":3402,"org":3403,"tags":3404,"stars":3396,"repoUrl":3397,"updatedAt":3410},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3405,3408,3409],{"name":3406,"slug":3407,"type":15},"CLI","cli",{"name":3393,"slug":3394,"type":15},{"name":3383,"slug":3384,"type":15},"2026-07-17T06:08:41.84179",{"slug":3412,"name":3412,"fn":3413,"description":3414,"org":3415,"tags":3416,"stars":3396,"repoUrl":3397,"updatedAt":3429},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3417,3420,3423,3426],{"name":3418,"slug":3419,"type":15},"Best Practices","best-practices",{"name":3421,"slug":3422,"type":15},"Frontend","frontend",{"name":3424,"slug":3425,"type":15},"React","react",{"name":3427,"slug":3428,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":3431,"name":3431,"fn":3432,"description":3433,"org":3434,"tags":3435,"stars":3396,"repoUrl":3397,"updatedAt":3444},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3436,3439,3440,3443],{"name":3437,"slug":3438,"type":15},"Cost Optimization","cost-optimization",{"name":3393,"slug":3394,"type":15},{"name":3441,"slug":3442,"type":15},"Performance","performance",{"name":3383,"slug":3384,"type":15},"2026-07-17T06:04:08.327515",100,{"items":3447,"total":1131},[3448,3464,3474,3486,3503,3513,3525],{"slug":3449,"name":3449,"fn":3450,"description":3451,"org":3452,"tags":3453,"stars":22,"repoUrl":23,"updatedAt":3463},"codegen","generate code from UI specifications","Code generation utilities for json-render. Use when generating code from UI specs, building custom code exporters, traversing specs, or serializing props for @json-render\u002Fcodegen.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3454,3457,3460],{"name":3455,"slug":3456,"type":15},"Code Generation","code-generation",{"name":3458,"slug":3459,"type":15},"Engineering","engineering",{"name":3461,"slug":3462,"type":15},"JSON","json","2026-07-17T06:08:34.68038",{"slug":3465,"name":3465,"fn":3466,"description":3467,"org":3468,"tags":3469,"stars":22,"repoUrl":23,"updatedAt":3473},"devtools","inspect and debug generative UI components","Drop-in inspector panel for any json-render app. Use when the user wants to debug a generative UI, inspect the spec tree, edit state at runtime, see dispatched actions, follow stream patches live, browse a catalog, or pick DOM elements to find their spec keys. Triggers include \"add devtools\", \"debug json-render\", \"inspect the spec\", \"why is this element not rendering\", \"see the state at runtime\", or requests to tap streams \u002F capture action logs for `@json-render\u002Fdevtools`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3470,3471,3472],{"name":3339,"slug":3340,"type":15},{"name":3421,"slug":3422,"type":15},{"name":3427,"slug":3428,"type":15},"2026-07-17T06:08:35.001228",{"slug":3475,"name":3475,"fn":3476,"description":3477,"org":3478,"tags":3479,"stars":22,"repoUrl":23,"updatedAt":3485},"directives","apply custom directives to JSON specs","Pre-built custom directives for json-render — formatting, math, string manipulation, and i18n. Use when working with @json-render\u002Fdirectives, defining custom directives with defineDirective, or adding $format, $math, $concat, $count, $truncate, $pluralize, $join, or $t to specs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3480,3481,3482,3484],{"name":3284,"slug":3285,"type":15},{"name":3421,"slug":3422,"type":15},{"name":3483,"slug":3483,"type":15},"i18n",{"name":3461,"slug":3462,"type":15},"2026-07-17T06:04:05.866831",{"slug":3487,"name":3487,"fn":3488,"description":3489,"org":3490,"tags":3491,"stars":22,"repoUrl":23,"updatedAt":3502},"image","generate images from JSON specifications","Image renderer for json-render that turns JSON specs into SVG and PNG images via Satori. Use when working with @json-render\u002Fimage, generating OG images from JSON, creating social cards, or rendering AI-generated image specs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3492,3495,3496,3499],{"name":3493,"slug":3494,"type":15},"Images","images",{"name":3461,"slug":3462,"type":15},{"name":3497,"slug":3498,"type":15},"Satori","satori",{"name":3500,"slug":3501,"type":15},"SVG","svg","2026-07-17T06:07:42.441875",{"slug":3504,"name":3504,"fn":3505,"description":3506,"org":3507,"tags":3508,"stars":22,"repoUrl":23,"updatedAt":3512},"ink","render JSON specs as terminal UIs","Ink terminal renderer for json-render that turns JSON specs into interactive terminal UIs. Use when working with @json-render\u002Fink, building terminal UIs from JSON, creating terminal component catalogs, or rendering AI-generated specs in the terminal.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3509,3510,3511],{"name":3406,"slug":3407,"type":15},{"name":3461,"slug":3462,"type":15},{"name":3427,"slug":3428,"type":15},"2026-07-17T06:08:28.678043",{"slug":3514,"name":3514,"fn":3515,"description":3516,"org":3517,"tags":3518,"stars":22,"repoUrl":23,"updatedAt":3524},"jotai","manage state with Jotai","Jotai adapter for json-render's StateStore interface. Use when integrating json-render with Jotai for state management via @json-render\u002Fjotai.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3519,3520,3521],{"name":3421,"slug":3422,"type":15},{"name":3424,"slug":3425,"type":15},{"name":3522,"slug":3523,"type":15},"State Management","state-management","2026-07-17T06:05:48.244622",{"slug":3526,"name":3526,"fn":3527,"description":3528,"org":3529,"tags":3530,"stars":22,"repoUrl":23,"updatedAt":3536},"mcp","render interactive UIs with MCP","MCP Apps integration for json-render. Use when building MCP servers that render interactive UIs in Claude, ChatGPT, Cursor, or VS Code, or when integrating json-render with the Model Context Protocol.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3531,3532,3533,3535],{"name":3421,"slug":3422,"type":15},{"name":3461,"slug":3462,"type":15},{"name":3534,"slug":3526,"type":15},"MCP",{"name":3427,"slug":3428,"type":15},"2026-07-17T06:05:41.274723"]