@worksafevictoria/wcl7.5 1.9.0-beta.6 → 1.9.0-beta.8
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
|
@@ -145,18 +145,28 @@
|
|
|
145
145
|
|
|
146
146
|
<a
|
|
147
147
|
v-if="menuItem.absolute === menuItem.relative"
|
|
148
|
-
:role="!menuItem.absolute ? 'button' :
|
|
149
|
-
:href="menuItem.absolute"
|
|
150
|
-
class="
|
|
151
|
-
|
|
148
|
+
:role="!menuItem.absolute ? 'button' : null"
|
|
149
|
+
:href="menuItem.absolute || undefined"
|
|
150
|
+
:class="[
|
|
151
|
+
'app-footer-menu__title--link',
|
|
152
|
+
'dark',
|
|
153
|
+
{ nolink: !menuItem.absolute },
|
|
154
|
+
]"
|
|
155
|
+
:tabindex="!menuItem.absolute ? 0 : undefined"
|
|
152
156
|
target="_blank"
|
|
153
|
-
:aria-expanded="
|
|
157
|
+
:aria-expanded="
|
|
158
|
+
isMobile && !menuItem.absolute
|
|
159
|
+
? menuItem.isOpen
|
|
160
|
+
? 'true'
|
|
161
|
+
: 'false'
|
|
162
|
+
: undefined
|
|
163
|
+
"
|
|
154
164
|
@click.prevent="handleAbsoluteClick(menuItem)"
|
|
155
165
|
><h2>{{ menuItem.title }}</h2>
|
|
156
166
|
</a>
|
|
157
167
|
<nuxt-link
|
|
158
168
|
v-else
|
|
159
|
-
:to="menuItem.
|
|
169
|
+
:to="menuItem.title"
|
|
160
170
|
class="app-footer-menu__title--link dark"
|
|
161
171
|
>
|
|
162
172
|
<h2>{{ menuItem.title }}</h2>
|
|
@@ -210,10 +220,11 @@
|
|
|
210
220
|
>
|
|
211
221
|
<a
|
|
212
222
|
:aria-expanded="
|
|
213
|
-
isMobile ? (contactMenuIsOpen ? 'true' : 'false') :
|
|
223
|
+
isMobile ? (contactMenuIsOpen ? 'true' : 'false') : undefined
|
|
214
224
|
"
|
|
215
225
|
role="button"
|
|
216
226
|
class="app-footer-menu__title--link dark nolink"
|
|
227
|
+
tabindex="0"
|
|
217
228
|
><h2>Contact</h2></a
|
|
218
229
|
>
|
|
219
230
|
<img
|
package/src/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import Subheader from './components/Containers/Subheader/index.vue'
|
|
|
7
7
|
import SectionGroup from './components/Containers/SectionGroup/index.vue'
|
|
8
8
|
import CarouselComponent from './components/Containers/Carousel/index.vue'
|
|
9
9
|
|
|
10
|
-
import AppHeader from './components/Global/
|
|
10
|
+
import AppHeader from './components/Global/AppHeaderNew/index.vue'
|
|
11
11
|
import AppFooter from './components/Global/AppFooter/index.vue'
|
|
12
12
|
import HeroHeader from './components/Global/HeroHeader/index.vue'
|
|
13
13
|
import SocialShare from './components/Global/SocialShare/index.vue'
|