@mjhls/mjh-framework 1.0.317 → 1.0.318
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/index.js +50 -5
- package/dist/esm/index.js +50 -5
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -2022,6 +2022,16 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2022
2022
|
Row,
|
|
2023
2023
|
null,
|
|
2024
2024
|
data && data.map(function (row, index) {
|
|
2025
|
+
|
|
2026
|
+
var speakerInfo = [];
|
|
2027
|
+
if (row.customFields) {
|
|
2028
|
+
speakerInfo = row.customFields.filter(function (x) {
|
|
2029
|
+
if (x.name == 'KOL or Featured Speaker') {
|
|
2030
|
+
return x;
|
|
2031
|
+
}
|
|
2032
|
+
});
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2025
2035
|
var description = row.description,
|
|
2026
2036
|
start = row.start,
|
|
2027
2037
|
end = row.end,
|
|
@@ -2098,12 +2108,47 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2098
2108
|
)
|
|
2099
2109
|
),
|
|
2100
2110
|
description && React__default.createElement(
|
|
2101
|
-
|
|
2102
|
-
|
|
2111
|
+
React__default.Fragment,
|
|
2112
|
+
null,
|
|
2103
2113
|
React__default.createElement(
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
React__default.createElement(
|
|
2114
|
+
Row,
|
|
2115
|
+
{ style: { marginTop: '8px' } },
|
|
2116
|
+
React__default.createElement(
|
|
2117
|
+
Col,
|
|
2118
|
+
null,
|
|
2119
|
+
React__default.createElement('p', { dangerouslySetInnerHTML: { __html: description } })
|
|
2120
|
+
)
|
|
2121
|
+
)
|
|
2122
|
+
),
|
|
2123
|
+
speakerInfo && speakerInfo.length > 0 && React__default.createElement(
|
|
2124
|
+
React__default.Fragment,
|
|
2125
|
+
null,
|
|
2126
|
+
React__default.createElement(
|
|
2127
|
+
Row,
|
|
2128
|
+
{ style: { marginTop: '8px' } },
|
|
2129
|
+
React__default.createElement(
|
|
2130
|
+
Col,
|
|
2131
|
+
null,
|
|
2132
|
+
React__default.createElement(
|
|
2133
|
+
'h6',
|
|
2134
|
+
{ style: { fontWeight: '600', marginBottom: '0', marginTop: '.25rem;' } },
|
|
2135
|
+
'SPEAKER'
|
|
2136
|
+
),
|
|
2137
|
+
speakerInfo.map(function (info) {
|
|
2138
|
+
return React__default.createElement(
|
|
2139
|
+
'p',
|
|
2140
|
+
{ style: { marginBottom: '0' } },
|
|
2141
|
+
info.value.map(function (speaker, index) {
|
|
2142
|
+
return React__default.createElement(
|
|
2143
|
+
'span',
|
|
2144
|
+
{ key: index, className: 'kol-speaker' },
|
|
2145
|
+
speaker,
|
|
2146
|
+
info.value.length > index + 1 ? ', ' : ''
|
|
2147
|
+
);
|
|
2148
|
+
})
|
|
2149
|
+
);
|
|
2150
|
+
})
|
|
2151
|
+
)
|
|
2107
2152
|
)
|
|
2108
2153
|
)
|
|
2109
2154
|
)
|
package/dist/esm/index.js
CHANGED
|
@@ -2020,6 +2020,16 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2020
2020
|
Row,
|
|
2021
2021
|
null,
|
|
2022
2022
|
data && data.map(function (row, index) {
|
|
2023
|
+
|
|
2024
|
+
var speakerInfo = [];
|
|
2025
|
+
if (row.customFields) {
|
|
2026
|
+
speakerInfo = row.customFields.filter(function (x) {
|
|
2027
|
+
if (x.name == 'KOL or Featured Speaker') {
|
|
2028
|
+
return x;
|
|
2029
|
+
}
|
|
2030
|
+
});
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2023
2033
|
var description = row.description,
|
|
2024
2034
|
start = row.start,
|
|
2025
2035
|
end = row.end,
|
|
@@ -2096,12 +2106,47 @@ var EventsDeck = function EventsDeck(_ref) {
|
|
|
2096
2106
|
)
|
|
2097
2107
|
),
|
|
2098
2108
|
description && React__default.createElement(
|
|
2099
|
-
|
|
2100
|
-
|
|
2109
|
+
React__default.Fragment,
|
|
2110
|
+
null,
|
|
2101
2111
|
React__default.createElement(
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
React__default.createElement(
|
|
2112
|
+
Row,
|
|
2113
|
+
{ style: { marginTop: '8px' } },
|
|
2114
|
+
React__default.createElement(
|
|
2115
|
+
Col,
|
|
2116
|
+
null,
|
|
2117
|
+
React__default.createElement('p', { dangerouslySetInnerHTML: { __html: description } })
|
|
2118
|
+
)
|
|
2119
|
+
)
|
|
2120
|
+
),
|
|
2121
|
+
speakerInfo && speakerInfo.length > 0 && React__default.createElement(
|
|
2122
|
+
React__default.Fragment,
|
|
2123
|
+
null,
|
|
2124
|
+
React__default.createElement(
|
|
2125
|
+
Row,
|
|
2126
|
+
{ style: { marginTop: '8px' } },
|
|
2127
|
+
React__default.createElement(
|
|
2128
|
+
Col,
|
|
2129
|
+
null,
|
|
2130
|
+
React__default.createElement(
|
|
2131
|
+
'h6',
|
|
2132
|
+
{ style: { fontWeight: '600', marginBottom: '0', marginTop: '.25rem;' } },
|
|
2133
|
+
'SPEAKER'
|
|
2134
|
+
),
|
|
2135
|
+
speakerInfo.map(function (info) {
|
|
2136
|
+
return React__default.createElement(
|
|
2137
|
+
'p',
|
|
2138
|
+
{ style: { marginBottom: '0' } },
|
|
2139
|
+
info.value.map(function (speaker, index) {
|
|
2140
|
+
return React__default.createElement(
|
|
2141
|
+
'span',
|
|
2142
|
+
{ key: index, className: 'kol-speaker' },
|
|
2143
|
+
speaker,
|
|
2144
|
+
info.value.length > index + 1 ? ', ' : ''
|
|
2145
|
+
);
|
|
2146
|
+
})
|
|
2147
|
+
);
|
|
2148
|
+
})
|
|
2149
|
+
)
|
|
2105
2150
|
)
|
|
2106
2151
|
)
|
|
2107
2152
|
)
|