@mjhls/mjh-framework 1.0.346 → 1.0.347
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/PublicationDeck.js +2 -2
- package/dist/cjs/{TaxonomyCard-cd4b4668.js → TaxonomyCard-266e757b.js} +5 -22
- package/dist/cjs/TaxonomyCard.js +1 -1
- package/dist/cjs/index.js +65 -55
- package/dist/esm/PublicationDeck.js +2 -2
- package/dist/esm/{TaxonomyCard-c17e6d28.js → TaxonomyCard-c1a1a544.js} +5 -22
- package/dist/esm/TaxonomyCard.js +1 -1
- package/dist/esm/index.js +71 -61
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
58
58
|
),
|
|
59
59
|
React__default.createElement(
|
|
60
60
|
Card.Body,
|
|
61
|
-
|
|
61
|
+
{ style: { paddingTop: '0', paddingBottom: '2.75rem' } },
|
|
62
62
|
React__default.createElement(
|
|
63
63
|
Card.Title,
|
|
64
64
|
null,
|
|
@@ -66,7 +66,7 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
66
66
|
),
|
|
67
67
|
React__default.createElement(
|
|
68
68
|
Button,
|
|
69
|
-
{ variant: 'secondary' },
|
|
69
|
+
{ style: { position: 'absolute', bottom: '1rem', left: '20%' }, variant: 'secondary' },
|
|
70
70
|
'Browse Issues'
|
|
71
71
|
)
|
|
72
72
|
)
|
|
@@ -1029,27 +1029,10 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
1029
1029
|
React__default.createElement(
|
|
1030
1030
|
'div',
|
|
1031
1031
|
null,
|
|
1032
|
-
|
|
1033
|
-
'a',
|
|
1034
|
-
{ href: row.url },
|
|
1035
|
-
React__default.createElement(
|
|
1036
|
-
Card.Title,
|
|
1037
|
-
null,
|
|
1038
|
-
row.name
|
|
1039
|
-
)
|
|
1040
|
-
) : React__default.createElement(
|
|
1041
|
-
Card.Title,
|
|
1042
|
-
null,
|
|
1043
|
-
row.name
|
|
1044
|
-
)
|
|
1045
|
-
),
|
|
1046
|
-
React__default.createElement(
|
|
1047
|
-
'div',
|
|
1048
|
-
null,
|
|
1049
|
-
(address && address.length || companyDetails && companyDetails.length) && React__default.createElement(
|
|
1032
|
+
(address && address.length > 0 || companyDetails && companyDetails.length > 0) && React__default.createElement(
|
|
1050
1033
|
'div',
|
|
1051
|
-
{ className: 'details-wrapper'
|
|
1052
|
-
companyDetails && companyDetails.length && React__default.createElement(
|
|
1034
|
+
{ className: 'details-wrapper' },
|
|
1035
|
+
companyDetails && companyDetails.length > 0 && React__default.createElement(
|
|
1053
1036
|
'div',
|
|
1054
1037
|
{ className: 'company-wrapper' },
|
|
1055
1038
|
companyDetails.map(function (field, index) {
|
|
@@ -1074,7 +1057,7 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
1074
1057
|
}
|
|
1075
1058
|
})
|
|
1076
1059
|
),
|
|
1077
|
-
address && address.length && React__default.createElement(
|
|
1060
|
+
address && address.length > 0 && React__default.createElement(
|
|
1078
1061
|
'div',
|
|
1079
1062
|
{ className: 'address-wrapper' },
|
|
1080
1063
|
address.map(function (field, index) {
|
|
@@ -1111,7 +1094,7 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
1111
1094
|
React__default.createElement(
|
|
1112
1095
|
'style',
|
|
1113
1096
|
{ jsx: 'true' },
|
|
1114
|
-
'\n .social-icons {\n margin-top:
|
|
1097
|
+
'\n .social-icons {\n margin-top: 0px;\n margin-bottom: 10px;\n }\n '
|
|
1115
1098
|
)
|
|
1116
1099
|
),
|
|
1117
1100
|
React__default.createElement(
|
package/dist/cjs/TaxonomyCard.js
CHANGED
|
@@ -12,7 +12,7 @@ require('react-bootstrap/Card');
|
|
|
12
12
|
require('react-dom');
|
|
13
13
|
require('./index-b5eb3ff8.js');
|
|
14
14
|
require('./index-fa0fb52c.js');
|
|
15
|
-
var TaxonomyCard = require('./TaxonomyCard-
|
|
15
|
+
var TaxonomyCard = require('./TaxonomyCard-266e757b.js');
|
|
16
16
|
require('./react-social-icons-cd0d9d3b.js');
|
|
17
17
|
|
|
18
18
|
|
package/dist/cjs/index.js
CHANGED
|
@@ -18,7 +18,7 @@ var PropTypes = _interopDefault(require('prop-types'));
|
|
|
18
18
|
var Container = _interopDefault(require('react-bootstrap/Container'));
|
|
19
19
|
var Row = _interopDefault(require('react-bootstrap/Row'));
|
|
20
20
|
var Col = _interopDefault(require('react-bootstrap/Col'));
|
|
21
|
-
require('react-bootstrap/Card');
|
|
21
|
+
var Card = _interopDefault(require('react-bootstrap/Card'));
|
|
22
22
|
var moment = require('./moment-66a6a284.js');
|
|
23
23
|
var Router = require('next/router');
|
|
24
24
|
var Router__default = _interopDefault(Router);
|
|
@@ -37,7 +37,7 @@ var GridContent = require('./GridContent-7a85d904.js');
|
|
|
37
37
|
var DeckQueue = require('./DeckQueue.js');
|
|
38
38
|
require('react-bootstrap/Media');
|
|
39
39
|
var ThumbnailCard = require('./ThumbnailCard.js');
|
|
40
|
-
var TaxonomyCard = require('./TaxonomyCard-
|
|
40
|
+
var TaxonomyCard = require('./TaxonomyCard-266e757b.js');
|
|
41
41
|
require('./react-social-icons-cd0d9d3b.js');
|
|
42
42
|
var smoothscroll = require('./smoothscroll-95231a70.js');
|
|
43
43
|
var GroupDeck = require('./GroupDeck.js');
|
|
@@ -1991,7 +1991,7 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
1991
1991
|
{ href: links.summary.href || '#', target: '_blank' },
|
|
1992
1992
|
React__default.createElement(
|
|
1993
1993
|
Button,
|
|
1994
|
-
{ size: 'sm', className: '
|
|
1994
|
+
{ size: 'sm', className: 'registration-button', style: { borderRadius: '8px' } },
|
|
1995
1995
|
'Register Now'
|
|
1996
1996
|
)
|
|
1997
1997
|
);
|
|
@@ -2020,7 +2020,7 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2020
2020
|
var cardLoader = function cardLoader() {
|
|
2021
2021
|
var numberOfItemsBeforeAd = 5;
|
|
2022
2022
|
return React__default.createElement(
|
|
2023
|
-
|
|
2023
|
+
React__default.Fragment,
|
|
2024
2024
|
null,
|
|
2025
2025
|
data && data.map(function (row, index) {
|
|
2026
2026
|
var speakerInfo = [];
|
|
@@ -2032,12 +2032,10 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2032
2032
|
});
|
|
2033
2033
|
}
|
|
2034
2034
|
|
|
2035
|
-
var
|
|
2036
|
-
start = row.start,
|
|
2035
|
+
var start = row.start,
|
|
2037
2036
|
end = row.end,
|
|
2038
2037
|
venues = row.venues,
|
|
2039
2038
|
_links = row._links,
|
|
2040
|
-
virtual = row.virtual,
|
|
2041
2039
|
timezone = row.timezone;
|
|
2042
2040
|
|
|
2043
2041
|
var now = momentTimezone$1().tz(timezone);
|
|
@@ -2068,70 +2066,77 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2068
2066
|
isVisible && changePageNumber(pageNumber);
|
|
2069
2067
|
} },
|
|
2070
2068
|
React__default.createElement(
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
React__default.createElement(
|
|
2069
|
+
Card,
|
|
2070
|
+
null,
|
|
2071
|
+
isRegister && _links && React__default.createElement(
|
|
2074
2072
|
Row,
|
|
2075
2073
|
null,
|
|
2076
2074
|
React__default.createElement(
|
|
2077
2075
|
Col,
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
eventRegion
|
|
2086
|
-
),
|
|
2087
|
-
React__default.createElement(
|
|
2088
|
-
'p',
|
|
2089
|
-
{ style: { padding: 0, margin: 0 } },
|
|
2090
|
-
momentTimezone$1(start).tz(timezone).format('LL')
|
|
2091
|
-
),
|
|
2092
|
-
React__default.createElement(
|
|
2093
|
-
'p',
|
|
2094
|
-
{ style: { padding: 0, margin: 0 } },
|
|
2095
|
-
momentTimezone$1(start).tz(timezone).format('LT')
|
|
2096
|
-
)
|
|
2097
|
-
)
|
|
2098
|
-
),
|
|
2076
|
+
null,
|
|
2077
|
+
renderRegisterButton(_links)
|
|
2078
|
+
)
|
|
2079
|
+
),
|
|
2080
|
+
discussionTopic && React__default.createElement(
|
|
2081
|
+
Row,
|
|
2082
|
+
null,
|
|
2099
2083
|
React__default.createElement(
|
|
2100
2084
|
Col,
|
|
2101
|
-
|
|
2102
|
-
React__default.createElement('
|
|
2103
|
-
)
|
|
2085
|
+
null,
|
|
2086
|
+
React__default.createElement('h5', { className: 'topic', style: { fontWeight: '500', marginBottom: 0 }, dangerouslySetInnerHTML: { __html: discussionTopic } })
|
|
2087
|
+
)
|
|
2088
|
+
),
|
|
2089
|
+
start && timezone && React__default.createElement(
|
|
2090
|
+
Row,
|
|
2091
|
+
null,
|
|
2104
2092
|
React__default.createElement(
|
|
2105
2093
|
Col,
|
|
2106
|
-
|
|
2107
|
-
|
|
2094
|
+
null,
|
|
2095
|
+
React__default.createElement(
|
|
2096
|
+
'p',
|
|
2097
|
+
{ className: 'start-time', style: { padding: 0, margin: 0 } },
|
|
2098
|
+
momentTimezone$1(start).tz(timezone).format('LLL')
|
|
2099
|
+
)
|
|
2108
2100
|
)
|
|
2109
2101
|
),
|
|
2110
|
-
|
|
2111
|
-
|
|
2102
|
+
eventRegion && React__default.createElement(
|
|
2103
|
+
Row,
|
|
2112
2104
|
null,
|
|
2113
2105
|
React__default.createElement(
|
|
2114
|
-
|
|
2115
|
-
|
|
2106
|
+
Col,
|
|
2107
|
+
null,
|
|
2116
2108
|
React__default.createElement(
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2109
|
+
'p',
|
|
2110
|
+
{ className: 'event-region', style: { padding: 0, margin: 0 } },
|
|
2111
|
+
eventRegion
|
|
2120
2112
|
)
|
|
2121
2113
|
)
|
|
2122
2114
|
),
|
|
2123
|
-
|
|
2124
|
-
|
|
2115
|
+
venues && venues.length && React__default.createElement(
|
|
2116
|
+
Row,
|
|
2125
2117
|
null,
|
|
2126
2118
|
React__default.createElement(
|
|
2127
|
-
|
|
2128
|
-
|
|
2119
|
+
Col,
|
|
2120
|
+
null,
|
|
2129
2121
|
React__default.createElement(
|
|
2130
|
-
|
|
2131
|
-
|
|
2122
|
+
'p',
|
|
2123
|
+
{ className: 'venue', style: { padding: 0, margin: 0 } },
|
|
2124
|
+
venues[0].address.country
|
|
2125
|
+
)
|
|
2126
|
+
)
|
|
2127
|
+
),
|
|
2128
|
+
speakerInfo && speakerInfo.length && React__default.createElement(
|
|
2129
|
+
Row,
|
|
2130
|
+
null,
|
|
2131
|
+
React__default.createElement(
|
|
2132
|
+
Col,
|
|
2133
|
+
null,
|
|
2134
|
+
React__default.createElement(
|
|
2135
|
+
'div',
|
|
2136
|
+
{ className: 'speaker-section', style: { border: '1px solid', borderRadius: '8px', padding: '8px' } },
|
|
2132
2137
|
React__default.createElement(
|
|
2133
2138
|
'h6',
|
|
2134
|
-
{ style: { fontWeight: '600', marginBottom: '0', marginTop: '.25rem;' } },
|
|
2139
|
+
{ className: 'speaker-title', style: { fontWeight: '600', marginBottom: '0', marginTop: '.25rem;' } },
|
|
2135
2140
|
'SPEAKER'
|
|
2136
2141
|
),
|
|
2137
2142
|
speakerInfo.map(function (info) {
|
|
@@ -2159,7 +2164,12 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2159
2164
|
renderMobileAd(index, numberOfItemsBeforeAd)
|
|
2160
2165
|
)
|
|
2161
2166
|
);
|
|
2162
|
-
})
|
|
2167
|
+
}),
|
|
2168
|
+
React__default.createElement(
|
|
2169
|
+
'style',
|
|
2170
|
+
{ jsx: 'true' },
|
|
2171
|
+
'\n .card {\n -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);\n box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);\n border-radius: 8px;\n padding: 12px;\n }\n .row {\n margin-bottom: 8px;\n }\n '
|
|
2172
|
+
)
|
|
2163
2173
|
);
|
|
2164
2174
|
};
|
|
2165
2175
|
|
|
@@ -16573,16 +16583,16 @@ var Article = function Article(props) {
|
|
|
16573
16583
|
React__default.createElement(
|
|
16574
16584
|
'p',
|
|
16575
16585
|
null,
|
|
16576
|
-
issue.
|
|
16586
|
+
issue.volume && React__default.createElement(
|
|
16577
16587
|
'span',
|
|
16578
16588
|
null,
|
|
16579
|
-
'
|
|
16589
|
+
'Volume ' + issue.volume,
|
|
16580
16590
|
','
|
|
16581
16591
|
),
|
|
16582
|
-
issue.
|
|
16592
|
+
issue.issueNumber && React__default.createElement(
|
|
16583
16593
|
'span',
|
|
16584
16594
|
null,
|
|
16585
|
-
'
|
|
16595
|
+
' Issue ' + issue.issueNumber
|
|
16586
16596
|
)
|
|
16587
16597
|
)
|
|
16588
16598
|
)
|
|
@@ -53,7 +53,7 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
53
53
|
),
|
|
54
54
|
React__default.createElement(
|
|
55
55
|
Card.Body,
|
|
56
|
-
|
|
56
|
+
{ style: { paddingTop: '0', paddingBottom: '2.75rem' } },
|
|
57
57
|
React__default.createElement(
|
|
58
58
|
Card.Title,
|
|
59
59
|
null,
|
|
@@ -61,7 +61,7 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
61
61
|
),
|
|
62
62
|
React__default.createElement(
|
|
63
63
|
Button,
|
|
64
|
-
{ variant: 'secondary' },
|
|
64
|
+
{ style: { position: 'absolute', bottom: '1rem', left: '20%' }, variant: 'secondary' },
|
|
65
65
|
'Browse Issues'
|
|
66
66
|
)
|
|
67
67
|
)
|
|
@@ -1024,27 +1024,10 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
1024
1024
|
React__default.createElement(
|
|
1025
1025
|
'div',
|
|
1026
1026
|
null,
|
|
1027
|
-
|
|
1028
|
-
'a',
|
|
1029
|
-
{ href: row.url },
|
|
1030
|
-
React__default.createElement(
|
|
1031
|
-
Card.Title,
|
|
1032
|
-
null,
|
|
1033
|
-
row.name
|
|
1034
|
-
)
|
|
1035
|
-
) : React__default.createElement(
|
|
1036
|
-
Card.Title,
|
|
1037
|
-
null,
|
|
1038
|
-
row.name
|
|
1039
|
-
)
|
|
1040
|
-
),
|
|
1041
|
-
React__default.createElement(
|
|
1042
|
-
'div',
|
|
1043
|
-
null,
|
|
1044
|
-
(address && address.length || companyDetails && companyDetails.length) && React__default.createElement(
|
|
1027
|
+
(address && address.length > 0 || companyDetails && companyDetails.length > 0) && React__default.createElement(
|
|
1045
1028
|
'div',
|
|
1046
|
-
{ className: 'details-wrapper'
|
|
1047
|
-
companyDetails && companyDetails.length && React__default.createElement(
|
|
1029
|
+
{ className: 'details-wrapper' },
|
|
1030
|
+
companyDetails && companyDetails.length > 0 && React__default.createElement(
|
|
1048
1031
|
'div',
|
|
1049
1032
|
{ className: 'company-wrapper' },
|
|
1050
1033
|
companyDetails.map(function (field, index) {
|
|
@@ -1069,7 +1052,7 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
1069
1052
|
}
|
|
1070
1053
|
})
|
|
1071
1054
|
),
|
|
1072
|
-
address && address.length && React__default.createElement(
|
|
1055
|
+
address && address.length > 0 && React__default.createElement(
|
|
1073
1056
|
'div',
|
|
1074
1057
|
{ className: 'address-wrapper' },
|
|
1075
1058
|
address.map(function (field, index) {
|
|
@@ -1106,7 +1089,7 @@ var TaxonomyCard = function TaxonomyCard(props) {
|
|
|
1106
1089
|
React__default.createElement(
|
|
1107
1090
|
'style',
|
|
1108
1091
|
{ jsx: 'true' },
|
|
1109
|
-
'\n .social-icons {\n margin-top:
|
|
1092
|
+
'\n .social-icons {\n margin-top: 0px;\n margin-bottom: 10px;\n }\n '
|
|
1110
1093
|
)
|
|
1111
1094
|
),
|
|
1112
1095
|
React__default.createElement(
|
package/dist/esm/TaxonomyCard.js
CHANGED
|
@@ -10,5 +10,5 @@ import 'react-bootstrap/Card';
|
|
|
10
10
|
import 'react-dom';
|
|
11
11
|
import './index-51a80699.js';
|
|
12
12
|
import './index-5f9f807a.js';
|
|
13
|
-
export { T as default } from './TaxonomyCard-
|
|
13
|
+
export { T as default } from './TaxonomyCard-c1a1a544.js';
|
|
14
14
|
import './react-social-icons-a7d5c5c7.js';
|
package/dist/esm/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import PropTypes from 'prop-types';
|
|
|
11
11
|
import Container from 'react-bootstrap/Container';
|
|
12
12
|
import Row from 'react-bootstrap/Row';
|
|
13
13
|
import Col from 'react-bootstrap/Col';
|
|
14
|
-
import 'react-bootstrap/Card';
|
|
14
|
+
import Card from 'react-bootstrap/Card';
|
|
15
15
|
import { m as moment } from './moment-12415288.js';
|
|
16
16
|
import Router, { useRouter } from 'next/router';
|
|
17
17
|
import { I as InfiniteScroll, V as VisibilitySensor } from './visibility-sensor-49d5805d.js';
|
|
@@ -30,14 +30,14 @@ export { A as AD, G as GridContent } from './GridContent-e2b1de22.js';
|
|
|
30
30
|
export { default as DeckQueue } from './DeckQueue.js';
|
|
31
31
|
import 'react-bootstrap/Media';
|
|
32
32
|
export { default as ThumbnailCard } from './ThumbnailCard.js';
|
|
33
|
-
import { B as BlockContent } from './TaxonomyCard-
|
|
34
|
-
export { T as TaxonomyCard } from './TaxonomyCard-
|
|
33
|
+
import { B as BlockContent } from './TaxonomyCard-c1a1a544.js';
|
|
34
|
+
export { T as TaxonomyCard } from './TaxonomyCard-c1a1a544.js';
|
|
35
35
|
import './react-social-icons-a7d5c5c7.js';
|
|
36
36
|
import { g as getYoutubeId } from './smoothscroll-4b699764.js';
|
|
37
37
|
import GroupDeck from './GroupDeck.js';
|
|
38
38
|
export { default as GroupDeck } from './GroupDeck.js';
|
|
39
39
|
export { default as YoutubeGroup } from './YoutubeGroup.js';
|
|
40
|
-
import { Spinner as Spinner$1, Container as Container$1, Row as Row$1, Col as Col$1, Carousel, Table, Figure as Figure$1, Button as Button$1, ProgressBar, Card, Form } from 'react-bootstrap';
|
|
40
|
+
import { Spinner as Spinner$1, Container as Container$1, Row as Row$1, Col as Col$1, Carousel, Table, Figure as Figure$1, Button as Button$1, ProgressBar, Card as Card$1, Form } from 'react-bootstrap';
|
|
41
41
|
export { default as QueueDeckExpanded } from './QueueDeckExpanded.js';
|
|
42
42
|
import { I as IoMdArrowDropdown } from './index.esm-536609db.js';
|
|
43
43
|
export { default as VideoSeriesListing } from './VideoSeriesListing.js';
|
|
@@ -1988,7 +1988,7 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
1988
1988
|
{ href: links.summary.href || '#', target: '_blank' },
|
|
1989
1989
|
React__default.createElement(
|
|
1990
1990
|
Button,
|
|
1991
|
-
{ size: 'sm', className: '
|
|
1991
|
+
{ size: 'sm', className: 'registration-button', style: { borderRadius: '8px' } },
|
|
1992
1992
|
'Register Now'
|
|
1993
1993
|
)
|
|
1994
1994
|
);
|
|
@@ -2017,7 +2017,7 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2017
2017
|
var cardLoader = function cardLoader() {
|
|
2018
2018
|
var numberOfItemsBeforeAd = 5;
|
|
2019
2019
|
return React__default.createElement(
|
|
2020
|
-
|
|
2020
|
+
React__default.Fragment,
|
|
2021
2021
|
null,
|
|
2022
2022
|
data && data.map(function (row, index) {
|
|
2023
2023
|
var speakerInfo = [];
|
|
@@ -2029,12 +2029,10 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2029
2029
|
});
|
|
2030
2030
|
}
|
|
2031
2031
|
|
|
2032
|
-
var
|
|
2033
|
-
start = row.start,
|
|
2032
|
+
var start = row.start,
|
|
2034
2033
|
end = row.end,
|
|
2035
2034
|
venues = row.venues,
|
|
2036
2035
|
_links = row._links,
|
|
2037
|
-
virtual = row.virtual,
|
|
2038
2036
|
timezone = row.timezone;
|
|
2039
2037
|
|
|
2040
2038
|
var now = momentTimezone$1().tz(timezone);
|
|
@@ -2065,70 +2063,77 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2065
2063
|
isVisible && changePageNumber(pageNumber);
|
|
2066
2064
|
} },
|
|
2067
2065
|
React__default.createElement(
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
React__default.createElement(
|
|
2066
|
+
Card,
|
|
2067
|
+
null,
|
|
2068
|
+
isRegister && _links && React__default.createElement(
|
|
2071
2069
|
Row,
|
|
2072
2070
|
null,
|
|
2073
2071
|
React__default.createElement(
|
|
2074
2072
|
Col,
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
eventRegion
|
|
2083
|
-
),
|
|
2084
|
-
React__default.createElement(
|
|
2085
|
-
'p',
|
|
2086
|
-
{ style: { padding: 0, margin: 0 } },
|
|
2087
|
-
momentTimezone$1(start).tz(timezone).format('LL')
|
|
2088
|
-
),
|
|
2089
|
-
React__default.createElement(
|
|
2090
|
-
'p',
|
|
2091
|
-
{ style: { padding: 0, margin: 0 } },
|
|
2092
|
-
momentTimezone$1(start).tz(timezone).format('LT')
|
|
2093
|
-
)
|
|
2094
|
-
)
|
|
2095
|
-
),
|
|
2073
|
+
null,
|
|
2074
|
+
renderRegisterButton(_links)
|
|
2075
|
+
)
|
|
2076
|
+
),
|
|
2077
|
+
discussionTopic && React__default.createElement(
|
|
2078
|
+
Row,
|
|
2079
|
+
null,
|
|
2096
2080
|
React__default.createElement(
|
|
2097
2081
|
Col,
|
|
2098
|
-
|
|
2099
|
-
React__default.createElement('
|
|
2100
|
-
)
|
|
2082
|
+
null,
|
|
2083
|
+
React__default.createElement('h5', { className: 'topic', style: { fontWeight: '500', marginBottom: 0 }, dangerouslySetInnerHTML: { __html: discussionTopic } })
|
|
2084
|
+
)
|
|
2085
|
+
),
|
|
2086
|
+
start && timezone && React__default.createElement(
|
|
2087
|
+
Row,
|
|
2088
|
+
null,
|
|
2101
2089
|
React__default.createElement(
|
|
2102
2090
|
Col,
|
|
2103
|
-
|
|
2104
|
-
|
|
2091
|
+
null,
|
|
2092
|
+
React__default.createElement(
|
|
2093
|
+
'p',
|
|
2094
|
+
{ className: 'start-time', style: { padding: 0, margin: 0 } },
|
|
2095
|
+
momentTimezone$1(start).tz(timezone).format('LLL')
|
|
2096
|
+
)
|
|
2105
2097
|
)
|
|
2106
2098
|
),
|
|
2107
|
-
|
|
2108
|
-
|
|
2099
|
+
eventRegion && React__default.createElement(
|
|
2100
|
+
Row,
|
|
2109
2101
|
null,
|
|
2110
2102
|
React__default.createElement(
|
|
2111
|
-
|
|
2112
|
-
|
|
2103
|
+
Col,
|
|
2104
|
+
null,
|
|
2113
2105
|
React__default.createElement(
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2106
|
+
'p',
|
|
2107
|
+
{ className: 'event-region', style: { padding: 0, margin: 0 } },
|
|
2108
|
+
eventRegion
|
|
2117
2109
|
)
|
|
2118
2110
|
)
|
|
2119
2111
|
),
|
|
2120
|
-
|
|
2121
|
-
|
|
2112
|
+
venues && venues.length && React__default.createElement(
|
|
2113
|
+
Row,
|
|
2122
2114
|
null,
|
|
2123
2115
|
React__default.createElement(
|
|
2124
|
-
|
|
2125
|
-
|
|
2116
|
+
Col,
|
|
2117
|
+
null,
|
|
2126
2118
|
React__default.createElement(
|
|
2127
|
-
|
|
2128
|
-
|
|
2119
|
+
'p',
|
|
2120
|
+
{ className: 'venue', style: { padding: 0, margin: 0 } },
|
|
2121
|
+
venues[0].address.country
|
|
2122
|
+
)
|
|
2123
|
+
)
|
|
2124
|
+
),
|
|
2125
|
+
speakerInfo && speakerInfo.length && React__default.createElement(
|
|
2126
|
+
Row,
|
|
2127
|
+
null,
|
|
2128
|
+
React__default.createElement(
|
|
2129
|
+
Col,
|
|
2130
|
+
null,
|
|
2131
|
+
React__default.createElement(
|
|
2132
|
+
'div',
|
|
2133
|
+
{ className: 'speaker-section', style: { border: '1px solid', borderRadius: '8px', padding: '8px' } },
|
|
2129
2134
|
React__default.createElement(
|
|
2130
2135
|
'h6',
|
|
2131
|
-
{ style: { fontWeight: '600', marginBottom: '0', marginTop: '.25rem;' } },
|
|
2136
|
+
{ className: 'speaker-title', style: { fontWeight: '600', marginBottom: '0', marginTop: '.25rem;' } },
|
|
2132
2137
|
'SPEAKER'
|
|
2133
2138
|
),
|
|
2134
2139
|
speakerInfo.map(function (info) {
|
|
@@ -2156,7 +2161,12 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2156
2161
|
renderMobileAd(index, numberOfItemsBeforeAd)
|
|
2157
2162
|
)
|
|
2158
2163
|
);
|
|
2159
|
-
})
|
|
2164
|
+
}),
|
|
2165
|
+
React__default.createElement(
|
|
2166
|
+
'style',
|
|
2167
|
+
{ jsx: 'true' },
|
|
2168
|
+
'\n .card {\n -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);\n box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);\n border-radius: 8px;\n padding: 12px;\n }\n .row {\n margin-bottom: 8px;\n }\n '
|
|
2169
|
+
)
|
|
2160
2170
|
);
|
|
2161
2171
|
};
|
|
2162
2172
|
|
|
@@ -14072,16 +14082,16 @@ var Hero = function Hero(_ref) {
|
|
|
14072
14082
|
'a',
|
|
14073
14083
|
{ href: '/view/' + url.current },
|
|
14074
14084
|
React__default.createElement(
|
|
14075
|
-
Card,
|
|
14085
|
+
Card$1,
|
|
14076
14086
|
{ bsPrefix: 'hero-card' },
|
|
14077
14087
|
title && React__default.createElement(
|
|
14078
|
-
Card.Header,
|
|
14088
|
+
Card$1.Header,
|
|
14079
14089
|
{ className: 'h4' },
|
|
14080
14090
|
title
|
|
14081
14091
|
),
|
|
14082
|
-
thumbnail && client && React__default.createElement(Card.Img, { src: renderCardImage(thumbnail, client, imageHeight, imageWidth) }),
|
|
14092
|
+
thumbnail && client && React__default.createElement(Card$1.Img, { src: renderCardImage(thumbnail, client, imageHeight, imageWidth) }),
|
|
14083
14093
|
summary && React__default.createElement(
|
|
14084
|
-
Card.Footer,
|
|
14094
|
+
Card$1.Footer,
|
|
14085
14095
|
{ className: 'h6' },
|
|
14086
14096
|
clean_html_1(summary)
|
|
14087
14097
|
)
|
|
@@ -16570,16 +16580,16 @@ var Article = function Article(props) {
|
|
|
16570
16580
|
React__default.createElement(
|
|
16571
16581
|
'p',
|
|
16572
16582
|
null,
|
|
16573
|
-
issue.
|
|
16583
|
+
issue.volume && React__default.createElement(
|
|
16574
16584
|
'span',
|
|
16575
16585
|
null,
|
|
16576
|
-
'
|
|
16586
|
+
'Volume ' + issue.volume,
|
|
16577
16587
|
','
|
|
16578
16588
|
),
|
|
16579
|
-
issue.
|
|
16589
|
+
issue.issueNumber && React__default.createElement(
|
|
16580
16590
|
'span',
|
|
16581
16591
|
null,
|
|
16582
|
-
'
|
|
16592
|
+
' Issue ' + issue.issueNumber
|
|
16583
16593
|
)
|
|
16584
16594
|
)
|
|
16585
16595
|
)
|