@live-change/blog-frontend 0.2.22 → 0.2.24
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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="w-full sm:w-12 md:w-9 lg:w-7 surface-card p-4 shadow-2 border-round">
|
|
3
|
+
<div class="text-center mb-5">
|
|
4
|
+
<div class="text-900 text-3xl font-medium mb-3">
|
|
5
|
+
Blog posts list
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
<UrlsList targetType="blog_Post" edit-buttons />
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script setup>
|
|
13
|
+
|
|
14
|
+
import { UrlsList } from "@live-change/url-frontend"
|
|
15
|
+
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<style scoped>
|
|
19
|
+
|
|
20
|
+
</style>
|
|
@@ -8,6 +8,8 @@ export function blogEditRoutes(config = {}) {
|
|
|
8
8
|
component: () => import("./BlogPostEditor.vue") }),
|
|
9
9
|
route({ name: 'blog:postPreview', path: prefix + 'post-preview/:postId', meta: { }, props: true,
|
|
10
10
|
component: () => import("./BlogPostPreview.vue") }),
|
|
11
|
+
route({ name: 'blog:postsList', path: prefix + 'posts-list', meta: { }, props: true,
|
|
12
|
+
component: () => import("./BlogPostsList.vue") }),
|
|
11
13
|
]
|
|
12
14
|
}
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/blog-frontend",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.24",
|
|
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",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@fortawesome/fontawesome-free": "^6.2.0",
|
|
24
|
-
"@live-change/blog-service": "0.3.
|
|
25
|
-
"@live-change/cli": "0.7.
|
|
26
|
-
"@live-change/content-frontend": "^0.2.
|
|
24
|
+
"@live-change/blog-service": "0.3.10",
|
|
25
|
+
"@live-change/cli": "0.7.8",
|
|
26
|
+
"@live-change/content-frontend": "^0.2.24",
|
|
27
27
|
"@live-change/dao": "0.5.8",
|
|
28
28
|
"@live-change/dao-vue3": "0.5.8",
|
|
29
29
|
"@live-change/dao-websocket": "0.5.8",
|
|
30
|
-
"@live-change/framework": "0.7.
|
|
31
|
-
"@live-change/image-service": "0.3.
|
|
32
|
-
"@live-change/session-service": "0.3.
|
|
30
|
+
"@live-change/framework": "0.7.8",
|
|
31
|
+
"@live-change/image-service": "0.3.10",
|
|
32
|
+
"@live-change/session-service": "0.3.10",
|
|
33
33
|
"@live-change/vue3-components": "0.2.16",
|
|
34
34
|
"@live-change/vue3-ssr": "0.2.16",
|
|
35
35
|
"@vueuse/core": "^9.1.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"vue3-scroll-border": "0.1.4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@live-change/codeceptjs-helper": "0.7.
|
|
56
|
+
"@live-change/codeceptjs-helper": "0.7.8",
|
|
57
57
|
"@wdio/selenium-standalone-service": "^7.20.8",
|
|
58
58
|
"codeceptjs": "^3.3.4",
|
|
59
59
|
"generate-password": "1.7.0",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"author": "",
|
|
66
66
|
"license": "ISC",
|
|
67
67
|
"description": "",
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "ace372fee9445dd9d8bea32e79863e9e7bfd7707"
|
|
69
69
|
}
|