@live-change/user-frontend 0.2.46 → 0.2.47
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.
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
</div>
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
|
-
<div class="flex flex-wrap align-items-center" v-if="userData !== undefined">
|
|
11
|
-
<div class="relative" @click="openImageEditor">
|
|
10
|
+
<div class="flex flex-wrap align-items-center justify-content-center" v-if="userData !== undefined">
|
|
11
|
+
<div class="relative mb-3" @click="openImageEditor">
|
|
12
12
|
<Image v-if="userData?.image" :image="userData.image" class="mr-2 border-circle profile-image"
|
|
13
13
|
domResize width="200" height="200" />
|
|
14
14
|
<img v-else :src="identiconUrl" class="mr-2 border-circle profile-image">
|
package/front/src/router.js
CHANGED
|
@@ -42,6 +42,12 @@ export function userRoutes(config = {}) {
|
|
|
42
42
|
]
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
export {
|
|
46
|
+
messageAuthRoutes, signRoutes, passwordResetRoutes, notificationsRoutes,
|
|
47
|
+
deleteRoutes, passwordChangeRoutes, connectedRoutes, identificationRoutes,
|
|
48
|
+
notificationsSettingsRoutes
|
|
49
|
+
}
|
|
50
|
+
|
|
45
51
|
export async function sitemap(route, api) {
|
|
46
52
|
route({ name: 'SignIn' })
|
|
47
53
|
route({ name: 'SignUp' })
|
package/index.js
CHANGED
|
@@ -10,5 +10,4 @@ export { NotificationsIcon, SimpleNotification, notificationTypes }
|
|
|
10
10
|
import UserIcon from "./front/src/nav/UserIcon.vue"
|
|
11
11
|
export { UserIcon }
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
export { userRoutes, installUserRedirects }
|
|
13
|
+
export * from "./front/src/router.js"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-frontend",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.47",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "lcli memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@live-change/email-service": "0.3.23",
|
|
28
28
|
"@live-change/framework": "0.7.24",
|
|
29
29
|
"@live-change/identicon-service": "0.3.23",
|
|
30
|
-
"@live-change/image-frontend": "^0.2.
|
|
30
|
+
"@live-change/image-frontend": "^0.2.47",
|
|
31
31
|
"@live-change/message-authentication-service": "0.3.23",
|
|
32
32
|
"@live-change/notification-service": "0.3.23",
|
|
33
33
|
"@live-change/password-authentication-service": "0.3.23",
|
|
34
34
|
"@live-change/pattern": "0.2.1",
|
|
35
35
|
"@live-change/secret-code-service": "0.3.23",
|
|
36
36
|
"@live-change/secret-link-service": "0.3.23",
|
|
37
|
-
"@live-change/security-frontend": "^0.2.
|
|
37
|
+
"@live-change/security-frontend": "^0.2.47",
|
|
38
38
|
"@live-change/security-service": "0.3.23",
|
|
39
39
|
"@live-change/session-service": "0.3.23",
|
|
40
40
|
"@live-change/timer-service": "0.3.23",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"author": "",
|
|
78
78
|
"license": "BSD-3-Clause",
|
|
79
79
|
"description": "",
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "e50c1215f16bb0b8eea4df9c2509c91a25243b4f"
|
|
81
81
|
}
|