UNPKG

@copilotkit/a2ui-renderer

Version:

A2UI Renderer for CopilotKit - render A2UI surfaces in React applications

68 lines (67 loc) 2.34 kB
import { LitComponentImplementation } from "../../types.mjs"; import "../../index.mjs"; import { z } from "zod"; //#region src/web-components/catalog/minimal/row.d.ts declare const RowSchema: z.ZodObject<{ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{ componentId: z.ZodString; path: z.ZodString; }, "strip", z.ZodTypeAny, { componentId: string; path: string; }, { componentId: string; path: string; }>]>; justify: z.ZodOptional<z.ZodEnum<["center", "end", "spaceAround", "spaceBetween", "spaceEvenly", "start", "stretch"]>>; align: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>; }, "strip", z.ZodTypeAny, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }>; declare const RowApiDef: { name: string; schema: z.ZodObject<{ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{ componentId: z.ZodString; path: z.ZodString; }, "strip", z.ZodTypeAny, { componentId: string; path: string; }, { componentId: string; path: string; }>]>; justify: z.ZodOptional<z.ZodEnum<["center", "end", "spaceAround", "spaceBetween", "spaceEvenly", "start", "stretch"]>>; align: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>; }, "strip", z.ZodTypeAny, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }, { children?: string[] | { componentId: string; path: string; }; justify?: "center" | "start" | "end" | "spaceBetween" | "spaceAround" | "spaceEvenly" | "stretch"; align?: "center" | "start" | "end" | "stretch"; }>; }; declare const Row: LitComponentImplementation; //#endregion export { Row, RowApiDef, RowSchema }; //# sourceMappingURL=row.d.mts.map