diff --git a/.gitignore b/.gitignore index f47e9da..806aca4 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ node_modules .wireit dist .venv - +.jetskicli +.geminicli diff --git a/README.md b/README.md index ac53eb5..eff55dc 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,7 @@ npm i @googlemaps/a2ui In your application code (e.g., a React component): ```tsx -import { A2UIClient, A2UIRenderer, themeStyleSheet } from '@googlemaps/a2ui'; +import { A2UIClient, A2UIRenderer, themeStyleSheet } from '@googlemaps/a2ui/lit'; // 1. Adopt the theme stylesheet globally document.adoptedStyleSheets = [...document.adoptedStyleSheets, themeStyleSheet]; diff --git a/client/web/README.md b/client/web/README.md index cb69846..aefbacb 100644 --- a/client/web/README.md +++ b/client/web/README.md @@ -18,7 +18,7 @@ npm i @googlemaps/a2ui In your application code (e.g., a React component): ```tsx -import { A2UIClient, A2UIRenderer, themeStyleSheet } from '@googlemaps/a2ui'; +import { A2UIClient, A2UIRenderer, themeStyleSheet } from '@googlemaps/a2ui/lit'; // 1. Adopt the theme stylesheet globally document.adoptedStyleSheets = [...document.adoptedStyleSheets, themeStyleSheet]; diff --git a/client/web/package-lock.json b/client/web/package-lock.json index 45fb64d..54d4158 100644 --- a/client/web/package-lock.json +++ b/client/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "@googlemaps/a2ui", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@googlemaps/a2ui", - "version": "0.1.0", + "version": "0.1.2", "license": "Apache-2.0", "dependencies": { "@a2a-js/sdk": "^0.3.8", @@ -56,9 +56,9 @@ } }, "node_modules/@a2a-js/sdk/node_modules/uuid": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz", - "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==", + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz", + "integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==", "funding": [ "https://github.com/sponsors/broofa", "https://github.com/sponsors/ctavan" @@ -95,7 +95,6 @@ "resolved": "https://registry.npmjs.org/@a2ui/markdown-it/-/markdown-it-0.0.3.tgz", "integrity": "sha512-ni/aK2oeBcjEESTO+XE+CidDb0N4aOzYL14XSYBAdAH2E7jmsbuUyHEKf4FQyYK0f8AA0C5thkZ09qPV2C3ikA==", "license": "Apache-2.0", - "peer": true, "dependencies": { "dompurify": "^3.3.1", "markdown-it": "^14.1.0" @@ -109,7 +108,6 @@ "resolved": "https://registry.npmjs.org/@a2ui/web_core/-/web_core-0.9.2.tgz", "integrity": "sha512-EOfhLOF7tnpPmNq4y116k3gxWdrXQW8h3dhKF0pC++21zLZnCSLSHl6zgQFG+kPeVAZb64t+sQiRXlnyS8+RBg==", "license": "Apache-2.0", - "peer": true, "dependencies": { "@preact/signals-core": "^1.13.0", "date-fns": "^4.1.0", @@ -1123,8 +1121,7 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/signal-polyfill/-/signal-polyfill-0.2.2.tgz", "integrity": "sha512-p63Y4Er5/eMQ9RHg0M0Y64NlsQKpiu6MDdhBXpyywRuWiPywhJTpKJ1iB5K2hJEbFZ0BnDS7ZkJ+0AfTuL37Rg==", - "license": "Apache-2.0", - "peer": true + "license": "Apache-2.0" }, "node_modules/signal-utils": { "version": "0.21.1", @@ -1328,7 +1325,6 @@ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", "license": "MIT", - "peer": true, "funding": { "url": "https://github.com/sponsors/colinhacks" } diff --git a/client/web/package.json b/client/web/package.json index 5cc2a5a..40717dc 100644 --- a/client/web/package.json +++ b/client/web/package.json @@ -1,6 +1,6 @@ { "name": "@googlemaps/a2ui", - "version": "0.1.2", + "version": "0.1.3", "description": "Maps Agentic UI Toolkit Library", "main": "./dist/src/lit/index.js", "types": "./dist/src/lit/index.d.ts",