@chatwillow/widget 0.0.10 → 0.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 +2 -2
- package/dist/chatwillow-widget.es.js +25364 -2940
- package/dist/chatwillow-widget.umd.js +201 -6
- package/dist/chatwillow.bundle.js +213 -18
- package/dist/components/atom/MarkdownRenderer.d.ts +5 -0
- package/dist/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/components/ui/input-group.d.ts +1 -1
- package/dist/components/ui/item.d.ts +1 -1
- package/dist/components/ui/tabs.d.ts +1 -1
- package/dist/lib/encryptionService.d.ts +17 -0
- package/dist/lib/urlParsingService.d.ts +11 -0
- package/dist/modules/ChatWidget/ChatWidget.d.ts +2 -1
- package/dist/modules/ChatWidget/components/ChatInputArea.d.ts +9 -0
- package/dist/modules/ChatWidget/components/ChatMessageList.d.ts +9 -0
- package/dist/modules/ChatWidget/components/ChatWidgetUI.d.ts +1 -1
- package/dist/modules/ChatWidget/components/ChatWindowHeader.d.ts +7 -0
- package/dist/modules/ChatWidget/components/FilePreviewDialog.d.ts +6 -0
- package/dist/modules/ChatWidget/constants/configurableData.d.ts +2 -0
- package/dist/modules/ChatWidget/hooks/useChatSocket.hooks.d.ts +10 -0
- package/dist/modules/ChatWidget/hooks/useChatWidget.hooks.d.ts +8 -1
- package/dist/modules/ChatWidget/service/chatWidget.service.d.ts +20 -4
- package/dist/modules/ChatWidget/types/chatWidget.type.d.ts +5 -1
- package/dist/modules/ChatWidget/types/configurable.type.d.ts +23 -0
- package/dist/style.bundle.css +1 -1
- package/dist/style.css +1 -1
- package/package.json +10 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatwillow/widget",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/chatwillow-widget.umd.js",
|
|
7
7
|
"module": "./dist/chatwillow-widget.es.js",
|
|
@@ -36,20 +36,28 @@
|
|
|
36
36
|
"@tailwindcss/vite": "^4.1.18",
|
|
37
37
|
"@tanstack/react-query": "^5.90.21",
|
|
38
38
|
"@tanstack/react-query-devtools": "^5.91.3",
|
|
39
|
+
"@types/crypto-js": "^4.2.2",
|
|
39
40
|
"axios": "^1.13.5",
|
|
40
41
|
"class-variance-authority": "^0.7.1",
|
|
41
42
|
"clsx": "^2.1.1",
|
|
42
43
|
"cmdk": "^1.1.1",
|
|
44
|
+
"crypto-js": "^4.2.0",
|
|
43
45
|
"date-fns": "^4.1.0",
|
|
46
|
+
"dayjs": "^1.11.19",
|
|
44
47
|
"embla-carousel-react": "^8.6.0",
|
|
48
|
+
"framer-motion": "^12.34.0",
|
|
45
49
|
"input-otp": "^1.4.2",
|
|
50
|
+
"js-cookie": "^3.0.5",
|
|
46
51
|
"lucide-react": "^0.563.0",
|
|
47
52
|
"next-themes": "^0.4.6",
|
|
48
53
|
"radix-ui": "^1.4.3",
|
|
49
54
|
"react-day-picker": "^9.13.2",
|
|
50
55
|
"react-hook-form": "^7.71.1",
|
|
56
|
+
"react-markdown": "^10.1.0",
|
|
51
57
|
"react-resizable-panels": "^4",
|
|
52
58
|
"recharts": "2.15.4",
|
|
59
|
+
"remark-gfm": "^4.0.1",
|
|
60
|
+
"socket.io-client": "^4.8.3",
|
|
53
61
|
"sonner": "^2.0.7",
|
|
54
62
|
"tailwind-merge": "^3.4.0",
|
|
55
63
|
"tailwindcss": "^4.1.18",
|
|
@@ -59,6 +67,7 @@
|
|
|
59
67
|
},
|
|
60
68
|
"devDependencies": {
|
|
61
69
|
"@eslint/js": "^9.19.0",
|
|
70
|
+
"@types/js-cookie": "^3.0.6",
|
|
62
71
|
"@types/node": "^22.13.1",
|
|
63
72
|
"@types/react": "^19.0.8",
|
|
64
73
|
"@types/react-dom": "^19.0.3",
|