@worksafevictoria/wcl7.5 1.14.0-beta.1 → 1.14.0-beta.2
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
|
@@ -27,6 +27,18 @@
|
|
|
27
27
|
size="xl"
|
|
28
28
|
>
|
|
29
29
|
<div class="wcl-video-modal__video">
|
|
30
|
+
<p class="visually-hidden">
|
|
31
|
+
video.triggerWarning = {{ video.alertStrip }} <br />
|
|
32
|
+
video.triggerWarningContent = {{ video.alertStripDesc }} <br />
|
|
33
|
+
video.triggerWarningTitle :- {{ video.alertStripTitle }} <br />
|
|
34
|
+
video.triggerWarningUrl :- {{ video.alertStripUrl }} <br />
|
|
35
|
+
</p>
|
|
36
|
+
<AlertStrip
|
|
37
|
+
v-if="video.alertStrip"
|
|
38
|
+
:is-warning="true"
|
|
39
|
+
:desc="video.alertStripDesc"
|
|
40
|
+
:url="video.alertStripUrl"
|
|
41
|
+
/>
|
|
30
42
|
<video-media
|
|
31
43
|
:media-title="video.mediaTitle"
|
|
32
44
|
:media-description="video.mediaDescription"
|
|
@@ -44,6 +56,7 @@
|
|
|
44
56
|
</template>
|
|
45
57
|
|
|
46
58
|
<script>
|
|
59
|
+
import AlertStrip from './../../Global/AlertStrip/index.vue'
|
|
47
60
|
import VideoMedia from './../../Paragraphs/VideoPlayer/index.vue'
|
|
48
61
|
import VideoPlay from './../../../assets/icons/video-play.svg?url'
|
|
49
62
|
import IconClose from './../../../assets/icons/icon-close.svg?url'
|
|
@@ -53,6 +66,7 @@ import axios from 'axios'
|
|
|
53
66
|
export default {
|
|
54
67
|
name: 'VideoThumbnail',
|
|
55
68
|
components: {
|
|
69
|
+
AlertStrip,
|
|
56
70
|
VideoMedia,
|
|
57
71
|
IconClose,
|
|
58
72
|
'b-modal': BModal,
|