@data-netmonk/mona-chat-widget 2.1.37 → 2.2.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 +238 -91
- package/dist/index.cjs +56 -56
- package/dist/index.js +9501 -9470
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@data-netmonk/mona-chat-widget",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.2.0",
|
|
5
5
|
"description": "Mona Chat Widget Component Library",
|
|
6
6
|
"author": "Haziq Abiyyu Mahdy",
|
|
7
7
|
"type": "module",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"react": "^18.3.0",
|
|
35
35
|
"react-dom": "^18.3.0",
|
|
36
36
|
"react-infinite-scroll-component": "^6.1.0",
|
|
37
|
+
"react-is": "^19.2.1",
|
|
37
38
|
"react-markdown": "^8.0.3",
|
|
38
39
|
"react-redux": "^9.2.0",
|
|
39
40
|
"react-resizable": "^3.0.5",
|
|
@@ -49,9 +50,9 @@
|
|
|
49
50
|
"build-app": "vite build --mode app",
|
|
50
51
|
"dev": "vite",
|
|
51
52
|
"serve": "vite preview",
|
|
52
|
-
"storybook": "storybook dev -p
|
|
53
|
+
"storybook": "storybook dev -p 5177",
|
|
53
54
|
"build-storybook": "storybook build",
|
|
54
|
-
"serve-storybook": "vite preview --outDir storybook-static --port
|
|
55
|
+
"serve-storybook": "vite preview --outDir storybook-static --port 5177",
|
|
55
56
|
"init-msw": "msw init public/",
|
|
56
57
|
"test": "vitest",
|
|
57
58
|
"coverage": "vitest run --coverage"
|