hanc-webrtc-widgets 1.1.3 → 1.2.1
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 +4 -4
- package/dist/hanc-webrtc-widgets.es.js +1095 -1085
- package/dist/hanc-webrtc-widgets.umd.js +51 -51
- package/dist/src/components/floating-call/floating-call.d.ts +1 -0
- package/dist/src/components/inline-call/inline-call.d.ts +1 -0
- package/dist/src/core/twilio-call-manager.d.ts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,10 +33,10 @@ You can use it in **plain HTML**, or integrate it with **React**, **Next.js**, o
|
|
|
33
33
|
|
|
34
34
|
### React Example
|
|
35
35
|
|
|
36
|
-
1. Installation lit/react
|
|
36
|
+
1. Installation lit/react & hanc-webrtc-widgets
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npm i @lit/react hanc-webrtc-
|
|
39
|
+
npm i @lit/react hanc-webrtc-widgets
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
2. Creating a React wrapper and using
|
|
@@ -71,10 +71,10 @@ export default function Example() {
|
|
|
71
71
|
|
|
72
72
|
### Next.js Example
|
|
73
73
|
|
|
74
|
-
1. Installation lit/react
|
|
74
|
+
1. Installation lit/react & hanc-webrtc-widgets
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
npm i @lit/react hanc-webrtc-
|
|
77
|
+
npm i @lit/react hanc-webrtc-widgets
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
2. Creating a Next.js wrapper and using
|