@object-ui/plugin-chatbot 3.3.0 → 3.3.2
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/CHANGELOG.md +19 -0
- package/README.md +20 -0
- package/dist/index.js +4120 -3703
- package/dist/index.umd.cjs +63 -33
- package/package.json +35 -11
- package/.turbo/turbo-build.log +0 -53
- package/src/ChatbotEnhanced.tsx +0 -426
- package/src/FloatingChatbot.tsx +0 -89
- package/src/FloatingChatbotPanel.tsx +0 -102
- package/src/FloatingChatbotProvider.tsx +0 -80
- package/src/FloatingChatbotTrigger.tsx +0 -55
- package/src/__tests__/ChatbotEnhanced.test.tsx +0 -199
- package/src/__tests__/ChatbotEnhancedStreaming.test.tsx +0 -159
- package/src/__tests__/FloatingChatbotProvider.test.tsx +0 -134
- package/src/__tests__/FloatingChatbotWidgets.test.tsx +0 -165
- package/src/__tests__/useObjectChat.test.tsx +0 -347
- package/src/index.tsx +0 -267
- package/src/renderer.tsx +0 -483
- package/src/useObjectChat.ts +0 -344
- package/src/utils.ts +0 -18
- package/tsconfig.json +0 -18
- package/vite.config.ts +0 -55
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @object-ui/plugin-chatbot
|
|
2
2
|
|
|
3
|
+
## 3.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @object-ui/types@3.3.2
|
|
8
|
+
- @object-ui/core@3.3.2
|
|
9
|
+
- @object-ui/react@3.3.2
|
|
10
|
+
- @object-ui/components@3.3.2
|
|
11
|
+
|
|
12
|
+
## 3.3.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [b429568]
|
|
17
|
+
- @object-ui/components@3.3.1
|
|
18
|
+
- @object-ui/types@3.3.1
|
|
19
|
+
- @object-ui/core@3.3.1
|
|
20
|
+
- @object-ui/react@3.3.1
|
|
21
|
+
|
|
3
22
|
## 3.3.0
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -140,6 +140,26 @@ const aiSchema = {
|
|
|
140
140
|
| Stop/Reload | Stop cancels timer | Stop interrupts stream |
|
|
141
141
|
| Backend | None required | service-ai (IAIService) |
|
|
142
142
|
|
|
143
|
+
<!-- release-metadata:v3.3.0 -->
|
|
144
|
+
|
|
145
|
+
## Compatibility
|
|
146
|
+
|
|
147
|
+
- **React:** 18.x or 19.x
|
|
148
|
+
- **Node.js:** ≥ 18
|
|
149
|
+
- **TypeScript:** ≥ 5.0 (strict mode)
|
|
150
|
+
- **`@objectstack/spec`:** ^3.3.0
|
|
151
|
+
- **`@objectstack/client`:** ^3.3.0
|
|
152
|
+
- **Tailwind CSS:** ≥ 3.4 (for packages with UI)
|
|
153
|
+
|
|
154
|
+
## Links
|
|
155
|
+
|
|
156
|
+
- 📚 [Documentation](https://www.objectui.org/docs/plugins/plugin-chatbot)
|
|
157
|
+
- 📦 [npm package](https://www.npmjs.com/package/@object-ui/plugin-chatbot)
|
|
158
|
+
- 📝 [Changelog](./CHANGELOG.md)
|
|
159
|
+
- 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
|
|
160
|
+
- 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
|
|
161
|
+
- 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
|
|
162
|
+
|
|
143
163
|
## License
|
|
144
164
|
|
|
145
165
|
MIT © ObjectStack Inc.
|