@asd20/ui 3.2.427 → 3.2.430
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/components/organisms/Asd20ImageHeader/index.vue +1 -1
- package/src/components/organisms/Asd20PageHeader/index.vue +1 -1
- package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +1 -1
- package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +57 -12
- package/src/data/page-queries/landing-page-query-result.json +1 -1
package/package.json
CHANGED
|
@@ -52,13 +52,6 @@
|
|
|
52
52
|
</template>
|
|
53
53
|
<!-- <asd20-breadcrumb slot="top" :links="breadcrumbLinks"></asd20-breadcrumb> -->
|
|
54
54
|
</asd20-image-header>
|
|
55
|
-
|
|
56
|
-
<asd20-feeds-section
|
|
57
|
-
:announcements="announcements"
|
|
58
|
-
:announcements-feed-props="announcementsFeedProps"
|
|
59
|
-
@announcements-in-view="$emit('announcements-in-view')"
|
|
60
|
-
></asd20-feeds-section>
|
|
61
|
-
|
|
62
55
|
<!-- Page Content -->
|
|
63
56
|
<asd20-page-content
|
|
64
57
|
:primary-messages="wayFindingPrimaryMessages"
|
|
@@ -77,10 +70,16 @@
|
|
|
77
70
|
></asd20-notification-group>
|
|
78
71
|
</client-only>
|
|
79
72
|
</template>
|
|
73
|
+
<template slot="before">
|
|
74
|
+
<asd20-feeds-section
|
|
75
|
+
:announcements="announcements"
|
|
76
|
+
:announcements-feed-props="announcementsFeedProps"
|
|
77
|
+
@announcements-in-view="$emit('announcements-in-view')"
|
|
78
|
+
></asd20-feeds-section>
|
|
79
|
+
</template>
|
|
80
80
|
|
|
81
81
|
<slot></slot>
|
|
82
82
|
</asd20-page-content>
|
|
83
|
-
|
|
84
83
|
<asd20-feeds-section
|
|
85
84
|
:stories="stories"
|
|
86
85
|
:stories-feed-props="storiesFeedProps"
|
|
@@ -211,10 +210,52 @@ export default {
|
|
|
211
210
|
}
|
|
212
211
|
}
|
|
213
212
|
}
|
|
213
|
+
.asd20-page-content {
|
|
214
|
+
.notification-group--inline {
|
|
215
|
+
margin-bottom: space(1);
|
|
216
|
+
}
|
|
217
|
+
.asd20-feeds-section {
|
|
218
|
+
margin-top: space(2);
|
|
219
|
+
.asd20-swiper-feed:first-child {
|
|
220
|
+
padding-top: space(2);
|
|
221
|
+
padding-bottom: space(1);
|
|
222
|
+
&::after {
|
|
223
|
+
top: space(1);
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
.asd20-swiper-feed:last-child {
|
|
227
|
+
// margin-top: space(-1);
|
|
228
|
+
padding-bottom: space(2);
|
|
229
|
+
&::after {
|
|
230
|
+
bottom: space(1);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
.asd20-feeds-section {
|
|
236
|
+
margin-top: space(1);
|
|
237
|
+
.asd20-swiper-feed:first-child {
|
|
238
|
+
padding-top: space(2);
|
|
239
|
+
padding-bottom: space(1);
|
|
240
|
+
&::after {
|
|
241
|
+
top: space(1);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
.asd20-swiper-feed:last-child {
|
|
245
|
+
// margin-top: space(-1);
|
|
246
|
+
padding-bottom: space(2);
|
|
247
|
+
&::after {
|
|
248
|
+
bottom: space(1);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
214
252
|
}
|
|
215
253
|
|
|
216
254
|
@media (min-width: 1024px) {
|
|
217
255
|
.asd20-template-wayfinding-image {
|
|
256
|
+
@include template-desktop;
|
|
257
|
+
margin-left: space(3);
|
|
258
|
+
margin-top: space(0);
|
|
218
259
|
.asd20-notification-group--floating {
|
|
219
260
|
position: absolute;
|
|
220
261
|
top: space(1);
|
|
@@ -226,11 +267,15 @@ export default {
|
|
|
226
267
|
// }
|
|
227
268
|
// }
|
|
228
269
|
}
|
|
229
|
-
@include template-desktop;
|
|
230
|
-
margin-left: space(3);
|
|
231
|
-
margin-top: 0;
|
|
232
270
|
.asd20-page-content {
|
|
233
|
-
|
|
271
|
+
.notification-group--inline {
|
|
272
|
+
flex-basis: 100%;
|
|
273
|
+
margin: space(2) space(3) space(0) space(3);
|
|
274
|
+
|
|
275
|
+
.notification:last-child {
|
|
276
|
+
margin-bottom: space(1);
|
|
277
|
+
}
|
|
278
|
+
}
|
|
234
279
|
}
|
|
235
280
|
}
|
|
236
281
|
}
|
|
@@ -2292,7 +2292,7 @@
|
|
|
2292
2292
|
"id": "f42b1984-29f1-419b-a23a-3245c6647b3e",
|
|
2293
2293
|
"title": "Announcement Feed",
|
|
2294
2294
|
"type": "text",
|
|
2295
|
-
"value":
|
|
2295
|
+
"value": "[{\"title\":\"District Announcements\",\"link\":\"/district-announcements\",\"keywords\":\"\",\"categories\":[],\"tags\":[\"District Homepage\"],\"organizations\":[\"26eaf390-d8ab-11e9-a3a8-5de5bba4f125\"]}]",
|
|
2296
2296
|
"validationPattern": null,
|
|
2297
2297
|
"required": false
|
|
2298
2298
|
},
|