@mjhls/mjh-framework 1.0.736 → 1.0.738

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.
@@ -20,6 +20,7 @@ var _typeof$1 = require('./typeof-97065d40.js');
20
20
  var brightcoveReactPlayerLoader_es = require('./brightcove-react-player-loader.es-a195642e.js');
21
21
  var GroupDeck = require('./GroupDeck.js');
22
22
  var moment = require('./moment-aca40de1.js');
23
+ var SocialShare = require('./SocialShare.js');
23
24
  var _toObject = require('./_to-object-821a2927.js');
24
25
  var _objectToArray = require('./_object-to-array-bec5fcf2.js');
25
26
  var toConsumableArray = require('./toConsumableArray-cf0865fc.js');
@@ -2334,12 +2335,12 @@ var Video = function Video(_ref) {
2334
2335
  accountId: accountIDs.brightcove.accountId,
2335
2336
  videoId: videoID,
2336
2337
  playerId: accountIDs.brightcove.playerId,
2337
- attrs: { className: 'brightcove', autoplay: 'muted' }
2338
+ attrs: { className: 'brightcove-fluid', autoplay: 'muted' }
2338
2339
  }),
2339
2340
  React__default['default'].createElement(
2340
2341
  'style',
2341
2342
  { jsx: 'true' },
2342
- '\n .brightcove {\n position: relative;\n margin-bottom: 1rem;\n height: 100%;\n width: 100%;\n }\n .brightcove .video-js {\n height: 100%;\n width: 100%;\n position: relative;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n min-height: 411px;\n }\n '
2343
+ '\n .brightcove-fluid {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;\n width: 100%;\n margin-bottom: 1rem;\n }\n .brightcove-fluid .video-js {\n height: 100%;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n '
2343
2344
  )
2344
2345
  );
2345
2346
  } else if (playlistID) {
@@ -2351,12 +2352,12 @@ var Video = function Video(_ref) {
2351
2352
  playlistId: playlistID,
2352
2353
  playerId: accountIDs.brightcove.playerId,
2353
2354
  onSuccess: onVideoSuccess,
2354
- attrs: { className: 'brightcove brightcove-playlist', autoplay: 'muted' }
2355
+ attrs: { className: 'brightcove-fluid brightcove-playlist', autoplay: 'muted' }
2355
2356
  }),
2356
2357
  React__default['default'].createElement(
2357
2358
  'style',
2358
2359
  { jsx: 'true' },
2359
- '\n .brightcove {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;\n width: 100%;\n }\n .brightcove .video-js {\n height: 100%;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n '
2360
+ '\n .brightcove-fluid {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;\n width: 100%;\n margin-bottom: 1rem;\n }\n .brightcove-fluid .video-js {\n height: 100%;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n '
2360
2361
  )
2361
2362
  );
2362
2363
  } else if (experienceID) {
@@ -7072,11 +7073,74 @@ var VideoMp4 = function VideoMp4(_ref) {
7072
7073
  );
7073
7074
  };
7074
7075
 
7076
+ var renderAuthor = function renderAuthor(authorName, authorURL, index, length) {
7077
+ var defaultUrl = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 'authors';
7078
+ var biography = arguments[5];
7079
+ var profileImage = arguments[6];
7080
+
7081
+ if (authorName && authorURL) {
7082
+ return React__default['default'].createElement(
7083
+ 'span',
7084
+ null,
7085
+ React__default['default'].createElement(
7086
+ 'a',
7087
+ { className: 'author-details-link-' + index, rel: 'author', href: '/' + defaultUrl + '/' + authorURL.current, key: index },
7088
+ authorName
7089
+ ),
7090
+ React__default['default'].createElement(
7091
+ reactBootstrap.Card,
7092
+ { className: 'author-details-card-' + index },
7093
+ React__default['default'].createElement(
7094
+ reactBootstrap.Row,
7095
+ null,
7096
+ profileImage && React__default['default'].createElement(
7097
+ reactBootstrap.Col,
7098
+ { sm: 12, md: 4, className: 'author-details-img-container' },
7099
+ React__default['default'].createElement(reactBootstrap.Card.Img, { className: 'author-details-img', src: profileImage, alt: authorName })
7100
+ ),
7101
+ React__default['default'].createElement(
7102
+ reactBootstrap.Col,
7103
+ { className: 'author-details-col', sm: 12, md: profileImage ? 8 : 12 },
7104
+ React__default['default'].createElement(
7105
+ 'div',
7106
+ { style: { fontWidth: '500', fontSize: '1.15rem' } },
7107
+ authorName
7108
+ ),
7109
+ React__default['default'].createElement(
7110
+ 'p',
7111
+ null,
7112
+ biography
7113
+ )
7114
+ )
7115
+ )
7116
+ ),
7117
+ React__default['default'].createElement(
7118
+ 'style',
7119
+ { jsx: 'true' },
7120
+ '\n .author-details-card-' + index + ' {\n display: none;\n position: absolute;\n width: 90%;\n max-width: 450px;\n z-index: 9999;\n }\n .author-details-card-' + index + ' h5 {\n font-weight: 500;\n }\n .author-details-link-' + index + ':hover + .author-details-card-' + index + ', .author-details-card-' + index + ':hover {\n display: block;\n box-shadow: 0px 0px 5px #aaa;\n padding: 15px;\n border-radius: 5px;\n }\n '
7121
+ ),
7122
+ length !== index + 1 && ' , '
7123
+ );
7124
+ } else if (authorName) {
7125
+ return React__default['default'].createElement(
7126
+ 'span',
7127
+ { key: index },
7128
+ authorName,
7129
+ length !== index + 1 && ' , '
7130
+ );
7131
+ }
7132
+ };
7133
+
7075
7134
  var YouTubeGallery = function YouTubeGallery(_ref) {
7076
7135
  var nodes = _ref.nodes,
7077
7136
  client = _ref.client,
7078
7137
  getSerializers = _ref.getSerializers,
7079
- accountIDs = _ref.accountIDs;
7138
+ accountIDs = _ref.accountIDs,
7139
+ article = _ref.article,
7140
+ meta = _ref.meta,
7141
+ authorPrefix = _ref.authorPrefix,
7142
+ _ref$authorImgHeight = _ref.authorImgHeight,
7143
+ authorImgHeight = _ref$authorImgHeight === undefined ? 270 : _ref$authorImgHeight;
7080
7144
 
7081
7145
  if (!nodes || !nodes.videos) {
7082
7146
  return null;
@@ -7085,7 +7149,6 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
7085
7149
  var today = moment.moment().utc().format();
7086
7150
 
7087
7151
  var Videos = nodes.videos.filter(function (video) {
7088
- console.dir(video);
7089
7152
  if ((video.is_visible === true || !video.hasOwnProperty('is_visible')) && (today >= video.published || !video.hasOwnProperty('published'))) {
7090
7153
  return video;
7091
7154
  }
@@ -7156,7 +7219,7 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
7156
7219
  // Once component mounts, set the variables
7157
7220
  React.useEffect(function () {
7158
7221
  var params = new URL(document.location).searchParams;
7159
- var seriesVid = params.get('seriesVid') || 1;
7222
+ var seriesVid = params.get('seriesVid') || 0;
7160
7223
  var data = [];
7161
7224
 
7162
7225
  Videos.forEach(function (vid) {
@@ -7172,7 +7235,7 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
7172
7235
  });
7173
7236
  // if series number doesn't exist, route back to first vid of series
7174
7237
 
7175
- if (data.length < seriesVid) {
7238
+ if (data.length < seriesVid || !seriesVid) {
7176
7239
  setSeries(1);
7177
7240
  setVidUrl(Videos[0].url);
7178
7241
  setVidThumbnail(Videos[0].thumbnail && Videos[0].thumbnail.asset ? urlFor(Videos[0].thumbnail.asset).url() : '');
@@ -7195,17 +7258,17 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
7195
7258
  setData(data);
7196
7259
  }, []);
7197
7260
 
7198
- React.useEffect(function () {
7199
- if (vidLoaded == true) {
7200
- var params = new URL(document.location).searchParams;
7201
- var seriesVid = params.get('seriesVid');
7202
- var vidTitle = Videos[series - 1].title;
7203
- var originalTitle = document.title;
7204
- if (seriesVid) {
7205
- document.title = vidTitle + ' | ' + originalTitle;
7206
- }
7207
- }
7208
- }, [vidLoaded]);
7261
+ // useEffect(() => {
7262
+ // if (vidLoaded == true) {
7263
+ // const params = new URL(document.location).searchParams
7264
+ // const seriesVid = params.get('seriesVid')
7265
+ // const vidTitle = Videos[series - 1].title
7266
+ // const originalTitle = document.title
7267
+ // if (seriesVid) {
7268
+ // document.title = vidTitle + ' | ' + originalTitle
7269
+ // }
7270
+ // }
7271
+ // }, [vidLoaded])
7209
7272
 
7210
7273
  // This function is passed to the GroupDeck to change the youtube iframe src
7211
7274
  function setState(url, thumbnail, vidIndex) {
@@ -7339,6 +7402,65 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
7339
7402
  return React__default['default'].createElement(
7340
7403
  'div',
7341
7404
  { className: 'video-container', style: { marginBottom: '2rem' } },
7405
+ React__default['default'].createElement(
7406
+ 'div',
7407
+ { className: 'mt-2 mb-5' },
7408
+ series && React__default['default'].createElement(
7409
+ 'div',
7410
+ { style: { fontSize: '0.9rem' } },
7411
+ article.title,
7412
+ ' - Episode ',
7413
+ series
7414
+ ),
7415
+ Videos[series - 1] && React__default['default'].createElement(
7416
+ 'h1',
7417
+ { className: 'mb-3' },
7418
+ Videos[series - 1].title
7419
+ ),
7420
+ React__default['default'].createElement(
7421
+ 'div',
7422
+ null,
7423
+ moment.moment(article.published).format('LL')
7424
+ ),
7425
+ React__default['default'].createElement(
7426
+ 'div',
7427
+ { className: 'mb-3' },
7428
+ article.authorDetails && article.authorDetails.map(function (authorDetail, index) {
7429
+ return React__default['default'].createElement(
7430
+ 'span',
7431
+ { key: index },
7432
+ renderAuthor(authorDetail.displayName, authorDetail.url, index, article.authorDetails.length, authorPrefix, '', authorDetail.profileImage && urlFor(client, authorDetail.profileImage).height(authorImgHeight).url())
7433
+ );
7434
+ })
7435
+ ),
7436
+ React__default['default'].createElement(
7437
+ 'p',
7438
+ null,
7439
+ React__default['default'].createElement(SocialShare, {
7440
+ shareUrl: meta.shareUrl + '?seriesVid=' + series,
7441
+ shareTitle: Videos[series - 1] && Videos[series - 1].title ? Videos[series - 1].title : meta.shareTitle,
7442
+ shareVia: meta.shareVia,
7443
+ shareSummary: Videos[series - 1] && Videos[series - 1].text ? Videos[series - 1].text : meta.shareSummary,
7444
+ shareSubject: meta.shareSubject,
7445
+ shareImage: meta.shareImage,
7446
+ size: 32,
7447
+ siteName: meta.siteName,
7448
+ twitterSiteName: meta.twitterSiteName,
7449
+ disableMeta: true,
7450
+ hidePinterest: meta.hidePinterestShare,
7451
+ hideFacebook: meta.hideFBShare
7452
+ })
7453
+ ),
7454
+ Videos[series - 1] && Videos[series - 1].intro && React__default['default'].createElement(
7455
+ 'p',
7456
+ { className: 'mb-3' },
7457
+ React__default['default'].createElement(
7458
+ 'em',
7459
+ null,
7460
+ Videos[series - 1].intro
7461
+ )
7462
+ )
7463
+ ),
7342
7464
  React__default['default'].createElement(
7343
7465
  'div',
7344
7466
  { id: 'fluid-video-container', className: 'video-block', style: { position: 'relative', overflow: 'hidden' } },
@@ -7383,33 +7505,13 @@ var YouTubeGallery = function YouTubeGallery(_ref) {
7383
7505
  React__default['default'].createElement('div', { className: 'vid-controls', style: { width: '100%', background: 'transparent', display: 'flex', justifyContent: 'center' } }),
7384
7506
  React__default['default'].createElement(
7385
7507
  'div',
7386
- { className: 'mt-2 mb-5' },
7387
- series && React__default['default'].createElement(
7388
- 'h3',
7389
- null,
7390
- 'Episode ',
7391
- series
7392
- ),
7393
- Videos[series - 1] && React__default['default'].createElement(
7394
- 'h2',
7395
- { className: 'mb-3' },
7396
- Videos[series - 1].title
7397
- ),
7398
- Videos[series - 1] && Videos[series - 1].intro && React__default['default'].createElement(
7399
- 'p',
7400
- { className: 'mb-3' },
7401
- React__default['default'].createElement(
7402
- 'em',
7403
- null,
7404
- Videos[series - 1].intro
7405
- )
7406
- ),
7508
+ { className: 'vid-text' },
7407
7509
  Videos[series - 1] && Videos[series - 1].text && React__default['default'].createElement(BlockContent.BlockContent, _extends._extends({ serializers: getSerializers, blocks: Videos[series - 1].text, imageOptions: { w: 320, h: 240, fit: 'max' } }, client.config()))
7408
7510
  ),
7409
7511
  React__default['default'].createElement(
7410
7512
  'style',
7411
7513
  { jsx: 'true' },
7412
- '\n #fluid-video-container > div {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;\n }\n #fluid-video-container .fluid-iframe {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100% !important;\n }\n\n span.btn {\n margin: 0 1rem;\n }\n '
7514
+ '\n span.btn {\n margin: 0 1rem;\n }\n '
7413
7515
  )
7414
7516
  );
7415
7517
  };
@@ -8208,64 +8310,6 @@ var MultiMedia = function MultiMedia(props) {
8208
8310
  return null;
8209
8311
  };
8210
8312
 
8211
- var renderAuthor = function renderAuthor(authorName, authorURL, index, length) {
8212
- var defaultUrl = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 'authors';
8213
- var biography = arguments[5];
8214
- var profileImage = arguments[6];
8215
-
8216
- if (authorName && authorURL) {
8217
- return React__default['default'].createElement(
8218
- 'span',
8219
- null,
8220
- React__default['default'].createElement(
8221
- 'a',
8222
- { className: 'author-details-link-' + index, rel: 'author', href: '/' + defaultUrl + '/' + authorURL.current, key: index },
8223
- authorName
8224
- ),
8225
- React__default['default'].createElement(
8226
- reactBootstrap.Card,
8227
- { className: 'author-details-card-' + index },
8228
- React__default['default'].createElement(
8229
- reactBootstrap.Row,
8230
- null,
8231
- profileImage && React__default['default'].createElement(
8232
- reactBootstrap.Col,
8233
- { sm: 12, md: 4, className: 'author-details-img-container' },
8234
- React__default['default'].createElement(reactBootstrap.Card.Img, { className: 'author-details-img', src: profileImage, alt: authorName })
8235
- ),
8236
- React__default['default'].createElement(
8237
- reactBootstrap.Col,
8238
- { className: 'author-details-col', sm: 12, md: profileImage ? 8 : 12 },
8239
- React__default['default'].createElement(
8240
- 'h5',
8241
- null,
8242
- authorName
8243
- ),
8244
- React__default['default'].createElement(
8245
- 'p',
8246
- null,
8247
- biography
8248
- )
8249
- )
8250
- )
8251
- ),
8252
- React__default['default'].createElement(
8253
- 'style',
8254
- { jsx: 'true' },
8255
- '\n .author-details-card-' + index + ' {\n display: none;\n position: absolute;\n width: 90%;\n max-width: 450px;\n z-index: 9999;\n }\n .author-details-card-' + index + ' h5 {\n font-weight: 500;\n }\n .author-details-link-' + index + ':hover + .author-details-card-' + index + ', .author-details-card-' + index + ':hover {\n display: block;\n box-shadow: 0px 0px 5px #aaa;\n padding: 15px;\n border-radius: 5px;\n }\n '
8256
- ),
8257
- length !== index + 1 && ' , '
8258
- );
8259
- } else if (authorName) {
8260
- return React__default['default'].createElement(
8261
- 'span',
8262
- { key: index },
8263
- authorName,
8264
- length !== index + 1 && ' , '
8265
- );
8266
- }
8267
- };
8268
-
8269
8313
  var InscreenSensor = function (_React$Component) {
8270
8314
  inherits._inherits(InscreenSensor, _React$Component);
8271
8315
 
@@ -9243,7 +9287,10 @@ var getSerializers = function getSerializers() {
9243
9287
  articleId = props[9],
9244
9288
  Ads = props[10],
9245
9289
  targeting = props[11],
9246
- article = props[12];
9290
+ article = props[12],
9291
+ meta = props[13],
9292
+ authorPrefix = props[14],
9293
+ authorImgHeight = props[15];
9247
9294
 
9248
9295
  return {
9249
9296
  types: {
@@ -9260,7 +9307,7 @@ var getSerializers = function getSerializers() {
9260
9307
  youtubeGallery: function youtubeGallery(_ref2) {
9261
9308
  var node = _ref2.node;
9262
9309
 
9263
- return React__default['default'].createElement(YouTubeGallery, { nodes: node, accountIDs: videoAccountIDs || {}, client: client, getSerializers: getSerializers(client) });
9310
+ return React__default['default'].createElement(YouTubeGallery, { nodes: node, article: article, meta: meta, authorPrefix: authorPrefix, authorImgHeight: authorImgHeight, accountIDs: videoAccountIDs || {}, client: client, getSerializers: getSerializers(client) });
9264
9311
  },
9265
9312
  articleSeries: function articleSeries(_ref3) {
9266
9313
  var node = _ref3.node;
package/dist/cjs/index.js CHANGED
@@ -82,7 +82,7 @@ var VerticalHero = require('./VerticalHero.js');
82
82
  var YahooHero = require('./YahooHero.js');
83
83
  var GridHero = require('./GridHero.js');
84
84
  var ConferenceArticleCard = require('./ConferenceArticleCard.js');
85
- var getSerializers = require('./index-5260126b.js');
85
+ var getSerializers = require('./index-00b7a18a.js');
86
86
  var Beam = require('./Beam.js');
87
87
  var Segment = require('./Segment.js');
88
88
  var KMTracker = require('./KMTracker.js');
@@ -3,7 +3,7 @@ import { _ as _slicedToArray } from './slicedToArray-cdeaee08.js';
3
3
  import { _ as _extends } from './extends-31d65aba.js';
4
4
  import React from 'react';
5
5
  import { B as BlockContent } from './BlockContent-d8cd739c.js';
6
- import { g as getSerializers } from './index-d6ad9248.js';
6
+ import { g as getSerializers } from './index-a7f9ce66.js';
7
7
  import ArticleSeriesListing from './ArticleSeriesListing.js';
8
8
  import './_commonjsHelpers-0c4b6f40.js';
9
9
  import './es6.string.iterator-aa6068a3.js';
@@ -33,6 +33,9 @@ import './brightcove-react-player-loader.es-b43c695a.js';
33
33
  import './GroupDeck.js';
34
34
  import './smoothscroll-fa4e3f8c.js';
35
35
  import './moment-bc12cb97.js';
36
+ import './SocialShare.js';
37
+ import 'next/head';
38
+ import 'react-share';
36
39
  import './_object-to-array-8f409e54.js';
37
40
  import './toConsumableArray-fa2dcda7.js';
38
41
  import 'react-bootstrap/Pagination';
@@ -43,7 +46,6 @@ import './debounce-1a993acf.js';
43
46
  import './isSymbol-807e927e.js';
44
47
  import 'react-bootstrap/Row';
45
48
  import 'react-bootstrap/Col';
46
- import 'next/head';
47
49
  import './inherits-5906fbea.js';
48
50
  import './_object-sap-fd3054d0.js';
49
51
  import './define-property-ec6d528d.js';
@@ -2,7 +2,7 @@ import { _ as _extends } from './extends-31d65aba.js';
2
2
  import { _ as _slicedToArray } from './slicedToArray-cdeaee08.js';
3
3
  import React, { useState, useEffect } from 'react';
4
4
  import { B as BlockContent } from './BlockContent-d8cd739c.js';
5
- import { g as getSerializers } from './index-d6ad9248.js';
5
+ import { g as getSerializers } from './index-a7f9ce66.js';
6
6
  import { m as momentTimezone } from './index-ccb770c7.js';
7
7
  import { useRouter } from 'next/router';
8
8
  import Button from 'react-bootstrap/Button';
@@ -34,6 +34,9 @@ import './brightcove-react-player-loader.es-b43c695a.js';
34
34
  import './GroupDeck.js';
35
35
  import './smoothscroll-fa4e3f8c.js';
36
36
  import './moment-bc12cb97.js';
37
+ import './SocialShare.js';
38
+ import 'next/head';
39
+ import 'react-share';
37
40
  import './_object-to-array-8f409e54.js';
38
41
  import './toConsumableArray-fa2dcda7.js';
39
42
  import 'react-bootstrap/Pagination';
@@ -43,7 +46,6 @@ import './debounce-1a993acf.js';
43
46
  import './isSymbol-807e927e.js';
44
47
  import 'react-bootstrap/Row';
45
48
  import 'react-bootstrap/Col';
46
- import 'next/head';
47
49
  import './inherits-5906fbea.js';
48
50
  import './_object-sap-fd3054d0.js';
49
51
  import './define-property-ec6d528d.js';
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import ArticleCarousel from './ArticleCarousel.js';
4
4
  import { I as IoIosArrowForward } from './index.esm-3fdda599.js';
5
5
  import { B as BlockContent } from './BlockContent-d8cd739c.js';
6
- import { g as getSerializers } from './index-d6ad9248.js';
6
+ import { g as getSerializers } from './index-a7f9ce66.js';
7
7
  import './_commonjsHelpers-0c4b6f40.js';
8
8
  import './_to-object-97770c52.js';
9
9
  import './_object-pie-33c40e79.js';
@@ -36,6 +36,9 @@ import './Segment.js';
36
36
  import './brightcove-react-player-loader.es-b43c695a.js';
37
37
  import './GroupDeck.js';
38
38
  import './moment-bc12cb97.js';
39
+ import './SocialShare.js';
40
+ import 'next/head';
41
+ import 'react-share';
39
42
  import './_object-to-array-8f409e54.js';
40
43
  import './toConsumableArray-fa2dcda7.js';
41
44
  import 'react-bootstrap/Pagination';
@@ -46,7 +49,6 @@ import './debounce-1a993acf.js';
46
49
  import './isSymbol-807e927e.js';
47
50
  import 'react-bootstrap/Row';
48
51
  import 'react-bootstrap/Col';
49
- import 'next/head';
50
52
  import './inherits-5906fbea.js';
51
53
  import './_object-sap-fd3054d0.js';
52
54
  import './define-property-ec6d528d.js';
@@ -380,13 +380,9 @@ var MasterDeck = function (_React$Component) {
380
380
  'div',
381
381
  null,
382
382
  React.createElement(
383
- 'h5',
383
+ 'em',
384
384
  null,
385
- React.createElement(
386
- 'em',
387
- null,
388
- 'New content coming soon, please check back later.'
389
- )
385
+ 'New content coming soon, please check back later.'
390
386
  )
391
387
  )
392
388
  );
@@ -10,7 +10,7 @@ import QueueDeckExpanded from './QueueDeckExpanded.js';
10
10
  import Breadcrumbs from './Breadcrumbs.js';
11
11
  import Feature from './Feature.js';
12
12
  import urlFor from './urlFor.js';
13
- import { g as getSerializers } from './index-d6ad9248.js';
13
+ import { g as getSerializers } from './index-a7f9ce66.js';
14
14
  import { B as BlockContent } from './BlockContent-d8cd739c.js';
15
15
  import './_commonjsHelpers-0c4b6f40.js';
16
16
  import './es6.string.iterator-aa6068a3.js';
@@ -53,12 +53,14 @@ import './typeof-e9cea9e8.js';
53
53
  import './_is-array-674f71ec.js';
54
54
  import './brightcove-react-player-loader.es-b43c695a.js';
55
55
  import './GroupDeck.js';
56
+ import './SocialShare.js';
57
+ import 'next/head';
58
+ import 'react-share';
56
59
  import './_object-to-array-8f409e54.js';
57
60
  import 'react-bootstrap/Pagination';
58
61
  import 'react-bootstrap/Button';
59
62
  import 'react-bootstrap/Row';
60
63
  import 'react-bootstrap/Col';
61
- import 'next/head';
62
64
  import './inherits-5906fbea.js';
63
65
  import './_object-sap-fd3054d0.js';
64
66
  import './define-property-ec6d528d.js';
@@ -4,7 +4,7 @@ import React from 'react';
4
4
  import { useRouter } from 'next/router';
5
5
  import Head from 'next/head';
6
6
  import { B as BlockContent } from './BlockContent-d8cd739c.js';
7
- import { g as getSerializers } from './index-d6ad9248.js';
7
+ import { g as getSerializers } from './index-a7f9ce66.js';
8
8
  import './_commonjsHelpers-0c4b6f40.js';
9
9
  import './es6.string.iterator-aa6068a3.js';
10
10
  import './_to-object-97770c52.js';
@@ -33,6 +33,8 @@ import './brightcove-react-player-loader.es-b43c695a.js';
33
33
  import './GroupDeck.js';
34
34
  import './smoothscroll-fa4e3f8c.js';
35
35
  import './moment-bc12cb97.js';
36
+ import './SocialShare.js';
37
+ import 'react-share';
36
38
  import './_object-to-array-8f409e54.js';
37
39
  import './toConsumableArray-fa2dcda7.js';
38
40
  import 'react-bootstrap/Pagination';
@@ -5,7 +5,7 @@ import { B as BlockContent } from './BlockContent-d8cd739c.js';
5
5
  import Col from 'react-bootstrap/Col';
6
6
  import Form from 'react-bootstrap/Form';
7
7
  import Button from 'react-bootstrap/Button';
8
- import { g as getSerializers } from './index-d6ad9248.js';
8
+ import { g as getSerializers } from './index-a7f9ce66.js';
9
9
  import VideoSeriesListing from './VideoSeriesListing.js';
10
10
  import './_commonjsHelpers-0c4b6f40.js';
11
11
  import './es6.string.iterator-aa6068a3.js';
@@ -36,6 +36,9 @@ import './brightcove-react-player-loader.es-b43c695a.js';
36
36
  import './GroupDeck.js';
37
37
  import './smoothscroll-fa4e3f8c.js';
38
38
  import './moment-bc12cb97.js';
39
+ import './SocialShare.js';
40
+ import 'next/head';
41
+ import 'react-share';
39
42
  import './_object-to-array-8f409e54.js';
40
43
  import './toConsumableArray-fa2dcda7.js';
41
44
  import 'react-bootstrap/Pagination';
@@ -44,7 +47,6 @@ import './AdSlot.js';
44
47
  import './debounce-1a993acf.js';
45
48
  import './isSymbol-807e927e.js';
46
49
  import 'react-bootstrap/Row';
47
- import 'next/head';
48
50
  import './inherits-5906fbea.js';
49
51
  import './_object-sap-fd3054d0.js';
50
52
  import './define-property-ec6d528d.js';
@@ -52,8 +52,8 @@ var VideoSeriesCard = function VideoSeriesCard(props) {
52
52
  'div',
53
53
  { className: styles.info, style: variant === 'right' ? { padding: '0 1rem 0 0' } : { padding: ' 0 0 0 1rem' } },
54
54
  React.createElement(
55
- 'h2',
56
- null,
55
+ 'div',
56
+ { style: { fontSize: '1.3rem', fontWeight: 'bold' } },
57
57
  episode && 'EP ' + episode + ': ',
58
58
  data.title
59
59
  ),
@@ -224,8 +224,8 @@ var VideoSeriesListing = function (_React$Component) {
224
224
  'div',
225
225
  { key: index, counter: itemCounter++ },
226
226
  React.createElement(
227
- 'h4',
228
- { className: 'video-title-banner', style: { fontWeight: 'bold', color: 'var(--primary)', padding: '.25rem 0', borderBottom: '2px solid #d4a64d' } },
227
+ 'div',
228
+ { className: 'video-title-banner', style: { fontWeight: 'bold', color: 'var(--primary)', padding: '.25rem 0', fontSize: '1.3rem', borderBottom: '2px solid #d4a64d' } },
229
229
  React.createElement(
230
230
  'a',
231
231
  { href: '/' + _this.props.page + '/' + docSeries.url.current },
@@ -294,7 +294,12 @@ var VideoSeriesListing = function (_React$Component) {
294
294
  _this2.renderSeries(series)
295
295
  )
296
296
  );
297
- })
297
+ }),
298
+ React.createElement(
299
+ 'noscript',
300
+ null,
301
+ this.renderManualPagination()
302
+ )
298
303
  )
299
304
  ) : React.createElement(
300
305
  'div',
@@ -366,6 +371,11 @@ var VideoSeriesListing = function (_React$Component) {
366
371
  null,
367
372
  'End of data'
368
373
  )
374
+ ),
375
+ React.createElement(
376
+ 'noscript',
377
+ null,
378
+ _this2.renderManualPagination()
369
379
  )
370
380
  );
371
381
  })