cec-nuxt-lib 0.8.7 → 0.8.8

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.7"
4
+ "version": "0.8.8"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  <script setup lang="ts">
2
2
  import { useState } from '#app';
3
- const showReviewDate = useState('showReviewDate');
3
+ const hideReviewDate = useState('hideReviewDate');
4
4
  const props = defineProps({
5
5
  reviewed: {
6
6
  type: String,
@@ -23,7 +23,7 @@ const { path, title, reviewed } = props;
23
23
  <div class="mt-4">
24
24
  <div class="row">
25
25
  <div class="col-lg-8">
26
- <p v-if="showReviewDate">
26
+ <p v-if="!hideReviewDate">
27
27
  <small>Page last reviewed: {{ reviewed }} </small>
28
28
  </p>
29
29
  <div class="accordion pb-4">
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.7",
2
+ "version": "0.8.8",
3
3
  "name": "cec-nuxt-lib",
4
4
  "description": "Nuxt components and assets",
5
5
  "license": "MIT",