@live-change/user-frontend 0.9.199 → 0.9.201
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/front/src/nav/UserIcon.vue +14 -5
- package/package.json +26 -26
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
class="mr-0 rounded-full border-1 border-surface-400 dark:border-surface-600 w-12 max-w-none" />
|
|
13
13
|
</span>
|
|
14
14
|
</a>
|
|
15
|
-
<div class="align-items-center flex-grow-1 justify-content-between hidden absolute w-full md:w-auto
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
<div :class="['align-items-center flex-grow-1 justify-content-between hidden absolute w-full md:w-auto',
|
|
16
|
+
'bg-surface-0 dark:bg-surface-950 dark:border-1 dark:border-surface-800',
|
|
17
|
+
'right-0 md:right-auto top-full z-5 shadow', menuClass]" :style="menuStyle">
|
|
18
18
|
<loading-zone suspense>
|
|
19
19
|
<template v-slot:loading>
|
|
20
20
|
<div class="flex items-center justify-center top-0 left-0 notifications-loading">
|
|
@@ -44,13 +44,22 @@
|
|
|
44
44
|
import ProgressSpinner from "primevue/progressspinner"
|
|
45
45
|
import UserMenu from "./UserMenu.vue"
|
|
46
46
|
|
|
47
|
-
import { ref, computed, onMounted, toRefs } from 'vue'
|
|
47
|
+
import { ref, computed, onMounted, toRefs, defineProps } from 'vue'
|
|
48
48
|
|
|
49
49
|
const isMounted = ref(false)
|
|
50
50
|
onMounted(() => isMounted.value = true)
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
const props = defineProps({
|
|
53
|
+
menuClass: {
|
|
54
|
+
default: ''
|
|
55
|
+
},
|
|
56
|
+
menuStyle: {
|
|
57
|
+
default: ''
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
const { menuClass, menuStyle } = toRefs(props)
|
|
53
61
|
|
|
62
|
+
import { usePath, live, useClient } from '@live-change/vue3-ssr'
|
|
54
63
|
const client = useClient()
|
|
55
64
|
|
|
56
65
|
const ownerData = computed(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-frontend",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.201",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "tsx --inspect --expose-gc server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "tsx server/start.js localDev --enableSessions --initScript ./init.js --dbAccess",
|
|
@@ -37,29 +37,29 @@
|
|
|
37
37
|
},
|
|
38
38
|
"type": "module",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@live-change/cli": "^0.9.
|
|
41
|
-
"@live-change/dao": "^0.9.
|
|
42
|
-
"@live-change/dao-vue3": "^0.9.
|
|
43
|
-
"@live-change/dao-websocket": "^0.9.
|
|
44
|
-
"@live-change/email-service": "^0.9.
|
|
45
|
-
"@live-change/framework": "^0.9.
|
|
46
|
-
"@live-change/identicon-service": "^0.9.
|
|
47
|
-
"@live-change/image-frontend": "^0.9.
|
|
48
|
-
"@live-change/message-authentication-service": "^0.9.
|
|
49
|
-
"@live-change/notification-service": "^0.9.
|
|
50
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
51
|
-
"@live-change/pattern": "^0.9.
|
|
52
|
-
"@live-change/secret-code-service": "^0.9.
|
|
53
|
-
"@live-change/secret-link-service": "^0.9.
|
|
54
|
-
"@live-change/security-frontend": "^0.9.
|
|
55
|
-
"@live-change/security-service": "^0.9.
|
|
56
|
-
"@live-change/session-service": "^0.9.
|
|
57
|
-
"@live-change/timer-service": "^0.9.
|
|
58
|
-
"@live-change/upload-service": "^0.9.
|
|
59
|
-
"@live-change/user-identification-service": "^0.9.
|
|
60
|
-
"@live-change/user-service": "^0.9.
|
|
61
|
-
"@live-change/vue3-components": "^0.9.
|
|
62
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
40
|
+
"@live-change/cli": "^0.9.201",
|
|
41
|
+
"@live-change/dao": "^0.9.201",
|
|
42
|
+
"@live-change/dao-vue3": "^0.9.201",
|
|
43
|
+
"@live-change/dao-websocket": "^0.9.201",
|
|
44
|
+
"@live-change/email-service": "^0.9.201",
|
|
45
|
+
"@live-change/framework": "^0.9.201",
|
|
46
|
+
"@live-change/identicon-service": "^0.9.201",
|
|
47
|
+
"@live-change/image-frontend": "^0.9.201",
|
|
48
|
+
"@live-change/message-authentication-service": "^0.9.201",
|
|
49
|
+
"@live-change/notification-service": "^0.9.201",
|
|
50
|
+
"@live-change/password-authentication-service": "^0.9.201",
|
|
51
|
+
"@live-change/pattern": "^0.9.201",
|
|
52
|
+
"@live-change/secret-code-service": "^0.9.201",
|
|
53
|
+
"@live-change/secret-link-service": "^0.9.201",
|
|
54
|
+
"@live-change/security-frontend": "^0.9.201",
|
|
55
|
+
"@live-change/security-service": "^0.9.201",
|
|
56
|
+
"@live-change/session-service": "^0.9.201",
|
|
57
|
+
"@live-change/timer-service": "^0.9.201",
|
|
58
|
+
"@live-change/upload-service": "^0.9.201",
|
|
59
|
+
"@live-change/user-identification-service": "^0.9.201",
|
|
60
|
+
"@live-change/user-service": "^0.9.201",
|
|
61
|
+
"@live-change/vue3-components": "^0.9.201",
|
|
62
|
+
"@live-change/vue3-ssr": "^0.9.201",
|
|
63
63
|
"@vueuse/core": "^12.3.0",
|
|
64
64
|
"codeceptjs-assert": "^0.0.5",
|
|
65
65
|
"codeceptjs-video-helper": "0.1.3",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"wtfnode": "^0.9.1"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
83
|
+
"@live-change/codeceptjs-helper": "^0.9.201",
|
|
84
84
|
"codeceptjs": "^3.7.6",
|
|
85
85
|
"generate-password": "1.7.1",
|
|
86
86
|
"playwright": "1.49.1",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
92
92
|
"license": "BSD-3-Clause",
|
|
93
93
|
"description": "",
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "c9d7d6987de61d4f4cfa04e583b94150ade7c7bf"
|
|
95
95
|
}
|