@live-change/access-control-frontend 0.9.31 → 0.9.32
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/locales/en.js +29 -0
- package/front/locales/en.json +9 -0
- package/index.js +3 -1
- package/package.json +19 -19
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import messages from "./en.json"
|
|
2
|
+
|
|
3
|
+
import { locales as autoFormLocales } from "@live-change/frontend-auto-form"
|
|
4
|
+
|
|
5
|
+
export { messages }
|
|
6
|
+
|
|
7
|
+
export const numberFormats ={
|
|
8
|
+
"usd": {
|
|
9
|
+
"style": "currency",
|
|
10
|
+
"currency": "USD",
|
|
11
|
+
"notation": "standard"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export const datetimeFormats = {
|
|
16
|
+
"short": {
|
|
17
|
+
"year": "numeric", "month": "short", "day": "numeric"
|
|
18
|
+
},
|
|
19
|
+
"shortTime": {
|
|
20
|
+
"dateStyle": "short", "timeStyle": "short", "hour12": false
|
|
21
|
+
},
|
|
22
|
+
"shortestTime": {
|
|
23
|
+
"month": "numeric", "day": "numeric", "hour": "numeric", "minute": "numeric", "hour12": false
|
|
24
|
+
},
|
|
25
|
+
"long": {
|
|
26
|
+
"year": "numeric", "month": "short", "day": "numeric",
|
|
27
|
+
"weekday": "short", "hour": "numeric", "minute": "numeric"
|
|
28
|
+
}
|
|
29
|
+
}
|
package/index.js
CHANGED
|
@@ -19,4 +19,6 @@ import inviteRoutes from "./front/src/invite/routes.js"
|
|
|
19
19
|
import configurationRoutes from "./front/src/configuration/routes.js"
|
|
20
20
|
export { inviteRoutes, configurationRoutes }
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
import en from "./front/locales/en.json"
|
|
23
|
+
const locales = { en }
|
|
24
|
+
export { locales }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/access-control-frontend",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.32",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
},
|
|
22
22
|
"type": "module",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@live-change/access-control-service": "^0.9.
|
|
25
|
-
"@live-change/cli": "^0.9.
|
|
26
|
-
"@live-change/dao": "^0.9.
|
|
27
|
-
"@live-change/dao-vue3": "^0.9.
|
|
28
|
-
"@live-change/dao-websocket": "^0.9.
|
|
29
|
-
"@live-change/db-admin": "^0.9.
|
|
30
|
-
"@live-change/framework": "^0.9.
|
|
31
|
-
"@live-change/frontend-base": "^0.9.
|
|
32
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
33
|
-
"@live-change/secret-code-service": "^0.9.
|
|
34
|
-
"@live-change/secret-link-service": "^0.9.
|
|
35
|
-
"@live-change/session-service": "^0.9.
|
|
36
|
-
"@live-change/user-frontend": "^0.9.
|
|
37
|
-
"@live-change/user-service": "^0.9.
|
|
38
|
-
"@live-change/vue3-components": "^0.9.
|
|
39
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
24
|
+
"@live-change/access-control-service": "^0.9.32",
|
|
25
|
+
"@live-change/cli": "^0.9.32",
|
|
26
|
+
"@live-change/dao": "^0.9.32",
|
|
27
|
+
"@live-change/dao-vue3": "^0.9.32",
|
|
28
|
+
"@live-change/dao-websocket": "^0.9.32",
|
|
29
|
+
"@live-change/db-admin": "^0.9.32",
|
|
30
|
+
"@live-change/framework": "^0.9.32",
|
|
31
|
+
"@live-change/frontend-base": "^0.9.32",
|
|
32
|
+
"@live-change/password-authentication-service": "^0.9.32",
|
|
33
|
+
"@live-change/secret-code-service": "^0.9.32",
|
|
34
|
+
"@live-change/secret-link-service": "^0.9.32",
|
|
35
|
+
"@live-change/session-service": "^0.9.32",
|
|
36
|
+
"@live-change/user-frontend": "^0.9.32",
|
|
37
|
+
"@live-change/user-service": "^0.9.32",
|
|
38
|
+
"@live-change/vue3-components": "^0.9.32",
|
|
39
|
+
"@live-change/vue3-ssr": "^0.9.32",
|
|
40
40
|
"@vueuse/core": "^12.3.0",
|
|
41
41
|
"codeceptjs-assert": "^0.0.5",
|
|
42
42
|
"compression": "^1.7.5",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"vue3-scroll-border": "0.1.6"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
56
|
+
"@live-change/codeceptjs-helper": "^0.9.32",
|
|
57
57
|
"codeceptjs": "^3.6.10",
|
|
58
58
|
"generate-password": "1.7.1",
|
|
59
59
|
"playwright": "1.49.1",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
65
65
|
"license": "BSD-3-Clause",
|
|
66
66
|
"description": "",
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "41022fc283020e2da3e82aa27274401052d2379a"
|
|
68
68
|
}
|