@asd20/ui 3.2.420 → 3.2.423

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.420",
8
+ "version": "3.2.423",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -71,6 +71,11 @@
71
71
  v-if="publishDateTime"
72
72
  :dateTime="publishDateTime"
73
73
  />
74
+ <span v-if="modifiedDateTime" class="date-prefix">Updated:</span>
75
+ <asd20-formatted-date
76
+ v-if="modifiedDateTime"
77
+ :dateTime="modifiedDateTime"
78
+ />
74
79
  <asd20-tag-group v-if="categories.length" :tags="categories" />
75
80
  <slot name="meta" />
76
81
  </div>
@@ -171,6 +176,7 @@ export default {
171
176
  omitDetailLink: { type: Boolean, default: false },
172
177
  breadcrumbLinks: { type: Array, default: () => [] },
173
178
  publishDateTime: { type: String, default: '' },
179
+ modifiedDateTime: { type: String, default: '' },
174
180
  categories: { type: Array, default: () => [] },
175
181
  languageCode: { type: String, default: '' },
176
182
  },
@@ -36,6 +36,7 @@
36
36
  :languageCode="languageCode"
37
37
  :breadcrumb-links="breadcrumbLinks"
38
38
  :publishDateTime="parentPage ? '' : publishDateTime"
39
+ :modifiedDateTime="parentPage ? '' : modifiedDateTime"
39
40
  :categories="parentPage ? [] : messageCategories"
40
41
  v-on="$listeners"
41
42
  >
@@ -36,6 +36,7 @@
36
36
  :languageCode="languageCode"
37
37
  :breadcrumb-links="breadcrumbLinks"
38
38
  :publishDateTime="parentPage ? '' : publishDateTime"
39
+ :modifiedDateTime="parentPage ? '' : modifiedDateTime"
39
40
  :categories="parentPage ? [] : messageCategories"
40
41
  v-on="$listeners"
41
42
  >
@@ -36,6 +36,7 @@
36
36
  :languageCode="languageCode"
37
37
  :breadcrumb-links="breadcrumbLinks"
38
38
  :publishDateTime="parentPage ? '' : publishDateTime"
39
+ :modifiedDateTime="parentPage ? '' : modifiedDateTime"
39
40
  :categories="parentPage ? [] : messageCategories"
40
41
  v-on="$listeners"
41
42
  >
@@ -36,6 +36,7 @@
36
36
  :languageCode="languageCode"
37
37
  :breadcrumb-links="breadcrumbLinks"
38
38
  :publishDateTime="parentPage ? '' : publishDateTime"
39
+ :modifiedDateTime="parentPage ? '' : modifiedDateTime"
39
40
  :categories="parentPage ? [] : messageCategories"
40
41
  v-on="$listeners"
41
42
  >
@@ -53,6 +53,12 @@
53
53
  <!-- <asd20-breadcrumb slot="top" :links="breadcrumbLinks"></asd20-breadcrumb> -->
54
54
  </asd20-image-header>
55
55
 
56
+ <asd20-feeds-section
57
+ :announcements="announcements"
58
+ :announcements-feed-props="announcementsFeedProps"
59
+ @announcements-in-view="$emit('announcements-in-view')"
60
+ ></asd20-feeds-section>
61
+
56
62
  <!-- Page Content -->
57
63
  <asd20-page-content
58
64
  :primary-messages="wayFindingPrimaryMessages"
@@ -76,9 +82,6 @@
76
82
  </asd20-page-content>
77
83
 
78
84
  <asd20-feeds-section
79
- :announcements="announcements"
80
- :announcements-feed-props="announcementsFeedProps"
81
- @announcements-in-view="$emit('announcements-in-view')"
82
85
  :stories="stories"
83
86
  :stories-feed-props="storiesFeedProps"
84
87
  @stories-in-view="$emit('stories-in-view')"