@worksafevictoria/wcl7.5 1.15.0-beta.1 → 1.15.0-beta.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worksafevictoria/wcl7.5",
3
- "version": "1.15.0-beta.1",
3
+ "version": "1.15.0-beta.3",
4
4
  "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -7,7 +7,7 @@
7
7
  :background-variant="'grey'"
8
8
  class="task-finder"
9
9
  :class="{ workwell }"
10
- @isMobileOrTabletView="(e) => (isMobileOrTabletView = e)"
10
+ :isMobileOrTabletView="isMobileOrTabletView"
11
11
  >
12
12
  <template v-slot:content>
13
13
  <row>
@@ -138,6 +138,7 @@ export default {
138
138
  this.selectedTask = task?.card?.selectedCard
139
139
  }
140
140
  }
141
+ // If no children, navigate to url
141
142
  if (
142
143
  !task?.card?.selectedCard.children ||
143
144
  task?.card?.selectedCard.children.length < 1
package/src/index.js CHANGED
@@ -2,12 +2,12 @@
2
2
  import Container from './components/Containers/Container/index.vue'
3
3
  import Row from './components/Containers/Row/index.vue'
4
4
  import Column from './components/Containers/Column/index.vue'
5
- import HomepageHeader from './components/Containers/HomepageHeader/index.vue'
5
+ import HomepageHeader from './components/Containers/HomepageHeaderNew/index.vue'
6
6
  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
-
10
- import AppHeader from './components/Global/AppHeader/index.vue'
9
+
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'