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