UNPKG

@copilotkit/a2ui-renderer

Version:

A2UI Renderer for CopilotKit - render A2UI surfaces in React applications

44 lines (42 loc) 1.49 kB
import { Text } from "./components/Text.mjs"; import { Button } from "./components/Button.mjs"; import { Row } from "./components/Row.mjs"; import { Column } from "./components/Column.mjs"; import { TextField } from "./components/TextField.mjs"; import { Catalog, createFunctionImplementation } from "@a2ui/web_core/v0_9"; import { z } from "zod"; //#region src/react-renderer/a2ui-react/catalog/minimal/index.ts /** * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ const minimalComponents = [ Text, Button, Row, Column, TextField ]; const minimalCatalog = new Catalog("https://a2ui.org/specification/v0_9/catalogs/minimal/minimal_catalog.json", minimalComponents, [createFunctionImplementation({ name: "capitalize", returnType: "string", schema: z.object({ value: z.unknown() }) }, (args) => { const val = args.value; if (typeof val === "string") return val.toUpperCase(); return val; })]); //#endregion export { }; //# sourceMappingURL=index.mjs.map