@mjhls/mjh-framework 1.0.184 → 1.0.185

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 CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- # mjh-framework v. 1.0.178
2
+ # mjh-framework v. 1.0.185
3
3
 
4
4
 
5
5
 
package/dist/index.es.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import React__default, { Component, useState, useEffect, useRef, createContext, createElement } from 'react';
2
2
  import PropTypes from 'prop-types';
3
- import require$$1 from 'react-dom';
3
+ import reactDom from 'react-dom';
4
4
  import Container from 'react-bootstrap/Container';
5
5
  import Row from 'react-bootstrap/Row';
6
6
  import Col from 'react-bootstrap/Col';
@@ -7177,7 +7177,7 @@ var InfiniteScroll = /** @class */ (function (_super) {
7177
7177
 
7178
7178
  var visibilitySensor = createCommonjsModule(function (module, exports) {
7179
7179
  (function webpackUniversalModuleDefinition(root, factory) {
7180
- module.exports = factory(React__default, require$$1);
7180
+ module.exports = factory(React__default, reactDom);
7181
7181
  })(commonjsGlobal, function(__WEBPACK_EXTERNAL_MODULE__1__, __WEBPACK_EXTERNAL_MODULE__2__) {
7182
7182
  return /******/ (function(modules) { // webpackBootstrap
7183
7183
  /******/ // The module cache
@@ -8477,7 +8477,7 @@ var _react2 = _interopRequireDefault(React__default);
8477
8477
 
8478
8478
 
8479
8479
 
8480
- var _reactDom2 = _interopRequireDefault(require$$1);
8480
+ var _reactDom2 = _interopRequireDefault(reactDom);
8481
8481
 
8482
8482
 
8483
8483
 
@@ -12096,6 +12096,13 @@ var GroupDeck = function GroupDeck(props) {
12096
12096
  React__default.createElement(
12097
12097
  'div',
12098
12098
  { style: { color: variant }, className: 'tile__info' },
12099
+ React__default.createElement(
12100
+ 'span',
12101
+ { style: { fontWeight: 'bold' } },
12102
+ 'Ep ',
12103
+ index + 1,
12104
+ ': '
12105
+ ),
12099
12106
  video.title
12100
12107
  )
12101
12108
  )
@@ -12341,7 +12348,19 @@ var YoutubeGroup = function YoutubeGroup(props) {
12341
12348
  React__default.createElement(
12342
12349
  'div',
12343
12350
  { style: { color: variant }, className: 'tile__info' },
12344
- video.title
12351
+ props.displayEpisodeNumber ? React__default.createElement(
12352
+ 'span',
12353
+ null,
12354
+ React__default.createElement(
12355
+ 'span',
12356
+ { style: { fontWeight: 'bold' } },
12357
+ 'Ep. ',
12358
+ index + 1,
12359
+ ':'
12360
+ ),
12361
+ ' ',
12362
+ video.title
12363
+ ) : video.title
12345
12364
  )
12346
12365
  )
12347
12366
  )
@@ -13197,7 +13216,7 @@ var VideoSeriesListing = function (_React$Component) {
13197
13216
  )
13198
13217
  )
13199
13218
  ),
13200
- React__default.createElement(YoutubeGroup, { key: index$$1, dataset: docSeries.body[0].videos })
13219
+ React__default.createElement(YoutubeGroup, _extends({ key: index$$1, dataset: docSeries.body[0].videos }, _this.props))
13201
13220
  );
13202
13221
  })
13203
13222
  );