@live-change/peer-connection-frontend 0.8.43 → 0.8.45
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.
|
@@ -142,12 +142,16 @@
|
|
|
142
142
|
|
|
143
143
|
<script setup>
|
|
144
144
|
|
|
145
|
+
import Button from 'primevue/button'
|
|
146
|
+
import Dropdown from 'primevue/dropdown'
|
|
147
|
+
import PermissionsDialog from './PermissionsDialog.vue'
|
|
148
|
+
import VolumeIndicator from './VolumeIndicator.vue'
|
|
149
|
+
|
|
145
150
|
import { defineProps, defineModel, computed, ref, toRefs, onMounted, watch } from 'vue'
|
|
146
151
|
import { useInterval, useEventListener } from "@vueuse/core"
|
|
147
152
|
import { getUserMedia as getUserMediaNative, getDisplayMedia as getDisplayMediaNative, isUserMediaPermitted }
|
|
148
153
|
from "./userMedia.js"
|
|
149
|
-
|
|
150
|
-
import VolumeIndicator from './VolumeIndicator.vue'
|
|
154
|
+
|
|
151
155
|
|
|
152
156
|
const props = defineProps({
|
|
153
157
|
audioInputRequest: {
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
<template #default>
|
|
10
10
|
<slot name="introduction" />
|
|
11
11
|
<div class="mt-2">
|
|
12
|
-
<div v-for="permission in Object.entries(model.permissions
|
|
12
|
+
<div v-for="permission in Object.entries(model.permissions ?? {})"
|
|
13
|
+
class="flex flex-row align-items-center mb-2">
|
|
13
14
|
<i :class="permissionIcons[permission[0]]" />
|
|
14
15
|
<div class="ml-2">{{ permission[0] }}: </div>
|
|
15
16
|
<div v-if="permission[1] === 'granted'" class="ml-1 font-semibold text-green-400">
|
|
@@ -53,14 +54,17 @@
|
|
|
53
54
|
</template>
|
|
54
55
|
|
|
55
56
|
<script setup>
|
|
57
|
+
|
|
58
|
+
import Dialog from 'primevue/dialog'
|
|
59
|
+
|
|
60
|
+
import { defineProps, defineModel, defineEmits, toRefs, ref, computed, watch } from 'vue'
|
|
61
|
+
import { useInterval } from '@vueuse/core'
|
|
62
|
+
|
|
56
63
|
const permissionIcons = {
|
|
57
64
|
camera: 'pi pi-camera',
|
|
58
65
|
microphone: 'pi pi-microphone'
|
|
59
66
|
}
|
|
60
67
|
|
|
61
|
-
import { defineProps, defineModel, defineEmits, toRefs, ref, computed, watch } from 'vue'
|
|
62
|
-
import { useInterval } from '@vueuse/core'
|
|
63
|
-
|
|
64
68
|
const props = defineProps({
|
|
65
69
|
title: {
|
|
66
70
|
type: String
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/peer-connection-frontend",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.45",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "dotenvx run -- node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; dotenvx run -- node server/start.js localDev --enableSessions --initScript ./init.js",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@live-change/cli": "^0.8.
|
|
26
|
-
"@live-change/dao": "^0.8.
|
|
27
|
-
"@live-change/dao-vue3": "^0.8.
|
|
28
|
-
"@live-change/dao-websocket": "^0.8.
|
|
29
|
-
"@live-change/framework": "^0.8.
|
|
30
|
-
"@live-change/password-authentication-service": "^0.8.
|
|
31
|
-
"@live-change/secret-code-service": "^0.8.
|
|
32
|
-
"@live-change/secret-link-service": "^0.8.
|
|
33
|
-
"@live-change/session-service": "^0.8.
|
|
34
|
-
"@live-change/user-frontend": "^0.8.
|
|
35
|
-
"@live-change/user-service": "^0.8.
|
|
36
|
-
"@live-change/vue3-components": "^0.8.
|
|
37
|
-
"@live-change/vue3-ssr": "^0.8.
|
|
25
|
+
"@live-change/cli": "^0.8.45",
|
|
26
|
+
"@live-change/dao": "^0.8.45",
|
|
27
|
+
"@live-change/dao-vue3": "^0.8.45",
|
|
28
|
+
"@live-change/dao-websocket": "^0.8.45",
|
|
29
|
+
"@live-change/framework": "^0.8.45",
|
|
30
|
+
"@live-change/password-authentication-service": "^0.8.45",
|
|
31
|
+
"@live-change/secret-code-service": "^0.8.45",
|
|
32
|
+
"@live-change/secret-link-service": "^0.8.45",
|
|
33
|
+
"@live-change/session-service": "^0.8.45",
|
|
34
|
+
"@live-change/user-frontend": "^0.8.45",
|
|
35
|
+
"@live-change/user-service": "^0.8.45",
|
|
36
|
+
"@live-change/vue3-components": "^0.8.45",
|
|
37
|
+
"@live-change/vue3-ssr": "^0.8.45",
|
|
38
38
|
"@vueuse/core": "^10.11.0",
|
|
39
39
|
"boxicons": "^2.1.4",
|
|
40
40
|
"codeceptjs-assert": "^0.0.5",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"vue3-scroll-border": "0.1.6"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@live-change/codeceptjs-helper": "^0.8.
|
|
57
|
+
"@live-change/codeceptjs-helper": "^0.8.45",
|
|
58
58
|
"codeceptjs": "^3.5.12",
|
|
59
59
|
"generate-password": "1.7.1",
|
|
60
60
|
"playwright": "^1.41.2",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
66
66
|
"license": "BSD-3-Clause",
|
|
67
67
|
"description": "",
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "0a8c79edc8dbaeb2857fb798833050bc0ae4776b"
|
|
69
69
|
}
|