vuchat 2.0.11 → 2.1.0
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 +17 -3
- package/dist/index.js +132 -132
- package/dist/types/components/Buttons/VuIconButton.d.ts +1 -0
- package/dist/types/components/Header/index.d.ts +2 -0
- package/dist/types/components/TextArea/VuTextArea.d.ts +1 -0
- package/dist/types/pages/chatbot/Chatbot.d.ts +1 -0
- package/dist/types/pages/chatbot/components/ChatSection/ChatSection.d.ts +4 -1
- package/dist/types/pages/chatbot/components/ChatSection/components/ResponseLoader/styled.d.ts +0 -2
- package/dist/types/pages/chatbot/components/RecentConversations/styled.d.ts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +4 -4
- package/dist/types/pages/chatbot/components/ChatSection/components/ActionButtons/ActionButtons.d.ts +0 -6
- package/dist/types/pages/chatbot/components/ChatSection/components/ActionButtons/styled.d.ts +0 -2
package/Readme.md
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
# VuChat (Moscow)
|
|
2
2
|
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
VuChat is a React-based UI component library that provides an embeddable AI chat widget. It is designed to be consumed by other React applications and handles the full conversational interface — including chat sessions, AI responses, data visualizations, and user feedback.
|
|
6
|
+
|
|
7
|
+
**Key features:**
|
|
8
|
+
|
|
9
|
+
- **Conversation management** — create, browse, and delete chat sessions with paginated history
|
|
10
|
+
- **AI response rendering** — displays rich responses with copy, like/dislike feedback, and PDF export
|
|
11
|
+
- **Charts** — renders bar, line, pie, and single-stat charts powered by Nivo, with light/dark theme support
|
|
12
|
+
- **Dark mode** — full dark mode support toggled via a prop
|
|
13
|
+
- **Authentication** — JWT token-based auth passed through to the backend API
|
|
14
|
+
|
|
15
|
+
**Tech stack:** React 18, TypeScript, Tailwind CSS, React Query, Nivo Charts, React Router DOM v5, Rollup
|
|
16
|
+
|
|
3
17
|
## Get Started
|
|
4
18
|
|
|
5
19
|
Dependencies:
|
|
6
20
|
|
|
7
|
-
1. Node: >=
|
|
8
|
-
2. NPM: >=
|
|
9
|
-
3. Yarn: 3.6.
|
|
21
|
+
1. Node: >=20.9.0
|
|
22
|
+
2. NPM: >=10.2.3
|
|
23
|
+
3. Yarn: 3.6.4
|
|
10
24
|
4. Yalc
|
|
11
25
|
|
|
12
26
|
## Development
|