cec-nuxt-lib 0.8.5 → 0.8.7

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/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "cec-nuxt-lib",
3
3
  "configKey": "cec-nuxt-lib",
4
- "version": "0.8.5"
4
+ "version": "0.8.7"
5
5
  }
@@ -1,4 +1,6 @@
1
1
  <script setup lang="ts">
2
+ import { useState } from '#app';
3
+ const showReviewDate = useState('showReviewDate');
2
4
  const props = defineProps({
3
5
  reviewed: {
4
6
  type: String,
@@ -21,7 +23,7 @@ const { path, title, reviewed } = props;
21
23
  <div class="mt-4">
22
24
  <div class="row">
23
25
  <div class="col-lg-8">
24
- <p>
26
+ <p v-if="showReviewDate">
25
27
  <small>Page last reviewed: {{ reviewed }} </small>
26
28
  </p>
27
29
  <div class="accordion pb-4">
@@ -14,8 +14,8 @@ const goToPage = (n) => {
14
14
  <template>
15
15
  <div>
16
16
  <nav
17
+ class="my-4"
17
18
  v-if="pages.length > 1"
18
- role="navigation"
19
19
  aria-label="Results data navigation"
20
20
  >
21
21
  <ol class="pagination d-flex flex-wrap my-2 ms-0">
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.5",
2
+ "version": "0.8.7",
3
3
  "name": "cec-nuxt-lib",
4
4
  "description": "Nuxt components and assets",
5
5
  "license": "MIT",