@asd20/ui 3.2.459 → 3.2.461

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.459",
8
+ "version": "3.2.461",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -16,7 +16,7 @@ export default {
16
16
  },
17
17
  props: {
18
18
  factoids: { type: Array, default: () => [] },
19
- title: { type: String, default: 'By the numbers.' },
19
+ title: { type: String, default: 'By the Numbers' },
20
20
  },
21
21
  }
22
22
  </script>
@@ -173,7 +173,7 @@ export default {
173
173
  }
174
174
  .primary-messaging-section,
175
175
  .secondary-messaging-section {
176
- padding: space(2) space(3);
176
+ padding: space(2) space(1) space(2) space(2);
177
177
  &::v-deep > * {
178
178
  // flex: 1 1 var(--minimum-column-width);
179
179
  margin: space(1) !important;
@@ -1,6 +1,12 @@
1
1
  <template>
2
- <div class="asd20-person-list">
3
- <asd20-list :headline="headline || title" :icon="icon">
2
+ <div>
3
+ <asd20-list
4
+ class="asd20-person-list"
5
+ v-bind="$attrs"
6
+ :headline="headline || title"
7
+ :icon="icon"
8
+ :column-width="640"
9
+ >
4
10
  <asd20-list-item
5
11
  v-for="(person, index) in mappedPeople"
6
12
  :key="index"
@@ -8,6 +8,8 @@
8
8
  v-if="people.length"
9
9
  :people="people"
10
10
  v-bind="peopleFeedProps"
11
+ :multi-column="full"
12
+ :max-height="people.length > 8 ? '50vh' : 'auto'"
11
13
  />
12
14
 
13
15
  <asd20-link-list
@@ -490,8 +490,8 @@ export default {
490
490
  align-items: stretch;
491
491
  flex-wrap: wrap;
492
492
  .asd20-widgets-section {
493
- flex-basis: 25%;
494
- padding: space(2) space(3) 0 0;
493
+ flex-basis: 30%;
494
+ padding: space(2) space(2) 0 0;
495
495
  background: none;
496
496
  }
497
497
  }
@@ -232,8 +232,8 @@ export default {
232
232
  align-items: stretch;
233
233
  flex-wrap: wrap;
234
234
  .asd20-widgets-section {
235
- flex-basis: 25%;
236
- padding: space(2) space(3) 0 0;
235
+ flex-basis: 30%;
236
+ padding: space(2) space(2) 0 0;
237
237
  background: none;
238
238
  }
239
239
  }
@@ -275,8 +275,8 @@ export default {
275
275
  align-items: stretch;
276
276
  flex-wrap: wrap;
277
277
  .asd20-widgets-section {
278
- flex-basis: 25%;
279
- padding: space(2) space(3) 0 0;
278
+ flex-basis: 30%;
279
+ padding: space(2) space(2) 0 0;
280
280
  background: none;
281
281
  }
282
282
  }
@@ -248,8 +248,8 @@ export default {
248
248
  align-items: stretch;
249
249
  flex-wrap: wrap;
250
250
  .asd20-widgets-section {
251
- flex-basis: 25%;
252
- padding: space(2) space(3) 0 0;
251
+ flex-basis: 30%;
252
+ padding: space(2) space(2) 0 0;
253
253
  background: none;
254
254
  }
255
255
  }
@@ -232,8 +232,8 @@ export default {
232
232
  align-items: stretch;
233
233
  flex-wrap: wrap;
234
234
  .asd20-widgets-section {
235
- flex-basis: 25%;
236
- padding: space(2) space(3) 0 0;
235
+ flex-basis: 30%;
236
+ padding: space(2) space(2) 0 0;
237
237
  background: none;
238
238
  }
239
239
  }
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="asd20-template-detail">
2
+ <div class="asd20-template-group-feature">
3
3
  <!-- Skip Nav -->
4
4
  <asd20-skip-to />
5
5
 
@@ -219,7 +219,7 @@ export default {
219
219
  @import '../../../design/_print.scss';
220
220
  @import '../../../design/tokens.css';
221
221
 
222
- .asd20-template-detail {
222
+ .asd20-template-group-feature {
223
223
  @include typography;
224
224
  @include template;
225
225
  display: flex;
@@ -231,7 +231,7 @@ export default {
231
231
  }
232
232
 
233
233
  @media (min-width: 1024px) {
234
- .asd20-template-detail {
234
+ .asd20-template-group-feature {
235
235
  @include template-desktop;
236
236
  margin-left: space(3);
237
237
  margin-top: 0;
@@ -246,8 +246,8 @@ export default {
246
246
  align-items: stretch;
247
247
  flex-wrap: wrap;
248
248
  .asd20-widgets-section {
249
- flex-basis: 25%;
250
- padding: space(2) space(3) 0 0;
249
+ flex-basis: 30%;
250
+ padding: space(2) space(2) 0 0;
251
251
  background: none;
252
252
  }
253
253
  }
@@ -559,8 +559,8 @@ export default {
559
559
  align-items: stretch;
560
560
  flex-wrap: wrap;
561
561
  .asd20-widgets-section {
562
- flex-basis: 25%;
563
- padding: space(2) space(3) 0 0;
562
+ flex-basis: 30%;
563
+ padding: space(2) space(2) 0 0;
564
564
  background: none;
565
565
  }
566
566
  }
@@ -726,8 +726,8 @@ export default {
726
726
  align-items: stretch;
727
727
  flex-wrap: wrap;
728
728
  .asd20-widgets-section {
729
- flex-basis: 25%;
730
- padding: space(2) space(3) 0 0;
729
+ flex-basis: 30%;
730
+ padding: space(2) space(2) 0 0;
731
731
  background: none;
732
732
  }
733
733
  }