@connectycube/chat-widget 0.27.0 → 0.29.0
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/CHANGELOG.md +18 -0
- package/README.md +7 -0
- package/dist/index.es.js +12365 -11858
- package/dist/index.umd.js +76 -76
- package/dist/react19/index.es.js +12179 -11672
- package/dist/react19/types/components/calls/calls-confirm-incoming.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-fullscreen-stream.d.ts +6 -0
- package/dist/react19/types/components/calls/calls-header-buttons.d.ts +3 -0
- package/dist/react19/types/components/calls/calls-modal-screen.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-buttons.d.ts +5 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-hung-up.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-screen-share.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-toggle-camera.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-toggle-mic.d.ts +2 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-avatar.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-back-button.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-buttons.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-titles.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header.d.ts +3 -0
- package/dist/react19/types/components/widget/widget-calls.d.ts +2 -0
- package/dist/react19/types/helpers/connectycube.d.ts +2 -0
- package/dist/react19/types/hooks/index.d.ts +1 -0
- package/dist/react19/types/hooks/store/useAppSettingsStore.d.ts +3 -0
- package/dist/react19/types/hooks/useAppPresets.d.ts +2 -1
- package/dist/react19/types/hooks/useAudio.d.ts +6 -0
- package/dist/react19/types/locales/el/translation.json.d.ts +7 -1
- package/dist/react19/types/locales/en/translation.json.d.ts +7 -1
- package/dist/react19/types/locales/ua/translation.json.d.ts +7 -1
- package/dist/types/components/calls/calls-confirm-incoming.d.ts +2 -0
- package/dist/types/components/calls/calls-fullscreen-stream.d.ts +6 -0
- package/dist/types/components/calls/calls-header-buttons.d.ts +3 -0
- package/dist/types/components/calls/calls-modal-screen.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-buttons.d.ts +5 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-hung-up.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-screen-share.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-toggle-camera.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-toggle-mic.d.ts +2 -0
- package/dist/types/components/home/main/chat-header/chat-header-avatar.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header-back-button.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header-buttons.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header-titles.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header.d.ts +3 -0
- package/dist/types/components/widget/widget-calls.d.ts +2 -0
- package/dist/types/helpers/connectycube.d.ts +2 -0
- package/dist/types/hooks/index.d.ts +1 -0
- package/dist/types/hooks/store/useAppSettingsStore.d.ts +3 -0
- package/dist/types/hooks/useAppPresets.d.ts +2 -1
- package/dist/types/hooks/useAudio.d.ts +6 -0
- package/dist/types/locales/el/translation.json.d.ts +7 -1
- package/dist/types/locales/en/translation.json.d.ts +7 -1
- package/dist/types/locales/ua/translation.json.d.ts +7 -1
- package/package.json +19 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 0.29.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- p2p video and audio calls
|
|
8
|
+
- new prop `enableCalls` to enable the calls feature
|
|
9
|
+
- mute/unmute video and audio tracks
|
|
10
|
+
- fullscreen view option for remote stream
|
|
11
|
+
- screen-sharing
|
|
12
|
+
|
|
13
|
+
### Misc
|
|
14
|
+
|
|
15
|
+
- Can restore expired API session
|
|
16
|
+
|
|
17
|
+
### Bug fixed
|
|
18
|
+
|
|
19
|
+
- Display typing status in chat header
|
|
20
|
+
|
|
3
21
|
## 0.27.0
|
|
4
22
|
|
|
5
23
|
### Misc
|
package/README.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
WebRTCPeerConnection.ts:134 [VideoChat]: onSignalingStateHandler: have-remote-offer
|
|
2
|
+
helpers.ts:7 [useCalls][onRemoteStream][Log]: {session: e, userID: 13308918, stream: MediaStream}
|
|
3
|
+
WebRTCPeerConnection.ts:134 [VideoChat]: setRemoteSessionDescription - success
|
|
4
|
+
WebRTCPeerConnection.ts:134 [VideoChat]: onSignalingStateHandler: stable
|
|
5
|
+
WebRTCPeerConnection.ts:134 [VideoChat]: Set maxBandwidth success [13308918]: 0 kbps
|
|
6
|
+
WebRTCPeerConnection.ts:134 [VideoChat]: getAndSetLocalSessionDescription - success
|
|
7
|
+
|
|
1
8
|
# ConnectyCube Chat Widget
|
|
2
9
|
|
|
3
10
|
A React component that seamlessly integrates ConnectyCube's real-time chat capabilities into your web applications. This widget offers an out-of-the-box solution for embedding chat features—such as instant messaging, user presence, and file sharing—without the overhead of building a complete chat system from scratch.
|