rimelight-components 1.7.2 → 1.7.3
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.
|
@@ -20,61 +20,65 @@ const {
|
|
|
20
20
|
|
|
21
21
|
<template>
|
|
22
22
|
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2">
|
|
23
|
-
<
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<div class="gap-
|
|
30
|
-
<
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
23
|
+
<div>
|
|
24
|
+
<ULink v-if="previousTitle" :to="previousTo" class="h-full">
|
|
25
|
+
<UCard
|
|
26
|
+
variant="outline"
|
|
27
|
+
class="hover:bg-elevated/50 focus-visible:outline-primary group block h-full bg-transparent"
|
|
28
|
+
>
|
|
29
|
+
<div class="gap-md flex flex-col">
|
|
30
|
+
<div class="gap-xs flex flex-col">
|
|
31
|
+
<UButton
|
|
32
|
+
variant="outline"
|
|
33
|
+
icon="lucide:arrow-left"
|
|
34
|
+
class="group-hover text-primary group-hover:text-highlighted w-fit rounded-full"
|
|
35
|
+
/>
|
|
36
|
+
<span class="text-muted">
|
|
37
|
+
{{ $t("navigation_previous") }}
|
|
38
|
+
{{ $t(pageType) }}
|
|
39
|
+
</span>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="gap-xs flex flex-col">
|
|
42
|
+
<p class="text-primary group-hover:text-highlighted">
|
|
43
|
+
{{ previousTitle }}
|
|
44
|
+
</p>
|
|
45
|
+
<p class="text-toned">
|
|
46
|
+
{{ previousDescription }}
|
|
47
|
+
</p>
|
|
48
|
+
</div>
|
|
39
49
|
</div>
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
50
|
+
</UCard>
|
|
51
|
+
</ULink>
|
|
52
|
+
</div>
|
|
53
|
+
<div>
|
|
54
|
+
<ULink v-if="nextTitle" :to="nextTo" class="h-full">
|
|
55
|
+
<UCard
|
|
56
|
+
variant="outline"
|
|
57
|
+
class="hover:bg-elevated/50 focus-visible:outline-primary group block h-full bg-transparent"
|
|
58
|
+
>
|
|
59
|
+
<div class="gap-md flex flex-col items-end">
|
|
60
|
+
<div class="gap-xs flex flex-col items-end">
|
|
61
|
+
<UButton
|
|
62
|
+
variant="outline"
|
|
63
|
+
icon="lucide:arrow-right"
|
|
64
|
+
class="text-primary group-hover:text-highlighted w-fit rounded-full"
|
|
65
|
+
/>
|
|
66
|
+
<span class="text-muted">
|
|
67
|
+
{{ $t("navigation_next") }}
|
|
68
|
+
{{ $t(pageType) }}</span
|
|
69
|
+
>
|
|
70
|
+
</div>
|
|
71
|
+
<div class="gap-xs flex flex-col items-end">
|
|
72
|
+
<p class="text-primary group-hover:text-highlighted text-right">
|
|
73
|
+
{{ nextTitle }}
|
|
74
|
+
</p>
|
|
75
|
+
<p class="text-toned text-right">
|
|
76
|
+
{{ nextDescription }}
|
|
77
|
+
</p>
|
|
78
|
+
</div>
|
|
47
79
|
</div>
|
|
48
|
-
</
|
|
49
|
-
</
|
|
50
|
-
</
|
|
51
|
-
<ULink v-if="nextTitle" :to="nextTo" class="h-full">
|
|
52
|
-
<UCard
|
|
53
|
-
variant="outline"
|
|
54
|
-
class="hover:bg-elevated/50 focus-visible:outline-primary group block h-full bg-transparent"
|
|
55
|
-
>
|
|
56
|
-
<div class="gap-md flex flex-col items-end">
|
|
57
|
-
<div class="gap-xs flex flex-col items-end">
|
|
58
|
-
<UButton
|
|
59
|
-
variant="outline"
|
|
60
|
-
icon="lucide:arrow-right"
|
|
61
|
-
class="text-primary group-hover:text-highlighted w-fit rounded-full"
|
|
62
|
-
/>
|
|
63
|
-
<span class="text-muted">
|
|
64
|
-
{{ $t("navigation_next") }}
|
|
65
|
-
{{ $t(pageType) }}</span
|
|
66
|
-
>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="gap-xs flex flex-col items-end">
|
|
69
|
-
<p class="text-primary group-hover:text-highlighted text-right">
|
|
70
|
-
{{ nextTitle }}
|
|
71
|
-
</p>
|
|
72
|
-
<p class="text-toned text-right">
|
|
73
|
-
{{ nextDescription }}
|
|
74
|
-
</p>
|
|
75
|
-
</div>
|
|
76
|
-
</div>
|
|
77
|
-
</UCard>
|
|
78
|
-
</ULink>
|
|
80
|
+
</UCard>
|
|
81
|
+
</ULink>
|
|
82
|
+
</div>
|
|
79
83
|
</div>
|
|
80
84
|
</template>
|