Commit realizado el 12:13:52 08-04-2024
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,156 @@
|
||||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
Copyright (c) 2018 Jed Watson.
|
||||
Licensed under the MIT License (MIT), see
|
||||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @overview es6-promise - a tiny implementation of Promises/A+.
|
||||
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
|
||||
* @license Licensed under MIT license
|
||||
* See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE
|
||||
* @version v4.2.8+1e68dce6
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <http://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
CSSLint v1.0.4
|
||||
Copyright (c) 2016 Nicole Sullivan and Nicholas C. Zakas. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the 'Software'), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
*/
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
|
||||
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
||||
|
||||
/**
|
||||
* Generates className value based on the args provided. Takes any number of args which can
|
||||
* be a string or an object. The argument `foo` is short for `{ foo: true }`. If the value
|
||||
* associated with a given key is falsy, the key won't be included in the output.
|
||||
*
|
||||
* @example
|
||||
* classNames('foo', 'bar'); // => 'foo bar'
|
||||
* classNames('foo', { bar: true }); // => 'foo bar'
|
||||
* classNames({ 'foo-bar': true }); // => 'foo-bar'
|
||||
* classNames({ 'foo-bar': false }); // => ''
|
||||
* classNames({ foo: true }, { bar: true }); // => 'foo bar'
|
||||
* classNames({ foo: true, bar: true }); // => 'foo bar'
|
||||
*
|
||||
* @param {...string | object.<string, boolean>}
|
||||
*
|
||||
* @link https://github.com/JedWatson/classnames
|
||||
* @copyright 2017 Jed Watson
|
||||
* @license MIT
|
||||
* @memberof API.Utils
|
||||
* @function
|
||||
*
|
||||
* @returns {string}
|
||||
*/
|
||||
|
||||
/**
|
||||
* Lodash - A modern JavaScript utility library delivering modularity, performance & extras.
|
||||
*
|
||||
* @memberof API.Utils
|
||||
* @function
|
||||
* @link https://github.com/lodash/lodash
|
||||
* @copyright JS Foundation and other contributors <https://js.foundation/>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/**
|
||||
* This component allows you to use dynamically registered components inside of render
|
||||
* methods--including components external to this React application. Instead of explicitly
|
||||
* rendering a component, like `<SomeComponent>`, you can use `ETBuilderInjectedComponent`:
|
||||
*
|
||||
* ```jsx
|
||||
* <ETBuilderInjectedComponent matching={slug: 'some_component'} />
|
||||
* ```.
|
||||
*
|
||||
* `ETBuilderInjectedComponent` will look up the component registered with that slug in the
|
||||
* {@link ETBuilderComponentRegistry} and render it, while passing along the props you provided.
|
||||
*
|
||||
* If no matching component is found, the `ETBuilderInjectedComponent` renders an empty `<div>`.
|
||||
*
|
||||
* `ETBuilderInjectedComponent` monitors the Component Registry for changes. If a new component
|
||||
* is registered that matches the descriptor you provided, `ETBuilderInjectedComponent` will refresh.
|
||||
*
|
||||
* @property {object} props Contains the props that were defined by the caller of this component.
|
||||
* @property {object} props.matching Set of descriptors for retrieving the component to be displayed from
|
||||
* {@link ETBuilderComponentRegistry.findComponentBySlug}.
|
||||
* @property {Component} [props.fallback] An optional fallback component in case there are no matching
|
||||
* components in the Component Registry.
|
||||
* @property {string[]} [props.methods] A list of methods that should be implemented by the registered
|
||||
* component instance. If these are not implemented, the component
|
||||
* won't be rendered.
|
||||
*
|
||||
* Based on original concept and code from [Nylas Mail]{@link https://github.com/nylas/nylas-mail}.
|
||||
*
|
||||
* @copyright © 2017 Elegant Themes, Inc.
|
||||
* @copyright © 2017 Nylas, Inc.
|
||||
* @license GPL-3.0
|
||||
*/
|
||||
|
||||
/** @license React v16.13.1
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v16.14.0
|
||||
* react-jsx-runtime.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
||||
@@ -0,0 +1 @@
|
||||
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=0)}([function(e,t,n){"use strict";self.onmessage=function(e){self.postMessage(e.data)}}]);
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=1462)}({1462:function(e,t,n){"use strict";(function(e){!function(t){t("body").on("click","a",(function(e){var n=t(this).attr("href"),i=void 0!==n?n.substr(0,1):"";e.preventDefault(),"#"!==i&&t(".link-disabled").addClass("active")})),t("body").on("click",".et_pb_prompt_proceed",(function(){t(".link-disabled").removeClass("active")}));window.addEventListener("message",(function(e){var n=t('<form id="preview-data-submission" method="POST" style="display: none;"></form>'),i=e.data,r=document.documentMode;if(e.origin===et_preview_params.preview_origin){if(void 0!==r&&r<10&&(i=JSON.parse(i)),i&&i.et_pb_preview_nonce){for(var o in i){t("<textarea />",{name:o,style:"display: none; "}).val(i[o]).appendTo(n)}n.append('<input type="submit" value="submit" style="display: none;" />'),n.appendTo(".container"),t("#preview-data-submission").trigger("submit")}}else t(".et-pb-preview-loading").replaceWith(t("<h4 />",{style:"text-align: center;"}).html(et_preview_params.alert_origin_not_matched))}),!1),1!==t("#content > .content .et-pb-preview-loading").length&&"undefined"!=typeof parent&&setTimeout((function(){var n={html:t("#content > .content").html(),stylesheets:[]};e.each(window.location.search.substr(1).split("&"),(function(e,t){var i=t.split("=");void 0!==i[0]&&void 0!==i[1]&&"iframe_id"===i[0]&&(n.iframe_id=i[1])})),t('link[rel="stylesheet"]').each((function(e,i){n.stylesheets.push(t(i).attr("href"))})),parent.postMessage(n,window.location.origin)}),2e3)}(e)}).call(this,n(8))},8:function(e,t){e.exports=window.jQuery}}));
|
||||
@@ -0,0 +1 @@
|
||||
/*! ET frontend-builder-scripts.js */
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,20 @@
|
||||
/*!
|
||||
Copyright (c) 2018 Jed Watson.
|
||||
Licensed under the MIT License (MIT), see
|
||||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @overview es6-promise - a tiny implementation of Promises/A+.
|
||||
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
|
||||
* @license Licensed under MIT license
|
||||
* See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE
|
||||
* @version v4.2.8+1e68dce6
|
||||
*/
|
||||
|
||||
/**
|
||||
* postmate - A powerful, simple, promise-based postMessage library
|
||||
* @version 1.1.9
|
||||
* @link https://github.com/dollarshaveclub/postmate
|
||||
* @author Jacob Kelley <jakie8@gmail.com>
|
||||
* @license MIT */
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,6 @@
|
||||
/**
|
||||
* postmate - A powerful, simple, promise-based postMessage library
|
||||
* @version 1.1.9
|
||||
* @link https://github.com/dollarshaveclub/postmate
|
||||
* @author Jacob Kelley <jakie8@gmail.com>
|
||||
* @license MIT */
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,29 @@
|
||||
/*!
|
||||
Copyright (c) 2018 Jed Watson.
|
||||
Licensed under the MIT License (MIT), see
|
||||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @overview es6-promise - a tiny implementation of Promises/A+.
|
||||
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
|
||||
* @license Licensed under MIT license
|
||||
* See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE
|
||||
* @version v4.2.8+1e68dce6
|
||||
*/
|
||||
|
||||
/**
|
||||
* postmate - A powerful, simple, promise-based postMessage library
|
||||
* @version 1.1.9
|
||||
* @link https://github.com/dollarshaveclub/postmate
|
||||
* @author Jacob Kelley <jakie8@gmail.com>
|
||||
* @license MIT */
|
||||
|
||||
/** @license React v16.13.1
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
Reference in New Issue
Block a user