Skip to content

Commit cc60950

Browse files
committed
v0.3.5
1 parent 5602d99 commit cc60950

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/react-simple-chatbot.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-simple-chatbot",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"description": "React Simple Chatbot",
55
"main": "dist/react-simple-chatbot.js",
66
"scripts": {
@@ -84,7 +84,7 @@
8484
"react-dom": "^16.4.1"
8585
},
8686
"peerDependencies": {
87-
"styled-components": "^2.x",
87+
"styled-components": ">= 2.0.0",
8888
"react": "^16.x",
8989
"react-dom": "^16.x"
9090
}

tests/lib/ChatBot.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import FloatButton from '../../lib/FloatButton';
88
import Header from '../../lib/Header';
99
import HeaderIcon from '../../lib/HeaderIcon';
1010
import { CloseIcon } from '../../lib/icons';
11-
import { TextStep, OptionsStep, CustomStep } from '../../lib/steps';
11+
import { TextStep } from '../../lib/steps';
1212

1313
const CustomComponent = () => (
1414
<div />
@@ -278,7 +278,7 @@ describe('ChatBot', () => {
278278
{
279279
id: '1',
280280
message: 'Hide Input',
281-
hideInput:true,
281+
hideInput: true,
282282
end: true,
283283
},
284284
]}

0 commit comments

Comments
 (0)