[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-react-native":3,"mdc--s5pdy0-key":35,"related-org-vercel-labs-react-native":3100,"related-repo-vercel-labs-react-native":3272},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"react-native","render native mobile UIs from JSON","React Native renderer for json-render that turns JSON specs into native mobile UIs. Use when working with @json-render\u002Freact-native, building React Native UIs from JSON, creating mobile component catalogs, or rendering AI-generated specs on mobile.",{"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,15,18,21],{"name":13,"slug":4,"type":14},"React Native","tag",{"name":16,"slug":17,"type":14},"JSON","json",{"name":19,"slug":20,"type":14},"Mobile","mobile",{"name":22,"slug":23,"type":14},"UI Components","ui-components",15678,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render","2026-07-17T06:05:48.592167",null,845,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"The Generative UI framework","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render\u002Ftree\u002FHEAD\u002Fskills\u002Freact-native","---\nname: react-native\ndescription: React Native renderer for json-render that turns JSON specs into native mobile UIs. Use when working with @json-render\u002Freact-native, building React Native UIs from JSON, creating mobile component catalogs, or rendering AI-generated specs on mobile.\n---\n\n# @json-render\u002Freact-native\n\nReact Native renderer that converts JSON specs into native mobile component trees with standard components, data binding, visibility, actions, and dynamic props.\n\n## Quick Start\n\n```typescript\nimport { defineCatalog } from \"@json-render\u002Fcore\";\nimport { schema } from \"@json-render\u002Freact-native\u002Fschema\";\nimport {\n  standardComponentDefinitions,\n  standardActionDefinitions,\n} from \"@json-render\u002Freact-native\u002Fcatalog\";\nimport { defineRegistry, Renderer, type Components } from \"@json-render\u002Freact-native\";\nimport { z } from \"zod\";\n\n\u002F\u002F Create catalog with standard + custom components\nconst catalog = defineCatalog(schema, {\n  components: {\n    ...standardComponentDefinitions,\n    Icon: {\n      props: z.object({ name: z.string(), size: z.number().nullable(), color: z.string().nullable() }),\n      slots: [],\n      description: \"Icon display\",\n    },\n  },\n  actions: standardActionDefinitions,\n});\n\n\u002F\u002F Register only custom components (standard ones are built-in)\nconst { registry } = defineRegistry(catalog, {\n  components: {\n    Icon: ({ props }) => \u003CIonicons name={props.name} size={props.size ?? 24} \u002F>,\n  } as Components\u003Ctypeof catalog>,\n});\n\n\u002F\u002F Render\nfunction App({ spec }) {\n  return (\n    \u003CStateProvider initialState={{}}>\n      \u003CVisibilityProvider>\n        \u003CActionProvider handlers={{}}>\n          \u003CRenderer spec={spec} registry={registry} \u002F>\n        \u003C\u002FActionProvider>\n      \u003C\u002FVisibilityProvider>\n    \u003C\u002FStateProvider>\n  );\n}\n```\n\n## Standard Components\n\n### Layout\n- `Container` - wrapper with padding, background, border radius\n- `Row` - horizontal flex layout with gap, alignment\n- `Column` - vertical flex layout with gap, alignment\n- `ScrollContainer` - scrollable area (vertical or horizontal)\n- `SafeArea` - safe area insets for notch\u002Fhome indicator\n- `Pressable` - touchable wrapper that triggers actions on press\n- `Spacer` - fixed or flexible spacing\n- `Divider` - thin line separator\n\n### Content\n- `Heading` - heading text (levels 1-6)\n- `Paragraph` - body text\n- `Label` - small label text\n- `Image` - image display with sizing modes\n- `Avatar` - circular avatar image\n- `Badge` - small status badge\n- `Chip` - tag\u002Fchip for categories\n\n### Input\n- `Button` - pressable button with variants\n- `TextInput` - text input field\n- `Switch` - toggle switch\n- `Checkbox` - checkbox with label\n- `Slider` - range slider\n- `SearchBar` - search input\n\n### Feedback\n- `Spinner` - loading indicator\n- `ProgressBar` - progress indicator\n\n### Composite\n- `Card` - card container with optional header\n- `ListItem` - list row with title, subtitle, accessory\n- `Modal` - bottom sheet modal\n\n## Visibility Conditions\n\nUse `visible` on elements. Syntax: `{ \"$state\": \"\u002Fpath\" }`, `{ \"$state\": \"\u002Fpath\", \"eq\": value }`, `{ \"$state\": \"\u002Fpath\", \"not\": true }`, `[ cond1, cond2 ]` for AND.\n\n## Pressable + setState Pattern\n\nUse `Pressable` with the built-in `setState` action for interactive UIs like tab bars:\n\n```json\n{\n  \"type\": \"Pressable\",\n  \"props\": {\n    \"action\": \"setState\",\n    \"actionParams\": { \"statePath\": \"\u002FactiveTab\", \"value\": \"home\" }\n  },\n  \"children\": [\"home-icon\", \"home-label\"]\n}\n```\n\n## Dynamic Prop Expressions\n\nAny prop value can be a data-driven expression resolved at render time:\n\n- **`{ \"$state\": \"\u002Fstate\u002Fkey\" }`** - reads from state model (one-way read)\n- **`{ \"$bindState\": \"\u002Fpath\" }`** - two-way binding: use on the natural value prop (value, checked, pressed, etc.) of form components.\n- **`{ \"$bindItem\": \"field\" }`** - two-way binding to a repeat item field. Use inside repeat scopes.\n- **`{ \"$cond\": \u003Ccondition>, \"$then\": \u003Cvalue>, \"$else\": \u003Cvalue> }`** - conditional value\n\n```json\n{\n  \"type\": \"TextInput\",\n  \"props\": {\n    \"value\": { \"$bindState\": \"\u002Fform\u002Femail\" },\n    \"placeholder\": \"Email\"\n  }\n}\n```\n\nComponents do not use a `statePath` prop for two-way binding. Use `{ \"$bindState\": \"\u002Fpath\" }` on the natural value prop instead.\n\n## Built-in Actions\n\nThe `setState` action is handled automatically by `ActionProvider` and updates the state model directly, which re-evaluates visibility conditions and dynamic prop expressions:\n\n```json\n{ \"action\": \"setState\", \"actionParams\": { \"statePath\": \"\u002FactiveTab\", \"value\": \"home\" } }\n```\n\n## Providers\n\n| Provider | Purpose |\n|----------|---------|\n| `StateProvider` | Share state across components (JSON Pointer paths). Accepts optional `store` prop for controlled mode. |\n| `ActionProvider` | Handle actions dispatched from components |\n| `VisibilityProvider` | Enable conditional rendering based on state |\n| `ValidationProvider` | Form field validation |\n\n### External Store (Controlled Mode)\n\nPass a `StateStore` to `StateProvider` (or `JSONUIProvider` \u002F `createRenderer`) to use external state management:\n\n```tsx\nimport { createStateStore, type StateStore } from \"@json-render\u002Freact-native\";\n\nconst store = createStateStore({ count: 0 });\n\n\u003CStateProvider store={store}>{children}\u003C\u002FStateProvider>\n\nstore.set(\"\u002Fcount\", 1); \u002F\u002F React re-renders automatically\n```\n\nWhen `store` is provided, `initialState` and `onStateChange` are ignored.\n\n## Key Exports\n\n| Export | Purpose |\n|--------|---------|\n| `defineRegistry` | Create a type-safe component registry from a catalog |\n| `Renderer` | Render a spec using a registry |\n| `schema` | React Native element tree schema |\n| `standardComponentDefinitions` | Catalog definitions for all standard components |\n| `standardActionDefinitions` | Catalog definitions for standard actions |\n| `standardComponents` | Pre-built component implementations |\n| `createStandardActionHandlers` | Create handlers for standard actions |\n| `useStateStore` | Access state context |\n| `useStateValue` | Get single value from state |\n| `useBoundProp` | Two-way state binding via `$bindState`\u002F`$bindItem` |\n| `useStateBinding` | _(deprecated)_ Legacy two-way binding by path |\n| `useActions` | Access actions context |\n| `useAction` | Get a single action dispatch function |\n| `useUIStream` | Stream specs from an API endpoint |\n| `createStateStore` | Create a framework-agnostic in-memory `StateStore` |\n| `StateStore` | Interface for plugging in external state management |\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,55,62,1235,1241,1248,1341,1347,1427,1433,1502,1508,1533,1539,1575,1581,1624,1630,1649,1929,1935,1940,2000,2179,2198,2204,2223,2357,2363,2464,2470,2506,2746,2774,2780,3094],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"json-renderreact-native",[46],{"type":47,"value":48},"text","@json-render\u002Freact-native",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"React Native renderer that converts JSON specs into native mobile component trees with standard components, data binding, visibility, actions, and dynamic props.",{"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 { defineCatalog } from \"@json-render\u002Fcore\";\nimport { schema } from \"@json-render\u002Freact-native\u002Fschema\";\nimport {\n  standardComponentDefinitions,\n  standardActionDefinitions,\n} from \"@json-render\u002Freact-native\u002Fcatalog\";\nimport { defineRegistry, Renderer, type Components } from \"@json-render\u002Freact-native\";\nimport { z } from \"zod\";\n\n\u002F\u002F Create catalog with standard + custom components\nconst catalog = defineCatalog(schema, {\n  components: {\n    ...standardComponentDefinitions,\n    Icon: {\n      props: z.object({ name: z.string(), size: z.number().nullable(), color: z.string().nullable() }),\n      slots: [],\n      description: \"Icon display\",\n    },\n  },\n  actions: standardActionDefinitions,\n});\n\n\u002F\u002F Register only custom components (standard ones are built-in)\nconst { registry } = defineRegistry(catalog, {\n  components: {\n    Icon: ({ props }) => \u003CIonicons name={props.name} size={props.size ?? 24} \u002F>,\n  } as Components\u003Ctypeof catalog>,\n});\n\n\u002F\u002F Render\nfunction App({ spec }) {\n  return (\n    \u003CStateProvider initialState={{}}>\n      \u003CVisibilityProvider>\n        \u003CActionProvider handlers={{}}>\n          \u003CRenderer spec={spec} registry={registry} \u002F>\n        \u003C\u002FActionProvider>\n      \u003C\u002FVisibilityProvider>\n    \u003C\u002FStateProvider>\n  );\n}\n","typescript","",[70],{"type":41,"tag":71,"props":72,"children":73},"code",{"__ignoreMap":68},[74,129,171,184,198,211,241,306,348,358,368,406,425,443,460,622,644,674,683,692,714,730,738,747,790,806,929,962,978,986,995,1027,1041,1065,1084,1107,1162,1179,1196,1213,1226],{"type":41,"tag":75,"props":76,"children":79},"span",{"class":77,"line":78},"line",1,[80,86,92,98,103,108,113,119,124],{"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}," defineCatalog",{"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":118},"@json-render\u002Fcore",{"type":41,"tag":75,"props":120,"children":121},{"style":88},[122],{"type":47,"value":123},"\"",{"type":41,"tag":75,"props":125,"children":126},{"style":88},[127],{"type":47,"value":128},";\n",{"type":41,"tag":75,"props":130,"children":132},{"class":77,"line":131},2,[133,137,141,146,150,154,158,163,167],{"type":41,"tag":75,"props":134,"children":135},{"style":82},[136],{"type":47,"value":85},{"type":41,"tag":75,"props":138,"children":139},{"style":88},[140],{"type":47,"value":91},{"type":41,"tag":75,"props":142,"children":143},{"style":94},[144],{"type":47,"value":145}," schema",{"type":41,"tag":75,"props":147,"children":148},{"style":88},[149],{"type":47,"value":102},{"type":41,"tag":75,"props":151,"children":152},{"style":82},[153],{"type":47,"value":107},{"type":41,"tag":75,"props":155,"children":156},{"style":88},[157],{"type":47,"value":112},{"type":41,"tag":75,"props":159,"children":160},{"style":115},[161],{"type":47,"value":162},"@json-render\u002Freact-native\u002Fschema",{"type":41,"tag":75,"props":164,"children":165},{"style":88},[166],{"type":47,"value":123},{"type":41,"tag":75,"props":168,"children":169},{"style":88},[170],{"type":47,"value":128},{"type":41,"tag":75,"props":172,"children":174},{"class":77,"line":173},3,[175,179],{"type":41,"tag":75,"props":176,"children":177},{"style":82},[178],{"type":47,"value":85},{"type":41,"tag":75,"props":180,"children":181},{"style":88},[182],{"type":47,"value":183}," {\n",{"type":41,"tag":75,"props":185,"children":187},{"class":77,"line":186},4,[188,193],{"type":41,"tag":75,"props":189,"children":190},{"style":94},[191],{"type":47,"value":192},"  standardComponentDefinitions",{"type":41,"tag":75,"props":194,"children":195},{"style":88},[196],{"type":47,"value":197},",\n",{"type":41,"tag":75,"props":199,"children":201},{"class":77,"line":200},5,[202,207],{"type":41,"tag":75,"props":203,"children":204},{"style":94},[205],{"type":47,"value":206},"  standardActionDefinitions",{"type":41,"tag":75,"props":208,"children":209},{"style":88},[210],{"type":47,"value":197},{"type":41,"tag":75,"props":212,"children":214},{"class":77,"line":213},6,[215,220,224,228,233,237],{"type":41,"tag":75,"props":216,"children":217},{"style":88},[218],{"type":47,"value":219},"}",{"type":41,"tag":75,"props":221,"children":222},{"style":82},[223],{"type":47,"value":107},{"type":41,"tag":75,"props":225,"children":226},{"style":88},[227],{"type":47,"value":112},{"type":41,"tag":75,"props":229,"children":230},{"style":115},[231],{"type":47,"value":232},"@json-render\u002Freact-native\u002Fcatalog",{"type":41,"tag":75,"props":234,"children":235},{"style":88},[236],{"type":47,"value":123},{"type":41,"tag":75,"props":238,"children":239},{"style":88},[240],{"type":47,"value":128},{"type":41,"tag":75,"props":242,"children":244},{"class":77,"line":243},7,[245,249,253,258,263,268,272,277,282,286,290,294,298,302],{"type":41,"tag":75,"props":246,"children":247},{"style":82},[248],{"type":47,"value":85},{"type":41,"tag":75,"props":250,"children":251},{"style":88},[252],{"type":47,"value":91},{"type":41,"tag":75,"props":254,"children":255},{"style":94},[256],{"type":47,"value":257}," defineRegistry",{"type":41,"tag":75,"props":259,"children":260},{"style":88},[261],{"type":47,"value":262},",",{"type":41,"tag":75,"props":264,"children":265},{"style":94},[266],{"type":47,"value":267}," Renderer",{"type":41,"tag":75,"props":269,"children":270},{"style":88},[271],{"type":47,"value":262},{"type":41,"tag":75,"props":273,"children":274},{"style":82},[275],{"type":47,"value":276}," type",{"type":41,"tag":75,"props":278,"children":279},{"style":94},[280],{"type":47,"value":281}," Components",{"type":41,"tag":75,"props":283,"children":284},{"style":88},[285],{"type":47,"value":102},{"type":41,"tag":75,"props":287,"children":288},{"style":82},[289],{"type":47,"value":107},{"type":41,"tag":75,"props":291,"children":292},{"style":88},[293],{"type":47,"value":112},{"type":41,"tag":75,"props":295,"children":296},{"style":115},[297],{"type":47,"value":48},{"type":41,"tag":75,"props":299,"children":300},{"style":88},[301],{"type":47,"value":123},{"type":41,"tag":75,"props":303,"children":304},{"style":88},[305],{"type":47,"value":128},{"type":41,"tag":75,"props":307,"children":309},{"class":77,"line":308},8,[310,314,318,323,327,331,335,340,344],{"type":41,"tag":75,"props":311,"children":312},{"style":82},[313],{"type":47,"value":85},{"type":41,"tag":75,"props":315,"children":316},{"style":88},[317],{"type":47,"value":91},{"type":41,"tag":75,"props":319,"children":320},{"style":94},[321],{"type":47,"value":322}," z",{"type":41,"tag":75,"props":324,"children":325},{"style":88},[326],{"type":47,"value":102},{"type":41,"tag":75,"props":328,"children":329},{"style":82},[330],{"type":47,"value":107},{"type":41,"tag":75,"props":332,"children":333},{"style":88},[334],{"type":47,"value":112},{"type":41,"tag":75,"props":336,"children":337},{"style":115},[338],{"type":47,"value":339},"zod",{"type":41,"tag":75,"props":341,"children":342},{"style":88},[343],{"type":47,"value":123},{"type":41,"tag":75,"props":345,"children":346},{"style":88},[347],{"type":47,"value":128},{"type":41,"tag":75,"props":349,"children":351},{"class":77,"line":350},9,[352],{"type":41,"tag":75,"props":353,"children":355},{"emptyLinePlaceholder":354},true,[356],{"type":47,"value":357},"\n",{"type":41,"tag":75,"props":359,"children":361},{"class":77,"line":360},10,[362],{"type":41,"tag":75,"props":363,"children":365},{"style":364},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[366],{"type":47,"value":367},"\u002F\u002F Create catalog with standard + custom components\n",{"type":41,"tag":75,"props":369,"children":371},{"class":77,"line":370},11,[372,378,383,388,393,398,402],{"type":41,"tag":75,"props":373,"children":375},{"style":374},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[376],{"type":47,"value":377},"const",{"type":41,"tag":75,"props":379,"children":380},{"style":94},[381],{"type":47,"value":382}," catalog ",{"type":41,"tag":75,"props":384,"children":385},{"style":88},[386],{"type":47,"value":387},"=",{"type":41,"tag":75,"props":389,"children":391},{"style":390},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[392],{"type":47,"value":97},{"type":41,"tag":75,"props":394,"children":395},{"style":94},[396],{"type":47,"value":397},"(schema",{"type":41,"tag":75,"props":399,"children":400},{"style":88},[401],{"type":47,"value":262},{"type":41,"tag":75,"props":403,"children":404},{"style":88},[405],{"type":47,"value":183},{"type":41,"tag":75,"props":407,"children":409},{"class":77,"line":408},12,[410,416,421],{"type":41,"tag":75,"props":411,"children":413},{"style":412},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[414],{"type":47,"value":415},"  components",{"type":41,"tag":75,"props":417,"children":418},{"style":88},[419],{"type":47,"value":420},":",{"type":41,"tag":75,"props":422,"children":423},{"style":88},[424],{"type":47,"value":183},{"type":41,"tag":75,"props":426,"children":428},{"class":77,"line":427},13,[429,434,439],{"type":41,"tag":75,"props":430,"children":431},{"style":88},[432],{"type":47,"value":433},"    ...",{"type":41,"tag":75,"props":435,"children":436},{"style":94},[437],{"type":47,"value":438},"standardComponentDefinitions",{"type":41,"tag":75,"props":440,"children":441},{"style":88},[442],{"type":47,"value":197},{"type":41,"tag":75,"props":444,"children":446},{"class":77,"line":445},14,[447,452,456],{"type":41,"tag":75,"props":448,"children":449},{"style":412},[450],{"type":47,"value":451},"    Icon",{"type":41,"tag":75,"props":453,"children":454},{"style":88},[455],{"type":47,"value":420},{"type":41,"tag":75,"props":457,"children":458},{"style":88},[459],{"type":47,"value":183},{"type":41,"tag":75,"props":461,"children":463},{"class":77,"line":462},15,[464,469,473,477,482,487,492,497,502,506,510,514,519,524,528,533,537,541,545,550,554,558,563,567,571,576,580,584,588,592,596,600,604,609,613,618],{"type":41,"tag":75,"props":465,"children":466},{"style":412},[467],{"type":47,"value":468},"      props",{"type":41,"tag":75,"props":470,"children":471},{"style":88},[472],{"type":47,"value":420},{"type":41,"tag":75,"props":474,"children":475},{"style":94},[476],{"type":47,"value":322},{"type":41,"tag":75,"props":478,"children":479},{"style":88},[480],{"type":47,"value":481},".",{"type":41,"tag":75,"props":483,"children":484},{"style":390},[485],{"type":47,"value":486},"object",{"type":41,"tag":75,"props":488,"children":489},{"style":94},[490],{"type":47,"value":491},"(",{"type":41,"tag":75,"props":493,"children":494},{"style":88},[495],{"type":47,"value":496},"{",{"type":41,"tag":75,"props":498,"children":499},{"style":412},[500],{"type":47,"value":501}," name",{"type":41,"tag":75,"props":503,"children":504},{"style":88},[505],{"type":47,"value":420},{"type":41,"tag":75,"props":507,"children":508},{"style":94},[509],{"type":47,"value":322},{"type":41,"tag":75,"props":511,"children":512},{"style":88},[513],{"type":47,"value":481},{"type":41,"tag":75,"props":515,"children":516},{"style":390},[517],{"type":47,"value":518},"string",{"type":41,"tag":75,"props":520,"children":521},{"style":94},[522],{"type":47,"value":523},"()",{"type":41,"tag":75,"props":525,"children":526},{"style":88},[527],{"type":47,"value":262},{"type":41,"tag":75,"props":529,"children":530},{"style":412},[531],{"type":47,"value":532}," size",{"type":41,"tag":75,"props":534,"children":535},{"style":88},[536],{"type":47,"value":420},{"type":41,"tag":75,"props":538,"children":539},{"style":94},[540],{"type":47,"value":322},{"type":41,"tag":75,"props":542,"children":543},{"style":88},[544],{"type":47,"value":481},{"type":41,"tag":75,"props":546,"children":547},{"style":390},[548],{"type":47,"value":549},"number",{"type":41,"tag":75,"props":551,"children":552},{"style":94},[553],{"type":47,"value":523},{"type":41,"tag":75,"props":555,"children":556},{"style":88},[557],{"type":47,"value":481},{"type":41,"tag":75,"props":559,"children":560},{"style":390},[561],{"type":47,"value":562},"nullable",{"type":41,"tag":75,"props":564,"children":565},{"style":94},[566],{"type":47,"value":523},{"type":41,"tag":75,"props":568,"children":569},{"style":88},[570],{"type":47,"value":262},{"type":41,"tag":75,"props":572,"children":573},{"style":412},[574],{"type":47,"value":575}," color",{"type":41,"tag":75,"props":577,"children":578},{"style":88},[579],{"type":47,"value":420},{"type":41,"tag":75,"props":581,"children":582},{"style":94},[583],{"type":47,"value":322},{"type":41,"tag":75,"props":585,"children":586},{"style":88},[587],{"type":47,"value":481},{"type":41,"tag":75,"props":589,"children":590},{"style":390},[591],{"type":47,"value":518},{"type":41,"tag":75,"props":593,"children":594},{"style":94},[595],{"type":47,"value":523},{"type":41,"tag":75,"props":597,"children":598},{"style":88},[599],{"type":47,"value":481},{"type":41,"tag":75,"props":601,"children":602},{"style":390},[603],{"type":47,"value":562},{"type":41,"tag":75,"props":605,"children":606},{"style":94},[607],{"type":47,"value":608},"() ",{"type":41,"tag":75,"props":610,"children":611},{"style":88},[612],{"type":47,"value":219},{"type":41,"tag":75,"props":614,"children":615},{"style":94},[616],{"type":47,"value":617},")",{"type":41,"tag":75,"props":619,"children":620},{"style":88},[621],{"type":47,"value":197},{"type":41,"tag":75,"props":623,"children":625},{"class":77,"line":624},16,[626,631,635,640],{"type":41,"tag":75,"props":627,"children":628},{"style":412},[629],{"type":47,"value":630},"      slots",{"type":41,"tag":75,"props":632,"children":633},{"style":88},[634],{"type":47,"value":420},{"type":41,"tag":75,"props":636,"children":637},{"style":94},[638],{"type":47,"value":639}," []",{"type":41,"tag":75,"props":641,"children":642},{"style":88},[643],{"type":47,"value":197},{"type":41,"tag":75,"props":645,"children":647},{"class":77,"line":646},17,[648,653,657,661,666,670],{"type":41,"tag":75,"props":649,"children":650},{"style":412},[651],{"type":47,"value":652},"      description",{"type":41,"tag":75,"props":654,"children":655},{"style":88},[656],{"type":47,"value":420},{"type":41,"tag":75,"props":658,"children":659},{"style":88},[660],{"type":47,"value":112},{"type":41,"tag":75,"props":662,"children":663},{"style":115},[664],{"type":47,"value":665},"Icon display",{"type":41,"tag":75,"props":667,"children":668},{"style":88},[669],{"type":47,"value":123},{"type":41,"tag":75,"props":671,"children":672},{"style":88},[673],{"type":47,"value":197},{"type":41,"tag":75,"props":675,"children":677},{"class":77,"line":676},18,[678],{"type":41,"tag":75,"props":679,"children":680},{"style":88},[681],{"type":47,"value":682},"    },\n",{"type":41,"tag":75,"props":684,"children":686},{"class":77,"line":685},19,[687],{"type":41,"tag":75,"props":688,"children":689},{"style":88},[690],{"type":47,"value":691},"  },\n",{"type":41,"tag":75,"props":693,"children":695},{"class":77,"line":694},20,[696,701,705,710],{"type":41,"tag":75,"props":697,"children":698},{"style":412},[699],{"type":47,"value":700},"  actions",{"type":41,"tag":75,"props":702,"children":703},{"style":88},[704],{"type":47,"value":420},{"type":41,"tag":75,"props":706,"children":707},{"style":94},[708],{"type":47,"value":709}," standardActionDefinitions",{"type":41,"tag":75,"props":711,"children":712},{"style":88},[713],{"type":47,"value":197},{"type":41,"tag":75,"props":715,"children":717},{"class":77,"line":716},21,[718,722,726],{"type":41,"tag":75,"props":719,"children":720},{"style":88},[721],{"type":47,"value":219},{"type":41,"tag":75,"props":723,"children":724},{"style":94},[725],{"type":47,"value":617},{"type":41,"tag":75,"props":727,"children":728},{"style":88},[729],{"type":47,"value":128},{"type":41,"tag":75,"props":731,"children":733},{"class":77,"line":732},22,[734],{"type":41,"tag":75,"props":735,"children":736},{"emptyLinePlaceholder":354},[737],{"type":47,"value":357},{"type":41,"tag":75,"props":739,"children":741},{"class":77,"line":740},23,[742],{"type":41,"tag":75,"props":743,"children":744},{"style":364},[745],{"type":47,"value":746},"\u002F\u002F Register only custom components (standard ones are built-in)\n",{"type":41,"tag":75,"props":748,"children":750},{"class":77,"line":749},24,[751,755,759,764,768,773,777,782,786],{"type":41,"tag":75,"props":752,"children":753},{"style":374},[754],{"type":47,"value":377},{"type":41,"tag":75,"props":756,"children":757},{"style":88},[758],{"type":47,"value":91},{"type":41,"tag":75,"props":760,"children":761},{"style":94},[762],{"type":47,"value":763}," registry ",{"type":41,"tag":75,"props":765,"children":766},{"style":88},[767],{"type":47,"value":219},{"type":41,"tag":75,"props":769,"children":770},{"style":88},[771],{"type":47,"value":772}," =",{"type":41,"tag":75,"props":774,"children":775},{"style":390},[776],{"type":47,"value":257},{"type":41,"tag":75,"props":778,"children":779},{"style":94},[780],{"type":47,"value":781},"(catalog",{"type":41,"tag":75,"props":783,"children":784},{"style":88},[785],{"type":47,"value":262},{"type":41,"tag":75,"props":787,"children":788},{"style":88},[789],{"type":47,"value":183},{"type":41,"tag":75,"props":791,"children":793},{"class":77,"line":792},25,[794,798,802],{"type":41,"tag":75,"props":795,"children":796},{"style":412},[797],{"type":47,"value":415},{"type":41,"tag":75,"props":799,"children":800},{"style":88},[801],{"type":47,"value":420},{"type":41,"tag":75,"props":803,"children":804},{"style":88},[805],{"type":47,"value":183},{"type":41,"tag":75,"props":807,"children":809},{"class":77,"line":808},26,[810,814,818,823,829,834,839,844,850,854,858,862,867,871,876,880,884,888,892,896,900,905,910,916,920,925],{"type":41,"tag":75,"props":811,"children":812},{"style":390},[813],{"type":47,"value":451},{"type":41,"tag":75,"props":815,"children":816},{"style":88},[817],{"type":47,"value":420},{"type":41,"tag":75,"props":819,"children":820},{"style":88},[821],{"type":47,"value":822}," ({",{"type":41,"tag":75,"props":824,"children":826},{"style":825},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[827],{"type":47,"value":828}," props",{"type":41,"tag":75,"props":830,"children":831},{"style":88},[832],{"type":47,"value":833}," })",{"type":41,"tag":75,"props":835,"children":836},{"style":374},[837],{"type":47,"value":838}," =>",{"type":41,"tag":75,"props":840,"children":841},{"style":94},[842],{"type":47,"value":843}," \u003C",{"type":41,"tag":75,"props":845,"children":847},{"style":846},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[848],{"type":47,"value":849},"Ionicons",{"type":41,"tag":75,"props":851,"children":852},{"style":846},[853],{"type":47,"value":501},{"type":41,"tag":75,"props":855,"children":856},{"style":94},[857],{"type":47,"value":387},{"type":41,"tag":75,"props":859,"children":860},{"style":88},[861],{"type":47,"value":496},{"type":41,"tag":75,"props":863,"children":864},{"style":846},[865],{"type":47,"value":866},"props",{"type":41,"tag":75,"props":868,"children":869},{"style":88},[870],{"type":47,"value":481},{"type":41,"tag":75,"props":872,"children":873},{"style":412},[874],{"type":47,"value":875},"name",{"type":41,"tag":75,"props":877,"children":878},{"style":88},[879],{"type":47,"value":219},{"type":41,"tag":75,"props":881,"children":882},{"style":846},[883],{"type":47,"value":532},{"type":41,"tag":75,"props":885,"children":886},{"style":94},[887],{"type":47,"value":387},{"type":41,"tag":75,"props":889,"children":890},{"style":88},[891],{"type":47,"value":496},{"type":41,"tag":75,"props":893,"children":894},{"style":846},[895],{"type":47,"value":866},{"type":41,"tag":75,"props":897,"children":898},{"style":88},[899],{"type":47,"value":481},{"type":41,"tag":75,"props":901,"children":902},{"style":846},[903],{"type":47,"value":904},"size",{"type":41,"tag":75,"props":906,"children":907},{"style":88},[908],{"type":47,"value":909}," ??",{"type":41,"tag":75,"props":911,"children":913},{"style":912},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[914],{"type":47,"value":915}," 24",{"type":41,"tag":75,"props":917,"children":918},{"style":88},[919],{"type":47,"value":219},{"type":41,"tag":75,"props":921,"children":922},{"style":94},[923],{"type":47,"value":924}," \u002F>",{"type":41,"tag":75,"props":926,"children":927},{"style":88},[928],{"type":47,"value":197},{"type":41,"tag":75,"props":930,"children":932},{"class":77,"line":931},27,[933,938,943,947,952,957],{"type":41,"tag":75,"props":934,"children":935},{"style":88},[936],{"type":47,"value":937},"  }",{"type":41,"tag":75,"props":939,"children":940},{"style":82},[941],{"type":47,"value":942}," as",{"type":41,"tag":75,"props":944,"children":945},{"style":846},[946],{"type":47,"value":281},{"type":41,"tag":75,"props":948,"children":949},{"style":88},[950],{"type":47,"value":951},"\u003Ctypeof",{"type":41,"tag":75,"props":953,"children":954},{"style":94},[955],{"type":47,"value":956}," catalog",{"type":41,"tag":75,"props":958,"children":959},{"style":88},[960],{"type":47,"value":961},">,\n",{"type":41,"tag":75,"props":963,"children":965},{"class":77,"line":964},28,[966,970,974],{"type":41,"tag":75,"props":967,"children":968},{"style":88},[969],{"type":47,"value":219},{"type":41,"tag":75,"props":971,"children":972},{"style":94},[973],{"type":47,"value":617},{"type":41,"tag":75,"props":975,"children":976},{"style":88},[977],{"type":47,"value":128},{"type":41,"tag":75,"props":979,"children":981},{"class":77,"line":980},29,[982],{"type":41,"tag":75,"props":983,"children":984},{"emptyLinePlaceholder":354},[985],{"type":47,"value":357},{"type":41,"tag":75,"props":987,"children":989},{"class":77,"line":988},30,[990],{"type":41,"tag":75,"props":991,"children":992},{"style":364},[993],{"type":47,"value":994},"\u002F\u002F Render\n",{"type":41,"tag":75,"props":996,"children":998},{"class":77,"line":997},31,[999,1004,1009,1014,1019,1023],{"type":41,"tag":75,"props":1000,"children":1001},{"style":374},[1002],{"type":47,"value":1003},"function",{"type":41,"tag":75,"props":1005,"children":1006},{"style":390},[1007],{"type":47,"value":1008}," App",{"type":41,"tag":75,"props":1010,"children":1011},{"style":88},[1012],{"type":47,"value":1013},"({",{"type":41,"tag":75,"props":1015,"children":1016},{"style":825},[1017],{"type":47,"value":1018}," spec",{"type":41,"tag":75,"props":1020,"children":1021},{"style":88},[1022],{"type":47,"value":833},{"type":41,"tag":75,"props":1024,"children":1025},{"style":88},[1026],{"type":47,"value":183},{"type":41,"tag":75,"props":1028,"children":1030},{"class":77,"line":1029},32,[1031,1036],{"type":41,"tag":75,"props":1032,"children":1033},{"style":82},[1034],{"type":47,"value":1035},"  return",{"type":41,"tag":75,"props":1037,"children":1038},{"style":412},[1039],{"type":47,"value":1040}," (\n",{"type":41,"tag":75,"props":1042,"children":1044},{"class":77,"line":1043},33,[1045,1050,1055,1060],{"type":41,"tag":75,"props":1046,"children":1047},{"style":88},[1048],{"type":47,"value":1049},"    \u003C",{"type":41,"tag":75,"props":1051,"children":1052},{"style":94},[1053],{"type":47,"value":1054},"StateProvider",{"type":41,"tag":75,"props":1056,"children":1057},{"style":94},[1058],{"type":47,"value":1059}," initialState",{"type":41,"tag":75,"props":1061,"children":1062},{"style":88},[1063],{"type":47,"value":1064},"={{}}>\n",{"type":41,"tag":75,"props":1066,"children":1068},{"class":77,"line":1067},34,[1069,1074,1079],{"type":41,"tag":75,"props":1070,"children":1071},{"style":412},[1072],{"type":47,"value":1073},"      \u003C",{"type":41,"tag":75,"props":1075,"children":1076},{"style":846},[1077],{"type":47,"value":1078},"VisibilityProvider",{"type":41,"tag":75,"props":1080,"children":1081},{"style":412},[1082],{"type":47,"value":1083},">\n",{"type":41,"tag":75,"props":1085,"children":1087},{"class":77,"line":1086},35,[1088,1093,1098,1103],{"type":41,"tag":75,"props":1089,"children":1090},{"style":88},[1091],{"type":47,"value":1092},"        \u003C",{"type":41,"tag":75,"props":1094,"children":1095},{"style":94},[1096],{"type":47,"value":1097},"ActionProvider",{"type":41,"tag":75,"props":1099,"children":1100},{"style":94},[1101],{"type":47,"value":1102}," handlers",{"type":41,"tag":75,"props":1104,"children":1105},{"style":88},[1106],{"type":47,"value":1064},{"type":41,"tag":75,"props":1108,"children":1110},{"class":77,"line":1109},36,[1111,1116,1121,1125,1130,1135,1139,1144,1148,1153,1157],{"type":41,"tag":75,"props":1112,"children":1113},{"style":88},[1114],{"type":47,"value":1115},"          \u003C",{"type":41,"tag":75,"props":1117,"children":1118},{"style":94},[1119],{"type":47,"value":1120},"Renderer",{"type":41,"tag":75,"props":1122,"children":1123},{"style":94},[1124],{"type":47,"value":1018},{"type":41,"tag":75,"props":1126,"children":1127},{"style":88},[1128],{"type":47,"value":1129},"={",{"type":41,"tag":75,"props":1131,"children":1132},{"style":94},[1133],{"type":47,"value":1134},"spec",{"type":41,"tag":75,"props":1136,"children":1137},{"style":88},[1138],{"type":47,"value":219},{"type":41,"tag":75,"props":1140,"children":1141},{"style":94},[1142],{"type":47,"value":1143}," registry",{"type":41,"tag":75,"props":1145,"children":1146},{"style":88},[1147],{"type":47,"value":1129},{"type":41,"tag":75,"props":1149,"children":1150},{"style":94},[1151],{"type":47,"value":1152},"registry",{"type":41,"tag":75,"props":1154,"children":1155},{"style":88},[1156],{"type":47,"value":219},{"type":41,"tag":75,"props":1158,"children":1159},{"style":88},[1160],{"type":47,"value":1161}," \u002F>\n",{"type":41,"tag":75,"props":1163,"children":1165},{"class":77,"line":1164},37,[1166,1171,1175],{"type":41,"tag":75,"props":1167,"children":1168},{"style":88},[1169],{"type":47,"value":1170},"        \u003C\u002F",{"type":41,"tag":75,"props":1172,"children":1173},{"style":94},[1174],{"type":47,"value":1097},{"type":41,"tag":75,"props":1176,"children":1177},{"style":88},[1178],{"type":47,"value":1083},{"type":41,"tag":75,"props":1180,"children":1182},{"class":77,"line":1181},38,[1183,1188,1192],{"type":41,"tag":75,"props":1184,"children":1185},{"style":88},[1186],{"type":47,"value":1187},"      \u003C\u002F",{"type":41,"tag":75,"props":1189,"children":1190},{"style":94},[1191],{"type":47,"value":1078},{"type":41,"tag":75,"props":1193,"children":1194},{"style":88},[1195],{"type":47,"value":1083},{"type":41,"tag":75,"props":1197,"children":1199},{"class":77,"line":1198},39,[1200,1205,1209],{"type":41,"tag":75,"props":1201,"children":1202},{"style":88},[1203],{"type":47,"value":1204},"    \u003C\u002F",{"type":41,"tag":75,"props":1206,"children":1207},{"style":94},[1208],{"type":47,"value":1054},{"type":41,"tag":75,"props":1210,"children":1211},{"style":88},[1212],{"type":47,"value":1083},{"type":41,"tag":75,"props":1214,"children":1216},{"class":77,"line":1215},40,[1217,1222],{"type":41,"tag":75,"props":1218,"children":1219},{"style":412},[1220],{"type":47,"value":1221},"  )",{"type":41,"tag":75,"props":1223,"children":1224},{"style":88},[1225],{"type":47,"value":128},{"type":41,"tag":75,"props":1227,"children":1229},{"class":77,"line":1228},41,[1230],{"type":41,"tag":75,"props":1231,"children":1232},{"style":88},[1233],{"type":47,"value":1234},"}\n",{"type":41,"tag":56,"props":1236,"children":1238},{"id":1237},"standard-components",[1239],{"type":47,"value":1240},"Standard Components",{"type":41,"tag":1242,"props":1243,"children":1245},"h3",{"id":1244},"layout",[1246],{"type":47,"value":1247},"Layout",{"type":41,"tag":1249,"props":1250,"children":1251},"ul",{},[1252,1264,1275,1286,1297,1308,1319,1330],{"type":41,"tag":1253,"props":1254,"children":1255},"li",{},[1256,1262],{"type":41,"tag":71,"props":1257,"children":1259},{"className":1258},[],[1260],{"type":47,"value":1261},"Container",{"type":47,"value":1263}," - wrapper with padding, background, border radius",{"type":41,"tag":1253,"props":1265,"children":1266},{},[1267,1273],{"type":41,"tag":71,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":47,"value":1272},"Row",{"type":47,"value":1274}," - horizontal flex layout with gap, alignment",{"type":41,"tag":1253,"props":1276,"children":1277},{},[1278,1284],{"type":41,"tag":71,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":47,"value":1283},"Column",{"type":47,"value":1285}," - vertical flex layout with gap, alignment",{"type":41,"tag":1253,"props":1287,"children":1288},{},[1289,1295],{"type":41,"tag":71,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":47,"value":1294},"ScrollContainer",{"type":47,"value":1296}," - scrollable area (vertical or horizontal)",{"type":41,"tag":1253,"props":1298,"children":1299},{},[1300,1306],{"type":41,"tag":71,"props":1301,"children":1303},{"className":1302},[],[1304],{"type":47,"value":1305},"SafeArea",{"type":47,"value":1307}," - safe area insets for notch\u002Fhome indicator",{"type":41,"tag":1253,"props":1309,"children":1310},{},[1311,1317],{"type":41,"tag":71,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":47,"value":1316},"Pressable",{"type":47,"value":1318}," - touchable wrapper that triggers actions on press",{"type":41,"tag":1253,"props":1320,"children":1321},{},[1322,1328],{"type":41,"tag":71,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":47,"value":1327},"Spacer",{"type":47,"value":1329}," - fixed or flexible spacing",{"type":41,"tag":1253,"props":1331,"children":1332},{},[1333,1339],{"type":41,"tag":71,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":47,"value":1338},"Divider",{"type":47,"value":1340}," - thin line separator",{"type":41,"tag":1242,"props":1342,"children":1344},{"id":1343},"content",[1345],{"type":47,"value":1346},"Content",{"type":41,"tag":1249,"props":1348,"children":1349},{},[1350,1361,1372,1383,1394,1405,1416],{"type":41,"tag":1253,"props":1351,"children":1352},{},[1353,1359],{"type":41,"tag":71,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":47,"value":1358},"Heading",{"type":47,"value":1360}," - heading text (levels 1-6)",{"type":41,"tag":1253,"props":1362,"children":1363},{},[1364,1370],{"type":41,"tag":71,"props":1365,"children":1367},{"className":1366},[],[1368],{"type":47,"value":1369},"Paragraph",{"type":47,"value":1371}," - body text",{"type":41,"tag":1253,"props":1373,"children":1374},{},[1375,1381],{"type":41,"tag":71,"props":1376,"children":1378},{"className":1377},[],[1379],{"type":47,"value":1380},"Label",{"type":47,"value":1382}," - small label text",{"type":41,"tag":1253,"props":1384,"children":1385},{},[1386,1392],{"type":41,"tag":71,"props":1387,"children":1389},{"className":1388},[],[1390],{"type":47,"value":1391},"Image",{"type":47,"value":1393}," - image display with sizing modes",{"type":41,"tag":1253,"props":1395,"children":1396},{},[1397,1403],{"type":41,"tag":71,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":47,"value":1402},"Avatar",{"type":47,"value":1404}," - circular avatar image",{"type":41,"tag":1253,"props":1406,"children":1407},{},[1408,1414],{"type":41,"tag":71,"props":1409,"children":1411},{"className":1410},[],[1412],{"type":47,"value":1413},"Badge",{"type":47,"value":1415}," - small status badge",{"type":41,"tag":1253,"props":1417,"children":1418},{},[1419,1425],{"type":41,"tag":71,"props":1420,"children":1422},{"className":1421},[],[1423],{"type":47,"value":1424},"Chip",{"type":47,"value":1426}," - tag\u002Fchip for categories",{"type":41,"tag":1242,"props":1428,"children":1430},{"id":1429},"input",[1431],{"type":47,"value":1432},"Input",{"type":41,"tag":1249,"props":1434,"children":1435},{},[1436,1447,1458,1469,1480,1491],{"type":41,"tag":1253,"props":1437,"children":1438},{},[1439,1445],{"type":41,"tag":71,"props":1440,"children":1442},{"className":1441},[],[1443],{"type":47,"value":1444},"Button",{"type":47,"value":1446}," - pressable button with variants",{"type":41,"tag":1253,"props":1448,"children":1449},{},[1450,1456],{"type":41,"tag":71,"props":1451,"children":1453},{"className":1452},[],[1454],{"type":47,"value":1455},"TextInput",{"type":47,"value":1457}," - text input field",{"type":41,"tag":1253,"props":1459,"children":1460},{},[1461,1467],{"type":41,"tag":71,"props":1462,"children":1464},{"className":1463},[],[1465],{"type":47,"value":1466},"Switch",{"type":47,"value":1468}," - toggle switch",{"type":41,"tag":1253,"props":1470,"children":1471},{},[1472,1478],{"type":41,"tag":71,"props":1473,"children":1475},{"className":1474},[],[1476],{"type":47,"value":1477},"Checkbox",{"type":47,"value":1479}," - checkbox with label",{"type":41,"tag":1253,"props":1481,"children":1482},{},[1483,1489],{"type":41,"tag":71,"props":1484,"children":1486},{"className":1485},[],[1487],{"type":47,"value":1488},"Slider",{"type":47,"value":1490}," - range slider",{"type":41,"tag":1253,"props":1492,"children":1493},{},[1494,1500],{"type":41,"tag":71,"props":1495,"children":1497},{"className":1496},[],[1498],{"type":47,"value":1499},"SearchBar",{"type":47,"value":1501}," - search input",{"type":41,"tag":1242,"props":1503,"children":1505},{"id":1504},"feedback",[1506],{"type":47,"value":1507},"Feedback",{"type":41,"tag":1249,"props":1509,"children":1510},{},[1511,1522],{"type":41,"tag":1253,"props":1512,"children":1513},{},[1514,1520],{"type":41,"tag":71,"props":1515,"children":1517},{"className":1516},[],[1518],{"type":47,"value":1519},"Spinner",{"type":47,"value":1521}," - loading indicator",{"type":41,"tag":1253,"props":1523,"children":1524},{},[1525,1531],{"type":41,"tag":71,"props":1526,"children":1528},{"className":1527},[],[1529],{"type":47,"value":1530},"ProgressBar",{"type":47,"value":1532}," - progress indicator",{"type":41,"tag":1242,"props":1534,"children":1536},{"id":1535},"composite",[1537],{"type":47,"value":1538},"Composite",{"type":41,"tag":1249,"props":1540,"children":1541},{},[1542,1553,1564],{"type":41,"tag":1253,"props":1543,"children":1544},{},[1545,1551],{"type":41,"tag":71,"props":1546,"children":1548},{"className":1547},[],[1549],{"type":47,"value":1550},"Card",{"type":47,"value":1552}," - card container with optional header",{"type":41,"tag":1253,"props":1554,"children":1555},{},[1556,1562],{"type":41,"tag":71,"props":1557,"children":1559},{"className":1558},[],[1560],{"type":47,"value":1561},"ListItem",{"type":47,"value":1563}," - list row with title, subtitle, accessory",{"type":41,"tag":1253,"props":1565,"children":1566},{},[1567,1573],{"type":41,"tag":71,"props":1568,"children":1570},{"className":1569},[],[1571],{"type":47,"value":1572},"Modal",{"type":47,"value":1574}," - bottom sheet modal",{"type":41,"tag":56,"props":1576,"children":1578},{"id":1577},"visibility-conditions",[1579],{"type":47,"value":1580},"Visibility Conditions",{"type":41,"tag":50,"props":1582,"children":1583},{},[1584,1586,1592,1594,1600,1602,1608,1609,1615,1616,1622],{"type":47,"value":1585},"Use ",{"type":41,"tag":71,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":47,"value":1591},"visible",{"type":47,"value":1593}," on elements. Syntax: ",{"type":41,"tag":71,"props":1595,"children":1597},{"className":1596},[],[1598],{"type":47,"value":1599},"{ \"$state\": \"\u002Fpath\" }",{"type":47,"value":1601},", ",{"type":41,"tag":71,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":47,"value":1607},"{ \"$state\": \"\u002Fpath\", \"eq\": value }",{"type":47,"value":1601},{"type":41,"tag":71,"props":1610,"children":1612},{"className":1611},[],[1613],{"type":47,"value":1614},"{ \"$state\": \"\u002Fpath\", \"not\": true }",{"type":47,"value":1601},{"type":41,"tag":71,"props":1617,"children":1619},{"className":1618},[],[1620],{"type":47,"value":1621},"[ cond1, cond2 ]",{"type":47,"value":1623}," for AND.",{"type":41,"tag":56,"props":1625,"children":1627},{"id":1626},"pressable-setstate-pattern",[1628],{"type":47,"value":1629},"Pressable + setState Pattern",{"type":41,"tag":50,"props":1631,"children":1632},{},[1633,1634,1639,1641,1647],{"type":47,"value":1585},{"type":41,"tag":71,"props":1635,"children":1637},{"className":1636},[],[1638],{"type":47,"value":1316},{"type":47,"value":1640}," with the built-in ",{"type":41,"tag":71,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":47,"value":1646},"setState",{"type":47,"value":1648}," action for interactive UIs like tab bars:",{"type":41,"tag":63,"props":1650,"children":1653},{"className":1651,"code":1652,"language":17,"meta":68,"style":68},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"type\": \"Pressable\",\n  \"props\": {\n    \"action\": \"setState\",\n    \"actionParams\": { \"statePath\": \"\u002FactiveTab\", \"value\": \"home\" }\n  },\n  \"children\": [\"home-icon\", \"home-label\"]\n}\n",[1654],{"type":41,"tag":71,"props":1655,"children":1656},{"__ignoreMap":68},[1657,1665,1702,1725,1762,1855,1862,1922],{"type":41,"tag":75,"props":1658,"children":1659},{"class":77,"line":78},[1660],{"type":41,"tag":75,"props":1661,"children":1662},{"style":88},[1663],{"type":47,"value":1664},"{\n",{"type":41,"tag":75,"props":1666,"children":1667},{"class":77,"line":131},[1668,1673,1678,1682,1686,1690,1694,1698],{"type":41,"tag":75,"props":1669,"children":1670},{"style":88},[1671],{"type":47,"value":1672},"  \"",{"type":41,"tag":75,"props":1674,"children":1675},{"style":374},[1676],{"type":47,"value":1677},"type",{"type":41,"tag":75,"props":1679,"children":1680},{"style":88},[1681],{"type":47,"value":123},{"type":41,"tag":75,"props":1683,"children":1684},{"style":88},[1685],{"type":47,"value":420},{"type":41,"tag":75,"props":1687,"children":1688},{"style":88},[1689],{"type":47,"value":112},{"type":41,"tag":75,"props":1691,"children":1692},{"style":115},[1693],{"type":47,"value":1316},{"type":41,"tag":75,"props":1695,"children":1696},{"style":88},[1697],{"type":47,"value":123},{"type":41,"tag":75,"props":1699,"children":1700},{"style":88},[1701],{"type":47,"value":197},{"type":41,"tag":75,"props":1703,"children":1704},{"class":77,"line":173},[1705,1709,1713,1717,1721],{"type":41,"tag":75,"props":1706,"children":1707},{"style":88},[1708],{"type":47,"value":1672},{"type":41,"tag":75,"props":1710,"children":1711},{"style":374},[1712],{"type":47,"value":866},{"type":41,"tag":75,"props":1714,"children":1715},{"style":88},[1716],{"type":47,"value":123},{"type":41,"tag":75,"props":1718,"children":1719},{"style":88},[1720],{"type":47,"value":420},{"type":41,"tag":75,"props":1722,"children":1723},{"style":88},[1724],{"type":47,"value":183},{"type":41,"tag":75,"props":1726,"children":1727},{"class":77,"line":186},[1728,1733,1738,1742,1746,1750,1754,1758],{"type":41,"tag":75,"props":1729,"children":1730},{"style":88},[1731],{"type":47,"value":1732},"    \"",{"type":41,"tag":75,"props":1734,"children":1735},{"style":846},[1736],{"type":47,"value":1737},"action",{"type":41,"tag":75,"props":1739,"children":1740},{"style":88},[1741],{"type":47,"value":123},{"type":41,"tag":75,"props":1743,"children":1744},{"style":88},[1745],{"type":47,"value":420},{"type":41,"tag":75,"props":1747,"children":1748},{"style":88},[1749],{"type":47,"value":112},{"type":41,"tag":75,"props":1751,"children":1752},{"style":115},[1753],{"type":47,"value":1646},{"type":41,"tag":75,"props":1755,"children":1756},{"style":88},[1757],{"type":47,"value":123},{"type":41,"tag":75,"props":1759,"children":1760},{"style":88},[1761],{"type":47,"value":197},{"type":41,"tag":75,"props":1763,"children":1764},{"class":77,"line":200},[1765,1769,1774,1778,1782,1786,1790,1795,1799,1803,1807,1812,1816,1820,1824,1829,1833,1837,1841,1846,1850],{"type":41,"tag":75,"props":1766,"children":1767},{"style":88},[1768],{"type":47,"value":1732},{"type":41,"tag":75,"props":1770,"children":1771},{"style":846},[1772],{"type":47,"value":1773},"actionParams",{"type":41,"tag":75,"props":1775,"children":1776},{"style":88},[1777],{"type":47,"value":123},{"type":41,"tag":75,"props":1779,"children":1780},{"style":88},[1781],{"type":47,"value":420},{"type":41,"tag":75,"props":1783,"children":1784},{"style":88},[1785],{"type":47,"value":91},{"type":41,"tag":75,"props":1787,"children":1788},{"style":88},[1789],{"type":47,"value":112},{"type":41,"tag":75,"props":1791,"children":1792},{"style":912},[1793],{"type":47,"value":1794},"statePath",{"type":41,"tag":75,"props":1796,"children":1797},{"style":88},[1798],{"type":47,"value":123},{"type":41,"tag":75,"props":1800,"children":1801},{"style":88},[1802],{"type":47,"value":420},{"type":41,"tag":75,"props":1804,"children":1805},{"style":88},[1806],{"type":47,"value":112},{"type":41,"tag":75,"props":1808,"children":1809},{"style":115},[1810],{"type":47,"value":1811},"\u002FactiveTab",{"type":41,"tag":75,"props":1813,"children":1814},{"style":88},[1815],{"type":47,"value":123},{"type":41,"tag":75,"props":1817,"children":1818},{"style":88},[1819],{"type":47,"value":262},{"type":41,"tag":75,"props":1821,"children":1822},{"style":88},[1823],{"type":47,"value":112},{"type":41,"tag":75,"props":1825,"children":1826},{"style":912},[1827],{"type":47,"value":1828},"value",{"type":41,"tag":75,"props":1830,"children":1831},{"style":88},[1832],{"type":47,"value":123},{"type":41,"tag":75,"props":1834,"children":1835},{"style":88},[1836],{"type":47,"value":420},{"type":41,"tag":75,"props":1838,"children":1839},{"style":88},[1840],{"type":47,"value":112},{"type":41,"tag":75,"props":1842,"children":1843},{"style":115},[1844],{"type":47,"value":1845},"home",{"type":41,"tag":75,"props":1847,"children":1848},{"style":88},[1849],{"type":47,"value":123},{"type":41,"tag":75,"props":1851,"children":1852},{"style":88},[1853],{"type":47,"value":1854}," }\n",{"type":41,"tag":75,"props":1856,"children":1857},{"class":77,"line":213},[1858],{"type":41,"tag":75,"props":1859,"children":1860},{"style":88},[1861],{"type":47,"value":691},{"type":41,"tag":75,"props":1863,"children":1864},{"class":77,"line":243},[1865,1869,1874,1878,1882,1887,1891,1896,1900,1904,1908,1913,1917],{"type":41,"tag":75,"props":1866,"children":1867},{"style":88},[1868],{"type":47,"value":1672},{"type":41,"tag":75,"props":1870,"children":1871},{"style":374},[1872],{"type":47,"value":1873},"children",{"type":41,"tag":75,"props":1875,"children":1876},{"style":88},[1877],{"type":47,"value":123},{"type":41,"tag":75,"props":1879,"children":1880},{"style":88},[1881],{"type":47,"value":420},{"type":41,"tag":75,"props":1883,"children":1884},{"style":88},[1885],{"type":47,"value":1886}," [",{"type":41,"tag":75,"props":1888,"children":1889},{"style":88},[1890],{"type":47,"value":123},{"type":41,"tag":75,"props":1892,"children":1893},{"style":115},[1894],{"type":47,"value":1895},"home-icon",{"type":41,"tag":75,"props":1897,"children":1898},{"style":88},[1899],{"type":47,"value":123},{"type":41,"tag":75,"props":1901,"children":1902},{"style":88},[1903],{"type":47,"value":262},{"type":41,"tag":75,"props":1905,"children":1906},{"style":88},[1907],{"type":47,"value":112},{"type":41,"tag":75,"props":1909,"children":1910},{"style":115},[1911],{"type":47,"value":1912},"home-label",{"type":41,"tag":75,"props":1914,"children":1915},{"style":88},[1916],{"type":47,"value":123},{"type":41,"tag":75,"props":1918,"children":1919},{"style":88},[1920],{"type":47,"value":1921},"]\n",{"type":41,"tag":75,"props":1923,"children":1924},{"class":77,"line":308},[1925],{"type":41,"tag":75,"props":1926,"children":1927},{"style":88},[1928],{"type":47,"value":1234},{"type":41,"tag":56,"props":1930,"children":1932},{"id":1931},"dynamic-prop-expressions",[1933],{"type":47,"value":1934},"Dynamic Prop Expressions",{"type":41,"tag":50,"props":1936,"children":1937},{},[1938],{"type":47,"value":1939},"Any prop value can be a data-driven expression resolved at render time:",{"type":41,"tag":1249,"props":1941,"children":1942},{},[1943,1958,1972,1986],{"type":41,"tag":1253,"props":1944,"children":1945},{},[1946,1956],{"type":41,"tag":1947,"props":1948,"children":1949},"strong",{},[1950],{"type":41,"tag":71,"props":1951,"children":1953},{"className":1952},[],[1954],{"type":47,"value":1955},"{ \"$state\": \"\u002Fstate\u002Fkey\" }",{"type":47,"value":1957}," - reads from state model (one-way read)",{"type":41,"tag":1253,"props":1959,"children":1960},{},[1961,1970],{"type":41,"tag":1947,"props":1962,"children":1963},{},[1964],{"type":41,"tag":71,"props":1965,"children":1967},{"className":1966},[],[1968],{"type":47,"value":1969},"{ \"$bindState\": \"\u002Fpath\" }",{"type":47,"value":1971}," - two-way binding: use on the natural value prop (value, checked, pressed, etc.) of form components.",{"type":41,"tag":1253,"props":1973,"children":1974},{},[1975,1984],{"type":41,"tag":1947,"props":1976,"children":1977},{},[1978],{"type":41,"tag":71,"props":1979,"children":1981},{"className":1980},[],[1982],{"type":47,"value":1983},"{ \"$bindItem\": \"field\" }",{"type":47,"value":1985}," - two-way binding to a repeat item field. Use inside repeat scopes.",{"type":41,"tag":1253,"props":1987,"children":1988},{},[1989,1998],{"type":41,"tag":1947,"props":1990,"children":1991},{},[1992],{"type":41,"tag":71,"props":1993,"children":1995},{"className":1994},[],[1996],{"type":47,"value":1997},"{ \"$cond\": \u003Ccondition>, \"$then\": \u003Cvalue>, \"$else\": \u003Cvalue> }",{"type":47,"value":1999}," - conditional value",{"type":41,"tag":63,"props":2001,"children":2003},{"className":1651,"code":2002,"language":17,"meta":68,"style":68},"{\n  \"type\": \"TextInput\",\n  \"props\": {\n    \"value\": { \"$bindState\": \"\u002Fform\u002Femail\" },\n    \"placeholder\": \"Email\"\n  }\n}\n",[2004],{"type":41,"tag":71,"props":2005,"children":2006},{"__ignoreMap":68},[2007,2014,2049,2072,2130,2164,2172],{"type":41,"tag":75,"props":2008,"children":2009},{"class":77,"line":78},[2010],{"type":41,"tag":75,"props":2011,"children":2012},{"style":88},[2013],{"type":47,"value":1664},{"type":41,"tag":75,"props":2015,"children":2016},{"class":77,"line":131},[2017,2021,2025,2029,2033,2037,2041,2045],{"type":41,"tag":75,"props":2018,"children":2019},{"style":88},[2020],{"type":47,"value":1672},{"type":41,"tag":75,"props":2022,"children":2023},{"style":374},[2024],{"type":47,"value":1677},{"type":41,"tag":75,"props":2026,"children":2027},{"style":88},[2028],{"type":47,"value":123},{"type":41,"tag":75,"props":2030,"children":2031},{"style":88},[2032],{"type":47,"value":420},{"type":41,"tag":75,"props":2034,"children":2035},{"style":88},[2036],{"type":47,"value":112},{"type":41,"tag":75,"props":2038,"children":2039},{"style":115},[2040],{"type":47,"value":1455},{"type":41,"tag":75,"props":2042,"children":2043},{"style":88},[2044],{"type":47,"value":123},{"type":41,"tag":75,"props":2046,"children":2047},{"style":88},[2048],{"type":47,"value":197},{"type":41,"tag":75,"props":2050,"children":2051},{"class":77,"line":173},[2052,2056,2060,2064,2068],{"type":41,"tag":75,"props":2053,"children":2054},{"style":88},[2055],{"type":47,"value":1672},{"type":41,"tag":75,"props":2057,"children":2058},{"style":374},[2059],{"type":47,"value":866},{"type":41,"tag":75,"props":2061,"children":2062},{"style":88},[2063],{"type":47,"value":123},{"type":41,"tag":75,"props":2065,"children":2066},{"style":88},[2067],{"type":47,"value":420},{"type":41,"tag":75,"props":2069,"children":2070},{"style":88},[2071],{"type":47,"value":183},{"type":41,"tag":75,"props":2073,"children":2074},{"class":77,"line":186},[2075,2079,2083,2087,2091,2095,2099,2104,2108,2112,2116,2121,2125],{"type":41,"tag":75,"props":2076,"children":2077},{"style":88},[2078],{"type":47,"value":1732},{"type":41,"tag":75,"props":2080,"children":2081},{"style":846},[2082],{"type":47,"value":1828},{"type":41,"tag":75,"props":2084,"children":2085},{"style":88},[2086],{"type":47,"value":123},{"type":41,"tag":75,"props":2088,"children":2089},{"style":88},[2090],{"type":47,"value":420},{"type":41,"tag":75,"props":2092,"children":2093},{"style":88},[2094],{"type":47,"value":91},{"type":41,"tag":75,"props":2096,"children":2097},{"style":88},[2098],{"type":47,"value":112},{"type":41,"tag":75,"props":2100,"children":2101},{"style":912},[2102],{"type":47,"value":2103},"$bindState",{"type":41,"tag":75,"props":2105,"children":2106},{"style":88},[2107],{"type":47,"value":123},{"type":41,"tag":75,"props":2109,"children":2110},{"style":88},[2111],{"type":47,"value":420},{"type":41,"tag":75,"props":2113,"children":2114},{"style":88},[2115],{"type":47,"value":112},{"type":41,"tag":75,"props":2117,"children":2118},{"style":115},[2119],{"type":47,"value":2120},"\u002Fform\u002Femail",{"type":41,"tag":75,"props":2122,"children":2123},{"style":88},[2124],{"type":47,"value":123},{"type":41,"tag":75,"props":2126,"children":2127},{"style":88},[2128],{"type":47,"value":2129}," },\n",{"type":41,"tag":75,"props":2131,"children":2132},{"class":77,"line":200},[2133,2137,2142,2146,2150,2154,2159],{"type":41,"tag":75,"props":2134,"children":2135},{"style":88},[2136],{"type":47,"value":1732},{"type":41,"tag":75,"props":2138,"children":2139},{"style":846},[2140],{"type":47,"value":2141},"placeholder",{"type":41,"tag":75,"props":2143,"children":2144},{"style":88},[2145],{"type":47,"value":123},{"type":41,"tag":75,"props":2147,"children":2148},{"style":88},[2149],{"type":47,"value":420},{"type":41,"tag":75,"props":2151,"children":2152},{"style":88},[2153],{"type":47,"value":112},{"type":41,"tag":75,"props":2155,"children":2156},{"style":115},[2157],{"type":47,"value":2158},"Email",{"type":41,"tag":75,"props":2160,"children":2161},{"style":88},[2162],{"type":47,"value":2163},"\"\n",{"type":41,"tag":75,"props":2165,"children":2166},{"class":77,"line":213},[2167],{"type":41,"tag":75,"props":2168,"children":2169},{"style":88},[2170],{"type":47,"value":2171},"  }\n",{"type":41,"tag":75,"props":2173,"children":2174},{"class":77,"line":243},[2175],{"type":41,"tag":75,"props":2176,"children":2177},{"style":88},[2178],{"type":47,"value":1234},{"type":41,"tag":50,"props":2180,"children":2181},{},[2182,2184,2189,2191,2196],{"type":47,"value":2183},"Components do not use a ",{"type":41,"tag":71,"props":2185,"children":2187},{"className":2186},[],[2188],{"type":47,"value":1794},{"type":47,"value":2190}," prop for two-way binding. Use ",{"type":41,"tag":71,"props":2192,"children":2194},{"className":2193},[],[2195],{"type":47,"value":1969},{"type":47,"value":2197}," on the natural value prop instead.",{"type":41,"tag":56,"props":2199,"children":2201},{"id":2200},"built-in-actions",[2202],{"type":47,"value":2203},"Built-in Actions",{"type":41,"tag":50,"props":2205,"children":2206},{},[2207,2209,2214,2216,2221],{"type":47,"value":2208},"The ",{"type":41,"tag":71,"props":2210,"children":2212},{"className":2211},[],[2213],{"type":47,"value":1646},{"type":47,"value":2215}," action is handled automatically by ",{"type":41,"tag":71,"props":2217,"children":2219},{"className":2218},[],[2220],{"type":47,"value":1097},{"type":47,"value":2222}," and updates the state model directly, which re-evaluates visibility conditions and dynamic prop expressions:",{"type":41,"tag":63,"props":2224,"children":2226},{"className":1651,"code":2225,"language":17,"meta":68,"style":68},"{ \"action\": \"setState\", \"actionParams\": { \"statePath\": \"\u002FactiveTab\", \"value\": \"home\" } }\n",[2227],{"type":41,"tag":71,"props":2228,"children":2229},{"__ignoreMap":68},[2230],{"type":41,"tag":75,"props":2231,"children":2232},{"class":77,"line":78},[2233,2237,2241,2245,2249,2253,2257,2261,2265,2269,2273,2277,2281,2285,2289,2293,2297,2301,2305,2309,2313,2317,2321,2325,2329,2333,2337,2341,2345,2349,2353],{"type":41,"tag":75,"props":2234,"children":2235},{"style":88},[2236],{"type":47,"value":496},{"type":41,"tag":75,"props":2238,"children":2239},{"style":88},[2240],{"type":47,"value":112},{"type":41,"tag":75,"props":2242,"children":2243},{"style":374},[2244],{"type":47,"value":1737},{"type":41,"tag":75,"props":2246,"children":2247},{"style":88},[2248],{"type":47,"value":123},{"type":41,"tag":75,"props":2250,"children":2251},{"style":88},[2252],{"type":47,"value":420},{"type":41,"tag":75,"props":2254,"children":2255},{"style":88},[2256],{"type":47,"value":112},{"type":41,"tag":75,"props":2258,"children":2259},{"style":115},[2260],{"type":47,"value":1646},{"type":41,"tag":75,"props":2262,"children":2263},{"style":88},[2264],{"type":47,"value":123},{"type":41,"tag":75,"props":2266,"children":2267},{"style":88},[2268],{"type":47,"value":262},{"type":41,"tag":75,"props":2270,"children":2271},{"style":88},[2272],{"type":47,"value":112},{"type":41,"tag":75,"props":2274,"children":2275},{"style":374},[2276],{"type":47,"value":1773},{"type":41,"tag":75,"props":2278,"children":2279},{"style":88},[2280],{"type":47,"value":123},{"type":41,"tag":75,"props":2282,"children":2283},{"style":88},[2284],{"type":47,"value":420},{"type":41,"tag":75,"props":2286,"children":2287},{"style":88},[2288],{"type":47,"value":91},{"type":41,"tag":75,"props":2290,"children":2291},{"style":88},[2292],{"type":47,"value":112},{"type":41,"tag":75,"props":2294,"children":2295},{"style":846},[2296],{"type":47,"value":1794},{"type":41,"tag":75,"props":2298,"children":2299},{"style":88},[2300],{"type":47,"value":123},{"type":41,"tag":75,"props":2302,"children":2303},{"style":88},[2304],{"type":47,"value":420},{"type":41,"tag":75,"props":2306,"children":2307},{"style":88},[2308],{"type":47,"value":112},{"type":41,"tag":75,"props":2310,"children":2311},{"style":115},[2312],{"type":47,"value":1811},{"type":41,"tag":75,"props":2314,"children":2315},{"style":88},[2316],{"type":47,"value":123},{"type":41,"tag":75,"props":2318,"children":2319},{"style":88},[2320],{"type":47,"value":262},{"type":41,"tag":75,"props":2322,"children":2323},{"style":88},[2324],{"type":47,"value":112},{"type":41,"tag":75,"props":2326,"children":2327},{"style":846},[2328],{"type":47,"value":1828},{"type":41,"tag":75,"props":2330,"children":2331},{"style":88},[2332],{"type":47,"value":123},{"type":41,"tag":75,"props":2334,"children":2335},{"style":88},[2336],{"type":47,"value":420},{"type":41,"tag":75,"props":2338,"children":2339},{"style":88},[2340],{"type":47,"value":112},{"type":41,"tag":75,"props":2342,"children":2343},{"style":115},[2344],{"type":47,"value":1845},{"type":41,"tag":75,"props":2346,"children":2347},{"style":88},[2348],{"type":47,"value":123},{"type":41,"tag":75,"props":2350,"children":2351},{"style":88},[2352],{"type":47,"value":102},{"type":41,"tag":75,"props":2354,"children":2355},{"style":88},[2356],{"type":47,"value":1854},{"type":41,"tag":56,"props":2358,"children":2360},{"id":2359},"providers",[2361],{"type":47,"value":2362},"Providers",{"type":41,"tag":2364,"props":2365,"children":2366},"table",{},[2367,2386],{"type":41,"tag":2368,"props":2369,"children":2370},"thead",{},[2371],{"type":41,"tag":2372,"props":2373,"children":2374},"tr",{},[2375,2381],{"type":41,"tag":2376,"props":2377,"children":2378},"th",{},[2379],{"type":47,"value":2380},"Provider",{"type":41,"tag":2376,"props":2382,"children":2383},{},[2384],{"type":47,"value":2385},"Purpose",{"type":41,"tag":2387,"props":2388,"children":2389},"tbody",{},[2390,2415,2431,2447],{"type":41,"tag":2372,"props":2391,"children":2392},{},[2393,2402],{"type":41,"tag":2394,"props":2395,"children":2396},"td",{},[2397],{"type":41,"tag":71,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":47,"value":1054},{"type":41,"tag":2394,"props":2403,"children":2404},{},[2405,2407,2413],{"type":47,"value":2406},"Share state across components (JSON Pointer paths). Accepts optional ",{"type":41,"tag":71,"props":2408,"children":2410},{"className":2409},[],[2411],{"type":47,"value":2412},"store",{"type":47,"value":2414}," prop for controlled mode.",{"type":41,"tag":2372,"props":2416,"children":2417},{},[2418,2426],{"type":41,"tag":2394,"props":2419,"children":2420},{},[2421],{"type":41,"tag":71,"props":2422,"children":2424},{"className":2423},[],[2425],{"type":47,"value":1097},{"type":41,"tag":2394,"props":2427,"children":2428},{},[2429],{"type":47,"value":2430},"Handle actions dispatched from components",{"type":41,"tag":2372,"props":2432,"children":2433},{},[2434,2442],{"type":41,"tag":2394,"props":2435,"children":2436},{},[2437],{"type":41,"tag":71,"props":2438,"children":2440},{"className":2439},[],[2441],{"type":47,"value":1078},{"type":41,"tag":2394,"props":2443,"children":2444},{},[2445],{"type":47,"value":2446},"Enable conditional rendering based on state",{"type":41,"tag":2372,"props":2448,"children":2449},{},[2450,2459],{"type":41,"tag":2394,"props":2451,"children":2452},{},[2453],{"type":41,"tag":71,"props":2454,"children":2456},{"className":2455},[],[2457],{"type":47,"value":2458},"ValidationProvider",{"type":41,"tag":2394,"props":2460,"children":2461},{},[2462],{"type":47,"value":2463},"Form field validation",{"type":41,"tag":1242,"props":2465,"children":2467},{"id":2466},"external-store-controlled-mode",[2468],{"type":47,"value":2469},"External Store (Controlled Mode)",{"type":41,"tag":50,"props":2471,"children":2472},{},[2473,2475,2481,2483,2488,2490,2496,2498,2504],{"type":47,"value":2474},"Pass a ",{"type":41,"tag":71,"props":2476,"children":2478},{"className":2477},[],[2479],{"type":47,"value":2480},"StateStore",{"type":47,"value":2482}," to ",{"type":41,"tag":71,"props":2484,"children":2486},{"className":2485},[],[2487],{"type":47,"value":1054},{"type":47,"value":2489}," (or ",{"type":41,"tag":71,"props":2491,"children":2493},{"className":2492},[],[2494],{"type":47,"value":2495},"JSONUIProvider",{"type":47,"value":2497}," \u002F ",{"type":41,"tag":71,"props":2499,"children":2501},{"className":2500},[],[2502],{"type":47,"value":2503},"createRenderer",{"type":47,"value":2505},") to use external state management:",{"type":41,"tag":63,"props":2507,"children":2511},{"className":2508,"code":2509,"language":2510,"meta":68,"style":68},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { createStateStore, type StateStore } from \"@json-render\u002Freact-native\";\n\nconst store = createStateStore({ count: 0 });\n\n\u003CStateProvider store={store}>{children}\u003C\u002FStateProvider>\n\nstore.set(\"\u002Fcount\", 1); \u002F\u002F React re-renders automatically\n","tsx",[2512],{"type":41,"tag":71,"props":2513,"children":2514},{"__ignoreMap":68},[2515,2568,2575,2629,2636,2683,2690],{"type":41,"tag":75,"props":2516,"children":2517},{"class":77,"line":78},[2518,2522,2526,2531,2535,2539,2544,2548,2552,2556,2560,2564],{"type":41,"tag":75,"props":2519,"children":2520},{"style":82},[2521],{"type":47,"value":85},{"type":41,"tag":75,"props":2523,"children":2524},{"style":88},[2525],{"type":47,"value":91},{"type":41,"tag":75,"props":2527,"children":2528},{"style":94},[2529],{"type":47,"value":2530}," createStateStore",{"type":41,"tag":75,"props":2532,"children":2533},{"style":88},[2534],{"type":47,"value":262},{"type":41,"tag":75,"props":2536,"children":2537},{"style":82},[2538],{"type":47,"value":276},{"type":41,"tag":75,"props":2540,"children":2541},{"style":94},[2542],{"type":47,"value":2543}," StateStore",{"type":41,"tag":75,"props":2545,"children":2546},{"style":88},[2547],{"type":47,"value":102},{"type":41,"tag":75,"props":2549,"children":2550},{"style":82},[2551],{"type":47,"value":107},{"type":41,"tag":75,"props":2553,"children":2554},{"style":88},[2555],{"type":47,"value":112},{"type":41,"tag":75,"props":2557,"children":2558},{"style":115},[2559],{"type":47,"value":48},{"type":41,"tag":75,"props":2561,"children":2562},{"style":88},[2563],{"type":47,"value":123},{"type":41,"tag":75,"props":2565,"children":2566},{"style":88},[2567],{"type":47,"value":128},{"type":41,"tag":75,"props":2569,"children":2570},{"class":77,"line":131},[2571],{"type":41,"tag":75,"props":2572,"children":2573},{"emptyLinePlaceholder":354},[2574],{"type":47,"value":357},{"type":41,"tag":75,"props":2576,"children":2577},{"class":77,"line":173},[2578,2582,2587,2591,2595,2599,2603,2608,2612,2617,2621,2625],{"type":41,"tag":75,"props":2579,"children":2580},{"style":374},[2581],{"type":47,"value":377},{"type":41,"tag":75,"props":2583,"children":2584},{"style":94},[2585],{"type":47,"value":2586}," store ",{"type":41,"tag":75,"props":2588,"children":2589},{"style":88},[2590],{"type":47,"value":387},{"type":41,"tag":75,"props":2592,"children":2593},{"style":390},[2594],{"type":47,"value":2530},{"type":41,"tag":75,"props":2596,"children":2597},{"style":94},[2598],{"type":47,"value":491},{"type":41,"tag":75,"props":2600,"children":2601},{"style":88},[2602],{"type":47,"value":496},{"type":41,"tag":75,"props":2604,"children":2605},{"style":412},[2606],{"type":47,"value":2607}," count",{"type":41,"tag":75,"props":2609,"children":2610},{"style":88},[2611],{"type":47,"value":420},{"type":41,"tag":75,"props":2613,"children":2614},{"style":912},[2615],{"type":47,"value":2616}," 0",{"type":41,"tag":75,"props":2618,"children":2619},{"style":88},[2620],{"type":47,"value":102},{"type":41,"tag":75,"props":2622,"children":2623},{"style":94},[2624],{"type":47,"value":617},{"type":41,"tag":75,"props":2626,"children":2627},{"style":88},[2628],{"type":47,"value":128},{"type":41,"tag":75,"props":2630,"children":2631},{"class":77,"line":186},[2632],{"type":41,"tag":75,"props":2633,"children":2634},{"emptyLinePlaceholder":354},[2635],{"type":47,"value":357},{"type":41,"tag":75,"props":2637,"children":2638},{"class":77,"line":200},[2639,2644,2648,2653,2657,2661,2666,2670,2675,2679],{"type":41,"tag":75,"props":2640,"children":2641},{"style":88},[2642],{"type":47,"value":2643},"\u003C",{"type":41,"tag":75,"props":2645,"children":2646},{"style":846},[2647],{"type":47,"value":1054},{"type":41,"tag":75,"props":2649,"children":2650},{"style":374},[2651],{"type":47,"value":2652}," store",{"type":41,"tag":75,"props":2654,"children":2655},{"style":88},[2656],{"type":47,"value":1129},{"type":41,"tag":75,"props":2658,"children":2659},{"style":94},[2660],{"type":47,"value":2412},{"type":41,"tag":75,"props":2662,"children":2663},{"style":88},[2664],{"type":47,"value":2665},"}>{",{"type":41,"tag":75,"props":2667,"children":2668},{"style":94},[2669],{"type":47,"value":1873},{"type":41,"tag":75,"props":2671,"children":2672},{"style":88},[2673],{"type":47,"value":2674},"}\u003C\u002F",{"type":41,"tag":75,"props":2676,"children":2677},{"style":846},[2678],{"type":47,"value":1054},{"type":41,"tag":75,"props":2680,"children":2681},{"style":88},[2682],{"type":47,"value":1083},{"type":41,"tag":75,"props":2684,"children":2685},{"class":77,"line":213},[2686],{"type":41,"tag":75,"props":2687,"children":2688},{"emptyLinePlaceholder":354},[2689],{"type":47,"value":357},{"type":41,"tag":75,"props":2691,"children":2692},{"class":77,"line":243},[2693,2697,2701,2706,2710,2714,2719,2723,2727,2732,2736,2741],{"type":41,"tag":75,"props":2694,"children":2695},{"style":94},[2696],{"type":47,"value":2412},{"type":41,"tag":75,"props":2698,"children":2699},{"style":88},[2700],{"type":47,"value":481},{"type":41,"tag":75,"props":2702,"children":2703},{"style":390},[2704],{"type":47,"value":2705},"set",{"type":41,"tag":75,"props":2707,"children":2708},{"style":94},[2709],{"type":47,"value":491},{"type":41,"tag":75,"props":2711,"children":2712},{"style":88},[2713],{"type":47,"value":123},{"type":41,"tag":75,"props":2715,"children":2716},{"style":115},[2717],{"type":47,"value":2718},"\u002Fcount",{"type":41,"tag":75,"props":2720,"children":2721},{"style":88},[2722],{"type":47,"value":123},{"type":41,"tag":75,"props":2724,"children":2725},{"style":88},[2726],{"type":47,"value":262},{"type":41,"tag":75,"props":2728,"children":2729},{"style":912},[2730],{"type":47,"value":2731}," 1",{"type":41,"tag":75,"props":2733,"children":2734},{"style":94},[2735],{"type":47,"value":617},{"type":41,"tag":75,"props":2737,"children":2738},{"style":88},[2739],{"type":47,"value":2740},";",{"type":41,"tag":75,"props":2742,"children":2743},{"style":364},[2744],{"type":47,"value":2745}," \u002F\u002F React re-renders automatically\n",{"type":41,"tag":50,"props":2747,"children":2748},{},[2749,2751,2756,2758,2764,2766,2772],{"type":47,"value":2750},"When ",{"type":41,"tag":71,"props":2752,"children":2754},{"className":2753},[],[2755],{"type":47,"value":2412},{"type":47,"value":2757}," is provided, ",{"type":41,"tag":71,"props":2759,"children":2761},{"className":2760},[],[2762],{"type":47,"value":2763},"initialState",{"type":47,"value":2765}," and ",{"type":41,"tag":71,"props":2767,"children":2769},{"className":2768},[],[2770],{"type":47,"value":2771},"onStateChange",{"type":47,"value":2773}," are ignored.",{"type":41,"tag":56,"props":2775,"children":2777},{"id":2776},"key-exports",[2778],{"type":47,"value":2779},"Key Exports",{"type":41,"tag":2364,"props":2781,"children":2782},{},[2783,2798],{"type":41,"tag":2368,"props":2784,"children":2785},{},[2786],{"type":41,"tag":2372,"props":2787,"children":2788},{},[2789,2794],{"type":41,"tag":2376,"props":2790,"children":2791},{},[2792],{"type":47,"value":2793},"Export",{"type":41,"tag":2376,"props":2795,"children":2796},{},[2797],{"type":47,"value":2385},{"type":41,"tag":2387,"props":2799,"children":2800},{},[2801,2818,2834,2851,2867,2884,2901,2918,2935,2952,2982,3005,3022,3039,3056,3078],{"type":41,"tag":2372,"props":2802,"children":2803},{},[2804,2813],{"type":41,"tag":2394,"props":2805,"children":2806},{},[2807],{"type":41,"tag":71,"props":2808,"children":2810},{"className":2809},[],[2811],{"type":47,"value":2812},"defineRegistry",{"type":41,"tag":2394,"props":2814,"children":2815},{},[2816],{"type":47,"value":2817},"Create a type-safe component registry from a catalog",{"type":41,"tag":2372,"props":2819,"children":2820},{},[2821,2829],{"type":41,"tag":2394,"props":2822,"children":2823},{},[2824],{"type":41,"tag":71,"props":2825,"children":2827},{"className":2826},[],[2828],{"type":47,"value":1120},{"type":41,"tag":2394,"props":2830,"children":2831},{},[2832],{"type":47,"value":2833},"Render a spec using a registry",{"type":41,"tag":2372,"props":2835,"children":2836},{},[2837,2846],{"type":41,"tag":2394,"props":2838,"children":2839},{},[2840],{"type":41,"tag":71,"props":2841,"children":2843},{"className":2842},[],[2844],{"type":47,"value":2845},"schema",{"type":41,"tag":2394,"props":2847,"children":2848},{},[2849],{"type":47,"value":2850},"React Native element tree schema",{"type":41,"tag":2372,"props":2852,"children":2853},{},[2854,2862],{"type":41,"tag":2394,"props":2855,"children":2856},{},[2857],{"type":41,"tag":71,"props":2858,"children":2860},{"className":2859},[],[2861],{"type":47,"value":438},{"type":41,"tag":2394,"props":2863,"children":2864},{},[2865],{"type":47,"value":2866},"Catalog definitions for all standard components",{"type":41,"tag":2372,"props":2868,"children":2869},{},[2870,2879],{"type":41,"tag":2394,"props":2871,"children":2872},{},[2873],{"type":41,"tag":71,"props":2874,"children":2876},{"className":2875},[],[2877],{"type":47,"value":2878},"standardActionDefinitions",{"type":41,"tag":2394,"props":2880,"children":2881},{},[2882],{"type":47,"value":2883},"Catalog definitions for standard actions",{"type":41,"tag":2372,"props":2885,"children":2886},{},[2887,2896],{"type":41,"tag":2394,"props":2888,"children":2889},{},[2890],{"type":41,"tag":71,"props":2891,"children":2893},{"className":2892},[],[2894],{"type":47,"value":2895},"standardComponents",{"type":41,"tag":2394,"props":2897,"children":2898},{},[2899],{"type":47,"value":2900},"Pre-built component implementations",{"type":41,"tag":2372,"props":2902,"children":2903},{},[2904,2913],{"type":41,"tag":2394,"props":2905,"children":2906},{},[2907],{"type":41,"tag":71,"props":2908,"children":2910},{"className":2909},[],[2911],{"type":47,"value":2912},"createStandardActionHandlers",{"type":41,"tag":2394,"props":2914,"children":2915},{},[2916],{"type":47,"value":2917},"Create handlers for standard actions",{"type":41,"tag":2372,"props":2919,"children":2920},{},[2921,2930],{"type":41,"tag":2394,"props":2922,"children":2923},{},[2924],{"type":41,"tag":71,"props":2925,"children":2927},{"className":2926},[],[2928],{"type":47,"value":2929},"useStateStore",{"type":41,"tag":2394,"props":2931,"children":2932},{},[2933],{"type":47,"value":2934},"Access state context",{"type":41,"tag":2372,"props":2936,"children":2937},{},[2938,2947],{"type":41,"tag":2394,"props":2939,"children":2940},{},[2941],{"type":41,"tag":71,"props":2942,"children":2944},{"className":2943},[],[2945],{"type":47,"value":2946},"useStateValue",{"type":41,"tag":2394,"props":2948,"children":2949},{},[2950],{"type":47,"value":2951},"Get single value from state",{"type":41,"tag":2372,"props":2953,"children":2954},{},[2955,2964],{"type":41,"tag":2394,"props":2956,"children":2957},{},[2958],{"type":41,"tag":71,"props":2959,"children":2961},{"className":2960},[],[2962],{"type":47,"value":2963},"useBoundProp",{"type":41,"tag":2394,"props":2965,"children":2966},{},[2967,2969,2974,2976],{"type":47,"value":2968},"Two-way state binding via ",{"type":41,"tag":71,"props":2970,"children":2972},{"className":2971},[],[2973],{"type":47,"value":2103},{"type":47,"value":2975},"\u002F",{"type":41,"tag":71,"props":2977,"children":2979},{"className":2978},[],[2980],{"type":47,"value":2981},"$bindItem",{"type":41,"tag":2372,"props":2983,"children":2984},{},[2985,2994],{"type":41,"tag":2394,"props":2986,"children":2987},{},[2988],{"type":41,"tag":71,"props":2989,"children":2991},{"className":2990},[],[2992],{"type":47,"value":2993},"useStateBinding",{"type":41,"tag":2394,"props":2995,"children":2996},{},[2997,3003],{"type":41,"tag":2998,"props":2999,"children":3000},"em",{},[3001],{"type":47,"value":3002},"(deprecated)",{"type":47,"value":3004}," Legacy two-way binding by path",{"type":41,"tag":2372,"props":3006,"children":3007},{},[3008,3017],{"type":41,"tag":2394,"props":3009,"children":3010},{},[3011],{"type":41,"tag":71,"props":3012,"children":3014},{"className":3013},[],[3015],{"type":47,"value":3016},"useActions",{"type":41,"tag":2394,"props":3018,"children":3019},{},[3020],{"type":47,"value":3021},"Access actions context",{"type":41,"tag":2372,"props":3023,"children":3024},{},[3025,3034],{"type":41,"tag":2394,"props":3026,"children":3027},{},[3028],{"type":41,"tag":71,"props":3029,"children":3031},{"className":3030},[],[3032],{"type":47,"value":3033},"useAction",{"type":41,"tag":2394,"props":3035,"children":3036},{},[3037],{"type":47,"value":3038},"Get a single action dispatch function",{"type":41,"tag":2372,"props":3040,"children":3041},{},[3042,3051],{"type":41,"tag":2394,"props":3043,"children":3044},{},[3045],{"type":41,"tag":71,"props":3046,"children":3048},{"className":3047},[],[3049],{"type":47,"value":3050},"useUIStream",{"type":41,"tag":2394,"props":3052,"children":3053},{},[3054],{"type":47,"value":3055},"Stream specs from an API endpoint",{"type":41,"tag":2372,"props":3057,"children":3058},{},[3059,3068],{"type":41,"tag":2394,"props":3060,"children":3061},{},[3062],{"type":41,"tag":71,"props":3063,"children":3065},{"className":3064},[],[3066],{"type":47,"value":3067},"createStateStore",{"type":41,"tag":2394,"props":3069,"children":3070},{},[3071,3073],{"type":47,"value":3072},"Create a framework-agnostic in-memory ",{"type":41,"tag":71,"props":3074,"children":3076},{"className":3075},[],[3077],{"type":47,"value":2480},{"type":41,"tag":2372,"props":3079,"children":3080},{},[3081,3089],{"type":41,"tag":2394,"props":3082,"children":3083},{},[3084],{"type":41,"tag":71,"props":3085,"children":3087},{"className":3086},[],[3088],{"type":47,"value":2480},{"type":41,"tag":2394,"props":3090,"children":3091},{},[3092],{"type":47,"value":3093},"Interface for plugging in external state management",{"type":41,"tag":3095,"props":3096,"children":3097},"style",{},[3098],{"type":47,"value":3099},"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":3101,"total":3271},[3102,3120,3132,3144,3159,3176,3188,3201,3214,3227,3239,3256],{"slug":3103,"name":3103,"fn":3104,"description":3105,"org":3106,"tags":3107,"stars":3117,"repoUrl":3118,"updatedAt":3119},"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},[3108,3111,3114],{"name":3109,"slug":3110,"type":14},"Agents","agents",{"name":3112,"slug":3113,"type":14},"Automation","automation",{"name":3115,"slug":3116,"type":14},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":3121,"name":3121,"fn":3122,"description":3123,"org":3124,"tags":3125,"stars":3117,"repoUrl":3118,"updatedAt":3131},"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},[3126,3127,3130],{"name":3112,"slug":3113,"type":14},{"name":3128,"slug":3129,"type":14},"AWS","aws",{"name":3115,"slug":3116,"type":14},"2026-07-17T06:08:33.665276",{"slug":3133,"name":3133,"fn":3134,"description":3135,"org":3136,"tags":3137,"stars":3117,"repoUrl":3118,"updatedAt":3143},"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},[3138,3139,3140],{"name":3109,"slug":3110,"type":14},{"name":3115,"slug":3116,"type":14},{"name":3141,"slug":3142,"type":14},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":3145,"name":3145,"fn":3146,"description":3147,"org":3148,"tags":3149,"stars":3117,"repoUrl":3118,"updatedAt":3158},"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},[3150,3153,3154,3155],{"name":3151,"slug":3152,"type":14},"API Development","api-development",{"name":3112,"slug":3113,"type":14},{"name":3115,"slug":3116,"type":14},{"name":3156,"slug":3157,"type":14},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":3160,"name":3160,"fn":3161,"description":3162,"org":3163,"tags":3164,"stars":3117,"repoUrl":3118,"updatedAt":3175},"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},[3165,3166,3169,3172],{"name":3115,"slug":3116,"type":14},{"name":3167,"slug":3168,"type":14},"Debugging","debugging",{"name":3170,"slug":3171,"type":14},"QA","qa",{"name":3173,"slug":3174,"type":14},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":3177,"name":3177,"fn":3178,"description":3179,"org":3180,"tags":3181,"stars":3117,"repoUrl":3118,"updatedAt":3187},"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},[3182,3183,3184],{"name":3109,"slug":3110,"type":14},{"name":3115,"slug":3116,"type":14},{"name":3185,"slug":3186,"type":14},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":3189,"name":3189,"fn":3190,"description":3191,"org":3192,"tags":3193,"stars":3117,"repoUrl":3118,"updatedAt":3200},"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},[3194,3195,3198],{"name":3115,"slug":3116,"type":14},{"name":3196,"slug":3197,"type":14},"Messaging","messaging",{"name":3199,"slug":3189,"type":14},"Slack","2026-07-17T06:08:27.679015",{"slug":3202,"name":3202,"fn":3203,"description":3204,"org":3205,"tags":3206,"stars":3117,"repoUrl":3118,"updatedAt":3213},"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},[3207,3208,3209,3210],{"name":3112,"slug":3113,"type":14},{"name":3115,"slug":3116,"type":14},{"name":3173,"slug":3174,"type":14},{"name":3211,"slug":3212,"type":14},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":3215,"name":3215,"fn":3216,"description":3217,"org":3218,"tags":3219,"stars":3224,"repoUrl":3225,"updatedAt":3226},"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},[3220,3223],{"name":3221,"slug":3222,"type":14},"Deployment","deployment",{"name":3211,"slug":3212,"type":14},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":3228,"name":3228,"fn":3229,"description":3230,"org":3231,"tags":3232,"stars":3224,"repoUrl":3225,"updatedAt":3238},"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},[3233,3236,3237],{"name":3234,"slug":3235,"type":14},"CLI","cli",{"name":3221,"slug":3222,"type":14},{"name":3211,"slug":3212,"type":14},"2026-07-17T06:08:41.84179",{"slug":3240,"name":3240,"fn":3241,"description":3242,"org":3243,"tags":3244,"stars":3224,"repoUrl":3225,"updatedAt":3255},"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},[3245,3248,3251,3254],{"name":3246,"slug":3247,"type":14},"Best Practices","best-practices",{"name":3249,"slug":3250,"type":14},"Frontend","frontend",{"name":3252,"slug":3253,"type":14},"React","react",{"name":22,"slug":23,"type":14},"2026-07-17T06:05:40.576913",{"slug":3257,"name":3257,"fn":3258,"description":3259,"org":3260,"tags":3261,"stars":3224,"repoUrl":3225,"updatedAt":3270},"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},[3262,3265,3266,3269],{"name":3263,"slug":3264,"type":14},"Cost Optimization","cost-optimization",{"name":3221,"slug":3222,"type":14},{"name":3267,"slug":3268,"type":14},"Performance","performance",{"name":3211,"slug":3212,"type":14},"2026-07-17T06:04:08.327515",100,{"items":3273,"total":792},[3274,3288,3298,3310,3327,3337,3349],{"slug":3275,"name":3275,"fn":3276,"description":3277,"org":3278,"tags":3279,"stars":24,"repoUrl":25,"updatedAt":3287},"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},[3280,3283,3286],{"name":3281,"slug":3282,"type":14},"Code Generation","code-generation",{"name":3284,"slug":3285,"type":14},"Engineering","engineering",{"name":16,"slug":17,"type":14},"2026-07-17T06:08:34.68038",{"slug":3289,"name":3289,"fn":3290,"description":3291,"org":3292,"tags":3293,"stars":24,"repoUrl":25,"updatedAt":3297},"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},[3294,3295,3296],{"name":3167,"slug":3168,"type":14},{"name":3249,"slug":3250,"type":14},{"name":22,"slug":23,"type":14},"2026-07-17T06:08:35.001228",{"slug":3299,"name":3299,"fn":3300,"description":3301,"org":3302,"tags":3303,"stars":24,"repoUrl":25,"updatedAt":3309},"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},[3304,3305,3306,3308],{"name":3112,"slug":3113,"type":14},{"name":3249,"slug":3250,"type":14},{"name":3307,"slug":3307,"type":14},"i18n",{"name":16,"slug":17,"type":14},"2026-07-17T06:04:05.866831",{"slug":3311,"name":3311,"fn":3312,"description":3313,"org":3314,"tags":3315,"stars":24,"repoUrl":25,"updatedAt":3326},"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},[3316,3319,3320,3323],{"name":3317,"slug":3318,"type":14},"Images","images",{"name":16,"slug":17,"type":14},{"name":3321,"slug":3322,"type":14},"Satori","satori",{"name":3324,"slug":3325,"type":14},"SVG","svg","2026-07-17T06:07:42.441875",{"slug":3328,"name":3328,"fn":3329,"description":3330,"org":3331,"tags":3332,"stars":24,"repoUrl":25,"updatedAt":3336},"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},[3333,3334,3335],{"name":3234,"slug":3235,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},"2026-07-17T06:08:28.678043",{"slug":3338,"name":3338,"fn":3339,"description":3340,"org":3341,"tags":3342,"stars":24,"repoUrl":25,"updatedAt":3348},"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},[3343,3344,3345],{"name":3249,"slug":3250,"type":14},{"name":3252,"slug":3253,"type":14},{"name":3346,"slug":3347,"type":14},"State Management","state-management","2026-07-17T06:05:48.244622",{"slug":3350,"name":3350,"fn":3351,"description":3352,"org":3353,"tags":3354,"stars":24,"repoUrl":25,"updatedAt":3360},"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},[3355,3356,3357,3359],{"name":3249,"slug":3250,"type":14},{"name":16,"slug":17,"type":14},{"name":3358,"slug":3350,"type":14},"MCP",{"name":22,"slug":23,"type":14},"2026-07-17T06:05:41.274723"]