@worksafevictoria/wcl7.5 1.15.0-beta.4 → 1.15.0-beta.6
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
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<stepper-item
|
|
23
23
|
v-if="isStepper"
|
|
24
24
|
:itemid="item.id ? item.id : '' + index"
|
|
25
|
-
:content="hasContent(item) ? item.field_rich_text.
|
|
25
|
+
:content="hasContent(item) ? item.field_rich_text.value : ''"
|
|
26
26
|
:title="item.field_title"
|
|
27
27
|
class="accordion__item stepper"
|
|
28
28
|
:rtl="rtl || item.field_rtl"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
<accordion-item
|
|
34
34
|
v-if="!isStepper"
|
|
35
35
|
:itemid="item.id ? item.id : '' + index"
|
|
36
|
-
:content="hasContent(item) ? item.field_rich_text.
|
|
36
|
+
:content="hasContent(item) ? item.field_rich_text.value : ''"
|
|
37
37
|
:title="item.field_title"
|
|
38
38
|
class="accordion__item"
|
|
39
39
|
:rtl="rtl || item.field_rtl"
|
|
@@ -125,7 +125,7 @@ export default {
|
|
|
125
125
|
},
|
|
126
126
|
hasContent(item) {
|
|
127
127
|
// Changed to processed from value for rich text field.
|
|
128
|
-
return item?.field_rich_text?.
|
|
128
|
+
return item?.field_rich_text?.value
|
|
129
129
|
},
|
|
130
130
|
},
|
|
131
131
|
}
|
package/src/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
// Global
|
|
1
|
+
// Global Components - replace Homepageheader with HomepageHeaderNew to introduce new header
|
|
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/
|
|
5
|
+
import HomepageHeader from './components/Containers/HomepageHeader/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/
|
|
9
|
+
// Replace AppHeader with AppHeaderNew to introduce new header
|
|
10
|
+
import AppHeader from './components/Global/AppHeader/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'
|