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