@weareglow/media-components
Advanced tools
Comparing version 0.0.54 to 0.0.55
@@ -6,3 +6,3 @@ 'use strict'; | ||
const core = require('./core-f9a11319.js'); | ||
const utils = require('./utils-004cc1c3.js'); | ||
const utils = require('./utils-0c371869.js'); | ||
@@ -9,0 +9,0 @@ const MediaUnit = class { |
@@ -6,3 +6,3 @@ 'use strict'; | ||
const core = require('./core-f9a11319.js'); | ||
const utils = require('./utils-004cc1c3.js'); | ||
const utils = require('./utils-0c371869.js'); | ||
@@ -65,6 +65,6 @@ const PoliteVideo = class { | ||
render() { | ||
return (core.h("div", { class: "glow-polite-video-ctr" }, this.pageLoaded && (core.h("div", null, core.h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), core.h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: () => this.handleCanPlayThrough(), autoplay: this.autoplay, ref: (el) => (this.videoEl = el), onPlay: () => this.handlePlay(), onEnded: () => this.handleEnded(), src: utils.getUrl(this.src) }), core.h("img", { class: { | ||
return (core.h("div", { class: "glow-polite-video-ctr" }, core.h("div", null, core.h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), core.h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: () => this.handleCanPlayThrough(), autoplay: this.autoplay, ref: (el) => (this.videoEl = el), onPlay: () => this.handlePlay(), onEnded: () => this.handleEnded(), src: utils.getUrl(this.src) }), core.h("img", { class: { | ||
"glow-polite-video-endframe": true, | ||
"is-hidden": !this.showEndframe, | ||
}, src: utils.getUrl(this.endframeImage), alt: "" }))))); | ||
}, src: utils.getUrl(this.endframeImage), alt: "" })))); | ||
} | ||
@@ -71,0 +71,0 @@ static get style() { return ".glow-polite-video-endframe,.glow-polite-video-poster-image{position:absolute;top:0;left:0;width:100%}.glow-polite-video{width:100%;position:relative}"; } |
@@ -6,3 +6,3 @@ 'use strict'; | ||
const core = require('./core-f9a11319.js'); | ||
const utils = require('./utils-004cc1c3.js'); | ||
const utils = require('./utils-0c371869.js'); | ||
@@ -9,0 +9,0 @@ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; |
@@ -6,3 +6,3 @@ 'use strict'; | ||
const core = require('./core-f9a11319.js'); | ||
const utils = require('./utils-004cc1c3.js'); | ||
const utils = require('./utils-0c371869.js'); | ||
@@ -9,0 +9,0 @@ const TuneInDate = class { |
{ | ||
"entries": [ | ||
"components/trailer-video/trailer-video.js", | ||
"components/cta-button/cta-button.js", | ||
"components/background-video/background-video.js", | ||
"components/lockup/lockup.js", | ||
"components/Media-Unit/media-unit.js", | ||
"components/cta-button/cta-button.js", | ||
"components/polite-image/polite-image.js", | ||
"components/polite-video/polite-video.js", | ||
"components/polite-image/polite-image.js", | ||
"components/story/story.js", | ||
"components/tune-in/tune-in.js" | ||
"components/tune-in/tune-in.js", | ||
"components/trailer-video/trailer-video.js", | ||
"components/Media-Unit/media-unit.js" | ||
], | ||
@@ -13,0 +13,0 @@ "compiler": { |
@@ -55,9 +55,10 @@ import { h } from "@stencil/core"; | ||
render() { | ||
return (h("div", { class: "glow-polite-video-ctr" }, this.pageLoaded && (h("div", null, | ||
h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), | ||
h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: () => this.handleCanPlayThrough(), autoplay: this.autoplay, ref: (el) => (this.videoEl = el), onPlay: () => this.handlePlay(), onEnded: () => this.handleEnded(), src: getUrl(this.src) }), | ||
h("img", { class: { | ||
"glow-polite-video-endframe": true, | ||
"is-hidden": !this.showEndframe, | ||
}, src: getUrl(this.endframeImage), alt: "" }))))); | ||
return (h("div", { class: "glow-polite-video-ctr" }, | ||
h("div", null, | ||
h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), | ||
h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: () => this.handleCanPlayThrough(), autoplay: this.autoplay, ref: (el) => (this.videoEl = el), onPlay: () => this.handlePlay(), onEnded: () => this.handleEnded(), src: getUrl(this.src) }), | ||
h("img", { class: { | ||
"glow-polite-video-endframe": true, | ||
"is-hidden": !this.showEndframe, | ||
}, src: getUrl(this.endframeImage), alt: "" })))); | ||
} | ||
@@ -64,0 +65,0 @@ static get is() { return "glow-polite-video"; } |
@@ -40,3 +40,3 @@ // Removing any references to Enabler within our media unit. | ||
} | ||
} | ||
}, | ||
}; | ||
@@ -60,3 +60,3 @@ | ||
} | ||
} | ||
}, | ||
}; | ||
@@ -66,3 +66,3 @@ | ||
const isLive = function() { | ||
const isLive = function () { | ||
return isEnablerUnit | ||
@@ -74,8 +74,8 @@ ? Enabler.isServingInLiveEnvironment() | ||
export default (function() { | ||
export default (function () { | ||
return { | ||
isEnablerUnit, | ||
handlers: isEnablerUnit ? enablerEvents : DOMEvents, | ||
isLive: isLive() | ||
isLive: isLive(), | ||
}; | ||
})(); |
@@ -38,3 +38,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
import { r as registerInstance, c as createEvent, h, H as Host } from './core-0c529088.js'; | ||
import { l as loadingEvents, T as TuneIn } from './utils-e36db755.js'; | ||
import { l as loadingEvents, T as TuneIn } from './utils-4a7a59bf.js'; | ||
var MediaUnit = /** @class */ (function () { | ||
@@ -41,0 +41,0 @@ function class_1(hostRef) { |
@@ -38,3 +38,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
import { r as registerInstance, c as createEvent, h } from './core-0c529088.js'; | ||
import { t as trackVideo, g as getUrl } from './utils-e36db755.js'; | ||
import { t as trackVideo, g as getUrl } from './utils-4a7a59bf.js'; | ||
var PoliteVideo = /** @class */ (function () { | ||
@@ -117,6 +117,6 @@ function class_1(hostRef) { | ||
var _this = this; | ||
return (h("div", { class: "glow-polite-video-ctr" }, this.pageLoaded && (h("div", null, h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: function () { return _this.handleCanPlayThrough(); }, autoplay: this.autoplay, ref: function (el) { return (_this.videoEl = el); }, onPlay: function () { return _this.handlePlay(); }, onEnded: function () { return _this.handleEnded(); }, src: getUrl(this.src) }), h("img", { class: { | ||
return (h("div", { class: "glow-polite-video-ctr" }, h("div", null, h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: function () { return _this.handleCanPlayThrough(); }, autoplay: this.autoplay, ref: function (el) { return (_this.videoEl = el); }, onPlay: function () { return _this.handlePlay(); }, onEnded: function () { return _this.handleEnded(); }, src: getUrl(this.src) }), h("img", { class: { | ||
"glow-polite-video-endframe": true, | ||
"is-hidden": !this.showEndframe, | ||
}, src: getUrl(this.endframeImage), alt: "" }))))); | ||
}, src: getUrl(this.endframeImage), alt: "" })))); | ||
}; | ||
@@ -123,0 +123,0 @@ Object.defineProperty(class_1, "style", { |
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './core-0c529088.js'; | ||
import { t as trackVideo } from './utils-e36db755.js'; | ||
import { t as trackVideo } from './utils-4a7a59bf.js'; | ||
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; | ||
@@ -4,0 +4,0 @@ function unwrapExports(x) { |
import { r as registerInstance, h, H as Host, g as getElement } from './core-0c529088.js'; | ||
import { T as TuneIn } from './utils-e36db755.js'; | ||
import { T as TuneIn } from './utils-4a7a59bf.js'; | ||
var TuneInDate = /** @class */ (function () { | ||
@@ -4,0 +4,0 @@ function TuneInDate(hostRef) { |
import { r as registerInstance, c as createEvent, h, H as Host } from './core-0c529088.js'; | ||
import { l as loadingEvents, T as TuneIn } from './utils-e36db755.js'; | ||
import { l as loadingEvents, T as TuneIn } from './utils-4a7a59bf.js'; | ||
@@ -4,0 +4,0 @@ const MediaUnit = class { |
import { r as registerInstance, c as createEvent, h } from './core-0c529088.js'; | ||
import { t as trackVideo, g as getUrl } from './utils-e36db755.js'; | ||
import { t as trackVideo, g as getUrl } from './utils-4a7a59bf.js'; | ||
@@ -60,6 +60,6 @@ const PoliteVideo = class { | ||
render() { | ||
return (h("div", { class: "glow-polite-video-ctr" }, this.pageLoaded && (h("div", null, h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: () => this.handleCanPlayThrough(), autoplay: this.autoplay, ref: (el) => (this.videoEl = el), onPlay: () => this.handlePlay(), onEnded: () => this.handleEnded(), src: getUrl(this.src) }), h("img", { class: { | ||
return (h("div", { class: "glow-polite-video-ctr" }, h("div", null, h("img", { class: "glow-polite-video-poster-image", src: this.posterImage, alt: "" }), h("video", { class: "glow-polite-video", muted: this.muted, playsinline: true, onCanPlayThrough: () => this.handleCanPlayThrough(), autoplay: this.autoplay, ref: (el) => (this.videoEl = el), onPlay: () => this.handlePlay(), onEnded: () => this.handleEnded(), src: getUrl(this.src) }), h("img", { class: { | ||
"glow-polite-video-endframe": true, | ||
"is-hidden": !this.showEndframe, | ||
}, src: getUrl(this.endframeImage), alt: "" }))))); | ||
}, src: getUrl(this.endframeImage), alt: "" })))); | ||
} | ||
@@ -66,0 +66,0 @@ static get style() { return ".glow-polite-video-endframe,.glow-polite-video-poster-image{position:absolute;top:0;left:0;width:100%}.glow-polite-video{width:100%;position:relative}"; } |
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './core-0c529088.js'; | ||
import { t as trackVideo } from './utils-e36db755.js'; | ||
import { t as trackVideo } from './utils-4a7a59bf.js'; | ||
@@ -4,0 +4,0 @@ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; |
import { r as registerInstance, h, H as Host, g as getElement } from './core-0c529088.js'; | ||
import { T as TuneIn } from './utils-e36db755.js'; | ||
import { T as TuneIn } from './utils-4a7a59bf.js'; | ||
@@ -4,0 +4,0 @@ const TuneInDate = class { |
@@ -1,1 +0,1 @@ | ||
import{p as e,b as o}from"./p-d19fca32.js";e().then(e=>o([["p-w6fpzys4",[[0,"glow-background-video",{videoSrc:[1,"video-src"],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],autoplay:[4],play:[64],pause:[64]},[[0,"video-started","videoStartedHandler"],[0,"video-ended","videoEndedHandler"],[0,"video-loaded","videoLoadedHandler"]]]]],["p-inny16lz",[[4,"glow-trailer-video",{exitOnClick:[4,"exit-on-click"],showReplay:[4,"show-replay"],replayFrom:[2,"replay-from"],src:[1],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],width:[8],height:[8],videoTitle:[1,"video-title"],autoplay:[4],controlBtnFill:[1,"control-btn-fill"],controlBtnHoverFill:[1,"control-btn-hover-fill"],controlPosition:[1,"control-position"],controlIsHovered:[32],playing:[32],muted:[32],hasInteracted:[32],hasEnded:[32],play:[64],pause:[64]},[[0,"video-loaded","handleVideoLoaded"],[0,"video-started","handleVideoStarted"],[0,"video-played","handleVideoPlayed"],[0,"video-ended","handleVideoEnded"]]]]],["p-hk1fw48p",[[4,"glow-media-unit",{previewBgColor:[1,"preview-bg-color"],exitLink:[1,"exit-link"],testDate:[8,"test-date"],size:[1],placeholderImage:[1,"placeholder-image"],pageVisible:[32],pageLoaded:[32],triggerExit:[64]},[[4,"media-exit","mediaUnitExit"]]],[0,"glow-polite-image",{src:[1],alt:[1],pageLoaded:[32]},[[4,"page-loaded","pageLoadedHandler"]]]]],["p-8jhyvwfs",[[4,"glow-cta-button",{backgroundColor:[1,"background-color"],hoverBackgroundColor:[1,"hover-background-color"],fontColor:[1,"font-color"],hoverFontColor:[1,"hover-font-color"],buttonText:[1,"button-text"],hovered:[32]}]]],["p-nb23c1de",[[4,"glow-lockup",{lockupPadding:[1,"lockup-padding"],exitLink:[1,"exit-link"]}]]],["p-us3cdbre",[[4,"glow-story",{exitLink:[1,"exit-link"],autoAnimate:[4,"auto-animate"],endframeImage:[1,"endframe-image"],replayBtnFill:[1,"replay-btn-fill"],pageLoaded:[32],pageVisible:[32],playing:[32],storyLoaded:[32]},[[32,"page-loaded","handlePageLoaded"],[32,"page-visible","handlePageVisible"],[32,"media-exit","handleMediaExit"]]]]],["p-metbrb6t",[[4,"glow-tune-in",{showBefore:[1,"show-before"],showAfter:[1,"show-after"],showOn:[1,"show-on"],showBetween:[1,"show-between"],isDefault:[4,"is-default"],isCurrent:[32]},[[32,"tune-in-ready","tuneInReadyHandler"]]]]],["p-ut4kvhn0",[[0,"glow-polite-video",{src:[1],muted:[4],autoplay:[4],endframeImage:[1,"endframe-image"],posterImage:[1,"poster-image"],videoTitle:[1,"video-title"],pageLoaded:[32],playing:[32],loaded:[32],showEndframe:[32],play:[64],setLoaded:[64],pause:[64],setCurrentTime:[64]},[[32,"page-loaded","pageLoadedHandler"],[32,"media-exit","handleMediaExit"]]]]]],e)); | ||
import{p as e,b as o}from"./p-d19fca32.js";e().then(e=>o([["p-w6fpzys4",[[0,"glow-background-video",{videoSrc:[1,"video-src"],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],autoplay:[4],play:[64],pause:[64]},[[0,"video-started","videoStartedHandler"],[0,"video-ended","videoEndedHandler"],[0,"video-loaded","videoLoadedHandler"]]]]],["p-inny16lz",[[4,"glow-trailer-video",{exitOnClick:[4,"exit-on-click"],showReplay:[4,"show-replay"],replayFrom:[2,"replay-from"],src:[1],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],width:[8],height:[8],videoTitle:[1,"video-title"],autoplay:[4],controlBtnFill:[1,"control-btn-fill"],controlBtnHoverFill:[1,"control-btn-hover-fill"],controlPosition:[1,"control-position"],controlIsHovered:[32],playing:[32],muted:[32],hasInteracted:[32],hasEnded:[32],play:[64],pause:[64]},[[0,"video-loaded","handleVideoLoaded"],[0,"video-started","handleVideoStarted"],[0,"video-played","handleVideoPlayed"],[0,"video-ended","handleVideoEnded"]]]]],["p-j0jljslo",[[4,"glow-media-unit",{previewBgColor:[1,"preview-bg-color"],exitLink:[1,"exit-link"],testDate:[8,"test-date"],size:[1],placeholderImage:[1,"placeholder-image"],pageVisible:[32],pageLoaded:[32],triggerExit:[64]},[[4,"media-exit","mediaUnitExit"]]],[0,"glow-polite-image",{src:[1],alt:[1],pageLoaded:[32]},[[4,"page-loaded","pageLoadedHandler"]]]]],["p-8jhyvwfs",[[4,"glow-cta-button",{backgroundColor:[1,"background-color"],hoverBackgroundColor:[1,"hover-background-color"],fontColor:[1,"font-color"],hoverFontColor:[1,"hover-font-color"],buttonText:[1,"button-text"],hovered:[32]}]]],["p-nb23c1de",[[4,"glow-lockup",{lockupPadding:[1,"lockup-padding"],exitLink:[1,"exit-link"]}]]],["p-edfq4hxm",[[4,"glow-story",{exitLink:[1,"exit-link"],autoAnimate:[4,"auto-animate"],endframeImage:[1,"endframe-image"],replayBtnFill:[1,"replay-btn-fill"],pageLoaded:[32],pageVisible:[32],playing:[32],storyLoaded:[32]},[[32,"page-loaded","handlePageLoaded"],[32,"page-visible","handlePageVisible"],[32,"media-exit","handleMediaExit"]]]]],["p-eu2pnlxt",[[4,"glow-tune-in",{showBefore:[1,"show-before"],showAfter:[1,"show-after"],showOn:[1,"show-on"],showBetween:[1,"show-between"],isDefault:[4,"is-default"],isCurrent:[32]},[[32,"tune-in-ready","tuneInReadyHandler"]]]]],["p-egrv6szr",[[0,"glow-polite-video",{src:[1],muted:[4],autoplay:[4],endframeImage:[1,"endframe-image"],posterImage:[1,"poster-image"],videoTitle:[1,"video-title"],pageLoaded:[32],playing:[32],loaded:[32],showEndframe:[32],play:[64],setLoaded:[64],pause:[64],setCurrentTime:[64]},[[32,"page-loaded","pageLoadedHandler"],[32,"media-exit","handleMediaExit"]]]]]],e)); |
@@ -1,1 +0,1 @@ | ||
System.register(["./p-976199d9.system.js"],(function(){"use strict";var e,o;return{setters:[function(a){e=a.p;o=a.b}],execute:function(){e().then((function(e){return o([["p-nf657o0n.system",[[0,"glow-background-video",{videoSrc:[1,"video-src"],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],autoplay:[4],play:[64],pause:[64]},[[0,"video-started","videoStartedHandler"],[0,"video-ended","videoEndedHandler"],[0,"video-loaded","videoLoadedHandler"]]]]],["p-3x1hgxlb.system",[[4,"glow-trailer-video",{exitOnClick:[4,"exit-on-click"],showReplay:[4,"show-replay"],replayFrom:[2,"replay-from"],src:[1],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],width:[8],height:[8],videoTitle:[1,"video-title"],autoplay:[4],controlBtnFill:[1,"control-btn-fill"],controlBtnHoverFill:[1,"control-btn-hover-fill"],controlPosition:[1,"control-position"],controlIsHovered:[32],playing:[32],muted:[32],hasInteracted:[32],hasEnded:[32],play:[64],pause:[64]},[[0,"video-loaded","handleVideoLoaded"],[0,"video-started","handleVideoStarted"],[0,"video-played","handleVideoPlayed"],[0,"video-ended","handleVideoEnded"]]]]],["p-nfc1z7ip.system",[[4,"glow-media-unit",{previewBgColor:[1,"preview-bg-color"],exitLink:[1,"exit-link"],testDate:[8,"test-date"],size:[1],placeholderImage:[1,"placeholder-image"],pageVisible:[32],pageLoaded:[32],triggerExit:[64]},[[4,"media-exit","mediaUnitExit"]]],[0,"glow-polite-image",{src:[1],alt:[1],pageLoaded:[32]},[[4,"page-loaded","pageLoadedHandler"]]]]],["p-ixjuv3gf.system",[[4,"glow-cta-button",{backgroundColor:[1,"background-color"],hoverBackgroundColor:[1,"hover-background-color"],fontColor:[1,"font-color"],hoverFontColor:[1,"hover-font-color"],buttonText:[1,"button-text"],hovered:[32]}]]],["p-djgtd4kw.system",[[4,"glow-lockup",{lockupPadding:[1,"lockup-padding"],exitLink:[1,"exit-link"]}]]],["p-9rfr6tn0.system",[[4,"glow-story",{exitLink:[1,"exit-link"],autoAnimate:[4,"auto-animate"],endframeImage:[1,"endframe-image"],replayBtnFill:[1,"replay-btn-fill"],pageLoaded:[32],pageVisible:[32],playing:[32],storyLoaded:[32]},[[32,"page-loaded","handlePageLoaded"],[32,"page-visible","handlePageVisible"],[32,"media-exit","handleMediaExit"]]]]],["p-gq3sttf1.system",[[4,"glow-tune-in",{showBefore:[1,"show-before"],showAfter:[1,"show-after"],showOn:[1,"show-on"],showBetween:[1,"show-between"],isDefault:[4,"is-default"],isCurrent:[32]},[[32,"tune-in-ready","tuneInReadyHandler"]]]]],["p-wydmoyui.system",[[0,"glow-polite-video",{src:[1],muted:[4],autoplay:[4],endframeImage:[1,"endframe-image"],posterImage:[1,"poster-image"],videoTitle:[1,"video-title"],pageLoaded:[32],playing:[32],loaded:[32],showEndframe:[32],play:[64],setLoaded:[64],pause:[64],setCurrentTime:[64]},[[32,"page-loaded","pageLoadedHandler"],[32,"media-exit","handleMediaExit"]]]]]],e)}))}}})); | ||
System.register(["./p-976199d9.system.js"],(function(){"use strict";var e,o;return{setters:[function(a){e=a.p;o=a.b}],execute:function(){e().then((function(e){return o([["p-nf657o0n.system",[[0,"glow-background-video",{videoSrc:[1,"video-src"],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],autoplay:[4],play:[64],pause:[64]},[[0,"video-started","videoStartedHandler"],[0,"video-ended","videoEndedHandler"],[0,"video-loaded","videoLoadedHandler"]]]]],["p-3x1hgxlb.system",[[4,"glow-trailer-video",{exitOnClick:[4,"exit-on-click"],showReplay:[4,"show-replay"],replayFrom:[2,"replay-from"],src:[1],posterImage:[1,"poster-image"],endframeImage:[1,"endframe-image"],width:[8],height:[8],videoTitle:[1,"video-title"],autoplay:[4],controlBtnFill:[1,"control-btn-fill"],controlBtnHoverFill:[1,"control-btn-hover-fill"],controlPosition:[1,"control-position"],controlIsHovered:[32],playing:[32],muted:[32],hasInteracted:[32],hasEnded:[32],play:[64],pause:[64]},[[0,"video-loaded","handleVideoLoaded"],[0,"video-started","handleVideoStarted"],[0,"video-played","handleVideoPlayed"],[0,"video-ended","handleVideoEnded"]]]]],["p-e0rn8ryx.system",[[4,"glow-media-unit",{previewBgColor:[1,"preview-bg-color"],exitLink:[1,"exit-link"],testDate:[8,"test-date"],size:[1],placeholderImage:[1,"placeholder-image"],pageVisible:[32],pageLoaded:[32],triggerExit:[64]},[[4,"media-exit","mediaUnitExit"]]],[0,"glow-polite-image",{src:[1],alt:[1],pageLoaded:[32]},[[4,"page-loaded","pageLoadedHandler"]]]]],["p-ixjuv3gf.system",[[4,"glow-cta-button",{backgroundColor:[1,"background-color"],hoverBackgroundColor:[1,"hover-background-color"],fontColor:[1,"font-color"],hoverFontColor:[1,"hover-font-color"],buttonText:[1,"button-text"],hovered:[32]}]]],["p-djgtd4kw.system",[[4,"glow-lockup",{lockupPadding:[1,"lockup-padding"],exitLink:[1,"exit-link"]}]]],["p-jlet07go.system",[[4,"glow-story",{exitLink:[1,"exit-link"],autoAnimate:[4,"auto-animate"],endframeImage:[1,"endframe-image"],replayBtnFill:[1,"replay-btn-fill"],pageLoaded:[32],pageVisible:[32],playing:[32],storyLoaded:[32]},[[32,"page-loaded","handlePageLoaded"],[32,"page-visible","handlePageVisible"],[32,"media-exit","handleMediaExit"]]]]],["p-bmzqwzrd.system",[[4,"glow-tune-in",{showBefore:[1,"show-before"],showAfter:[1,"show-after"],showOn:[1,"show-on"],showBetween:[1,"show-between"],isDefault:[4,"is-default"],isCurrent:[32]},[[32,"tune-in-ready","tuneInReadyHandler"]]]]],["p-nqpxg0r5.system",[[0,"glow-polite-video",{src:[1],muted:[4],autoplay:[4],endframeImage:[1,"endframe-image"],posterImage:[1,"poster-image"],videoTitle:[1,"video-title"],pageLoaded:[32],playing:[32],loaded:[32],showEndframe:[32],play:[64],setLoaded:[64],pause:[64],setCurrentTime:[64]},[[32,"page-loaded","pageLoadedHandler"],[32,"media-exit","handleMediaExit"]]]]]],e)}))}}})); |
{ | ||
"name": "@weareglow/media-components", | ||
"version": "0.0.54", | ||
"version": "0.0.55", | ||
"description": "A collection of reusable components for media campaigns.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
17114
1080245