@asd20/ui 3.2.601 → 3.2.603
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 +1 -1
- package/src/assets/icons/single-color/twitter.svg +10 -1
- package/src/components/atoms/icons/Asd20TwitterSvg.vue +1 -1
- package/src/components/molecules/Asd20Share/index.vue +1 -1
- package/src/components/organisms/Asd20VideoHeader/index.vue +1 -1
- package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +19 -20
- package/src/components/templates/Asd20ArticleListTemplate/index.vue +19 -20
- package/src/components/templates/Asd20ClubsTemplate/index.vue +19 -19
- package/src/data/page-queries/campus-page-query-result.json +1 -1
- package/src/data/page-queries/digest-page-query-result.json +1 -1
- package/src/data/page-queries/filelist-page-query-result.json +1 -1
- package/src/data/page-queries/home-page-query-result.json +1 -1
- package/src/data/page-queries/landing-page-query-result.json +1 -1
- package/src/data/page-queries/page-not-found.json +1 -1
- package/src/data/page-queries/profile-page-query-result.json +1 -1
- package/src/data/page-queries/salary-calculator-page-result.json +1 -1
- package/src/data/page-queries/story-index-page-query-result.json +1 -1
- package/src/data/page-queries/sublanding-page-query-result.json +1 -1
- package/src/data/page-queries/video-page-query-result.json +1 -1
- package/src/data/social-links.json +1 -1
package/package.json
CHANGED
|
@@ -1 +1,10 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><title>twitter</title
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><title>twitter</title>
|
|
2
|
+
<g id="line">
|
|
3
|
+
<path
|
|
4
|
+
class="line"
|
|
5
|
+
fill="currentColor"
|
|
6
|
+
d="m13.59,9.67L22.09,0h-2.01l-7.38,8.4L6.8,0H0l8.92,12.7L0,22.84h2.01l7.8-8.87,6.23,8.87h6.8l-9.25-13.17h0Zm-2.76,3.14l-.9-1.26L2.74,1.48h3.09l5.8,8.12.9,1.26,7.54,10.55h-3.09l-6.15-8.61h0Z"
|
|
7
|
+
/>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
10
|
+
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<path
|
|
4
4
|
class="line"
|
|
5
5
|
fill="currentColor"
|
|
6
|
-
d="
|
|
6
|
+
d="m18.19,14.28l8.51-9.71h-2.02l-7.39,8.43-5.9-8.43h-6.81l8.92,12.75-8.92,10.19h2.02l7.8-8.91,6.23,8.91h6.81l-9.26-13.23h0Zm-2.76,3.15l-.9-1.27L7.33,6.05h3.1l5.81,8.16.9,1.27,7.55,10.6h-3.1l-6.16-8.65h0Z"
|
|
7
7
|
/>
|
|
8
8
|
</g>
|
|
9
9
|
</template>
|
|
@@ -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
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
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
|
-
|
|
362
|
-
|
|
363
|
-
|
|
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
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
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
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
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
|
-
|
|
363
|
-
|
|
364
|
-
|
|
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 (
|
|
@@ -1044,7 +1044,7 @@
|
|
|
1044
1044
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
1045
1045
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
1046
1046
|
"order": null,
|
|
1047
|
-
"title": "
|
|
1047
|
+
"title": "X",
|
|
1048
1048
|
"url": "https://twitter.com/AcademyD20",
|
|
1049
1049
|
"icon": "twitter",
|
|
1050
1050
|
"childrenMenuItems": []
|
|
@@ -765,7 +765,7 @@
|
|
|
765
765
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
766
766
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
767
767
|
"order": null,
|
|
768
|
-
"title": "
|
|
768
|
+
"title": "X",
|
|
769
769
|
"url": "https://twitter.com/AcademyD20",
|
|
770
770
|
"icon": "twitter",
|
|
771
771
|
"childrenMenuItems": []
|
|
@@ -679,7 +679,7 @@
|
|
|
679
679
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
680
680
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
681
681
|
"order": null,
|
|
682
|
-
"title": "
|
|
682
|
+
"title": "X",
|
|
683
683
|
"url": "https://twitter.com/AcademyD20",
|
|
684
684
|
"icon": "twitter",
|
|
685
685
|
"childrenMenuItems": []
|
|
@@ -1187,7 +1187,7 @@
|
|
|
1187
1187
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
1188
1188
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
1189
1189
|
"order": null,
|
|
1190
|
-
"title": "
|
|
1190
|
+
"title": "X",
|
|
1191
1191
|
"url": "https://twitter.com/AcademyD20",
|
|
1192
1192
|
"icon": "twitter",
|
|
1193
1193
|
"childrenMenuItems": []
|
|
@@ -1390,7 +1390,7 @@
|
|
|
1390
1390
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
1391
1391
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
1392
1392
|
"order": null,
|
|
1393
|
-
"title": "
|
|
1393
|
+
"title": "X",
|
|
1394
1394
|
"url": "https://twitter.com/AcademyD20",
|
|
1395
1395
|
"icon": "twitter",
|
|
1396
1396
|
"childrenMenuItems": []
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
657
657
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
658
658
|
"order": null,
|
|
659
|
-
"title": "
|
|
659
|
+
"title": "X",
|
|
660
660
|
"url": "https://twitter.com/AcademyD20",
|
|
661
661
|
"icon": "twitter",
|
|
662
662
|
"childrenMenuItems": []
|
|
@@ -1278,7 +1278,7 @@
|
|
|
1278
1278
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
1279
1279
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
1280
1280
|
"order": null,
|
|
1281
|
-
"title": "
|
|
1281
|
+
"title": "X",
|
|
1282
1282
|
"url": "https://twitter.com/AcademyD20",
|
|
1283
1283
|
"icon": "twitter",
|
|
1284
1284
|
"childrenMenuItems": []
|
|
@@ -780,7 +780,7 @@
|
|
|
780
780
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
781
781
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
782
782
|
"order": null,
|
|
783
|
-
"title": "
|
|
783
|
+
"title": "X",
|
|
784
784
|
"url": "https://twitter.com/AcademyD20",
|
|
785
785
|
"icon": "twitter",
|
|
786
786
|
"childrenMenuItems": []
|
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
710
710
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
711
711
|
"order": null,
|
|
712
|
-
"title": "
|
|
712
|
+
"title": "X",
|
|
713
713
|
"url": "https://twitter.com/AcademyD20",
|
|
714
714
|
"icon": "twitter",
|
|
715
715
|
"childrenMenuItems": []
|
|
@@ -775,7 +775,7 @@
|
|
|
775
775
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
776
776
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
777
777
|
"order": null,
|
|
778
|
-
"title": "
|
|
778
|
+
"title": "X",
|
|
779
779
|
"url": "https://twitter.com/AcademyD20",
|
|
780
780
|
"icon": "twitter",
|
|
781
781
|
"childrenMenuItems": []
|
|
@@ -1045,7 +1045,7 @@
|
|
|
1045
1045
|
"id": "c19b9991-6654-4ff0-bf0a-16ecb8444515",
|
|
1046
1046
|
"parentMenuItemId": "99ba73ae-a349-4225-a6de-4907567fc527",
|
|
1047
1047
|
"order": null,
|
|
1048
|
-
"title": "
|
|
1048
|
+
"title": "X",
|
|
1049
1049
|
"url": "https://twitter.com/AcademyD20",
|
|
1050
1050
|
"icon": "twitter",
|
|
1051
1051
|
"childrenMenuItems": []
|