@mjhls/mjh-framework 1.0.685 → 1.0.687
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/README.md +1 -1
- package/dist/cjs/AD300x250.js +2 -1
- package/dist/cjs/AD300x250x600.js +2 -1
- package/dist/cjs/AD728x90.js +2 -1
- package/dist/cjs/ADFloatingFooter.js +2 -1
- package/dist/cjs/ADGutter.js +2 -1
- package/dist/cjs/ADSkyscraper.js +2 -1
- package/dist/cjs/ADSponsoredResources.js +2 -1
- package/dist/cjs/ADWebcast.js +2 -1
- package/dist/cjs/ADWelcome.js +2 -1
- package/dist/cjs/AdSlot.js +6 -5
- package/dist/cjs/Beam.js +340 -4
- package/dist/cjs/Column2.js +1 -2
- package/dist/cjs/Column3.js +2 -1
- package/dist/cjs/DeckContent.js +3 -2
- package/dist/cjs/ExternalResources.js +3 -2
- package/dist/cjs/GridContent.js +4 -3
- package/dist/cjs/HamMagazine.js +7 -8
- package/dist/cjs/IssueLanding.js +4 -3
- package/dist/cjs/LeftNav.js +3 -4
- package/dist/cjs/MasterDeck.js +4 -3
- package/dist/cjs/NavDvm.js +5 -6
- package/dist/cjs/NavMagazine.js +7 -8
- package/dist/cjs/NavNative.js +7 -8
- package/dist/cjs/NavNormal.js +2 -4
- package/dist/cjs/PartnerDetailListing.js +5 -4
- package/dist/cjs/QueueDeckExpanded.js +15 -12
- package/dist/cjs/Segment.js +346 -4
- package/dist/cjs/SideFooter.js +2 -4
- package/dist/cjs/TemplateNormal.js +2 -1
- package/dist/cjs/View.js +3 -2
- package/dist/cjs/getSerializers.js +3 -2
- package/dist/cjs/{index-8c9e8ca7.js → index-a1090dcd.js} +47 -47
- package/dist/cjs/index.js +7 -6
- package/dist/esm/AD300x250.js +2 -1
- package/dist/esm/AD300x250x600.js +2 -1
- package/dist/esm/AD728x90.js +2 -1
- package/dist/esm/ADFloatingFooter.js +2 -1
- package/dist/esm/ADGutter.js +2 -1
- package/dist/esm/ADSkyscraper.js +2 -1
- package/dist/esm/ADSponsoredResources.js +2 -1
- package/dist/esm/ADWebcast.js +2 -1
- package/dist/esm/ADWelcome.js +2 -1
- package/dist/esm/AdSlot.js +2 -1
- package/dist/esm/Beam.js +343 -3
- package/dist/esm/Column2.js +1 -2
- package/dist/esm/Column3.js +2 -1
- package/dist/esm/DeckContent.js +3 -2
- package/dist/esm/ExternalResources.js +3 -2
- package/dist/esm/GridContent.js +4 -3
- package/dist/esm/HamMagazine.js +1 -2
- package/dist/esm/IssueLanding.js +4 -3
- package/dist/esm/LeftNav.js +2 -3
- package/dist/esm/MasterDeck.js +4 -3
- package/dist/esm/NavDvm.js +1 -2
- package/dist/esm/NavMagazine.js +1 -2
- package/dist/esm/NavNative.js +1 -2
- package/dist/esm/NavNormal.js +1 -3
- package/dist/esm/PartnerDetailListing.js +5 -4
- package/dist/esm/QueueDeckExpanded.js +15 -12
- package/dist/esm/Segment.js +349 -3
- package/dist/esm/SideFooter.js +1 -3
- package/dist/esm/TemplateNormal.js +2 -1
- package/dist/esm/View.js +3 -2
- package/dist/esm/getSerializers.js +3 -2
- package/dist/esm/{index-5505d4f9.js → index-a3da0503.js} +2 -2
- package/dist/esm/index.js +5 -4
- package/package.json +1 -1
- package/dist/cjs/beam-7217b7e7.js +0 -733
- package/dist/esm/beam-681a9749.js +0 -730
- /package/dist/cjs/{ADInfeed-c676389b.js → ADInfeed-cf81b7aa.js} +0 -0
- /package/dist/cjs/{ADlgInfeed-57d63c87.js → ADlgInfeed-ebc1bf56.js} +0 -0
- /package/dist/esm/{ADInfeed-97b8cea7.js → ADInfeed-898b9c8f.js} +0 -0
- /package/dist/esm/{ADlgInfeed-3ab91c75.js → ADlgInfeed-a747451b.js} +0 -0
|
@@ -22,7 +22,8 @@ var index$2 = require('./index-da796b8c.js');
|
|
|
22
22
|
var main = require('./main-b6c96c8d.js');
|
|
23
23
|
var entities = require('./entities-310b46ee.js');
|
|
24
24
|
var slicedToArray = require('./slicedToArray-8f385299.js');
|
|
25
|
-
var Segment = require('./
|
|
25
|
+
var Segment = require('./Segment.js');
|
|
26
|
+
var Beam = require('./Beam.js');
|
|
26
27
|
var AdSlot = require('./AdSlot.js');
|
|
27
28
|
var BlockContent = require('./BlockContent-88f69acd.js');
|
|
28
29
|
var smoothscroll = require('./smoothscroll-95231a70.js');
|
|
@@ -1917,8 +1918,8 @@ var YouTubePlayer = function YouTubePlayer(_ref) {
|
|
|
1917
1918
|
var duration = player.getDuration();
|
|
1918
1919
|
var queue = Math.floor(duration / 10);
|
|
1919
1920
|
var segment = Math.floor(current / queue);
|
|
1920
|
-
|
|
1921
|
-
Segment.
|
|
1921
|
+
Beam.report_beam_video('Ready', main.main_16, duration, current, segment);
|
|
1922
|
+
Segment.report_video_event('Video Ready', main.main_16, duration, current, segment);
|
|
1922
1923
|
};
|
|
1923
1924
|
|
|
1924
1925
|
var handlePlayPercent = function handlePlayPercent(player) {
|
|
@@ -1928,8 +1929,8 @@ var YouTubePlayer = function YouTubePlayer(_ref) {
|
|
|
1928
1929
|
var segment = Math.floor(current / queue);
|
|
1929
1930
|
|
|
1930
1931
|
if (!queueProgress.includes(segment)) {
|
|
1931
|
-
|
|
1932
|
-
Segment.
|
|
1932
|
+
Beam.report_beam_video('Segment', main.main_16, duration, current, segment);
|
|
1933
|
+
Segment.report_video_event('Video Segment', main.main_16, duration, current, segment);
|
|
1933
1934
|
queueProgress.push(segment);
|
|
1934
1935
|
}
|
|
1935
1936
|
};
|
|
@@ -1942,8 +1943,8 @@ var YouTubePlayer = function YouTubePlayer(_ref) {
|
|
|
1942
1943
|
var queue = Math.floor(duration / 10);
|
|
1943
1944
|
var segment = Math.floor(current / queue);
|
|
1944
1945
|
|
|
1945
|
-
|
|
1946
|
-
Segment.
|
|
1946
|
+
Beam.report_beam_video('Play', main.main_16, duration, current, segment);
|
|
1947
|
+
Segment.report_video_event('Video Play', main.main_16, duration, current, segment);
|
|
1947
1948
|
|
|
1948
1949
|
if (!playReported) {
|
|
1949
1950
|
setPlayReported(true);
|
|
@@ -1962,8 +1963,8 @@ var YouTubePlayer = function YouTubePlayer(_ref) {
|
|
|
1962
1963
|
var queue = Math.floor(duration / 10);
|
|
1963
1964
|
var segment = Math.floor(current / queue);
|
|
1964
1965
|
|
|
1965
|
-
|
|
1966
|
-
Segment.
|
|
1966
|
+
Beam.report_beam_video('End', main.main_16, duration, current, segment);
|
|
1967
|
+
Segment.report_video_event('Video End', main.main_16, duration, current, segment);
|
|
1967
1968
|
setEndReported(true);
|
|
1968
1969
|
clearInterval(intervalID);
|
|
1969
1970
|
}
|
|
@@ -1976,8 +1977,8 @@ var YouTubePlayer = function YouTubePlayer(_ref) {
|
|
|
1976
1977
|
var queue = Math.floor(duration / 10);
|
|
1977
1978
|
var segment = Math.floor(current / queue);
|
|
1978
1979
|
|
|
1979
|
-
|
|
1980
|
-
Segment.
|
|
1980
|
+
Beam.report_beam_video('Pause', main.main_16, duration, current, segment);
|
|
1981
|
+
Segment.report_video_event('Video Pause', main.main_16, duration, current, segment);
|
|
1981
1982
|
};
|
|
1982
1983
|
|
|
1983
1984
|
return React__default.createElement(
|
|
@@ -2237,8 +2238,8 @@ var Video = function Video(_ref) {
|
|
|
2237
2238
|
player.pause();
|
|
2238
2239
|
}
|
|
2239
2240
|
|
|
2240
|
-
|
|
2241
|
-
Segment.
|
|
2241
|
+
Beam.report_beam_video('Ready', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2242
|
+
Segment.report_video_event('Video Ready', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2242
2243
|
});
|
|
2243
2244
|
|
|
2244
2245
|
// play
|
|
@@ -2247,8 +2248,8 @@ var Video = function Video(_ref) {
|
|
|
2247
2248
|
var current = player.currentTime();
|
|
2248
2249
|
var queue = Math.floor(duration / 10);
|
|
2249
2250
|
var segment = Math.floor(current / queue);
|
|
2250
|
-
|
|
2251
|
-
Segment.
|
|
2251
|
+
Beam.report_beam_video('Play', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2252
|
+
Segment.report_video_event('Video Play', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2252
2253
|
});
|
|
2253
2254
|
|
|
2254
2255
|
// pause
|
|
@@ -2257,8 +2258,8 @@ var Video = function Video(_ref) {
|
|
|
2257
2258
|
var current = player.currentTime();
|
|
2258
2259
|
var queue = Math.floor(duration / 10);
|
|
2259
2260
|
var segment = Math.floor(current / queue);
|
|
2260
|
-
|
|
2261
|
-
Segment.
|
|
2261
|
+
Beam.report_beam_video('Pause', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2262
|
+
Segment.report_video_event('Video Pause', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2262
2263
|
});
|
|
2263
2264
|
|
|
2264
2265
|
// end
|
|
@@ -2267,8 +2268,8 @@ var Video = function Video(_ref) {
|
|
|
2267
2268
|
var current = player.currentTime();
|
|
2268
2269
|
var queue = Math.floor(duration / 10);
|
|
2269
2270
|
var segment = Math.floor(current / queue);
|
|
2270
|
-
|
|
2271
|
-
Segment.
|
|
2271
|
+
Beam.report_beam_video('End', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2272
|
+
Segment.report_video_event('Video End', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2272
2273
|
autoplayNextVideo(evt);
|
|
2273
2274
|
});
|
|
2274
2275
|
|
|
@@ -2279,8 +2280,8 @@ var Video = function Video(_ref) {
|
|
|
2279
2280
|
var queue = Math.floor(duration / 10);
|
|
2280
2281
|
var segment = Math.floor(current / queue);
|
|
2281
2282
|
if (!queueProgress.includes(segment)) {
|
|
2282
|
-
|
|
2283
|
-
Segment.
|
|
2283
|
+
Beam.report_beam_video('Segment', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2284
|
+
Segment.report_video_event('Video Segment', main.main_16, duration, current, segment, 'BrightCove', accountIDs.brightcove.playerId, accountIDs.brightcove.accountId, videoID);
|
|
2284
2285
|
queueProgress.push(segment);
|
|
2285
2286
|
}
|
|
2286
2287
|
});
|
|
@@ -2291,8 +2292,8 @@ var Video = function Video(_ref) {
|
|
|
2291
2292
|
var id = player.ads.ad.id;
|
|
2292
2293
|
var adType = 'Bright Cove: ' + player.ads.ad.type;
|
|
2293
2294
|
|
|
2294
|
-
|
|
2295
|
-
Segment.
|
|
2295
|
+
Beam.report_beam_ad('AD Started', main.main_16, '', '', '', '', '', adType, duration, id);
|
|
2296
|
+
Segment.report_ad_event('Video Ad Started', main.main_16, duration, adType, accountIDs.brightcove.playerId, accountIDs.brightcove.accountId);
|
|
2296
2297
|
});
|
|
2297
2298
|
|
|
2298
2299
|
// ad ended
|
|
@@ -2300,8 +2301,8 @@ var Video = function Video(_ref) {
|
|
|
2300
2301
|
var duration = player.ads.ad.duration;
|
|
2301
2302
|
var id = player.ads.ad.id;
|
|
2302
2303
|
var adType = 'Bright Cove: ' + player.ads.ad.type;
|
|
2303
|
-
|
|
2304
|
-
Segment.
|
|
2304
|
+
Beam.report_beam_ad('AD Ended', main.main_16, '', '', '', '', '', adType, duration, id);
|
|
2305
|
+
Segment.report_ad_event('Video Ad Ended', main.main_16, duration, adType, accountIDs.brightcove.playerId, accountIDs.brightcove.accountId);
|
|
2305
2306
|
});
|
|
2306
2307
|
};
|
|
2307
2308
|
|
|
@@ -6965,8 +6966,8 @@ var VideoMp4 = function VideoMp4(_ref) {
|
|
|
6965
6966
|
var duration = player.duration;
|
|
6966
6967
|
var queue = Math.floor(duration / 10);
|
|
6967
6968
|
var segment = Math.floor(current / queue);
|
|
6968
|
-
|
|
6969
|
-
Segment.
|
|
6969
|
+
Beam.report_beam_video('Ready', main.main_16, duration, current, segment, 'MP4');
|
|
6970
|
+
Segment.report_video_event('Video Ready', main.main_16, duration, current, segment, 'MP4');
|
|
6970
6971
|
};
|
|
6971
6972
|
|
|
6972
6973
|
var handlePlayPercent = function handlePlayPercent(player) {
|
|
@@ -6975,8 +6976,8 @@ var VideoMp4 = function VideoMp4(_ref) {
|
|
|
6975
6976
|
var queue = Math.floor(duration / 10);
|
|
6976
6977
|
var segment = Math.floor(current / queue);
|
|
6977
6978
|
if (!queueProgress.includes(segment)) {
|
|
6978
|
-
|
|
6979
|
-
Segment.
|
|
6979
|
+
Beam.report_beam_video('Segment', main.main_16, duration, current, segment, 'MP4');
|
|
6980
|
+
Segment.report_video_event('Video Segment', main.main_16, duration, current, segment, 'MP4');
|
|
6980
6981
|
queueProgress.push(segment);
|
|
6981
6982
|
}
|
|
6982
6983
|
};
|
|
@@ -6988,8 +6989,8 @@ var VideoMp4 = function VideoMp4(_ref) {
|
|
|
6988
6989
|
var duration = player.duration;
|
|
6989
6990
|
var queue = Math.floor(duration / 10);
|
|
6990
6991
|
var segment = Math.floor(current / queue);
|
|
6991
|
-
|
|
6992
|
-
Segment.
|
|
6992
|
+
Beam.report_beam_video('Play', main.main_16, duration, current, segment, 'MP4');
|
|
6993
|
+
Segment.report_video_event('Video Play', main.main_16, duration, current, segment, 'MP4');
|
|
6993
6994
|
|
|
6994
6995
|
if (!playReported) {
|
|
6995
6996
|
event.persist();
|
|
@@ -7009,8 +7010,8 @@ var VideoMp4 = function VideoMp4(_ref) {
|
|
|
7009
7010
|
var queue = Math.floor(duration / 10);
|
|
7010
7011
|
var segment = Math.floor(current / queue);
|
|
7011
7012
|
|
|
7012
|
-
|
|
7013
|
-
Segment.
|
|
7013
|
+
Beam.report_beam_video('End', main.main_16, duration, current, segment, 'MP4');
|
|
7014
|
+
Segment.report_video_event('Video End', main.main_16, duration, current, segment, 'MP4');
|
|
7014
7015
|
setEndReported(true);
|
|
7015
7016
|
clearInterval(intervalID);
|
|
7016
7017
|
}
|
|
@@ -7022,8 +7023,8 @@ var VideoMp4 = function VideoMp4(_ref) {
|
|
|
7022
7023
|
var duration = player.duration - current;
|
|
7023
7024
|
var queue = Math.floor(duration / 10);
|
|
7024
7025
|
var segment = Math.floor(current / queue);
|
|
7025
|
-
|
|
7026
|
-
Segment.
|
|
7026
|
+
Beam.report_beam_video('Pause', main.main_16, duration, current, segment, 'MP4');
|
|
7027
|
+
Segment.report_video_event('Video Pause', main.main_16, duration, current, segment, 'MP4');
|
|
7027
7028
|
};
|
|
7028
7029
|
|
|
7029
7030
|
return React__default.createElement(
|
|
@@ -7191,8 +7192,8 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
|
|
|
7191
7192
|
var duration = player.getDuration();
|
|
7192
7193
|
var queue = Math.floor(duration / 10);
|
|
7193
7194
|
var segment = Math.floor(current / queue);
|
|
7194
|
-
|
|
7195
|
-
Segment.
|
|
7195
|
+
Beam.report_beam_video('Ready', main.main_16, duration, current, segment);
|
|
7196
|
+
Segment.report_video_event('Video Ready', main.main_16, duration, current, segment);
|
|
7196
7197
|
//autoplay
|
|
7197
7198
|
|
|
7198
7199
|
//Small pause before starting next video
|
|
@@ -7212,8 +7213,8 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
|
|
|
7212
7213
|
var queue = Math.floor(duration / 10);
|
|
7213
7214
|
var segment = Math.floor(current / queue);
|
|
7214
7215
|
|
|
7215
|
-
|
|
7216
|
-
Segment.
|
|
7216
|
+
Beam.report_beam_video('End', main.main_16, duration, current, segment);
|
|
7217
|
+
Segment.report_video_event('Video End', main.main_16, duration, current, segment);
|
|
7217
7218
|
setEndReported(true);
|
|
7218
7219
|
clearInterval(intervalID);
|
|
7219
7220
|
}
|
|
@@ -7263,8 +7264,8 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
|
|
|
7263
7264
|
var queue = Math.floor(duration / 10);
|
|
7264
7265
|
var segment = Math.floor(current / queue);
|
|
7265
7266
|
if (!queueProgress.includes(segment)) {
|
|
7266
|
-
|
|
7267
|
-
Segment.
|
|
7267
|
+
Beam.report_beam_video('Segment', main.main_16, duration, current, segment);
|
|
7268
|
+
Segment.report_video_event('Video Segment', main.main_16, duration, current, segment);
|
|
7268
7269
|
queueProgress.push(segment);
|
|
7269
7270
|
}
|
|
7270
7271
|
};
|
|
@@ -7277,8 +7278,8 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
|
|
|
7277
7278
|
var queue = Math.floor(duration / 10);
|
|
7278
7279
|
var segment = Math.floor(current / queue);
|
|
7279
7280
|
|
|
7280
|
-
|
|
7281
|
-
Segment.
|
|
7281
|
+
Beam.report_beam_video('Play', main.main_16, duration, current, segment);
|
|
7282
|
+
Segment.report_video_event('Video Play', main.main_16, duration, current, segment);
|
|
7282
7283
|
|
|
7283
7284
|
if (!playReported) {
|
|
7284
7285
|
setPlayReported(true);
|
|
@@ -7296,8 +7297,8 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
|
|
|
7296
7297
|
var queue = Math.floor(duration / 10);
|
|
7297
7298
|
var segment = Math.floor(current / queue);
|
|
7298
7299
|
|
|
7299
|
-
|
|
7300
|
-
Segment.
|
|
7300
|
+
Beam.report_beam_video('Pause', main.main_16, duration, current, segment);
|
|
7301
|
+
Segment.report_video_event('Video Pause', main.main_16, duration, current, segment);
|
|
7301
7302
|
};
|
|
7302
7303
|
|
|
7303
7304
|
// Youtube Options
|
|
@@ -7803,8 +7804,7 @@ var Formstack = function Formstack(_ref) {
|
|
|
7803
7804
|
|
|
7804
7805
|
var formstackRef = React.useRef(null);
|
|
7805
7806
|
React.useEffect(function () {
|
|
7806
|
-
Segment.
|
|
7807
|
-
var newSrc = Segment.Segment.getURL('https://mjhlifesciences.formstack.com/forms/js.php/' + FormID, { needSegmentSupport: true });
|
|
7807
|
+
var newSrc = Segment.getURL('https://mjhlifesciences.formstack.com/forms/js.php/' + FormID, { needSegmentSupport: true });
|
|
7808
7808
|
var scriptTag = formstackRef.current.querySelector('script[needsegmentsupport="true"]');
|
|
7809
7809
|
scriptTag && newSrc && scriptTag.setAttribute('src', newSrc);
|
|
7810
7810
|
}, []);
|
package/dist/cjs/index.js
CHANGED
|
@@ -39,12 +39,13 @@ require('./stringify-7c5aff47.js');
|
|
|
39
39
|
require('./slicedToArray-8f385299.js');
|
|
40
40
|
require('./asyncToGenerator-533d476a.js');
|
|
41
41
|
require('./_set-species-f92c67c5.js');
|
|
42
|
-
var Segment = require('./
|
|
42
|
+
var Segment = require('./Segment.js');
|
|
43
|
+
var Beam = require('./Beam.js');
|
|
43
44
|
var AdSlot = require('./AdSlot.js');
|
|
44
|
-
require('./ADInfeed-
|
|
45
|
+
require('./ADInfeed-cf81b7aa.js');
|
|
45
46
|
var DeckContent = require('./DeckContent.js');
|
|
46
47
|
require('./lodash-fc2922d0.js');
|
|
47
|
-
require('./ADlgInfeed-
|
|
48
|
+
require('./ADlgInfeed-ebc1bf56.js');
|
|
48
49
|
require('./getContentCategory-f38a4c00.js');
|
|
49
50
|
require('./get-68c52cb1.js');
|
|
50
51
|
var AD = require('./AD.js');
|
|
@@ -82,7 +83,7 @@ require('react-bootstrap/Form');
|
|
|
82
83
|
require('./index-5be2866f.js');
|
|
83
84
|
require('./js.cookie-a511c430.js');
|
|
84
85
|
var CMEDeck = require('./CMEDeck.js');
|
|
85
|
-
var getSerializers = require('./index-
|
|
86
|
+
var getSerializers = require('./index-a1090dcd.js');
|
|
86
87
|
require('./util-f2c1b65b.js');
|
|
87
88
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
88
89
|
require('react-bootstrap/Pagination');
|
|
@@ -177,8 +178,8 @@ var PartnerDetailListing = require('./PartnerDetailListing.js');
|
|
|
177
178
|
|
|
178
179
|
|
|
179
180
|
|
|
180
|
-
exports.
|
|
181
|
-
exports.
|
|
181
|
+
exports.Segment = Segment;
|
|
182
|
+
exports.Beam = Beam;
|
|
182
183
|
exports.AdSlot = AdSlot;
|
|
183
184
|
exports.DeckContent = DeckContent;
|
|
184
185
|
exports.AD = AD;
|
package/dist/esm/AD300x250.js
CHANGED
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
// removed static slotID ,because defining static slotID is restricting AD to render only once.
|
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
// removed static slotID ,because defining static slotID is restricting AD to render only once.
|
package/dist/esm/AD728x90.js
CHANGED
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
var AD728x90 = function AD728x90(_ref) {
|
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
var ADFloatingFooter = function ADFloatingFooter(_ref) {
|
package/dist/esm/ADGutter.js
CHANGED
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
var ADGutter = function ADGutter(_ref) {
|
package/dist/esm/ADSkyscraper.js
CHANGED
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
// Skyscraper is below sponsored resource ad in the left column.
|
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
var ADSponsoredResources = function ADSponsoredResources(_ref) {
|
package/dist/esm/ADWebcast.js
CHANGED
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
// Webcast AD : New AD with size [200,100] that is to be renderedin the LeftNav between the spotlight and subnavigation.
|
package/dist/esm/ADWelcome.js
CHANGED
|
@@ -15,7 +15,8 @@ import { _ as _JSON$stringify } from './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import './
|
|
18
|
+
import './Segment.js';
|
|
19
|
+
import './Beam.js';
|
|
19
20
|
import DFPAdSlot from './AdSlot.js';
|
|
20
21
|
|
|
21
22
|
var ADWelcome = function ADWelcome(_ref) {
|
package/dist/esm/AdSlot.js
CHANGED
|
@@ -15,7 +15,8 @@ import './stringify-008c8802.js';
|
|
|
15
15
|
import { _ as _slicedToArray } from './slicedToArray-7021e5df.js';
|
|
16
16
|
import './asyncToGenerator-7c654f36.js';
|
|
17
17
|
import './_set-species-cede29f8.js';
|
|
18
|
-
import
|
|
18
|
+
import Segment from './Segment.js';
|
|
19
|
+
import Beam from './Beam.js';
|
|
19
20
|
|
|
20
21
|
var DFPAdSlot = function DFPAdSlot(_ref) {
|
|
21
22
|
var adUnit = _ref.adUnit,
|