@gram-ai/elements 1.15.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@gram-ai/elements",
3
3
  "description": "Gram Elements is a library of UI primitives for building chat-like experiences for MCP Servers.",
4
4
  "type": "module",
5
- "version": "1.15.0",
5
+ "version": "1.16.1",
6
6
  "main": "dist/index.js",
7
7
  "exports": {
8
8
  ".": {
@@ -27,25 +27,14 @@
27
27
  ],
28
28
  "repository": {
29
29
  "type": "git",
30
- "url": "https://github.com/speakeasy-api/gram-elements.git"
30
+ "url": "https://github.com/speakeasy-api/gram.git"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "scripts": {
36
- "build": "vite build",
37
- "lint": "eslint src",
38
- "analyze": "pnpm dlx vite-bundle-visualizer",
39
- "storybook": "storybook dev -p 6006",
40
- "build-storybook": "storybook build",
41
- "type-check": "tsc --noEmit",
42
- "docs": "typedoc",
43
- "docs:watch": "typedoc --watch"
44
- },
45
35
  "keywords": [],
46
36
  "author": "Adam Bull <adam@speakeasy.com>",
47
37
  "license": "ISC",
48
- "packageManager": "pnpm@10.18.2",
49
38
  "peerDependencies": {
50
39
  "@assistant-ui/react": "^0.11.0",
51
40
  "@assistant-ui/react-markdown": "^0.11.0",
@@ -123,7 +112,6 @@
123
112
  "@storybook/addon-docs": "^10.0.8",
124
113
  "@storybook/react-vite": "^10.0.8",
125
114
  "@tailwindcss/vite": "^4.1.13",
126
- "@types/d3": "^7.4.3",
127
115
  "@types/lodash.merge": "^4.6.9",
128
116
  "@types/node": "^24.10.1",
129
117
  "@vitejs/plugin-react": "^5.0.3",
@@ -141,7 +129,6 @@
141
129
  "prettier": "^3.7.4",
142
130
  "prettier-plugin-tailwindcss": "^0.7.2",
143
131
  "remark-gfm": "^4.0.1",
144
- "semantic-release": "^24.2.0",
145
132
  "storybook": "^10.0.8",
146
133
  "tailwindcss": "^4.1.13",
147
134
  "tw-animate-css": "^1.3.8",
@@ -151,5 +138,15 @@
151
138
  "vite": "^7.1.6",
152
139
  "vite-plugin-dts": "^4.5.4",
153
140
  "zustand": "^5.0.8"
141
+ },
142
+ "scripts": {
143
+ "build": "vite build",
144
+ "lint": "eslint src",
145
+ "analyze": "pnpm dlx vite-bundle-visualizer",
146
+ "storybook": "storybook dev -p 6006",
147
+ "build-storybook": "storybook build",
148
+ "type-check": "tsc --noEmit",
149
+ "docs": "typedoc",
150
+ "docs:watch": "typedoc --watch"
154
151
  }
155
- }
152
+ }
@@ -1,5 +0,0 @@
1
- export interface D3RendererProps {
2
- code: string;
3
- className?: string;
4
- }
5
- export declare const D3Renderer: import('react').MemoExoticComponent<({ code, className }: D3RendererProps) => import("react/jsx-runtime").JSX.Element>;