@mjhls/mjh-framework 1.0.206 → 1.0.207

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 (44) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/DeckContent.js +10 -11
  3. package/dist/cjs/DeckQueue.js +11 -12
  4. package/dist/cjs/{Dfp-d94f7f73.js → Dfp-c4f1f12a.js} +5 -5
  5. package/dist/cjs/GridContent-089aa22c.js +632 -0
  6. package/dist/cjs/GridContent.js +17 -604
  7. package/dist/cjs/IssueContentDeck.js +4 -4
  8. package/dist/cjs/IssueDeck.js +4 -4
  9. package/dist/cjs/MasterDeck.js +5 -6
  10. package/dist/cjs/{Normal-7dd8c339.js → Normal-47d9e184.js} +62 -3
  11. package/dist/cjs/PublicationDeck.js +4 -4
  12. package/dist/cjs/QueueDeckExpanded.js +13 -13
  13. package/dist/cjs/{TaxonomyCard-7b5b4298.js → TaxonomyCard-d97685e2.js} +5 -5
  14. package/dist/cjs/TaxonomyCard.js +1 -1
  15. package/dist/cjs/TemplateNormal.js +4 -4
  16. package/dist/cjs/ThumbnailCard.js +4 -4
  17. package/dist/cjs/VideoSeriesListing.js +6 -7
  18. package/dist/cjs/{YoutubeGroup-4cf7a4aa.js → YoutubeGroup-7dc3064d.js} +3 -3
  19. package/dist/cjs/YoutubeGroup.js +1 -1
  20. package/dist/cjs/{debounce-286eb3fb.js → debounce-a963b136.js} +211 -6
  21. package/dist/cjs/{get-06aac51b.js → get-126b1712.js} +10 -10
  22. package/dist/cjs/{visibility-sensor-5c5a7302.js → index-0322e486.js} +0 -587
  23. package/dist/cjs/index.js +212 -96
  24. package/dist/cjs/{index.es-2289df51.js → visibility-sensor-bea3105d.js} +587 -0
  25. package/dist/esm/DeckContent.js +3 -4
  26. package/dist/esm/DeckQueue.js +4 -5
  27. package/dist/esm/{Dfp-ab7941d3.js → Dfp-6731ac01.js} +3 -3
  28. package/dist/esm/GridContent-214acb61.js +625 -0
  29. package/dist/esm/GridContent.js +16 -603
  30. package/dist/esm/MasterDeck.js +3 -4
  31. package/dist/esm/{Normal-403c5666.js → Normal-be430fa9.js} +62 -4
  32. package/dist/esm/QueueDeckExpanded.js +2 -2
  33. package/dist/esm/TemplateNormal.js +4 -4
  34. package/dist/esm/VideoSeriesListing.js +3 -4
  35. package/dist/esm/{debounce-a0242b4a.js → debounce-dc0c02e5.js} +202 -2
  36. package/dist/esm/{get-b684ff61.js → get-b074314b.js} +1 -1
  37. package/dist/esm/{visibility-sensor-3cfe6713.js → index-6a79dad6.js} +2 -588
  38. package/dist/esm/index.js +182 -68
  39. package/dist/esm/{index.es-f369b3e8.js → visibility-sensor-675d3fa1.js} +588 -2
  40. package/package.json +1 -1
  41. package/dist/cjs/AD-e2479b7c.js +0 -31
  42. package/dist/cjs/isSymbol-311eb805.js +0 -209
  43. package/dist/esm/AD-1b2a3dd3.js +0 -26
  44. package/dist/esm/isSymbol-c2b7d05a.js +0 -203
@@ -1,6 +1,51 @@
1
1
  'use strict';
2
2
 
3
- var isSymbol$1 = require('./isSymbol-311eb805.js');
3
+ var _commonjsHelpers = require('./_commonjsHelpers-3fc1f64e.js');
4
+
5
+ /**
6
+ * Checks if `value` is the
7
+ * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
8
+ * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
9
+ *
10
+ * @static
11
+ * @memberOf _
12
+ * @since 0.1.0
13
+ * @category Lang
14
+ * @param {*} value The value to check.
15
+ * @returns {boolean} Returns `true` if `value` is an object, else `false`.
16
+ * @example
17
+ *
18
+ * _.isObject({});
19
+ * // => true
20
+ *
21
+ * _.isObject([1, 2, 3]);
22
+ * // => true
23
+ *
24
+ * _.isObject(_.noop);
25
+ * // => true
26
+ *
27
+ * _.isObject(null);
28
+ * // => false
29
+ */
30
+ function isObject(value) {
31
+ var type = typeof value;
32
+ return value != null && (type == 'object' || type == 'function');
33
+ }
34
+
35
+ var isObject_1 = isObject;
36
+
37
+ /** Detect free variable `global` from Node.js. */
38
+ var freeGlobal = typeof _commonjsHelpers.commonjsGlobal == 'object' && _commonjsHelpers.commonjsGlobal && _commonjsHelpers.commonjsGlobal.Object === Object && _commonjsHelpers.commonjsGlobal;
39
+
40
+ var _freeGlobal = freeGlobal;
41
+
42
+ /** Detect free variable `self`. */
43
+ var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
44
+
45
+ /** Used as a reference to the global object. */
46
+ var root = _freeGlobal || freeSelf || Function('return this')();
47
+
48
+ var _root = root;
4
49
 
5
50
  /**
6
51
  * Gets the timestamp of the number of milliseconds that have elapsed since
@@ -19,11 +64,166 @@ var isSymbol$1 = require('./isSymbol-311eb805.js');
19
64
  * // => Logs the number of milliseconds it took for the deferred invocation.
20
65
  */
21
66
  var now = function() {
22
- return isSymbol$1._root.Date.now();
67
+ return _root.Date.now();
23
68
  };
24
69
 
25
70
  var now_1 = now;
26
71
 
72
+ /** Built-in value references. */
73
+ var Symbol = _root.Symbol;
74
+
75
+ var _Symbol = Symbol;
76
+
77
+ /** Used for built-in method references. */
78
+ var objectProto = Object.prototype;
79
+
80
+ /** Used to check objects for own properties. */
81
+ var hasOwnProperty = objectProto.hasOwnProperty;
82
+
83
+ /**
84
+ * Used to resolve the
85
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
86
+ * of values.
87
+ */
88
+ var nativeObjectToString = objectProto.toString;
89
+
90
+ /** Built-in value references. */
91
+ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;
92
+
93
+ /**
94
+ * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
95
+ *
96
+ * @private
97
+ * @param {*} value The value to query.
98
+ * @returns {string} Returns the raw `toStringTag`.
99
+ */
100
+ function getRawTag(value) {
101
+ var isOwn = hasOwnProperty.call(value, symToStringTag),
102
+ tag = value[symToStringTag];
103
+
104
+ try {
105
+ value[symToStringTag] = undefined;
106
+ var unmasked = true;
107
+ } catch (e) {}
108
+
109
+ var result = nativeObjectToString.call(value);
110
+ if (unmasked) {
111
+ if (isOwn) {
112
+ value[symToStringTag] = tag;
113
+ } else {
114
+ delete value[symToStringTag];
115
+ }
116
+ }
117
+ return result;
118
+ }
119
+
120
+ var _getRawTag = getRawTag;
121
+
122
+ /** Used for built-in method references. */
123
+ var objectProto$1 = Object.prototype;
124
+
125
+ /**
126
+ * Used to resolve the
127
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
128
+ * of values.
129
+ */
130
+ var nativeObjectToString$1 = objectProto$1.toString;
131
+
132
+ /**
133
+ * Converts `value` to a string using `Object.prototype.toString`.
134
+ *
135
+ * @private
136
+ * @param {*} value The value to convert.
137
+ * @returns {string} Returns the converted string.
138
+ */
139
+ function objectToString(value) {
140
+ return nativeObjectToString$1.call(value);
141
+ }
142
+
143
+ var _objectToString = objectToString;
144
+
145
+ /** `Object#toString` result references. */
146
+ var nullTag = '[object Null]',
147
+ undefinedTag = '[object Undefined]';
148
+
149
+ /** Built-in value references. */
150
+ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined;
151
+
152
+ /**
153
+ * The base implementation of `getTag` without fallbacks for buggy environments.
154
+ *
155
+ * @private
156
+ * @param {*} value The value to query.
157
+ * @returns {string} Returns the `toStringTag`.
158
+ */
159
+ function baseGetTag(value) {
160
+ if (value == null) {
161
+ return value === undefined ? undefinedTag : nullTag;
162
+ }
163
+ return (symToStringTag$1 && symToStringTag$1 in Object(value))
164
+ ? _getRawTag(value)
165
+ : _objectToString(value);
166
+ }
167
+
168
+ var _baseGetTag = baseGetTag;
169
+
170
+ /**
171
+ * Checks if `value` is object-like. A value is object-like if it's not `null`
172
+ * and has a `typeof` result of "object".
173
+ *
174
+ * @static
175
+ * @memberOf _
176
+ * @since 4.0.0
177
+ * @category Lang
178
+ * @param {*} value The value to check.
179
+ * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
180
+ * @example
181
+ *
182
+ * _.isObjectLike({});
183
+ * // => true
184
+ *
185
+ * _.isObjectLike([1, 2, 3]);
186
+ * // => true
187
+ *
188
+ * _.isObjectLike(_.noop);
189
+ * // => false
190
+ *
191
+ * _.isObjectLike(null);
192
+ * // => false
193
+ */
194
+ function isObjectLike(value) {
195
+ return value != null && typeof value == 'object';
196
+ }
197
+
198
+ var isObjectLike_1 = isObjectLike;
199
+
200
+ /** `Object#toString` result references. */
201
+ var symbolTag = '[object Symbol]';
202
+
203
+ /**
204
+ * Checks if `value` is classified as a `Symbol` primitive or object.
205
+ *
206
+ * @static
207
+ * @memberOf _
208
+ * @since 4.0.0
209
+ * @category Lang
210
+ * @param {*} value The value to check.
211
+ * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
212
+ * @example
213
+ *
214
+ * _.isSymbol(Symbol.iterator);
215
+ * // => true
216
+ *
217
+ * _.isSymbol('abc');
218
+ * // => false
219
+ */
220
+ function isSymbol(value) {
221
+ return typeof value == 'symbol' ||
222
+ (isObjectLike_1(value) && _baseGetTag(value) == symbolTag);
223
+ }
224
+
225
+ var isSymbol_1 = isSymbol;
226
+
27
227
  /** Used as references for various `Number` constants. */
28
228
  var NAN = 0 / 0;
29
229
 
@@ -69,12 +269,12 @@ function toNumber(value) {
69
269
  if (typeof value == 'number') {
70
270
  return value;
71
271
  }
72
- if (isSymbol$1.isSymbol_1(value)) {
272
+ if (isSymbol_1(value)) {
73
273
  return NAN;
74
274
  }
75
- if (isSymbol$1.isObject_1(value)) {
275
+ if (isObject_1(value)) {
76
276
  var other = typeof value.valueOf == 'function' ? value.valueOf() : value;
77
- value = isSymbol$1.isObject_1(other) ? (other + '') : other;
277
+ value = isObject_1(other) ? (other + '') : other;
78
278
  }
79
279
  if (typeof value != 'string') {
80
280
  return value === 0 ? value : +value;
@@ -165,7 +365,7 @@ function debounce(func, wait, options) {
165
365
  throw new TypeError(FUNC_ERROR_TEXT);
166
366
  }
167
367
  wait = toNumber_1(wait) || 0;
168
- if (isSymbol$1.isObject_1(options)) {
368
+ if (isObject_1(options)) {
169
369
  leading = !!options.leading;
170
370
  maxing = 'maxWait' in options;
171
371
  maxWait = maxing ? nativeMax(toNumber_1(options.maxWait) || 0, wait) : maxWait;
@@ -276,4 +476,9 @@ function debounce(func, wait, options) {
276
476
 
277
477
  var debounce_1 = debounce;
278
478
 
479
+ exports._Symbol = _Symbol;
480
+ exports._baseGetTag = _baseGetTag;
481
+ exports._root = _root;
279
482
  exports.debounce_1 = debounce_1;
483
+ exports.isObject_1 = isObject_1;
484
+ exports.isSymbol_1 = isSymbol_1;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var isSymbol$1 = require('./isSymbol-311eb805.js');
3
+ var debounce = require('./debounce-a963b136.js');
4
4
 
5
5
  /**
6
6
  * Checks if `value` is classified as an `Array` object.
@@ -47,7 +47,7 @@ function isKey(value, object) {
47
47
  }
48
48
  var type = typeof value;
49
49
  if (type == 'number' || type == 'symbol' || type == 'boolean' ||
50
- value == null || isSymbol$1.isSymbol_1(value)) {
50
+ value == null || debounce.isSymbol_1(value)) {
51
51
  return true;
52
52
  }
53
53
  return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||
@@ -80,19 +80,19 @@ var asyncTag = '[object AsyncFunction]',
80
80
  * // => false
81
81
  */
82
82
  function isFunction(value) {
83
- if (!isSymbol$1.isObject_1(value)) {
83
+ if (!debounce.isObject_1(value)) {
84
84
  return false;
85
85
  }
86
86
  // The use of `Object#toString` avoids issues with the `typeof` operator
87
87
  // in Safari 9 which returns 'object' for typed arrays and other constructors.
88
- var tag = isSymbol$1._baseGetTag(value);
88
+ var tag = debounce._baseGetTag(value);
89
89
  return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
90
90
  }
91
91
 
92
92
  var isFunction_1 = isFunction;
93
93
 
94
94
  /** Used to detect overreaching core-js shims. */
95
- var coreJsData = isSymbol$1._root['__core-js_shared__'];
95
+ var coreJsData = debounce._root['__core-js_shared__'];
96
96
 
97
97
  var _coreJsData = coreJsData;
98
98
 
@@ -176,7 +176,7 @@ var reIsNative = RegExp('^' +
176
176
  * else `false`.
177
177
  */
178
178
  function baseIsNative(value) {
179
- if (!isSymbol$1.isObject_1(value) || _isMasked(value)) {
179
+ if (!debounce.isObject_1(value) || _isMasked(value)) {
180
180
  return false;
181
181
  }
182
182
  var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor;
@@ -543,7 +543,7 @@ ListCache.prototype.set = _listCacheSet;
543
543
  var _ListCache = ListCache;
544
544
 
545
545
  /* Built-in method references that are verified to be native. */
546
- var Map = _getNative(isSymbol$1._root, 'Map');
546
+ var Map = _getNative(debounce._root, 'Map');
547
547
 
548
548
  var _Map = Map;
549
549
 
@@ -842,7 +842,7 @@ var _arrayMap = arrayMap;
842
842
  var INFINITY = 1 / 0;
843
843
 
844
844
  /** Used to convert symbols to primitives and strings. */
845
- var symbolProto = isSymbol$1._Symbol ? isSymbol$1._Symbol.prototype : undefined,
845
+ var symbolProto = debounce._Symbol ? debounce._Symbol.prototype : undefined,
846
846
  symbolToString = symbolProto ? symbolProto.toString : undefined;
847
847
 
848
848
  /**
@@ -862,7 +862,7 @@ function baseToString(value) {
862
862
  // Recursively convert values (susceptible to call stack limits).
863
863
  return _arrayMap(value, baseToString) + '';
864
864
  }
865
- if (isSymbol$1.isSymbol_1(value)) {
865
+ if (debounce.isSymbol_1(value)) {
866
866
  return symbolToString ? symbolToString.call(value) : '';
867
867
  }
868
868
  var result = (value + '');
@@ -926,7 +926,7 @@ var INFINITY$1 = 1 / 0;
926
926
  * @returns {string|symbol} Returns the key.
927
927
  */
928
928
  function toKey(value) {
929
- if (typeof value == 'string' || isSymbol$1.isSymbol_1(value)) {
929
+ if (typeof value == 'string' || debounce.isSymbol_1(value)) {
930
930
  return value;
931
931
  }
932
932
  var result = (value + '');