@live-change/frontend-base 0.2.3 → 0.2.5
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/ViewRoot.vue +1 -2
- package/package.json +13 -13
- package/vite-config.js +8 -0
package/ViewRoot.vue
CHANGED
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
</template>
|
|
25
25
|
<template v-slot:default="{ isWorking }">
|
|
26
|
-
<component :is="Component"
|
|
27
|
-
:style="isWorking || isLoading ? 'filter: blur(4px)' : ''"
|
|
26
|
+
<component :is="Component" :style="isWorking || isLoading ? 'filter: blur(4px)' : ''"
|
|
28
27
|
class="working-blur" />
|
|
29
28
|
</template>
|
|
30
29
|
</working-zone>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/frontend-base",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "lcli memDev --enableSessions --initScript ./init.js --templatePath ../../base-frontend/index.html",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"debug": "node --inspect-brk server"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@live-change/cli": "0.
|
|
23
|
+
"@live-change/cli": "0.7.2",
|
|
24
24
|
"@live-change/dao": "0.5.6",
|
|
25
25
|
"@live-change/dao-vue3": "0.5.6",
|
|
26
26
|
"@live-change/dao-websocket": "0.5.6",
|
|
27
|
-
"@live-change/email-service": "0.
|
|
28
|
-
"@live-change/password-authentication-service": "0.
|
|
29
|
-
"@live-change/secret-code-service": "0.
|
|
30
|
-
"@live-change/secret-link-service": "0.
|
|
31
|
-
"@live-change/security-frontend": "^0.2.
|
|
32
|
-
"@live-change/session-service": "0.
|
|
33
|
-
"@live-change/user-service": "0.
|
|
27
|
+
"@live-change/email-service": "0.3.0",
|
|
28
|
+
"@live-change/password-authentication-service": "0.3.0",
|
|
29
|
+
"@live-change/secret-code-service": "0.3.0",
|
|
30
|
+
"@live-change/secret-link-service": "0.3.0",
|
|
31
|
+
"@live-change/security-frontend": "^0.2.5",
|
|
32
|
+
"@live-change/session-service": "0.3.0",
|
|
33
|
+
"@live-change/user-service": "0.3.0",
|
|
34
34
|
"@live-change/vue3-components": "0.2.15",
|
|
35
35
|
"@live-change/vue3-ssr": "0.2.15",
|
|
36
36
|
"@vitejs/plugin-vue": "^2.3.1",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"cross-env": "^7.0.3",
|
|
43
43
|
"get-port-sync": "1.0.1",
|
|
44
44
|
"primeflex": "^3.2.1",
|
|
45
|
-
"primeicons": "^
|
|
46
|
-
"primevue": "^3.
|
|
45
|
+
"primeicons": "^6.0.1",
|
|
46
|
+
"primevue": "^3.18.1",
|
|
47
47
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
48
48
|
"rollup-plugin-visualizer": "5.6.0",
|
|
49
49
|
"serialize-javascript": "^6.0.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"vue3-scroll-border": "0.1.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@live-change/codeceptjs-helper": "0.
|
|
59
|
+
"@live-change/codeceptjs-helper": "0.7.2",
|
|
60
60
|
"@wdio/selenium-standalone-service": "^7.20.8",
|
|
61
61
|
"codeceptjs": "^3.3.4",
|
|
62
62
|
"generate-password": "1.7.0",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"author": "",
|
|
69
69
|
"license": "BSD-3-Clause",
|
|
70
70
|
"description": "",
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "76ac0dd54acf671cb564a1aa943d81a9e2bc99e9"
|
|
72
72
|
}
|
package/vite-config.js
CHANGED
|
@@ -86,6 +86,14 @@ module.exports = async ({ command, mode }) => ({
|
|
|
86
86
|
'@live-change/user-frontend',
|
|
87
87
|
'@live-change/frontend-base',
|
|
88
88
|
'@live-change/frontend-utils',
|
|
89
|
+
'@live-change/access-control-frontend',
|
|
90
|
+
'@live-change/content-frontend',
|
|
91
|
+
'@live-change/image-frontend',
|
|
92
|
+
'@live-change/security-frontend',
|
|
93
|
+
'@live-change/upload-frontend',
|
|
94
|
+
'@live-change/url-frontend',
|
|
95
|
+
'@live-change/user-frontend',
|
|
96
|
+
'@live-change/wysiwyg-frontend',
|
|
89
97
|
'vue3-scroll-border',
|
|
90
98
|
'pretty-bytes'
|
|
91
99
|
]
|