[feat] update some feature

sync code of  fastrtc,
add text support through datachannel,
fix safari connect problem
support chat without camera or mic
This commit is contained in:
huangbinchao.hbc
2025-03-25 18:05:10 +08:00
parent e1fb40a8a8
commit aefb08150f
222 changed files with 28698 additions and 5889 deletions

View File

@@ -0,0 +1,26 @@
<script lang="ts">
export let message;
export let style = '';
</script>
<div
class="answer-message-container"
{style}
>
<div class="answer-message-text">
{message}
</div>
</div>
<style lang="less">
.answer-message-container {
position: absolute;
right: 12px;
z-index: 101;
padding: 6px 12px;
border-radius: 12px;
width: 200px;
background: rgba(255, 255, 255, 0.8);
bottom: 166px;
}
</style>