@kindly/react-chat 2.41.5 → 2.41.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kindly/react-chat",
|
|
3
|
-
"version": "2.41.
|
|
3
|
+
"version": "2.41.6",
|
|
4
4
|
"description": "Kindly Chat react component",
|
|
5
5
|
"repository": "https://github.com/kindly-ai/kindly-chat/tree/main/packages/react-chat",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"react-dom": ">=16.9.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@babel/core": "^7.21.
|
|
67
|
+
"@babel/core": "^7.21.3",
|
|
68
68
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
69
69
|
"@babel/plugin-transform-runtime": "^7.21.0",
|
|
70
70
|
"@babel/preset-env": "^7.20.2",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@types/react": "^16.14.35",
|
|
86
86
|
"@types/react-dom": "^16.9.18",
|
|
87
87
|
"axe-playwright": "^1.2.3",
|
|
88
|
-
"babel-jest": "^29.
|
|
88
|
+
"babel-jest": "^29.5.0",
|
|
89
89
|
"babel-loader": "^9.1.2",
|
|
90
90
|
"babel-plugin-styled-components": "^1.13.3",
|
|
91
91
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
@@ -98,11 +98,12 @@
|
|
|
98
98
|
"file-loader": "^6.2.0",
|
|
99
99
|
"html-webpack-plugin": "^5.5.0",
|
|
100
100
|
"husky": "3.1.0",
|
|
101
|
-
"jest": "^29.
|
|
102
|
-
"jest-each": "^29.
|
|
103
|
-
"jest-environment-jsdom": "^29.
|
|
101
|
+
"jest": "^29.5.0",
|
|
102
|
+
"jest-each": "^29.5.0",
|
|
103
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
104
104
|
"jest-junit": "^15.0.0",
|
|
105
105
|
"lodash.clonedeep": "^4.5.0",
|
|
106
|
+
"lodash.set": "^4.3.2",
|
|
106
107
|
"process": "^0.11.10",
|
|
107
108
|
"pusher-js": "^8.0.1",
|
|
108
109
|
"pusher-redux": "^0.5.0",
|
|
@@ -114,10 +115,10 @@
|
|
|
114
115
|
"storybook-addon-mock": "^3.2.0",
|
|
115
116
|
"url-loader": "^4.1.1",
|
|
116
117
|
"wait-on": "^6.0.1",
|
|
117
|
-
"webpack": "^5.
|
|
118
|
+
"webpack": "^5.76.1",
|
|
118
119
|
"webpack-bundle-analyzer": "^4.8.0",
|
|
119
120
|
"webpack-cli": "^5.0.1",
|
|
120
|
-
"webpack-dev-server": "^4.
|
|
121
|
+
"webpack-dev-server": "^4.12.0",
|
|
121
122
|
"webpack-merge": "^5.8.0"
|
|
122
123
|
},
|
|
123
124
|
"engines": {
|
|
@@ -128,5 +129,5 @@
|
|
|
128
129
|
"pusher-js": "8.0.1"
|
|
129
130
|
}
|
|
130
131
|
},
|
|
131
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "11707d313e234c7b0869451b803288221d198030"
|
|
132
133
|
}
|
|
@@ -327,7 +327,7 @@ NewUnreadMessages.play = async ({ canvasElement }) => {
|
|
|
327
327
|
{ timeout: 5000 },
|
|
328
328
|
);
|
|
329
329
|
mockMessage(window.store, 'This is a new message');
|
|
330
|
-
await wait(
|
|
330
|
+
await wait(200);
|
|
331
331
|
await expect(chatNewMessage).toHaveTextContent('This is a new message');
|
|
332
332
|
}
|
|
333
333
|
};
|