@mjhls/mjh-framework 1.0.752-beta-0.1 → 1.0.752-beta-0.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/dist/cjs/ADWelcome.js +14 -3
- package/dist/cjs/AdSlot.js +3 -3
- package/dist/cjs/ArticleProgramLandingPage.js +1 -1
- package/dist/cjs/ArticleSeriesLandingPage.js +2 -2
- package/dist/cjs/DeckContent.js +1 -1
- package/dist/cjs/ExternalResources.js +1 -1
- package/dist/cjs/GridContent.js +2 -2
- package/dist/cjs/HorizontalArticleListing.js +1 -1
- package/dist/cjs/IssueLanding.js +2 -2
- package/dist/cjs/MasterDeck.js +2 -2
- package/dist/cjs/PartnerDetailListing.js +3 -3
- package/dist/cjs/PubSection.js +2 -2
- package/dist/cjs/QueueDeckExpanded.js +2 -2
- package/dist/cjs/TaxonomyDescription.js +1 -1
- package/dist/cjs/VideoProgramLandingPage.js +1 -1
- package/dist/cjs/VideoSeriesLandingPage.js +2 -2
- package/dist/cjs/View.js +1 -1
- package/dist/cjs/getSerializers.js +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/esm/ADWelcome.js +14 -3
- package/dist/esm/AdSlot.js +3 -3
- package/dist/esm/ArticleProgramLandingPage.js +1 -1
- package/dist/esm/ArticleSeriesLandingPage.js +2 -2
- package/dist/esm/DeckContent.js +1 -1
- package/dist/esm/ExternalResources.js +1 -1
- package/dist/esm/GridContent.js +2 -2
- package/dist/esm/HorizontalArticleListing.js +1 -1
- package/dist/esm/IssueLanding.js +2 -2
- package/dist/esm/MasterDeck.js +2 -2
- package/dist/esm/PartnerDetailListing.js +3 -3
- package/dist/esm/PubSection.js +2 -2
- package/dist/esm/QueueDeckExpanded.js +2 -2
- package/dist/esm/TaxonomyDescription.js +1 -1
- package/dist/esm/VideoProgramLandingPage.js +1 -1
- package/dist/esm/VideoSeriesLandingPage.js +2 -2
- package/dist/esm/View.js +1 -1
- package/dist/esm/getSerializers.js +1 -1
- package/dist/esm/index.js +3 -3
- package/package.json +1 -1
- /package/dist/cjs/{ADInfeed-d1d7e784.js → ADInfeed-132ae3b9.js} +0 -0
- /package/dist/cjs/{ADlgInfeed-b6116a72.js → ADlgInfeed-5429a61c.js} +0 -0
- /package/dist/cjs/{index-b0286d76.js → index-ee3513b7.js} +0 -0
- /package/dist/esm/{ADInfeed-0299bf7e.js → ADInfeed-1531cd28.js} +0 -0
- /package/dist/esm/{ADlgInfeed-7b627388.js → ADlgInfeed-ddfa3532.js} +0 -0
- /package/dist/esm/{index-5b4353b5.js → index-be22f02f.js} +0 -0
package/dist/cjs/ADWelcome.js
CHANGED
|
@@ -78,7 +78,6 @@ var ADWelcome = function ADWelcome(_ref) {
|
|
|
78
78
|
|
|
79
79
|
React.useEffect(function () {
|
|
80
80
|
if (timeLeft > 0) {
|
|
81
|
-
// document.body.style.overflow = 'hidden' //To hide scrollbar while displaying Welcome Ad
|
|
82
81
|
setTimeout(function () {
|
|
83
82
|
setTimeLeft(calculateTimeLeft(timeLeft));
|
|
84
83
|
}, 1000);
|
|
@@ -88,11 +87,23 @@ var ADWelcome = function ADWelcome(_ref) {
|
|
|
88
87
|
}
|
|
89
88
|
});
|
|
90
89
|
|
|
90
|
+
var checkIsAdFound = function checkIsAdFound(isFound, adData) {
|
|
91
|
+
if (isFound) {
|
|
92
|
+
var parent = document.getElementById('welcome-modal');
|
|
93
|
+
document.body.style.overflow = 'hidden';
|
|
94
|
+
parent.style.display = 'block';
|
|
95
|
+
calculateTimeLeft(counter + 1);
|
|
96
|
+
} else {
|
|
97
|
+
document.body.style.overflow = 'auto';
|
|
98
|
+
setFlag(true);
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
|
|
91
102
|
return (
|
|
92
103
|
// Setting welcome ad to display:none and Setting to display:block after checking for cookie in site level.
|
|
93
104
|
React__default.createElement(
|
|
94
105
|
'div',
|
|
95
|
-
{ style: { outline: 'none', display: '
|
|
106
|
+
{ style: { outline: 'none', display: 'block' }, className: 'welcome-modal', id: 'welcome-modal' },
|
|
96
107
|
React__default.createElement(
|
|
97
108
|
'div',
|
|
98
109
|
{ className: 'welcome-ad-head-wrapper' },
|
|
@@ -143,7 +154,7 @@ var ADWelcome = function ADWelcome(_ref) {
|
|
|
143
154
|
targeting: adTargeting,
|
|
144
155
|
refreshFlag: false
|
|
145
156
|
/* Passing function to check for ad creative only if it is not in preview. */
|
|
146
|
-
|
|
157
|
+
, checkIsAdFound: checkIsAdFound
|
|
147
158
|
})
|
|
148
159
|
),
|
|
149
160
|
React__default.createElement(
|
package/dist/cjs/AdSlot.js
CHANGED
|
@@ -98,10 +98,10 @@ var DFPAdSlot = function DFPAdSlot(_ref) {
|
|
|
98
98
|
onSlotRender: function onSlotRender(eventData) {
|
|
99
99
|
// Updating the condition to remove the dependency on static slotId.
|
|
100
100
|
if (eventData && eventData.event && checkIsAdFound !== null) {
|
|
101
|
-
if (eventData.event.
|
|
102
|
-
checkIsAdFound(false, eventData);
|
|
103
|
-
} else {
|
|
101
|
+
if (eventData.event.size !== null && eventData.event.size.length) {
|
|
104
102
|
checkIsAdFound(true, eventData);
|
|
103
|
+
} else {
|
|
104
|
+
checkIsAdFound(false, eventData);
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -51,7 +51,7 @@ require('react-bootstrap');
|
|
|
51
51
|
require('./iconBase-68959171.js');
|
|
52
52
|
require('./index.esm-90433435.js');
|
|
53
53
|
var ArticleSeriesListing = require('./ArticleSeriesListing.js');
|
|
54
|
-
var getSerializers = require('./index-
|
|
54
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
55
55
|
require('./util-f2c1b65b.js');
|
|
56
56
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
57
57
|
require('next/head');
|
|
@@ -41,9 +41,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
41
41
|
require('./Segment.js');
|
|
42
42
|
require('./Beam.js');
|
|
43
43
|
require('./AdSlot.js');
|
|
44
|
-
require('./ADInfeed-
|
|
44
|
+
require('./ADInfeed-132ae3b9.js');
|
|
45
45
|
require('./lodash-7fd85bcf.js');
|
|
46
|
-
require('./ADlgInfeed-
|
|
46
|
+
require('./ADlgInfeed-5429a61c.js');
|
|
47
47
|
var MasterDeck = require('./MasterDeck.js');
|
|
48
48
|
|
|
49
49
|
var _this = undefined;
|
package/dist/cjs/DeckContent.js
CHANGED
|
@@ -44,7 +44,7 @@ require('./_set-species-f92c67c5.js');
|
|
|
44
44
|
require('./Segment.js');
|
|
45
45
|
require('./Beam.js');
|
|
46
46
|
require('./AdSlot.js');
|
|
47
|
-
var ADInfeed = require('./ADInfeed-
|
|
47
|
+
var ADInfeed = require('./ADInfeed-132ae3b9.js');
|
|
48
48
|
|
|
49
49
|
var DeckContent = function (_React$Component) {
|
|
50
50
|
inherits._inherits(DeckContent, _React$Component);
|
|
@@ -47,7 +47,7 @@ require('./GroupDeck.js');
|
|
|
47
47
|
require('react-bootstrap');
|
|
48
48
|
require('./iconBase-68959171.js');
|
|
49
49
|
require('./index.esm-90433435.js');
|
|
50
|
-
var getSerializers = require('./index-
|
|
50
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
51
51
|
require('./util-f2c1b65b.js');
|
|
52
52
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
53
53
|
require('next/head');
|
package/dist/cjs/GridContent.js
CHANGED
|
@@ -44,9 +44,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
44
44
|
require('./Segment.js');
|
|
45
45
|
require('./Beam.js');
|
|
46
46
|
require('./AdSlot.js');
|
|
47
|
-
var ADInfeed = require('./ADInfeed-
|
|
47
|
+
var ADInfeed = require('./ADInfeed-132ae3b9.js');
|
|
48
48
|
var lodash = require('./lodash-7fd85bcf.js');
|
|
49
|
-
var ADlgInfeed = require('./ADlgInfeed-
|
|
49
|
+
var ADlgInfeed = require('./ADlgInfeed-5429a61c.js');
|
|
50
50
|
var getContentCategory = require('./getContentCategory-f38a4c00.js');
|
|
51
51
|
var get = require('./get-68c52cb1.js');
|
|
52
52
|
require('./AD.js');
|
|
@@ -48,7 +48,7 @@ require('react-bootstrap');
|
|
|
48
48
|
require('./iconBase-68959171.js');
|
|
49
49
|
var index_esm = require('./index.esm-90433435.js');
|
|
50
50
|
var ArticleCarousel = require('./ArticleCarousel.js');
|
|
51
|
-
var getSerializers = require('./index-
|
|
51
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
52
52
|
require('./util-f2c1b65b.js');
|
|
53
53
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
54
54
|
require('next/head');
|
package/dist/cjs/IssueLanding.js
CHANGED
|
@@ -35,9 +35,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
35
35
|
require('./Segment.js');
|
|
36
36
|
require('./Beam.js');
|
|
37
37
|
require('./AdSlot.js');
|
|
38
|
-
require('./ADInfeed-
|
|
38
|
+
require('./ADInfeed-132ae3b9.js');
|
|
39
39
|
require('./lodash-7fd85bcf.js');
|
|
40
|
-
require('./ADlgInfeed-
|
|
40
|
+
require('./ADlgInfeed-5429a61c.js');
|
|
41
41
|
require('./getContentCategory-f38a4c00.js');
|
|
42
42
|
require('./AuthorComponent-bb831b74.js');
|
|
43
43
|
require('react-bootstrap');
|
package/dist/cjs/MasterDeck.js
CHANGED
|
@@ -42,9 +42,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
42
42
|
require('./Segment.js');
|
|
43
43
|
require('./Beam.js');
|
|
44
44
|
require('./AdSlot.js');
|
|
45
|
-
var ADInfeed = require('./ADInfeed-
|
|
45
|
+
var ADInfeed = require('./ADInfeed-132ae3b9.js');
|
|
46
46
|
var lodash = require('./lodash-7fd85bcf.js');
|
|
47
|
-
var ADlgInfeed = require('./ADlgInfeed-
|
|
47
|
+
var ADlgInfeed = require('./ADlgInfeed-5429a61c.js');
|
|
48
48
|
|
|
49
49
|
var MasterDeck = function (_React$Component) {
|
|
50
50
|
inherits._inherits(MasterDeck, _React$Component);
|
|
@@ -42,9 +42,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
42
42
|
require('./Segment.js');
|
|
43
43
|
require('./Beam.js');
|
|
44
44
|
require('./AdSlot.js');
|
|
45
|
-
require('./ADInfeed-
|
|
45
|
+
require('./ADInfeed-132ae3b9.js');
|
|
46
46
|
require('./lodash-7fd85bcf.js');
|
|
47
|
-
require('./ADlgInfeed-
|
|
47
|
+
require('./ADlgInfeed-5429a61c.js');
|
|
48
48
|
require('./getContentCategory-f38a4c00.js');
|
|
49
49
|
require('./AuthorComponent-bb831b74.js');
|
|
50
50
|
var BlockContent = require('./BlockContent-80b15fac.js');
|
|
@@ -56,7 +56,7 @@ require('./timeDifferenceCalc.js');
|
|
|
56
56
|
var QueueDeckExpanded = require('./QueueDeckExpanded.js');
|
|
57
57
|
require('./iconBase-68959171.js');
|
|
58
58
|
require('./index.esm-90433435.js');
|
|
59
|
-
var getSerializers = require('./index-
|
|
59
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
60
60
|
require('./util-f2c1b65b.js');
|
|
61
61
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
62
62
|
require('next/head');
|
package/dist/cjs/PubSection.js
CHANGED
|
@@ -35,9 +35,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
35
35
|
require('./Segment.js');
|
|
36
36
|
require('./Beam.js');
|
|
37
37
|
require('./AdSlot.js');
|
|
38
|
-
require('./ADInfeed-
|
|
38
|
+
require('./ADInfeed-132ae3b9.js');
|
|
39
39
|
require('./lodash-7fd85bcf.js');
|
|
40
|
-
require('./ADlgInfeed-
|
|
40
|
+
require('./ADlgInfeed-5429a61c.js');
|
|
41
41
|
require('./getContentCategory-f38a4c00.js');
|
|
42
42
|
require('./AuthorComponent-bb831b74.js');
|
|
43
43
|
require('react-bootstrap');
|
|
@@ -36,9 +36,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
36
36
|
require('./Segment.js');
|
|
37
37
|
require('./Beam.js');
|
|
38
38
|
require('./AdSlot.js');
|
|
39
|
-
var ADInfeed = require('./ADInfeed-
|
|
39
|
+
var ADInfeed = require('./ADInfeed-132ae3b9.js');
|
|
40
40
|
var lodash = require('./lodash-7fd85bcf.js');
|
|
41
|
-
var ADlgInfeed = require('./ADlgInfeed-
|
|
41
|
+
var ADlgInfeed = require('./ADlgInfeed-5429a61c.js');
|
|
42
42
|
var getContentCategory = require('./getContentCategory-f38a4c00.js');
|
|
43
43
|
var AuthorComponent = require('./AuthorComponent-bb831b74.js');
|
|
44
44
|
var reactBootstrap = require('react-bootstrap');
|
|
@@ -47,7 +47,7 @@ require('./GroupDeck.js');
|
|
|
47
47
|
require('react-bootstrap');
|
|
48
48
|
require('./iconBase-68959171.js');
|
|
49
49
|
require('./index.esm-90433435.js');
|
|
50
|
-
var getSerializers = require('./index-
|
|
50
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
51
51
|
require('./util-f2c1b65b.js');
|
|
52
52
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
53
53
|
var Head = _interopDefault(require('next/head'));
|
|
@@ -51,7 +51,7 @@ require('react-bootstrap');
|
|
|
51
51
|
require('./iconBase-68959171.js');
|
|
52
52
|
require('./index.esm-90433435.js');
|
|
53
53
|
var VideoSeriesListing = require('./VideoSeriesListing.js');
|
|
54
|
-
var getSerializers = require('./index-
|
|
54
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
55
55
|
require('./util-f2c1b65b.js');
|
|
56
56
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
57
57
|
require('next/head');
|
|
@@ -42,9 +42,9 @@ require('./_set-species-f92c67c5.js');
|
|
|
42
42
|
require('./Segment.js');
|
|
43
43
|
require('./Beam.js');
|
|
44
44
|
require('./AdSlot.js');
|
|
45
|
-
require('./ADInfeed-
|
|
45
|
+
require('./ADInfeed-132ae3b9.js');
|
|
46
46
|
require('./lodash-7fd85bcf.js');
|
|
47
|
-
require('./ADlgInfeed-
|
|
47
|
+
require('./ADlgInfeed-5429a61c.js');
|
|
48
48
|
var index$3 = require('./index-187c967e.js');
|
|
49
49
|
var MasterDeck = require('./MasterDeck.js');
|
|
50
50
|
require('react-bootstrap/Breadcrumb');
|
package/dist/cjs/View.js
CHANGED
|
@@ -48,7 +48,7 @@ require('./GroupDeck.js');
|
|
|
48
48
|
require('react-bootstrap');
|
|
49
49
|
require('./iconBase-68959171.js');
|
|
50
50
|
require('./index.esm-90433435.js');
|
|
51
|
-
var getSerializers = require('./index-
|
|
51
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
52
52
|
require('./util-f2c1b65b.js');
|
|
53
53
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
54
54
|
var Head = _interopDefault(require('next/head'));
|
|
@@ -43,7 +43,7 @@ require('./GroupDeck.js');
|
|
|
43
43
|
require('react-bootstrap');
|
|
44
44
|
require('./iconBase-68959171.js');
|
|
45
45
|
require('./index.esm-90433435.js');
|
|
46
|
-
var getSerializers = require('./index-
|
|
46
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
47
47
|
require('./util-f2c1b65b.js');
|
|
48
48
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
49
49
|
require('next/head');
|
package/dist/cjs/index.js
CHANGED
|
@@ -45,10 +45,10 @@ require('./_set-species-f92c67c5.js');
|
|
|
45
45
|
var Segment = require('./Segment.js');
|
|
46
46
|
var Beam = require('./Beam.js');
|
|
47
47
|
var AdSlot = require('./AdSlot.js');
|
|
48
|
-
require('./ADInfeed-
|
|
48
|
+
require('./ADInfeed-132ae3b9.js');
|
|
49
49
|
var DeckContent = require('./DeckContent.js');
|
|
50
50
|
require('./lodash-7fd85bcf.js');
|
|
51
|
-
require('./ADlgInfeed-
|
|
51
|
+
require('./ADlgInfeed-5429a61c.js');
|
|
52
52
|
require('./getContentCategory-f38a4c00.js');
|
|
53
53
|
require('./get-68c52cb1.js');
|
|
54
54
|
var AD = require('./AD.js');
|
|
@@ -73,7 +73,7 @@ require('./index.esm-90433435.js');
|
|
|
73
73
|
var VideoSeriesListing = require('./VideoSeriesListing.js');
|
|
74
74
|
var ArticleSeriesListing = require('./ArticleSeriesListing.js');
|
|
75
75
|
var ArticleCarousel = require('./ArticleCarousel.js');
|
|
76
|
-
var getSerializers = require('./index-
|
|
76
|
+
var getSerializers = require('./index-ee3513b7.js');
|
|
77
77
|
require('./util-f2c1b65b.js');
|
|
78
78
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
79
79
|
require('next/head');
|
package/dist/esm/ADWelcome.js
CHANGED
|
@@ -73,7 +73,6 @@ var ADWelcome = function ADWelcome(_ref) {
|
|
|
73
73
|
|
|
74
74
|
useEffect(function () {
|
|
75
75
|
if (timeLeft > 0) {
|
|
76
|
-
// document.body.style.overflow = 'hidden' //To hide scrollbar while displaying Welcome Ad
|
|
77
76
|
setTimeout(function () {
|
|
78
77
|
setTimeLeft(calculateTimeLeft(timeLeft));
|
|
79
78
|
}, 1000);
|
|
@@ -83,11 +82,23 @@ var ADWelcome = function ADWelcome(_ref) {
|
|
|
83
82
|
}
|
|
84
83
|
});
|
|
85
84
|
|
|
85
|
+
var checkIsAdFound = function checkIsAdFound(isFound, adData) {
|
|
86
|
+
if (isFound) {
|
|
87
|
+
var parent = document.getElementById('welcome-modal');
|
|
88
|
+
document.body.style.overflow = 'hidden';
|
|
89
|
+
parent.style.display = 'block';
|
|
90
|
+
calculateTimeLeft(counter + 1);
|
|
91
|
+
} else {
|
|
92
|
+
document.body.style.overflow = 'auto';
|
|
93
|
+
setFlag(true);
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
|
|
86
97
|
return (
|
|
87
98
|
// Setting welcome ad to display:none and Setting to display:block after checking for cookie in site level.
|
|
88
99
|
React__default.createElement(
|
|
89
100
|
'div',
|
|
90
|
-
{ style: { outline: 'none', display: '
|
|
101
|
+
{ style: { outline: 'none', display: 'block' }, className: 'welcome-modal', id: 'welcome-modal' },
|
|
91
102
|
React__default.createElement(
|
|
92
103
|
'div',
|
|
93
104
|
{ className: 'welcome-ad-head-wrapper' },
|
|
@@ -138,7 +149,7 @@ var ADWelcome = function ADWelcome(_ref) {
|
|
|
138
149
|
targeting: adTargeting,
|
|
139
150
|
refreshFlag: false
|
|
140
151
|
/* Passing function to check for ad creative only if it is not in preview. */
|
|
141
|
-
|
|
152
|
+
, checkIsAdFound: checkIsAdFound
|
|
142
153
|
})
|
|
143
154
|
),
|
|
144
155
|
React__default.createElement(
|
package/dist/esm/AdSlot.js
CHANGED
|
@@ -92,10 +92,10 @@ var DFPAdSlot = function DFPAdSlot(_ref) {
|
|
|
92
92
|
onSlotRender: function onSlotRender(eventData) {
|
|
93
93
|
// Updating the condition to remove the dependency on static slotId.
|
|
94
94
|
if (eventData && eventData.event && checkIsAdFound !== null) {
|
|
95
|
-
if (eventData.event.
|
|
96
|
-
checkIsAdFound(false, eventData);
|
|
97
|
-
} else {
|
|
95
|
+
if (eventData.event.size !== null && eventData.event.size.length) {
|
|
98
96
|
checkIsAdFound(true, eventData);
|
|
97
|
+
} else {
|
|
98
|
+
checkIsAdFound(false, eventData);
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -46,7 +46,7 @@ import 'react-bootstrap';
|
|
|
46
46
|
import './iconBase-602d52fe.js';
|
|
47
47
|
import './index.esm-29e48d38.js';
|
|
48
48
|
import ArticleSeriesListing from './ArticleSeriesListing.js';
|
|
49
|
-
import { g as getSerializers } from './index-
|
|
49
|
+
import { g as getSerializers } from './index-be22f02f.js';
|
|
50
50
|
import './util-7700fc59.js';
|
|
51
51
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
52
52
|
import 'next/head';
|
|
@@ -36,9 +36,9 @@ import './_set-species-3f8319f5.js';
|
|
|
36
36
|
import './Segment.js';
|
|
37
37
|
import './Beam.js';
|
|
38
38
|
import './AdSlot.js';
|
|
39
|
-
import './ADInfeed-
|
|
39
|
+
import './ADInfeed-1531cd28.js';
|
|
40
40
|
import './lodash-ec8c6b48.js';
|
|
41
|
-
import './ADlgInfeed-
|
|
41
|
+
import './ADlgInfeed-ddfa3532.js';
|
|
42
42
|
import MasterDeck from './MasterDeck.js';
|
|
43
43
|
|
|
44
44
|
var _this = undefined;
|
package/dist/esm/DeckContent.js
CHANGED
|
@@ -38,7 +38,7 @@ import './_set-species-3f8319f5.js';
|
|
|
38
38
|
import './Segment.js';
|
|
39
39
|
import './Beam.js';
|
|
40
40
|
import './AdSlot.js';
|
|
41
|
-
import { A as ADInfeed } from './ADInfeed-
|
|
41
|
+
import { A as ADInfeed } from './ADInfeed-1531cd28.js';
|
|
42
42
|
|
|
43
43
|
var DeckContent = function (_React$Component) {
|
|
44
44
|
_inherits(DeckContent, _React$Component);
|
|
@@ -41,7 +41,7 @@ import './GroupDeck.js';
|
|
|
41
41
|
import 'react-bootstrap';
|
|
42
42
|
import './iconBase-602d52fe.js';
|
|
43
43
|
import './index.esm-29e48d38.js';
|
|
44
|
-
import { g as getSerializers } from './index-
|
|
44
|
+
import { g as getSerializers } from './index-be22f02f.js';
|
|
45
45
|
import './util-7700fc59.js';
|
|
46
46
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
47
47
|
import 'next/head';
|
package/dist/esm/GridContent.js
CHANGED
|
@@ -38,9 +38,9 @@ import './_set-species-3f8319f5.js';
|
|
|
38
38
|
import './Segment.js';
|
|
39
39
|
import './Beam.js';
|
|
40
40
|
import './AdSlot.js';
|
|
41
|
-
import { A as ADInfeed } from './ADInfeed-
|
|
41
|
+
import { A as ADInfeed } from './ADInfeed-1531cd28.js';
|
|
42
42
|
import { l as lodash } from './lodash-ec8c6b48.js';
|
|
43
|
-
import { A as ADlgInfeed } from './ADlgInfeed-
|
|
43
|
+
import { A as ADlgInfeed } from './ADlgInfeed-ddfa3532.js';
|
|
44
44
|
import { g as getContentCategory } from './getContentCategory-15dcc413.js';
|
|
45
45
|
import { g as get_1 } from './get-5ee14cda.js';
|
|
46
46
|
import './AD.js';
|
|
@@ -43,7 +43,7 @@ import 'react-bootstrap';
|
|
|
43
43
|
import './iconBase-602d52fe.js';
|
|
44
44
|
import { I as IoIosArrowForward } from './index.esm-29e48d38.js';
|
|
45
45
|
import ArticleCarousel from './ArticleCarousel.js';
|
|
46
|
-
import { g as getSerializers } from './index-
|
|
46
|
+
import { g as getSerializers } from './index-be22f02f.js';
|
|
47
47
|
import './util-7700fc59.js';
|
|
48
48
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
49
49
|
import 'next/head';
|
package/dist/esm/IssueLanding.js
CHANGED
|
@@ -30,9 +30,9 @@ import './_set-species-3f8319f5.js';
|
|
|
30
30
|
import './Segment.js';
|
|
31
31
|
import './Beam.js';
|
|
32
32
|
import './AdSlot.js';
|
|
33
|
-
import './ADInfeed-
|
|
33
|
+
import './ADInfeed-1531cd28.js';
|
|
34
34
|
import './lodash-ec8c6b48.js';
|
|
35
|
-
import './ADlgInfeed-
|
|
35
|
+
import './ADlgInfeed-ddfa3532.js';
|
|
36
36
|
import './getContentCategory-15dcc413.js';
|
|
37
37
|
import './AuthorComponent-34b16174.js';
|
|
38
38
|
import 'react-bootstrap';
|
package/dist/esm/MasterDeck.js
CHANGED
|
@@ -36,9 +36,9 @@ import './_set-species-3f8319f5.js';
|
|
|
36
36
|
import './Segment.js';
|
|
37
37
|
import './Beam.js';
|
|
38
38
|
import './AdSlot.js';
|
|
39
|
-
import { A as ADInfeed } from './ADInfeed-
|
|
39
|
+
import { A as ADInfeed } from './ADInfeed-1531cd28.js';
|
|
40
40
|
import { l as lodash } from './lodash-ec8c6b48.js';
|
|
41
|
-
import { A as ADlgInfeed } from './ADlgInfeed-
|
|
41
|
+
import { A as ADlgInfeed } from './ADlgInfeed-ddfa3532.js';
|
|
42
42
|
|
|
43
43
|
var MasterDeck = function (_React$Component) {
|
|
44
44
|
_inherits(MasterDeck, _React$Component);
|
|
@@ -37,9 +37,9 @@ import './_set-species-3f8319f5.js';
|
|
|
37
37
|
import './Segment.js';
|
|
38
38
|
import './Beam.js';
|
|
39
39
|
import './AdSlot.js';
|
|
40
|
-
import './ADInfeed-
|
|
40
|
+
import './ADInfeed-1531cd28.js';
|
|
41
41
|
import './lodash-ec8c6b48.js';
|
|
42
|
-
import './ADlgInfeed-
|
|
42
|
+
import './ADlgInfeed-ddfa3532.js';
|
|
43
43
|
import './getContentCategory-15dcc413.js';
|
|
44
44
|
import './AuthorComponent-34b16174.js';
|
|
45
45
|
import { B as BlockContent } from './BlockContent-c409aca5.js';
|
|
@@ -51,7 +51,7 @@ import './timeDifferenceCalc.js';
|
|
|
51
51
|
import QueueDeckExpanded from './QueueDeckExpanded.js';
|
|
52
52
|
import './iconBase-602d52fe.js';
|
|
53
53
|
import './index.esm-29e48d38.js';
|
|
54
|
-
import { g as getSerializers } from './index-
|
|
54
|
+
import { g as getSerializers } from './index-be22f02f.js';
|
|
55
55
|
import './util-7700fc59.js';
|
|
56
56
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
57
57
|
import 'next/head';
|
package/dist/esm/PubSection.js
CHANGED
|
@@ -30,9 +30,9 @@ import './_set-species-3f8319f5.js';
|
|
|
30
30
|
import './Segment.js';
|
|
31
31
|
import './Beam.js';
|
|
32
32
|
import './AdSlot.js';
|
|
33
|
-
import './ADInfeed-
|
|
33
|
+
import './ADInfeed-1531cd28.js';
|
|
34
34
|
import './lodash-ec8c6b48.js';
|
|
35
|
-
import './ADlgInfeed-
|
|
35
|
+
import './ADlgInfeed-ddfa3532.js';
|
|
36
36
|
import './getContentCategory-15dcc413.js';
|
|
37
37
|
import './AuthorComponent-34b16174.js';
|
|
38
38
|
import 'react-bootstrap';
|
|
@@ -30,9 +30,9 @@ import './_set-species-3f8319f5.js';
|
|
|
30
30
|
import './Segment.js';
|
|
31
31
|
import './Beam.js';
|
|
32
32
|
import './AdSlot.js';
|
|
33
|
-
import { A as ADInfeed } from './ADInfeed-
|
|
33
|
+
import { A as ADInfeed } from './ADInfeed-1531cd28.js';
|
|
34
34
|
import { l as lodash } from './lodash-ec8c6b48.js';
|
|
35
|
-
import { A as ADlgInfeed } from './ADlgInfeed-
|
|
35
|
+
import { A as ADlgInfeed } from './ADlgInfeed-ddfa3532.js';
|
|
36
36
|
import { g as getContentCategory } from './getContentCategory-15dcc413.js';
|
|
37
37
|
import { A as AuthorComponent } from './AuthorComponent-34b16174.js';
|
|
38
38
|
import { Container, Media } from 'react-bootstrap';
|
|
@@ -41,7 +41,7 @@ import './GroupDeck.js';
|
|
|
41
41
|
import 'react-bootstrap';
|
|
42
42
|
import './iconBase-602d52fe.js';
|
|
43
43
|
import './index.esm-29e48d38.js';
|
|
44
|
-
import { g as getSerializers } from './index-
|
|
44
|
+
import { g as getSerializers } from './index-be22f02f.js';
|
|
45
45
|
import './util-7700fc59.js';
|
|
46
46
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
47
47
|
import Head from 'next/head';
|
|
@@ -46,7 +46,7 @@ import 'react-bootstrap';
|
|
|
46
46
|
import './iconBase-602d52fe.js';
|
|
47
47
|
import './index.esm-29e48d38.js';
|
|
48
48
|
import VideoSeriesListing from './VideoSeriesListing.js';
|
|
49
|
-
import { g as getSerializers } from './index-
|
|
49
|
+
import { g as getSerializers } from './index-be22f02f.js';
|
|
50
50
|
import './util-7700fc59.js';
|
|
51
51
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
52
52
|
import 'next/head';
|
|
@@ -37,9 +37,9 @@ import './_set-species-3f8319f5.js';
|
|
|
37
37
|
import './Segment.js';
|
|
38
38
|
import './Beam.js';
|
|
39
39
|
import './AdSlot.js';
|
|
40
|
-
import './ADInfeed-
|
|
40
|
+
import './ADInfeed-1531cd28.js';
|
|
41
41
|
import './lodash-ec8c6b48.js';
|
|
42
|
-
import './ADlgInfeed-
|
|
42
|
+
import './ADlgInfeed-ddfa3532.js';
|
|
43
43
|
import { g as getYoutubeId } from './index-c7e2ac95.js';
|
|
44
44
|
import MasterDeck from './MasterDeck.js';
|
|
45
45
|
import 'react-bootstrap/Breadcrumb';
|
package/dist/esm/View.js
CHANGED
|
@@ -42,7 +42,7 @@ import './GroupDeck.js';
|
|
|
42
42
|
import 'react-bootstrap';
|
|
43
43
|
import './iconBase-602d52fe.js';
|
|
44
44
|
import './index.esm-29e48d38.js';
|
|
45
|
-
import { I as InscreenSensor, r as renderAuthor, g as getSerializers } from './index-
|
|
45
|
+
import { I as InscreenSensor, r as renderAuthor, g as getSerializers } from './index-be22f02f.js';
|
|
46
46
|
import './util-7700fc59.js';
|
|
47
47
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
48
48
|
import Head from 'next/head';
|
|
@@ -41,7 +41,7 @@ import './GroupDeck.js';
|
|
|
41
41
|
import 'react-bootstrap';
|
|
42
42
|
import './iconBase-602d52fe.js';
|
|
43
43
|
import './index.esm-29e48d38.js';
|
|
44
|
-
export { g as default } from './index-
|
|
44
|
+
export { g as default } from './index-be22f02f.js';
|
|
45
45
|
import './util-7700fc59.js';
|
|
46
46
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
47
47
|
import 'next/head';
|
package/dist/esm/index.js
CHANGED
|
@@ -38,10 +38,10 @@ import './_set-species-3f8319f5.js';
|
|
|
38
38
|
export { default as Segment } from './Segment.js';
|
|
39
39
|
export { default as Beam } from './Beam.js';
|
|
40
40
|
export { default as AdSlot } from './AdSlot.js';
|
|
41
|
-
import './ADInfeed-
|
|
41
|
+
import './ADInfeed-1531cd28.js';
|
|
42
42
|
export { default as DeckContent } from './DeckContent.js';
|
|
43
43
|
import './lodash-ec8c6b48.js';
|
|
44
|
-
import './ADlgInfeed-
|
|
44
|
+
import './ADlgInfeed-ddfa3532.js';
|
|
45
45
|
import './getContentCategory-15dcc413.js';
|
|
46
46
|
import './get-5ee14cda.js';
|
|
47
47
|
export { default as AD } from './AD.js';
|
|
@@ -66,7 +66,7 @@ import './index.esm-29e48d38.js';
|
|
|
66
66
|
export { default as VideoSeriesListing } from './VideoSeriesListing.js';
|
|
67
67
|
export { default as ArticleSeriesListing } from './ArticleSeriesListing.js';
|
|
68
68
|
export { default as ArticleCarousel } from './ArticleCarousel.js';
|
|
69
|
-
export { g as getSerializers } from './index-
|
|
69
|
+
export { g as getSerializers } from './index-be22f02f.js';
|
|
70
70
|
import './util-7700fc59.js';
|
|
71
71
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
72
72
|
import 'next/head';
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|