@asd20/ui 3.2.499 → 3.2.501
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
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
<asd20-people-list
|
|
12
12
|
class="relatedPeople"
|
|
13
|
-
v-if="peopleFeedProps && !noPeople"
|
|
13
|
+
v-if="peopleFeedProps && people.length > 0 && !noPeople"
|
|
14
14
|
:people="people"
|
|
15
15
|
v-bind="peopleFeedProps"
|
|
16
16
|
:multi-column="full"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
<intersect v-if="filesFeedProps" @enter="$emit('files-in-view')">
|
|
44
44
|
<asd20-file-list
|
|
45
|
-
v-if="filesFeedProps && !noFiles"
|
|
45
|
+
v-if="filesFeedProps && files.length > 0 && !noFiles"
|
|
46
46
|
class="relatedFiles"
|
|
47
47
|
v-bind="filesFeedProps"
|
|
48
48
|
:files="files"
|
|
@@ -61,6 +61,18 @@
|
|
|
61
61
|
@toggle-all="$emit('toggle-all')"
|
|
62
62
|
></asd20-notification-group>
|
|
63
63
|
</client-only>
|
|
64
|
+
|
|
65
|
+
<!-- Feeds -->
|
|
66
|
+
<asd20-feeds-section
|
|
67
|
+
class="asd20-feeds-section--top"
|
|
68
|
+
:events="events"
|
|
69
|
+
:events-feed-props="eventsFeedProps"
|
|
70
|
+
@events-in-view="$emit('events-in-view')"
|
|
71
|
+
:stories="stories"
|
|
72
|
+
:stories-feed-props="storiesFeedProps"
|
|
73
|
+
@stories-in-view="$emit('stories-in-view')"
|
|
74
|
+
></asd20-feeds-section>
|
|
75
|
+
|
|
64
76
|
<!-- Page Content -->
|
|
65
77
|
<asd20-page-content
|
|
66
78
|
:primary-messages="primaryMessages"
|
|
@@ -228,11 +240,11 @@
|
|
|
228
240
|
/></asd20-widgets-section>
|
|
229
241
|
|
|
230
242
|
<!-- Feeds -->
|
|
231
|
-
<asd20-feeds-section
|
|
243
|
+
<!-- <asd20-feeds-section
|
|
232
244
|
:stories="stories"
|
|
233
245
|
:stories-feed-props="storiesFeedProps"
|
|
234
246
|
@stories-in-view="$emit('stories-in-view')"
|
|
235
|
-
></asd20-feeds-section>
|
|
247
|
+
></asd20-feeds-section> -->
|
|
236
248
|
|
|
237
249
|
<!-- Quick Links -->
|
|
238
250
|
<asd20-quicklinks-menu slot="before-footer" :quick-links="quickLinks">
|
|
@@ -411,6 +423,23 @@ export default {
|
|
|
411
423
|
.notification-group--inline {
|
|
412
424
|
margin: space(2) space(1) space(1) space(1);
|
|
413
425
|
}
|
|
426
|
+
.asd20-feeds-section--top {
|
|
427
|
+
margin-top: space(1);
|
|
428
|
+
.asd20-swiper-feed:first-child {
|
|
429
|
+
padding-top: space(2);
|
|
430
|
+
padding-bottom: space(1);
|
|
431
|
+
&::after {
|
|
432
|
+
top: space(1);
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
.asd20-swiper-feed:last-child {
|
|
436
|
+
// margin-top: space(-1);
|
|
437
|
+
padding-bottom: space(2);
|
|
438
|
+
&::after {
|
|
439
|
+
bottom: space(1);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
}
|
|
414
443
|
.article-pagination {
|
|
415
444
|
display: flex;
|
|
416
445
|
align-items: center;
|