@asd20/ui 3.2.407 → 3.2.408

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.407",
8
+ "version": "3.2.408",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -12,6 +12,20 @@
12
12
  @toggle-all="$emit('toggle-all')"
13
13
  />
14
14
  </client-only>
15
+
16
+ <!-- Site Navigation -->
17
+ <asd20-site-navigation
18
+ :navigation="navigation"
19
+ :action-items="actionItems"
20
+ @update:menuOpen="$emit('update:menuOpen', $event)"
21
+ :menu-open="menuOpen"
22
+ @update:searchOpen="$emit('update:searchOpen', $event)"
23
+ :search-open="searchOpen"
24
+ :organization="organization"
25
+ :organization-options="organizationOptions"
26
+ >
27
+ </asd20-site-navigation>
28
+
15
29
  <!-- Page Header -->
16
30
  <asd20-page-header
17
31
  id="page-header"
@@ -40,18 +54,6 @@
40
54
  </template>
41
55
  </asd20-page-header>
42
56
 
43
- <!-- Site Navigation -->
44
- <asd20-site-navigation
45
- :navigation="navigation"
46
- :action-items="actionItems"
47
- @update:menuOpen="$emit('update:menuOpen', $event)"
48
- :menu-open="menuOpen"
49
- @update:searchOpen="$emit('update:searchOpen', $event)"
50
- :search-open="searchOpen"
51
- :organization="organization"
52
- :organization-options="organizationOptions"
53
- >
54
- </asd20-site-navigation>
55
57
  <!-- Inline-Notifications -->
56
58
  <client-only>
57
59
  <asd20-notification-group
@@ -75,6 +77,7 @@
75
77
  v-bind="widgetsSectionProps.sidebar"
76
78
  @events-in-view="$emit('events-in-view')"
77
79
  @files-in-view="$emit('files-in-view')"
80
+ @people-in-view="$emit('people-in-view')"
78
81
  ></asd20-widgets-section>
79
82
  </asd20-page-content>
80
83
 
@@ -141,8 +144,6 @@ import Asd20PageFooter from '../../../components/organisms/Asd20PageFooter'
141
144
  import Asd20QuicklinksMenu from '../../../components/organisms/Asd20QuicklinksMenu'
142
145
  import Asd20NotificationGroup from '@asd20/notifications-ui/src/components/Asd20NotificationGroup'
143
146
 
144
- // import Intersect from 'vue-intersect'
145
-
146
147
  // Mixins
147
148
  import pageTemplateMixin from '../../../mixins/pageTemplateMixin'
148
149
 
@@ -160,7 +161,6 @@ export default {
160
161
  Asd20NotificationGroup,
161
162
  Asd20QuicklinksMenu,
162
163
  Asd20MediaSection,
163
- // Intersect,
164
164
  },
165
165
  }
166
166
  </script>
@@ -200,19 +200,11 @@ export default {
200
200
  }
201
201
  }
202
202
  }
203
- .notification-group--inline {
204
- margin: space(1);
205
- }
206
- .asd20-widgets-section {
207
- background: var(--website-page__alternate-background-color);
208
- background-image: var(--website-texture__default);
209
- background-position-y: top;
210
- padding: space(1) 0;
211
- }
212
203
  }
213
204
 
214
205
  @media (min-width: 1024px) {
215
206
  .asd20-template-article {
207
+ @include template-desktop;
216
208
  margin-left: space(3);
217
209
  margin-top: 0;
218
210
  .asd20-notification-group--floating {
@@ -228,10 +220,8 @@ export default {
228
220
  }
229
221
  .notification-group--inline {
230
222
  margin: space(2) space(3) space(1) space(3);
231
- }
232
- .asd20-widgets-section {
233
- padding: space(2) space(3);
234
- height: min-content;
223
+ flex-basis: 100%;
224
+ margin-bottom: 0 !important;
235
225
  }
236
226
 
237
227
  .asd20-page-content {
@@ -246,10 +236,6 @@ export default {
246
236
  background: none;
247
237
  }
248
238
  }
249
- .notification-group--inline {
250
- flex-basis: 100%;
251
- margin-bottom: 0 !important;
252
- }
253
239
  .primary-messaging-section {
254
240
  max-width: 50vw;
255
241
  }