mediasfu-vue 1.0.2 → 1.0.4
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 +22 -1
- package/dist/index.cjs +1223 -358
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1221 -356
- package/dist/index.js.map +1 -1
- package/dist/mediasfu-vue.css +243 -203
- package/package.json +128 -137
- package/src/App.vue +2 -6
- package/src/AppBroadcast.vue +2 -6
- package/src/AppChat.vue +2 -6
- package/src/AppConference.vue +2 -6
- package/src/AppGeneric.vue +2 -6
- package/src/AppUnique.vue +5 -3
- package/src/AppWebinar.vue +2 -6
- package/src/components/backgroundComponents/BackgroundModal.vue +351 -122
- package/src/components/displayComponents/VideoCard.vue +6 -2
- package/src/components/mediasfuComponents/MediasfuGeneric.vue +44 -9
- package/src/components/messageComponents/MessagePanel.vue +5 -5
- package/src/components/messageComponents/MessagesModal.vue +1 -1
- package/src/components/translationComponents/TranslationSettingsModal.vue +3 -3
- package/src/composables/useMediasfuDemo.ts +6 -6
- package/src/consumers/streamSuccessVideo.ts +288 -0
- package/src/modern/modal_components/ModernBackgroundModal.vue +642 -174
- package/src/modern/modal_components/ModernMediaSettingsModal.vue +8 -1
- package/src/modern/modal_components/ModernMessagesModal.vue +1 -1
- package/src/services/sendMessage.ts +83 -0
- package/src/types/background/index.ts +1 -0
- package/src/utils/demoCloudConfig.ts +23 -0
- package/src/utils/translationLanguages.ts +10 -0
package/README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# MediaSFU Vue SDK · [mediasfu-vue on npm](https://www.npmjs.com/package/mediasfu-vue)
|
|
2
|
+
|
|
3
|
+
**mediasfu-vue** is the Vue 3 / Composition API WebRTC SDK for video conferencing, webinars, live streaming, broadcast, screen sharing, whiteboard, chat, recording, live subtitles, translation, and AI agent rooms — powered by MediaSFU Cloud or your self-hosted MediaSFU Open server. Install with `npm install mediasfu-vue`.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
1
7
|
<p align="center">
|
|
2
8
|
<img src="https://www.mediasfu.com/logo192.png" width="100" alt="MediaSFU Logo">
|
|
3
9
|
</p>
|
|
@@ -5221,7 +5227,22 @@ If you encounter any issues or have suggestions for improvement, please feel fre
|
|
|
5221
5227
|
We appreciate your interest in contributing to the project!
|
|
5222
5228
|
|
|
5223
5229
|
If you need further assistance or have any questions, feel free to ask!
|
|
5224
|
-
|
|
5230
|
+
|
|
5231
|
+
---
|
|
5232
|
+
|
|
5233
|
+
## Related SDKs
|
|
5234
|
+
|
|
5235
|
+
| Package | Framework | npm |
|
|
5236
|
+
|---------|-----------|-----|
|
|
5237
|
+
| [mediasfu-reactjs](https://github.com/MediaSFU/MediaSFU-ReactJS) | React 18/19 | [`npm install mediasfu-reactjs`](https://www.npmjs.com/package/mediasfu-reactjs) |
|
|
5238
|
+
| **[mediasfu-vue](https://github.com/MediaSFU/MediaSFU-Vue)** | **Vue 3** | **this package** |
|
|
5239
|
+
| [mediasfu-angular](https://github.com/MediaSFU/MediaSFU-Angular) | Angular 17+ | [`npm install mediasfu-angular`](https://www.npmjs.com/package/mediasfu-angular) |
|
|
5240
|
+
| [mediasfu-shared](https://github.com/MediaSFU/MediaSFU-Shared) | Framework-agnostic | [`npm install mediasfu-shared`](https://www.npmjs.com/package/mediasfu-shared) |
|
|
5241
|
+
|
|
5242
|
+
## License
|
|
5243
|
+
|
|
5244
|
+
MIT © [MediaSFU](https://www.mediasfu.com)
|
|
5245
|
+
|
|
5225
5246
|
|
|
5226
5247
|
|
|
5227
5248
|
|