@xapp/chat-widget 1.78.0 → 1.79.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/dist/App.d.ts +0 -0
- package/dist/components/ChatButton/ChatButton.d.ts +0 -0
- package/dist/components/ChatButton/ChatButton.stories.d.ts +7 -0
- package/dist/components/ChatFooter/ChatFooter.d.ts +0 -0
- package/dist/components/ChatFooter/ChatFooter.stories.d.ts +3 -0
- package/dist/components/ChatWidget/ChatWidget.d.ts +0 -0
- package/dist/components/ChatWidget/ChatWidget.stories.d.ts +6 -0
- package/dist/components/ChatWidget/ChatWidget.test.d.ts +1 -0
- package/dist/components/ChatWidget/ChatWidgetContainer.d.ts +0 -0
- package/dist/components/ChatWidget/ChatWidgetEnv.stories.d.ts +1 -0
- package/dist/components/CtaBubble/CtaBubble.d.ts +0 -0
- package/dist/components/CtaBubble/CtaBubble.stories.d.ts +2 -0
- package/dist/components/CtaBubble/CtaBubbleContainer.d.ts +0 -0
- package/dist/components/ErrorOverlay/ErrorOverlay.d.ts +0 -0
- package/dist/components/ErrorOverlay/ErrorOverlay.stories.d.ts +8 -0
- package/dist/components/ErrorOverlay/index.d.ts +0 -0
- package/dist/components/Input/Input.d.ts +0 -0
- package/dist/components/Input/Input.stories.d.ts +7 -3
- package/dist/components/SendButton/SendButton.d.ts +0 -0
- package/dist/components/SendButton/SendButton.stories.d.ts +8 -4
- package/dist/index.css +1 -1
- package/dist/index.es.js +619 -101
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +619 -101
- package/dist/index.js.map +1 -1
- package/dist/store/ChatAction.d.ts +0 -0
- package/dist/store/ChatState.d.ts +0 -0
- package/dist/store/DefaultState.d.ts +0 -0
- package/dist/store/actions/index.d.ts +0 -0
- package/dist/store/actions/toggleDebugMode.d.ts +0 -0
- package/dist/xapp/StentorRouterChat.d.ts +0 -0
- package/dist/xapp/XappChat.d.ts +0 -0
- package/dist/xapp/__tests__/StentorRouterChat.test.d.ts +2 -0
- package/dist/xapp-chat-widget.css +1 -1
- package/dist/xapp-chat-widget.js +4 -4
- package/dist/xapp-chat-widget.js.map +1 -1
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xapp/chat-widget",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.79.0",
|
|
4
4
|
"description": "XAPP Chat Widget",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf ./dist/*",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://github.com/XappMedia/chat-widget#readme",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "7.28.
|
|
41
|
+
"@babel/core": "7.28.4",
|
|
42
42
|
"@cfaester/enzyme-adapter-react-18": "0.8.0",
|
|
43
|
-
"@reduxjs/toolkit": "2.
|
|
43
|
+
"@reduxjs/toolkit": "2.9.1",
|
|
44
44
|
"@rollup/plugin-commonjs": "26.0.3",
|
|
45
45
|
"@rollup/plugin-json": "6.1.0",
|
|
46
46
|
"@rollup/plugin-node-resolve": "15.3.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@testing-library/jest-dom": "6.6.4",
|
|
53
53
|
"@types/enzyme": "3.10.19",
|
|
54
54
|
"@types/jest": "27.5.2",
|
|
55
|
-
"@types/react": "18.3.
|
|
55
|
+
"@types/react": "18.3.26",
|
|
56
56
|
"@types/react-redux": "7.1.34",
|
|
57
57
|
"@types/react-transition-group": "4.4.12",
|
|
58
58
|
"@types/socket.io-client": "1.4.36",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"react": "18.3.1",
|
|
79
79
|
"react-dom": "18.3.1",
|
|
80
80
|
"react-redux": "7.2.9",
|
|
81
|
-
"rollup": "4.
|
|
81
|
+
"rollup": "4.52.4",
|
|
82
82
|
"rollup-plugin-inject-process-env": "1.3.1",
|
|
83
83
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
84
84
|
"rollup-plugin-scss": "4.0.1",
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
"rollup-plugin-typescript2": "0.36.0",
|
|
87
87
|
"sass": "1.89.2",
|
|
88
88
|
"sass-loader": "10.5.2",
|
|
89
|
-
"stentor-models": "1.
|
|
89
|
+
"stentor-models": "1.66.0",
|
|
90
90
|
"storybook": "7.6.20",
|
|
91
|
-
"ts-jest": "29.4.
|
|
91
|
+
"ts-jest": "29.4.5",
|
|
92
92
|
"typescript": "5.8.3"
|
|
93
93
|
},
|
|
94
94
|
"files": [
|
|
@@ -103,13 +103,13 @@
|
|
|
103
103
|
"dependencies": {
|
|
104
104
|
"@cfaester/enzyme-adapter-react-18": "0.8.0",
|
|
105
105
|
"@rollup/plugin-replace": "5.0.7",
|
|
106
|
-
"@xapp/chat-widget-core": "1.
|
|
107
|
-
"@xapp/stentor-chat-widget": "1.
|
|
106
|
+
"@xapp/chat-widget-core": "1.79.0",
|
|
107
|
+
"@xapp/stentor-chat-widget": "1.79.0",
|
|
108
108
|
"date-fns": "2.30.0",
|
|
109
109
|
"react-transition-group": "4.4.5",
|
|
110
110
|
"socket.io-client": "4.8.1",
|
|
111
111
|
"store": "2.0.12",
|
|
112
112
|
"tslib": "2.8.1"
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "daa7d64fcc7df54b9dfc3a9f763e790b144428d1"
|
|
115
115
|
}
|