@mjhls/mjh-framework 1.0.893-nav-pmg-v1 → 1.0.893-publication-landing-no-image-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.
Files changed (55) hide show
  1. package/dist/cjs/AccordionPanel.js +1 -1
  2. package/dist/cjs/AlgoliaSearch.js +1 -1
  3. package/dist/cjs/ArticleProgramLandingPage.js +2 -2
  4. package/dist/cjs/ArticleSeriesListing.js +1 -1
  5. package/dist/cjs/ExternalResources.js +2 -2
  6. package/dist/cjs/HamMagazine.js +1 -1
  7. package/dist/cjs/HorizontalArticleListing.js +2 -2
  8. package/dist/cjs/IssueLanding.js +2 -2
  9. package/dist/cjs/{MediaSeriesCard-7c7077e4.js → MediaSeriesCard-bc32a178.js} +1 -1
  10. package/dist/cjs/MediaSeriesLanding.js +3 -3
  11. package/dist/cjs/MediaSeriesLandingPaginated.js +3 -3
  12. package/dist/cjs/NavMagazine.js +1 -1
  13. package/dist/cjs/NavNative.js +278 -5
  14. package/dist/cjs/PartnerDetailListing.js +2 -2
  15. package/dist/cjs/PartnerDetailListingPaginated.js +2 -2
  16. package/dist/cjs/PublicationLanding.js +5 -7
  17. package/dist/cjs/TaxonomyDescription.js +2 -2
  18. package/dist/cjs/TemplateNormal.js +1 -2
  19. package/dist/cjs/VideoProgramLandingPage.js +2 -2
  20. package/dist/cjs/VideoSeriesListing.js +1 -1
  21. package/dist/cjs/View.js +2 -2
  22. package/dist/cjs/getSerializers.js +2 -2
  23. package/dist/cjs/{index-a703b51e.js → index-2b8f254a.js} +1 -1
  24. package/dist/cjs/{index.esm-5cda7fe5.js → index.esm-d81454e7.js} +1 -4
  25. package/dist/cjs/index.js +2 -5
  26. package/dist/esm/AccordionPanel.js +1 -1
  27. package/dist/esm/AlgoliaSearch.js +1 -1
  28. package/dist/esm/ArticleProgramLandingPage.js +2 -2
  29. package/dist/esm/ArticleSeriesListing.js +1 -1
  30. package/dist/esm/ExternalResources.js +2 -2
  31. package/dist/esm/HamMagazine.js +1 -1
  32. package/dist/esm/HorizontalArticleListing.js +2 -2
  33. package/dist/esm/IssueLanding.js +2 -2
  34. package/dist/esm/{MediaSeriesCard-d3601b8a.js → MediaSeriesCard-a6398bed.js} +1 -1
  35. package/dist/esm/MediaSeriesLanding.js +3 -3
  36. package/dist/esm/MediaSeriesLandingPaginated.js +3 -3
  37. package/dist/esm/NavMagazine.js +1 -1
  38. package/dist/esm/NavNative.js +277 -4
  39. package/dist/esm/PartnerDetailListing.js +2 -2
  40. package/dist/esm/PartnerDetailListingPaginated.js +2 -2
  41. package/dist/esm/PublicationLanding.js +5 -7
  42. package/dist/esm/TaxonomyDescription.js +2 -2
  43. package/dist/esm/TemplateNormal.js +1 -2
  44. package/dist/esm/VideoProgramLandingPage.js +2 -2
  45. package/dist/esm/VideoSeriesListing.js +1 -1
  46. package/dist/esm/View.js +2 -2
  47. package/dist/esm/getSerializers.js +2 -2
  48. package/dist/esm/{index-52dec9fe.js → index-e622f708.js} +1 -1
  49. package/dist/esm/{index.esm-f14a3e58.js → index.esm-eb1e8e80.js} +2 -4
  50. package/dist/esm/index.js +2 -4
  51. package/package.json +1 -1
  52. package/dist/cjs/NavPMG.js +0 -627
  53. package/dist/cjs/chunk-db8bb26d.js +0 -281
  54. package/dist/esm/NavPMG.js +0 -612
  55. package/dist/esm/chunk-19bab6aa.js +0 -279
@@ -1,281 +0,0 @@
1
- 'use strict';
2
-
3
- var eq = require('./eq-5fc26c07.js');
4
- var isSymbol = require('./isSymbol-03abbdf0.js');
5
- var toNumber = require('./toNumber-5e1fac58.js');
6
-
7
- /**
8
- * The base implementation of `_.slice` without an iteratee call guard.
9
- *
10
- * @private
11
- * @param {Array} array The array to slice.
12
- * @param {number} [start=0] The start position.
13
- * @param {number} [end=array.length] The end position.
14
- * @returns {Array} Returns the slice of `array`.
15
- */
16
- function baseSlice(array, start, end) {
17
- var index = -1,
18
- length = array.length;
19
-
20
- if (start < 0) {
21
- start = -start > length ? 0 : (length + start);
22
- }
23
- end = end > length ? length : end;
24
- if (end < 0) {
25
- end += length;
26
- }
27
- length = start > end ? 0 : ((end - start) >>> 0);
28
- start >>>= 0;
29
-
30
- var result = Array(length);
31
- while (++index < length) {
32
- result[index] = array[index + start];
33
- }
34
- return result;
35
- }
36
-
37
- var _baseSlice = baseSlice;
38
-
39
- /** Used as references for various `Number` constants. */
40
- var MAX_SAFE_INTEGER$1 = 9007199254740991;
41
-
42
- /**
43
- * Checks if `value` is a valid array-like length.
44
- *
45
- * **Note:** This method is loosely based on
46
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
47
- *
48
- * @static
49
- * @memberOf _
50
- * @since 4.0.0
51
- * @category Lang
52
- * @param {*} value The value to check.
53
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
54
- * @example
55
- *
56
- * _.isLength(3);
57
- * // => true
58
- *
59
- * _.isLength(Number.MIN_VALUE);
60
- * // => false
61
- *
62
- * _.isLength(Infinity);
63
- * // => false
64
- *
65
- * _.isLength('3');
66
- * // => false
67
- */
68
- function isLength(value) {
69
- return typeof value == 'number' &&
70
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER$1;
71
- }
72
-
73
- var isLength_1 = isLength;
74
-
75
- /**
76
- * Checks if `value` is array-like. A value is considered array-like if it's
77
- * not a function and has a `value.length` that's an integer greater than or
78
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
79
- *
80
- * @static
81
- * @memberOf _
82
- * @since 4.0.0
83
- * @category Lang
84
- * @param {*} value The value to check.
85
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
86
- * @example
87
- *
88
- * _.isArrayLike([1, 2, 3]);
89
- * // => true
90
- *
91
- * _.isArrayLike(document.body.children);
92
- * // => true
93
- *
94
- * _.isArrayLike('abc');
95
- * // => true
96
- *
97
- * _.isArrayLike(_.noop);
98
- * // => false
99
- */
100
- function isArrayLike(value) {
101
- return value != null && isLength_1(value.length) && !eq.isFunction_1(value);
102
- }
103
-
104
- var isArrayLike_1 = isArrayLike;
105
-
106
- /** Used as references for various `Number` constants. */
107
- var MAX_SAFE_INTEGER = 9007199254740991;
108
-
109
- /** Used to detect unsigned integer values. */
110
- var reIsUint = /^(?:0|[1-9]\d*)$/;
111
-
112
- /**
113
- * Checks if `value` is a valid array-like index.
114
- *
115
- * @private
116
- * @param {*} value The value to check.
117
- * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
118
- * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
119
- */
120
- function isIndex(value, length) {
121
- var type = typeof value;
122
- length = length == null ? MAX_SAFE_INTEGER : length;
123
-
124
- return !!length &&
125
- (type == 'number' ||
126
- (type != 'symbol' && reIsUint.test(value))) &&
127
- (value > -1 && value % 1 == 0 && value < length);
128
- }
129
-
130
- var _isIndex = isIndex;
131
-
132
- /**
133
- * Checks if the given arguments are from an iteratee call.
134
- *
135
- * @private
136
- * @param {*} value The potential iteratee value argument.
137
- * @param {*} index The potential iteratee index or key argument.
138
- * @param {*} object The potential iteratee object argument.
139
- * @returns {boolean} Returns `true` if the arguments are from an iteratee call,
140
- * else `false`.
141
- */
142
- function isIterateeCall(value, index, object) {
143
- if (!isSymbol.isObject_1(object)) {
144
- return false;
145
- }
146
- var type = typeof index;
147
- if (type == 'number'
148
- ? (isArrayLike_1(object) && _isIndex(index, object.length))
149
- : (type == 'string' && index in object)
150
- ) {
151
- return eq.eq_1(object[index], value);
152
- }
153
- return false;
154
- }
155
-
156
- var _isIterateeCall = isIterateeCall;
157
-
158
- /** Used as references for various `Number` constants. */
159
- var INFINITY = 1 / 0,
160
- MAX_INTEGER = 1.7976931348623157e+308;
161
-
162
- /**
163
- * Converts `value` to a finite number.
164
- *
165
- * @static
166
- * @memberOf _
167
- * @since 4.12.0
168
- * @category Lang
169
- * @param {*} value The value to convert.
170
- * @returns {number} Returns the converted number.
171
- * @example
172
- *
173
- * _.toFinite(3.2);
174
- * // => 3.2
175
- *
176
- * _.toFinite(Number.MIN_VALUE);
177
- * // => 5e-324
178
- *
179
- * _.toFinite(Infinity);
180
- * // => 1.7976931348623157e+308
181
- *
182
- * _.toFinite('3.2');
183
- * // => 3.2
184
- */
185
- function toFinite(value) {
186
- if (!value) {
187
- return value === 0 ? value : 0;
188
- }
189
- value = toNumber.toNumber_1(value);
190
- if (value === INFINITY || value === -INFINITY) {
191
- var sign = (value < 0 ? -1 : 1);
192
- return sign * MAX_INTEGER;
193
- }
194
- return value === value ? value : 0;
195
- }
196
-
197
- var toFinite_1 = toFinite;
198
-
199
- /**
200
- * Converts `value` to an integer.
201
- *
202
- * **Note:** This method is loosely based on
203
- * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).
204
- *
205
- * @static
206
- * @memberOf _
207
- * @since 4.0.0
208
- * @category Lang
209
- * @param {*} value The value to convert.
210
- * @returns {number} Returns the converted integer.
211
- * @example
212
- *
213
- * _.toInteger(3.2);
214
- * // => 3
215
- *
216
- * _.toInteger(Number.MIN_VALUE);
217
- * // => 0
218
- *
219
- * _.toInteger(Infinity);
220
- * // => 1.7976931348623157e+308
221
- *
222
- * _.toInteger('3.2');
223
- * // => 3
224
- */
225
- function toInteger(value) {
226
- var result = toFinite_1(value),
227
- remainder = result % 1;
228
-
229
- return result === result ? (remainder ? result - remainder : result) : 0;
230
- }
231
-
232
- var toInteger_1 = toInteger;
233
-
234
- /* Built-in method references for those with the same name as other `lodash` methods. */
235
- var nativeCeil = Math.ceil,
236
- nativeMax = Math.max;
237
-
238
- /**
239
- * Creates an array of elements split into groups the length of `size`.
240
- * If `array` can't be split evenly, the final chunk will be the remaining
241
- * elements.
242
- *
243
- * @static
244
- * @memberOf _
245
- * @since 3.0.0
246
- * @category Array
247
- * @param {Array} array The array to process.
248
- * @param {number} [size=1] The length of each chunk
249
- * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
250
- * @returns {Array} Returns the new array of chunks.
251
- * @example
252
- *
253
- * _.chunk(['a', 'b', 'c', 'd'], 2);
254
- * // => [['a', 'b'], ['c', 'd']]
255
- *
256
- * _.chunk(['a', 'b', 'c', 'd'], 3);
257
- * // => [['a', 'b', 'c'], ['d']]
258
- */
259
- function chunk(array, size, guard) {
260
- if ((guard ? _isIterateeCall(array, size, guard) : size === undefined)) {
261
- size = 1;
262
- } else {
263
- size = nativeMax(toInteger_1(size), 0);
264
- }
265
- var length = array == null ? 0 : array.length;
266
- if (!length || size < 1) {
267
- return [];
268
- }
269
- var index = 0,
270
- resIndex = 0,
271
- result = Array(nativeCeil(length / size));
272
-
273
- while (index < length) {
274
- result[resIndex++] = _baseSlice(array, index, (index += size));
275
- }
276
- return result;
277
- }
278
-
279
- var chunk_1 = chunk;
280
-
281
- exports.chunk_1 = chunk_1;