@live-change/user-frontend 0.1.6 → 0.2.2
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/App.vue +7 -1
- package/package.json +25 -25
package/front/src/App.vue
CHANGED
|
@@ -22,10 +22,16 @@
|
|
|
22
22
|
})
|
|
23
23
|
|
|
24
24
|
import { watch } from 'vue'
|
|
25
|
-
import { client as useClient } from '@live-change/vue3-ssr'
|
|
25
|
+
import { client as useClient, useApi } from '@live-change/vue3-ssr'
|
|
26
26
|
const client = useClient()
|
|
27
27
|
watch(client, (newClient, oldClient) => {
|
|
28
28
|
console.log("WATCH CLIENT", oldClient, '=>', newClient)
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
const api = useApi()
|
|
32
|
+
import emailValidator from "@live-change/email-service/clientEmailValidator.js"
|
|
33
|
+
import passwordValidator from "@live-change/password-authentication-service/clientPasswordValidator.js"
|
|
34
|
+
api.validators.email = emailValidator
|
|
35
|
+
api.validators.password = passwordValidator
|
|
36
|
+
|
|
31
37
|
</script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-frontend",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
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",
|
|
@@ -20,29 +20,29 @@
|
|
|
20
20
|
"debug": "node --inspect-brk server"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@live-change/cli": "0.6.
|
|
24
|
-
"@live-change/dao": "0.5.
|
|
25
|
-
"@live-change/dao-vue3": "0.5.
|
|
26
|
-
"@live-change/dao-websocket": "0.5.
|
|
27
|
-
"@live-change/email-service": "0.2.
|
|
28
|
-
"@live-change/framework": "0.6.
|
|
29
|
-
"@live-change/identicon-service": "0.2.
|
|
30
|
-
"@live-change/image-frontend": "^0.
|
|
31
|
-
"@live-change/message-authentication-service": "0.2.
|
|
32
|
-
"@live-change/notification-service": "0.2.
|
|
33
|
-
"@live-change/password-authentication-service": "0.2.
|
|
23
|
+
"@live-change/cli": "0.6.14",
|
|
24
|
+
"@live-change/dao": "0.5.6",
|
|
25
|
+
"@live-change/dao-vue3": "0.5.6",
|
|
26
|
+
"@live-change/dao-websocket": "0.5.6",
|
|
27
|
+
"@live-change/email-service": "0.2.51",
|
|
28
|
+
"@live-change/framework": "0.6.14",
|
|
29
|
+
"@live-change/identicon-service": "0.2.51",
|
|
30
|
+
"@live-change/image-frontend": "^0.2.2",
|
|
31
|
+
"@live-change/message-authentication-service": "0.2.51",
|
|
32
|
+
"@live-change/notification-service": "0.2.51",
|
|
33
|
+
"@live-change/password-authentication-service": "0.2.51",
|
|
34
34
|
"@live-change/pattern": "0.2.1",
|
|
35
|
-
"@live-change/secret-code-service": "0.2.
|
|
36
|
-
"@live-change/secret-link-service": "0.2.
|
|
37
|
-
"@live-change/security-frontend": "^0.
|
|
38
|
-
"@live-change/security-service": "0.2.
|
|
39
|
-
"@live-change/session-service": "0.2.
|
|
40
|
-
"@live-change/timer-service": "0.2.
|
|
41
|
-
"@live-change/upload-service": "0.2.
|
|
42
|
-
"@live-change/user-identification-service": "0.2.
|
|
43
|
-
"@live-change/user-service": "0.2.
|
|
44
|
-
"@live-change/vue3-components": "0.2.
|
|
45
|
-
"@live-change/vue3-ssr": "0.2.
|
|
35
|
+
"@live-change/secret-code-service": "0.2.51",
|
|
36
|
+
"@live-change/secret-link-service": "0.2.51",
|
|
37
|
+
"@live-change/security-frontend": "^0.2.2",
|
|
38
|
+
"@live-change/security-service": "0.2.51",
|
|
39
|
+
"@live-change/session-service": "0.2.51",
|
|
40
|
+
"@live-change/timer-service": "0.2.51",
|
|
41
|
+
"@live-change/upload-service": "0.2.51",
|
|
42
|
+
"@live-change/user-identification-service": "0.2.51",
|
|
43
|
+
"@live-change/user-service": "0.2.51",
|
|
44
|
+
"@live-change/vue3-components": "0.2.15",
|
|
45
|
+
"@live-change/vue3-ssr": "0.2.15",
|
|
46
46
|
"@vueuse/core": "^9.1.0",
|
|
47
47
|
"codeceptjs-assert": "^0.0.5",
|
|
48
48
|
"codeceptjs-video-helper": "^0.1.3",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"wtfnode": "^0.9.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@live-change/codeceptjs-helper": "0.6.
|
|
68
|
+
"@live-change/codeceptjs-helper": "0.6.14",
|
|
69
69
|
"@wdio/selenium-standalone-service": "^7.20.8",
|
|
70
70
|
"codeceptjs": "^3.3.4",
|
|
71
71
|
"generate-password": "1.7.0",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"author": "",
|
|
78
78
|
"license": "BSD-3-Clause",
|
|
79
79
|
"description": "",
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "f7abc1d907b85c321e629086c162e4b622eee91b"
|
|
81
81
|
}
|