@mjhls/mjh-framework 1.0.385 → 1.0.388
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/IssueContentDeck.js +44 -37
- package/dist/cjs/{Normal-a747507b.js → Normal-cc68fd44.js} +327 -109
- package/dist/cjs/PublicationDeck.js +2 -2
- package/dist/cjs/TemplateNormal.js +1 -1
- package/dist/cjs/index.js +15 -58
- package/dist/esm/IssueContentDeck.js +44 -37
- package/dist/esm/{Normal-508d09f1.js → Normal-c171a945.js} +327 -109
- package/dist/esm/PublicationDeck.js +2 -2
- package/dist/esm/TemplateNormal.js +1 -1
- package/dist/esm/index.js +16 -59
- package/package.json +1 -1
|
@@ -894,21 +894,46 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
894
894
|
subNav && subNav.map(function (row, index) {
|
|
895
895
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
896
896
|
return row.name ? React__default.createElement(
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
if (ddRow.
|
|
904
|
-
return
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
ddRow.name
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
897
|
+
'div',
|
|
898
|
+
null,
|
|
899
|
+
React__default.createElement(
|
|
900
|
+
NavDropdown,
|
|
901
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
902
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
903
|
+
if (ddRow.type === 'divider') {
|
|
904
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
905
|
+
} else {
|
|
906
|
+
if (ddRow.url && ddRow.name) {
|
|
907
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
908
|
+
'a',
|
|
909
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
910
|
+
ddRow.name
|
|
911
|
+
) : null;
|
|
912
|
+
} else return null;
|
|
913
|
+
}
|
|
914
|
+
})
|
|
915
|
+
),
|
|
916
|
+
React__default.createElement(
|
|
917
|
+
'noscript',
|
|
918
|
+
null,
|
|
919
|
+
React__default.createElement(
|
|
920
|
+
'div',
|
|
921
|
+
null,
|
|
922
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
923
|
+
if (ddRow.type === 'divider') {
|
|
924
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
925
|
+
} else {
|
|
926
|
+
if (ddRow.url && ddRow.name) {
|
|
927
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
928
|
+
'a',
|
|
929
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
930
|
+
ddRow.name
|
|
931
|
+
) : null;
|
|
932
|
+
} else return null;
|
|
933
|
+
}
|
|
934
|
+
})
|
|
935
|
+
)
|
|
936
|
+
)
|
|
912
937
|
) : null;
|
|
913
938
|
} else {
|
|
914
939
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -934,19 +959,42 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
934
959
|
dataObject && dataObject.map(function (row, index) {
|
|
935
960
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
936
961
|
return row.name ? React__default.createElement(
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
ddRow.name
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
962
|
+
'div',
|
|
963
|
+
null,
|
|
964
|
+
React__default.createElement(
|
|
965
|
+
NavDropdown,
|
|
966
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
967
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
968
|
+
if (ddRow.type === 'divider') {
|
|
969
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
970
|
+
} else {
|
|
971
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
972
|
+
'a',
|
|
973
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
974
|
+
ddRow.name
|
|
975
|
+
) : null;
|
|
976
|
+
}
|
|
977
|
+
})
|
|
978
|
+
),
|
|
979
|
+
React__default.createElement(
|
|
980
|
+
'noscript',
|
|
981
|
+
null,
|
|
982
|
+
React__default.createElement(
|
|
983
|
+
'div',
|
|
984
|
+
null,
|
|
985
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
986
|
+
if (ddRow.type === 'divider') {
|
|
987
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
988
|
+
} else {
|
|
989
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
990
|
+
'a',
|
|
991
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
992
|
+
ddRow.name
|
|
993
|
+
) : null;
|
|
994
|
+
}
|
|
995
|
+
})
|
|
996
|
+
)
|
|
997
|
+
)
|
|
950
998
|
) : null;
|
|
951
999
|
} else {
|
|
952
1000
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -970,6 +1018,15 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
970
1018
|
)
|
|
971
1019
|
)
|
|
972
1020
|
),
|
|
1021
|
+
React__default.createElement(
|
|
1022
|
+
'noscript',
|
|
1023
|
+
null,
|
|
1024
|
+
React__default.createElement(
|
|
1025
|
+
'style',
|
|
1026
|
+
{ jsx: 'true' },
|
|
1027
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1028
|
+
)
|
|
1029
|
+
),
|
|
973
1030
|
React__default.createElement(
|
|
974
1031
|
'style',
|
|
975
1032
|
{ jsx: 'true' },
|
|
@@ -1085,21 +1142,46 @@ var NavNative = function NavNative(props) {
|
|
|
1085
1142
|
subNav && subNav.map(function (row, index) {
|
|
1086
1143
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1087
1144
|
return row.name ? React__default.createElement(
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
if (ddRow.
|
|
1095
|
-
return
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
ddRow.name
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1145
|
+
'div',
|
|
1146
|
+
null,
|
|
1147
|
+
React__default.createElement(
|
|
1148
|
+
NavDropdown,
|
|
1149
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1150
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1151
|
+
if (ddRow.type === 'divider') {
|
|
1152
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1153
|
+
} else {
|
|
1154
|
+
if (ddRow.url && ddRow.name) {
|
|
1155
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1156
|
+
'a',
|
|
1157
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1158
|
+
ddRow.name
|
|
1159
|
+
) : null;
|
|
1160
|
+
} else return null;
|
|
1161
|
+
}
|
|
1162
|
+
})
|
|
1163
|
+
),
|
|
1164
|
+
React__default.createElement(
|
|
1165
|
+
'noscript',
|
|
1166
|
+
null,
|
|
1167
|
+
React__default.createElement(
|
|
1168
|
+
'div',
|
|
1169
|
+
null,
|
|
1170
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1171
|
+
if (ddRow.type === 'divider') {
|
|
1172
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1173
|
+
} else {
|
|
1174
|
+
if (ddRow.url && ddRow.name) {
|
|
1175
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1176
|
+
'a',
|
|
1177
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1178
|
+
ddRow.name
|
|
1179
|
+
) : null;
|
|
1180
|
+
} else return null;
|
|
1181
|
+
}
|
|
1182
|
+
})
|
|
1183
|
+
)
|
|
1184
|
+
)
|
|
1103
1185
|
) : null;
|
|
1104
1186
|
} else {
|
|
1105
1187
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1120,19 +1202,42 @@ var NavNative = function NavNative(props) {
|
|
|
1120
1202
|
dataObject && dataObject.map(function (row, index) {
|
|
1121
1203
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1122
1204
|
return row.name ? React__default.createElement(
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
ddRow.name
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1205
|
+
'div',
|
|
1206
|
+
null,
|
|
1207
|
+
React__default.createElement(
|
|
1208
|
+
NavDropdown,
|
|
1209
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1210
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1211
|
+
if (ddRow.type === 'divider') {
|
|
1212
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1213
|
+
} else {
|
|
1214
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1215
|
+
'a',
|
|
1216
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1217
|
+
ddRow.name
|
|
1218
|
+
) : null;
|
|
1219
|
+
}
|
|
1220
|
+
})
|
|
1221
|
+
),
|
|
1222
|
+
React__default.createElement(
|
|
1223
|
+
'noscript',
|
|
1224
|
+
null,
|
|
1225
|
+
React__default.createElement(
|
|
1226
|
+
'div',
|
|
1227
|
+
null,
|
|
1228
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1229
|
+
if (ddRow.type === 'divider') {
|
|
1230
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1231
|
+
} else {
|
|
1232
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1233
|
+
'a',
|
|
1234
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1235
|
+
ddRow.name
|
|
1236
|
+
) : null;
|
|
1237
|
+
}
|
|
1238
|
+
})
|
|
1239
|
+
)
|
|
1240
|
+
)
|
|
1136
1241
|
) : null;
|
|
1137
1242
|
} else {
|
|
1138
1243
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1156,10 +1261,19 @@ var NavNative = function NavNative(props) {
|
|
|
1156
1261
|
)
|
|
1157
1262
|
)
|
|
1158
1263
|
),
|
|
1264
|
+
React__default.createElement(
|
|
1265
|
+
'noscript',
|
|
1266
|
+
null,
|
|
1267
|
+
React__default.createElement(
|
|
1268
|
+
'style',
|
|
1269
|
+
{ jsx: 'true' },
|
|
1270
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1271
|
+
)
|
|
1272
|
+
),
|
|
1159
1273
|
React__default.createElement(
|
|
1160
1274
|
'style',
|
|
1161
1275
|
{ jsx: 'true' },
|
|
1162
|
-
'\n .sticky-home {\n position: relative;\n top: -3px;\n left: -6px;\n cursor: pointer;\n }\n .nav-item svg {\n margin-bottom: 2px;\n }\n #nav-login,\n #nav-logout,\n #nav-register {\n padding: 0.5rem;\n cursor: pointer;\n }\n #nav-mobile-login,\n #nav-mobile-logout,\n #nav-mobile-register {\n display: none;\n }\n #nav-mobile-logout,\n #nav-mobile-login {\n position: absolute;\n right: 1rem;\n }\n #nav-mobile-register {\n position: absolute;\n left: 1rem;\n }\n
|
|
1276
|
+
'\n .sticky-home {\n position: relative;\n top: -3px;\n left: -6px;\n cursor: pointer;\n }\n .nav-item svg {\n margin-bottom: 2px;\n }\n #nav-login,\n #nav-logout,\n #nav-register {\n padding: 0.5rem;\n cursor: pointer;\n }\n #nav-mobile-login,\n #nav-mobile-logout,\n #nav-mobile-register {\n display: none;\n }\n #nav-mobile-logout,\n #nav-mobile-login {\n position: absolute;\n right: 1rem;\n }\n #nav-mobile-register {\n position: absolute;\n left: 1rem;\n }\n\n #nav-mobile-sm {\n display: none;\n }\n\n @media screen and (max-width: 1191px) {\n .mobile-nav .nav-toggle {\n width: 100%;\n display: flex;\n justify-content: space-between;\n }\n .nav-mobile-logo {\n margin-left: 1.5rem;\n }\n #nav-mobile-md {\n margin-right: auto;\n }\n .nav-mobile-logo img {\n height: 48px !important;\n }\n .nav-mobile-logo img {\n height: 38px !important;\n }\n\n .ios-nav {\n max-height: none;\n }\n\n .navbar.bg-primary {\n overflow: auto;\n }\n\n .mobile-nav .nav-toggle .navbar-toggler {\n float: left;\n height: 45px;\n }\n .mobile-nav .nav-toggle .form-inline {\n float: right;\n margin: 4px 0px 0px 0px;\n }\n .mobile-nav .form-inline .mobile-search {\n width: auto;\n }\n .sticky-home {\n display: none;\n }\n\n .navbar-expand-lg .show#basic-navbar-sub {\n display: block;\n }\n .navbar .mobile-nav .navbar-collapse.show {\n padding-bottom: 10px;\n border-bottom: 0.5px solid white;\n }\n .navbar .mobile-nav .navbar-collapse .form-inline {\n display: none;\n }\n .navbar .mobile-nav .navbar-collapse {\n margin-top: 15px;\n padding-left: 0.5rem;\n }\n .navbar .mobile-nav .navbar-collapse:last-child {\n border-bottom: none;\n margin-bottom: 0px;\n padding-bottom: 0px;\n margin-top: 0px;\n padding-top: 10px;\n }\n .navbar .mobile-nav .navbar-collapse .nav-footer ul {\n list-style-type: none;\n padding: inherit;\n margin-bottom: 0rem;\n }\n .navbar .mobile-nav .navbar-collapse .nav-footer .nav-link {\n text-transform: capitalize !important;\n font-weight: 300;\n }\n .navbar .mobile-nav .dropdown-item:focus {\n background-color: #696969;\n }\n .navbar .mobile-nav .dropdown-menu .dropdown-item {\n color: white;\n }\n .navbar .mobile-nav .dropdown-menu {\n background: inherit;\n border: none;\n direction: rtl;\n }\n }\n @media screen and (max-width: 1199px) {\n #nav-mobile-login,\n #nav-mobile-logout,\n #nav-mobile-register {\n display: block;\n }\n\n .navbar-top {\n flex-direction: row;\n justify-content: space-around !important;\n align-items: center;\n padding-left: 0.25rem;\n padding-right: 0.25rem;\n width: 100%;\n }\n }\n\n @media screen and (min-width: 1191px) {\n #basic-navbar-sub {\n display: none !important;\n }\n .navbar .mobile-nav .dropdown-menu .dropdown-item {\n color: #696969;\n }\n .navbar .mobile-nav .dropdown-menu {\n background: white;\n border: 1 px solid #708090;\n }\n .mobile-nav .nav-toggle .form-inline {\n display: none;\n }\n }\n\n @media screen and (max-width: 376px) {\n .mobile-nav .nav-toggle .form-inline .mobile-search {\n width: 60%;\n }\n .mobile-nav .nav-toggle .form-inline {\n flex: 1 1 auto;\n margin-left: 0.25rem;\n }\n }\n @media screen and (max-width: 328px) {\n .mobile-nav .nav-toggle .form-inline .mobile-search {\n margin-right: 5px;\n }\n }\n @media screen and (max-width: 767px) {\n #nav-mobile-md {\n display: none;\n }\n #nav-mobile-sm {\n display: inline-block;\n margin: 0 auto 0.5rem;\n }\n .nav-toggle {\n margin: 0.5rem 0;\n padding: 0 0.5rem;\n }\n }\n '
|
|
1163
1277
|
)
|
|
1164
1278
|
);
|
|
1165
1279
|
};
|
|
@@ -1311,15 +1425,34 @@ var NavDvm = function NavDvm(props) {
|
|
|
1311
1425
|
dataObject && dataObject.map(function (row, index) {
|
|
1312
1426
|
if (row.subQuery.length > 0) {
|
|
1313
1427
|
return React__default.createElement(
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1428
|
+
'div',
|
|
1429
|
+
null,
|
|
1430
|
+
React__default.createElement(
|
|
1431
|
+
NavDropdown,
|
|
1432
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1433
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1434
|
+
if (ddRow.type === 'divider') {
|
|
1435
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1436
|
+
} else {
|
|
1437
|
+
return getLink(ddRow.url, 'dropdown-item', ddRow.name, subIndex, ddRow.blank);
|
|
1438
|
+
}
|
|
1439
|
+
})
|
|
1440
|
+
),
|
|
1441
|
+
React__default.createElement(
|
|
1442
|
+
'noscript',
|
|
1443
|
+
null,
|
|
1444
|
+
React__default.createElement(
|
|
1445
|
+
'div',
|
|
1446
|
+
null,
|
|
1447
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1448
|
+
if (ddRow.type === 'divider') {
|
|
1449
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1450
|
+
} else {
|
|
1451
|
+
return getLink(ddRow.url, 'dropdown-item', ddRow.name, subIndex, ddRow.blank);
|
|
1452
|
+
}
|
|
1453
|
+
})
|
|
1454
|
+
)
|
|
1455
|
+
)
|
|
1323
1456
|
);
|
|
1324
1457
|
} else {
|
|
1325
1458
|
return getLink(row.url, 'nav-link', row.name, index, row.blank);
|
|
@@ -1337,21 +1470,46 @@ var NavDvm = function NavDvm(props) {
|
|
|
1337
1470
|
subNav && subNav.map(function (row, index) {
|
|
1338
1471
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1339
1472
|
return row.name ? React__default.createElement(
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
if (ddRow.
|
|
1347
|
-
return
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
ddRow.name
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1473
|
+
'div',
|
|
1474
|
+
null,
|
|
1475
|
+
React__default.createElement(
|
|
1476
|
+
NavDropdown,
|
|
1477
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1478
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1479
|
+
if (ddRow.type === 'divider') {
|
|
1480
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1481
|
+
} else {
|
|
1482
|
+
if (ddRow.url && ddRow.name) {
|
|
1483
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1484
|
+
'a',
|
|
1485
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1486
|
+
ddRow.name
|
|
1487
|
+
) : null;
|
|
1488
|
+
} else return null;
|
|
1489
|
+
}
|
|
1490
|
+
})
|
|
1491
|
+
),
|
|
1492
|
+
React__default.createElement(
|
|
1493
|
+
'noscript',
|
|
1494
|
+
null,
|
|
1495
|
+
React__default.createElement(
|
|
1496
|
+
'div',
|
|
1497
|
+
null,
|
|
1498
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1499
|
+
if (ddRow.type === 'divider') {
|
|
1500
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1501
|
+
} else {
|
|
1502
|
+
if (ddRow.url && ddRow.name) {
|
|
1503
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1504
|
+
'a',
|
|
1505
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1506
|
+
ddRow.name
|
|
1507
|
+
) : null;
|
|
1508
|
+
} else return null;
|
|
1509
|
+
}
|
|
1510
|
+
})
|
|
1511
|
+
)
|
|
1512
|
+
)
|
|
1355
1513
|
) : null;
|
|
1356
1514
|
} else {
|
|
1357
1515
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1374,6 +1532,15 @@ var NavDvm = function NavDvm(props) {
|
|
|
1374
1532
|
)
|
|
1375
1533
|
)
|
|
1376
1534
|
),
|
|
1535
|
+
React__default.createElement(
|
|
1536
|
+
'noscript',
|
|
1537
|
+
null,
|
|
1538
|
+
React__default.createElement(
|
|
1539
|
+
'style',
|
|
1540
|
+
{ jsx: 'true' },
|
|
1541
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1542
|
+
)
|
|
1543
|
+
),
|
|
1377
1544
|
React__default.createElement(
|
|
1378
1545
|
'style',
|
|
1379
1546
|
{ jsx: 'true' },
|
|
@@ -1686,21 +1853,42 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
1686
1853
|
subNav && subNav.map(function (row, index) {
|
|
1687
1854
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1688
1855
|
return row.name ? React__default.createElement(
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
if (ddRow.
|
|
1696
|
-
return
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
ddRow.name
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1856
|
+
'div',
|
|
1857
|
+
null,
|
|
1858
|
+
React__default.createElement(
|
|
1859
|
+
NavDropdown,
|
|
1860
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1861
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1862
|
+
if (ddRow.type === 'divider') {
|
|
1863
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1864
|
+
} else {
|
|
1865
|
+
if (ddRow.url && ddRow.name) {
|
|
1866
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1867
|
+
'a',
|
|
1868
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item' },
|
|
1869
|
+
ddRow.name
|
|
1870
|
+
) : null;
|
|
1871
|
+
} else return null;
|
|
1872
|
+
}
|
|
1873
|
+
})
|
|
1874
|
+
),
|
|
1875
|
+
React__default.createElement(
|
|
1876
|
+
'noscript',
|
|
1877
|
+
null,
|
|
1878
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1879
|
+
if (ddRow.type === 'divider') {
|
|
1880
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1881
|
+
} else {
|
|
1882
|
+
if (ddRow.url && ddRow.name) {
|
|
1883
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1884
|
+
'a',
|
|
1885
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item' },
|
|
1886
|
+
ddRow.name
|
|
1887
|
+
) : null;
|
|
1888
|
+
} else return null;
|
|
1889
|
+
}
|
|
1890
|
+
})
|
|
1891
|
+
)
|
|
1704
1892
|
) : null;
|
|
1705
1893
|
} else {
|
|
1706
1894
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1726,19 +1914,40 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
1726
1914
|
dataObject && dataObject.map(function (row, index) {
|
|
1727
1915
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1728
1916
|
return row.name ? React__default.createElement(
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
ddRow.name
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1917
|
+
'div',
|
|
1918
|
+
null,
|
|
1919
|
+
React__default.createElement(
|
|
1920
|
+
NavDropdown,
|
|
1921
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1922
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1923
|
+
if (ddRow.type === 'divider') {
|
|
1924
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1925
|
+
} else {
|
|
1926
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1927
|
+
'a',
|
|
1928
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item nav-link' },
|
|
1929
|
+
ddRow.name
|
|
1930
|
+
) : null;
|
|
1931
|
+
}
|
|
1932
|
+
})
|
|
1933
|
+
),
|
|
1934
|
+
React__default.createElement(
|
|
1935
|
+
'noscript',
|
|
1936
|
+
null,
|
|
1937
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1938
|
+
if (ddRow.type === 'divider') {
|
|
1939
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1940
|
+
} else {
|
|
1941
|
+
if (ddRow.url && ddRow.name) {
|
|
1942
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1943
|
+
'a',
|
|
1944
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item' },
|
|
1945
|
+
ddRow.name
|
|
1946
|
+
) : null;
|
|
1947
|
+
} else return null;
|
|
1948
|
+
}
|
|
1949
|
+
})
|
|
1950
|
+
)
|
|
1742
1951
|
) : null;
|
|
1743
1952
|
} else {
|
|
1744
1953
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1763,6 +1972,15 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
1763
1972
|
)
|
|
1764
1973
|
)
|
|
1765
1974
|
),
|
|
1975
|
+
React__default.createElement(
|
|
1976
|
+
'noscript',
|
|
1977
|
+
null,
|
|
1978
|
+
React__default.createElement(
|
|
1979
|
+
'style',
|
|
1980
|
+
{ jsx: 'true' },
|
|
1981
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1982
|
+
)
|
|
1983
|
+
),
|
|
1766
1984
|
React__default.createElement(
|
|
1767
1985
|
'style',
|
|
1768
1986
|
{ jsx: 'true' },
|
|
@@ -17123,11 +17123,11 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
17123
17123
|
});
|
|
17124
17124
|
|
|
17125
17125
|
var sortedLegacyPubs = lodash.sortBy(legacyPubs, [function (o) {
|
|
17126
|
-
return o.childIssue.year;
|
|
17126
|
+
return o.childIssue && o.childIssue.year ? o.childIssue.year : null;
|
|
17127
17127
|
}]);
|
|
17128
17128
|
|
|
17129
17129
|
var sortedRegPubs = lodash.sortBy(regPubs, [function (o) {
|
|
17130
|
-
return o.childIssue.year;
|
|
17130
|
+
return o.childIssue && o.childIssue.year ? o.childIssue.year : null;
|
|
17131
17131
|
}]);
|
|
17132
17132
|
|
|
17133
17133
|
var urlFor = function urlFor(source) {
|
|
@@ -19,7 +19,7 @@ require('./react-social-icons-cd0d9d3b.js');
|
|
|
19
19
|
require('react-bootstrap');
|
|
20
20
|
require('./index.esm-340d3792.js');
|
|
21
21
|
require('react-bootstrap/Button');
|
|
22
|
-
var TemplateNormal = require('./Normal-
|
|
22
|
+
var TemplateNormal = require('./Normal-cc68fd44.js');
|
|
23
23
|
require('react-bootstrap/ListGroup');
|
|
24
24
|
require('next/head');
|
|
25
25
|
require('react-bootstrap/Nav');
|