@asd20/ui-next 2.0.3 → 2.0.4
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/components/atoms/Asd20Badge/index.vue +1 -0
- package/src/components/molecules/Asd20Share/index.vue +1 -0
- package/src/components/organisms/Asd20AiSearch/index.vue +4 -0
- package/src/components/organisms/Asd20CampusHeader/index.vue +5 -7
- package/src/components/organisms/Asd20ImageGallery/index.vue +1 -0
- package/src/components/organisms/Asd20ImageHeader/index.vue +4 -6
- package/src/components/organisms/Asd20PageHeader/index.vue +4 -6
- package/src/components/organisms/Asd20SiteMenu/index.vue +2 -0
- package/src/components/organisms/Asd20SiteNavigation/index.vue +10 -8
- package/src/components/organisms/Asd20SiteSearch/index.vue +1 -0
- package/src/components/templates/Asd20AppTemplate/index.vue +18 -24
- package/src/components/templates/Asd20ArticleDigestCompactTemplate/index.vue +20 -26
- package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +20 -26
- package/src/components/templates/Asd20ArticleListTemplate/index.vue +20 -26
- package/src/components/templates/Asd20ArticleTemplate/index.vue +14 -18
- package/src/components/templates/Asd20BasePageTemplate/index.vue +26 -34
- package/src/components/templates/Asd20CampusDetailTemplate/index.vue +20 -26
- package/src/components/templates/Asd20CampusTemplate/index.vue +50 -58
- package/src/components/templates/Asd20ClubsTemplate/index.vue +20 -26
- package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +20 -26
- package/src/components/templates/Asd20DetailImageFullTemplate/index.vue +20 -26
- package/src/components/templates/Asd20DetailImageTemplate/index.vue +20 -26
- package/src/components/templates/Asd20DetailTemplate/index.vue +20 -26
- package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +45 -55
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +45 -55
- package/src/components/templates/Asd20FileListPageTemplate/index.vue +20 -26
- package/src/components/templates/Asd20GroupFeatureTemplate/index.vue +20 -26
- package/src/components/templates/Asd20LoginsTemplate/index.vue +21 -27
- package/src/components/templates/Asd20PeopleFeatureTemplate/index.vue +20 -26
- package/src/components/templates/Asd20ProfileTemplate/index.vue +20 -26
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.vue +20 -26
- package/src/components/templates/Asd20SchoolHomeTemplate/index.vue +84 -96
- package/src/components/templates/Asd20SchoolHomeVideoTemplate/index.vue +81 -93
- package/src/components/templates/Asd20WayfindingAccessibilityTemplate/index.vue +21 -27
- package/src/components/templates/Asd20WayfindingAlternateTemplate/index.vue +21 -27
- package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +21 -27
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +21 -27
- package/src/design/_template.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.4](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.3...ui-next-v2.0.4) (2026-03-27)
|
|
4
|
+
|
|
3
5
|
## [2.0.3](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.2...ui-next-v2.0.3) (2026-03-27)
|
|
4
6
|
|
|
5
7
|
## [2.0.2](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.1...ui-next-v2.0.2) (2026-03-27)
|
package/package.json
CHANGED
|
@@ -634,6 +634,7 @@ export default {
|
|
|
634
634
|
}
|
|
635
635
|
|
|
636
636
|
.ai-search-panel-enter,
|
|
637
|
+
.ai-search-panel-enter-from,
|
|
637
638
|
.ai-search-panel-leave-to {
|
|
638
639
|
opacity: 0;
|
|
639
640
|
}
|
|
@@ -659,8 +660,10 @@ export default {
|
|
|
659
660
|
}
|
|
660
661
|
|
|
661
662
|
.ai-search-panel-enter .asd20-ai-search__site-search,
|
|
663
|
+
.ai-search-panel-enter-from .asd20-ai-search__site-search,
|
|
662
664
|
.ai-search-panel-leave-to .asd20-ai-search__site-search,
|
|
663
665
|
.ai-search-panel-enter .asd20-ai-search__close,
|
|
666
|
+
.ai-search-panel-enter-from .asd20-ai-search__close,
|
|
664
667
|
.ai-search-panel-leave-to .asd20-ai-search__close {
|
|
665
668
|
transform: scale3d(0.16, 0.1, 1);
|
|
666
669
|
opacity: 0;
|
|
@@ -672,6 +675,7 @@ export default {
|
|
|
672
675
|
}
|
|
673
676
|
|
|
674
677
|
.ai-search-panel-enter .asd20-ai-search__backdrop,
|
|
678
|
+
.ai-search-panel-enter-from .asd20-ai-search__backdrop,
|
|
675
679
|
.ai-search-panel-leave-to .asd20-ai-search__backdrop {
|
|
676
680
|
opacity: 0;
|
|
677
681
|
}
|
|
@@ -14,13 +14,11 @@
|
|
|
14
14
|
mq !== 'md'
|
|
15
15
|
"
|
|
16
16
|
></asd20-district-logo>
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
></asd20-organization-picker>
|
|
23
|
-
</client-only>
|
|
17
|
+
<asd20-organization-picker
|
|
18
|
+
v-show="organization.title !== 'Academy District 20'"
|
|
19
|
+
:organization-options="organizationOptions"
|
|
20
|
+
:organization="organization"
|
|
21
|
+
></asd20-organization-picker>
|
|
24
22
|
<slot name="top" />
|
|
25
23
|
</div>
|
|
26
24
|
|
|
@@ -9,12 +9,10 @@
|
|
|
9
9
|
v-if="organizationOptions.length > 0"
|
|
10
10
|
class="asd20-page-header__top"
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
></asd20-organization-picker>
|
|
17
|
-
</client-only>
|
|
12
|
+
<asd20-organization-picker
|
|
13
|
+
:organization-options="organizationOptions"
|
|
14
|
+
:organization="organization"
|
|
15
|
+
></asd20-organization-picker>
|
|
18
16
|
<slot name="top" />
|
|
19
17
|
</div>
|
|
20
18
|
<div class="asd20-page-header__main">
|
|
@@ -9,12 +9,10 @@
|
|
|
9
9
|
v-if="organizationOptions.length > 0"
|
|
10
10
|
class="asd20-page-header__top"
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
></asd20-organization-picker>
|
|
17
|
-
</client-only>
|
|
12
|
+
<asd20-organization-picker
|
|
13
|
+
:organization-options="organizationOptions"
|
|
14
|
+
:organization="organization"
|
|
15
|
+
></asd20-organization-picker>
|
|
18
16
|
<slot name="top" />
|
|
19
17
|
</div>
|
|
20
18
|
<div class="asd20-page-header__main">
|
|
@@ -340,6 +340,7 @@ export default {
|
|
|
340
340
|
transition: all asd20-speed(1) $anim-easing;
|
|
341
341
|
}
|
|
342
342
|
.slide-right-enter,
|
|
343
|
+
.slide-right-enter-from,
|
|
343
344
|
.slide-right-leave-to {
|
|
344
345
|
transform: translate3d(-100%, 0, 0);
|
|
345
346
|
}
|
|
@@ -348,6 +349,7 @@ export default {
|
|
|
348
349
|
transition: all asd20-speed(1) $anim-easing;
|
|
349
350
|
}
|
|
350
351
|
.slide-left-enter,
|
|
352
|
+
.slide-left-enter-from,
|
|
351
353
|
.slide-left-leave-to {
|
|
352
354
|
transform: translate3d(100%, 0, 0);
|
|
353
355
|
}
|
|
@@ -15,14 +15,12 @@
|
|
|
15
15
|
@update:searchActive="$emit('update:searchOpen', $event)"
|
|
16
16
|
@keyboardTriggeredLastAction="keyboardTriggeredLastAction = $event"
|
|
17
17
|
>
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
></asd20-organization-picker>
|
|
25
|
-
</client-only>
|
|
18
|
+
<asd20-organization-picker
|
|
19
|
+
:organization-options="organizationOptions"
|
|
20
|
+
:organization="organization"
|
|
21
|
+
logo-size="xs"
|
|
22
|
+
abbreviated
|
|
23
|
+
></asd20-organization-picker>
|
|
26
24
|
<slot name="nav" />
|
|
27
25
|
</asd20-navbar>
|
|
28
26
|
|
|
@@ -177,6 +175,7 @@ export default {
|
|
|
177
175
|
transition: all asd20-speed(1) $anim-easing;
|
|
178
176
|
}
|
|
179
177
|
.asd20-site-menu.slide-enter,
|
|
178
|
+
.asd20-site-menu.slide-enter-from,
|
|
180
179
|
.asd20-site-menu.slide-leave-to {
|
|
181
180
|
:deep(.asd20-site-menu__viewport) {
|
|
182
181
|
transform: translate3d(-100%, 0, 0);
|
|
@@ -184,12 +183,14 @@ export default {
|
|
|
184
183
|
}
|
|
185
184
|
}
|
|
186
185
|
.asd20-action-menu.slide-enter,
|
|
186
|
+
.asd20-action-menu.slide-enter-from,
|
|
187
187
|
.asd20-action-menu.slide-leave-to {
|
|
188
188
|
transform: translate3d(-100%, 0, 0);
|
|
189
189
|
opacity: 0;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.asd20-site-search.slide-enter,
|
|
193
|
+
.asd20-site-search.slide-enter-from,
|
|
193
194
|
.asd20-site-search.slide-leave-to {
|
|
194
195
|
transform: translate3d(100%, 0, 0);
|
|
195
196
|
opacity: 0;
|
|
@@ -255,6 +256,7 @@ export default {
|
|
|
255
256
|
left: space(3);
|
|
256
257
|
}
|
|
257
258
|
.asd20-site-search.slide-enter,
|
|
259
|
+
.asd20-site-search.slide-enter-from,
|
|
258
260
|
.asd20-site-search.slide-leave-to {
|
|
259
261
|
transform: translate3d(-100%, 0, 0);
|
|
260
262
|
opacity: 0;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="asd20-app-template">
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
/>
|
|
10
|
-
</client-only>
|
|
3
|
+
<asd20-notification-group
|
|
4
|
+
:notifications="activeNotificationsByType.banner"
|
|
5
|
+
group-type="banner"
|
|
6
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
7
|
+
@toggle-all="$emit('toggle-all')"
|
|
8
|
+
/>
|
|
11
9
|
<asd20-app-header
|
|
12
10
|
v-if="title || $slots.header"
|
|
13
11
|
:title="title"
|
|
@@ -107,14 +105,12 @@
|
|
|
107
105
|
</div>
|
|
108
106
|
|
|
109
107
|
<div class="asd20-app-template__main">
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
/>
|
|
117
|
-
</client-only>
|
|
108
|
+
<asd20-notification-group
|
|
109
|
+
:notifications="activeNotificationsByType.inline"
|
|
110
|
+
group-type="inline"
|
|
111
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
112
|
+
@toggle-all="$emit('toggle-all')"
|
|
113
|
+
/>
|
|
118
114
|
<slot />
|
|
119
115
|
</div>
|
|
120
116
|
</div>
|
|
@@ -147,14 +143,12 @@
|
|
|
147
143
|
<slot />
|
|
148
144
|
</div>
|
|
149
145
|
</div>
|
|
150
|
-
<
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
/>
|
|
157
|
-
</client-only>
|
|
146
|
+
<asd20-notification-group
|
|
147
|
+
:notifications="activeNotificationsByType.floating"
|
|
148
|
+
group-type="floating"
|
|
149
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
150
|
+
@toggle-all="$emit('toggle-all')"
|
|
151
|
+
/>
|
|
158
152
|
</div>
|
|
159
153
|
</template>
|
|
160
154
|
|
|
@@ -17,14 +17,12 @@
|
|
|
17
17
|
</asd20-site-navigation>
|
|
18
18
|
|
|
19
19
|
<!-- Banner Notifications -->
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/>
|
|
27
|
-
</client-only>
|
|
20
|
+
<asd20-notification-group
|
|
21
|
+
:notifications="activeNotificationsByType.banner"
|
|
22
|
+
group-type="banner"
|
|
23
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
24
|
+
@toggle-all="$emit('toggle-all')"
|
|
25
|
+
/>
|
|
28
26
|
|
|
29
27
|
<!-- Page Header -->
|
|
30
28
|
<asd20-page-header
|
|
@@ -39,29 +37,25 @@
|
|
|
39
37
|
>
|
|
40
38
|
<!-- Floating Notifications -->
|
|
41
39
|
<template #top>
|
|
42
|
-
<
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
></asd20-notification-group>
|
|
51
|
-
</client-only>
|
|
40
|
+
<asd20-notification-group
|
|
41
|
+
class="asd20-notification-group--floating"
|
|
42
|
+
:notifications="activeNotificationsByType.floating"
|
|
43
|
+
:total-dismissed-notifications="totalDismissedNotifications"
|
|
44
|
+
group-type="floating"
|
|
45
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
46
|
+
@toggle-all="$emit('toggle-all')"
|
|
47
|
+
></asd20-notification-group>
|
|
52
48
|
</template>
|
|
53
49
|
<!-- <template #top><asd20-breadcrumb :links="breadcrumbLinks"></asd20-breadcrumb></template> -->
|
|
54
50
|
</asd20-page-header>
|
|
55
51
|
|
|
56
52
|
<!-- Inline-Notifications -->
|
|
57
|
-
<
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
></asd20-notification-group>
|
|
64
|
-
</client-only>
|
|
53
|
+
<asd20-notification-group
|
|
54
|
+
:notifications="activeNotificationsByType.inline"
|
|
55
|
+
group-type="inline"
|
|
56
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
57
|
+
@toggle-all="$emit('toggle-all')"
|
|
58
|
+
></asd20-notification-group>
|
|
65
59
|
|
|
66
60
|
<!-- Page Content -->
|
|
67
61
|
<asd20-page-content
|
|
@@ -17,14 +17,12 @@
|
|
|
17
17
|
</asd20-site-navigation>
|
|
18
18
|
|
|
19
19
|
<!-- Banner Notifications -->
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/>
|
|
27
|
-
</client-only>
|
|
20
|
+
<asd20-notification-group
|
|
21
|
+
:notifications="activeNotificationsByType.banner"
|
|
22
|
+
group-type="banner"
|
|
23
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
24
|
+
@toggle-all="$emit('toggle-all')"
|
|
25
|
+
/>
|
|
28
26
|
|
|
29
27
|
<!-- Page Header -->
|
|
30
28
|
<asd20-page-header
|
|
@@ -39,29 +37,25 @@
|
|
|
39
37
|
>
|
|
40
38
|
<!-- Floating Notifications -->
|
|
41
39
|
<template #top>
|
|
42
|
-
<
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
></asd20-notification-group>
|
|
51
|
-
</client-only>
|
|
40
|
+
<asd20-notification-group
|
|
41
|
+
class="asd20-notification-group--floating"
|
|
42
|
+
:notifications="activeNotificationsByType.floating"
|
|
43
|
+
:total-dismissed-notifications="totalDismissedNotifications"
|
|
44
|
+
group-type="floating"
|
|
45
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
46
|
+
@toggle-all="$emit('toggle-all')"
|
|
47
|
+
></asd20-notification-group>
|
|
52
48
|
</template>
|
|
53
49
|
<!-- <template #top><asd20-breadcrumb :links="breadcrumbLinks"></asd20-breadcrumb></template> -->
|
|
54
50
|
</asd20-page-header>
|
|
55
51
|
|
|
56
52
|
<!-- Inline-Notifications -->
|
|
57
|
-
<
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
></asd20-notification-group>
|
|
64
|
-
</client-only>
|
|
53
|
+
<asd20-notification-group
|
|
54
|
+
:notifications="activeNotificationsByType.inline"
|
|
55
|
+
group-type="inline"
|
|
56
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
57
|
+
@toggle-all="$emit('toggle-all')"
|
|
58
|
+
></asd20-notification-group>
|
|
65
59
|
|
|
66
60
|
<!-- Page Content -->
|
|
67
61
|
<asd20-page-content
|
|
@@ -17,14 +17,12 @@
|
|
|
17
17
|
</asd20-site-navigation>
|
|
18
18
|
|
|
19
19
|
<!-- Banner Notifications -->
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/>
|
|
27
|
-
</client-only>
|
|
20
|
+
<asd20-notification-group
|
|
21
|
+
:notifications="activeNotificationsByType.banner"
|
|
22
|
+
group-type="banner"
|
|
23
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
24
|
+
@toggle-all="$emit('toggle-all')"
|
|
25
|
+
/>
|
|
28
26
|
<!-- Page Header -->
|
|
29
27
|
<asd20-page-header
|
|
30
28
|
v-if="pageHeaderContent"
|
|
@@ -38,29 +36,25 @@
|
|
|
38
36
|
>
|
|
39
37
|
<!-- Floating Notifications -->
|
|
40
38
|
<template #top>
|
|
41
|
-
<
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
></asd20-notification-group>
|
|
50
|
-
</client-only>
|
|
39
|
+
<asd20-notification-group
|
|
40
|
+
class="asd20-notification-group--floating"
|
|
41
|
+
:notifications="activeNotificationsByType.floating"
|
|
42
|
+
:total-dismissed-notifications="totalDismissedNotifications"
|
|
43
|
+
group-type="floating"
|
|
44
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
45
|
+
@toggle-all="$emit('toggle-all')"
|
|
46
|
+
></asd20-notification-group>
|
|
51
47
|
</template>
|
|
52
48
|
<!-- <template #top><asd20-breadcrumb :links="breadcrumbLinks"></asd20-breadcrumb></template> -->
|
|
53
49
|
</asd20-page-header>
|
|
54
50
|
|
|
55
51
|
<!-- Inline-Notifications -->
|
|
56
|
-
<
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
></asd20-notification-group>
|
|
63
|
-
</client-only>
|
|
52
|
+
<asd20-notification-group
|
|
53
|
+
:notifications="activeNotificationsByType.inline"
|
|
54
|
+
group-type="inline"
|
|
55
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
56
|
+
@toggle-all="$emit('toggle-all')"
|
|
57
|
+
></asd20-notification-group>
|
|
64
58
|
|
|
65
59
|
<!-- Feeds -->
|
|
66
60
|
<asd20-feeds-section
|
|
@@ -17,14 +17,12 @@
|
|
|
17
17
|
</asd20-site-navigation>
|
|
18
18
|
|
|
19
19
|
<!-- Banner Notifications -->
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/>
|
|
27
|
-
</client-only>
|
|
20
|
+
<asd20-notification-group
|
|
21
|
+
:notifications="activeNotificationsByType.banner"
|
|
22
|
+
group-type="banner"
|
|
23
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
24
|
+
@toggle-all="$emit('toggle-all')"
|
|
25
|
+
/>
|
|
28
26
|
|
|
29
27
|
<!-- Page Header -->
|
|
30
28
|
<asd20-page-header
|
|
@@ -42,16 +40,14 @@
|
|
|
42
40
|
>
|
|
43
41
|
<!-- Floating Notifications -->
|
|
44
42
|
<template #top>
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
></asd20-notification-group>
|
|
54
|
-
</client-only>
|
|
43
|
+
<asd20-notification-group
|
|
44
|
+
class="asd20-notification-group--floating"
|
|
45
|
+
:notifications="activeNotificationsByType.floating"
|
|
46
|
+
:total-dismissed-notifications="totalDismissedNotifications"
|
|
47
|
+
group-type="floating"
|
|
48
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
49
|
+
@toggle-all="$emit('toggle-all')"
|
|
50
|
+
></asd20-notification-group>
|
|
55
51
|
</template>
|
|
56
52
|
</asd20-page-header>
|
|
57
53
|
|
|
@@ -4,14 +4,12 @@
|
|
|
4
4
|
<asd20-skip-to />
|
|
5
5
|
|
|
6
6
|
<!-- Banner Notifications -->
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
></asd20-notification-group>
|
|
14
|
-
</client-only>
|
|
7
|
+
<asd20-notification-group
|
|
8
|
+
:notifications="activeNotificationsByType.banner"
|
|
9
|
+
group-type="banner"
|
|
10
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
11
|
+
@toggle-all="$emit('toggle-all')"
|
|
12
|
+
></asd20-notification-group>
|
|
15
13
|
|
|
16
14
|
<!-- Site Navigation -->
|
|
17
15
|
<asd20-site-navigation
|
|
@@ -41,28 +39,24 @@
|
|
|
41
39
|
>
|
|
42
40
|
<!-- Floating Notifications -->
|
|
43
41
|
<template #top>
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
></asd20-notification-group>
|
|
53
|
-
</client-only>
|
|
42
|
+
<asd20-notification-group
|
|
43
|
+
class="asd20-notification-group--floating"
|
|
44
|
+
:notifications="activeNotificationsByType.floating"
|
|
45
|
+
:total-dismissed-notifications="totalDismissedNotifications"
|
|
46
|
+
group-type="floating"
|
|
47
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
48
|
+
@toggle-all="$emit('toggle-all')"
|
|
49
|
+
></asd20-notification-group>
|
|
54
50
|
</template>
|
|
55
51
|
</asd20-page-header>
|
|
56
52
|
|
|
57
53
|
<!-- Inline-Notifications -->
|
|
58
|
-
<
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
></asd20-notification-group>
|
|
65
|
-
</client-only>
|
|
54
|
+
<asd20-notification-group
|
|
55
|
+
:notifications="activeNotificationsByType.inline"
|
|
56
|
+
group-type="inline"
|
|
57
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
58
|
+
@toggle-all="$emit('toggle-all')"
|
|
59
|
+
></asd20-notification-group>
|
|
66
60
|
|
|
67
61
|
<!-- Page Content -->
|
|
68
62
|
<asd20-page-content
|
|
@@ -111,14 +105,12 @@
|
|
|
111
105
|
|
|
112
106
|
<!-- Inline-Notifications -->
|
|
113
107
|
<template>
|
|
114
|
-
<
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
></asd20-notification-group>
|
|
121
|
-
</client-only>
|
|
108
|
+
<asd20-notification-group
|
|
109
|
+
:notifications="activeNotificationsByType.inline"
|
|
110
|
+
group-type="inline"
|
|
111
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
112
|
+
@toggle-all="$emit('toggle-all')"
|
|
113
|
+
></asd20-notification-group>
|
|
122
114
|
</template>
|
|
123
115
|
|
|
124
116
|
<slot name="before-footer" />
|