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
- <ULink v-if="previousTitle" :to="previousTo" class="h-full">
24
- <UCard
25
- variant="outline"
26
- class="hover:bg-elevated/50 focus-visible:outline-primary group block h-full bg-transparent"
27
- >
28
- <div class="gap-md flex flex-col">
29
- <div class="gap-xs flex flex-col">
30
- <UButton
31
- variant="outline"
32
- icon="lucide:arrow-left"
33
- class="group-hover text-primary group-hover:text-highlighted w-fit rounded-full"
34
- />
35
- <span class="text-muted">
36
- {{ $t("navigation_previous") }}
37
- {{ $t(pageType) }}
38
- </span>
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
- <div class="gap-xs flex flex-col">
41
- <p class="text-primary group-hover:text-highlighted">
42
- {{ previousTitle }}
43
- </p>
44
- <p class="text-toned">
45
- {{ previousDescription }}
46
- </p>
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
- </div>
49
- </UCard>
50
- </ULink>
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>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
3
  "description": "My new Nuxt module",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"