@asd20/ui 3.2.601 → 3.2.602

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.601",
8
+ "version": "3.2.602",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -21,7 +21,7 @@
21
21
  <source :src="videoUrl" type="video/mp4" />
22
22
  </video>
23
23
 
24
- <img class="background-image" :src="imageUrl" alt="" />
24
+ <img class="background-image" :src="imageUrl" :alt="imageCaption" />
25
25
  <!-- <div class="scroll-down-indicator"></div> -->
26
26
  <slot />
27
27
  </header>
@@ -69,7 +69,6 @@
69
69
  :secondary-messages="secondaryMessages"
70
70
  omit-detail-links
71
71
  omit-calls-to-action
72
- grid
73
72
  ></asd20-page-content>
74
73
 
75
74
  <intersect @enter="$emit('stories-in-view')">
@@ -87,13 +86,13 @@
87
86
  @input="$emit('update:keywords', $event)"
88
87
  medium
89
88
  />
90
- <asd20-multiselect-input
89
+ <!-- <asd20-multiselect-input
91
90
  label="Categories"
92
91
  :taggable="false"
93
92
  :value="selectedCategories"
94
93
  :items="categoryOptions"
95
94
  @input="$emit('update:selected-categories', $event)"
96
- />
95
+ /> -->
97
96
  </div>
98
97
 
99
98
  <div v-if="cards.length < 1">
@@ -271,7 +270,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
271
270
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
272
271
 
273
272
  import Asd20SearchField from '../../../components/molecules/Asd20SearchField'
274
- import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
273
+ // import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
275
274
  import Asd20Card from '../../../components/molecules/Asd20Card'
276
275
  import Asd20Button from '../../../components/atoms/Asd20Button'
277
276
 
@@ -297,7 +296,7 @@ export default {
297
296
  Asd20NotificationGroup,
298
297
  Asd20QuicklinksMenu,
299
298
  Asd20SearchField,
300
- Asd20MultiselectInput,
299
+ // Asd20MultiselectInput,
301
300
  Asd20Card,
302
301
  Asd20Button,
303
302
  Intersect,
@@ -337,14 +336,14 @@ export default {
337
336
  // link: c.link.replace('/stories', '/announcements'),
338
337
  // }))
339
338
  },
340
- categoryOptions() {
341
- // get a unique array of categories with duplicates removed
342
- return [
343
- ...new Set(
344
- this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
345
- ),
346
- ]
347
- },
339
+ // categoryOptions() {
340
+ // // get a unique array of categories with duplicates removed
341
+ // return [
342
+ // ...new Set(
343
+ // this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
344
+ // ),
345
+ // ]
346
+ // },
348
347
  // computedCategoryOptions() {
349
348
  // // get a unique array of categories with duplicates removed
350
349
  // if (this.categoryOptions.length === 0) {
@@ -357,13 +356,13 @@ export default {
357
356
  // return this.categoryOptions
358
357
  // },
359
358
  },
360
- watch: {
361
- selectedCategories: function(newVal, oldVal) {
362
- if (newVal !== oldVal) {
363
- this.reset()
364
- }
365
- },
366
- },
359
+ // watch: {
360
+ // selectedCategories: function(newVal, oldVal) {
361
+ // if (newVal !== oldVal) {
362
+ // this.reset()
363
+ // }
364
+ // },
365
+ // },
367
366
  methods: {
368
367
  nextSet() {
369
368
  if (
@@ -79,7 +79,6 @@
79
79
  :secondary-messages="secondaryMessages"
80
80
  omit-detail-links
81
81
  omit-calls-to-action
82
- grid
83
82
  />
84
83
 
85
84
  <div class="secondary-content">
@@ -98,13 +97,13 @@
98
97
  @input="$emit('update:keywords', $event)"
99
98
  medium
100
99
  />
101
- <asd20-multiselect-input
100
+ <!-- <asd20-multiselect-input
102
101
  label="Categories"
103
102
  :taggable="false"
104
103
  :value="selectedCategories"
105
104
  :items="categoryOptions"
106
105
  @input="$emit('update:selected-categories', $event)"
107
- />
106
+ /> -->
108
107
  <!-- <asd20-multiselect-input
109
108
  role="listbox"
110
109
  aria-label="Choose a Category to Sort By"
@@ -315,7 +314,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
315
314
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
316
315
 
317
316
  import Asd20SearchField from '../../../components/molecules/Asd20SearchField'
318
- import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
317
+ // import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
319
318
  import Asd20Card from '../../../components/molecules/Asd20Card'
320
319
  import Asd20Button from '../../../components/atoms/Asd20Button'
321
320
 
@@ -341,7 +340,7 @@ export default {
341
340
  Asd20NotificationGroup,
342
341
  Asd20QuicklinksMenu,
343
342
  Asd20SearchField,
344
- Asd20MultiselectInput,
343
+ // Asd20MultiselectInput,
345
344
  Asd20Card,
346
345
  Asd20Button,
347
346
  Intersect,
@@ -374,22 +373,22 @@ export default {
374
373
  // link: c.link.replace('/stories', '/announcements'),
375
374
  // }))
376
375
  },
377
- categoryOptions() {
378
- // get a unique array of categories with duplicates removed
379
- return [
380
- ...new Set(
381
- this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
382
- ),
383
- ]
384
- },
385
- },
386
- watch: {
387
- selectedCategories: function(newVal, oldVal) {
388
- if (newVal !== oldVal) {
389
- this.reset()
390
- }
391
- },
376
+ // categoryOptions() {
377
+ // // get a unique array of categories with duplicates removed
378
+ // return [
379
+ // ...new Set(
380
+ // this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
381
+ // ),
382
+ // ]
383
+ // },
392
384
  },
385
+ // watch: {
386
+ // selectedCategories: function(newVal, oldVal) {
387
+ // if (newVal !== oldVal) {
388
+ // this.reset()
389
+ // }
390
+ // },
391
+ // },
393
392
  methods: {
394
393
  nextSet() {
395
394
  if (
@@ -97,13 +97,13 @@
97
97
  @input="$emit('update:keywords', $event)"
98
98
  medium
99
99
  />
100
- <asd20-multiselect-input
100
+ <!-- <asd20-multiselect-input
101
101
  label="Categories"
102
102
  :taggable="false"
103
103
  :value="selectedCategories"
104
104
  :items="categoryOptions"
105
105
  @input="$emit('update:selected-categories', $event)"
106
- />
106
+ /> -->
107
107
  </div>
108
108
 
109
109
  <div v-if="cards.length < 1">
@@ -273,7 +273,7 @@ import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMe
273
273
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
274
274
 
275
275
  import Asd20SearchField from '../../../components/molecules/Asd20SearchField'
276
- import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
276
+ // import Asd20MultiselectInput from '../../../components/atoms/Asd20MultiselectInput'
277
277
  import Asd20Card from '../../../components/molecules/Asd20Card'
278
278
  import Asd20Button from '../../../components/atoms/Asd20Button'
279
279
 
@@ -299,7 +299,7 @@ export default {
299
299
  Asd20NotificationGroup,
300
300
  Asd20QuicklinksMenu,
301
301
  Asd20SearchField,
302
- Asd20MultiselectInput,
302
+ // Asd20MultiselectInput,
303
303
  Asd20Card,
304
304
  Asd20Button,
305
305
  Intersect,
@@ -338,14 +338,14 @@ export default {
338
338
  // link: c.link.replace('/stories', '/announcements'),
339
339
  // }))
340
340
  },
341
- categoryOptions() {
342
- // get a unique array of categories with duplicates removed
343
- return [
344
- ...new Set(
345
- this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
346
- ),
347
- ]
348
- },
341
+ // categoryOptions() {
342
+ // // get a unique array of categories with duplicates removed
343
+ // return [
344
+ // ...new Set(
345
+ // this.cards.reduce((a, c) => a.concat(c.categories || []), []).sort()
346
+ // ),
347
+ // ]
348
+ // },
349
349
  // computedCategoryOptions() {
350
350
  // // get a unique array of categories with duplicates removed
351
351
  // if (this.categoryOptions.length === 0) {
@@ -358,13 +358,13 @@ export default {
358
358
  // return this.categoryOptions
359
359
  // },
360
360
  },
361
- watch: {
362
- selectedCategories: function(newVal, oldVal) {
363
- if (newVal !== oldVal) {
364
- this.reset()
365
- }
366
- },
367
- },
361
+ // watch: {
362
+ // selectedCategories: function(newVal, oldVal) {
363
+ // if (newVal !== oldVal) {
364
+ // this.reset()
365
+ // }
366
+ // },
367
+ // },
368
368
  methods: {
369
369
  nextSet() {
370
370
  if (