@mjhls/mjh-framework 1.0.893-nav-pmg-v1 → 1.0.893-ris-v1
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/dist/cjs/AccordionPanel.js +1 -1
- package/dist/cjs/AlgoliaSearch.js +131 -15
- package/dist/cjs/ArticleProgramLandingPage.js +2 -2
- package/dist/cjs/ArticleSeriesListing.js +1 -1
- package/dist/cjs/CMEDeck.js +5 -1
- package/dist/cjs/ExternalResources.js +2 -2
- package/dist/cjs/HamMagazine.js +1 -1
- package/dist/cjs/HorizontalArticleListing.js +2 -2
- package/dist/cjs/IssueLanding.js +2 -2
- package/dist/cjs/{MediaSeriesCard-7c7077e4.js → MediaSeriesCard-bc32a178.js} +1 -1
- package/dist/cjs/MediaSeriesLanding.js +3 -3
- package/dist/cjs/MediaSeriesLandingPaginated.js +3 -3
- package/dist/cjs/NavMagazine.js +1 -1
- package/dist/cjs/NavNative.js +278 -5
- package/dist/cjs/PartnerDetailListing.js +2 -2
- package/dist/cjs/PartnerDetailListingPaginated.js +2 -2
- package/dist/cjs/TaxonomyDescription.js +2 -2
- package/dist/cjs/TemplateNormal.js +1 -2
- package/dist/cjs/VideoProgramLandingPage.js +2 -2
- package/dist/cjs/VideoSeriesListing.js +1 -1
- package/dist/cjs/View.js +31 -3
- package/dist/cjs/getSerializers.js +2 -2
- package/dist/cjs/{index-a703b51e.js → index-2b8f254a.js} +1 -1
- package/dist/cjs/{index.esm-5cda7fe5.js → index.esm-d81454e7.js} +1 -4
- package/dist/cjs/index.js +2 -5
- package/dist/esm/AccordionPanel.js +1 -1
- package/dist/esm/AlgoliaSearch.js +132 -16
- package/dist/esm/ArticleProgramLandingPage.js +2 -2
- package/dist/esm/ArticleSeriesListing.js +1 -1
- package/dist/esm/CMEDeck.js +5 -1
- package/dist/esm/ExternalResources.js +2 -2
- package/dist/esm/HamMagazine.js +1 -1
- package/dist/esm/HorizontalArticleListing.js +2 -2
- package/dist/esm/IssueLanding.js +2 -2
- package/dist/esm/{MediaSeriesCard-d3601b8a.js → MediaSeriesCard-a6398bed.js} +1 -1
- package/dist/esm/MediaSeriesLanding.js +3 -3
- package/dist/esm/MediaSeriesLandingPaginated.js +3 -3
- package/dist/esm/NavMagazine.js +1 -1
- package/dist/esm/NavNative.js +277 -4
- package/dist/esm/PartnerDetailListing.js +2 -2
- package/dist/esm/PartnerDetailListingPaginated.js +2 -2
- package/dist/esm/TaxonomyDescription.js +2 -2
- package/dist/esm/TemplateNormal.js +1 -2
- package/dist/esm/VideoProgramLandingPage.js +2 -2
- package/dist/esm/VideoSeriesListing.js +1 -1
- package/dist/esm/View.js +31 -3
- package/dist/esm/getSerializers.js +2 -2
- package/dist/esm/{index-52dec9fe.js → index-e622f708.js} +1 -1
- package/dist/esm/{index.esm-f14a3e58.js → index.esm-eb1e8e80.js} +2 -4
- package/dist/esm/index.js +2 -4
- package/dist/esm/stringify-2b084bee.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/NavPMG.js +0 -627
- package/dist/cjs/chunk-db8bb26d.js +0 -281
- package/dist/esm/NavPMG.js +0 -612
- package/dist/esm/chunk-19bab6aa.js +0 -279
package/dist/esm/NavNative.js
CHANGED
|
@@ -13,7 +13,9 @@ import Form from 'react-bootstrap/Form';
|
|
|
13
13
|
import FormControl from 'react-bootstrap/FormControl';
|
|
14
14
|
import Button from 'react-bootstrap/Button';
|
|
15
15
|
import { c as main_44 } from './main-1894c974.js';
|
|
16
|
-
import {
|
|
16
|
+
import { i as isFunction_1, e as eq_1 } from './eq-bdcbf886.js';
|
|
17
|
+
import { i as isObject_1 } from './isSymbol-a7e9aafe.js';
|
|
18
|
+
import { t as toNumber_1 } from './toNumber-5aeba6e7.js';
|
|
17
19
|
import './_commonjsHelpers-0c4b6f40.js';
|
|
18
20
|
import './web.dom.iterable-ab4dea5c.js';
|
|
19
21
|
import './core.get-iterator-method-ea258bb1.js';
|
|
@@ -22,9 +24,280 @@ import 'prop-types';
|
|
|
22
24
|
import './asyncToGenerator-5ef104a7.js';
|
|
23
25
|
import './_library-528f1934.js';
|
|
24
26
|
import './_iter-detect-98db3b07.js';
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* The base implementation of `_.slice` without an iteratee call guard.
|
|
30
|
+
*
|
|
31
|
+
* @private
|
|
32
|
+
* @param {Array} array The array to slice.
|
|
33
|
+
* @param {number} [start=0] The start position.
|
|
34
|
+
* @param {number} [end=array.length] The end position.
|
|
35
|
+
* @returns {Array} Returns the slice of `array`.
|
|
36
|
+
*/
|
|
37
|
+
function baseSlice(array, start, end) {
|
|
38
|
+
var index = -1,
|
|
39
|
+
length = array.length;
|
|
40
|
+
|
|
41
|
+
if (start < 0) {
|
|
42
|
+
start = -start > length ? 0 : (length + start);
|
|
43
|
+
}
|
|
44
|
+
end = end > length ? length : end;
|
|
45
|
+
if (end < 0) {
|
|
46
|
+
end += length;
|
|
47
|
+
}
|
|
48
|
+
length = start > end ? 0 : ((end - start) >>> 0);
|
|
49
|
+
start >>>= 0;
|
|
50
|
+
|
|
51
|
+
var result = Array(length);
|
|
52
|
+
while (++index < length) {
|
|
53
|
+
result[index] = array[index + start];
|
|
54
|
+
}
|
|
55
|
+
return result;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
var _baseSlice = baseSlice;
|
|
59
|
+
|
|
60
|
+
/** Used as references for various `Number` constants. */
|
|
61
|
+
var MAX_SAFE_INTEGER$1 = 9007199254740991;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Checks if `value` is a valid array-like length.
|
|
65
|
+
*
|
|
66
|
+
* **Note:** This method is loosely based on
|
|
67
|
+
* [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
|
|
68
|
+
*
|
|
69
|
+
* @static
|
|
70
|
+
* @memberOf _
|
|
71
|
+
* @since 4.0.0
|
|
72
|
+
* @category Lang
|
|
73
|
+
* @param {*} value The value to check.
|
|
74
|
+
* @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
|
|
75
|
+
* @example
|
|
76
|
+
*
|
|
77
|
+
* _.isLength(3);
|
|
78
|
+
* // => true
|
|
79
|
+
*
|
|
80
|
+
* _.isLength(Number.MIN_VALUE);
|
|
81
|
+
* // => false
|
|
82
|
+
*
|
|
83
|
+
* _.isLength(Infinity);
|
|
84
|
+
* // => false
|
|
85
|
+
*
|
|
86
|
+
* _.isLength('3');
|
|
87
|
+
* // => false
|
|
88
|
+
*/
|
|
89
|
+
function isLength(value) {
|
|
90
|
+
return typeof value == 'number' &&
|
|
91
|
+
value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER$1;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
var isLength_1 = isLength;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Checks if `value` is array-like. A value is considered array-like if it's
|
|
98
|
+
* not a function and has a `value.length` that's an integer greater than or
|
|
99
|
+
* equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
|
|
100
|
+
*
|
|
101
|
+
* @static
|
|
102
|
+
* @memberOf _
|
|
103
|
+
* @since 4.0.0
|
|
104
|
+
* @category Lang
|
|
105
|
+
* @param {*} value The value to check.
|
|
106
|
+
* @returns {boolean} Returns `true` if `value` is array-like, else `false`.
|
|
107
|
+
* @example
|
|
108
|
+
*
|
|
109
|
+
* _.isArrayLike([1, 2, 3]);
|
|
110
|
+
* // => true
|
|
111
|
+
*
|
|
112
|
+
* _.isArrayLike(document.body.children);
|
|
113
|
+
* // => true
|
|
114
|
+
*
|
|
115
|
+
* _.isArrayLike('abc');
|
|
116
|
+
* // => true
|
|
117
|
+
*
|
|
118
|
+
* _.isArrayLike(_.noop);
|
|
119
|
+
* // => false
|
|
120
|
+
*/
|
|
121
|
+
function isArrayLike(value) {
|
|
122
|
+
return value != null && isLength_1(value.length) && !isFunction_1(value);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
var isArrayLike_1 = isArrayLike;
|
|
126
|
+
|
|
127
|
+
/** Used as references for various `Number` constants. */
|
|
128
|
+
var MAX_SAFE_INTEGER = 9007199254740991;
|
|
129
|
+
|
|
130
|
+
/** Used to detect unsigned integer values. */
|
|
131
|
+
var reIsUint = /^(?:0|[1-9]\d*)$/;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Checks if `value` is a valid array-like index.
|
|
135
|
+
*
|
|
136
|
+
* @private
|
|
137
|
+
* @param {*} value The value to check.
|
|
138
|
+
* @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
|
|
139
|
+
* @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
|
|
140
|
+
*/
|
|
141
|
+
function isIndex(value, length) {
|
|
142
|
+
var type = typeof value;
|
|
143
|
+
length = length == null ? MAX_SAFE_INTEGER : length;
|
|
144
|
+
|
|
145
|
+
return !!length &&
|
|
146
|
+
(type == 'number' ||
|
|
147
|
+
(type != 'symbol' && reIsUint.test(value))) &&
|
|
148
|
+
(value > -1 && value % 1 == 0 && value < length);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
var _isIndex = isIndex;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Checks if the given arguments are from an iteratee call.
|
|
155
|
+
*
|
|
156
|
+
* @private
|
|
157
|
+
* @param {*} value The potential iteratee value argument.
|
|
158
|
+
* @param {*} index The potential iteratee index or key argument.
|
|
159
|
+
* @param {*} object The potential iteratee object argument.
|
|
160
|
+
* @returns {boolean} Returns `true` if the arguments are from an iteratee call,
|
|
161
|
+
* else `false`.
|
|
162
|
+
*/
|
|
163
|
+
function isIterateeCall(value, index, object) {
|
|
164
|
+
if (!isObject_1(object)) {
|
|
165
|
+
return false;
|
|
166
|
+
}
|
|
167
|
+
var type = typeof index;
|
|
168
|
+
if (type == 'number'
|
|
169
|
+
? (isArrayLike_1(object) && _isIndex(index, object.length))
|
|
170
|
+
: (type == 'string' && index in object)
|
|
171
|
+
) {
|
|
172
|
+
return eq_1(object[index], value);
|
|
173
|
+
}
|
|
174
|
+
return false;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
var _isIterateeCall = isIterateeCall;
|
|
178
|
+
|
|
179
|
+
/** Used as references for various `Number` constants. */
|
|
180
|
+
var INFINITY = 1 / 0,
|
|
181
|
+
MAX_INTEGER = 1.7976931348623157e+308;
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Converts `value` to a finite number.
|
|
185
|
+
*
|
|
186
|
+
* @static
|
|
187
|
+
* @memberOf _
|
|
188
|
+
* @since 4.12.0
|
|
189
|
+
* @category Lang
|
|
190
|
+
* @param {*} value The value to convert.
|
|
191
|
+
* @returns {number} Returns the converted number.
|
|
192
|
+
* @example
|
|
193
|
+
*
|
|
194
|
+
* _.toFinite(3.2);
|
|
195
|
+
* // => 3.2
|
|
196
|
+
*
|
|
197
|
+
* _.toFinite(Number.MIN_VALUE);
|
|
198
|
+
* // => 5e-324
|
|
199
|
+
*
|
|
200
|
+
* _.toFinite(Infinity);
|
|
201
|
+
* // => 1.7976931348623157e+308
|
|
202
|
+
*
|
|
203
|
+
* _.toFinite('3.2');
|
|
204
|
+
* // => 3.2
|
|
205
|
+
*/
|
|
206
|
+
function toFinite(value) {
|
|
207
|
+
if (!value) {
|
|
208
|
+
return value === 0 ? value : 0;
|
|
209
|
+
}
|
|
210
|
+
value = toNumber_1(value);
|
|
211
|
+
if (value === INFINITY || value === -INFINITY) {
|
|
212
|
+
var sign = (value < 0 ? -1 : 1);
|
|
213
|
+
return sign * MAX_INTEGER;
|
|
214
|
+
}
|
|
215
|
+
return value === value ? value : 0;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
var toFinite_1 = toFinite;
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Converts `value` to an integer.
|
|
222
|
+
*
|
|
223
|
+
* **Note:** This method is loosely based on
|
|
224
|
+
* [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).
|
|
225
|
+
*
|
|
226
|
+
* @static
|
|
227
|
+
* @memberOf _
|
|
228
|
+
* @since 4.0.0
|
|
229
|
+
* @category Lang
|
|
230
|
+
* @param {*} value The value to convert.
|
|
231
|
+
* @returns {number} Returns the converted integer.
|
|
232
|
+
* @example
|
|
233
|
+
*
|
|
234
|
+
* _.toInteger(3.2);
|
|
235
|
+
* // => 3
|
|
236
|
+
*
|
|
237
|
+
* _.toInteger(Number.MIN_VALUE);
|
|
238
|
+
* // => 0
|
|
239
|
+
*
|
|
240
|
+
* _.toInteger(Infinity);
|
|
241
|
+
* // => 1.7976931348623157e+308
|
|
242
|
+
*
|
|
243
|
+
* _.toInteger('3.2');
|
|
244
|
+
* // => 3
|
|
245
|
+
*/
|
|
246
|
+
function toInteger(value) {
|
|
247
|
+
var result = toFinite_1(value),
|
|
248
|
+
remainder = result % 1;
|
|
249
|
+
|
|
250
|
+
return result === result ? (remainder ? result - remainder : result) : 0;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
var toInteger_1 = toInteger;
|
|
254
|
+
|
|
255
|
+
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
256
|
+
var nativeCeil = Math.ceil,
|
|
257
|
+
nativeMax = Math.max;
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Creates an array of elements split into groups the length of `size`.
|
|
261
|
+
* If `array` can't be split evenly, the final chunk will be the remaining
|
|
262
|
+
* elements.
|
|
263
|
+
*
|
|
264
|
+
* @static
|
|
265
|
+
* @memberOf _
|
|
266
|
+
* @since 3.0.0
|
|
267
|
+
* @category Array
|
|
268
|
+
* @param {Array} array The array to process.
|
|
269
|
+
* @param {number} [size=1] The length of each chunk
|
|
270
|
+
* @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
|
|
271
|
+
* @returns {Array} Returns the new array of chunks.
|
|
272
|
+
* @example
|
|
273
|
+
*
|
|
274
|
+
* _.chunk(['a', 'b', 'c', 'd'], 2);
|
|
275
|
+
* // => [['a', 'b'], ['c', 'd']]
|
|
276
|
+
*
|
|
277
|
+
* _.chunk(['a', 'b', 'c', 'd'], 3);
|
|
278
|
+
* // => [['a', 'b', 'c'], ['d']]
|
|
279
|
+
*/
|
|
280
|
+
function chunk(array, size, guard) {
|
|
281
|
+
if ((guard ? _isIterateeCall(array, size, guard) : size === undefined)) {
|
|
282
|
+
size = 1;
|
|
283
|
+
} else {
|
|
284
|
+
size = nativeMax(toInteger_1(size), 0);
|
|
285
|
+
}
|
|
286
|
+
var length = array == null ? 0 : array.length;
|
|
287
|
+
if (!length || size < 1) {
|
|
288
|
+
return [];
|
|
289
|
+
}
|
|
290
|
+
var index = 0,
|
|
291
|
+
resIndex = 0,
|
|
292
|
+
result = Array(nativeCeil(length / size));
|
|
293
|
+
|
|
294
|
+
while (index < length) {
|
|
295
|
+
result[resIndex++] = _baseSlice(array, index, (index += size));
|
|
296
|
+
}
|
|
297
|
+
return result;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
var chunk_1 = chunk;
|
|
28
301
|
|
|
29
302
|
var NavNative = function NavNative(props) {
|
|
30
303
|
/*
|
|
@@ -11,7 +11,7 @@ import QueueDeckExpanded from './QueueDeckExpanded.js';
|
|
|
11
11
|
import Breadcrumbs from './Breadcrumbs.js';
|
|
12
12
|
import Feature from './Feature.js';
|
|
13
13
|
import urlFor from './urlFor.js';
|
|
14
|
-
import { g as getSerializers } from './index-
|
|
14
|
+
import { g as getSerializers } from './index-e622f708.js';
|
|
15
15
|
import { B as BlockContent } from './BlockContent-1e73bd2c.js';
|
|
16
16
|
import './_commonjsHelpers-0c4b6f40.js';
|
|
17
17
|
import './core.get-iterator-method-ea258bb1.js';
|
|
@@ -66,7 +66,7 @@ import 'react-bootstrap/Col';
|
|
|
66
66
|
import './inherits-a6ba2ec4.js';
|
|
67
67
|
import './_object-sap-7cee6f84.js';
|
|
68
68
|
import './define-property-5f1bda73.js';
|
|
69
|
-
import './index.esm-
|
|
69
|
+
import './index.esm-eb1e8e80.js';
|
|
70
70
|
import './iconBase-ccc56b97.js';
|
|
71
71
|
import 'react-bootstrap/Figure';
|
|
72
72
|
import 'react-bootstrap/OverlayTrigger';
|
|
@@ -11,7 +11,7 @@ import QueueDeckExpanded from './QueueDeckExpandedPaginated.js';
|
|
|
11
11
|
import Breadcrumbs from './Breadcrumbs.js';
|
|
12
12
|
import Feature from './Feature.js';
|
|
13
13
|
import urlFor from './urlFor.js';
|
|
14
|
-
import { g as getSerializers } from './index-
|
|
14
|
+
import { g as getSerializers } from './index-e622f708.js';
|
|
15
15
|
import { B as BlockContent } from './BlockContent-1e73bd2c.js';
|
|
16
16
|
import './_commonjsHelpers-0c4b6f40.js';
|
|
17
17
|
import './core.get-iterator-method-ea258bb1.js';
|
|
@@ -67,7 +67,7 @@ import 'react-bootstrap/Col';
|
|
|
67
67
|
import './inherits-a6ba2ec4.js';
|
|
68
68
|
import './_object-sap-7cee6f84.js';
|
|
69
69
|
import './define-property-5f1bda73.js';
|
|
70
|
-
import './index.esm-
|
|
70
|
+
import './index.esm-eb1e8e80.js';
|
|
71
71
|
import 'react-bootstrap/Figure';
|
|
72
72
|
import 'react-bootstrap/OverlayTrigger';
|
|
73
73
|
import 'react-bootstrap/Tooltip';
|
|
@@ -4,7 +4,7 @@ import React__default from 'react';
|
|
|
4
4
|
import { useRouter } from 'next/router';
|
|
5
5
|
import Head from 'next/head';
|
|
6
6
|
import { B as BlockContent } from './BlockContent-1e73bd2c.js';
|
|
7
|
-
import { g as getSerializers } from './index-
|
|
7
|
+
import { g as getSerializers } from './index-e622f708.js';
|
|
8
8
|
import './_commonjsHelpers-0c4b6f40.js';
|
|
9
9
|
import './core.get-iterator-method-ea258bb1.js';
|
|
10
10
|
import './web.dom.iterable-ab4dea5c.js';
|
|
@@ -48,7 +48,7 @@ import 'react-bootstrap/Col';
|
|
|
48
48
|
import './inherits-a6ba2ec4.js';
|
|
49
49
|
import './_object-sap-7cee6f84.js';
|
|
50
50
|
import './define-property-5f1bda73.js';
|
|
51
|
-
import './index.esm-
|
|
51
|
+
import './index.esm-eb1e8e80.js';
|
|
52
52
|
import './iconBase-ccc56b97.js';
|
|
53
53
|
import 'react-bootstrap/Figure';
|
|
54
54
|
import 'react-bootstrap/OverlayTrigger';
|
|
@@ -52,7 +52,7 @@ import 'react-bootstrap/Navbar';
|
|
|
52
52
|
import 'react-bootstrap/NavDropdown';
|
|
53
53
|
import './index.esm-9b042655.js';
|
|
54
54
|
import './iconBase-ccc56b97.js';
|
|
55
|
-
import './index.esm-
|
|
55
|
+
import './index.esm-eb1e8e80.js';
|
|
56
56
|
import './NavFooter-e27bd93b.js';
|
|
57
57
|
import './index.esm-37268dca.js';
|
|
58
58
|
import './SocialSearchComponent-4b56cd8c.js';
|
|
@@ -60,7 +60,6 @@ import './SocialIcons.js';
|
|
|
60
60
|
import 'react-bootstrap/Form';
|
|
61
61
|
import 'react-bootstrap/FormControl';
|
|
62
62
|
import 'react-bootstrap/Button';
|
|
63
|
-
import './chunk-19bab6aa.js';
|
|
64
63
|
import './Search.js';
|
|
65
64
|
|
|
66
65
|
// Main
|
|
@@ -5,7 +5,7 @@ import { B as BlockContent } from './BlockContent-1e73bd2c.js';
|
|
|
5
5
|
import Col from 'react-bootstrap/Col';
|
|
6
6
|
import Form from 'react-bootstrap/Form';
|
|
7
7
|
import Button from 'react-bootstrap/Button';
|
|
8
|
-
import { g as getSerializers } from './index-
|
|
8
|
+
import { g as getSerializers } from './index-e622f708.js';
|
|
9
9
|
import VideoSeriesListing from './VideoSeriesListing.js';
|
|
10
10
|
import './_commonjsHelpers-0c4b6f40.js';
|
|
11
11
|
import './core.get-iterator-method-ea258bb1.js';
|
|
@@ -50,7 +50,7 @@ import 'react-bootstrap/Row';
|
|
|
50
50
|
import './inherits-a6ba2ec4.js';
|
|
51
51
|
import './_object-sap-7cee6f84.js';
|
|
52
52
|
import './define-property-5f1bda73.js';
|
|
53
|
-
import './index.esm-
|
|
53
|
+
import './index.esm-eb1e8e80.js';
|
|
54
54
|
import './iconBase-ccc56b97.js';
|
|
55
55
|
import 'react-bootstrap/Figure';
|
|
56
56
|
import 'react-bootstrap/OverlayTrigger';
|
|
@@ -4,7 +4,7 @@ import React__default from 'react';
|
|
|
4
4
|
import { l as lib_3 } from './index-f0fc23eb.js';
|
|
5
5
|
import Container from 'react-bootstrap/Container';
|
|
6
6
|
import { V as VisibilitySensor } from './visibility-sensor-72fd8f8b.js';
|
|
7
|
-
import { I as IoIosArrowForward } from './index.esm-
|
|
7
|
+
import { I as IoIosArrowForward } from './index.esm-eb1e8e80.js';
|
|
8
8
|
import { m as moment } from './moment-bc12cb97.js';
|
|
9
9
|
import { withRouter } from 'next/router';
|
|
10
10
|
import YoutubeGroup from './YoutubeGroup.js';
|
package/dist/esm/View.js
CHANGED
|
@@ -15,7 +15,7 @@ import FormControl from 'react-bootstrap/FormControl';
|
|
|
15
15
|
import Button from 'react-bootstrap/Button';
|
|
16
16
|
import { V as VisibilitySensor } from './visibility-sensor-72fd8f8b.js';
|
|
17
17
|
import SocialShare from './SocialShare.js';
|
|
18
|
-
import { r as renderAuthor, g as getSerializers } from './index-
|
|
18
|
+
import { r as renderAuthor, g as getSerializers } from './index-e622f708.js';
|
|
19
19
|
import DFPAdSlot from './AdSlot.js';
|
|
20
20
|
import { S as SeriesSlider } from './SeriesSlider-98ad6d97.js';
|
|
21
21
|
import { g as getTargeting, a as getContentPlacementUrl } from './getTargeting-36031a00.js';
|
|
@@ -60,7 +60,7 @@ import 'react-bootstrap/Col';
|
|
|
60
60
|
import './inherits-a6ba2ec4.js';
|
|
61
61
|
import './_object-sap-7cee6f84.js';
|
|
62
62
|
import './define-property-5f1bda73.js';
|
|
63
|
-
import './index.esm-
|
|
63
|
+
import './index.esm-eb1e8e80.js';
|
|
64
64
|
import './iconBase-ccc56b97.js';
|
|
65
65
|
import 'react-bootstrap/Figure';
|
|
66
66
|
import 'react-bootstrap/OverlayTrigger';
|
|
@@ -642,6 +642,27 @@ var Article = forwardRef(function (props, ref) {
|
|
|
642
642
|
}
|
|
643
643
|
return null;
|
|
644
644
|
};
|
|
645
|
+
var downloadRIS = function downloadRIS(filename) {
|
|
646
|
+
var fileContent = 'TY - JOUR\n';
|
|
647
|
+
if (issue) {
|
|
648
|
+
if (issue.year) fileContent += 'PY - ' + issue.year + '\n';
|
|
649
|
+
if (issue.month) {
|
|
650
|
+
fileContent += 'DA - ' + moment().month(issue.month).format('MMMM') + '\n';
|
|
651
|
+
}
|
|
652
|
+
if (issue.publication && issue.publication.name) fileContent += 'TI - ' + issue.publication.name + '\n';
|
|
653
|
+
if (issue.name) fileContent += 'T2 - ' + issue.name + '\n';
|
|
654
|
+
if (issue.volume) fileContent += 'IS - ' + issue.volume + '\n';
|
|
655
|
+
if (issue.number) fileContent += 'IS - ' + issue.number + '\n';
|
|
656
|
+
}
|
|
657
|
+
fileContent += 'ER -';
|
|
658
|
+
var element = document.createElement('a');
|
|
659
|
+
element.setAttribute('href', 'data:application/x-research-info-systems;charset=utf-8,' + encodeURIComponent(fileContent));
|
|
660
|
+
element.setAttribute('download', filename);
|
|
661
|
+
element.style.display = 'none';
|
|
662
|
+
document.body.appendChild(element);
|
|
663
|
+
element.click();
|
|
664
|
+
document.body.removeChild(element);
|
|
665
|
+
};
|
|
645
666
|
|
|
646
667
|
var RelevantTopics = function RelevantTopics() {
|
|
647
668
|
if (content_placement && content_placement.length > 0 || documentGroupMapping && documentGroupMapping.length > 0) {
|
|
@@ -688,7 +709,7 @@ var Article = forwardRef(function (props, ref) {
|
|
|
688
709
|
React__default.createElement(
|
|
689
710
|
'style',
|
|
690
711
|
{ jsx: 'true' },
|
|
691
|
-
'\n
|
|
712
|
+
'\n .related-link:not(:first-child):before {\n content: \' | \';\n }\n '
|
|
692
713
|
)
|
|
693
714
|
);
|
|
694
715
|
}
|
|
@@ -1238,6 +1259,13 @@ var Article = forwardRef(function (props, ref) {
|
|
|
1238
1259
|
React__default.createElement('img', { style: { margin: '1rem', maxHeight: '40px', maxWidth: '40px' }, src: '/download.png', alt: 'download issue' }),
|
|
1239
1260
|
'Download Issue : ',
|
|
1240
1261
|
issue.name
|
|
1262
|
+
),
|
|
1263
|
+
React__default.createElement(
|
|
1264
|
+
Button,
|
|
1265
|
+
{ onClick: function onClick(req) {
|
|
1266
|
+
return downloadRIS('citation-' + url + '.ris');
|
|
1267
|
+
} },
|
|
1268
|
+
'Download RIS'
|
|
1241
1269
|
)
|
|
1242
1270
|
),
|
|
1243
1271
|
React__default.createElement('div', { className: 'clearfix', style: { minHeight: '1px' } }),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './extends-6d8e3924.js';
|
|
2
2
|
import 'react';
|
|
3
|
-
export { g as default } from './index-
|
|
3
|
+
export { g as default } from './index-e622f708.js';
|
|
4
4
|
import './BlockContent-1e73bd2c.js';
|
|
5
5
|
import './entities-6d9154b4.js';
|
|
6
6
|
import './_commonjsHelpers-0c4b6f40.js';
|
|
@@ -48,7 +48,7 @@ import 'react-bootstrap/Col';
|
|
|
48
48
|
import './inherits-a6ba2ec4.js';
|
|
49
49
|
import './_object-sap-7cee6f84.js';
|
|
50
50
|
import './define-property-5f1bda73.js';
|
|
51
|
-
import './index.esm-
|
|
51
|
+
import './index.esm-eb1e8e80.js';
|
|
52
52
|
import './iconBase-ccc56b97.js';
|
|
53
53
|
import 'react-bootstrap/Figure';
|
|
54
54
|
import 'react-bootstrap/OverlayTrigger';
|
|
@@ -31,7 +31,7 @@ import Row$1 from 'react-bootstrap/Row';
|
|
|
31
31
|
import Col$1 from 'react-bootstrap/Col';
|
|
32
32
|
import Head from 'next/head';
|
|
33
33
|
import { _ as _inherits$1, a as _classCallCheck$1, b as _possibleConstructorReturn$1, c as _Object$getPrototypeOf, d as _createClass$1, e as classCallCheck, p as possibleConstructorReturn, i as inherits } from './inherits-a6ba2ec4.js';
|
|
34
|
-
import {
|
|
34
|
+
import { c as IoIosArrowDropupCircle } from './index.esm-eb1e8e80.js';
|
|
35
35
|
import Figure$2 from 'react-bootstrap/Figure';
|
|
36
36
|
import OverlayTrigger from 'react-bootstrap/OverlayTrigger';
|
|
37
37
|
import Tooltip from 'react-bootstrap/Tooltip';
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { G as GenIcon } from './iconBase-ccc56b97.js';
|
|
2
2
|
|
|
3
3
|
// THIS FILE IS AUTO GENERATED
|
|
4
|
-
function
|
|
5
|
-
return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M48 256c0 114.9 93.1 208 208 208s208-93.1 208-208S370.9 48 256 48 48 141.1 48 256zm289.1-43.4c7.5-7.5 19.8-7.5 27.3 0 3.8 3.8 5.6 8.7 5.6 13.6s-1.9 9.9-5.7 13.7l-94.3 94c-7.6 6.9-19.3 6.7-26.6-.6l-95.7-95.4c-7.5-7.5-7.6-19.7 0-27.3 7.5-7.5 19.7-7.6 27.3 0l81.1 81.9 81-79.9z"}}]})(props);
|
|
6
|
-
}function IoIosArrowDropupCircle (props) {
|
|
4
|
+
function IoIosArrowDropupCircle (props) {
|
|
7
5
|
return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M256 464c114.9 0 208-93.1 208-208S370.9 48 256 48 48 141.1 48 256s93.1 208 208 208zm0-244.5l-81.1 81.9c-7.5 7.5-19.8 7.5-27.3 0s-7.5-19.8 0-27.3l95.7-95.4c7.3-7.3 19.1-7.5 26.6-.6l94.3 94c3.8 3.8 5.7 8.7 5.7 13.7 0 4.9-1.9 9.9-5.6 13.6-7.5 7.5-19.7 7.6-27.3 0l-81-79.9z"}}]})(props);
|
|
8
6
|
}function IoIosArrowForward (props) {
|
|
9
7
|
return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M294.1 256L167 129c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.3 34 0L345 239c9.1 9.1 9.3 23.7.7 33.1L201.1 417c-4.7 4.7-10.9 7-17 7s-12.3-2.3-17-7c-9.4-9.4-9.4-24.6 0-33.9l127-127.1z"}}]})(props);
|
|
@@ -13,4 +11,4 @@ function IoIosArrowDropdownCircle (props) {
|
|
|
13
11
|
return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M256 48c-42.9 0-84.2 13-119.2 37.5-34.2 24-60.2 57.2-75.1 96.1L58 192h45.7l1.9-5c8.2-17.8 19.4-33.9 33.5-48 31.2-31.2 72.7-48.4 116.9-48.4s85.7 17.2 116.9 48.4c31.2 31.2 48.4 72.7 48.4 116.9 0 44.1-17.2 85.7-48.4 116.9-31.2 31.2-72.7 48.4-116.9 48.4-44.1 0-85.6-17.2-116.9-48.4-14-14-25.3-30.1-33.5-47.9l-1.9-5H58l3.6 10.4c14.9 38.9 40.9 72.1 75.1 96.1C171.8 451.1 213 464 256 464c114.7 0 208-93.3 208-208S370.7 48 256 48z"}},{"tag":"path","attr":{"d":"M48 277.4h189.7l-43.6 44.7L224 352l96-96-96-96-31 29.9 44.7 44.7H48v42.8z"}}]})(props);
|
|
14
12
|
}
|
|
15
13
|
|
|
16
|
-
export { IoIosArrowForward as I, IoMdArrowDropdown as a, IoMdLogIn as b,
|
|
14
|
+
export { IoIosArrowForward as I, IoMdArrowDropdown as a, IoMdLogIn as b, IoIosArrowDropupCircle as c };
|
package/dist/esm/index.js
CHANGED
|
@@ -31,7 +31,6 @@ export { default as NavMagazine } from './NavMagazine.js';
|
|
|
31
31
|
export { NavNative } from './NavNative.js';
|
|
32
32
|
export { NavDvm } from './NavDvm.js';
|
|
33
33
|
export { HamMagazine } from './HamMagazine.js';
|
|
34
|
-
export { NavPMG } from './NavPMG.js';
|
|
35
34
|
export { default as TemplateNormal } from './TemplateNormal.js';
|
|
36
35
|
export { default as AD } from './AD.js';
|
|
37
36
|
export { default as AD300x250 } from './AD300x250.js';
|
|
@@ -80,7 +79,7 @@ export { default as VerticalHero } from './VerticalHero.js';
|
|
|
80
79
|
export { default as YahooHero } from './YahooHero.js';
|
|
81
80
|
export { default as GridHero } from './GridHero.js';
|
|
82
81
|
export { default as ConferenceArticleCard } from './ConferenceArticleCard.js';
|
|
83
|
-
export { g as getSerializers } from './index-
|
|
82
|
+
export { g as getSerializers } from './index-e622f708.js';
|
|
84
83
|
export { default as Beam } from './Beam.js';
|
|
85
84
|
export { default as Segment } from './Segment.js';
|
|
86
85
|
export { default as KMTracker } from './KMTracker.js';
|
|
@@ -144,7 +143,7 @@ import './index-c7e2ac95.js';
|
|
|
144
143
|
import './smoothscroll-fa4e3f8c.js';
|
|
145
144
|
import 'react-bootstrap';
|
|
146
145
|
import './timeDifferenceCalc.js';
|
|
147
|
-
import './index.esm-
|
|
146
|
+
import './index.esm-eb1e8e80.js';
|
|
148
147
|
import './iconBase-ccc56b97.js';
|
|
149
148
|
import './asyncToGenerator-5ef104a7.js';
|
|
150
149
|
import './defineProperty-8c30428f.js';
|
|
@@ -170,7 +169,6 @@ import './NavFooter-e27bd93b.js';
|
|
|
170
169
|
import './index.esm-37268dca.js';
|
|
171
170
|
import './SocialSearchComponent-4b56cd8c.js';
|
|
172
171
|
import 'react-bootstrap/FormControl';
|
|
173
|
-
import './chunk-19bab6aa.js';
|
|
174
172
|
import 'react-ga';
|
|
175
173
|
import 'react-bootstrap/Carousel';
|
|
176
174
|
import 'react-bootstrap/Breadcrumb';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { c as createCommonjsModule, u as unwrapExports } from './_commonjsHelpers-0c4b6f40.js';
|
|
2
2
|
import { a as _core } from './core.get-iterator-method-ea258bb1.js';
|
|
3
3
|
|
|
4
4
|
var $JSON = _core.JSON || (_core.JSON = { stringify: JSON.stringify });
|