PluginProbe
Elementor Website Builder – more than just a page builder / 3.17.2
Elementor Website Builder – more than just a page builder v3.17.2
4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 All 454 releases
← All changes | assets/js/admin-top-bar.js +1602 -972 4.3.0 → 3.17.2 View file →
@@ -1,1009 +1,1639 @@
1 -(function(react, react_dom, _wordpress_i18n) {
1 +/*! elementor - v3.17.0 - 01-11-2023 */
2 +/******/ (() => { // webpackBootstrap
3 +/******/ var __webpack_modules__ = ({
2 4
3 -//#region \0rolldown/runtime.js
4 - var __create = Object.create;
5 - var __defProp = Object.defineProperty;
6 - var __name = (target, value) => __defProp(target, "name", {
7 - value,
8 - configurable: true
9 - });
10 - var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
11 - var __getOwnPropNames = Object.getOwnPropertyNames;
12 - var __getProtoOf = Object.getPrototypeOf;
13 - var __hasOwnProp = Object.prototype.hasOwnProperty;
14 - var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
15 - var __copyProps = (to, from, except, desc) => {
16 - if (from && typeof from === "object" || typeof from === "function") {
17 - for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
18 - key = keys[i];
19 - if (!__hasOwnProp.call(to, key) && key !== except) {
20 - __defProp(to, key, {
21 - get: ((k) => from[k]).bind(null, key),
22 - enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
23 - });
24 - }
25 - }
5 +/***/ "../core/common/assets/js/utils/environment.js":
6 +/*!*****************************************************!*\
7 + !*** ../core/common/assets/js/utils/environment.js ***!
8 + \*****************************************************/
9 +/***/ ((__unused_webpack_module, exports) => {
10 +
11 +"use strict";
12 +
13 +
14 +Object.defineProperty(exports, "__esModule", ({
15 + value: true
16 +}));
17 +exports["default"] = void 0;
18 +var matchUserAgent = function matchUserAgent(UserAgentStr) {
19 + return userAgent.indexOf(UserAgentStr) >= 0;
20 + },
21 + userAgent = navigator.userAgent,
22 + // Solution influenced by https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser
23 +
24 + // Opera 8.0+
25 + isOpera = !!window.opr && !!opr.addons || !!window.opera || matchUserAgent(' OPR/'),
26 + // Firefox 1.0+
27 + isFirefox = matchUserAgent('Firefox'),
28 + // Safari 3.0+ "[object HTMLElementConstructor]"
29 + isSafari = /^((?!chrome|android).)*safari/i.test(userAgent) || /constructor/i.test(window.HTMLElement) || function (p) {
30 + return '[object SafariRemoteNotification]' === p.toString();
31 + }(!window.safari || typeof safari !== 'undefined' && safari.pushNotification),
32 + // Internet Explorer 6-11
33 + isIE = /Trident|MSIE/.test(userAgent) && ( /* @cc_on!@*/ false || !!document.documentMode),
34 + // Edge 20+
35 + isEdge = !isIE && !!window.StyleMedia || matchUserAgent('Edg'),
36 + // Google Chrome (Not accurate)
37 + isChrome = !!window.chrome && matchUserAgent('Chrome') && !(isEdge || isOpera),
38 + // Blink engine
39 + isBlink = matchUserAgent('Chrome') && !!window.CSS,
40 + // Apple Webkit engine
41 + isAppleWebkit = matchUserAgent('AppleWebKit') && !isBlink,
42 + isTouchDevice = 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0,
43 + environment = {
44 + isTouchDevice: isTouchDevice,
45 + appleWebkit: isAppleWebkit,
46 + blink: isBlink,
47 + chrome: isChrome,
48 + edge: isEdge,
49 + firefox: isFirefox,
50 + ie: isIE,
51 + mac: matchUserAgent('Macintosh'),
52 + opera: isOpera,
53 + safari: isSafari,
54 + webkit: matchUserAgent('AppleWebKit')
55 + };
56 +var _default = environment;
57 +exports["default"] = _default;
58 +
59 +/***/ }),
60 +
61 +/***/ "../modules/admin-top-bar/assets/js/admin-top-bar.js":
62 +/*!***********************************************************!*\
63 + !*** ../modules/admin-top-bar/assets/js/admin-top-bar.js ***!
64 + \***********************************************************/
65 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
66 +
67 +"use strict";
68 +/* provided dependency */ var __ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n")["__"];
69 +
70 +
71 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
72 +var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
73 +Object.defineProperty(exports, "__esModule", ({
74 + value: true
75 +}));
76 +exports["default"] = AdminTopBar;
77 +var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
78 +var _barButton = _interopRequireDefault(__webpack_require__(/*! ./components/bar-button/bar-button */ "../modules/admin-top-bar/assets/js/components/bar-button/bar-button.js"));
79 +var _barHeading = _interopRequireDefault(__webpack_require__(/*! ./components/bar-heading/bar-heading */ "../modules/admin-top-bar/assets/js/components/bar-heading/bar-heading.js"));
80 +var _connectionButton = _interopRequireDefault(__webpack_require__(/*! ./components/connection-button/connection-button */ "../modules/admin-top-bar/assets/js/components/connection-button/connection-button.js"));
81 +var _usePageTitle = __webpack_require__(/*! ./hooks/use-page-title/use-page-title */ "../modules/admin-top-bar/assets/js/hooks/use-page-title/use-page-title.js");
82 +var _environment = _interopRequireDefault(__webpack_require__(/*! elementor-common/utils/environment */ "../core/common/assets/js/utils/environment.js"));
83 +function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
84 +function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
85 +function AdminTopBar() {
86 + var actionButtonsRef = (0, _react.useRef)();
87 +
88 + // Handle Top Bar visibility on initiation: Indicate that the admin top bar is visible and the page content needs to push down below the admin top bar for visibility.
89 + (0, _react.useEffect)(function () {
90 + var adminTopBarElement = document.querySelector('#e-admin-top-bar-root');
91 + adminTopBarElement.classList.add('e-admin-top-bar--active');
92 + }, []);
93 +
94 + // Handle the page title visibility in admin top bar.
95 + var pageTitleText = (0, _usePageTitle.usePageTitle)();
96 +
97 + // Handle the action buttons visibility in admin top bar on initiation.
98 + (0, _react.useEffect)(function () {
99 + var actionButtonElements = document.querySelectorAll('.page-title-action');
100 + actionButtonElements.forEach(function (actionButtonElement) {
101 + actionButtonsRef.current.appendChild(actionButtonElement);
102 + });
103 + }, []);
104 + var finderAction = function finderAction() {
105 + $e.route('finder');
106 + };
107 + var controlSign = _environment.default.mac ? "\u2318" : '^';
108 + var finderTooltipText = __('Search or do anything in Elementor', 'elementor') + " ".concat(controlSign, "+E");
109 + return /*#__PURE__*/_react.default.createElement("div", {
110 + className: "e-admin-top-bar"
111 + }, /*#__PURE__*/_react.default.createElement("div", {
112 + className: "e-admin-top-bar__main-area"
113 + }, /*#__PURE__*/_react.default.createElement(_barHeading.default, null, pageTitleText), /*#__PURE__*/_react.default.createElement("div", {
114 + className: "e-admin-top-bar__main-area-buttons",
115 + ref: actionButtonsRef
116 + })), /*#__PURE__*/_react.default.createElement("div", {
117 + className: "e-admin-top-bar__secondary-area"
118 + }, /*#__PURE__*/_react.default.createElement("div", {
119 + className: "e-admin-top-bar__secondary-area-buttons"
120 + }, /*#__PURE__*/_react.default.createElement(_barButton.default, {
121 + href: window.elementorAdminTopBarConfig.apps_url,
122 + icon: "eicon-integration"
123 + }, __('Apps', 'elementor')), window.elementorAdminTopBarConfig.is_administrator ? /*#__PURE__*/_react.default.createElement(_barButton.default, {
124 + onClick: finderAction,
125 + dataInfo: finderTooltipText,
126 + icon: "eicon-search-bold"
127 + }, __('Finder', 'elementor')) : '', window.elementorCloudAdmin ? window.elementorCloudAdmin() : ''), /*#__PURE__*/_react.default.createElement(_connectionButton.default, null)));
128 +}
129 +
130 +/***/ }),
131 +
132 +/***/ "../modules/admin-top-bar/assets/js/components/bar-button/bar-button.js":
133 +/*!******************************************************************************!*\
134 + !*** ../modules/admin-top-bar/assets/js/components/bar-button/bar-button.js ***!
135 + \******************************************************************************/
136 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
137 +
138 +"use strict";
139 +/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
140 +
141 +
142 +var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
143 +Object.defineProperty(exports, "__esModule", ({
144 + value: true
145 +}));
146 +exports["default"] = BarButton;
147 +var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
148 +function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
149 +function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
150 +function BarButton(props) {
151 + (0, _react.useEffect)(function () {
152 + if (props.dataInfo) {
153 + jQuery('.e-admin-top-bar__bar-button[data-info]').tipsy({
154 + title: function title() {
155 + return this.getAttribute('data-info');
156 + },
157 + gravity: function gravity() {
158 + return 'n';
159 + },
160 + delayIn: 400,
161 + offset: 1
162 + });
163 + }
164 + }, []);
165 + return /*#__PURE__*/_react.default.createElement("a", {
166 + className: "e-admin-top-bar__bar-button",
167 + ref: props.buttonRef,
168 + onClick: props.onClick,
169 + "data-info": props.dataInfo,
170 + href: props.href,
171 + target: props.target
172 + }, /*#__PURE__*/_react.default.createElement("i", {
173 + className: "e-admin-top-bar__bar-button-icon ".concat(props.icon)
174 + }), /*#__PURE__*/_react.default.createElement("span", {
175 + className: "e-admin-top-bar__bar-button-title"
176 + }, props.children));
177 +}
178 +BarButton.propTypes = {
179 + children: PropTypes.any,
180 + dataInfo: PropTypes.string,
181 + icon: PropTypes.any,
182 + onClick: PropTypes.func,
183 + buttonRef: PropTypes.object,
184 + href: PropTypes.string,
185 + target: PropTypes.string
186 +};
187 +
188 +/***/ }),
189 +
190 +/***/ "../modules/admin-top-bar/assets/js/components/bar-heading/bar-heading.js":
191 +/*!********************************************************************************!*\
192 + !*** ../modules/admin-top-bar/assets/js/components/bar-heading/bar-heading.js ***!
193 + \********************************************************************************/
194 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
195 +
196 +"use strict";
197 +/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
198 +
199 +
200 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
201 +Object.defineProperty(exports, "__esModule", ({
202 + value: true
203 +}));
204 +exports["default"] = BarHeading;
205 +var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
206 +function BarHeading(props) {
207 + return /*#__PURE__*/_react.default.createElement("div", {
208 + className: "e-admin-top-bar__heading"
209 + }, /*#__PURE__*/_react.default.createElement("div", {
210 + className: "e-logo-wrapper"
211 + }, /*#__PURE__*/_react.default.createElement("i", {
212 + className: "eicon-elementor",
213 + "aria-hidden": "true"
214 + })), /*#__PURE__*/_react.default.createElement("span", {
215 + className: "e-admin-top-bar__heading-title"
216 + }, props.children));
217 +}
218 +BarHeading.propTypes = {
219 + children: PropTypes.any
220 +};
221 +
222 +/***/ }),
223 +
224 +/***/ "../modules/admin-top-bar/assets/js/components/connection-button/connection-button.js":
225 +/*!********************************************************************************************!*\
226 + !*** ../modules/admin-top-bar/assets/js/components/connection-button/connection-button.js ***!
227 + \********************************************************************************************/
228 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
229 +
230 +"use strict";
231 +/* provided dependency */ var __ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n")["__"];
232 +
233 +
234 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
235 +var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
236 +Object.defineProperty(exports, "__esModule", ({
237 + value: true
238 +}));
239 +exports["default"] = ConnectionButton;
240 +var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
241 +var _barButton = _interopRequireDefault(__webpack_require__(/*! ../bar-button/bar-button */ "../modules/admin-top-bar/assets/js/components/bar-button/bar-button.js"));
242 +function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
243 +function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
244 +function ConnectionButton() {
245 + var buttonRef = (0, _react.useRef)();
246 + var isUserConnected = elementorAdminTopBarConfig.is_user_connected;
247 + (0, _react.useEffect)(function () {
248 + if (!buttonRef.current || isUserConnected) {
249 + return;
250 + }
251 + jQuery(buttonRef.current).elementorConnect();
252 + }, []);
253 + var tooltipText = __('Connect your account to get access to Elementor\'s Template Library & more.', 'elementor'),
254 + connectUrl = elementorAdminTopBarConfig.connect_url,
255 + buttonText = __('Connect Account', 'elementor'),
256 + targetUrl = '_self';
257 + if (isUserConnected) {
258 + tooltipText = '';
259 + connectUrl = 'https://go.elementor.com/wp-dash-admin-bar-account/';
260 + buttonText = __('My Elementor', 'elementor');
261 + targetUrl = '_blank';
262 + }
263 + return /*#__PURE__*/_react.default.createElement(_barButton.default, {
264 + icon: "eicon-user-circle-o",
265 + buttonRef: buttonRef,
266 + dataInfo: tooltipText,
267 + href: connectUrl,
268 + target: targetUrl
269 + }, buttonText);
270 +}
271 +
272 +/***/ }),
273 +
274 +/***/ "../modules/admin-top-bar/assets/js/hooks/use-page-title/use-page-title.js":
275 +/*!*********************************************************************************!*\
276 + !*** ../modules/admin-top-bar/assets/js/hooks/use-page-title/use-page-title.js ***!
277 + \*********************************************************************************/
278 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
279 +
280 +"use strict";
281 +
282 +
283 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
284 +Object.defineProperty(exports, "__esModule", ({
285 + value: true
286 +}));
287 +exports.usePageTitle = void 0;
288 +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js"));
289 +var _react = __webpack_require__(/*! react */ "react");
290 +var usePageTitle = function usePageTitle() {
291 + var _useState = (0, _react.useState)('Elementor'),
292 + _useState2 = (0, _slicedToArray2.default)(_useState, 2),
293 + pageTitle = _useState2[0],
294 + setPageTitle = _useState2[1];
295 + (0, _react.useEffect)(function () {
296 + var pageTitleElement = document.querySelector('.wp-heading-inline');
297 + if (!pageTitleElement) {
298 + return;
299 + }
300 + setPageTitle(pageTitleElement.innerText);
301 + }, []);
302 + return pageTitle;
303 +};
304 +exports.usePageTitle = usePageTitle;
305 +
306 +/***/ }),
307 +
308 +/***/ "../node_modules/object-assign/index.js":
309 +/*!**********************************************!*\
310 + !*** ../node_modules/object-assign/index.js ***!
311 + \**********************************************/
312 +/***/ ((module) => {
313 +
314 +"use strict";
315 +/*
316 +object-assign
317 +(c) Sindre Sorhus
318 +@license MIT
319 +*/
320 +
321 +
322 +/* eslint-disable no-unused-vars */
323 +var getOwnPropertySymbols = Object.getOwnPropertySymbols;
324 +var hasOwnProperty = Object.prototype.hasOwnProperty;
325 +var propIsEnumerable = Object.prototype.propertyIsEnumerable;
326 +
327 +function toObject(val) {
328 + if (val === null || val === undefined) {
329 + throw new TypeError('Object.assign cannot be called with null or undefined');
330 + }
331 +
332 + return Object(val);
333 +}
334 +
335 +function shouldUseNative() {
336 + try {
337 + if (!Object.assign) {
338 + return false;
26 339 }
27 - return to;
28 - };
29 - var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
30 - value: mod,
31 - enumerable: true
32 - }) : target, mod));
33 340
34 -//#endregion
35 -react = __toESM(react);
36 -react_dom = __toESM(react_dom);
341 + // Detect buggy property enumeration order in older V8 versions.
37 342
38 -//#region node_modules/react-dom/client.js
39 - var require_client = /* @__PURE__ */ __commonJSMin(((exports) => {
40 - var m = (globalThis.ReactDOM);
41 - var i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
42 - exports.createRoot = function(c, o) {
43 - i.usingClientEntryPoint = true;
44 - try {
45 - return m.createRoot(c, o);
46 - } finally {
47 - i.usingClientEntryPoint = false;
48 - }
49 - };
50 - }));
343 + // https://bugs.chromium.org/p/v8/issues/detail?id=4118
344 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
345 + test1[5] = 'de';
346 + if (Object.getOwnPropertyNames(test1)[0] === '5') {
347 + return false;
348 + }
51 349
52 -//#endregion
53 -//#region assets/dev/js/utils/react.js
54 - var import_client = require_client();
55 - /**
56 - * Support conditional rendering of a React App to the DOM, based on the React version.
57 - * We use `createRoot` when available, but fallback to `ReactDOM.render` for older versions.
58 - *
59 - * @param {Promise.resolve(React).ReactElement} app The app to render.
60 - * @param {HTMLElement} domElement The DOM element to render the app into.
61 - *
62 - * @return {{ unmount: () => void }} The unmount function.
63 - */
64 - function render(app, domElement) {
65 - var unmountFunction;
66 - try {
67 - var root = (0, import_client.createRoot)(domElement);
68 - root.render(app);
69 - unmountFunction = function unmountFunction() {
70 - root.unmount();
71 - };
72 - } catch (e) {
73 - react_dom.render(app, domElement);
74 - unmountFunction = function unmountFunction() {
75 - react_dom.unmountComponentAtNode(domElement);
76 - };
350 + // https://bugs.chromium.org/p/v8/issues/detail?id=3056
351 + var test2 = {};
352 + for (var i = 0; i < 10; i++) {
353 + test2['_' + String.fromCharCode(i)] = i;
77 354 }
78 - return { unmount: unmountFunction };
355 + var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
356 + return test2[n];
357 + });
358 + if (order2.join('') !== '0123456789') {
359 + return false;
360 + }
361 +
362 + // https://bugs.chromium.org/p/v8/issues/detail?id=3056
363 + var test3 = {};
364 + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
365 + test3[letter] = letter;
366 + });
367 + if (Object.keys(Object.assign({}, test3)).join('') !==
368 + 'abcdefghijklmnopqrst') {
369 + return false;
370 + }
371 +
372 + return true;
373 + } catch (err) {
374 + // We don't expect any of the above to throw, but better to be safe.
375 + return false;
79 376 }
80 - var react_default = { render };
377 +}
81 378
82 -//#endregion
83 -//#region node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js
84 -/** @license React v16.13.1
85 - * react-is.development.js
86 - *
87 - * Copyright (c) Facebook, Inc. and its affiliates.
88 - *
89 - * This source code is licensed under the MIT license found in the
90 - * LICENSE file in the root directory of this source tree.
91 - */
92 - var require_react_is_development = /* @__PURE__ */ __commonJSMin(((exports) => {
93 - (function() {
94 - "use strict";
95 - var hasSymbol = typeof Symbol === "function" && Symbol.for;
96 - var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103;
97 - var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106;
98 - var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107;
99 - var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for("react.strict_mode") : 60108;
100 - var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for("react.profiler") : 60114;
101 - var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for("react.provider") : 60109;
102 - var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for("react.context") : 60110;
103 - var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for("react.async_mode") : 60111;
104 - var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for("react.concurrent_mode") : 60111;
105 - var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for("react.forward_ref") : 60112;
106 - var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for("react.suspense") : 60113;
107 - var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for("react.suspense_list") : 60120;
108 - var REACT_MEMO_TYPE = hasSymbol ? Symbol.for("react.memo") : 60115;
109 - var REACT_LAZY_TYPE = hasSymbol ? Symbol.for("react.lazy") : 60116;
110 - var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for("react.block") : 60121;
111 - var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for("react.fundamental") : 60117;
112 - var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for("react.responder") : 60118;
113 - var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for("react.scope") : 60119;
114 - function isValidElementType(type) {
115 - return typeof type === "string" || typeof type === "function" || type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === "object" && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
116 - }
117 - function typeOf(object) {
118 - if (typeof object === "object" && object !== null) {
119 - var $$typeof = object.$$typeof;
120 - switch ($$typeof) {
121 - case REACT_ELEMENT_TYPE:
122 - var type = object.type;
123 - switch (type) {
124 - case REACT_ASYNC_MODE_TYPE:
125 - case REACT_CONCURRENT_MODE_TYPE:
126 - case REACT_FRAGMENT_TYPE:
127 - case REACT_PROFILER_TYPE:
128 - case REACT_STRICT_MODE_TYPE:
129 - case REACT_SUSPENSE_TYPE: return type;
130 - default:
131 - var $$typeofType = type && type.$$typeof;
132 - switch ($$typeofType) {
133 - case REACT_CONTEXT_TYPE:
134 - case REACT_FORWARD_REF_TYPE:
135 - case REACT_LAZY_TYPE:
136 - case REACT_MEMO_TYPE:
137 - case REACT_PROVIDER_TYPE: return $$typeofType;
138 - default: return $$typeof;
139 - }
140 - }
141 - case REACT_PORTAL_TYPE: return $$typeof;
142 - }
143 - }
144 - }
145 - var AsyncMode = REACT_ASYNC_MODE_TYPE;
146 - var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
147 - var ContextConsumer = REACT_CONTEXT_TYPE;
148 - var ContextProvider = REACT_PROVIDER_TYPE;
149 - var Element = REACT_ELEMENT_TYPE;
150 - var ForwardRef = REACT_FORWARD_REF_TYPE;
151 - var Fragment = REACT_FRAGMENT_TYPE;
152 - var Lazy = REACT_LAZY_TYPE;
153 - var Memo = REACT_MEMO_TYPE;
154 - var Portal = REACT_PORTAL_TYPE;
155 - var Profiler = REACT_PROFILER_TYPE;
156 - var StrictMode = REACT_STRICT_MODE_TYPE;
157 - var Suspense = REACT_SUSPENSE_TYPE;
158 - var hasWarnedAboutDeprecatedIsAsyncMode = false;
159 - function isAsyncMode(object) {
160 - if (!hasWarnedAboutDeprecatedIsAsyncMode) {
161 - hasWarnedAboutDeprecatedIsAsyncMode = true;
162 - console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
163 - }
164 - return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
165 - }
166 - function isConcurrentMode(object) {
167 - return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
168 - }
169 - function isContextConsumer(object) {
170 - return typeOf(object) === REACT_CONTEXT_TYPE;
171 - }
172 - function isContextProvider(object) {
173 - return typeOf(object) === REACT_PROVIDER_TYPE;
174 - }
175 - function isElement(object) {
176 - return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
177 - }
178 - function isForwardRef(object) {
179 - return typeOf(object) === REACT_FORWARD_REF_TYPE;
180 - }
181 - function isFragment(object) {
182 - return typeOf(object) === REACT_FRAGMENT_TYPE;
183 - }
184 - function isLazy(object) {
185 - return typeOf(object) === REACT_LAZY_TYPE;
186 - }
187 - function isMemo(object) {
188 - return typeOf(object) === REACT_MEMO_TYPE;
189 - }
190 - function isPortal(object) {
191 - return typeOf(object) === REACT_PORTAL_TYPE;
192 - }
193 - function isProfiler(object) {
194 - return typeOf(object) === REACT_PROFILER_TYPE;
195 - }
196 - function isStrictMode(object) {
197 - return typeOf(object) === REACT_STRICT_MODE_TYPE;
198 - }
199 - function isSuspense(object) {
200 - return typeOf(object) === REACT_SUSPENSE_TYPE;
201 - }
202 - exports.AsyncMode = AsyncMode;
203 - exports.ConcurrentMode = ConcurrentMode;
204 - exports.ContextConsumer = ContextConsumer;
205 - exports.ContextProvider = ContextProvider;
206 - exports.Element = Element;
207 - exports.ForwardRef = ForwardRef;
208 - exports.Fragment = Fragment;
209 - exports.Lazy = Lazy;
210 - exports.Memo = Memo;
211 - exports.Portal = Portal;
212 - exports.Profiler = Profiler;
213 - exports.StrictMode = StrictMode;
214 - exports.Suspense = Suspense;
215 - exports.isAsyncMode = isAsyncMode;
216 - exports.isConcurrentMode = isConcurrentMode;
217 - exports.isContextConsumer = isContextConsumer;
218 - exports.isContextProvider = isContextProvider;
219 - exports.isElement = isElement;
220 - exports.isForwardRef = isForwardRef;
221 - exports.isFragment = isFragment;
222 - exports.isLazy = isLazy;
223 - exports.isMemo = isMemo;
224 - exports.isPortal = isPortal;
225 - exports.isProfiler = isProfiler;
226 - exports.isStrictMode = isStrictMode;
227 - exports.isSuspense = isSuspense;
228 - exports.isValidElementType = isValidElementType;
229 - exports.typeOf = typeOf;
230 - })();
231 - }));
379 +module.exports = shouldUseNative() ? Object.assign : function (target, source) {
380 + var from;
381 + var to = toObject(target);
382 + var symbols;
232 383
233 -//#endregion
234 -//#region node_modules/prop-types/node_modules/react-is/index.js
235 - var require_react_is = /* @__PURE__ */ __commonJSMin(((exports, module) => {
236 - module.exports = require_react_is_development();
237 - }));
384 + for (var s = 1; s < arguments.length; s++) {
385 + from = Object(arguments[s]);
238 386
239 -//#endregion
240 -//#region node_modules/object-assign/index.js
241 -/*
242 - object-assign
243 - (c) Sindre Sorhus
244 - @license MIT
245 - */
246 - var require_object_assign = /* @__PURE__ */ __commonJSMin(((exports, module) => {
247 - var getOwnPropertySymbols = Object.getOwnPropertySymbols;
248 - var hasOwnProperty = Object.prototype.hasOwnProperty;
249 - var propIsEnumerable = Object.prototype.propertyIsEnumerable;
250 - function toObject(val) {
251 - if (val === null || val === void 0) throw new TypeError("Object.assign cannot be called with null or undefined");
252 - return Object(val);
253 - }
254 - function shouldUseNative() {
255 - try {
256 - if (!Object.assign) return false;
257 - var test1 = /* @__PURE__ */ new String("abc");
258 - test1[5] = "de";
259 - if (Object.getOwnPropertyNames(test1)[0] === "5") return false;
260 - var test2 = {};
261 - for (var i = 0; i < 10; i++) test2["_" + String.fromCharCode(i)] = i;
262 - if (Object.getOwnPropertyNames(test2).map(function(n) {
263 - return test2[n];
264 - }).join("") !== "0123456789") return false;
265 - var test3 = {};
266 - "abcdefghijklmnopqrst".split("").forEach(function(letter) {
267 - test3[letter] = letter;
268 - });
269 - if (Object.keys(Object.assign({}, test3)).join("") !== "abcdefghijklmnopqrst") return false;
270 - return true;
271 - } catch (err) {
272 - return false;
387 + for (var key in from) {
388 + if (hasOwnProperty.call(from, key)) {
389 + to[key] = from[key];
273 390 }
274 391 }
275 - module.exports = shouldUseNative() ? Object.assign : function(target, source) {
276 - var from;
277 - var to = toObject(target);
278 - var symbols;
279 - for (var s = 1; s < arguments.length; s++) {
280 - from = Object(arguments[s]);
281 - for (var key in from) if (hasOwnProperty.call(from, key)) to[key] = from[key];
282 - if (getOwnPropertySymbols) {
283 - symbols = getOwnPropertySymbols(from);
284 - for (var i = 0; i < symbols.length; i++) if (propIsEnumerable.call(from, symbols[i])) to[symbols[i]] = from[symbols[i]];
392 +
393 + if (getOwnPropertySymbols) {
394 + symbols = getOwnPropertySymbols(from);
395 + for (var i = 0; i < symbols.length; i++) {
396 + if (propIsEnumerable.call(from, symbols[i])) {
397 + to[symbols[i]] = from[symbols[i]];
285 398 }
286 399 }
287 - return to;
288 - };
289 - }));
400 + }
401 + }
290 402
291 -//#endregion
292 -//#region node_modules/prop-types/lib/ReactPropTypesSecret.js
403 + return to;
404 +};
405 +
406 +
407 +/***/ }),
408 +
409 +/***/ "../node_modules/prop-types/checkPropTypes.js":
410 +/*!****************************************************!*\
411 + !*** ../node_modules/prop-types/checkPropTypes.js ***!
412 + \****************************************************/
413 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
414 +
415 +"use strict";
293 416 /**
294 - * Copyright (c) 2013-present, Facebook, Inc.
295 - *
296 - * This source code is licensed under the MIT license found in the
297 - * LICENSE file in the root directory of this source tree.
298 - */
299 - var require_ReactPropTypesSecret = /* @__PURE__ */ __commonJSMin(((exports, module) => {
300 - var ReactPropTypesSecret = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
301 - module.exports = ReactPropTypesSecret;
302 - }));
417 + * Copyright (c) 2013-present, Facebook, Inc.
418 + *
419 + * This source code is licensed under the MIT license found in the
420 + * LICENSE file in the root directory of this source tree.
421 + */
303 422
304 -//#endregion
305 -//#region node_modules/prop-types/lib/has.js
306 - var require_has = /* @__PURE__ */ __commonJSMin(((exports, module) => {
307 - module.exports = Function.call.bind(Object.prototype.hasOwnProperty);
308 - }));
309 423
310 -//#endregion
311 -//#region node_modules/prop-types/checkPropTypes.js
424 +
425 +var printWarning = function() {};
426 +
427 +if (true) {
428 + var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ "../node_modules/prop-types/lib/ReactPropTypesSecret.js");
429 + var loggedTypeFailures = {};
430 + var has = __webpack_require__(/*! ./lib/has */ "../node_modules/prop-types/lib/has.js");
431 +
432 + printWarning = function(text) {
433 + var message = 'Warning: ' + text;
434 + if (typeof console !== 'undefined') {
435 + console.error(message);
436 + }
437 + try {
438 + // --- Welcome to debugging React ---
439 + // This error was thrown as a convenience so that you can use this stack
440 + // to find the callsite that caused this warning to fire.
441 + throw new Error(message);
442 + } catch (x) { /**/ }
443 + };
444 +}
445 +
312 446 /**
313 - * Copyright (c) 2013-present, Facebook, Inc.
314 - *
315 - * This source code is licensed under the MIT license found in the
316 - * LICENSE file in the root directory of this source tree.
317 - */
318 - var require_checkPropTypes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
319 - var printWarning = function() {};
320 - var ReactPropTypesSecret = require_ReactPropTypesSecret();
321 - var loggedTypeFailures = {};
322 - var has = require_has();
323 - printWarning = function(text) {
324 - var message = "Warning: " + text;
325 - if (typeof console !== "undefined") console.error(message);
326 - try {
327 - throw new Error(message);
328 - } catch (x) {}
329 - };
330 - /**
331 - * Assert that the values match with the type specs.
332 - * Error messages are memorized and will only be shown once.
333 - *
334 - * @param {object} typeSpecs Map of name to a ReactPropType
335 - * @param {object} values Runtime values that need to be type-checked
336 - * @param {string} location e.g. "prop", "context", "child context"
337 - * @param {string} componentName Name of the component for error messages.
338 - * @param {?Function} getStack Returns the component stack.
339 - * @private
340 - */
341 - function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
342 - for (var typeSpecName in typeSpecs) if (has(typeSpecs, typeSpecName)) {
343 - var error;
344 - try {
345 - if (typeof typeSpecs[typeSpecName] !== "function") {
346 - var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
347 - err.name = "Invariant Violation";
348 - throw err;
349 - }
350 - error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
351 - } catch (ex) {
352 - error = ex;
353 - }
354 - if (error && !(error instanceof Error)) printWarning((componentName || "React class") + ": type specification of " + location + " `" + typeSpecName + "` is invalid; the type checker function must return `null` or an `Error` but returned a " + typeof error + ". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).");
355 - if (error instanceof Error && !(error.message in loggedTypeFailures)) {
356 - loggedTypeFailures[error.message] = true;
357 - var stack = getStack ? getStack() : "";
358 - printWarning("Failed " + location + " type: " + error.message + (stack != null ? stack : ""));
359 - }
360 - }
361 - }
362 - /**
363 - * Resets warning cache when testing.
364 - *
365 - * @private
366 - */
367 - checkPropTypes.resetWarningCache = function() {
368 - loggedTypeFailures = {};
369 - };
370 - module.exports = checkPropTypes;
371 - }));
447 + * Assert that the values match with the type specs.
448 + * Error messages are memorized and will only be shown once.
449 + *
450 + * @param {object} typeSpecs Map of name to a ReactPropType
451 + * @param {object} values Runtime values that need to be type-checked
452 + * @param {string} location e.g. "prop", "context", "child context"
453 + * @param {string} componentName Name of the component for error messages.
454 + * @param {?Function} getStack Returns the component stack.
455 + * @private
456 + */
457 +function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
458 + if (true) {
459 + for (var typeSpecName in typeSpecs) {
460 + if (has(typeSpecs, typeSpecName)) {
461 + var error;
462 + // Prop type validation may throw. In case they do, we don't want to
463 + // fail the render phase where it didn't fail before. So we log it.
464 + // After these have been cleaned up, we'll let them throw.
465 + try {
466 + // This is intentionally an invariant that gets caught. It's the same
467 + // behavior as without this statement except with a better message.
468 + if (typeof typeSpecs[typeSpecName] !== 'function') {
469 + var err = Error(
470 + (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +
471 + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' +
472 + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.'
473 + );
474 + err.name = 'Invariant Violation';
475 + throw err;
476 + }
477 + error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
478 + } catch (ex) {
479 + error = ex;
480 + }
481 + if (error && !(error instanceof Error)) {
482 + printWarning(
483 + (componentName || 'React class') + ': type specification of ' +
484 + location + ' `' + typeSpecName + '` is invalid; the type checker ' +
485 + 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +
486 + 'You may have forgotten to pass an argument to the type checker ' +
487 + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +
488 + 'shape all require an argument).'
489 + );
490 + }
491 + if (error instanceof Error && !(error.message in loggedTypeFailures)) {
492 + // Only monitor this failure once because there tends to be a lot of the
493 + // same error.
494 + loggedTypeFailures[error.message] = true;
372 495
373 -//#endregion
374 -//#region node_modules/prop-types/factoryWithTypeCheckers.js
496 + var stack = getStack ? getStack() : '';
497 +
498 + printWarning(
499 + 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')
500 + );
501 + }
502 + }
503 + }
504 + }
505 +}
506 +
375 507 /**
376 - * Copyright (c) 2013-present, Facebook, Inc.
377 - *
378 - * This source code is licensed under the MIT license found in the
379 - * LICENSE file in the root directory of this source tree.
380 - */
381 - var require_factoryWithTypeCheckers = /* @__PURE__ */ __commonJSMin(((exports, module) => {
382 - var ReactIs = require_react_is();
383 - var assign = require_object_assign();
384 - var ReactPropTypesSecret = require_ReactPropTypesSecret();
385 - var has = require_has();
386 - var checkPropTypes = require_checkPropTypes();
387 - var printWarning = function() {};
388 - printWarning = function(text) {
389 - var message = "Warning: " + text;
390 - if (typeof console !== "undefined") console.error(message);
391 - try {
392 - throw new Error(message);
393 - } catch (x) {}
394 - };
395 - function emptyFunctionThatReturnsNull() {
396 - return null;
397 - }
398 - module.exports = function(isValidElement, throwOnDirectAccess) {
399 - var ITERATOR_SYMBOL = typeof Symbol === "function" && Symbol.iterator;
400 - var FAUX_ITERATOR_SYMBOL = "@@iterator";
401 - /**
402 - * Returns the iterator method function contained on the iterable object.
403 - *
404 - * Be sure to invoke the function with the iterable as context:
405 - *
406 - * var iteratorFn = getIteratorFn(myIterable);
407 - * if (iteratorFn) {
408 - * var iterator = iteratorFn.call(myIterable);
409 - * ...
410 - * }
411 - *
412 - * @param {?object} maybeIterable
413 - * @return {?function}
414 - */
415 - function getIteratorFn(maybeIterable) {
416 - var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
417 - if (typeof iteratorFn === "function") return iteratorFn;
418 - }
419 - /**
420 - * Collection of methods that allow declaration and validation of props that are
421 - * supplied to React components. Example usage:
422 - *
423 - * var Props = require('ReactPropTypes');
424 - * var MyArticle = React.createClass({
425 - * propTypes: {
426 - * // An optional string prop named "description".
427 - * description: Props.string,
428 - *
429 - * // A required enum prop named "category".
430 - * category: Props.oneOf(['News','Photos']).isRequired,
431 - *
432 - * // A prop named "dialog" that requires an instance of Dialog.
433 - * dialog: Props.instanceOf(Dialog).isRequired
434 - * },
435 - * render: function() { ... }
436 - * });
437 - *
438 - * A more formal specification of how these methods are used:
439 - *
440 - * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)
441 - * decl := ReactPropTypes.{type}(.isRequired)?
442 - *
443 - * Each and every declaration produces a function with the same signature. This
444 - * allows the creation of custom validation functions. For example:
445 - *
446 - * var MyLink = React.createClass({
447 - * propTypes: {
448 - * // An optional string or URI prop named "href".
449 - * href: function(props, propName, componentName) {
450 - * var propValue = props[propName];
451 - * if (propValue != null && typeof propValue !== 'string' &&
452 - * !(propValue instanceof URI)) {
453 - * return new Error(
454 - * 'Expected a string or an URI for ' + propName + ' in ' +
455 - * componentName
456 - * );
457 - * }
458 - * }
459 - * },
460 - * render: function() {...}
461 - * });
462 - *
463 - * @internal
464 - */
465 - var ANONYMOUS = "<<anonymous>>";
466 - var ReactPropTypes = {
467 - array: createPrimitiveTypeChecker("array"),
468 - bigint: createPrimitiveTypeChecker("bigint"),
469 - bool: createPrimitiveTypeChecker("boolean"),
470 - func: createPrimitiveTypeChecker("function"),
471 - number: createPrimitiveTypeChecker("number"),
472 - object: createPrimitiveTypeChecker("object"),
473 - string: createPrimitiveTypeChecker("string"),
474 - symbol: createPrimitiveTypeChecker("symbol"),
475 - any: createAnyTypeChecker(),
476 - arrayOf: createArrayOfTypeChecker,
477 - element: createElementTypeChecker(),
478 - elementType: createElementTypeTypeChecker(),
479 - instanceOf: createInstanceTypeChecker,
480 - node: createNodeChecker(),
481 - objectOf: createObjectOfTypeChecker,
482 - oneOf: createEnumTypeChecker,
483 - oneOfType: createUnionTypeChecker,
484 - shape: createShapeTypeChecker,
485 - exact: createStrictShapeTypeChecker
486 - };
487 - /**
488 - * inlined Object.is polyfill to avoid requiring consumers ship their own
489 - * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
490 - */
491 - function is(x, y) {
492 - if (x === y) return x !== 0 || 1 / x === 1 / y;
493 - else return x !== x && y !== y;
494 - }
495 - /**
496 - * We use an Error-like object for backward compatibility as people may call
497 - * PropTypes directly and inspect their output. However, we don't use real
498 - * Errors anymore. We don't inspect their stack anyway, and creating them
499 - * is prohibitively expensive if they are created too often, such as what
500 - * happens in oneOfType() for any type before the one that matched.
501 - */
502 - function PropTypeError(message, data) {
503 - this.message = message;
504 - this.data = data && typeof data === "object" ? data : {};
505 - this.stack = "";
506 - }
507 - PropTypeError.prototype = Error.prototype;
508 - function createChainableTypeChecker(validate) {
509 - var manualPropTypeCallCache = {};
510 - var manualPropTypeWarningCount = 0;
511 - function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
512 - componentName = componentName || ANONYMOUS;
513 - propFullName = propFullName || propName;
514 - if (secret !== ReactPropTypesSecret) {
515 - if (throwOnDirectAccess) {
516 - var err = /* @__PURE__ */ new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");
517 - err.name = "Invariant Violation";
518 - throw err;
519 - } else if (typeof console !== "undefined") {
520 - var cacheKey = componentName + ":" + propName;
521 - if (!manualPropTypeCallCache[cacheKey] && manualPropTypeWarningCount < 3) {
522 - printWarning("You are manually calling a React.PropTypes validation function for the `" + propFullName + "` prop on `" + componentName + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details.");
523 - manualPropTypeCallCache[cacheKey] = true;
524 - manualPropTypeWarningCount++;
525 - }
526 - }
527 - }
528 - if (props[propName] == null) {
529 - if (isRequired) {
530 - if (props[propName] === null) return new PropTypeError("The " + location + " `" + propFullName + "` is marked as required " + ("in `" + componentName + "`, but its value is `null`."));
531 - return new PropTypeError("The " + location + " `" + propFullName + "` is marked as required in " + ("`" + componentName + "`, but its value is `undefined`."));
532 - }
533 - return null;
534 - } else return validate(props, propName, componentName, location, propFullName);
535 - }
536 - var chainedCheckType = checkType.bind(null, false);
537 - chainedCheckType.isRequired = checkType.bind(null, true);
538 - return chainedCheckType;
539 - }
540 - function createPrimitiveTypeChecker(expectedType) {
541 - function validate(props, propName, componentName, location, propFullName, secret) {
542 - var propValue = props[propName];
543 - if (getPropType(propValue) !== expectedType) {
544 - var preciseType = getPreciseType(propValue);
545 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + preciseType + "` supplied to `" + componentName + "`, expected ") + ("`" + expectedType + "`."), { expectedType });
546 - }
547 - return null;
548 - }
549 - return createChainableTypeChecker(validate);
550 - }
551 - function createAnyTypeChecker() {
552 - return createChainableTypeChecker(emptyFunctionThatReturnsNull);
553 - }
554 - function createArrayOfTypeChecker(typeChecker) {
555 - function validate(props, propName, componentName, location, propFullName) {
556 - if (typeof typeChecker !== "function") return new PropTypeError("Property `" + propFullName + "` of component `" + componentName + "` has invalid PropType notation inside arrayOf.");
557 - var propValue = props[propName];
558 - if (!Array.isArray(propValue)) {
559 - var propType = getPropType(propValue);
560 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected an array."));
561 - }
562 - for (var i = 0; i < propValue.length; i++) {
563 - var error = typeChecker(propValue, i, componentName, location, propFullName + "[" + i + "]", ReactPropTypesSecret);
564 - if (error instanceof Error) return error;
565 - }
566 - return null;
567 - }
568 - return createChainableTypeChecker(validate);
569 - }
570 - function createElementTypeChecker() {
571 - function validate(props, propName, componentName, location, propFullName) {
572 - var propValue = props[propName];
573 - if (!isValidElement(propValue)) {
574 - var propType = getPropType(propValue);
575 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement."));
576 - }
577 - return null;
578 - }
579 - return createChainableTypeChecker(validate);
580 - }
581 - function createElementTypeTypeChecker() {
582 - function validate(props, propName, componentName, location, propFullName) {
583 - var propValue = props[propName];
584 - if (!ReactIs.isValidElementType(propValue)) {
585 - var propType = getPropType(propValue);
586 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement type."));
587 - }
588 - return null;
589 - }
590 - return createChainableTypeChecker(validate);
591 - }
592 - function createInstanceTypeChecker(expectedClass) {
593 - function validate(props, propName, componentName, location, propFullName) {
594 - if (!(props[propName] instanceof expectedClass)) {
595 - var expectedClassName = expectedClass.name || ANONYMOUS;
596 - var actualClassName = getClassName(props[propName]);
597 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + actualClassName + "` supplied to `" + componentName + "`, expected ") + ("instance of `" + expectedClassName + "`."));
598 - }
599 - return null;
600 - }
601 - return createChainableTypeChecker(validate);
602 - }
603 - function createEnumTypeChecker(expectedValues) {
604 - if (!Array.isArray(expectedValues)) {
605 - if (arguments.length > 1) printWarning("Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).");
606 - else printWarning("Invalid argument supplied to oneOf, expected an array.");
607 - return emptyFunctionThatReturnsNull;
608 - }
609 - function validate(props, propName, componentName, location, propFullName) {
610 - var propValue = props[propName];
611 - for (var i = 0; i < expectedValues.length; i++) if (is(propValue, expectedValues[i])) return null;
612 - var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {
613 - if (getPreciseType(value) === "symbol") return String(value);
614 - return value;
615 - });
616 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` of value `" + String(propValue) + "` " + ("supplied to `" + componentName + "`, expected one of " + valuesString + "."));
617 - }
618 - return createChainableTypeChecker(validate);
619 - }
620 - function createObjectOfTypeChecker(typeChecker) {
621 - function validate(props, propName, componentName, location, propFullName) {
622 - if (typeof typeChecker !== "function") return new PropTypeError("Property `" + propFullName + "` of component `" + componentName + "` has invalid PropType notation inside objectOf.");
623 - var propValue = props[propName];
624 - var propType = getPropType(propValue);
625 - if (propType !== "object") return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected an object."));
626 - for (var key in propValue) if (has(propValue, key)) {
627 - var error = typeChecker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
628 - if (error instanceof Error) return error;
629 - }
630 - return null;
631 - }
632 - return createChainableTypeChecker(validate);
633 - }
634 - function createUnionTypeChecker(arrayOfTypeCheckers) {
635 - if (!Array.isArray(arrayOfTypeCheckers)) {
636 - printWarning("Invalid argument supplied to oneOfType, expected an instance of array.");
637 - return emptyFunctionThatReturnsNull;
638 - }
639 - for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
640 - var checker = arrayOfTypeCheckers[i];
641 - if (typeof checker !== "function") {
642 - printWarning("Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + getPostfixForTypeWarning(checker) + " at index " + i + ".");
643 - return emptyFunctionThatReturnsNull;
644 - }
645 - }
646 - function validate(props, propName, componentName, location, propFullName) {
647 - var expectedTypes = [];
648 - for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
649 - var checker = arrayOfTypeCheckers[i];
650 - var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret);
651 - if (checkerResult == null) return null;
652 - if (checkerResult.data && has(checkerResult.data, "expectedType")) expectedTypes.push(checkerResult.data.expectedType);
653 - }
654 - var expectedTypesMessage = expectedTypes.length > 0 ? ", expected one of type [" + expectedTypes.join(", ") + "]" : "";
655 - return new PropTypeError("Invalid " + location + " `" + propFullName + "` supplied to " + ("`" + componentName + "`" + expectedTypesMessage + "."));
656 - }
657 - return createChainableTypeChecker(validate);
658 - }
659 - function createNodeChecker() {
660 - function validate(props, propName, componentName, location, propFullName) {
661 - if (!isNode(props[propName])) return new PropTypeError("Invalid " + location + " `" + propFullName + "` supplied to " + ("`" + componentName + "`, expected a ReactNode."));
662 - return null;
663 - }
664 - return createChainableTypeChecker(validate);
665 - }
666 - function invalidValidatorError(componentName, location, propFullName, key, type) {
667 - return new PropTypeError((componentName || "React class") + ": " + location + " type `" + propFullName + "." + key + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + type + "`.");
668 - }
669 - function createShapeTypeChecker(shapeTypes) {
670 - function validate(props, propName, componentName, location, propFullName) {
671 - var propValue = props[propName];
672 - var propType = getPropType(propValue);
673 - if (propType !== "object") return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
674 - for (var key in shapeTypes) {
675 - var checker = shapeTypes[key];
676 - if (typeof checker !== "function") return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
677 - var error = checker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
678 - if (error) return error;
679 - }
680 - return null;
681 - }
682 - return createChainableTypeChecker(validate);
683 - }
684 - function createStrictShapeTypeChecker(shapeTypes) {
685 - function validate(props, propName, componentName, location, propFullName) {
686 - var propValue = props[propName];
687 - var propType = getPropType(propValue);
688 - if (propType !== "object") return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
689 - for (var key in assign({}, props[propName], shapeTypes)) {
690 - var checker = shapeTypes[key];
691 - if (has(shapeTypes, key) && typeof checker !== "function") return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
692 - if (!checker) return new PropTypeError("Invalid " + location + " `" + propFullName + "` key `" + key + "` supplied to `" + componentName + "`.\nBad object: " + JSON.stringify(props[propName], null, " ") + "\nValid keys: " + JSON.stringify(Object.keys(shapeTypes), null, " "));
693 - var error = checker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
694 - if (error) return error;
695 - }
696 - return null;
697 - }
698 - return createChainableTypeChecker(validate);
699 - }
700 - function isNode(propValue) {
701 - switch (typeof propValue) {
702 - case "number":
703 - case "string":
704 - case "undefined": return true;
705 - case "boolean": return !propValue;
706 - case "object":
707 - if (Array.isArray(propValue)) return propValue.every(isNode);
708 - if (propValue === null || isValidElement(propValue)) return true;
709 - var iteratorFn = getIteratorFn(propValue);
710 - if (iteratorFn) {
711 - var iterator = iteratorFn.call(propValue);
712 - var step;
713 - if (iteratorFn !== propValue.entries) {
714 - while (!(step = iterator.next()).done) if (!isNode(step.value)) return false;
715 - } else while (!(step = iterator.next()).done) {
716 - var entry = step.value;
717 - if (entry) {
718 - if (!isNode(entry[1])) return false;
719 - }
720 - }
721 - } else return false;
722 - return true;
723 - default: return false;
724 - }
725 - }
726 - function isSymbol(propType, propValue) {
727 - if (propType === "symbol") return true;
728 - if (!propValue) return false;
729 - if (propValue["@@toStringTag"] === "Symbol") return true;
730 - if (typeof Symbol === "function" && propValue instanceof Symbol) return true;
731 - return false;
732 - }
733 - function getPropType(propValue) {
734 - var propType = typeof propValue;
735 - if (Array.isArray(propValue)) return "array";
736 - if (propValue instanceof RegExp) return "object";
737 - if (isSymbol(propType, propValue)) return "symbol";
738 - return propType;
739 - }
740 - function getPreciseType(propValue) {
741 - if (typeof propValue === "undefined" || propValue === null) return "" + propValue;
742 - var propType = getPropType(propValue);
743 - if (propType === "object") {
744 - if (propValue instanceof Date) return "date";
745 - else if (propValue instanceof RegExp) return "regexp";
746 - }
747 - return propType;
748 - }
749 - function getPostfixForTypeWarning(value) {
750 - var type = getPreciseType(value);
751 - switch (type) {
752 - case "array":
753 - case "object": return "an " + type;
754 - case "boolean":
755 - case "date":
756 - case "regexp": return "a " + type;
757 - default: return type;
758 - }
759 - }
760 - function getClassName(propValue) {
761 - if (!propValue.constructor || !propValue.constructor.name) return ANONYMOUS;
762 - return propValue.constructor.name;
763 - }
764 - ReactPropTypes.checkPropTypes = checkPropTypes;
765 - ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;
766 - ReactPropTypes.PropTypes = ReactPropTypes;
767 - return ReactPropTypes;
768 - };
769 - }));
508 + * Resets warning cache when testing.
509 + *
510 + * @private
511 + */
512 +checkPropTypes.resetWarningCache = function() {
513 + if (true) {
514 + loggedTypeFailures = {};
515 + }
516 +}
770 517
771 -//#endregion
772 -//#region node_modules/prop-types/index.js
773 - var require_prop_types = /* @__PURE__ */ __commonJSMin(((exports, module) => {
774 - var ReactIs = require_react_is();
775 - var throwOnDirectAccess = true;
776 - module.exports = require_factoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
777 - }));
518 +module.exports = checkPropTypes;
778 519
779 -//#endregion
780 -//#region modules/admin-top-bar/assets/js/components/bar-button/bar-button.js
781 - var import_prop_types = /* @__PURE__ */ __toESM(require_prop_types());
782 - function BarButton(props) {
783 - (0, react.useEffect)(function() {
784 - if (props.dataInfo) jQuery(".e-admin-top-bar__bar-button[data-info]").tipsy({
785 - title: function title() {
786 - return this.getAttribute("data-info");
787 - },
788 - gravity: function gravity() {
789 - return "n";
790 - },
791 - delayIn: 400,
792 - offset: 1
793 - });
794 - }, []);
795 - return /*#__PURE__*/ react.default.createElement("a", {
796 - className: "e-admin-top-bar__bar-button ".concat(props.additionalClasses),
797 - ref: props.buttonRef,
798 - onClick: props.onClick,
799 - "data-info": props.dataInfo,
800 - href: props.href,
801 - target: props.target
802 - }, /*#__PURE__*/ react.default.createElement("i", { className: "e-admin-top-bar__bar-button-icon ".concat(props.icon, " ").concat(props.iconAdditionalClasses) }), /*#__PURE__*/ react.default.createElement("span", { className: "e-admin-top-bar__bar-button-title" }, props.children));
803 - }
804 - BarButton.propTypes = {
805 - children: import_prop_types.default.any,
806 - dataInfo: import_prop_types.default.string,
807 - icon: import_prop_types.default.any,
808 - onClick: import_prop_types.default.func,
809 - buttonRef: import_prop_types.default.object,
810 - href: import_prop_types.default.string,
811 - target: import_prop_types.default.string,
812 - additionalClasses: import_prop_types.default.string,
813 - iconAdditionalClasses: import_prop_types.default.string
814 - };
815 520
816 -//#endregion
817 -//#region modules/admin-top-bar/assets/js/components/bar-heading/bar-heading.js
818 - function BarHeading(props) {
819 - return /*#__PURE__*/ react.default.createElement("div", { className: "e-admin-top-bar__heading" }, /*#__PURE__*/ react.default.createElement("div", { className: "e-logo-wrapper" }, /*#__PURE__*/ react.default.createElement("i", {
820 - className: "eicon-elementor-circle",
821 - "aria-hidden": "true"
822 - })), /*#__PURE__*/ react.default.createElement("span", { className: "e-admin-top-bar__heading-title" }, props.children));
823 - }
824 - BarHeading.propTypes = { children: import_prop_types.default.any };
521 +/***/ }),
825 522
826 -//#endregion
827 -//#region modules/admin-top-bar/assets/js/components/connection-button/connection-button.js
828 - function ConnectionButton() {
829 - var buttonRef = (0, react.useRef)();
830 - var isUserConnected = elementorAdminTopBarConfig.is_user_connected;
831 - (0, react.useEffect)(function() {
832 - if (!buttonRef.current || isUserConnected) return;
833 - jQuery(buttonRef.current).elementorConnect();
834 - }, []);
835 - var tooltipText = (0, _wordpress_i18n.__)("Connect your account to get access to Elementor's Template Library & more.", "elementor");
836 - var connectUrl = elementorAdminTopBarConfig.connect_url;
837 - var buttonText = (0, _wordpress_i18n.__)("Connect Account", "elementor");
838 - var targetUrl = "_self";
839 - if (isUserConnected) {
840 - tooltipText = "";
841 - connectUrl = "https://go.elementor.com/wp-dash-admin-bar-account/";
842 - buttonText = (0, _wordpress_i18n.__)("My Elementor", "elementor");
843 - targetUrl = "_blank";
844 - }
845 - return /*#__PURE__*/ react.default.createElement(BarButton, {
846 - icon: "eicon-user-circle-o",
847 - buttonRef,
848 - dataInfo: tooltipText,
849 - href: connectUrl,
850 - target: targetUrl
851 - }, buttonText);
852 - }
523 +/***/ "../node_modules/prop-types/factoryWithTypeCheckers.js":
524 +/*!*************************************************************!*\
525 + !*** ../node_modules/prop-types/factoryWithTypeCheckers.js ***!
526 + \*************************************************************/
527 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
853 528
854 -//#endregion
855 -//#region node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
856 - function _arrayWithHoles(r) {
857 - if (Array.isArray(r)) return r;
858 - }
529 +"use strict";
530 +/**
531 + * Copyright (c) 2013-present, Facebook, Inc.
532 + *
533 + * This source code is licensed under the MIT license found in the
534 + * LICENSE file in the root directory of this source tree.
535 + */
859 536
860 -//#endregion
861 -//#region node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
862 - function _iterableToArrayLimit(r, l) {
863 - var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
864 - if (null != t) {
865 - var e;
866 - var n;
867 - var i;
868 - var u;
869 - var a = [];
870 - var f = !0;
871 - var o = !1;
872 - try {
873 - if (i = (t = t.call(r)).next, 0 === l) {
874 - if (Object(t) !== t) return;
875 - f = !1;
876 - } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
877 - } catch (r) {
878 - o = !0, n = r;
879 - } finally {
880 - try {
881 - if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return;
882 - } finally {
883 - if (o) throw n;
884 - }
885 - }
886 - return a;
887 - }
888 - }
889 537
890 -//#endregion
891 -//#region node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
892 - function _arrayLikeToArray(r, a) {
893 - (null == a || a > r.length) && (a = r.length);
894 - for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
895 - return n;
896 - }
897 538
898 -//#endregion
899 -//#region node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
900 - function _unsupportedIterableToArray(r, a) {
901 - if (r) {
902 - if ("string" == typeof r) return _arrayLikeToArray(r, a);
903 - var t = {}.toString.call(r).slice(8, -1);
904 - return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
905 - }
906 - }
539 +var ReactIs = __webpack_require__(/*! react-is */ "../node_modules/prop-types/node_modules/react-is/index.js");
540 +var assign = __webpack_require__(/*! object-assign */ "../node_modules/object-assign/index.js");
907 541
908 -//#endregion
909 -//#region node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
910 - function _nonIterableRest() {
911 - throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
912 - }
542 +var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ "../node_modules/prop-types/lib/ReactPropTypesSecret.js");
543 +var has = __webpack_require__(/*! ./lib/has */ "../node_modules/prop-types/lib/has.js");
544 +var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */ "../node_modules/prop-types/checkPropTypes.js");
913 545
914 -//#endregion
915 -//#region node_modules/@babel/runtime/helpers/esm/slicedToArray.js
916 - function _slicedToArray(r, e) {
917 - return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();
918 - }
546 +var printWarning = function() {};
919 547
920 -//#endregion
921 -//#region modules/admin-top-bar/assets/js/hooks/use-page-title/use-page-title.js
922 - var usePageTitle = function usePageTitle() {
923 - var _useState2 = _slicedToArray((0, react.useState)("Elementor"), 2);
924 - var pageTitle = _useState2[0];
925 - var setPageTitle = _useState2[1];
926 - (0, react.useEffect)(function() {
927 - var pageTitleElement = document.querySelector(".wp-heading-inline");
928 - if (!pageTitleElement) return;
929 - setPageTitle(pageTitleElement.innerText);
930 - }, []);
931 - return pageTitle;
932 - };
548 +if (true) {
549 + printWarning = function(text) {
550 + var message = 'Warning: ' + text;
551 + if (typeof console !== 'undefined') {
552 + console.error(message);
553 + }
554 + try {
555 + // --- Welcome to debugging React ---
556 + // This error was thrown as a convenience so that you can use this stack
557 + // to find the callsite that caused this warning to fire.
558 + throw new Error(message);
559 + } catch (x) {}
560 + };
561 +}
933 562
934 -//#endregion
935 -//#region core/common/assets/js/utils/environment.js
936 - var matchUserAgent = function matchUserAgent(UserAgentStr) {
937 - return userAgent.indexOf(UserAgentStr) >= 0;
938 - };
939 - var userAgent = navigator.userAgent;
940 - var isOpera = !!window.opr && !!opr.addons || !!window.opera || matchUserAgent(" OPR/");
941 - var isFirefox = matchUserAgent("Firefox");
942 - var isSafari = /^((?!chrome|android).)*safari/i.test(userAgent) || /constructor/i.test(window.HTMLElement) || function(p) {
943 - return "[object SafariRemoteNotification]" === p.toString();
944 - }(!window.safari || typeof safari !== "undefined" && safari.pushNotification);
945 - var isIE = /Trident|MSIE/.test(userAgent) && !!document.documentMode;
946 - var isEdge = !isIE && !!window.StyleMedia || matchUserAgent("Edg");
947 - var isChrome = !!window.chrome && matchUserAgent("Chrome") && !(isEdge || isOpera);
948 - var isBlink = matchUserAgent("Chrome") && !!window.CSS;
949 - var isAppleWebkit = matchUserAgent("AppleWebKit") && !isBlink;
950 - var environment = {
951 - isTouchDevice: "ontouchstart" in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0,
952 - appleWebkit: isAppleWebkit,
953 - blink: isBlink,
954 - chrome: isChrome,
955 - edge: isEdge,
956 - firefox: isFirefox,
957 - ie: isIE,
958 - mac: matchUserAgent("Macintosh"),
959 - opera: isOpera,
960 - safari: isSafari,
961 - webkit: matchUserAgent("AppleWebKit")
962 - };
563 +function emptyFunctionThatReturnsNull() {
564 + return null;
565 +}
963 566
964 -//#endregion
965 -//#region modules/admin-top-bar/assets/js/admin-top-bar.js
966 - function AdminTopBar() {
967 - var _window;
968 - var actionButtonsRef = (0, react.useRef)();
969 - var promotion = window.elementorAdminTopBarConfig.promotion;
970 - (0, react.useEffect)(function() {
971 - var adminTopBarElement = document.querySelector("#e-admin-top-bar-root");
972 - adminTopBarElement === null || adminTopBarElement === void 0 || adminTopBarElement.classList.add("e-admin-top-bar--active");
973 - adminTopBarElement === null || adminTopBarElement === void 0 || adminTopBarElement.classList.add("e-admin-top-bar--editor-one");
974 - }, []);
975 - var pageTitleText = usePageTitle();
976 - var finderAction = function finderAction() {
977 - $e.route("finder");
978 - };
979 - var controlSign = environment.mac ? "⌘" : "^";
980 - var finderTooltipText = (0, _wordpress_i18n.__)("Search or do anything in Elementor", "elementor") + " ".concat(controlSign, "+E");
981 - var BarButtonNotification = (_window = window) === null || _window === void 0 || (_window = _window.elementorNotificationCenter) === null || _window === void 0 ? void 0 : _window.BarButtonNotification;
982 - return /*#__PURE__*/ react.default.createElement("div", { className: "e-admin-top-bar" }, /*#__PURE__*/ react.default.createElement("div", { className: "e-admin-top-bar__main-area" }, /*#__PURE__*/ react.default.createElement(BarHeading, null, pageTitleText), /*#__PURE__*/ react.default.createElement("div", {
983 - className: "e-admin-top-bar__main-area-buttons",
984 - ref: actionButtonsRef
985 - })), /*#__PURE__*/ react.default.createElement("div", { className: "e-admin-top-bar__secondary-area" }, /*#__PURE__*/ react.default.createElement("div", { className: "e-admin-top-bar__secondary-area-buttons" }, !elementorAppConfig.hasPro && /*#__PURE__*/ react.default.createElement(BarButton, {
986 - additionalClasses: "accent",
987 - href: promotion.url,
988 - target: "__blank",
989 - icon: "eicon-upgrade-crown",
990 - iconAdditionalClasses: "crown-icon"
991 - }, promotion.text), /*#__PURE__*/ react.default.createElement(BarButton, {
992 - href: window.elementorAdminTopBarConfig.apps_url,
993 - icon: "eicon-integration"
994 - }, (0, _wordpress_i18n.__)("Add-ons", "elementor")), window.elementorAdminTopBarConfig.is_administrator ? /*#__PURE__*/ react.default.createElement(BarButton, {
995 - onClick: finderAction,
996 - dataInfo: finderTooltipText,
997 - icon: "eicon-search-bold"
998 - }, (0, _wordpress_i18n.__)("Finder", "elementor")) : "", window.elementorCloudAdmin ? window.elementorCloudAdmin() : "", BarButtonNotification ? /*#__PURE__*/ react.default.createElement(BarButtonNotification, null, (0, _wordpress_i18n.__)("What's New", "elementor")) : ""), /*#__PURE__*/ react.default.createElement(ConnectionButton, null)));
999 - }
567 +module.exports = function(isValidElement, throwOnDirectAccess) {
568 + /* global Symbol */
569 + var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
570 + var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.
1000 571
1001 -//#endregion
1002 -//#region modules/admin-top-bar/assets/js/admin.js
1003 - var AppWrapper = elementorCommon.config.isDebug ? react.default.StrictMode : react.default.Fragment;
1004 - var adminTopBarElement = document.getElementById("e-admin-top-bar-root");
1005 - react_default.render(/*#__PURE__*/ react.default.createElement(AppWrapper, null, /*#__PURE__*/ react.default.createElement(AdminTopBar, null)), adminTopBarElement);
572 + /**
573 + * Returns the iterator method function contained on the iterable object.
574 + *
575 + * Be sure to invoke the function with the iterable as context:
576 + *
577 + * var iteratorFn = getIteratorFn(myIterable);
578 + * if (iteratorFn) {
579 + * var iterator = iteratorFn.call(myIterable);
580 + * ...
581 + * }
582 + *
583 + * @param {?object} maybeIterable
584 + * @return {?function}
585 + */
586 + function getIteratorFn(maybeIterable) {
587 + var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
588 + if (typeof iteratorFn === 'function') {
589 + return iteratorFn;
590 + }
591 + }
1006 592
1007 -//#endregion
1008 -})(React, ReactDOM, wp.i18n);
593 + /**
594 + * Collection of methods that allow declaration and validation of props that are
595 + * supplied to React components. Example usage:
596 + *
597 + * var Props = require('ReactPropTypes');
598 + * var MyArticle = React.createClass({
599 + * propTypes: {
600 + * // An optional string prop named "description".
601 + * description: Props.string,
602 + *
603 + * // A required enum prop named "category".
604 + * category: Props.oneOf(['News','Photos']).isRequired,
605 + *
606 + * // A prop named "dialog" that requires an instance of Dialog.
607 + * dialog: Props.instanceOf(Dialog).isRequired
608 + * },
609 + * render: function() { ... }
610 + * });
611 + *
612 + * A more formal specification of how these methods are used:
613 + *
614 + * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)
615 + * decl := ReactPropTypes.{type}(.isRequired)?
616 + *
617 + * Each and every declaration produces a function with the same signature. This
618 + * allows the creation of custom validation functions. For example:
619 + *
620 + * var MyLink = React.createClass({
621 + * propTypes: {
622 + * // An optional string or URI prop named "href".
623 + * href: function(props, propName, componentName) {
624 + * var propValue = props[propName];
625 + * if (propValue != null && typeof propValue !== 'string' &&
626 + * !(propValue instanceof URI)) {
627 + * return new Error(
628 + * 'Expected a string or an URI for ' + propName + ' in ' +
629 + * componentName
630 + * );
631 + * }
632 + * }
633 + * },
634 + * render: function() {...}
635 + * });
636 + *
637 + * @internal
638 + */
639 +
640 + var ANONYMOUS = '<<anonymous>>';
641 +
642 + // Important!
643 + // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.
644 + var ReactPropTypes = {
645 + array: createPrimitiveTypeChecker('array'),
646 + bigint: createPrimitiveTypeChecker('bigint'),
647 + bool: createPrimitiveTypeChecker('boolean'),
648 + func: createPrimitiveTypeChecker('function'),
649 + number: createPrimitiveTypeChecker('number'),
650 + object: createPrimitiveTypeChecker('object'),
651 + string: createPrimitiveTypeChecker('string'),
652 + symbol: createPrimitiveTypeChecker('symbol'),
653 +
654 + any: createAnyTypeChecker(),
655 + arrayOf: createArrayOfTypeChecker,
656 + element: createElementTypeChecker(),
657 + elementType: createElementTypeTypeChecker(),
658 + instanceOf: createInstanceTypeChecker,
659 + node: createNodeChecker(),
660 + objectOf: createObjectOfTypeChecker,
661 + oneOf: createEnumTypeChecker,
662 + oneOfType: createUnionTypeChecker,
663 + shape: createShapeTypeChecker,
664 + exact: createStrictShapeTypeChecker,
665 + };
666 +
667 + /**
668 + * inlined Object.is polyfill to avoid requiring consumers ship their own
669 + * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
670 + */
671 + /*eslint-disable no-self-compare*/
672 + function is(x, y) {
673 + // SameValue algorithm
674 + if (x === y) {
675 + // Steps 1-5, 7-10
676 + // Steps 6.b-6.e: +0 != -0
677 + return x !== 0 || 1 / x === 1 / y;
678 + } else {
679 + // Step 6.a: NaN == NaN
680 + return x !== x && y !== y;
681 + }
682 + }
683 + /*eslint-enable no-self-compare*/
684 +
685 + /**
686 + * We use an Error-like object for backward compatibility as people may call
687 + * PropTypes directly and inspect their output. However, we don't use real
688 + * Errors anymore. We don't inspect their stack anyway, and creating them
689 + * is prohibitively expensive if they are created too often, such as what
690 + * happens in oneOfType() for any type before the one that matched.
691 + */
692 + function PropTypeError(message, data) {
693 + this.message = message;
694 + this.data = data && typeof data === 'object' ? data: {};
695 + this.stack = '';
696 + }
697 + // Make `instanceof Error` still work for returned errors.
698 + PropTypeError.prototype = Error.prototype;
699 +
700 + function createChainableTypeChecker(validate) {
701 + if (true) {
702 + var manualPropTypeCallCache = {};
703 + var manualPropTypeWarningCount = 0;
704 + }
705 + function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
706 + componentName = componentName || ANONYMOUS;
707 + propFullName = propFullName || propName;
708 +
709 + if (secret !== ReactPropTypesSecret) {
710 + if (throwOnDirectAccess) {
711 + // New behavior only for users of `prop-types` package
712 + var err = new Error(
713 + 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
714 + 'Use `PropTypes.checkPropTypes()` to call them. ' +
715 + 'Read more at http://fb.me/use-check-prop-types'
716 + );
717 + err.name = 'Invariant Violation';
718 + throw err;
719 + } else if ( true && typeof console !== 'undefined') {
720 + // Old behavior for people using React.PropTypes
721 + var cacheKey = componentName + ':' + propName;
722 + if (
723 + !manualPropTypeCallCache[cacheKey] &&
724 + // Avoid spamming the console because they are often not actionable except for lib authors
725 + manualPropTypeWarningCount < 3
726 + ) {
727 + printWarning(
728 + 'You are manually calling a React.PropTypes validation ' +
729 + 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' +
730 + 'and will throw in the standalone `prop-types` package. ' +
731 + 'You may be seeing this warning due to a third-party PropTypes ' +
732 + 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.'
733 + );
734 + manualPropTypeCallCache[cacheKey] = true;
735 + manualPropTypeWarningCount++;
736 + }
737 + }
738 + }
739 + if (props[propName] == null) {
740 + if (isRequired) {
741 + if (props[propName] === null) {
742 + return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));
743 + }
744 + return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));
745 + }
746 + return null;
747 + } else {
748 + return validate(props, propName, componentName, location, propFullName);
749 + }
750 + }
751 +
752 + var chainedCheckType = checkType.bind(null, false);
753 + chainedCheckType.isRequired = checkType.bind(null, true);
754 +
755 + return chainedCheckType;
756 + }
757 +
758 + function createPrimitiveTypeChecker(expectedType) {
759 + function validate(props, propName, componentName, location, propFullName, secret) {
760 + var propValue = props[propName];
761 + var propType = getPropType(propValue);
762 + if (propType !== expectedType) {
763 + // `propValue` being instance of, say, date/regexp, pass the 'object'
764 + // check, but we can offer a more precise error message here rather than
765 + // 'of type `object`'.
766 + var preciseType = getPreciseType(propValue);
767 +
768 + return new PropTypeError(
769 + 'Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'),
770 + {expectedType: expectedType}
771 + );
772 + }
773 + return null;
774 + }
775 + return createChainableTypeChecker(validate);
776 + }
777 +
778 + function createAnyTypeChecker() {
779 + return createChainableTypeChecker(emptyFunctionThatReturnsNull);
780 + }
781 +
782 + function createArrayOfTypeChecker(typeChecker) {
783 + function validate(props, propName, componentName, location, propFullName) {
784 + if (typeof typeChecker !== 'function') {
785 + return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');
786 + }
787 + var propValue = props[propName];
788 + if (!Array.isArray(propValue)) {
789 + var propType = getPropType(propValue);
790 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
791 + }
792 + for (var i = 0; i < propValue.length; i++) {
793 + var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);
794 + if (error instanceof Error) {
795 + return error;
796 + }
797 + }
798 + return null;
799 + }
800 + return createChainableTypeChecker(validate);
801 + }
802 +
803 + function createElementTypeChecker() {
804 + function validate(props, propName, componentName, location, propFullName) {
805 + var propValue = props[propName];
806 + if (!isValidElement(propValue)) {
807 + var propType = getPropType(propValue);
808 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
809 + }
810 + return null;
811 + }
812 + return createChainableTypeChecker(validate);
813 + }
814 +
815 + function createElementTypeTypeChecker() {
816 + function validate(props, propName, componentName, location, propFullName) {
817 + var propValue = props[propName];
818 + if (!ReactIs.isValidElementType(propValue)) {
819 + var propType = getPropType(propValue);
820 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.'));
821 + }
822 + return null;
823 + }
824 + return createChainableTypeChecker(validate);
825 + }
826 +
827 + function createInstanceTypeChecker(expectedClass) {
828 + function validate(props, propName, componentName, location, propFullName) {
829 + if (!(props[propName] instanceof expectedClass)) {
830 + var expectedClassName = expectedClass.name || ANONYMOUS;
831 + var actualClassName = getClassName(props[propName]);
832 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));
833 + }
834 + return null;
835 + }
836 + return createChainableTypeChecker(validate);
837 + }
838 +
839 + function createEnumTypeChecker(expectedValues) {
840 + if (!Array.isArray(expectedValues)) {
841 + if (true) {
842 + if (arguments.length > 1) {
843 + printWarning(
844 + 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' +
845 + 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).'
846 + );
847 + } else {
848 + printWarning('Invalid argument supplied to oneOf, expected an array.');
849 + }
850 + }
851 + return emptyFunctionThatReturnsNull;
852 + }
853 +
854 + function validate(props, propName, componentName, location, propFullName) {
855 + var propValue = props[propName];
856 + for (var i = 0; i < expectedValues.length; i++) {
857 + if (is(propValue, expectedValues[i])) {
858 + return null;
859 + }
860 + }
861 +
862 + var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {
863 + var type = getPreciseType(value);
864 + if (type === 'symbol') {
865 + return String(value);
866 + }
867 + return value;
868 + });
869 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));
870 + }
871 + return createChainableTypeChecker(validate);
872 + }
873 +
874 + function createObjectOfTypeChecker(typeChecker) {
875 + function validate(props, propName, componentName, location, propFullName) {
876 + if (typeof typeChecker !== 'function') {
877 + return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');
878 + }
879 + var propValue = props[propName];
880 + var propType = getPropType(propValue);
881 + if (propType !== 'object') {
882 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));
883 + }
884 + for (var key in propValue) {
885 + if (has(propValue, key)) {
886 + var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
887 + if (error instanceof Error) {
888 + return error;
889 + }
890 + }
891 + }
892 + return null;
893 + }
894 + return createChainableTypeChecker(validate);
895 + }
896 +
897 + function createUnionTypeChecker(arrayOfTypeCheckers) {
898 + if (!Array.isArray(arrayOfTypeCheckers)) {
899 + true ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : 0;
900 + return emptyFunctionThatReturnsNull;
901 + }
902 +
903 + for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
904 + var checker = arrayOfTypeCheckers[i];
905 + if (typeof checker !== 'function') {
906 + printWarning(
907 + 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +
908 + 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.'
909 + );
910 + return emptyFunctionThatReturnsNull;
911 + }
912 + }
913 +
914 + function validate(props, propName, componentName, location, propFullName) {
915 + var expectedTypes = [];
916 + for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
917 + var checker = arrayOfTypeCheckers[i];
918 + var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret);
919 + if (checkerResult == null) {
920 + return null;
921 + }
922 + if (checkerResult.data && has(checkerResult.data, 'expectedType')) {
923 + expectedTypes.push(checkerResult.data.expectedType);
924 + }
925 + }
926 + var expectedTypesMessage = (expectedTypes.length > 0) ? ', expected one of type [' + expectedTypes.join(', ') + ']': '';
927 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.'));
928 + }
929 + return createChainableTypeChecker(validate);
930 + }
931 +
932 + function createNodeChecker() {
933 + function validate(props, propName, componentName, location, propFullName) {
934 + if (!isNode(props[propName])) {
935 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));
936 + }
937 + return null;
938 + }
939 + return createChainableTypeChecker(validate);
940 + }
941 +
942 + function invalidValidatorError(componentName, location, propFullName, key, type) {
943 + return new PropTypeError(
944 + (componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' +
945 + 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.'
946 + );
947 + }
948 +
949 + function createShapeTypeChecker(shapeTypes) {
950 + function validate(props, propName, componentName, location, propFullName) {
951 + var propValue = props[propName];
952 + var propType = getPropType(propValue);
953 + if (propType !== 'object') {
954 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
955 + }
956 + for (var key in shapeTypes) {
957 + var checker = shapeTypes[key];
958 + if (typeof checker !== 'function') {
959 + return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
960 + }
961 + var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
962 + if (error) {
963 + return error;
964 + }
965 + }
966 + return null;
967 + }
968 + return createChainableTypeChecker(validate);
969 + }
970 +
971 + function createStrictShapeTypeChecker(shapeTypes) {
972 + function validate(props, propName, componentName, location, propFullName) {
973 + var propValue = props[propName];
974 + var propType = getPropType(propValue);
975 + if (propType !== 'object') {
976 + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
977 + }
978 + // We need to check all keys in case some are required but missing from props.
979 + var allKeys = assign({}, props[propName], shapeTypes);
980 + for (var key in allKeys) {
981 + var checker = shapeTypes[key];
982 + if (has(shapeTypes, key) && typeof checker !== 'function') {
983 + return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
984 + }
985 + if (!checker) {
986 + return new PropTypeError(
987 + 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +
988 + '\nBad object: ' + JSON.stringify(props[propName], null, ' ') +
989 + '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')
990 + );
991 + }
992 + var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
993 + if (error) {
994 + return error;
995 + }
996 + }
997 + return null;
998 + }
999 +
1000 + return createChainableTypeChecker(validate);
1001 + }
1002 +
1003 + function isNode(propValue) {
1004 + switch (typeof propValue) {
1005 + case 'number':
1006 + case 'string':
1007 + case 'undefined':
1008 + return true;
1009 + case 'boolean':
1010 + return !propValue;
1011 + case 'object':
1012 + if (Array.isArray(propValue)) {
1013 + return propValue.every(isNode);
1014 + }
1015 + if (propValue === null || isValidElement(propValue)) {
1016 + return true;
1017 + }
1018 +
1019 + var iteratorFn = getIteratorFn(propValue);
1020 + if (iteratorFn) {
1021 + var iterator = iteratorFn.call(propValue);
1022 + var step;
1023 + if (iteratorFn !== propValue.entries) {
1024 + while (!(step = iterator.next()).done) {
1025 + if (!isNode(step.value)) {
1026 + return false;
1027 + }
1028 + }
1029 + } else {
1030 + // Iterator will provide entry [k,v] tuples rather than values.
1031 + while (!(step = iterator.next()).done) {
1032 + var entry = step.value;
1033 + if (entry) {
1034 + if (!isNode(entry[1])) {
1035 + return false;
1036 + }
1037 + }
1038 + }
1039 + }
1040 + } else {
1041 + return false;
1042 + }
1043 +
1044 + return true;
1045 + default:
1046 + return false;
1047 + }
1048 + }
1049 +
1050 + function isSymbol(propType, propValue) {
1051 + // Native Symbol.
1052 + if (propType === 'symbol') {
1053 + return true;
1054 + }
1055 +
1056 + // falsy value can't be a Symbol
1057 + if (!propValue) {
1058 + return false;
1059 + }
1060 +
1061 + // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'
1062 + if (propValue['@@toStringTag'] === 'Symbol') {
1063 + return true;
1064 + }
1065 +
1066 + // Fallback for non-spec compliant Symbols which are polyfilled.
1067 + if (typeof Symbol === 'function' && propValue instanceof Symbol) {
1068 + return true;
1069 + }
1070 +
1071 + return false;
1072 + }
1073 +
1074 + // Equivalent of `typeof` but with special handling for array and regexp.
1075 + function getPropType(propValue) {
1076 + var propType = typeof propValue;
1077 + if (Array.isArray(propValue)) {
1078 + return 'array';
1079 + }
1080 + if (propValue instanceof RegExp) {
1081 + // Old webkits (at least until Android 4.0) return 'function' rather than
1082 + // 'object' for typeof a RegExp. We'll normalize this here so that /bla/
1083 + // passes PropTypes.object.
1084 + return 'object';
1085 + }
1086 + if (isSymbol(propType, propValue)) {
1087 + return 'symbol';
1088 + }
1089 + return propType;
1090 + }
1091 +
1092 + // This handles more types than `getPropType`. Only used for error messages.
1093 + // See `createPrimitiveTypeChecker`.
1094 + function getPreciseType(propValue) {
1095 + if (typeof propValue === 'undefined' || propValue === null) {
1096 + return '' + propValue;
1097 + }
1098 + var propType = getPropType(propValue);
1099 + if (propType === 'object') {
1100 + if (propValue instanceof Date) {
1101 + return 'date';
1102 + } else if (propValue instanceof RegExp) {
1103 + return 'regexp';
1104 + }
1105 + }
1106 + return propType;
1107 + }
1108 +
1109 + // Returns a string that is postfixed to a warning about an invalid type.
1110 + // For example, "undefined" or "of type array"
1111 + function getPostfixForTypeWarning(value) {
1112 + var type = getPreciseType(value);
1113 + switch (type) {
1114 + case 'array':
1115 + case 'object':
1116 + return 'an ' + type;
1117 + case 'boolean':
1118 + case 'date':
1119 + case 'regexp':
1120 + return 'a ' + type;
1121 + default:
1122 + return type;
1123 + }
1124 + }
1125 +
1126 + // Returns class name of the object, if any.
1127 + function getClassName(propValue) {
1128 + if (!propValue.constructor || !propValue.constructor.name) {
1129 + return ANONYMOUS;
1130 + }
1131 + return propValue.constructor.name;
1132 + }
1133 +
1134 + ReactPropTypes.checkPropTypes = checkPropTypes;
1135 + ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;
1136 + ReactPropTypes.PropTypes = ReactPropTypes;
1137 +
1138 + return ReactPropTypes;
1139 +};
1140 +
1141 +
1142 +/***/ }),
1143 +
1144 +/***/ "../node_modules/prop-types/index.js":
1145 +/*!*******************************************!*\
1146 + !*** ../node_modules/prop-types/index.js ***!
1147 + \*******************************************/
1148 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1149 +
1150 +/**
1151 + * Copyright (c) 2013-present, Facebook, Inc.
1152 + *
1153 + * This source code is licensed under the MIT license found in the
1154 + * LICENSE file in the root directory of this source tree.
1155 + */
1156 +
1157 +if (true) {
1158 + var ReactIs = __webpack_require__(/*! react-is */ "../node_modules/prop-types/node_modules/react-is/index.js");
1159 +
1160 + // By explicitly using `prop-types` you are opting into new development behavior.
1161 + // http://fb.me/prop-types-in-prod
1162 + var throwOnDirectAccess = true;
1163 + module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */ "../node_modules/prop-types/factoryWithTypeCheckers.js")(ReactIs.isElement, throwOnDirectAccess);
1164 +} else {}
1165 +
1166 +
1167 +/***/ }),
1168 +
1169 +/***/ "../node_modules/prop-types/lib/ReactPropTypesSecret.js":
1170 +/*!**************************************************************!*\
1171 + !*** ../node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
1172 + \**************************************************************/
1173 +/***/ ((module) => {
1174 +
1175 +"use strict";
1176 +/**
1177 + * Copyright (c) 2013-present, Facebook, Inc.
1178 + *
1179 + * This source code is licensed under the MIT license found in the
1180 + * LICENSE file in the root directory of this source tree.
1181 + */
1182 +
1183 +
1184 +
1185 +var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
1186 +
1187 +module.exports = ReactPropTypesSecret;
1188 +
1189 +
1190 +/***/ }),
1191 +
1192 +/***/ "../node_modules/prop-types/lib/has.js":
1193 +/*!*********************************************!*\
1194 + !*** ../node_modules/prop-types/lib/has.js ***!
1195 + \*********************************************/
1196 +/***/ ((module) => {
1197 +
1198 +module.exports = Function.call.bind(Object.prototype.hasOwnProperty);
1199 +
1200 +
1201 +/***/ }),
1202 +
1203 +/***/ "../node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js":
1204 +/*!************************************************************************************!*\
1205 + !*** ../node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js ***!
1206 + \************************************************************************************/
1207 +/***/ ((__unused_webpack_module, exports) => {
1208 +
1209 +"use strict";
1210 +/** @license React v16.13.1
1211 + * react-is.development.js
1212 + *
1213 + * Copyright (c) Facebook, Inc. and its affiliates.
1214 + *
1215 + * This source code is licensed under the MIT license found in the
1216 + * LICENSE file in the root directory of this source tree.
1217 + */
1218 +
1219 +
1220 +
1221 +
1222 +
1223 +if (true) {
1224 + (function() {
1225 +'use strict';
1226 +
1227 +// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
1228 +// nor polyfill, then a plain number is used for performance.
1229 +var hasSymbol = typeof Symbol === 'function' && Symbol.for;
1230 +var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
1231 +var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
1232 +var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
1233 +var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
1234 +var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
1235 +var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
1236 +var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
1237 +// (unstable) APIs that have been removed. Can we remove the symbols?
1238 +
1239 +var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
1240 +var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
1241 +var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
1242 +var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
1243 +var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
1244 +var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
1245 +var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
1246 +var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
1247 +var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
1248 +var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
1249 +var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
1250 +
1251 +function isValidElementType(type) {
1252 + return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
1253 + type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
1254 +}
1255 +
1256 +function typeOf(object) {
1257 + if (typeof object === 'object' && object !== null) {
1258 + var $$typeof = object.$$typeof;
1259 +
1260 + switch ($$typeof) {
1261 + case REACT_ELEMENT_TYPE:
1262 + var type = object.type;
1263 +
1264 + switch (type) {
1265 + case REACT_ASYNC_MODE_TYPE:
1266 + case REACT_CONCURRENT_MODE_TYPE:
1267 + case REACT_FRAGMENT_TYPE:
1268 + case REACT_PROFILER_TYPE:
1269 + case REACT_STRICT_MODE_TYPE:
1270 + case REACT_SUSPENSE_TYPE:
1271 + return type;
1272 +
1273 + default:
1274 + var $$typeofType = type && type.$$typeof;
1275 +
1276 + switch ($$typeofType) {
1277 + case REACT_CONTEXT_TYPE:
1278 + case REACT_FORWARD_REF_TYPE:
1279 + case REACT_LAZY_TYPE:
1280 + case REACT_MEMO_TYPE:
1281 + case REACT_PROVIDER_TYPE:
1282 + return $$typeofType;
1283 +
1284 + default:
1285 + return $$typeof;
1286 + }
1287 +
1288 + }
1289 +
1290 + case REACT_PORTAL_TYPE:
1291 + return $$typeof;
1292 + }
1293 + }
1294 +
1295 + return undefined;
1296 +} // AsyncMode is deprecated along with isAsyncMode
1297 +
1298 +var AsyncMode = REACT_ASYNC_MODE_TYPE;
1299 +var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
1300 +var ContextConsumer = REACT_CONTEXT_TYPE;
1301 +var ContextProvider = REACT_PROVIDER_TYPE;
1302 +var Element = REACT_ELEMENT_TYPE;
1303 +var ForwardRef = REACT_FORWARD_REF_TYPE;
1304 +var Fragment = REACT_FRAGMENT_TYPE;
1305 +var Lazy = REACT_LAZY_TYPE;
1306 +var Memo = REACT_MEMO_TYPE;
1307 +var Portal = REACT_PORTAL_TYPE;
1308 +var Profiler = REACT_PROFILER_TYPE;
1309 +var StrictMode = REACT_STRICT_MODE_TYPE;
1310 +var Suspense = REACT_SUSPENSE_TYPE;
1311 +var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated
1312 +
1313 +function isAsyncMode(object) {
1314 + {
1315 + if (!hasWarnedAboutDeprecatedIsAsyncMode) {
1316 + hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
1317 +
1318 + console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');
1319 + }
1320 + }
1321 +
1322 + return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
1323 +}
1324 +function isConcurrentMode(object) {
1325 + return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
1326 +}
1327 +function isContextConsumer(object) {
1328 + return typeOf(object) === REACT_CONTEXT_TYPE;
1329 +}
1330 +function isContextProvider(object) {
1331 + return typeOf(object) === REACT_PROVIDER_TYPE;
1332 +}
1333 +function isElement(object) {
1334 + return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
1335 +}
1336 +function isForwardRef(object) {
1337 + return typeOf(object) === REACT_FORWARD_REF_TYPE;
1338 +}
1339 +function isFragment(object) {
1340 + return typeOf(object) === REACT_FRAGMENT_TYPE;
1341 +}
1342 +function isLazy(object) {
1343 + return typeOf(object) === REACT_LAZY_TYPE;
1344 +}
1345 +function isMemo(object) {
1346 + return typeOf(object) === REACT_MEMO_TYPE;
1347 +}
1348 +function isPortal(object) {
1349 + return typeOf(object) === REACT_PORTAL_TYPE;
1350 +}
1351 +function isProfiler(object) {
1352 + return typeOf(object) === REACT_PROFILER_TYPE;
1353 +}
1354 +function isStrictMode(object) {
1355 + return typeOf(object) === REACT_STRICT_MODE_TYPE;
1356 +}
1357 +function isSuspense(object) {
1358 + return typeOf(object) === REACT_SUSPENSE_TYPE;
1359 +}
1360 +
1361 +exports.AsyncMode = AsyncMode;
1362 +exports.ConcurrentMode = ConcurrentMode;
1363 +exports.ContextConsumer = ContextConsumer;
1364 +exports.ContextProvider = ContextProvider;
1365 +exports.Element = Element;
1366 +exports.ForwardRef = ForwardRef;
1367 +exports.Fragment = Fragment;
1368 +exports.Lazy = Lazy;
1369 +exports.Memo = Memo;
1370 +exports.Portal = Portal;
1371 +exports.Profiler = Profiler;
1372 +exports.StrictMode = StrictMode;
1373 +exports.Suspense = Suspense;
1374 +exports.isAsyncMode = isAsyncMode;
1375 +exports.isConcurrentMode = isConcurrentMode;
1376 +exports.isContextConsumer = isContextConsumer;
1377 +exports.isContextProvider = isContextProvider;
1378 +exports.isElement = isElement;
1379 +exports.isForwardRef = isForwardRef;
1380 +exports.isFragment = isFragment;
1381 +exports.isLazy = isLazy;
1382 +exports.isMemo = isMemo;
1383 +exports.isPortal = isPortal;
1384 +exports.isProfiler = isProfiler;
1385 +exports.isStrictMode = isStrictMode;
1386 +exports.isSuspense = isSuspense;
1387 +exports.isValidElementType = isValidElementType;
1388 +exports.typeOf = typeOf;
1389 + })();
1390 +}
1391 +
1392 +
1393 +/***/ }),
1394 +
1395 +/***/ "../node_modules/prop-types/node_modules/react-is/index.js":
1396 +/*!*****************************************************************!*\
1397 + !*** ../node_modules/prop-types/node_modules/react-is/index.js ***!
1398 + \*****************************************************************/
1399 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1400 +
1401 +"use strict";
1402 +
1403 +
1404 +if (false) {} else {
1405 + module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ "../node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js");
1406 +}
1407 +
1408 +
1409 +/***/ }),
1410 +
1411 +/***/ "react":
1412 +/*!************************!*\
1413 + !*** external "React" ***!
1414 + \************************/
1415 +/***/ ((module) => {
1416 +
1417 +"use strict";
1418 +module.exports = React;
1419 +
1420 +/***/ }),
1421 +
1422 +/***/ "react-dom":
1423 +/*!***************************!*\
1424 + !*** external "ReactDOM" ***!
1425 + \***************************/
1426 +/***/ ((module) => {
1427 +
1428 +"use strict";
1429 +module.exports = ReactDOM;
1430 +
1431 +/***/ }),
1432 +
1433 +/***/ "@wordpress/i18n":
1434 +/*!**************************!*\
1435 + !*** external "wp.i18n" ***!
1436 + \**************************/
1437 +/***/ ((module) => {
1438 +
1439 +"use strict";
1440 +module.exports = wp.i18n;
1441 +
1442 +/***/ }),
1443 +
1444 +/***/ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
1445 +/*!******************************************************************!*\
1446 + !*** ../node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
1447 + \******************************************************************/
1448 +/***/ ((module) => {
1449 +
1450 +function _arrayLikeToArray(arr, len) {
1451 + if (len == null || len > arr.length) len = arr.length;
1452 + for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
1453 + return arr2;
1454 +}
1455 +module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
1456 +
1457 +/***/ }),
1458 +
1459 +/***/ "../node_modules/@babel/runtime/helpers/arrayWithHoles.js":
1460 +/*!****************************************************************!*\
1461 + !*** ../node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
1462 + \****************************************************************/
1463 +/***/ ((module) => {
1464 +
1465 +function _arrayWithHoles(arr) {
1466 + if (Array.isArray(arr)) return arr;
1467 +}
1468 +module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;
1469 +
1470 +/***/ }),
1471 +
1472 +/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
1473 +/*!***********************************************************************!*\
1474 + !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
1475 + \***********************************************************************/
1476 +/***/ ((module) => {
1477 +
1478 +function _interopRequireDefault(obj) {
1479 + return obj && obj.__esModule ? obj : {
1480 + "default": obj
1481 + };
1482 +}
1483 +module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
1484 +
1485 +/***/ }),
1486 +
1487 +/***/ "../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js":
1488 +/*!**********************************************************************!*\
1489 + !*** ../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js ***!
1490 + \**********************************************************************/
1491 +/***/ ((module) => {
1492 +
1493 +function _iterableToArrayLimit(arr, i) {
1494 + var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"];
1495 + if (null != _i) {
1496 + var _s,
1497 + _e,
1498 + _x,
1499 + _r,
1500 + _arr = [],
1501 + _n = !0,
1502 + _d = !1;
1503 + try {
1504 + if (_x = (_i = _i.call(arr)).next, 0 === i) {
1505 + if (Object(_i) !== _i) return;
1506 + _n = !1;
1507 + } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0);
1508 + } catch (err) {
1509 + _d = !0, _e = err;
1510 + } finally {
1511 + try {
1512 + if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return;
1513 + } finally {
1514 + if (_d) throw _e;
1515 + }
1516 + }
1517 + return _arr;
1518 + }
1519 +}
1520 +module.exports = _iterableToArrayLimit, module.exports.__esModule = true, module.exports["default"] = module.exports;
1521 +
1522 +/***/ }),
1523 +
1524 +/***/ "../node_modules/@babel/runtime/helpers/nonIterableRest.js":
1525 +/*!*****************************************************************!*\
1526 + !*** ../node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
1527 + \*****************************************************************/
1528 +/***/ ((module) => {
1529 +
1530 +function _nonIterableRest() {
1531 + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
1532 +}
1533 +module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports;
1534 +
1535 +/***/ }),
1536 +
1537 +/***/ "../node_modules/@babel/runtime/helpers/slicedToArray.js":
1538 +/*!***************************************************************!*\
1539 + !*** ../node_modules/@babel/runtime/helpers/slicedToArray.js ***!
1540 + \***************************************************************/
1541 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1542 +
1543 +var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../node_modules/@babel/runtime/helpers/arrayWithHoles.js");
1544 +var iterableToArrayLimit = __webpack_require__(/*! ./iterableToArrayLimit.js */ "../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js");
1545 +var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
1546 +var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../node_modules/@babel/runtime/helpers/nonIterableRest.js");
1547 +function _slicedToArray(arr, i) {
1548 + return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
1549 +}
1550 +module.exports = _slicedToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
1551 +
1552 +/***/ }),
1553 +
1554 +/***/ "../node_modules/@babel/runtime/helpers/typeof.js":
1555 +/*!********************************************************!*\
1556 + !*** ../node_modules/@babel/runtime/helpers/typeof.js ***!
1557 + \********************************************************/
1558 +/***/ ((module) => {
1559 +
1560 +function _typeof(obj) {
1561 + "@babel/helpers - typeof";
1562 +
1563 + return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
1564 + return typeof obj;
1565 + } : function (obj) {
1566 + return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
1567 + }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj);
1568 +}
1569 +module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
1570 +
1571 +/***/ }),
1572 +
1573 +/***/ "../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
1574 +/*!****************************************************************************!*\
1575 + !*** ../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
1576 + \****************************************************************************/
1577 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1578 +
1579 +var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
1580 +function _unsupportedIterableToArray(o, minLen) {
1581 + if (!o) return;
1582 + if (typeof o === "string") return arrayLikeToArray(o, minLen);
1583 + var n = Object.prototype.toString.call(o).slice(8, -1);
1584 + if (n === "Object" && o.constructor) n = o.constructor.name;
1585 + if (n === "Map" || n === "Set") return Array.from(o);
1586 + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
1587 +}
1588 +module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
1589 +
1590 +/***/ })
1591 +
1592 +/******/ });
1593 +/************************************************************************/
1594 +/******/ // The module cache
1595 +/******/ var __webpack_module_cache__ = {};
1596 +/******/
1597 +/******/ // The require function
1598 +/******/ function __webpack_require__(moduleId) {
1599 +/******/ // Check if module is in cache
1600 +/******/ var cachedModule = __webpack_module_cache__[moduleId];
1601 +/******/ if (cachedModule !== undefined) {
1602 +/******/ return cachedModule.exports;
1603 +/******/ }
1604 +/******/ // Create a new module (and put it into the cache)
1605 +/******/ var module = __webpack_module_cache__[moduleId] = {
1606 +/******/ // no module.id needed
1607 +/******/ // no module.loaded needed
1608 +/******/ exports: {}
1609 +/******/ };
1610 +/******/
1611 +/******/ // Execute the module function
1612 +/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
1613 +/******/
1614 +/******/ // Return the exports of the module
1615 +/******/ return module.exports;
1616 +/******/ }
1617 +/******/
1618 +/************************************************************************/
1619 +var __webpack_exports__ = {};
1620 +// This entry need to be wrapped in an IIFE because it need to be in strict mode.
1621 +(() => {
1622 +"use strict";
1623 +/*!***************************************************!*\
1624 + !*** ../modules/admin-top-bar/assets/js/admin.js ***!
1625 + \***************************************************/
1626 +/* provided dependency */ var ReactDOM = __webpack_require__(/*! react-dom */ "react-dom");
1627 +
1628 +
1629 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1630 +var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
1631 +var _adminTopBar = _interopRequireDefault(__webpack_require__(/*! ./admin-top-bar */ "../modules/admin-top-bar/assets/js/admin-top-bar.js"));
1632 +var AppWrapper = elementorCommon.config.isDebug ? _react.default.StrictMode : _react.default.Fragment;
1633 +var adminTopBarElement = document.getElementById('e-admin-top-bar-root');
1634 +ReactDOM.render( /*#__PURE__*/_react.default.createElement(AppWrapper, null, /*#__PURE__*/_react.default.createElement(_adminTopBar.default, null)), adminTopBarElement);
1635 +})();
1636 +
1637 +/******/ })()
1638 +;
1009 1639 //# sourceMappingURL=admin-top-bar.js.map