@mjhls/mjh-framework 1.0.202 → 1.0.204
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/index.es.js +105 -40
- package/dist/index.js +104 -38
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React__default, { Component, Suspense, useState, useEffect, useRef,
|
|
1
|
+
import React__default, { Component, Suspense, useState, useEffect, useRef, createElement, createContext } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
import
|
|
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';
|
|
@@ -7186,7 +7186,7 @@ var InfiniteScroll = /** @class */ (function (_super) {
|
|
|
7186
7186
|
|
|
7187
7187
|
var visibilitySensor = createCommonjsModule(function (module, exports) {
|
|
7188
7188
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
7189
|
-
module.exports = factory(React__default,
|
|
7189
|
+
module.exports = factory(React__default, reactDom);
|
|
7190
7190
|
})(commonjsGlobal, function(__WEBPACK_EXTERNAL_MODULE__1__, __WEBPACK_EXTERNAL_MODULE__2__) {
|
|
7191
7191
|
return /******/ (function(modules) { // webpackBootstrap
|
|
7192
7192
|
/******/ // The module cache
|
|
@@ -8494,7 +8494,7 @@ var _react2 = _interopRequireDefault(React__default);
|
|
|
8494
8494
|
|
|
8495
8495
|
|
|
8496
8496
|
|
|
8497
|
-
var _reactDom2 = _interopRequireDefault(
|
|
8497
|
+
var _reactDom2 = _interopRequireDefault(reactDom);
|
|
8498
8498
|
|
|
8499
8499
|
|
|
8500
8500
|
|
|
@@ -15425,11 +15425,11 @@ var IssueDeck = function IssueDeck(props) {
|
|
|
15425
15425
|
Row,
|
|
15426
15426
|
{ style: { flexDirection: 'left' } },
|
|
15427
15427
|
React__default.createElement(
|
|
15428
|
-
|
|
15429
|
-
{
|
|
15428
|
+
Col,
|
|
15429
|
+
{ md: 12, lg: 4, className: 'body-image' },
|
|
15430
15430
|
React__default.createElement(
|
|
15431
|
-
|
|
15432
|
-
{
|
|
15431
|
+
'a',
|
|
15432
|
+
{ href: href + '/' + publication + '/' + row.identifier.current, style: { width: '100%' } },
|
|
15433
15433
|
row.thumbnail && React__default.createElement(
|
|
15434
15434
|
LazyLoad,
|
|
15435
15435
|
{ height: imageHeight },
|
|
@@ -15439,7 +15439,7 @@ var IssueDeck = function IssueDeck(props) {
|
|
|
15439
15439
|
),
|
|
15440
15440
|
React__default.createElement(
|
|
15441
15441
|
Col,
|
|
15442
|
-
|
|
15442
|
+
{ md: 12, lg: 8 },
|
|
15443
15443
|
React__default.createElement(
|
|
15444
15444
|
Card.Body,
|
|
15445
15445
|
{ style: { padding: '20px' }, className: 'body-text' },
|
|
@@ -16345,8 +16345,24 @@ var Column2 = function Column2(props) {
|
|
|
16345
16345
|
};
|
|
16346
16346
|
|
|
16347
16347
|
var LeftNav = function LeftNav(props) {
|
|
16348
|
-
var leftItems = props.leftItems
|
|
16349
|
-
|
|
16348
|
+
var leftItems = props.leftItems,
|
|
16349
|
+
_props$fixedHeight = props.fixedHeight,
|
|
16350
|
+
fixedHeight = _props$fixedHeight === undefined ? true : _props$fixedHeight,
|
|
16351
|
+
_props$SeeAll = props.SeeAll,
|
|
16352
|
+
SeeAll = _props$SeeAll === undefined ? true : _props$SeeAll;
|
|
16353
|
+
|
|
16354
|
+
var sideNavStyles = void 0;
|
|
16355
|
+
if (fixedHeight) {
|
|
16356
|
+
sideNavStyles = {
|
|
16357
|
+
maxHeight: '194px',
|
|
16358
|
+
overflowY: 'scroll',
|
|
16359
|
+
paddingLeft: '0'
|
|
16360
|
+
};
|
|
16361
|
+
} else {
|
|
16362
|
+
sideNavStyles = {
|
|
16363
|
+
paddingLeft: '0'
|
|
16364
|
+
};
|
|
16365
|
+
}
|
|
16350
16366
|
|
|
16351
16367
|
var checkUrlIsExternal = function checkUrlIsExternal(url) {
|
|
16352
16368
|
if (/(http|https?)([^\s]+)/g.test(url)) {
|
|
@@ -16375,36 +16391,37 @@ var LeftNav = function LeftNav(props) {
|
|
|
16375
16391
|
null,
|
|
16376
16392
|
leftItems && leftItems.map(function (row, index) {
|
|
16377
16393
|
return React__default.createElement(
|
|
16378
|
-
|
|
16379
|
-
{ key: index,
|
|
16380
|
-
|
|
16381
|
-
|
|
16382
|
-
|
|
16383
|
-
|
|
16384
|
-
|
|
16385
|
-
|
|
16386
|
-
|
|
16387
|
-
|
|
16388
|
-
|
|
16389
|
-
|
|
16390
|
-
|
|
16391
|
-
|
|
16392
|
-
|
|
16393
|
-
|
|
16394
|
-
|
|
16395
|
-
)
|
|
16396
|
-
|
|
16394
|
+
'nav',
|
|
16395
|
+
{ key: index, 'aria-label': 'Secondary' },
|
|
16396
|
+
React__default.createElement(
|
|
16397
|
+
'div',
|
|
16398
|
+
{ style: { display: 'flex', justifyContent: 'space-between', flexWrap: 'wrap' }, className: 'secondary-nav-title list-group-item active' },
|
|
16399
|
+
React__default.createElement(
|
|
16400
|
+
'span',
|
|
16401
|
+
{ className: 'mr-1', style: { display: 'inline-block', fontWeight: 'bold', fontSize: '1rem' } },
|
|
16402
|
+
row.name
|
|
16403
|
+
),
|
|
16404
|
+
row.url && SeeAll && React__default.createElement(
|
|
16405
|
+
'span',
|
|
16406
|
+
{ style: { marginLeft: 'auto', display: 'inline-block' } },
|
|
16407
|
+
React__default.createElement(
|
|
16408
|
+
'a',
|
|
16409
|
+
{ style: { color: 'white', fontSize: '.6rem' }, href: row.url },
|
|
16410
|
+
'See All >'
|
|
16411
|
+
)
|
|
16412
|
+
)
|
|
16413
|
+
),
|
|
16414
|
+
React__default.createElement(
|
|
16415
|
+
'ul',
|
|
16416
|
+
{ style: sideNavStyles },
|
|
16417
|
+
row.subQuery && row.subQuery.map(function (subRow, subIndex) {
|
|
16397
16418
|
return React__default.createElement(
|
|
16398
|
-
|
|
16399
|
-
{ key: subIndex },
|
|
16400
|
-
|
|
16401
|
-
ListGroup.Item,
|
|
16402
|
-
{ as: 'li', key: subIndex + '_1' },
|
|
16403
|
-
renderListGroupItem(subRow)
|
|
16404
|
-
)
|
|
16419
|
+
ListGroup.Item,
|
|
16420
|
+
{ as: 'li', key: subIndex + '_2' },
|
|
16421
|
+
renderListGroupItem(subRow)
|
|
16405
16422
|
);
|
|
16406
|
-
}
|
|
16407
|
-
|
|
16423
|
+
})
|
|
16424
|
+
)
|
|
16408
16425
|
);
|
|
16409
16426
|
})
|
|
16410
16427
|
);
|
|
@@ -29396,6 +29413,54 @@ var Ustream = function Ustream(_ref) {
|
|
|
29396
29413
|
|
|
29397
29414
|
var Ustream$1 = React__default.memo(Ustream);
|
|
29398
29415
|
|
|
29416
|
+
/*
|
|
29417
|
+
This dropdown is used inside Article body to display related content placement pages
|
|
29418
|
+
sample usage: <ArticleDetailDropdown contentPlacement={content_placement} exclude={['News',]} />
|
|
29419
|
+
|
|
29420
|
+
in article query, need to add '...' to content_placement to retreive additional info needed
|
|
29421
|
+
|
|
29422
|
+
'content_placement': taxonomyMapping[]-> {
|
|
29423
|
+
...,
|
|
29424
|
+
'ancestor': parent->parent->identifier,
|
|
29425
|
+
'parent': parent->identifier,
|
|
29426
|
+
'path': identifier
|
|
29427
|
+
}
|
|
29428
|
+
|
|
29429
|
+
*/
|
|
29430
|
+
|
|
29431
|
+
var ArticleDetailDropdown = function ArticleDetailDropdown(props) {
|
|
29432
|
+
var _props$contentPlaceme = props.contentPlacement,
|
|
29433
|
+
contentPlacement = _props$contentPlaceme === undefined ? false : _props$contentPlaceme,
|
|
29434
|
+
_props$exclude = props.exclude,
|
|
29435
|
+
exclude = _props$exclude === undefined ? [''] : _props$exclude;
|
|
29436
|
+
|
|
29437
|
+
if (contentPlacement.length == 1 && exclude.includes(contentPlacement[0].name) || contentPlacement == false) {
|
|
29438
|
+
return null;
|
|
29439
|
+
}
|
|
29440
|
+
|
|
29441
|
+
return React__default.createElement(
|
|
29442
|
+
Dropdown$1,
|
|
29443
|
+
{ style: { marginBottom: '1rem' } },
|
|
29444
|
+
React__default.createElement(
|
|
29445
|
+
Dropdown$1.Toggle,
|
|
29446
|
+
{ variant: 'primary', id: 'partner-dropdown' },
|
|
29447
|
+
'Related Topics'
|
|
29448
|
+
),
|
|
29449
|
+
React__default.createElement(
|
|
29450
|
+
Dropdown$1.Menu,
|
|
29451
|
+
null,
|
|
29452
|
+
contentPlacement.map(function (cp, index) {
|
|
29453
|
+
var href = cp.parent ? '/' + cp.parent + '/' + cp.path : '/' + cp.path;
|
|
29454
|
+
return !exclude.includes(cp.name) && React__default.createElement(
|
|
29455
|
+
Dropdown$1.Item,
|
|
29456
|
+
{ key: index, href: href },
|
|
29457
|
+
cp.name
|
|
29458
|
+
);
|
|
29459
|
+
})
|
|
29460
|
+
)
|
|
29461
|
+
);
|
|
29462
|
+
};
|
|
29463
|
+
|
|
29399
29464
|
var fbsHero = function fbsHero(props) {
|
|
29400
29465
|
var topArticle = props.dataRecord[0];
|
|
29401
29466
|
var subArticles = props.dataRecord.slice(1, props.dataRecord.length);
|
|
@@ -30193,4 +30258,4 @@ var Dfp$1 = /*#__PURE__*/Object.freeze({
|
|
|
30193
30258
|
default: AD$1
|
|
30194
30259
|
});
|
|
30195
30260
|
|
|
30196
|
-
export { ContentCard as DeckContent, GridContent$1 as GridContent, Queue as DeckQueue, ThumbnailCard, TaxonomyCard, GroupDeck, YoutubeGroup, QueueDeckExpanded, VideoSeriesListing$1 as VideoSeriesListing, MasterDeck$1 as MasterDeck, PublicationDeck, IssueDeck, IssueContentDeck, Column1, Column2, Column3, Header$1 as Header, LeftNav$1 as LeftNav, AccordionPanel, SocialShare$1 as SocialShare, PageFilter, MagazineNav as NavMagazine, NavNative, NavNormal, NavDvm, HamMagazine, TemplateNormal, AD, AD300x250, AD300x250x600, AD728x90, ADFooter, getSerializers$1 as getSerializers, Search, Feature, Breadcrumbs$1 as Breadcrumbs, SetCookie, Hero, AlphabeticList, PdfDownload, RelatedTopicsDropdown, Ustream$1 as Ustream, SideFooter, fbsHero as ForbesHero, HorizontalHero, OncliveHero, OncliveLargeHero, VerticalHero, YahooHero, RelatedContent, ConferenceArticleCard };
|
|
30261
|
+
export { ContentCard as DeckContent, GridContent$1 as GridContent, Queue as DeckQueue, ThumbnailCard, TaxonomyCard, GroupDeck, YoutubeGroup, QueueDeckExpanded, VideoSeriesListing$1 as VideoSeriesListing, MasterDeck$1 as MasterDeck, PublicationDeck, IssueDeck, IssueContentDeck, Column1, Column2, Column3, Header$1 as Header, LeftNav$1 as LeftNav, AccordionPanel, SocialShare$1 as SocialShare, PageFilter, MagazineNav as NavMagazine, NavNative, NavNormal, NavDvm, HamMagazine, TemplateNormal, AD, AD300x250, AD300x250x600, AD728x90, ADFooter, getSerializers$1 as getSerializers, Search, Feature, Breadcrumbs$1 as Breadcrumbs, SetCookie, Hero, AlphabeticList, PdfDownload, RelatedTopicsDropdown, Ustream$1 as Ustream, SideFooter, ArticleDetailDropdown, fbsHero as ForbesHero, HorizontalHero, OncliveHero, OncliveLargeHero, VerticalHero, YahooHero, RelatedContent, ConferenceArticleCard };
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau
|
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var React__default = _interopDefault(React);
|
|
9
9
|
var PropTypes = _interopDefault(require('prop-types'));
|
|
10
|
-
var
|
|
10
|
+
var reactDom = _interopDefault(require('react-dom'));
|
|
11
11
|
var Container = _interopDefault(require('react-bootstrap/Container'));
|
|
12
12
|
var Row = _interopDefault(require('react-bootstrap/Row'));
|
|
13
13
|
var Col = _interopDefault(require('react-bootstrap/Col'));
|
|
@@ -7194,7 +7194,7 @@ var InfiniteScroll = /** @class */ (function (_super) {
|
|
|
7194
7194
|
|
|
7195
7195
|
var visibilitySensor = createCommonjsModule(function (module, exports) {
|
|
7196
7196
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
7197
|
-
module.exports = factory(React__default,
|
|
7197
|
+
module.exports = factory(React__default, reactDom);
|
|
7198
7198
|
})(commonjsGlobal, function(__WEBPACK_EXTERNAL_MODULE__1__, __WEBPACK_EXTERNAL_MODULE__2__) {
|
|
7199
7199
|
return /******/ (function(modules) { // webpackBootstrap
|
|
7200
7200
|
/******/ // The module cache
|
|
@@ -8502,7 +8502,7 @@ var _react2 = _interopRequireDefault(React__default);
|
|
|
8502
8502
|
|
|
8503
8503
|
|
|
8504
8504
|
|
|
8505
|
-
var _reactDom2 = _interopRequireDefault(
|
|
8505
|
+
var _reactDom2 = _interopRequireDefault(reactDom);
|
|
8506
8506
|
|
|
8507
8507
|
|
|
8508
8508
|
|
|
@@ -15433,11 +15433,11 @@ var IssueDeck = function IssueDeck(props) {
|
|
|
15433
15433
|
Row,
|
|
15434
15434
|
{ style: { flexDirection: 'left' } },
|
|
15435
15435
|
React__default.createElement(
|
|
15436
|
-
|
|
15437
|
-
{
|
|
15436
|
+
Col,
|
|
15437
|
+
{ md: 12, lg: 4, className: 'body-image' },
|
|
15438
15438
|
React__default.createElement(
|
|
15439
|
-
|
|
15440
|
-
{
|
|
15439
|
+
'a',
|
|
15440
|
+
{ href: href + '/' + publication + '/' + row.identifier.current, style: { width: '100%' } },
|
|
15441
15441
|
row.thumbnail && React__default.createElement(
|
|
15442
15442
|
LazyLoad,
|
|
15443
15443
|
{ height: imageHeight },
|
|
@@ -15447,7 +15447,7 @@ var IssueDeck = function IssueDeck(props) {
|
|
|
15447
15447
|
),
|
|
15448
15448
|
React__default.createElement(
|
|
15449
15449
|
Col,
|
|
15450
|
-
|
|
15450
|
+
{ md: 12, lg: 8 },
|
|
15451
15451
|
React__default.createElement(
|
|
15452
15452
|
Card.Body,
|
|
15453
15453
|
{ style: { padding: '20px' }, className: 'body-text' },
|
|
@@ -16353,8 +16353,24 @@ var Column2 = function Column2(props) {
|
|
|
16353
16353
|
};
|
|
16354
16354
|
|
|
16355
16355
|
var LeftNav = function LeftNav(props) {
|
|
16356
|
-
var leftItems = props.leftItems
|
|
16357
|
-
|
|
16356
|
+
var leftItems = props.leftItems,
|
|
16357
|
+
_props$fixedHeight = props.fixedHeight,
|
|
16358
|
+
fixedHeight = _props$fixedHeight === undefined ? true : _props$fixedHeight,
|
|
16359
|
+
_props$SeeAll = props.SeeAll,
|
|
16360
|
+
SeeAll = _props$SeeAll === undefined ? true : _props$SeeAll;
|
|
16361
|
+
|
|
16362
|
+
var sideNavStyles = void 0;
|
|
16363
|
+
if (fixedHeight) {
|
|
16364
|
+
sideNavStyles = {
|
|
16365
|
+
maxHeight: '194px',
|
|
16366
|
+
overflowY: 'scroll',
|
|
16367
|
+
paddingLeft: '0'
|
|
16368
|
+
};
|
|
16369
|
+
} else {
|
|
16370
|
+
sideNavStyles = {
|
|
16371
|
+
paddingLeft: '0'
|
|
16372
|
+
};
|
|
16373
|
+
}
|
|
16358
16374
|
|
|
16359
16375
|
var checkUrlIsExternal = function checkUrlIsExternal(url) {
|
|
16360
16376
|
if (/(http|https?)([^\s]+)/g.test(url)) {
|
|
@@ -16383,36 +16399,37 @@ var LeftNav = function LeftNav(props) {
|
|
|
16383
16399
|
null,
|
|
16384
16400
|
leftItems && leftItems.map(function (row, index) {
|
|
16385
16401
|
return React__default.createElement(
|
|
16386
|
-
|
|
16387
|
-
{ key: index,
|
|
16388
|
-
|
|
16389
|
-
|
|
16390
|
-
|
|
16391
|
-
|
|
16392
|
-
|
|
16393
|
-
|
|
16394
|
-
|
|
16395
|
-
|
|
16396
|
-
|
|
16397
|
-
|
|
16398
|
-
|
|
16399
|
-
|
|
16400
|
-
|
|
16401
|
-
|
|
16402
|
-
|
|
16403
|
-
)
|
|
16404
|
-
|
|
16402
|
+
'nav',
|
|
16403
|
+
{ key: index, 'aria-label': 'Secondary' },
|
|
16404
|
+
React__default.createElement(
|
|
16405
|
+
'div',
|
|
16406
|
+
{ style: { display: 'flex', justifyContent: 'space-between', flexWrap: 'wrap' }, className: 'secondary-nav-title list-group-item active' },
|
|
16407
|
+
React__default.createElement(
|
|
16408
|
+
'span',
|
|
16409
|
+
{ className: 'mr-1', style: { display: 'inline-block', fontWeight: 'bold', fontSize: '1rem' } },
|
|
16410
|
+
row.name
|
|
16411
|
+
),
|
|
16412
|
+
row.url && SeeAll && React__default.createElement(
|
|
16413
|
+
'span',
|
|
16414
|
+
{ style: { marginLeft: 'auto', display: 'inline-block' } },
|
|
16415
|
+
React__default.createElement(
|
|
16416
|
+
'a',
|
|
16417
|
+
{ style: { color: 'white', fontSize: '.6rem' }, href: row.url },
|
|
16418
|
+
'See All >'
|
|
16419
|
+
)
|
|
16420
|
+
)
|
|
16421
|
+
),
|
|
16422
|
+
React__default.createElement(
|
|
16423
|
+
'ul',
|
|
16424
|
+
{ style: sideNavStyles },
|
|
16425
|
+
row.subQuery && row.subQuery.map(function (subRow, subIndex) {
|
|
16405
16426
|
return React__default.createElement(
|
|
16406
|
-
|
|
16407
|
-
{ key: subIndex },
|
|
16408
|
-
|
|
16409
|
-
ListGroup.Item,
|
|
16410
|
-
{ as: 'li', key: subIndex + '_1' },
|
|
16411
|
-
renderListGroupItem(subRow)
|
|
16412
|
-
)
|
|
16427
|
+
ListGroup.Item,
|
|
16428
|
+
{ as: 'li', key: subIndex + '_2' },
|
|
16429
|
+
renderListGroupItem(subRow)
|
|
16413
16430
|
);
|
|
16414
|
-
}
|
|
16415
|
-
|
|
16431
|
+
})
|
|
16432
|
+
)
|
|
16416
16433
|
);
|
|
16417
16434
|
})
|
|
16418
16435
|
);
|
|
@@ -29404,6 +29421,54 @@ var Ustream = function Ustream(_ref) {
|
|
|
29404
29421
|
|
|
29405
29422
|
var Ustream$1 = React__default.memo(Ustream);
|
|
29406
29423
|
|
|
29424
|
+
/*
|
|
29425
|
+
This dropdown is used inside Article body to display related content placement pages
|
|
29426
|
+
sample usage: <ArticleDetailDropdown contentPlacement={content_placement} exclude={['News',]} />
|
|
29427
|
+
|
|
29428
|
+
in article query, need to add '...' to content_placement to retreive additional info needed
|
|
29429
|
+
|
|
29430
|
+
'content_placement': taxonomyMapping[]-> {
|
|
29431
|
+
...,
|
|
29432
|
+
'ancestor': parent->parent->identifier,
|
|
29433
|
+
'parent': parent->identifier,
|
|
29434
|
+
'path': identifier
|
|
29435
|
+
}
|
|
29436
|
+
|
|
29437
|
+
*/
|
|
29438
|
+
|
|
29439
|
+
var ArticleDetailDropdown = function ArticleDetailDropdown(props) {
|
|
29440
|
+
var _props$contentPlaceme = props.contentPlacement,
|
|
29441
|
+
contentPlacement = _props$contentPlaceme === undefined ? false : _props$contentPlaceme,
|
|
29442
|
+
_props$exclude = props.exclude,
|
|
29443
|
+
exclude = _props$exclude === undefined ? [''] : _props$exclude;
|
|
29444
|
+
|
|
29445
|
+
if (contentPlacement.length == 1 && exclude.includes(contentPlacement[0].name) || contentPlacement == false) {
|
|
29446
|
+
return null;
|
|
29447
|
+
}
|
|
29448
|
+
|
|
29449
|
+
return React__default.createElement(
|
|
29450
|
+
Dropdown,
|
|
29451
|
+
{ style: { marginBottom: '1rem' } },
|
|
29452
|
+
React__default.createElement(
|
|
29453
|
+
Dropdown.Toggle,
|
|
29454
|
+
{ variant: 'primary', id: 'partner-dropdown' },
|
|
29455
|
+
'Related Topics'
|
|
29456
|
+
),
|
|
29457
|
+
React__default.createElement(
|
|
29458
|
+
Dropdown.Menu,
|
|
29459
|
+
null,
|
|
29460
|
+
contentPlacement.map(function (cp, index) {
|
|
29461
|
+
var href = cp.parent ? '/' + cp.parent + '/' + cp.path : '/' + cp.path;
|
|
29462
|
+
return !exclude.includes(cp.name) && React__default.createElement(
|
|
29463
|
+
Dropdown.Item,
|
|
29464
|
+
{ key: index, href: href },
|
|
29465
|
+
cp.name
|
|
29466
|
+
);
|
|
29467
|
+
})
|
|
29468
|
+
)
|
|
29469
|
+
);
|
|
29470
|
+
};
|
|
29471
|
+
|
|
29407
29472
|
var fbsHero = function fbsHero(props) {
|
|
29408
29473
|
var topArticle = props.dataRecord[0];
|
|
29409
29474
|
var subArticles = props.dataRecord.slice(1, props.dataRecord.length);
|
|
@@ -30244,6 +30309,7 @@ exports.PdfDownload = PdfDownload;
|
|
|
30244
30309
|
exports.RelatedTopicsDropdown = RelatedTopicsDropdown;
|
|
30245
30310
|
exports.Ustream = Ustream$1;
|
|
30246
30311
|
exports.SideFooter = SideFooter;
|
|
30312
|
+
exports.ArticleDetailDropdown = ArticleDetailDropdown;
|
|
30247
30313
|
exports.ForbesHero = fbsHero;
|
|
30248
30314
|
exports.HorizontalHero = HorizontalHero;
|
|
30249
30315
|
exports.OncliveHero = OncliveHero;
|