page.mdx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. import { pageMetadata } from "@/lib/page-metadata"
  2. export const metadata = pageMetadata("docs/changelog")
  3. # Changelog
  4. Notable changes and updates to json-render.
  5. ## v0.9.0
  6. February 2026
  7. ### New: External State Store
  8. The `StateStore` interface lets you plug in your own state management (Redux, Zustand, Jotai, XState, etc.) instead of the built-in internal store. Pass a `store` prop to `StateProvider`, `JSONUIProvider`, or `createRenderer` for controlled mode.
  9. - Added `StateStore` interface and `createStateStore()` factory to `@json-render/core`
  10. - `StateProvider`, `JSONUIProvider`, and `createRenderer` now accept an optional `store` prop
  11. - When `store` is provided, it becomes the single source of truth (`initialState`/`onStateChange` are ignored)
  12. - When `store` is omitted, everything works exactly as before (fully backward compatible)
  13. - Applied across all platform packages: react, react-native, react-pdf
  14. - Store utilities (`createStoreAdapter`, `immutableSetByPath`, `flattenToPointers`) available via `@json-render/core/store-utils` for building custom adapters
  15. New adapter packages: `@json-render/redux`, `@json-render/zustand`, `@json-render/jotai`.
  16. See the [Data Binding](/docs/data-binding#external-store-controlled-mode) guide for usage.
  17. ### Changed: `onStateChange` signature updated (breaking)
  18. The `onStateChange` callback now receives a single array of changed entries instead of being called once per path. This makes batch updates via `update()` easier to handle:
  19. ```ts
  20. // Before
  21. onStateChange?: (path: string, value: unknown) => void
  22. // After
  23. onStateChange?: (changes: Array<{ path: string; value: unknown }>) => void
  24. ```
  25. The callback is only called when a `set()` or `update()` call actually changes the state. A `set()` call produces a single-element array; an `update()` call produces one array with all changed paths.
  26. ### Fixed: Server-safe schema import
  27. `@json-render/react` barrel-imports React contexts that call `createContext`, which crashes in Next.js App Router API routes (RSC runtime strips `createContext`). All docs, examples, and skills now import `schema` from `@json-render/react/schema` instead of `@json-render/react`.
  28. For combined imports, split into separate `schema` (subpath) and client API (main entry) lines:
  29. ```ts
  30. import { schema } from "@json-render/react/schema";
  31. import { defineRegistry, Renderer } from "@json-render/react";
  32. ```
  33. ### Fixed: Chaining actions
  34. Fixed an issue where chaining multiple actions on the same event (e.g. `setState` followed by a custom action) did not execute all actions. Affected `@json-render/react`, `@json-render/react-native`, and `@json-render/react-pdf`.
  35. ### Fixed: Zod array inner type resolution
  36. Fixed safely resolving the inner type for Zod arrays in schema introspection, preventing errors when catalog component props use `z.array()`.
  37. ---
  38. ## v0.8.0
  39. February 2026
  40. ### New: `@json-render/react-pdf`
  41. PDF renderer for json-render, powered by [`@react-pdf/renderer`](https://react-pdf.org/). Define catalogs and registries the same way as `@json-render/react`, but output PDF documents instead of web UI.
  42. ```bash
  43. npm install @json-render/core @json-render/react-pdf
  44. ```
  45. ```typescript
  46. import { renderToBuffer } from "@json-render/react-pdf";
  47. import type { Spec } from "@json-render/core";
  48. const spec: Spec = {
  49. root: "doc",
  50. elements: {
  51. doc: { type: "Document", props: { title: "Invoice" }, children: ["page"] },
  52. page: {
  53. type: "Page",
  54. props: { size: "A4" },
  55. children: ["heading", "table"],
  56. },
  57. heading: {
  58. type: "Heading",
  59. props: { text: "Invoice #1234", level: "h1" },
  60. children: [],
  61. },
  62. table: {
  63. type: "Table",
  64. props: {
  65. columns: [
  66. { header: "Item", width: "60%" },
  67. { header: "Price", width: "40%", align: "right" },
  68. ],
  69. rows: [
  70. ["Widget A", "$10.00"],
  71. ["Widget B", "$25.00"],
  72. ],
  73. },
  74. children: [],
  75. },
  76. },
  77. };
  78. const buffer = await renderToBuffer(spec);
  79. ```
  80. Server-side rendering APIs:
  81. - `renderToBuffer(spec)` -- render to an in-memory PDF buffer
  82. - `renderToStream(spec)` -- render to a readable stream (pipe to HTTP response)
  83. - `renderToFile(spec, path)` -- render directly to a file
  84. 15 standard components covering document structure (Document, Page), layout (View, Row, Column), content (Heading, Text, Image, Link), data (Table, List), decorative (Divider, Spacer), and page-level (PageNumber).
  85. Supports custom catalogs with `defineRegistry`, server-safe imports via `@json-render/react-pdf/server`, and full context support (state, visibility, actions, validation, repeat scopes).
  86. ---
  87. ## v0.7.0
  88. February 2026
  89. ### New: `@json-render/shadcn`
  90. Pre-built [shadcn/ui](https://ui.shadcn.com/) component library for json-render. 36 components built on Radix UI + Tailwind CSS, ready to use with `defineCatalog` and `defineRegistry`.
  91. ```bash
  92. npm install @json-render/shadcn
  93. ```
  94. ```typescript
  95. import { defineCatalog } from "@json-render/core";
  96. import { schema } from "@json-render/react/schema";
  97. import { shadcnComponentDefinitions } from "@json-render/shadcn/catalog";
  98. import { defineRegistry } from "@json-render/react";
  99. import { shadcnComponents } from "@json-render/shadcn";
  100. const catalog = defineCatalog(schema, {
  101. components: {
  102. Card: shadcnComponentDefinitions.Card,
  103. Button: shadcnComponentDefinitions.Button,
  104. Input: shadcnComponentDefinitions.Input,
  105. },
  106. actions: {},
  107. });
  108. const { registry } = defineRegistry(catalog, {
  109. components: {
  110. Card: shadcnComponents.Card,
  111. Button: shadcnComponents.Button,
  112. Input: shadcnComponents.Input,
  113. },
  114. });
  115. ```
  116. Components include: layout (Card, Stack, Grid, Separator), navigation (Tabs, Accordion, Collapsible, Pagination), overlay (Dialog, Drawer, Tooltip, Popover, DropdownMenu), content (Heading, Text, Image, Avatar, Badge, Alert, Carousel, Table), feedback (Progress, Skeleton, Spinner), and input (Button, Link, Input, Textarea, Select, Checkbox, Radio, Switch, Slider, Toggle, ToggleGroup, ButtonGroup).
  117. See the [API reference](/docs/api/shadcn) for full details.
  118. ### New: Event Handles (`on()`)
  119. Components now receive an `on(event)` function in addition to `emit(event)`. The `on()` function returns an `EventHandle` with metadata:
  120. - `emit()` -- fire the event
  121. - `shouldPreventDefault` -- whether any action binding requested `preventDefault`
  122. - `bound` -- whether any handler is bound to this event
  123. ```tsx
  124. Link: ({ props, on }) => {
  125. const click = on("click");
  126. return (
  127. <a href={props.href} onClick={(e) => {
  128. if (click.shouldPreventDefault) e.preventDefault();
  129. click.emit();
  130. }}>{props.label}</a>
  131. );
  132. },
  133. ```
  134. ### New: `BaseComponentProps`
  135. Catalog-agnostic base type for component render functions. Use when building reusable component libraries (like `@json-render/shadcn`) that are not tied to a specific catalog.
  136. ```typescript
  137. import type { BaseComponentProps } from "@json-render/react";
  138. const Card = ({ props, children }: BaseComponentProps<{ title?: string }>) => (
  139. <div>{props.title}{children}</div>
  140. );
  141. ```
  142. ### New: Built-in Actions in Schema
  143. Schemas can now declare `builtInActions` -- actions that are always available at runtime and automatically injected into prompts. The React schema declares `setState`, `pushState`, and `removeState` as built-in, so they appear in prompts without needing to be listed in catalog `actions`.
  144. ### New: `preventDefault` on `ActionBinding`
  145. Action bindings now support a `preventDefault` boolean field, allowing the LLM to request that default browser behavior (e.g. navigation on links) be prevented.
  146. ### Improved: Stream Transform Text Block Splitting
  147. `createJsonRenderTransform()` now properly splits text blocks around spec data by emitting `text-end`/`text-start` pairs. This ensures the AI SDK creates separate text parts, preserving correct interleaving of prose and UI in `message.parts`.
  148. ### Improved: `defineRegistry` Actions Requirement
  149. `defineRegistry` now conditionally requires the `actions` field only when the catalog declares actions. Catalogs with no actions (e.g. `actions: {}`) no longer need to pass an empty actions object.
  150. ---
  151. ## v0.6.0
  152. February 2026
  153. ### New: Chat Mode (Inline GenUI)
  154. json-render now supports two generation modes: **Generate** (JSONL-only, the default) and **Chat** (text + JSONL inline). Chat mode lets the AI respond conversationally with embedded UI specs, ideal for chatbots and copilot experiences.
  155. ```typescript
  156. // Generate mode (default) — AI outputs only JSONL
  157. const prompt = catalog.prompt();
  158. // Chat mode — AI outputs text + JSONL inline
  159. const chatPrompt = catalog.prompt({ mode: "chat" });
  160. ```
  161. On the server, `pipeJsonRender()` separates text from JSONL patches in a mixed stream:
  162. ```typescript
  163. import { pipeJsonRender } from "@json-render/core";
  164. import { createUIMessageStream, createUIMessageStreamResponse } from "ai";
  165. const stream = createUIMessageStream({
  166. execute: async ({ writer }) => {
  167. writer.merge(pipeJsonRender(result.toUIMessageStream()));
  168. },
  169. });
  170. return createUIMessageStreamResponse({ stream });
  171. ```
  172. On the client, `useJsonRenderMessage` extracts the spec and text from message parts:
  173. ```tsx
  174. import { useJsonRenderMessage } from "@json-render/react";
  175. function ChatMessage({ message }) {
  176. const { spec, text, hasSpec } = useJsonRenderMessage(message.parts);
  177. return (
  178. <div>
  179. {text && <Markdown>{text}</Markdown>}
  180. {hasSpec && <Renderer spec={spec} registry={registry} />}
  181. </div>
  182. );
  183. }
  184. ```
  185. ### New: AI SDK Integration
  186. First-class Vercel AI SDK support with typed data parts and stream utilities.
  187. - `SpecDataPart` type for `data-spec` stream parts (patch, flat, nested payloads)
  188. - `SPEC_DATA_PART` / `SPEC_DATA_PART_TYPE` constants for type-safe part filtering
  189. - `createJsonRenderTransform()` low-level TransformStream for custom pipelines
  190. - `createMixedStreamParser()` for parsing mixed text + JSONL streams
  191. ### New: Two-Way Binding
  192. Props can now use `$bindState` and `$bindItem` expressions for two-way data binding. The renderer resolves bindings and passes a `bindings` map to components, enabling write-back to state without custom `valuePath` props.
  193. ```json
  194. {
  195. "type": "Input",
  196. "props": { "label": "Email", "value": { "$bindState": "/form/email" } }
  197. }
  198. ```
  199. ```tsx
  200. import { useBoundProp } from "@json-render/react";
  201. Input: ({ props, bindings }) => {
  202. const [value, setValue] = useBoundProp<string>(props.value, bindings?.value);
  203. return <input value={value ?? ""} onChange={(e) => setValue(e.target.value)} />;
  204. }
  205. ```
  206. ### New: Expression-Based Props and Visibility
  207. All dynamic expressions now use structured `$state`, `$item`, and `$index` objects instead of string token rewriting. This is simpler, more explicit, and works for both props and visibility conditions.
  208. **Props:**
  209. ```json
  210. { "title": { "$state": "/user/name" } }
  211. { "label": { "$item": "title" } }
  212. { "position": { "$index": true } }
  213. ```
  214. **Visibility:**
  215. ```json
  216. { "$state": "/isAdmin" }
  217. { "$state": "/role", "eq": "admin" }
  218. [{ "$state": "/isAdmin" }, { "$state": "/feature" }]
  219. { "$or": [{ "$state": "/roleA" }, { "$state": "/roleB" }] }
  220. { "$item": "isActive" }
  221. { "$index": true, "gt": 0 }
  222. ```
  223. Comparison operators: `eq`, `neq`, `gt`, `gte`, `lt`, `lte`, `not`.
  224. ### New: React Chat Hooks
  225. - `useChatUI()` — full chat hook with message history, streaming, and spec extraction
  226. - `useJsonRenderMessage()` — extract spec + text from a message's parts array
  227. - `buildSpecFromParts()` / `getTextFromParts()` — utilities for working with AI SDK message parts
  228. - `useBoundProp()` — two-way binding hook for `$bindState` / `$bindItem`
  229. ### New: Chat Example
  230. Full-featured chat example (`examples/chat`) with AI agent, tool calls (crypto, GitHub, Hacker News, weather, search), theme toggle, and streaming inline UI generation.
  231. ### Improved: Renderer Performance
  232. - `ElementRenderer` is now `React.memo`'d for better performance with repeat lists
  233. - `emit` is always defined (never `undefined`)
  234. - Repeat scope passes the actual item object, eliminating string token rewriting
  235. ### Improved: Utilities
  236. - `applySpecPatch()` — typed wrapper for applying a single patch to a Spec
  237. - `nestedToFlat()` — convert nested tree specs to flat format
  238. - `resolveBindings()` / `resolveActionParam()` — resolve binding paths and action params
  239. ### Breaking Changes
  240. - `{ $path }` and `{ path }` replaced by `{ $state }`, `{ $item }`, `{ $index }` in props
  241. - Visibility: `{ path }` -> `{ $state }`, `{ and/or/not }` -> `{ $and/$or }` with `not` as operator flag
  242. - `DynamicValue`: `{ path: string }` -> `{ $state: string }`
  243. - `repeat.path` -> `repeat.statePath`
  244. - Action params: `path` -> `statePath` in setState action
  245. - `actionHandlers` -> `handlers` on `JSONUIProvider` / `ActionProvider`
  246. - `AuthState` and `{ auth }` visibility conditions removed (model auth as regular state)
  247. - Legacy catalog API removed: `createCatalog`, `generateCatalogPrompt`, `generateSystemPrompt`
  248. - React exports removed: `createRendererFromCatalog`, `rewriteRepeatTokens`
  249. - Codegen: `traverseTree` -> `traverseSpec`
  250. See the [Migration Guide](/docs/migration) for detailed upgrade instructions.
  251. ---
  252. ## v0.5.0
  253. February 2026
  254. ### New: @json-render/react-native
  255. Full React Native renderer with 25+ standard components, data binding, visibility, actions, and dynamic props. Build AI-generated native mobile UIs with the same catalog-driven approach as web.
  256. ```tsx
  257. import { defineCatalog } from "@json-render/core";
  258. import { schema } from "@json-render/react-native/schema";
  259. import {
  260. standardComponentDefinitions,
  261. standardActionDefinitions,
  262. } from "@json-render/react-native/catalog";
  263. import { defineRegistry, Renderer } from "@json-render/react-native";
  264. const catalog = defineCatalog(schema, {
  265. components: { ...standardComponentDefinitions },
  266. actions: standardActionDefinitions,
  267. });
  268. const { registry } = defineRegistry(catalog, { components: {} });
  269. <Renderer spec={spec} registry={registry} />
  270. ```
  271. Includes standard components for layout (Container, Row, Column, ScrollContainer, SafeArea, Pressable, Spacer, Divider), content (Heading, Paragraph, Label, Image, Avatar, Badge, Chip), input (Button, TextInput, Switch, Checkbox, Slider, SearchBar), feedback (Spinner, ProgressBar), and composite (Card, ListItem, Modal).
  272. ### New: Event System
  273. Components now use `emit` to fire named events instead of directly dispatching actions. The element's `on` field maps events to action bindings, decoupling component logic from action handling.
  274. ```tsx
  275. // Component emits a named event
  276. Button: ({ props, emit }) => (
  277. <button onClick={() => emit("press")}>{props.label}</button>
  278. ),
  279. // Element spec maps events to actions
  280. {
  281. "type": "Button",
  282. "props": { "label": "Submit" },
  283. "on": { "press": { "action": "submit", "params": { "formId": "main" } } }
  284. }
  285. ```
  286. ### New: Repeat/List Rendering
  287. Elements can now iterate over state arrays using the `repeat` field. Child elements use `{ "$item": "field" }` to read from the current item and `{ "$index": true }` for the current array index.
  288. ```json
  289. {
  290. "type": "Column",
  291. "repeat": { "statePath": "/posts", "key": "id" },
  292. "children": ["post-card"]
  293. }
  294. ```
  295. ```json
  296. {
  297. "type": "Card",
  298. "props": { "title": { "$item": "title" } }
  299. }
  300. ```
  301. ### New: User Prompt Builder
  302. Build structured user prompts with optional spec refinement and state context:
  303. ```typescript
  304. import { buildUserPrompt } from "@json-render/core";
  305. // Fresh generation
  306. buildUserPrompt({ prompt: "create a todo app" });
  307. // Refinement (patch-only mode)
  308. buildUserPrompt({ prompt: "add a toggle", currentSpec: spec });
  309. // With runtime state
  310. buildUserPrompt({ prompt: "show data", state: { todos: [] } });
  311. ```
  312. ### New: Spec Validation
  313. Validate spec structure and auto-fix common issues:
  314. ```typescript
  315. import { validateSpec, autoFixSpec } from "@json-render/core";
  316. const { valid, issues } = validateSpec(spec);
  317. const fixed = autoFixSpec(spec);
  318. ```
  319. ### Improved: State Management
  320. `DataProvider` has been renamed to `StateProvider` with a clearer API. State is now a first-class part of specs. Elements can bind to state via `$state` expressions, and the built-in `setState` action updates state directly.
  321. ### Improved: AI Prompts
  322. Schema prompts now include streaming best practices, repeat/list examples, and state patching guidance. Schemas can also define `defaultRules` that are always included in generated prompts.
  323. ### Improved: Documentation
  324. - All documentation pages migrated to MDX
  325. - AI-powered documentation chat
  326. - Dynamic Open Graph images for all docs pages
  327. - Improved playground
  328. ### Breaking Changes
  329. - `DataProvider` renamed to `StateProvider`
  330. - `useData` renamed to `useStateStore`, `useDataValue` to `useStateValue`, `useDataBinding` to `useStateBinding`
  331. - `onAction` renamed to `emit` in component context
  332. - `DataModel` type renamed to `StateModel`
  333. - `Action` type renamed to `ActionBinding` (old name still available but deprecated)
  334. ---
  335. ## v0.4.0
  336. February 2026
  337. ### New: Custom Schema System
  338. Create custom output formats with `defineSchema`. Each renderer now defines its own schema, enabling completely different spec formats for different use cases.
  339. ```typescript
  340. import { defineSchema } from "@json-render/core";
  341. const mySchema = defineSchema((s) => ({
  342. spec: s.object({
  343. pages: s.array(s.object({
  344. title: s.string(),
  345. blocks: s.array(s.ref("catalog.blocks")),
  346. })),
  347. }),
  348. catalog: s.object({
  349. blocks: s.map({ props: s.zod(), description: s.string() }),
  350. }),
  351. }), {
  352. promptTemplate: myPromptTemplate,
  353. });
  354. ```
  355. ### New: Component Slots
  356. Components can now define which slots they accept. Use `["default"]` for regular children, or named slots like `["header", "footer"]` for more complex layouts.
  357. ```typescript
  358. const catalog = defineCatalog(schema, {
  359. components: {
  360. Card: {
  361. props: z.object({ title: z.string() }),
  362. slots: ["default"], // accepts children
  363. description: "A card container",
  364. },
  365. Layout: {
  366. props: z.object({}),
  367. slots: ["header", "content", "footer"], // named slots
  368. description: "Page layout with header, content, footer",
  369. },
  370. },
  371. });
  372. ```
  373. ### New: AI Prompt Generation
  374. Catalogs now generate AI system prompts automatically with `catalog.prompt()`. The prompt includes all component definitions, props schemas, and action descriptions - ensuring the AI only generates valid specs.
  375. ```typescript
  376. import { defineCatalog } from "@json-render/core";
  377. import { schema } from "@json-render/react/schema";
  378. const catalog = defineCatalog(schema, {
  379. components: { /* ... */ },
  380. actions: { /* ... */ },
  381. });
  382. // Generate system prompt for AI
  383. const systemPrompt = catalog.prompt();
  384. // Use with any AI SDK
  385. const result = await streamText({
  386. model: "claude-haiku-4.5",
  387. system: systemPrompt,
  388. prompt: userMessage,
  389. });
  390. ```
  391. ### New: @json-render/remotion
  392. Generate AI-powered videos with Remotion. Define video catalogs, stream timeline specs, and render with the Remotion Player.
  393. ```tsx
  394. import { Player } from "@remotion/player";
  395. import { Renderer, schema, standardComponentDefinitions } from "@json-render/remotion";
  396. const catalog = defineCatalog(schema, {
  397. components: standardComponentDefinitions,
  398. transitions: standardTransitionDefinitions,
  399. });
  400. <Player
  401. component={Renderer}
  402. inputProps={{ spec }}
  403. durationInFrames={spec.composition.durationInFrames}
  404. fps={spec.composition.fps}
  405. compositionWidth={spec.composition.width}
  406. compositionHeight={spec.composition.height}
  407. />
  408. ```
  409. Includes 10 standard video components (TitleCard, TypingText, SplitScreen, etc.), 7 transition types, and the ClipWrapper utility for custom components.
  410. ### New: SpecStream
  411. SpecStream is json-render's streaming format for progressively building specs from JSONL patches. The new compiler API makes it easy to process streaming AI responses.
  412. ```typescript
  413. import { createSpecStreamCompiler } from "@json-render/core";
  414. const compiler = createSpecStreamCompiler<MySpec>();
  415. // Process streaming chunks
  416. const { result, newPatches } = compiler.push(chunk);
  417. setSpec(result); // Update UI with partial result
  418. ```
  419. ### Improved: Dashboard Example
  420. The dashboard example is now a full-featured accounting dashboard with:
  421. - Persistent SQLite database with Drizzle ORM
  422. - RESTful API for customers, invoices, expenses, accounts
  423. - Draggable widget reordering
  424. - AI-powered widget generation with streaming
  425. - Real data binding to database records
  426. ### Improved: Documentation
  427. - Interactive playground for testing specs
  428. - New guides: Custom Schema, Streaming, Code Export
  429. - Full API reference for all packages
  430. - Integration guides: A2UI, AG-UI, Adaptive Cards, OpenAPI
  431. ### Breaking Changes
  432. - `UITree` type renamed to `Spec`
  433. - Schema is now imported from renderer packages (`@json-render/react`) not core
  434. - `defineCatalog` now requires a schema as first argument
  435. ---
  436. ## v0.3.0
  437. January 2026
  438. Internal release with codegen foundations.
  439. - Added `@json-render/codegen` package (spec traversal and JSX serialization)
  440. - Configurable AI model via environment variables
  441. - Documentation improvements and bug fixes
  442. *Note: Only @json-render/core was published to npm for this release.*
  443. ---
  444. ## v0.2.0
  445. January 2026
  446. Initial public release.
  447. - Core catalog and spec types
  448. - React renderer with contexts for data, actions, visibility
  449. - AI prompt generation from catalogs
  450. - Basic streaming support
  451. - Dashboard example application