@ably/ui 8.9.0 → 9.0.0
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/README.md +1 -1
- package/core/Code/component.css +3 -3
- package/core/Code/component.js +1 -1
- package/core/Code.jsx +353 -7273
- package/core/CompanyAutocomplete/component.js +1 -1
- package/core/ConnectStateWrapper.jsx +13 -4
- package/core/ContactFooter.jsx +13 -119
- package/core/CookieMessage.jsx +21 -293
- package/core/CustomerLogos.jsx +9 -114
- package/core/DropdownMenu/component.js +1 -0
- package/core/DropdownMenu.jsx +317 -0
- package/core/FeaturedLink.jsx +10 -116
- package/core/Flash.jsx +29 -1483
- package/core/Footer.jsx +17 -123
- package/core/Icon.jsx +9 -114
- package/core/Loader.jsx +9 -114
- package/core/Logo.jsx +13 -118
- package/core/Meganav/component.js +1 -2
- package/core/Meganav.jsx +2844 -10177
- package/core/MeganavBlogPostsList/component.js +1 -1
- package/core/MeganavBlogPostsList.jsx +11 -118
- package/core/MeganavContentCompany.jsx +31 -124
- package/core/MeganavContentDevelopers.jsx +23 -117
- package/core/MeganavContentPlatform.jsx +11 -118
- package/core/MeganavContentUseCases.jsx +11 -117
- package/core/MeganavControl.jsx +10 -116
- package/core/MeganavControlMobileDropdown/component.js +1 -1
- package/core/MeganavControlMobileDropdown.jsx +10 -116
- package/core/MeganavControlMobilePanelClose.jsx +10 -116
- package/core/MeganavControlMobilePanelOpen.jsx +10 -116
- package/core/MeganavItemsDesktop.jsx +13 -121
- package/core/MeganavItemsMobile.jsx +18 -132
- package/core/MeganavItemsSignedIn.jsx +16 -129
- package/core/MeganavSearch.jsx +13 -123
- package/core/MeganavSearchAutocomplete/component.js +1 -2
- package/core/MeganavSearchPanel.jsx +12 -121
- package/core/MeganavSearchSuggestions.jsx +11 -118
- package/core/Notice/component.js +1 -2
- package/core/Notice.jsx +62 -2136
- package/core/SignOutLink.jsx +9 -114
- package/core/Slider/component.js +1 -1
- package/core/Slider.jsx +25 -582
- package/core/Uptime.jsx +15 -118
- package/core/scripts.js +1 -1
- package/core/sprites.svg +7 -0
- package/package.json +4 -4
- package/src/core/Code/component.css +1 -67
- package/src/core/Code/component.js +11 -46
- package/src/core/Code/component.jsx +7 -3
- package/src/core/DropdownMenu/component.js +0 -0
- package/src/core/DropdownMenu/component.jsx +114 -0
- package/src/core/FeatureFooter/component.html.erb +1 -1
- package/src/core/MeganavContentDevelopers/component.html.erb +9 -0
- package/src/core/MeganavContentDevelopers/component.jsx +9 -0
- package/src/core/MeganavContentUseCases/component.html.erb +1 -1
- package/src/core/MeganavContentUseCases/component.jsx +1 -1
- package/src/core/MeganavSearchSuggestions/component.html.erb +1 -1
- package/src/core/icons/icon-display-integrations-col.svg +8 -0
- package/src/core/utils/syntax-highlighter-registry.js +61 -0
- package/src/core/utils/syntax-highlighter.css +69 -0
- package/src/core/utils/syntax-highlighter.js +98 -0
- package/core/Meganav/component.js.LICENSE.txt +0 -7
- package/core/MeganavSearchAutocomplete/component.js.LICENSE.txt +0 -7
- package/core/Notice/component.js.LICENSE.txt +0 -9
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
-
module.exports = factory(require("react"));
|
|
3
|
+
module.exports = factory(require("react"), require("prop-types"));
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define([], factory);
|
|
5
|
+
define([, ], factory);
|
|
6
6
|
else {
|
|
7
|
-
var a = typeof exports === 'object' ? factory(require("react")) : factory(root[undefined]);
|
|
7
|
+
var a = typeof exports === 'object' ? factory(require("react"), require("prop-types")) : factory(root[undefined], root[undefined]);
|
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
9
9
|
}
|
|
10
|
-
})(this, function(__WEBPACK_EXTERNAL_MODULE__9281__) {
|
|
10
|
+
})(this, function(__WEBPACK_EXTERNAL_MODULE__9281__, __WEBPACK_EXTERNAL_MODULE__3474__) {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
|
+
/******/ "use strict";
|
|
12
13
|
/******/ var __webpack_modules__ = ({
|
|
13
14
|
|
|
14
15
|
/***/ 9008:
|
|
15
16
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16
17
|
|
|
17
|
-
"use strict";
|
|
18
18
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19
19
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
20
20
|
/* harmony export */ });
|
|
21
21
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
22
22
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
23
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
23
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
24
24
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
25
25
|
var _excluded = ["name", "size", "color", "additionalCSS"];
|
|
26
26
|
|
|
@@ -67,13 +67,12 @@ Icon.propTypes = {
|
|
|
67
67
|
/***/ 140:
|
|
68
68
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
69
69
|
|
|
70
|
-
"use strict";
|
|
71
70
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
72
71
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
73
72
|
/* harmony export */ });
|
|
74
73
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
75
74
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
76
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
75
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
77
76
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
78
77
|
/* harmony import */ var _Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9008);
|
|
79
78
|
|
|
@@ -112,129 +111,23 @@ MeganavControl.propTypes = {
|
|
|
112
111
|
|
|
113
112
|
/***/ }),
|
|
114
113
|
|
|
115
|
-
/***/
|
|
116
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
117
|
-
|
|
118
|
-
"use strict";
|
|
119
|
-
/**
|
|
120
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
121
|
-
*
|
|
122
|
-
* This source code is licensed under the MIT license found in the
|
|
123
|
-
* LICENSE file in the root directory of this source tree.
|
|
124
|
-
*/
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
var ReactPropTypesSecret = __webpack_require__(414);
|
|
129
|
-
|
|
130
|
-
function emptyFunction() {}
|
|
131
|
-
function emptyFunctionWithReset() {}
|
|
132
|
-
emptyFunctionWithReset.resetWarningCache = emptyFunction;
|
|
133
|
-
|
|
134
|
-
module.exports = function() {
|
|
135
|
-
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
136
|
-
if (secret === ReactPropTypesSecret) {
|
|
137
|
-
// It is still safe when called from React.
|
|
138
|
-
return;
|
|
139
|
-
}
|
|
140
|
-
var err = new Error(
|
|
141
|
-
'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
|
|
142
|
-
'Use PropTypes.checkPropTypes() to call them. ' +
|
|
143
|
-
'Read more at http://fb.me/use-check-prop-types'
|
|
144
|
-
);
|
|
145
|
-
err.name = 'Invariant Violation';
|
|
146
|
-
throw err;
|
|
147
|
-
};
|
|
148
|
-
shim.isRequired = shim;
|
|
149
|
-
function getShim() {
|
|
150
|
-
return shim;
|
|
151
|
-
};
|
|
152
|
-
// Important!
|
|
153
|
-
// Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
|
|
154
|
-
var ReactPropTypes = {
|
|
155
|
-
array: shim,
|
|
156
|
-
bool: shim,
|
|
157
|
-
func: shim,
|
|
158
|
-
number: shim,
|
|
159
|
-
object: shim,
|
|
160
|
-
string: shim,
|
|
161
|
-
symbol: shim,
|
|
162
|
-
|
|
163
|
-
any: shim,
|
|
164
|
-
arrayOf: getShim,
|
|
165
|
-
element: shim,
|
|
166
|
-
elementType: shim,
|
|
167
|
-
instanceOf: getShim,
|
|
168
|
-
node: shim,
|
|
169
|
-
objectOf: getShim,
|
|
170
|
-
oneOf: getShim,
|
|
171
|
-
oneOfType: getShim,
|
|
172
|
-
shape: getShim,
|
|
173
|
-
exact: getShim,
|
|
174
|
-
|
|
175
|
-
checkPropTypes: emptyFunctionWithReset,
|
|
176
|
-
resetWarningCache: emptyFunction
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
ReactPropTypes.PropTypes = ReactPropTypes;
|
|
180
|
-
|
|
181
|
-
return ReactPropTypes;
|
|
182
|
-
};
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
/***/ }),
|
|
186
|
-
|
|
187
|
-
/***/ 5697:
|
|
188
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
189
|
-
|
|
190
|
-
/**
|
|
191
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
192
|
-
*
|
|
193
|
-
* This source code is licensed under the MIT license found in the
|
|
194
|
-
* LICENSE file in the root directory of this source tree.
|
|
195
|
-
*/
|
|
196
|
-
|
|
197
|
-
if (false) { var throwOnDirectAccess, ReactIs; } else {
|
|
198
|
-
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
199
|
-
// http://fb.me/prop-types-in-prod
|
|
200
|
-
module.exports = __webpack_require__(2703)();
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
/***/ }),
|
|
205
|
-
|
|
206
|
-
/***/ 414:
|
|
114
|
+
/***/ 3379:
|
|
207
115
|
/***/ ((module) => {
|
|
208
116
|
|
|
209
|
-
"
|
|
210
|
-
/**
|
|
211
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
212
|
-
*
|
|
213
|
-
* This source code is licensed under the MIT license found in the
|
|
214
|
-
* LICENSE file in the root directory of this source tree.
|
|
215
|
-
*/
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
220
|
-
|
|
221
|
-
module.exports = ReactPropTypesSecret;
|
|
222
|
-
|
|
117
|
+
module.exports = JSON.parse('{"h":[{"label":"Platform","shortLabel":"Platform","id":"platform-panel","component":"MeganavContentPlatform"},{"label":"Use Cases & Solutions","shortLabel":"Use Cases","id":"use-cases-panel","component":"MeganavContentUseCases"},{"label":"Company","shortLabel":"Company","id":"company-panel","component":"MeganavContentCompany"},{"label":"Developers","shortLabel":"Developers","id":"developers-panel","component":"MeganavContentDevelopers"}]}');
|
|
223
118
|
|
|
224
119
|
/***/ }),
|
|
225
120
|
|
|
226
|
-
/***/
|
|
121
|
+
/***/ 3474:
|
|
227
122
|
/***/ ((module) => {
|
|
228
123
|
|
|
229
|
-
|
|
230
|
-
module.exports = JSON.parse('{"h":[{"label":"Platform","shortLabel":"Platform","id":"platform-panel","component":"MeganavContentPlatform"},{"label":"Use Cases & Solutions","shortLabel":"Use Cases","id":"use-cases-panel","component":"MeganavContentUseCases"},{"label":"Company","shortLabel":"Company","id":"company-panel","component":"MeganavContentCompany"},{"label":"Developers","shortLabel":"Developers","id":"developers-panel","component":"MeganavContentDevelopers"}]}');
|
|
124
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__3474__;
|
|
231
125
|
|
|
232
126
|
/***/ }),
|
|
233
127
|
|
|
234
128
|
/***/ 9281:
|
|
235
129
|
/***/ ((module) => {
|
|
236
130
|
|
|
237
|
-
"use strict";
|
|
238
131
|
module.exports = __WEBPACK_EXTERNAL_MODULE__9281__;
|
|
239
132
|
|
|
240
133
|
/***/ })
|
|
@@ -308,16 +201,15 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__9281__;
|
|
|
308
201
|
/******/
|
|
309
202
|
/************************************************************************/
|
|
310
203
|
var __webpack_exports__ = {};
|
|
311
|
-
// This entry need to be wrapped in an IIFE because it need to be in
|
|
204
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
312
205
|
(() => {
|
|
313
|
-
"use strict";
|
|
314
206
|
__webpack_require__.r(__webpack_exports__);
|
|
315
207
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
316
208
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
317
209
|
/* harmony export */ });
|
|
318
210
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
319
211
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
320
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
212
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
321
213
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
322
214
|
/* harmony import */ var _Meganav_component_json__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(3379);
|
|
323
215
|
/* harmony import */ var _MeganavControl_component_jsx__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(140);
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
-
module.exports = factory(require("react"));
|
|
3
|
+
module.exports = factory(require("react"), require("prop-types"));
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define([], factory);
|
|
5
|
+
define([, ], factory);
|
|
6
6
|
else {
|
|
7
|
-
var a = typeof exports === 'object' ? factory(require("react")) : factory(root[undefined]);
|
|
7
|
+
var a = typeof exports === 'object' ? factory(require("react"), require("prop-types")) : factory(root[undefined], root[undefined]);
|
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
9
9
|
}
|
|
10
|
-
})(this, function(__WEBPACK_EXTERNAL_MODULE__9281__) {
|
|
10
|
+
})(this, function(__WEBPACK_EXTERNAL_MODULE__9281__, __WEBPACK_EXTERNAL_MODULE__3474__) {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
|
+
/******/ "use strict";
|
|
12
13
|
/******/ var __webpack_modules__ = ({
|
|
13
14
|
|
|
14
15
|
/***/ 5751:
|
|
15
16
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16
17
|
|
|
17
|
-
"use strict";
|
|
18
18
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19
19
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
20
20
|
/* harmony export */ });
|
|
21
21
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
22
22
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
23
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
23
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
24
24
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
25
25
|
/* harmony import */ var _Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9008);
|
|
26
26
|
|
|
@@ -64,13 +64,12 @@ FeaturedLink.propTypes = {
|
|
|
64
64
|
/***/ 9008:
|
|
65
65
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
66
66
|
|
|
67
|
-
"use strict";
|
|
68
67
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
69
68
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
70
69
|
/* harmony export */ });
|
|
71
70
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
72
71
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
73
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
72
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
74
73
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
75
74
|
var _excluded = ["name", "size", "color", "additionalCSS"];
|
|
76
75
|
|
|
@@ -117,13 +116,12 @@ Icon.propTypes = {
|
|
|
117
116
|
/***/ 8746:
|
|
118
117
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
119
118
|
|
|
120
|
-
"use strict";
|
|
121
119
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
122
120
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
123
121
|
/* harmony export */ });
|
|
124
122
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
125
123
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
126
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
124
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
127
125
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
128
126
|
/* harmony import */ var _Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9008);
|
|
129
127
|
|
|
@@ -163,13 +161,12 @@ MeganavControlMobileDropdown.propTypes = {
|
|
|
163
161
|
/***/ 5598:
|
|
164
162
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
165
163
|
|
|
166
|
-
"use strict";
|
|
167
164
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
168
165
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
169
166
|
/* harmony export */ });
|
|
170
167
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
171
168
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
172
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
169
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
173
170
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
174
171
|
/* harmony import */ var _Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9008);
|
|
175
172
|
|
|
@@ -210,13 +207,12 @@ MeganavControlMobilePanelClose.propTypes = {
|
|
|
210
207
|
/***/ 7806:
|
|
211
208
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
212
209
|
|
|
213
|
-
"use strict";
|
|
214
210
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
215
211
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
216
212
|
/* harmony export */ });
|
|
217
213
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
218
214
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
219
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
215
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
220
216
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
221
217
|
/* harmony import */ var _Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9008);
|
|
222
218
|
|
|
@@ -252,7 +248,6 @@ MeganavControlMobilePanelOpen.propTypes = {
|
|
|
252
248
|
/***/ 3833:
|
|
253
249
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
254
250
|
|
|
255
|
-
"use strict";
|
|
256
251
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
257
252
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
258
253
|
/* harmony export */ });
|
|
@@ -277,13 +272,12 @@ var MeganavSearchAutocomplete = function MeganavSearchAutocomplete() {
|
|
|
277
272
|
/***/ 8926:
|
|
278
273
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
279
274
|
|
|
280
|
-
"use strict";
|
|
281
275
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
282
276
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
283
277
|
/* harmony export */ });
|
|
284
278
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
285
279
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
286
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
280
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
287
281
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
288
282
|
/* harmony import */ var _FeaturedLink_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(5751);
|
|
289
283
|
|
|
@@ -336,13 +330,12 @@ MeganavSearchSuggestions.propTypes = {
|
|
|
336
330
|
/***/ 1866:
|
|
337
331
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
338
332
|
|
|
339
|
-
"use strict";
|
|
340
333
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
341
334
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
342
335
|
/* harmony export */ });
|
|
343
336
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
344
337
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
345
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
338
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
346
339
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
347
340
|
|
|
348
341
|
|
|
@@ -391,129 +384,23 @@ SignOutLink.propTypes = {
|
|
|
391
384
|
|
|
392
385
|
/***/ }),
|
|
393
386
|
|
|
394
|
-
/***/
|
|
395
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
396
|
-
|
|
397
|
-
"use strict";
|
|
398
|
-
/**
|
|
399
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
400
|
-
*
|
|
401
|
-
* This source code is licensed under the MIT license found in the
|
|
402
|
-
* LICENSE file in the root directory of this source tree.
|
|
403
|
-
*/
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
var ReactPropTypesSecret = __webpack_require__(414);
|
|
408
|
-
|
|
409
|
-
function emptyFunction() {}
|
|
410
|
-
function emptyFunctionWithReset() {}
|
|
411
|
-
emptyFunctionWithReset.resetWarningCache = emptyFunction;
|
|
412
|
-
|
|
413
|
-
module.exports = function() {
|
|
414
|
-
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
415
|
-
if (secret === ReactPropTypesSecret) {
|
|
416
|
-
// It is still safe when called from React.
|
|
417
|
-
return;
|
|
418
|
-
}
|
|
419
|
-
var err = new Error(
|
|
420
|
-
'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
|
|
421
|
-
'Use PropTypes.checkPropTypes() to call them. ' +
|
|
422
|
-
'Read more at http://fb.me/use-check-prop-types'
|
|
423
|
-
);
|
|
424
|
-
err.name = 'Invariant Violation';
|
|
425
|
-
throw err;
|
|
426
|
-
};
|
|
427
|
-
shim.isRequired = shim;
|
|
428
|
-
function getShim() {
|
|
429
|
-
return shim;
|
|
430
|
-
};
|
|
431
|
-
// Important!
|
|
432
|
-
// Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
|
|
433
|
-
var ReactPropTypes = {
|
|
434
|
-
array: shim,
|
|
435
|
-
bool: shim,
|
|
436
|
-
func: shim,
|
|
437
|
-
number: shim,
|
|
438
|
-
object: shim,
|
|
439
|
-
string: shim,
|
|
440
|
-
symbol: shim,
|
|
441
|
-
|
|
442
|
-
any: shim,
|
|
443
|
-
arrayOf: getShim,
|
|
444
|
-
element: shim,
|
|
445
|
-
elementType: shim,
|
|
446
|
-
instanceOf: getShim,
|
|
447
|
-
node: shim,
|
|
448
|
-
objectOf: getShim,
|
|
449
|
-
oneOf: getShim,
|
|
450
|
-
oneOfType: getShim,
|
|
451
|
-
shape: getShim,
|
|
452
|
-
exact: getShim,
|
|
453
|
-
|
|
454
|
-
checkPropTypes: emptyFunctionWithReset,
|
|
455
|
-
resetWarningCache: emptyFunction
|
|
456
|
-
};
|
|
457
|
-
|
|
458
|
-
ReactPropTypes.PropTypes = ReactPropTypes;
|
|
459
|
-
|
|
460
|
-
return ReactPropTypes;
|
|
461
|
-
};
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
/***/ }),
|
|
465
|
-
|
|
466
|
-
/***/ 5697:
|
|
467
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
468
|
-
|
|
469
|
-
/**
|
|
470
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
471
|
-
*
|
|
472
|
-
* This source code is licensed under the MIT license found in the
|
|
473
|
-
* LICENSE file in the root directory of this source tree.
|
|
474
|
-
*/
|
|
475
|
-
|
|
476
|
-
if (false) { var throwOnDirectAccess, ReactIs; } else {
|
|
477
|
-
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
478
|
-
// http://fb.me/prop-types-in-prod
|
|
479
|
-
module.exports = __webpack_require__(2703)();
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
/***/ }),
|
|
484
|
-
|
|
485
|
-
/***/ 414:
|
|
387
|
+
/***/ 3379:
|
|
486
388
|
/***/ ((module) => {
|
|
487
389
|
|
|
488
|
-
"
|
|
489
|
-
/**
|
|
490
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
491
|
-
*
|
|
492
|
-
* This source code is licensed under the MIT license found in the
|
|
493
|
-
* LICENSE file in the root directory of this source tree.
|
|
494
|
-
*/
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
499
|
-
|
|
500
|
-
module.exports = ReactPropTypesSecret;
|
|
501
|
-
|
|
390
|
+
module.exports = JSON.parse('{"h":[{"label":"Platform","shortLabel":"Platform","id":"platform-panel","component":"MeganavContentPlatform"},{"label":"Use Cases & Solutions","shortLabel":"Use Cases","id":"use-cases-panel","component":"MeganavContentUseCases"},{"label":"Company","shortLabel":"Company","id":"company-panel","component":"MeganavContentCompany"},{"label":"Developers","shortLabel":"Developers","id":"developers-panel","component":"MeganavContentDevelopers"}]}');
|
|
502
391
|
|
|
503
392
|
/***/ }),
|
|
504
393
|
|
|
505
|
-
/***/
|
|
394
|
+
/***/ 3474:
|
|
506
395
|
/***/ ((module) => {
|
|
507
396
|
|
|
508
|
-
|
|
509
|
-
module.exports = JSON.parse('{"h":[{"label":"Platform","shortLabel":"Platform","id":"platform-panel","component":"MeganavContentPlatform"},{"label":"Use Cases & Solutions","shortLabel":"Use Cases","id":"use-cases-panel","component":"MeganavContentUseCases"},{"label":"Company","shortLabel":"Company","id":"company-panel","component":"MeganavContentCompany"},{"label":"Developers","shortLabel":"Developers","id":"developers-panel","component":"MeganavContentDevelopers"}]}');
|
|
397
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__3474__;
|
|
510
398
|
|
|
511
399
|
/***/ }),
|
|
512
400
|
|
|
513
401
|
/***/ 9281:
|
|
514
402
|
/***/ ((module) => {
|
|
515
403
|
|
|
516
|
-
"use strict";
|
|
517
404
|
module.exports = __WEBPACK_EXTERNAL_MODULE__9281__;
|
|
518
405
|
|
|
519
406
|
/***/ })
|
|
@@ -587,16 +474,15 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__9281__;
|
|
|
587
474
|
/******/
|
|
588
475
|
/************************************************************************/
|
|
589
476
|
var __webpack_exports__ = {};
|
|
590
|
-
// This entry need to be wrapped in an IIFE because it need to be in
|
|
477
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
591
478
|
(() => {
|
|
592
|
-
"use strict";
|
|
593
479
|
__webpack_require__.r(__webpack_exports__);
|
|
594
480
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
595
481
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
596
482
|
/* harmony export */ });
|
|
597
483
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9281);
|
|
598
484
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
599
|
-
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
485
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3474);
|
|
600
486
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
601
487
|
/* harmony import */ var _SignOutLink_component_jsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1866);
|
|
602
488
|
/* harmony import */ var _MeganavSearchSuggestions_component_jsx__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(8926);
|