@talkjs/react-components 0.0.30 → 0.0.31
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 +3 -3
- package/default.cjs +1310 -0
- package/default.css +1 -1
- package/default.d.ts +428 -62
- package/default.js +14753 -2631
- package/package.json +18 -30
- package/globalConstants.js +0 -52
- package/theming.d.ts +0 -1351
- package/theming.js +0 -1379
package/README.md
CHANGED
|
@@ -8,12 +8,12 @@ To use this package, you will need a [TalkJS account](https://talkjs.com/dashboa
|
|
|
8
8
|
|
|
9
9
|
## Examples
|
|
10
10
|
|
|
11
|
-
Install [`@talkjs/react-components`](https://www.npmjs.com/package/@talkjs/react-components):
|
|
11
|
+
Install [`@talkjs/react-components`](https://www.npmjs.com/package/@talkjs/react-components) and [`@talkjs/core`](https://www.npmjs.com/package/@talkjs/core):
|
|
12
12
|
|
|
13
13
|
```sh
|
|
14
|
-
npm install @talkjs/react-components
|
|
14
|
+
npm install @talkjs/react-components @talkjs/core
|
|
15
15
|
# or
|
|
16
|
-
yarn add @talkjs/react-components
|
|
16
|
+
yarn add @talkjs/react-components @talkjs/core
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Import the `Chatbox` component and the related styling into the component where you want to have your chat UI:
|