cec-nuxt-lib 0.8.4 → 0.8.6

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.4"
4
+ "version": "0.8.6"
5
5
  }
@@ -1,4 +1,5 @@
1
1
  <script setup lang="ts">
2
+ const showReviewDate = useState('showReviewDate');
2
3
  const props = defineProps({
3
4
  reviewed: {
4
5
  type: String,
@@ -21,7 +22,7 @@ const { path, title, reviewed } = props;
21
22
  <div class="mt-4">
22
23
  <div class="row">
23
24
  <div class="col-lg-8">
24
- <p>
25
+ <p v-if="showReviewDate">
25
26
  <small>Page last reviewed: {{ reviewed }} </small>
26
27
  </p>
27
28
  <div class="accordion pb-4">
@@ -452,7 +452,7 @@ onMounted(() => {
452
452
  <input
453
453
  v-model="searchTerm"
454
454
  @keypress.enter="doSearch"
455
- placeholder="Enter keywords:"
455
+ placeholder="Enter keywords"
456
456
  @focus="searchTerm = ''"
457
457
  type="text"
458
458
  id="searchTextBox"
@@ -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.4",
2
+ "version": "0.8.6",
3
3
  "name": "cec-nuxt-lib",
4
4
  "description": "Nuxt components and assets",
5
5
  "license": "MIT",