react-pro-messenger 1.0.14 → 1.0.16
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 +7 -0
- package/dist/index.es.js +1490 -1412
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +8 -8
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/Spinner/Spinner.d.ts +8 -0
- package/dist/src/domain/MessageEntity.d.ts +3 -1
- package/dist/src/features/Chat/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,13 @@ npm install react-pro-messenger
|
|
|
45
45
|
yarn add react-pro-messenger
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
note : for now you need to install taiwlind in your project for this package to have proper style.
|
|
49
|
+
and then in tailwind configuration you should have this
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
content: ["./node_modules/react-pro-messenger/**/*.{html,js, jsx}"],
|
|
53
|
+
```
|
|
54
|
+
|
|
48
55
|
## Basic Usage 🚀
|
|
49
56
|
|
|
50
57
|
```tsx
|