| 12345678910111213141516171819202122232425 |
- import { defineCatalog } from "@json-render/core";
- import { schema } from "@json-render/react/schema";
- import { shadcnComponentDefinitions } from "@json-render/shadcn/catalog";
- import { z } from "zod";
- export const catalog = defineCatalog(schema, {
- components: {
- ...shadcnComponentDefinitions,
- },
- actions: {
- confetti: {
- params: z.object({}),
- description: "Fire confetti",
- },
- },
- functions: {
- formatAddress: {
- description:
- "Formats country and city into a single address string like 'City, Country'",
- },
- citiesForCountry: {
- description: "Returns an array of city names for the given country code",
- },
- },
- });
|