@asd20/ui 3.2.461 → 3.2.463

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.461",
8
+ "version": "3.2.463",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -249,8 +249,8 @@ export default {
249
249
  // z-index: 1;
250
250
  // }
251
251
  img {
252
- width: 20vw;
253
- height: 20vw;
252
+ width: 15vw;
253
+ height: 15vw;
254
254
  // filter: grayscale(100%);
255
255
  // mix-blend-mode: lighten;
256
256
  // opacity: 0.7;
@@ -179,6 +179,17 @@ export default {
179
179
  margin: space(1) !important;
180
180
  }
181
181
  }
182
+ &--grid,
183
+ &--fullscreen {
184
+ .primary-messaging-section,
185
+ .secondary-messaging-section {
186
+ padding: space(2) space(3);
187
+ // &::v-deep > * {
188
+ // flex: 1 1 var(--minimum-column-width);
189
+ // margin: var(--gutter) !important;
190
+ // }
191
+ }
192
+ }
182
193
  }
183
194
  }
184
195
  </style>
@@ -55,10 +55,10 @@
55
55
 
56
56
  <!-- Page Content -->
57
57
  <asd20-page-content
58
- :primary-messages="wayFindingPrimaryMessages"
59
- :secondary-messages="secondaryMessages"
60
- omit-body-content
61
- grid
58
+ class="intro-message"
59
+ :primary-messages="primaryMessage"
60
+ omit-detail-links
61
+ omit-calls-to-action
62
62
  >
63
63
  <!-- Inline-Notifications -->
64
64
  <template slot="before">
@@ -71,24 +71,18 @@
71
71
  ></asd20-notification-group>
72
72
  </client-only>
73
73
  </template>
74
- <!-- Feeds -->
75
- <template slot="before">
76
- <asd20-feeds-section
77
- :announcements="announcements"
78
- :announcements-feed-props="announcementsFeedProps"
79
- @announcements-in-view="$emit('announcements-in-view')"
80
- :stories="stories"
81
- :stories-feed-props="storiesFeedProps"
82
- @stories-in-view="$emit('stories-in-view')"
83
- :events="events"
84
- :events-feed-props="eventsFeedProps"
85
- @events-in-view="$emit('events-in-view')"
86
- ></asd20-feeds-section>
87
- </template>
88
74
 
89
75
  <slot></slot>
90
76
  </asd20-page-content>
91
77
 
78
+ <asd20-page-content
79
+ :primary-messages="wayFindingPrimaryMessages"
80
+ :secondary-messages="secondaryMessages"
81
+ omit-body-content
82
+ grid
83
+ >
84
+ </asd20-page-content>
85
+
92
86
  <!-- Bottom Widgets -->
93
87
  <asd20-widgets-section
94
88
  v-if="
@@ -171,6 +165,11 @@ export default {
171
165
  )
172
166
  )
173
167
  },
168
+ primaryMessage() {
169
+ const introMessage = this.primaryMessages.slice(0, 1)
170
+ if ((introMessage[0].bodyHtml === '' || null) || (introMessage[0].detailLink !== '' || null)) return
171
+ return introMessage
172
+ },
174
173
  },
175
174
  }
176
175
  </script>
@@ -227,6 +226,30 @@ export default {
227
226
  }
228
227
  }
229
228
  }
229
+ .intro-message {
230
+ .asd20-messaging {
231
+ border-left: 40px solid var(--color__tertiary);
232
+ border-bottom: 20px solid var(--color__tertiary);
233
+ padding-left: space(1);
234
+ padding-bottom: space(1);
235
+ }
236
+ p {
237
+ // font-family: var(--website-typography__font-family-headlines);
238
+ font-size: 18px !important;
239
+ line-height: 1.5;
240
+ font-family: var(--website-typography__font-family-headlines);
241
+ }
242
+ h2 {
243
+ @include asd20-font(
244
+ 1.5,
245
+ var(--website-typography__font-family-headlines),
246
+ 1.2,
247
+ 700
248
+ );
249
+ font-family: var(--website-typography__font-family-headlines);
250
+ // font-size: 36px !important;
251
+ }
252
+ }
230
253
  }
231
254
 
232
255
  @media (min-width: 1024px) {
@@ -248,6 +271,9 @@ export default {
248
271
  .asd20-page-content {
249
272
  margin-top: space(0);
250
273
  }
274
+ .intro-message {
275
+ width: 90%;
276
+ }
251
277
  }
252
278
  }
253
279
  </style>
@@ -52,12 +52,14 @@
52
52
  </template>
53
53
  <!-- <asd20-breadcrumb slot="top" :links="breadcrumbLinks"></asd20-breadcrumb> -->
54
54
  </asd20-image-header>
55
+
56
+
55
57
  <!-- Page Content -->
56
58
  <asd20-page-content
57
- :primary-messages="wayFindingPrimaryMessages"
58
- :secondary-messages="secondaryMessages"
59
- omit-body-content
60
- fullscreen
59
+ class="intro-message"
60
+ :primary-messages="primaryMessage"
61
+ omit-detail-links
62
+ omit-calls-to-action
61
63
  >
62
64
  <!-- Inline-Notifications -->
63
65
  <template slot="before">
@@ -70,6 +72,16 @@
70
72
  ></asd20-notification-group>
71
73
  </client-only>
72
74
  </template>
75
+
76
+ <slot></slot>
77
+ </asd20-page-content>
78
+
79
+ <asd20-page-content
80
+ :primary-messages="wayFindingPrimaryMessages"
81
+ :secondary-messages="secondaryMessages"
82
+ omit-body-content
83
+ fullscreen
84
+ />
73
85
  <!-- Announcement Feed -->
74
86
  <template slot="before">
75
87
  <asd20-feeds-section
@@ -174,6 +186,11 @@ export default {
174
186
  )
175
187
  )
176
188
  },
189
+ primaryMessage() {
190
+ const introMessage = this.primaryMessages.slice(0, 1)
191
+ if ((introMessage[0].bodyHtml === '' || null) || (introMessage[0].detailLink !== '' || null)) return
192
+ return introMessage
193
+ },
177
194
  },
178
195
  }
179
196
  </script>
@@ -252,6 +269,30 @@ export default {
252
269
  }
253
270
  }
254
271
  }
272
+ .intro-message {
273
+ .asd20-messaging {
274
+ border-left: 40px solid var(--color__tertiary);
275
+ border-bottom: 20px solid var(--color__tertiary);
276
+ padding-left: space(1);
277
+ padding-bottom: space(1);
278
+ }
279
+ p {
280
+ // font-family: var(--website-typography__font-family-headlines);
281
+ font-size: 18px !important;
282
+ line-height: 1.5;
283
+ font-family: var(--website-typography__font-family-headlines);
284
+ }
285
+ h2 {
286
+ @include asd20-font(
287
+ 1.5,
288
+ var(--website-typography__font-family-headlines),
289
+ 1.2,
290
+ 700
291
+ );
292
+ font-family: var(--website-typography__font-family-headlines);
293
+ // font-size: 36px !important;
294
+ }
295
+ }
255
296
  }
256
297
  @media (min-width: 768px) {
257
298
  .asd20-template-wayfinding-image {
@@ -287,6 +328,9 @@ export default {
287
328
  }
288
329
  }
289
330
  }
331
+ .intro-message {
332
+ width: 90%;
333
+ }
290
334
  }
291
335
  }
292
336
  </style>
@@ -74,7 +74,6 @@
74
74
 
75
75
  <slot></slot>
76
76
  </asd20-page-content>
77
- <!-- <hr class="seperator" /> -->
78
77
 
79
78
  <asd20-page-content
80
79
  :primary-messages="wayFindingPrimaryMessages"
@@ -246,10 +245,6 @@ export default {
246
245
  // font-size: 36px !important;
247
246
  }
248
247
  }
249
- .seperator {
250
- width: 90%;
251
- margin: auto;
252
- }
253
248
  }
254
249
 
255
250
  @media (min-width: 1024px) {