@mjhls/mjh-framework 1.0.385 → 1.0.387
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
|
@@ -889,21 +889,46 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
889
889
|
subNav && subNav.map(function (row, index) {
|
|
890
890
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
891
891
|
return row.name ? React__default.createElement(
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
if (ddRow.
|
|
899
|
-
return
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
ddRow.name
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
892
|
+
'div',
|
|
893
|
+
null,
|
|
894
|
+
React__default.createElement(
|
|
895
|
+
NavDropdown,
|
|
896
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
897
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
898
|
+
if (ddRow.type === 'divider') {
|
|
899
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
900
|
+
} else {
|
|
901
|
+
if (ddRow.url && ddRow.name) {
|
|
902
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
903
|
+
'a',
|
|
904
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
905
|
+
ddRow.name
|
|
906
|
+
) : null;
|
|
907
|
+
} else return null;
|
|
908
|
+
}
|
|
909
|
+
})
|
|
910
|
+
),
|
|
911
|
+
React__default.createElement(
|
|
912
|
+
'noscript',
|
|
913
|
+
null,
|
|
914
|
+
React__default.createElement(
|
|
915
|
+
'div',
|
|
916
|
+
null,
|
|
917
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
918
|
+
if (ddRow.type === 'divider') {
|
|
919
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
920
|
+
} else {
|
|
921
|
+
if (ddRow.url && ddRow.name) {
|
|
922
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
923
|
+
'a',
|
|
924
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
925
|
+
ddRow.name
|
|
926
|
+
) : null;
|
|
927
|
+
} else return null;
|
|
928
|
+
}
|
|
929
|
+
})
|
|
930
|
+
)
|
|
931
|
+
)
|
|
907
932
|
) : null;
|
|
908
933
|
} else {
|
|
909
934
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -929,19 +954,42 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
929
954
|
dataObject && dataObject.map(function (row, index) {
|
|
930
955
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
931
956
|
return row.name ? React__default.createElement(
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
ddRow.name
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
957
|
+
'div',
|
|
958
|
+
null,
|
|
959
|
+
React__default.createElement(
|
|
960
|
+
NavDropdown,
|
|
961
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
962
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
963
|
+
if (ddRow.type === 'divider') {
|
|
964
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
965
|
+
} else {
|
|
966
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
967
|
+
'a',
|
|
968
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
969
|
+
ddRow.name
|
|
970
|
+
) : null;
|
|
971
|
+
}
|
|
972
|
+
})
|
|
973
|
+
),
|
|
974
|
+
React__default.createElement(
|
|
975
|
+
'noscript',
|
|
976
|
+
null,
|
|
977
|
+
React__default.createElement(
|
|
978
|
+
'div',
|
|
979
|
+
null,
|
|
980
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
981
|
+
if (ddRow.type === 'divider') {
|
|
982
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
983
|
+
} else {
|
|
984
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
985
|
+
'a',
|
|
986
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
987
|
+
ddRow.name
|
|
988
|
+
) : null;
|
|
989
|
+
}
|
|
990
|
+
})
|
|
991
|
+
)
|
|
992
|
+
)
|
|
945
993
|
) : null;
|
|
946
994
|
} else {
|
|
947
995
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -965,6 +1013,15 @@ var NavMagazine = function NavMagazine(props) {
|
|
|
965
1013
|
)
|
|
966
1014
|
)
|
|
967
1015
|
),
|
|
1016
|
+
React__default.createElement(
|
|
1017
|
+
'noscript',
|
|
1018
|
+
null,
|
|
1019
|
+
React__default.createElement(
|
|
1020
|
+
'style',
|
|
1021
|
+
{ jsx: 'true' },
|
|
1022
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1023
|
+
)
|
|
1024
|
+
),
|
|
968
1025
|
React__default.createElement(
|
|
969
1026
|
'style',
|
|
970
1027
|
{ jsx: 'true' },
|
|
@@ -1080,21 +1137,46 @@ var NavNative = function NavNative(props) {
|
|
|
1080
1137
|
subNav && subNav.map(function (row, index) {
|
|
1081
1138
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1082
1139
|
return row.name ? React__default.createElement(
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
if (ddRow.
|
|
1090
|
-
return
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
ddRow.name
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1140
|
+
'div',
|
|
1141
|
+
null,
|
|
1142
|
+
React__default.createElement(
|
|
1143
|
+
NavDropdown,
|
|
1144
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1145
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1146
|
+
if (ddRow.type === 'divider') {
|
|
1147
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1148
|
+
} else {
|
|
1149
|
+
if (ddRow.url && ddRow.name) {
|
|
1150
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1151
|
+
'a',
|
|
1152
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1153
|
+
ddRow.name
|
|
1154
|
+
) : null;
|
|
1155
|
+
} else return null;
|
|
1156
|
+
}
|
|
1157
|
+
})
|
|
1158
|
+
),
|
|
1159
|
+
React__default.createElement(
|
|
1160
|
+
'noscript',
|
|
1161
|
+
null,
|
|
1162
|
+
React__default.createElement(
|
|
1163
|
+
'div',
|
|
1164
|
+
null,
|
|
1165
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1166
|
+
if (ddRow.type === 'divider') {
|
|
1167
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1168
|
+
} else {
|
|
1169
|
+
if (ddRow.url && ddRow.name) {
|
|
1170
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1171
|
+
'a',
|
|
1172
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1173
|
+
ddRow.name
|
|
1174
|
+
) : null;
|
|
1175
|
+
} else return null;
|
|
1176
|
+
}
|
|
1177
|
+
})
|
|
1178
|
+
)
|
|
1179
|
+
)
|
|
1098
1180
|
) : null;
|
|
1099
1181
|
} else {
|
|
1100
1182
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1115,19 +1197,42 @@ var NavNative = function NavNative(props) {
|
|
|
1115
1197
|
dataObject && dataObject.map(function (row, index) {
|
|
1116
1198
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1117
1199
|
return row.name ? React__default.createElement(
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
ddRow.name
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1200
|
+
'div',
|
|
1201
|
+
null,
|
|
1202
|
+
React__default.createElement(
|
|
1203
|
+
NavDropdown,
|
|
1204
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1205
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1206
|
+
if (ddRow.type === 'divider') {
|
|
1207
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1208
|
+
} else {
|
|
1209
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1210
|
+
'a',
|
|
1211
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1212
|
+
ddRow.name
|
|
1213
|
+
) : null;
|
|
1214
|
+
}
|
|
1215
|
+
})
|
|
1216
|
+
),
|
|
1217
|
+
React__default.createElement(
|
|
1218
|
+
'noscript',
|
|
1219
|
+
null,
|
|
1220
|
+
React__default.createElement(
|
|
1221
|
+
'div',
|
|
1222
|
+
null,
|
|
1223
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1224
|
+
if (ddRow.type === 'divider') {
|
|
1225
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1226
|
+
} else {
|
|
1227
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1228
|
+
'a',
|
|
1229
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1230
|
+
ddRow.name
|
|
1231
|
+
) : null;
|
|
1232
|
+
}
|
|
1233
|
+
})
|
|
1234
|
+
)
|
|
1235
|
+
)
|
|
1131
1236
|
) : null;
|
|
1132
1237
|
} else {
|
|
1133
1238
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1151,10 +1256,19 @@ var NavNative = function NavNative(props) {
|
|
|
1151
1256
|
)
|
|
1152
1257
|
)
|
|
1153
1258
|
),
|
|
1259
|
+
React__default.createElement(
|
|
1260
|
+
'noscript',
|
|
1261
|
+
null,
|
|
1262
|
+
React__default.createElement(
|
|
1263
|
+
'style',
|
|
1264
|
+
{ jsx: 'true' },
|
|
1265
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1266
|
+
)
|
|
1267
|
+
),
|
|
1154
1268
|
React__default.createElement(
|
|
1155
1269
|
'style',
|
|
1156
1270
|
{ jsx: 'true' },
|
|
1157
|
-
'\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
|
|
1271
|
+
'\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 '
|
|
1158
1272
|
)
|
|
1159
1273
|
);
|
|
1160
1274
|
};
|
|
@@ -1306,15 +1420,34 @@ var NavDvm = function NavDvm(props) {
|
|
|
1306
1420
|
dataObject && dataObject.map(function (row, index) {
|
|
1307
1421
|
if (row.subQuery.length > 0) {
|
|
1308
1422
|
return React__default.createElement(
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1423
|
+
'div',
|
|
1424
|
+
null,
|
|
1425
|
+
React__default.createElement(
|
|
1426
|
+
NavDropdown,
|
|
1427
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1428
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1429
|
+
if (ddRow.type === 'divider') {
|
|
1430
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1431
|
+
} else {
|
|
1432
|
+
return getLink(ddRow.url, 'dropdown-item', ddRow.name, subIndex, ddRow.blank);
|
|
1433
|
+
}
|
|
1434
|
+
})
|
|
1435
|
+
),
|
|
1436
|
+
React__default.createElement(
|
|
1437
|
+
'noscript',
|
|
1438
|
+
null,
|
|
1439
|
+
React__default.createElement(
|
|
1440
|
+
'div',
|
|
1441
|
+
null,
|
|
1442
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1443
|
+
if (ddRow.type === 'divider') {
|
|
1444
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1445
|
+
} else {
|
|
1446
|
+
return getLink(ddRow.url, 'dropdown-item', ddRow.name, subIndex, ddRow.blank);
|
|
1447
|
+
}
|
|
1448
|
+
})
|
|
1449
|
+
)
|
|
1450
|
+
)
|
|
1318
1451
|
);
|
|
1319
1452
|
} else {
|
|
1320
1453
|
return getLink(row.url, 'nav-link', row.name, index, row.blank);
|
|
@@ -1332,21 +1465,46 @@ var NavDvm = function NavDvm(props) {
|
|
|
1332
1465
|
subNav && subNav.map(function (row, index) {
|
|
1333
1466
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1334
1467
|
return row.name ? React__default.createElement(
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
if (ddRow.
|
|
1342
|
-
return
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
ddRow.name
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1468
|
+
'div',
|
|
1469
|
+
null,
|
|
1470
|
+
React__default.createElement(
|
|
1471
|
+
NavDropdown,
|
|
1472
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1473
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1474
|
+
if (ddRow.type === 'divider') {
|
|
1475
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1476
|
+
} else {
|
|
1477
|
+
if (ddRow.url && ddRow.name) {
|
|
1478
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1479
|
+
'a',
|
|
1480
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1481
|
+
ddRow.name
|
|
1482
|
+
) : null;
|
|
1483
|
+
} else return null;
|
|
1484
|
+
}
|
|
1485
|
+
})
|
|
1486
|
+
),
|
|
1487
|
+
React__default.createElement(
|
|
1488
|
+
'noscript',
|
|
1489
|
+
null,
|
|
1490
|
+
React__default.createElement(
|
|
1491
|
+
'div',
|
|
1492
|
+
null,
|
|
1493
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1494
|
+
if (ddRow.type === 'divider') {
|
|
1495
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1496
|
+
} else {
|
|
1497
|
+
if (ddRow.url && ddRow.name) {
|
|
1498
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1499
|
+
'a',
|
|
1500
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', className: 'dropdown-item' },
|
|
1501
|
+
ddRow.name
|
|
1502
|
+
) : null;
|
|
1503
|
+
} else return null;
|
|
1504
|
+
}
|
|
1505
|
+
})
|
|
1506
|
+
)
|
|
1507
|
+
)
|
|
1350
1508
|
) : null;
|
|
1351
1509
|
} else {
|
|
1352
1510
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1369,6 +1527,15 @@ var NavDvm = function NavDvm(props) {
|
|
|
1369
1527
|
)
|
|
1370
1528
|
)
|
|
1371
1529
|
),
|
|
1530
|
+
React__default.createElement(
|
|
1531
|
+
'noscript',
|
|
1532
|
+
null,
|
|
1533
|
+
React__default.createElement(
|
|
1534
|
+
'style',
|
|
1535
|
+
{ jsx: 'true' },
|
|
1536
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1537
|
+
)
|
|
1538
|
+
),
|
|
1372
1539
|
React__default.createElement(
|
|
1373
1540
|
'style',
|
|
1374
1541
|
{ jsx: 'true' },
|
|
@@ -1681,21 +1848,42 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
1681
1848
|
subNav && subNav.map(function (row, index) {
|
|
1682
1849
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1683
1850
|
return row.name ? React__default.createElement(
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
if (ddRow.
|
|
1691
|
-
return
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
ddRow.name
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1851
|
+
'div',
|
|
1852
|
+
null,
|
|
1853
|
+
React__default.createElement(
|
|
1854
|
+
NavDropdown,
|
|
1855
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1856
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1857
|
+
if (ddRow.type === 'divider') {
|
|
1858
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1859
|
+
} else {
|
|
1860
|
+
if (ddRow.url && ddRow.name) {
|
|
1861
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1862
|
+
'a',
|
|
1863
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item' },
|
|
1864
|
+
ddRow.name
|
|
1865
|
+
) : null;
|
|
1866
|
+
} else return null;
|
|
1867
|
+
}
|
|
1868
|
+
})
|
|
1869
|
+
),
|
|
1870
|
+
React__default.createElement(
|
|
1871
|
+
'noscript',
|
|
1872
|
+
null,
|
|
1873
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1874
|
+
if (ddRow.type === 'divider') {
|
|
1875
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1876
|
+
} else {
|
|
1877
|
+
if (ddRow.url && ddRow.name) {
|
|
1878
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1879
|
+
'a',
|
|
1880
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item' },
|
|
1881
|
+
ddRow.name
|
|
1882
|
+
) : null;
|
|
1883
|
+
} else return null;
|
|
1884
|
+
}
|
|
1885
|
+
})
|
|
1886
|
+
)
|
|
1699
1887
|
) : null;
|
|
1700
1888
|
} else {
|
|
1701
1889
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1721,19 +1909,40 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
1721
1909
|
dataObject && dataObject.map(function (row, index) {
|
|
1722
1910
|
if (row.subQuery && row.subQuery.length > 0) {
|
|
1723
1911
|
return row.name ? React__default.createElement(
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
ddRow.name
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1912
|
+
'div',
|
|
1913
|
+
null,
|
|
1914
|
+
React__default.createElement(
|
|
1915
|
+
NavDropdown,
|
|
1916
|
+
{ key: index, title: row.name, id: 'basic-nav-dropdown' },
|
|
1917
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1918
|
+
if (ddRow.type === 'divider') {
|
|
1919
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1920
|
+
} else {
|
|
1921
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1922
|
+
'a',
|
|
1923
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item nav-link' },
|
|
1924
|
+
ddRow.name
|
|
1925
|
+
) : null;
|
|
1926
|
+
}
|
|
1927
|
+
})
|
|
1928
|
+
),
|
|
1929
|
+
React__default.createElement(
|
|
1930
|
+
'noscript',
|
|
1931
|
+
null,
|
|
1932
|
+
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
1933
|
+
if (ddRow.type === 'divider') {
|
|
1934
|
+
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
|
1935
|
+
} else {
|
|
1936
|
+
if (ddRow.url && ddRow.name) {
|
|
1937
|
+
return ddRow.url && ddRow.name ? React__default.createElement(
|
|
1938
|
+
'a',
|
|
1939
|
+
{ key: subIndex, href: ddRow.url, target: ddRow.blank ? '_blank' : '_self', rel: 'noopener noreferrer', className: 'dropdown-item' },
|
|
1940
|
+
ddRow.name
|
|
1941
|
+
) : null;
|
|
1942
|
+
} else return null;
|
|
1943
|
+
}
|
|
1944
|
+
})
|
|
1945
|
+
)
|
|
1737
1946
|
) : null;
|
|
1738
1947
|
} else {
|
|
1739
1948
|
return row.url && row.name ? React__default.createElement(
|
|
@@ -1758,6 +1967,15 @@ var HamMagazine = function HamMagazine(props) {
|
|
|
1758
1967
|
)
|
|
1759
1968
|
)
|
|
1760
1969
|
),
|
|
1970
|
+
React__default.createElement(
|
|
1971
|
+
'noscript',
|
|
1972
|
+
null,
|
|
1973
|
+
React__default.createElement(
|
|
1974
|
+
'style',
|
|
1975
|
+
{ jsx: 'true' },
|
|
1976
|
+
'\n .navbar .collapse {\n display: block;\n }\n '
|
|
1977
|
+
)
|
|
1978
|
+
),
|
|
1761
1979
|
React__default.createElement(
|
|
1762
1980
|
'style',
|
|
1763
1981
|
{ jsx: 'true' },
|
|
@@ -17118,11 +17118,11 @@ var PublicationDeck = function PublicationDeck(props) {
|
|
|
17118
17118
|
});
|
|
17119
17119
|
|
|
17120
17120
|
var sortedLegacyPubs = lodash.sortBy(legacyPubs, [function (o) {
|
|
17121
|
-
return o.childIssue.year;
|
|
17121
|
+
return o.childIssue && o.childIssue.year ? o.childIssue.year : null;
|
|
17122
17122
|
}]);
|
|
17123
17123
|
|
|
17124
17124
|
var sortedRegPubs = lodash.sortBy(regPubs, [function (o) {
|
|
17125
|
-
return o.childIssue.year;
|
|
17125
|
+
return o.childIssue && o.childIssue.year ? o.childIssue.year : null;
|
|
17126
17126
|
}]);
|
|
17127
17127
|
|
|
17128
17128
|
var urlFor = function urlFor(source) {
|
|
@@ -17,7 +17,7 @@ import './react-social-icons-a7d5c5c7.js';
|
|
|
17
17
|
import 'react-bootstrap';
|
|
18
18
|
import './index.esm-536609db.js';
|
|
19
19
|
import 'react-bootstrap/Button';
|
|
20
|
-
export { T as default } from './Normal-
|
|
20
|
+
export { T as default } from './Normal-c171a945.js';
|
|
21
21
|
import 'react-bootstrap/ListGroup';
|
|
22
22
|
import 'next/head';
|
|
23
23
|
import 'react-bootstrap/Nav';
|