@mjhls/mjh-framework 1.0.844-beta.0 → 1.0.844-beta.2

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 (51) hide show
  1. package/dist/cjs/AdSlotsProvider.js +2 -895
  2. package/dist/cjs/AlgoliaSearch.js +336 -237
  3. package/dist/cjs/ArticleProgramLandingPage.js +2 -3
  4. package/dist/cjs/ArticleSeriesLandingPage.js +1 -1
  5. package/dist/cjs/ArticleSeriesListing.js +1 -1
  6. package/dist/cjs/DeckContent.js +1 -1
  7. package/dist/cjs/DeckQueue.js +1 -1
  8. package/dist/cjs/ExternalResources.js +2 -3
  9. package/dist/cjs/GridContent.js +1 -1
  10. package/dist/cjs/HorizontalArticleListing.js +2 -3
  11. package/dist/cjs/IssueLanding.js +2 -3
  12. package/dist/cjs/MasterDeck.js +1 -1
  13. package/dist/cjs/MediaSeriesLanding.js +5 -6
  14. package/dist/cjs/PartnerDetailListing.js +6 -1105
  15. package/dist/cjs/TaxonomyDescription.js +2 -3
  16. package/dist/cjs/VideoProgramLandingPage.js +2 -3
  17. package/dist/cjs/VideoSeriesCard.js +2 -2
  18. package/dist/cjs/VideoSeriesLandingPage.js +3 -3
  19. package/dist/cjs/VideoSeriesListing.js +1 -1
  20. package/dist/cjs/View.js +4 -6
  21. package/dist/cjs/faundadb.js +321 -4
  22. package/dist/cjs/getRelatedArticle.js +20 -24
  23. package/dist/cjs/getSerializers.js +2 -3
  24. package/dist/cjs/{index-45f8b70b.js → index-4fdc043f.js} +629 -32
  25. package/dist/cjs/index.js +4 -11
  26. package/dist/cjs/{inherits-452ff02c.js → inherits-9953db94.js} +4 -4
  27. package/dist/esm/AdSlotsProvider.js +6 -898
  28. package/dist/esm/AlgoliaSearch.js +100 -1
  29. package/dist/esm/ArticleProgramLandingPage.js +1 -2
  30. package/dist/esm/ExternalResources.js +1 -2
  31. package/dist/esm/HorizontalArticleListing.js +1 -2
  32. package/dist/esm/IssueLanding.js +1 -2
  33. package/dist/esm/MediaSeriesLanding.js +1 -2
  34. package/dist/esm/PartnerDetailListing.js +5 -1103
  35. package/dist/esm/TaxonomyDescription.js +1 -2
  36. package/dist/esm/VideoProgramLandingPage.js +1 -2
  37. package/dist/esm/View.js +1 -3
  38. package/dist/esm/faundadb.js +319 -2
  39. package/dist/esm/getRelatedArticle.js +20 -24
  40. package/dist/esm/getSerializers.js +1 -2
  41. package/dist/esm/{index-ea86ff20.js → index-fb819516.js} +617 -20
  42. package/dist/esm/index.js +3 -9
  43. package/package.json +6 -2
  44. package/dist/cjs/Auth.js +0 -3628
  45. package/dist/cjs/inherits-8d29278d.js +0 -110
  46. package/dist/cjs/md5-5039b1a6.js +0 -323
  47. package/dist/cjs/util-f2c1b65b.js +0 -576
  48. package/dist/esm/Auth.js +0 -3612
  49. package/dist/esm/inherits-77d5e4fc.js +0 -101
  50. package/dist/esm/md5-9be0e905.js +0 -321
  51. package/dist/esm/util-7700fc59.js +0 -574
@@ -20,7 +20,6 @@ import urlFor from './urlFor.js';
20
20
  import { L as LazyLoad } from './index-5f7e79e7.js';
21
21
  import { DropdownButton } from 'react-bootstrap';
22
22
  import { _ as _objectWithoutPropertiesLoose$1, a as _extends, c as classnames } from './index-aaa2dae0.js';
23
- import { _ as _defineProperty, a as _typeof, b as _inherits, c as _classCallCheck, d as _possibleConstructorReturn, e as _getPrototypeOf, f as _assertThisInitialized, g as _createClass } from './inherits-77d5e4fc.js';
24
23
 
25
24
  function _objectWithoutProperties(source, excluded) {
26
25
  if (source == null) return {};
@@ -41,6 +40,21 @@ function _objectWithoutProperties(source, excluded) {
41
40
  return target;
42
41
  }
43
42
 
43
+ function _defineProperty(obj, key, value) {
44
+ if (key in obj) {
45
+ Object.defineProperty(obj, key, {
46
+ value: value,
47
+ enumerable: true,
48
+ configurable: true,
49
+ writable: true
50
+ });
51
+ } else {
52
+ obj[key] = value;
53
+ }
54
+
55
+ return obj;
56
+ }
57
+
44
58
  function _objectSpread(target) {
45
59
  for (var i = 1; i < arguments.length; i++) {
46
60
  var source = arguments[i] != null ? arguments[i] : {};
@@ -60,6 +74,91 @@ function _objectSpread(target) {
60
74
  return target;
61
75
  }
62
76
 
77
+ function _classCallCheck(instance, Constructor) {
78
+ if (!(instance instanceof Constructor)) {
79
+ throw new TypeError("Cannot call a class as a function");
80
+ }
81
+ }
82
+
83
+ function _defineProperties(target, props) {
84
+ for (var i = 0; i < props.length; i++) {
85
+ var descriptor = props[i];
86
+ descriptor.enumerable = descriptor.enumerable || false;
87
+ descriptor.configurable = true;
88
+ if ("value" in descriptor) descriptor.writable = true;
89
+ Object.defineProperty(target, descriptor.key, descriptor);
90
+ }
91
+ }
92
+
93
+ function _createClass(Constructor, protoProps, staticProps) {
94
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
95
+ if (staticProps) _defineProperties(Constructor, staticProps);
96
+ return Constructor;
97
+ }
98
+
99
+ function _typeof2(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof2(obj); }
100
+
101
+ function _typeof(obj) {
102
+ if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") {
103
+ _typeof = function _typeof(obj) {
104
+ return _typeof2(obj);
105
+ };
106
+ } else {
107
+ _typeof = function _typeof(obj) {
108
+ return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj);
109
+ };
110
+ }
111
+
112
+ return _typeof(obj);
113
+ }
114
+
115
+ function _assertThisInitialized(self) {
116
+ if (self === void 0) {
117
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
118
+ }
119
+
120
+ return self;
121
+ }
122
+
123
+ function _possibleConstructorReturn(self, call) {
124
+ if (call && (_typeof(call) === "object" || typeof call === "function")) {
125
+ return call;
126
+ }
127
+
128
+ return _assertThisInitialized(self);
129
+ }
130
+
131
+ function _getPrototypeOf(o) {
132
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
133
+ return o.__proto__ || Object.getPrototypeOf(o);
134
+ };
135
+ return _getPrototypeOf(o);
136
+ }
137
+
138
+ function _setPrototypeOf(o, p) {
139
+ _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
140
+ o.__proto__ = p;
141
+ return o;
142
+ };
143
+
144
+ return _setPrototypeOf(o, p);
145
+ }
146
+
147
+ function _inherits(subClass, superClass) {
148
+ if (typeof superClass !== "function" && superClass !== null) {
149
+ throw new TypeError("Super expression must either be null or a function");
150
+ }
151
+
152
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
153
+ constructor: {
154
+ value: subClass,
155
+ writable: true,
156
+ configurable: true
157
+ }
158
+ });
159
+ if (superClass) _setPrototypeOf(subClass, superClass);
160
+ }
161
+
63
162
  /* global Map:readonly, Set:readonly, ArrayBuffer:readonly */
64
163
 
65
164
  var hasElementType = typeof Element !== 'undefined';
@@ -49,8 +49,7 @@ import 'react-bootstrap';
49
49
  import './iconBase-602d52fe.js';
50
50
  import './index.esm-29e48d38.js';
51
51
  import ArticleSeriesListing from './ArticleSeriesListing.js';
52
- import { g as getSerializers } from './index-ea86ff20.js';
53
- import './util-7700fc59.js';
52
+ import { g as getSerializers } from './index-fb819516.js';
54
53
  import './brightcove-react-player-loader.es-83f53e4e.js';
55
54
  import 'next/head';
56
55
  import 'react-share';
@@ -44,8 +44,7 @@ import './GroupDeck.js';
44
44
  import 'react-bootstrap';
45
45
  import './iconBase-602d52fe.js';
46
46
  import './index.esm-29e48d38.js';
47
- import { g as getSerializers } from './index-ea86ff20.js';
48
- import './util-7700fc59.js';
47
+ import { g as getSerializers } from './index-fb819516.js';
49
48
  import './brightcove-react-player-loader.es-83f53e4e.js';
50
49
  import 'next/head';
51
50
  import 'react-share';
@@ -46,8 +46,7 @@ import 'react-bootstrap';
46
46
  import './iconBase-602d52fe.js';
47
47
  import { I as IoIosArrowForward } from './index.esm-29e48d38.js';
48
48
  import ArticleCarousel from './ArticleCarousel.js';
49
- import { g as getSerializers } from './index-ea86ff20.js';
50
- import './util-7700fc59.js';
49
+ import { g as getSerializers } from './index-fb819516.js';
51
50
  import './brightcove-react-player-loader.es-83f53e4e.js';
52
51
  import 'next/head';
53
52
  import 'react-share';
@@ -54,8 +54,7 @@ import './timeDifferenceCalc.js';
54
54
  import QueueDeckExpanded from './QueueDeckExpanded.js';
55
55
  import './iconBase-602d52fe.js';
56
56
  import './index.esm-29e48d38.js';
57
- import { g as getSerializers } from './index-ea86ff20.js';
58
- import './util-7700fc59.js';
57
+ import { g as getSerializers } from './index-fb819516.js';
59
58
  import './brightcove-react-player-loader.es-83f53e4e.js';
60
59
  import 'next/head';
61
60
  import 'react-share';
@@ -51,8 +51,7 @@ import './GroupDeck.js';
51
51
  import 'react-bootstrap';
52
52
  import './iconBase-602d52fe.js';
53
53
  import './index.esm-29e48d38.js';
54
- import { g as getSerializers } from './index-ea86ff20.js';
55
- import './util-7700fc59.js';
54
+ import { g as getSerializers } from './index-fb819516.js';
56
55
  import './brightcove-react-player-loader.es-83f53e4e.js';
57
56
  import 'next/head';
58
57
  import 'react-share';