@asd20/ui 3.2.692 → 3.2.693

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.692",
8
+ "version": "3.2.693",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -27,7 +27,7 @@ export default {
27
27
  props: {
28
28
  title: { type: String, default: '' },
29
29
  subtitle: { type: String, default: '' },
30
- tag: { type: String, default: 'h2' },
30
+ tag: { type: String, default: 'span' },
31
31
  image: { type: String, default: '' },
32
32
  link: { type: String, default: '/' },
33
33
  size: {
@@ -118,6 +118,7 @@ $sizes: (
118
118
  }
119
119
  &::v-deep .asd20-button__label {
120
120
  color: var(--website-menu__foreground-color);
121
+ font-size: .7rem;
121
122
  }
122
123
  &:hover,
123
124
  &:focus {
@@ -7,7 +7,6 @@
7
7
  tag="button"
8
8
  :to="to"
9
9
  active-class="asd20-tab--active"
10
- aria-selected="true"
11
10
  >
12
11
  <asd20-icon v-if="icon" :name="icon" size="sm" />
13
12
  <span v-if="label" class="asd20-tab__label" v-html="label"></span>
@@ -66,7 +66,7 @@
66
66
  <!-- <button
67
67
  class="asd20-site-menu__section__back"
68
68
  aria-expanded="true"
69
- aira-controls="asd20-site-menu__items"
69
+ aria-controls="asd20-site-menu__items"
70
70
  @click="deactivateSection"
71
71
  @mouseup="keyboardTriggeredLastAction = false"
72
72
  @keyup="keyboardTriggeredLastAction = true"
@@ -85,7 +85,7 @@
85
85
  :id="`asd20-site-menu__item-${activeSectionIndex}-0`"
86
86
  class="asd20-site-menu__section__back"
87
87
  aria-expanded="true"
88
- aira-controls="asd20-site-menu__items"
88
+ aria-controls="asd20-site-menu__items"
89
89
  @click="deactivateSection"
90
90
  @mouseup="keyboardTriggeredLastAction = false"
91
91
  @keyup="keyboardTriggeredLastAction = true"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="asd20-tab-bar" :aria-label="ariaLabel">
2
+ <div class="asd20-tab-bar">
3
3
  <asd20-tab
4
4
  v-for="(tab, index) in tabs"
5
5
  :key="index"
@@ -2,7 +2,7 @@
2
2
  <component :is="tag" class="asd20-video-header-content">
3
3
  <slot name="before"></slot>
4
4
 
5
- <section class="header-messaging-section" aria-label="Primary message">
5
+ <section class="header-messaging-section">
6
6
  <!-- <asd20-messaging
7
7
  v-for="(messaging, index) in messages"
8
8
  :key="index"
@@ -161,7 +161,7 @@
161
161
  class="load-more"
162
162
  icon="chevron"
163
163
  label="Prev"
164
- aira-label="Previous"
164
+ aria-label="Previous"
165
165
  :iconAngle="-90"
166
166
  size="md"
167
167
  horizontal
@@ -53,60 +53,62 @@
53
53
  <!-- Page Content -->
54
54
 
55
55
  <slot></slot>
56
- <asd20-tab-bar
57
- :tabs="tabsList"
58
- @tabClick="onTabClick"
59
- class="logins-tab-bar"
60
- />
61
- <asd20-viewport>
62
- <!-- selectedGroup -->
63
- <section v-if="selectedTabLogins">
64
- <!-- Inline Notifications -->
65
- <client-only>
66
- <asd20-notification-group
67
- class="asd20-notification-group--inline"
68
- :notifications="activeNotificationsByType.inline"
69
- group-type="inline"
70
- @dismiss="$emit('dismiss-notification', $event)"
71
- @toggle-all="$emit('toggle-all')"
72
- />
73
- </client-only>
74
- <asd20-list class="logins-list" multi-column :column-width="480">
75
- <asd20-list-item
76
- v-for="(login, index) in selectedTabLogins.logins"
77
- :key="index"
78
- :label="login.title"
79
- class="login-list-item"
80
- align-top
81
- bordered
82
- >
83
- <asd20-button
84
- slot="actions"
85
- target="_blank"
86
- horizontal
87
- reversed
88
- :label="
89
- login.callsToAction[0].label
90
- ? login.callsToAction[0].label
91
- : 'Login'
92
- "
93
- :link="login.callsToAction[0].url || ''"
56
+ <section aria-label="Login Tabs">
57
+ <asd20-tab-bar
58
+ :tabs="tabsList"
59
+ @tabClick="onTabClick"
60
+ class="logins-tab-bar"
61
+ />
62
+ <asd20-viewport>
63
+ <!-- selectedGroup -->
64
+ <section v-if="selectedTabLogins">
65
+ <!-- Inline Notifications -->
66
+ <client-only>
67
+ <asd20-notification-group
68
+ class="asd20-notification-group--inline"
69
+ :notifications="activeNotificationsByType.inline"
70
+ group-type="inline"
71
+ @dismiss="$emit('dismiss-notification', $event)"
72
+ @toggle-all="$emit('toggle-all')"
94
73
  />
95
- <template>
96
- <div class="asd20-list-item__description">
97
- {{ login.summary }}
98
- <a
99
- href="#"
100
- v-if="login.bodyHtml"
101
- @click.prevent="selectedLogin = login"
102
- >{{ login.title }} details</a
103
- >
104
- </div>
105
- </template>
106
- </asd20-list-item>
107
- </asd20-list>
108
- </section>
109
- </asd20-viewport>
74
+ </client-only>
75
+ <asd20-list class="logins-list" multi-column :column-width="480">
76
+ <asd20-list-item
77
+ v-for="(login, index) in selectedTabLogins.logins"
78
+ :key="index"
79
+ :label="login.title"
80
+ class="login-list-item"
81
+ align-top
82
+ bordered
83
+ >
84
+ <asd20-button
85
+ slot="actions"
86
+ target="_blank"
87
+ horizontal
88
+ reversed
89
+ :label="
90
+ login.callsToAction[0].label
91
+ ? login.callsToAction[0].label
92
+ : 'Login'
93
+ "
94
+ :link="login.callsToAction[0].url || ''"
95
+ />
96
+ <template>
97
+ <div class="asd20-list-item__description">
98
+ {{ login.summary }}
99
+ <a
100
+ href="#"
101
+ v-if="login.bodyHtml"
102
+ @click.prevent="selectedLogin = login"
103
+ >{{ login.title }} details</a
104
+ >
105
+ </div>
106
+ </template>
107
+ </asd20-list-item>
108
+ </asd20-list>
109
+ </section>
110
+ </asd20-viewport>
111
+ </section>
110
112
 
111
113
  <asd20-modal
112
114
  icon="login"
@@ -255,7 +255,7 @@ export default {
255
255
  }
256
256
  p {
257
257
  // font-family: var(--website-typography__font-family-headlines);
258
- font-size: 18px !important;
258
+ font-size: 1rem !important;
259
259
  line-height: 1.5;
260
260
  font-family: var(--website-typography__font-family-headlines);
261
261
  }
@@ -265,7 +265,7 @@ export default {
265
265
  }
266
266
  p {
267
267
  // font-family: var(--website-typography__font-family-headlines);
268
- font-size: 18px !important;
268
+ font-size: 1rem !important;
269
269
  line-height: 1.5;
270
270
  font-family: var(--website-typography__font-family-headlines);
271
271
  }
@@ -238,7 +238,7 @@ export default {
238
238
 
239
239
  p {
240
240
  // font-family: var(--website-typography__font-family-headlines);
241
- font-size: 18px !important;
241
+ font-size: 1rem !important;
242
242
  line-height: 1.5;
243
243
  font-family: var(--website-typography__font-family-headlines);
244
244
  }