| @@ -1,556 +1,300 @@ | ||
| 1 | -/******/ (() => { // webpackBootstrap | |
| 2 | -/******/ var __webpack_modules__ = ({ | |
| 1 | +(function() { | |
| 3 | 2 | |
| 4 | -/***/ "../modules/dev-tools/assets/js/deprecation.js": | |
| 5 | -/*!*****************************************************!*\ | |
| 6 | - !*** ../modules/dev-tools/assets/js/deprecation.js ***! | |
| 7 | - \*****************************************************/ | |
| 8 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 3 | +//#region \0rolldown/runtime.js | |
| 4 | + var __defProp = Object.defineProperty; | |
| 5 | + var __name = (target, value) => __defProp(target, "name", { | |
| 6 | + value, | |
| 7 | + configurable: true | |
| 8 | + }); | |
| 9 | 9 | |
| 10 | -"use strict"; | |
| 10 | +//#endregion | |
| 11 | 11 | |
| 12 | +//#region node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js | |
| 13 | + function _arrayWithHoles(r) { | |
| 14 | + if (Array.isArray(r)) return r; | |
| 15 | + } | |
| 12 | 16 | |
| 13 | -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); | |
| 14 | -Object.defineProperty(exports, "__esModule", ({ | |
| 15 | - value: true | |
| 16 | -})); | |
| 17 | -exports["default"] = void 0; | |
| 18 | -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js")); | |
| 19 | -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); | |
| 20 | -var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); | |
| 21 | -/** | |
| 22 | - * @typedef {Object} Version | |
| 23 | - * @property {number} major1 The first number | |
| 24 | - * @property {number} major2 The second number | |
| 25 | - * @property {number} minor The third number | |
| 26 | - * @property {string} build The fourth number | |
| 27 | - */ | |
| 17 | +//#endregion | |
| 18 | +//#region node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js | |
| 19 | + function _iterableToArrayLimit(r, l) { | |
| 20 | + var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; | |
| 21 | + if (null != t) { | |
| 22 | + var e; | |
| 23 | + var n; | |
| 24 | + var i; | |
| 25 | + var u; | |
| 26 | + var a = []; | |
| 27 | + var f = !0; | |
| 28 | + var o = !1; | |
| 29 | + try { | |
| 30 | + if (i = (t = t.call(r)).next, 0 === l) { | |
| 31 | + if (Object(t) !== t) return; | |
| 32 | + f = !1; | |
| 33 | + } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); | |
| 34 | + } catch (r) { | |
| 35 | + o = !0, n = r; | |
| 36 | + } finally { | |
| 37 | + try { | |
| 38 | + if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; | |
| 39 | + } finally { | |
| 40 | + if (o) throw n; | |
| 41 | + } | |
| 42 | + } | |
| 43 | + return a; | |
| 44 | + } | |
| 45 | + } | |
| 28 | 46 | |
| 29 | -/** | |
| 30 | - * @param {string} name | |
| 31 | - * @param {string} version | |
| 32 | - * @param {string} replacement | |
| 33 | - */ | |
| 47 | +//#endregion | |
| 48 | +//#region node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js | |
| 49 | + function _arrayLikeToArray(r, a) { | |
| 50 | + (null == a || a > r.length) && (a = r.length); | |
| 51 | + for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; | |
| 52 | + return n; | |
| 53 | + } | |
| 34 | 54 | |
| 35 | -var softDeprecated = function softDeprecated(name, version, replacement) { | |
| 36 | - if (elementorDevToolsConfig.isDebug) { | |
| 37 | - deprecatedMessage('soft', name, version, replacement); | |
| 38 | - } | |
| 39 | -}; | |
| 40 | -var hardDeprecated = function hardDeprecated(name, version, replacement) { | |
| 41 | - deprecatedMessage('hard', name, version, replacement); | |
| 42 | -}; | |
| 43 | -var deprecatedMessage = function deprecatedMessage(type, name, version, replacement) { | |
| 44 | - var message = "`".concat(name, "` is ").concat(type, " deprecated since ").concat(version); | |
| 45 | - if (replacement) { | |
| 46 | - message += " - Use `".concat(replacement, "` instead"); | |
| 47 | - } | |
| 48 | - elementorDevTools.consoleWarn(message); | |
| 49 | -}; | |
| 50 | -var Deprecation = exports["default"] = /*#__PURE__*/function () { | |
| 51 | - function Deprecation() { | |
| 52 | - (0, _classCallCheck2.default)(this, Deprecation); | |
| 53 | - } | |
| 54 | - return (0, _createClass2.default)(Deprecation, [{ | |
| 55 | - key: "deprecated", | |
| 56 | - value: function deprecated(name, version, replacement) { | |
| 57 | - if (this.isHardDeprecated(version)) { | |
| 58 | - hardDeprecated(name, version, replacement); | |
| 59 | - } else { | |
| 60 | - softDeprecated(name, version, replacement); | |
| 61 | - } | |
| 62 | - } | |
| 55 | +//#endregion | |
| 56 | +//#region node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js | |
| 57 | + function _unsupportedIterableToArray(r, a) { | |
| 58 | + if (r) { | |
| 59 | + if ("string" == typeof r) return _arrayLikeToArray(r, a); | |
| 60 | + var t = {}.toString.call(r).slice(8, -1); | |
| 61 | + 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; | |
| 62 | + } | |
| 63 | + } | |
| 63 | 64 | |
| 64 | - /** | |
| 65 | - * @param {string} version | |
| 66 | - * | |
| 67 | - * @return {Version} | |
| 68 | - */ | |
| 69 | - }, { | |
| 70 | - key: "parseVersion", | |
| 71 | - value: function parseVersion(version) { | |
| 72 | - var versionParts = version.split('.'); | |
| 73 | - if (versionParts.length < 3 || versionParts.length > 4) { | |
| 74 | - throw new RangeError('Invalid Semantic Version string provided'); | |
| 75 | - } | |
| 76 | - var _versionParts = (0, _slicedToArray2.default)(versionParts, 4), | |
| 77 | - major1 = _versionParts[0], | |
| 78 | - major2 = _versionParts[1], | |
| 79 | - minor = _versionParts[2], | |
| 80 | - _versionParts$ = _versionParts[3], | |
| 81 | - build = _versionParts$ === void 0 ? '' : _versionParts$; | |
| 82 | - return { | |
| 83 | - major1: parseInt(major1), | |
| 84 | - major2: parseInt(major2), | |
| 85 | - minor: parseInt(minor), | |
| 86 | - build: build | |
| 87 | - }; | |
| 88 | - } | |
| 65 | +//#endregion | |
| 66 | +//#region node_modules/@babel/runtime/helpers/esm/nonIterableRest.js | |
| 67 | + function _nonIterableRest() { | |
| 68 | + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); | |
| 69 | + } | |
| 89 | 70 | |
| 90 | - /** | |
| 91 | - * Get total of major. | |
| 92 | - * | |
| 93 | - * Since `get_total_major` cannot determine how much really versions between 2.9.0 and 3.3.0 if there is 2.10.0 version for example, | |
| 94 | - * versions with major2 more then 9 will be added to total. | |
| 95 | - * | |
| 96 | - * @param {Version} versionObj | |
| 97 | - * | |
| 98 | - * @return {number} | |
| 99 | - */ | |
| 100 | - }, { | |
| 101 | - key: "getTotalMajor", | |
| 102 | - value: function getTotalMajor(versionObj) { | |
| 103 | - var total = parseInt("".concat(versionObj.major1).concat(versionObj.major2, "0")); | |
| 104 | - total = Number((total / 10).toFixed(0)); | |
| 105 | - if (versionObj.major2 > 9) { | |
| 106 | - total = versionObj.major2 - 9; | |
| 107 | - } | |
| 108 | - return total; | |
| 109 | - } | |
| 71 | +//#endregion | |
| 72 | +//#region node_modules/@babel/runtime/helpers/esm/slicedToArray.js | |
| 73 | + function _slicedToArray(r, e) { | |
| 74 | + return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); | |
| 75 | + } | |
| 110 | 76 | |
| 111 | - /** | |
| 112 | - * @param {string} version1 | |
| 113 | - * @param {string} version2 | |
| 114 | - * | |
| 115 | - * @return {number} | |
| 116 | - */ | |
| 117 | - }, { | |
| 118 | - key: "compareVersion", | |
| 119 | - value: function compareVersion(version1, version2) { | |
| 120 | - var _this = this; | |
| 121 | - return [this.parseVersion(version1), this.parseVersion(version2)].map(function (versionObj) { | |
| 122 | - return _this.getTotalMajor(versionObj); | |
| 123 | - }).reduce(function (acc, major) { | |
| 124 | - return acc - major; | |
| 125 | - }); | |
| 126 | - } | |
| 77 | +//#endregion | |
| 78 | +//#region node_modules/@babel/runtime/helpers/esm/classCallCheck.js | |
| 79 | + function _classCallCheck(a, n) { | |
| 80 | + if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); | |
| 81 | + } | |
| 127 | 82 | |
| 128 | - /** | |
| 129 | - * @param {string} version | |
| 130 | - * | |
| 131 | - * @return {boolean} | |
| 132 | - */ | |
| 133 | - }, { | |
| 134 | - key: "isSoftDeprecated", | |
| 135 | - value: function isSoftDeprecated(version) { | |
| 136 | - var total = this.compareVersion(version, elementorDevToolsConfig.deprecation.current_version); | |
| 137 | - return total <= elementorDevToolsConfig.deprecation.soft_version_count; | |
| 138 | - } | |
| 83 | +//#endregion | |
| 84 | +//#region node_modules/@babel/runtime/helpers/esm/typeof.js | |
| 85 | + function _typeof(o) { | |
| 86 | + "@babel/helpers - typeof"; | |
| 87 | + return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o) { | |
| 88 | + return typeof o; | |
| 89 | + } : function(o) { | |
| 90 | + return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; | |
| 91 | + }, _typeof(o); | |
| 92 | + } | |
| 139 | 93 | |
| 140 | - /** | |
| 141 | - * @param {string} version | |
| 142 | - * @return {boolean} | |
| 143 | - */ | |
| 144 | - }, { | |
| 145 | - key: "isHardDeprecated", | |
| 146 | - value: function isHardDeprecated(version) { | |
| 147 | - var total = this.compareVersion(version, elementorDevToolsConfig.deprecation.current_version); | |
| 148 | - return total < 0 || total >= elementorDevToolsConfig.deprecation.hard_version_count; | |
| 149 | - } | |
| 150 | - }]); | |
| 151 | -}(); | |
| 94 | +//#endregion | |
| 95 | +//#region node_modules/@babel/runtime/helpers/esm/toPrimitive.js | |
| 96 | + function toPrimitive(t, r) { | |
| 97 | + if ("object" != _typeof(t) || !t) return t; | |
| 98 | + var e = t[Symbol.toPrimitive]; | |
| 99 | + if (void 0 !== e) { | |
| 100 | + var i = e.call(t, r || "default"); | |
| 101 | + if ("object" != _typeof(i)) return i; | |
| 102 | + throw new TypeError("@@toPrimitive must return a primitive value."); | |
| 103 | + } | |
| 104 | + return ("string" === r ? String : Number)(t); | |
| 105 | + } | |
| 152 | 106 | |
| 153 | -/***/ }), | |
| 107 | +//#endregion | |
| 108 | +//#region node_modules/@babel/runtime/helpers/esm/toPropertyKey.js | |
| 109 | + function toPropertyKey(t) { | |
| 110 | + var i = toPrimitive(t, "string"); | |
| 111 | + return "symbol" == _typeof(i) ? i : i + ""; | |
| 112 | + } | |
| 154 | 113 | |
| 155 | -/***/ "../modules/dev-tools/assets/js/module.js": | |
| 156 | -/*!************************************************!*\ | |
| 157 | - !*** ../modules/dev-tools/assets/js/module.js ***! | |
| 158 | - \************************************************/ | |
| 159 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 114 | +//#endregion | |
| 115 | +//#region node_modules/@babel/runtime/helpers/esm/createClass.js | |
| 116 | + function _defineProperties(e, r) { | |
| 117 | + for (var t = 0; t < r.length; t++) { | |
| 118 | + var o = r[t]; | |
| 119 | + o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o); | |
| 120 | + } | |
| 121 | + } | |
| 122 | + function _createClass(e, r, t) { | |
| 123 | + return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; | |
| 124 | + } | |
| 160 | 125 | |
| 161 | -"use strict"; | |
| 126 | +//#endregion | |
| 127 | +//#region modules/dev-tools/assets/js/deprecation.js | |
| 128 | +/** | |
| 129 | + * @typedef {Object} Version | |
| 130 | + * @property {number} major1 The first number | |
| 131 | + * @property {number} major2 The second number | |
| 132 | + * @property {number} minor The third number | |
| 133 | + * @property {string} build The fourth number | |
| 134 | + */ | |
| 135 | + /** | |
| 136 | + * @param {string} name | |
| 137 | + * @param {string} version | |
| 138 | + * @param {string} replacement | |
| 139 | + */ | |
| 140 | + var softDeprecated = function softDeprecated(name, version, replacement) { | |
| 141 | + if (elementorDevToolsConfig.isDebug) deprecatedMessage("soft", name, version, replacement); | |
| 142 | + }; | |
| 143 | + var hardDeprecated = function hardDeprecated(name, version, replacement) { | |
| 144 | + deprecatedMessage("hard", name, version, replacement); | |
| 145 | + }; | |
| 146 | + var deprecatedMessage = function deprecatedMessage(type, name, version, replacement) { | |
| 147 | + var message = "`".concat(name, "` is ").concat(type, " deprecated since ").concat(version); | |
| 148 | + if (replacement) message += " - Use `".concat(replacement, "` instead"); | |
| 149 | + elementorDevTools.consoleWarn(message); | |
| 150 | + }; | |
| 151 | + var Deprecation = /*#__PURE__*/ function() { | |
| 152 | + function Deprecation() { | |
| 153 | + _classCallCheck(this, Deprecation); | |
| 154 | + } | |
| 155 | + return _createClass(Deprecation, [ | |
| 156 | + { | |
| 157 | + key: "deprecated", | |
| 158 | + value: function deprecated(name, version, replacement) { | |
| 159 | + if (this.isHardDeprecated(version)) hardDeprecated(name, version, replacement); | |
| 160 | + else softDeprecated(name, version, replacement); | |
| 161 | + } | |
| 162 | + }, | |
| 163 | + { | |
| 164 | + key: "parseVersion", | |
| 165 | + value: function parseVersion(version) { | |
| 166 | + var versionParts = version.split("."); | |
| 167 | + if (versionParts.length < 3 || versionParts.length > 4) throw new RangeError("Invalid Semantic Version string provided"); | |
| 168 | + var _versionParts = _slicedToArray(versionParts, 4); | |
| 169 | + var major1 = _versionParts[0]; | |
| 170 | + var major2 = _versionParts[1]; | |
| 171 | + var minor = _versionParts[2]; | |
| 172 | + var _versionParts$ = _versionParts[3]; | |
| 173 | + return { | |
| 174 | + major1: parseInt(major1), | |
| 175 | + major2: parseInt(major2), | |
| 176 | + minor: parseInt(minor), | |
| 177 | + build: _versionParts$ === void 0 ? "" : _versionParts$ | |
| 178 | + }; | |
| 179 | + } | |
| 180 | + }, | |
| 181 | + { | |
| 182 | + key: "getTotalMajor", | |
| 183 | + value: function getTotalMajor(versionObj) { | |
| 184 | + var total = parseInt("".concat(versionObj.major1).concat(versionObj.major2, "0")); | |
| 185 | + total = Number((total / 10).toFixed(0)); | |
| 186 | + if (versionObj.major2 > 9) total = versionObj.major2 - 9; | |
| 187 | + return total; | |
| 188 | + } | |
| 189 | + }, | |
| 190 | + { | |
| 191 | + key: "compareVersion", | |
| 192 | + value: function compareVersion(version1, version2) { | |
| 193 | + var _this = this; | |
| 194 | + return [this.parseVersion(version1), this.parseVersion(version2)].map(function(versionObj) { | |
| 195 | + return _this.getTotalMajor(versionObj); | |
| 196 | + }).reduce(function(acc, major) { | |
| 197 | + return acc - major; | |
| 198 | + }); | |
| 199 | + } | |
| 200 | + }, | |
| 201 | + { | |
| 202 | + key: "isSoftDeprecated", | |
| 203 | + value: function isSoftDeprecated(version) { | |
| 204 | + return this.compareVersion(version, elementorDevToolsConfig.deprecation.current_version) <= elementorDevToolsConfig.deprecation.soft_version_count; | |
| 205 | + } | |
| 206 | + }, | |
| 207 | + { | |
| 208 | + key: "isHardDeprecated", | |
| 209 | + value: function isHardDeprecated(version) { | |
| 210 | + var total = this.compareVersion(version, elementorDevToolsConfig.deprecation.current_version); | |
| 211 | + return total < 0 || total >= elementorDevToolsConfig.deprecation.hard_version_count; | |
| 212 | + } | |
| 213 | + } | |
| 214 | + ]); | |
| 215 | + }(); | |
| 162 | 216 | |
| 217 | +//#endregion | |
| 218 | +//#region node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js | |
| 219 | + function _arrayWithoutHoles(r) { | |
| 220 | + if (Array.isArray(r)) return _arrayLikeToArray(r); | |
| 221 | + } | |
| 163 | 222 | |
| 164 | -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); | |
| 165 | -Object.defineProperty(exports, "__esModule", ({ | |
| 166 | - value: true | |
| 167 | -})); | |
| 168 | -exports["default"] = void 0; | |
| 169 | -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */ "../node_modules/@babel/runtime/helpers/toConsumableArray.js")); | |
| 170 | -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js")); | |
| 171 | -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); | |
| 172 | -var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); | |
| 173 | -var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../node_modules/@babel/runtime/helpers/defineProperty.js")); | |
| 174 | -var _deprecation = _interopRequireDefault(__webpack_require__(/*! ./deprecation */ "../modules/dev-tools/assets/js/deprecation.js")); | |
| 175 | -/* global elementorDevToolsConfig */ | |
| 176 | -var Module = exports["default"] = /*#__PURE__*/function () { | |
| 177 | - function Module(deprecation) { | |
| 178 | - (0, _classCallCheck2.default)(this, Module); | |
| 179 | - /** | |
| 180 | - * @type {Deprecation} | |
| 181 | - */ | |
| 182 | - (0, _defineProperty2.default)(this, "deprecation", void 0); | |
| 183 | - this.deprecation = deprecation; | |
| 184 | - } | |
| 185 | - return (0, _createClass2.default)(Module, [{ | |
| 186 | - key: "notifyBackendDeprecations", | |
| 187 | - value: function notifyBackendDeprecations() { | |
| 188 | - var _this = this; | |
| 189 | - var notices = elementorDevToolsConfig.deprecation.soft_notices; | |
| 190 | - Object.entries(notices).forEach(function (_ref) { | |
| 191 | - var _this$deprecation; | |
| 192 | - var _ref2 = (0, _slicedToArray2.default)(_ref, 2), | |
| 193 | - key = _ref2[0], | |
| 194 | - notice = _ref2[1]; | |
| 195 | - (_this$deprecation = _this.deprecation).deprecated.apply(_this$deprecation, [key].concat((0, _toConsumableArray2.default)(notice))); | |
| 196 | - }); | |
| 197 | - } | |
| 198 | - }, { | |
| 199 | - key: "consoleWarn", | |
| 200 | - value: function consoleWarn() { | |
| 201 | - var _console; | |
| 202 | - var style = "font-size: 12px; background-image: url(\"".concat(elementorDevToolsConfig.urls.assets, "images/logo-icon.png\"); background-repeat: no-repeat; background-size: contain;"); | |
| 203 | - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { | |
| 204 | - args[_key] = arguments[_key]; | |
| 205 | - } | |
| 206 | - args.unshift('%c %c', style, ''); | |
| 207 | - (_console = console).warn.apply(_console, args); // eslint-disable-line no-console | |
| 208 | - } | |
| 209 | - }]); | |
| 210 | -}(); | |
| 223 | +//#endregion | |
| 224 | +//#region node_modules/@babel/runtime/helpers/esm/iterableToArray.js | |
| 225 | + function _iterableToArray(r) { | |
| 226 | + if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); | |
| 227 | + } | |
| 211 | 228 | |
| 212 | -/***/ }), | |
| 229 | +//#endregion | |
| 230 | +//#region node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js | |
| 231 | + function _nonIterableSpread() { | |
| 232 | + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); | |
| 233 | + } | |
| 213 | 234 | |
| 214 | -/***/ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js": | |
| 215 | -/*!******************************************************************!*\ | |
| 216 | - !*** ../node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***! | |
| 217 | - \******************************************************************/ | |
| 218 | -/***/ ((module) => { | |
| 235 | +//#endregion | |
| 236 | +//#region node_modules/@babel/runtime/helpers/esm/toConsumableArray.js | |
| 237 | + function _toConsumableArray(r) { | |
| 238 | + return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); | |
| 239 | + } | |
| 219 | 240 | |
| 220 | -function _arrayLikeToArray(r, a) { | |
| 221 | - (null == a || a > r.length) && (a = r.length); | |
| 222 | - for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; | |
| 223 | - return n; | |
| 224 | -} | |
| 225 | -module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 241 | +//#endregion | |
| 242 | +//#region node_modules/@babel/runtime/helpers/esm/defineProperty.js | |
| 243 | + function _defineProperty(e, r, t) { | |
| 244 | + return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, { | |
| 245 | + value: t, | |
| 246 | + enumerable: !0, | |
| 247 | + configurable: !0, | |
| 248 | + writable: !0 | |
| 249 | + }) : e[r] = t, e; | |
| 250 | + } | |
| 226 | 251 | |
| 227 | -/***/ }), | |
| 252 | +//#endregion | |
| 253 | +//#region modules/dev-tools/assets/js/module.js | |
| 254 | +/** | |
| 255 | + * @typedef {import('./deprecation').default} Deprecation | |
| 256 | + */ | |
| 257 | + var Module = /*#__PURE__*/ function() { | |
| 258 | + function Module(deprecation) { | |
| 259 | + _classCallCheck(this, Module); | |
| 260 | + /** | |
| 261 | + * @type {Deprecation} | |
| 262 | + */ | |
| 263 | + _defineProperty(this, "deprecation", void 0); | |
| 264 | + this.deprecation = deprecation; | |
| 265 | + } | |
| 266 | + return _createClass(Module, [{ | |
| 267 | + key: "notifyBackendDeprecations", | |
| 268 | + value: function notifyBackendDeprecations() { | |
| 269 | + var _this = this; | |
| 270 | + var notices = elementorDevToolsConfig.deprecation.soft_notices; | |
| 271 | + Object.entries(notices).forEach(function(_ref) { | |
| 272 | + var _this$deprecation; | |
| 273 | + var _ref2 = _slicedToArray(_ref, 2); | |
| 274 | + var key = _ref2[0]; | |
| 275 | + var notice = _ref2[1]; | |
| 276 | + (_this$deprecation = _this.deprecation).deprecated.apply(_this$deprecation, [key].concat(_toConsumableArray(notice))); | |
| 277 | + }); | |
| 278 | + } | |
| 279 | + }, { | |
| 280 | + key: "consoleWarn", | |
| 281 | + value: function consoleWarn() { | |
| 282 | + var _console; | |
| 283 | + var style = "font-size: 12px; background-image: url(\"".concat(elementorDevToolsConfig.urls.assets, "images/logo-icon.png\"); background-repeat: no-repeat; background-size: contain;"); | |
| 284 | + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) args[_key] = arguments[_key]; | |
| 285 | + args.unshift("%c %c", style, ""); | |
| 286 | + (_console = console).warn.apply(_console, args); | |
| 287 | + } | |
| 288 | + }]); | |
| 289 | + }(); | |
| 228 | 290 | |
| 229 | -/***/ "../node_modules/@babel/runtime/helpers/arrayWithHoles.js": | |
| 230 | -/*!****************************************************************!*\ | |
| 231 | - !*** ../node_modules/@babel/runtime/helpers/arrayWithHoles.js ***! | |
| 232 | - \****************************************************************/ | |
| 233 | -/***/ ((module) => { | |
| 291 | +//#endregion | |
| 292 | +//#region modules/dev-tools/assets/js/index.js | |
| 293 | + if (!window.elementorDevTools) { | |
| 294 | + window.elementorDevTools = new Module(new Deprecation()); | |
| 295 | + window.elementorDevTools.notifyBackendDeprecations(); | |
| 296 | + } | |
| 234 | 297 | |
| 235 | -function _arrayWithHoles(r) { | |
| 236 | - if (Array.isArray(r)) return r; | |
| 237 | -} | |
| 238 | -module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 239 | - | |
| 240 | -/***/ }), | |
| 241 | - | |
| 242 | -/***/ "../node_modules/@babel/runtime/helpers/arrayWithoutHoles.js": | |
| 243 | -/*!*******************************************************************!*\ | |
| 244 | - !*** ../node_modules/@babel/runtime/helpers/arrayWithoutHoles.js ***! | |
| 245 | - \*******************************************************************/ | |
| 246 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 247 | - | |
| 248 | -var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js"); | |
| 249 | -function _arrayWithoutHoles(r) { | |
| 250 | - if (Array.isArray(r)) return arrayLikeToArray(r); | |
| 251 | -} | |
| 252 | -module.exports = _arrayWithoutHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 253 | - | |
| 254 | -/***/ }), | |
| 255 | - | |
| 256 | -/***/ "../node_modules/@babel/runtime/helpers/classCallCheck.js": | |
| 257 | -/*!****************************************************************!*\ | |
| 258 | - !*** ../node_modules/@babel/runtime/helpers/classCallCheck.js ***! | |
| 259 | - \****************************************************************/ | |
| 260 | -/***/ ((module) => { | |
| 261 | - | |
| 262 | -function _classCallCheck(a, n) { | |
| 263 | - if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); | |
| 264 | -} | |
| 265 | -module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 266 | - | |
| 267 | -/***/ }), | |
| 268 | - | |
| 269 | -/***/ "../node_modules/@babel/runtime/helpers/createClass.js": | |
| 270 | -/*!*************************************************************!*\ | |
| 271 | - !*** ../node_modules/@babel/runtime/helpers/createClass.js ***! | |
| 272 | - \*************************************************************/ | |
| 273 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 274 | - | |
| 275 | -var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); | |
| 276 | -function _defineProperties(e, r) { | |
| 277 | - for (var t = 0; t < r.length; t++) { | |
| 278 | - var o = r[t]; | |
| 279 | - o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o); | |
| 280 | - } | |
| 281 | -} | |
| 282 | -function _createClass(e, r, t) { | |
| 283 | - return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { | |
| 284 | - writable: !1 | |
| 285 | - }), e; | |
| 286 | -} | |
| 287 | -module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 288 | - | |
| 289 | -/***/ }), | |
| 290 | - | |
| 291 | -/***/ "../node_modules/@babel/runtime/helpers/defineProperty.js": | |
| 292 | -/*!****************************************************************!*\ | |
| 293 | - !*** ../node_modules/@babel/runtime/helpers/defineProperty.js ***! | |
| 294 | - \****************************************************************/ | |
| 295 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 296 | - | |
| 297 | -var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); | |
| 298 | -function _defineProperty(e, r, t) { | |
| 299 | - return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, { | |
| 300 | - value: t, | |
| 301 | - enumerable: !0, | |
| 302 | - configurable: !0, | |
| 303 | - writable: !0 | |
| 304 | - }) : e[r] = t, e; | |
| 305 | -} | |
| 306 | -module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 307 | - | |
| 308 | -/***/ }), | |
| 309 | - | |
| 310 | -/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js": | |
| 311 | -/*!***********************************************************************!*\ | |
| 312 | - !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! | |
| 313 | - \***********************************************************************/ | |
| 314 | -/***/ ((module) => { | |
| 315 | - | |
| 316 | -function _interopRequireDefault(e) { | |
| 317 | - return e && e.__esModule ? e : { | |
| 318 | - "default": e | |
| 319 | - }; | |
| 320 | -} | |
| 321 | -module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 322 | - | |
| 323 | -/***/ }), | |
| 324 | - | |
| 325 | -/***/ "../node_modules/@babel/runtime/helpers/iterableToArray.js": | |
| 326 | -/*!*****************************************************************!*\ | |
| 327 | - !*** ../node_modules/@babel/runtime/helpers/iterableToArray.js ***! | |
| 328 | - \*****************************************************************/ | |
| 329 | -/***/ ((module) => { | |
| 330 | - | |
| 331 | -function _iterableToArray(r) { | |
| 332 | - if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); | |
| 333 | -} | |
| 334 | -module.exports = _iterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 335 | - | |
| 336 | -/***/ }), | |
| 337 | - | |
| 338 | -/***/ "../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js": | |
| 339 | -/*!**********************************************************************!*\ | |
| 340 | - !*** ../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js ***! | |
| 341 | - \**********************************************************************/ | |
| 342 | -/***/ ((module) => { | |
| 343 | - | |
| 344 | -function _iterableToArrayLimit(r, l) { | |
| 345 | - var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; | |
| 346 | - if (null != t) { | |
| 347 | - var e, | |
| 348 | - n, | |
| 349 | - i, | |
| 350 | - u, | |
| 351 | - a = [], | |
| 352 | - f = !0, | |
| 353 | - o = !1; | |
| 354 | - try { | |
| 355 | - if (i = (t = t.call(r)).next, 0 === l) { | |
| 356 | - if (Object(t) !== t) return; | |
| 357 | - f = !1; | |
| 358 | - } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); | |
| 359 | - } catch (r) { | |
| 360 | - o = !0, n = r; | |
| 361 | - } finally { | |
| 362 | - try { | |
| 363 | - if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; | |
| 364 | - } finally { | |
| 365 | - if (o) throw n; | |
| 366 | - } | |
| 367 | - } | |
| 368 | - return a; | |
| 369 | - } | |
| 370 | -} | |
| 371 | -module.exports = _iterableToArrayLimit, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 372 | - | |
| 373 | -/***/ }), | |
| 374 | - | |
| 375 | -/***/ "../node_modules/@babel/runtime/helpers/nonIterableRest.js": | |
| 376 | -/*!*****************************************************************!*\ | |
| 377 | - !*** ../node_modules/@babel/runtime/helpers/nonIterableRest.js ***! | |
| 378 | - \*****************************************************************/ | |
| 379 | -/***/ ((module) => { | |
| 380 | - | |
| 381 | -function _nonIterableRest() { | |
| 382 | - throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); | |
| 383 | -} | |
| 384 | -module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 385 | - | |
| 386 | -/***/ }), | |
| 387 | - | |
| 388 | -/***/ "../node_modules/@babel/runtime/helpers/nonIterableSpread.js": | |
| 389 | -/*!*******************************************************************!*\ | |
| 390 | - !*** ../node_modules/@babel/runtime/helpers/nonIterableSpread.js ***! | |
| 391 | - \*******************************************************************/ | |
| 392 | -/***/ ((module) => { | |
| 393 | - | |
| 394 | -function _nonIterableSpread() { | |
| 395 | - throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); | |
| 396 | -} | |
| 397 | -module.exports = _nonIterableSpread, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 398 | - | |
| 399 | -/***/ }), | |
| 400 | - | |
| 401 | -/***/ "../node_modules/@babel/runtime/helpers/slicedToArray.js": | |
| 402 | -/*!***************************************************************!*\ | |
| 403 | - !*** ../node_modules/@babel/runtime/helpers/slicedToArray.js ***! | |
| 404 | - \***************************************************************/ | |
| 405 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 406 | - | |
| 407 | -var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../node_modules/@babel/runtime/helpers/arrayWithHoles.js"); | |
| 408 | -var iterableToArrayLimit = __webpack_require__(/*! ./iterableToArrayLimit.js */ "../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js"); | |
| 409 | -var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js"); | |
| 410 | -var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../node_modules/@babel/runtime/helpers/nonIterableRest.js"); | |
| 411 | -function _slicedToArray(r, e) { | |
| 412 | - return arrayWithHoles(r) || iterableToArrayLimit(r, e) || unsupportedIterableToArray(r, e) || nonIterableRest(); | |
| 413 | -} | |
| 414 | -module.exports = _slicedToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 415 | - | |
| 416 | -/***/ }), | |
| 417 | - | |
| 418 | -/***/ "../node_modules/@babel/runtime/helpers/toConsumableArray.js": | |
| 419 | -/*!*******************************************************************!*\ | |
| 420 | - !*** ../node_modules/@babel/runtime/helpers/toConsumableArray.js ***! | |
| 421 | - \*******************************************************************/ | |
| 422 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 423 | - | |
| 424 | -var arrayWithoutHoles = __webpack_require__(/*! ./arrayWithoutHoles.js */ "../node_modules/@babel/runtime/helpers/arrayWithoutHoles.js"); | |
| 425 | -var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../node_modules/@babel/runtime/helpers/iterableToArray.js"); | |
| 426 | -var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js"); | |
| 427 | -var nonIterableSpread = __webpack_require__(/*! ./nonIterableSpread.js */ "../node_modules/@babel/runtime/helpers/nonIterableSpread.js"); | |
| 428 | -function _toConsumableArray(r) { | |
| 429 | - return arrayWithoutHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableSpread(); | |
| 430 | -} | |
| 431 | -module.exports = _toConsumableArray, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 432 | - | |
| 433 | -/***/ }), | |
| 434 | - | |
| 435 | -/***/ "../node_modules/@babel/runtime/helpers/toPrimitive.js": | |
| 436 | -/*!*************************************************************!*\ | |
| 437 | - !*** ../node_modules/@babel/runtime/helpers/toPrimitive.js ***! | |
| 438 | - \*************************************************************/ | |
| 439 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 440 | - | |
| 441 | -var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); | |
| 442 | -function toPrimitive(t, r) { | |
| 443 | - if ("object" != _typeof(t) || !t) return t; | |
| 444 | - var e = t[Symbol.toPrimitive]; | |
| 445 | - if (void 0 !== e) { | |
| 446 | - var i = e.call(t, r || "default"); | |
| 447 | - if ("object" != _typeof(i)) return i; | |
| 448 | - throw new TypeError("@@toPrimitive must return a primitive value."); | |
| 449 | - } | |
| 450 | - return ("string" === r ? String : Number)(t); | |
| 451 | -} | |
| 452 | -module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 453 | - | |
| 454 | -/***/ }), | |
| 455 | - | |
| 456 | -/***/ "../node_modules/@babel/runtime/helpers/toPropertyKey.js": | |
| 457 | -/*!***************************************************************!*\ | |
| 458 | - !*** ../node_modules/@babel/runtime/helpers/toPropertyKey.js ***! | |
| 459 | - \***************************************************************/ | |
| 460 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 461 | - | |
| 462 | -var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); | |
| 463 | -var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../node_modules/@babel/runtime/helpers/toPrimitive.js"); | |
| 464 | -function toPropertyKey(t) { | |
| 465 | - var i = toPrimitive(t, "string"); | |
| 466 | - return "symbol" == _typeof(i) ? i : i + ""; | |
| 467 | -} | |
| 468 | -module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 469 | - | |
| 470 | -/***/ }), | |
| 471 | - | |
| 472 | -/***/ "../node_modules/@babel/runtime/helpers/typeof.js": | |
| 473 | -/*!********************************************************!*\ | |
| 474 | - !*** ../node_modules/@babel/runtime/helpers/typeof.js ***! | |
| 475 | - \********************************************************/ | |
| 476 | -/***/ ((module) => { | |
| 477 | - | |
| 478 | -function _typeof(o) { | |
| 479 | - "@babel/helpers - typeof"; | |
| 480 | - | |
| 481 | - return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { | |
| 482 | - return typeof o; | |
| 483 | - } : function (o) { | |
| 484 | - return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; | |
| 485 | - }, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o); | |
| 486 | -} | |
| 487 | -module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 488 | - | |
| 489 | -/***/ }), | |
| 490 | - | |
| 491 | -/***/ "../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js": | |
| 492 | -/*!****************************************************************************!*\ | |
| 493 | - !*** ../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***! | |
| 494 | - \****************************************************************************/ | |
| 495 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 496 | - | |
| 497 | -var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js"); | |
| 498 | -function _unsupportedIterableToArray(r, a) { | |
| 499 | - if (r) { | |
| 500 | - if ("string" == typeof r) return arrayLikeToArray(r, a); | |
| 501 | - var t = {}.toString.call(r).slice(8, -1); | |
| 502 | - 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; | |
| 503 | - } | |
| 504 | -} | |
| 505 | -module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 506 | - | |
| 507 | -/***/ }) | |
| 508 | - | |
| 509 | -/******/ }); | |
| 510 | -/************************************************************************/ | |
| 511 | -/******/ // The module cache | |
| 512 | -/******/ var __webpack_module_cache__ = {}; | |
| 513 | -/******/ | |
| 514 | -/******/ // The require function | |
| 515 | -/******/ function __webpack_require__(moduleId) { | |
| 516 | -/******/ // Check if module is in cache | |
| 517 | -/******/ var cachedModule = __webpack_module_cache__[moduleId]; | |
| 518 | -/******/ if (cachedModule !== undefined) { | |
| 519 | -/******/ return cachedModule.exports; | |
| 520 | -/******/ } | |
| 521 | -/******/ // Create a new module (and put it into the cache) | |
| 522 | -/******/ var module = __webpack_module_cache__[moduleId] = { | |
| 523 | -/******/ // no module.id needed | |
| 524 | -/******/ // no module.loaded needed | |
| 525 | -/******/ exports: {} | |
| 526 | -/******/ }; | |
| 527 | -/******/ | |
| 528 | -/******/ // Execute the module function | |
| 529 | -/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); | |
| 530 | -/******/ | |
| 531 | -/******/ // Return the exports of the module | |
| 532 | -/******/ return module.exports; | |
| 533 | -/******/ } | |
| 534 | -/******/ | |
| 535 | -/************************************************************************/ | |
| 536 | -var __webpack_exports__ = {}; | |
| 537 | -// This entry needs to be wrapped in an IIFE because it needs to be in strict mode. | |
| 538 | -(() => { | |
| 539 | -"use strict"; | |
| 540 | -/*!***********************************************!*\ | |
| 541 | - !*** ../modules/dev-tools/assets/js/index.js ***! | |
| 542 | - \***********************************************/ | |
| 543 | - | |
| 544 | - | |
| 545 | -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); | |
| 546 | -var _deprecation = _interopRequireDefault(__webpack_require__(/*! ./deprecation */ "../modules/dev-tools/assets/js/deprecation.js")); | |
| 547 | -var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../modules/dev-tools/assets/js/module.js")); | |
| 548 | -if (!window.elementorDevTools) { | |
| 549 | - window.elementorDevTools = new _module.default(new _deprecation.default()); | |
| 550 | - window.elementorDevTools.notifyBackendDeprecations(); | |
| 551 | -} | |
| 298 | +//#endregion | |
| 552 | 299 | })(); |
| 553 | - | |
| 554 | -/******/ })() | |
| 555 | -; | |
| 556 | 300 | //# sourceMappingURL=dev-tools.js.map |