@agno-hq/chat-react 0.3.3 → 0.3.4
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/README.md +46 -0
- package/dist/chat/index.cjs +90 -86
- package/dist/chat/index.d.cts +55 -43
- package/dist/chat/index.d.ts +55 -43
- package/dist/chat/index.js +2 -2
- package/dist/{chunk-RE7ZT73K.js → chunk-5QKU7OPE.js} +2 -2
- package/dist/{chunk-RE7ZT73K.js.map → chunk-5QKU7OPE.js.map} +1 -1
- package/dist/{chunk-6V2YIPHF.js → chunk-BCVKAMSO.js} +22 -4
- package/dist/chunk-BCVKAMSO.js.map +1 -0
- package/dist/{chunk-3IEYJIYJ.cjs → chunk-ESV52ERB.cjs} +620 -318
- package/dist/chunk-ESV52ERB.cjs.map +1 -0
- package/dist/{chunk-2WM3CCFE.cjs → chunk-HBSF434L.cjs} +2 -2
- package/dist/{chunk-2WM3CCFE.cjs.map → chunk-HBSF434L.cjs.map} +1 -1
- package/dist/{chunk-E4CFQ457.js → chunk-OGDPK4Z3.js} +586 -285
- package/dist/chunk-OGDPK4Z3.js.map +1 -0
- package/dist/{chunk-55HQJGLP.cjs → chunk-Y34YRC5T.cjs} +22 -3
- package/dist/chunk-Y34YRC5T.cjs.map +1 -0
- package/dist/{client-DUyVqxU9.d.cts → client-Dwk6ThnW.d.cts} +24 -12
- package/dist/{client-DUyVqxU9.d.ts → client-Dwk6ThnW.d.ts} +24 -12
- package/dist/core/index.cjs +23 -23
- package/dist/core/index.d.cts +2 -2
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/index.cjs +113 -109
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/dist/styles.css +22 -15
- package/package.json +11 -9
- package/dist/chunk-3IEYJIYJ.cjs.map +0 -1
- package/dist/chunk-55HQJGLP.cjs.map +0 -1
- package/dist/chunk-6V2YIPHF.js.map +0 -1
- package/dist/chunk-E4CFQ457.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agno-hq/chat-react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Composable, embeddable React components for AgentOS — a headless chat hook, a provider for building your own layout, and drop-in chat embeds.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Agno",
|
|
@@ -57,6 +57,14 @@
|
|
|
57
57
|
"files": [
|
|
58
58
|
"dist"
|
|
59
59
|
],
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "tsup",
|
|
62
|
+
"test": "node --import tsx --test test/*.test.ts",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"prepublishOnly": "npm test && npm run typecheck && npm run build",
|
|
65
|
+
"storybook": "storybook dev -p 6006",
|
|
66
|
+
"storybook:build": "storybook build -o storybook-static"
|
|
67
|
+
},
|
|
60
68
|
"peerDependencies": {
|
|
61
69
|
"react": ">=18",
|
|
62
70
|
"react-dom": ">=18"
|
|
@@ -99,11 +107,5 @@
|
|
|
99
107
|
"components",
|
|
100
108
|
"embeddable"
|
|
101
109
|
],
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
"test": "node --import tsx --test test/*.test.ts",
|
|
105
|
-
"typecheck": "tsc --noEmit",
|
|
106
|
-
"storybook": "storybook dev -p 6006",
|
|
107
|
-
"storybook:build": "storybook build -o storybook-static"
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
+
"packageManager": "pnpm@11.21.0+sha512.521705bce689924eac72f5a3587122f362689ef6571e55ba80076fd637c11132ecffada26fad4ea79c485bfddbfd3d5a2a5b05805a77e893de71ec8a6cca3bb1"
|
|
111
|
+
}
|