@asd20/ui 3.2.461 → 3.2.462

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.462",
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,6 +71,16 @@
71
71
  ></asd20-notification-group>
72
72
  </client-only>
73
73
  </template>
74
+
75
+ <slot></slot>
76
+ </asd20-page-content>
77
+
78
+ <asd20-page-content
79
+ :primary-messages="wayFindingPrimaryMessages"
80
+ :secondary-messages="secondaryMessages"
81
+ omit-body-content
82
+ grid
83
+ />
74
84
  <!-- Feeds -->
75
85
  <template slot="before">
76
86
  <asd20-feeds-section
@@ -171,6 +181,11 @@ export default {
171
181
  )
172
182
  )
173
183
  },
184
+ primaryMessage() {
185
+ const introMessage = this.primaryMessages.slice(0, 1)
186
+ if ((introMessage[0].bodyHtml === '' || null) || (introMessage[0].detailLink !== '' || null)) return
187
+ return introMessage
188
+ },
174
189
  },
175
190
  }
176
191
  </script>
@@ -227,6 +242,30 @@ export default {
227
242
  }
228
243
  }
229
244
  }
245
+ .intro-message {
246
+ .asd20-messaging {
247
+ border-left: 40px solid var(--color__tertiary);
248
+ border-bottom: 20px solid var(--color__tertiary);
249
+ padding-left: space(1);
250
+ padding-bottom: space(1);
251
+ }
252
+ p {
253
+ // font-family: var(--website-typography__font-family-headlines);
254
+ font-size: 18px !important;
255
+ line-height: 1.5;
256
+ font-family: var(--website-typography__font-family-headlines);
257
+ }
258
+ h2 {
259
+ @include asd20-font(
260
+ 1.5,
261
+ var(--website-typography__font-family-headlines),
262
+ 1.2,
263
+ 700
264
+ );
265
+ font-family: var(--website-typography__font-family-headlines);
266
+ // font-size: 36px !important;
267
+ }
268
+ }
230
269
  }
231
270
 
232
271
  @media (min-width: 1024px) {
@@ -248,6 +287,9 @@ export default {
248
287
  .asd20-page-content {
249
288
  margin-top: space(0);
250
289
  }
290
+ .intro-message {
291
+ width: 90%;
292
+ }
251
293
  }
252
294
  }
253
295
  </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) {