lwc 2.5.6 → 2.5.10-alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/engine/esm/es2017/engine.js +7981 -0
- package/dist/engine/iife/es2017/engine.js +8013 -0
- package/dist/engine/iife/es2017/engine.min.js +9 -0
- package/dist/engine/iife/es2017/engine_debug.js +6541 -0
- package/dist/engine/iife/es5/engine.js +6060 -0
- package/dist/engine/iife/es5/engine.min.js +23 -0
- package/dist/engine/iife/es5/engine_debug.js +4856 -0
- package/dist/engine/umd/es2017/engine.js +8014 -0
- package/dist/engine/umd/es2017/engine.min.js +9 -0
- package/dist/engine/umd/es2017/engine_debug.js +6542 -0
- package/dist/engine/umd/es5/engine.js +6061 -0
- package/dist/engine/umd/es5/engine.min.js +23 -0
- package/dist/engine/umd/es5/engine_debug.js +4857 -0
- package/dist/engine-dom/esm/es2017/engine-dom.js +521 -122
- package/dist/engine-dom/iife/es2017/engine-dom.js +522 -123
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +2 -2
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +337 -112
- package/dist/engine-dom/iife/es5/engine-dom.js +596 -185
- package/dist/engine-dom/iife/es5/engine-dom.min.js +2 -2
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +392 -165
- package/dist/engine-dom/umd/es2017/engine-dom.js +523 -124
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +2 -2
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +338 -113
- package/dist/engine-dom/umd/es5/engine-dom.js +597 -186
- package/dist/engine-dom/umd/es5/engine-dom.min.js +2 -2
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +393 -166
- package/dist/engine-server/commonjs/es2017/engine-server.js +400 -74
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +2 -2
- package/dist/engine-server/esm/es2017/engine-server.js +401 -74
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +4 -4
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +4 -4
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +4 -4
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +4 -4
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +5 -5
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +5 -5
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +5 -5
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +5 -5
- package/dist/wire-service/esm/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.js +3 -3
- package/dist/wire-service/iife/es2017/wire-service_debug.js +3 -3
- package/dist/wire-service/iife/es5/wire-service.js +3 -3
- package/dist/wire-service/iife/es5/wire-service.min.js +1 -1
- package/dist/wire-service/iife/es5/wire-service_debug.js +3 -3
- package/dist/wire-service/umd/es2017/wire-service.js +4 -4
- package/dist/wire-service/umd/es2017/wire-service_debug.js +4 -4
- package/dist/wire-service/umd/es5/wire-service.js +4 -4
- package/dist/wire-service/umd/es5/wire-service.min.js +1 -1
- package/dist/wire-service/umd/es5/wire-service_debug.js +4 -4
- package/package.json +8 -8
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
// we can't use typeof since it will fail when transpiling.
|
|
198
198
|
|
|
199
199
|
const hasNativeSymbolSupport = /*@__PURE__*/(() => Symbol('x').toString() === 'Symbol(x)')();
|
|
200
|
-
/** version: 2.5.
|
|
200
|
+
/** version: 2.5.10-alpha1 */
|
|
201
201
|
|
|
202
202
|
/*
|
|
203
203
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
539
|
-
/** version: 2.5.
|
|
539
|
+
/** version: 2.5.10-alpha1 */
|
|
540
540
|
|
|
541
541
|
/*
|
|
542
542
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5832,6 +5832,6 @@
|
|
|
5832
5832
|
|
|
5833
5833
|
configurable: true
|
|
5834
5834
|
});
|
|
5835
|
-
/** version: 2.5.
|
|
5835
|
+
/** version: 2.5.10-alpha1 */
|
|
5836
5836
|
|
|
5837
|
-
}
|
|
5837
|
+
}());
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
!function(){"use strict";const{assign:e,create:t,defineProperties:n,defineProperty:l,freeze:o,getOwnPropertyDescriptor:r,getOwnPropertyNames:i,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:s,seal:f,setPrototypeOf:h}=Object,{filter:p,find:g,indexOf:m,join:d,map:b,push:E,reduce:y,reverse:w,slice:T,splice:v,unshift:N,forEach:L}=Array.prototype,{charCodeAt:M,replace:C,slice:S,toLowerCase:O}=String.prototype;function A(e){return void 0===e}function _(e){return null===e}function H(e){return!0===e}function R(e){return!1===e}function P(e){return"function"==typeof e}function D(e){return"object"==typeof e}const $=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),B="$shadowResolver$",I="$shadowToken$",k=Node,x=k.prototype,{DOCUMENT_POSITION_CONTAINED_BY:F,DOCUMENT_POSITION_CONTAINS:W,DOCUMENT_POSITION_PRECEDING:U,DOCUMENT_POSITION_FOLLOWING:j,ELEMENT_NODE:K,TEXT_NODE:G,CDATA_SECTION_NODE:q,PROCESSING_INSTRUCTION_NODE:X,COMMENT_NODE:V,DOCUMENT_FRAGMENT_NODE:Y}=k,{appendChild:z,cloneNode:J,compareDocumentPosition:Q,insertBefore:Z,removeChild:ee,replaceChild:te,hasChildNodes:ne}=x,{contains:le}=HTMLElement.prototype,oe=r(x,"firstChild").get,re=r(x,"lastChild").get,ie=r(x,"textContent").get,ae=r(x,"parentNode").get,ce=r(x,"ownerDocument").get,ue=c.call(x,"parentElement")?r(x,"parentElement").get:r(HTMLElement.prototype,"parentElement").get,se=r(x,"textContent").set,fe=c.call(x,"childNodes")?r(x,"childNodes").get:r(HTMLElement.prototype,"childNodes").get,he=c.call(x,"isConnected")?r(x,"isConnected").get:function(){const e=ce.call(this);return null===e||0!=(Q.call(e,this)&F)},{getAttribute:pe,getBoundingClientRect:ge,getElementsByTagName:me,getElementsByTagNameNS:de,hasAttribute:be,querySelector:Ee,querySelectorAll:ye,removeAttribute:we,setAttribute:Te}=Element.prototype,ve=c.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:()=>{throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ne=r(Element.prototype,"childElementCount").get,Le=r(Element.prototype,"firstElementChild").get,Me=r(Element.prototype,"lastElementChild").get,Ce=r(HTMLElement.prototype,"innerText"),Se=Ce?Ce.get:null,Oe=Ce?Ce.set:null,Ae=r(HTMLElement.prototype,"outerText"),_e=Ae?Ae.get:null,He=Ae?Ae.set:null,Re=c.call(Element.prototype,"innerHTML")?r(Element.prototype,"innerHTML"):r(HTMLElement.prototype,"innerHTML"),Pe=Re.get,De=Re.set,$e=c.call(Element.prototype,"outerHTML")?r(Element.prototype,"outerHTML"):r(HTMLElement.prototype,"outerHTML"),Be=$e.get,Ie=$e.set,ke=r(Element.prototype,"tagName").get,xe=r(HTMLElement.prototype,"tabIndex"),Fe=xe.get,We=xe.set,Ue=c.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,je=c.call(Element.prototype,"children")?r(Element.prototype,"children").get:r(HTMLElement.prototype,"children").get,{getElementsByClassName:Ke}=HTMLElement.prototype,Ge=c.call(Element.prototype,"shadowRoot")?r(Element.prototype,"shadowRoot").get:()=>null;let qe,Xe;"undefined"!=typeof HTMLSlotElement?(qe=HTMLSlotElement.prototype.assignedNodes,Xe=HTMLSlotElement.prototype.assignedElements):(qe=()=>{throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},Xe=()=>{throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});const Ve=r(Event.prototype,"target").get,Ye=r(Event.prototype,"currentTarget").get,ze=r(FocusEvent.prototype,"relatedTarget").get,Je=c.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],Qe=r(Document.prototype,"activeElement").get,Ze=c.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,et=c.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,tt=r(Document.prototype,"defaultView").get,{createComment:nt,querySelectorAll:lt,getElementById:ot,getElementsByClassName:rt,getElementsByTagName:it,getElementsByTagNameNS:at}=Document.prototype,{getElementsByName:ct}=HTMLDocument.prototype,{addEventListener:ut,removeEventListener:st,getComputedStyle:ft,getSelection:ht}=window,pt=MutationObserver,gt=pt.prototype.observe;let mt=null;"undefined"!=typeof ShadowRoot&&(mt=ShadowRoot);const dt=!_(mt),bt=_(mt)?()=>!1:e=>e instanceof mt;const{createElement:Et}=Document.prototype;function yt(e){const t=ce.call(e);return null===t?e:t}function wt(e){const t=yt(e),n=tt.call(t);if(null===n)throw new TypeError;return n}let Tt;function vt(e){if(A(Tt)){const t=yt(e);Tt=t.body&&"temporary-bypass"===pe.call(t.body,"data-global-patching-bypass")}return H(Tt)}function Nt(e){const t=e.length,n=[];if(t>0)for(let l=0;l<t;l++)n[l]=e[l];return n}"undefined"==typeof HTMLSlotElement&&function(){class e{}h(e,HTMLElement.constructor),h(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,l(Document.prototype,"createElement",{value:function(t,n){const l=Et.apply(this,T.call(arguments));return 4===t.length&&115===M.call(t,0)&&108===M.call(t,1)&&111===M.call(t,2)&&116===M.call(t,3)&&h(l,e.prototype),l}})}(),$.lwcRuntimeFlags||Object.defineProperty($,"lwcRuntimeFlags",{value:t(null)});const Lt=$.lwcRuntimeFlags,Mt="undefined"!=typeof EventTarget?EventTarget.prototype:k.prototype,{addEventListener:Ct,dispatchEvent:St,removeEventListener:Ot}=Mt,At=new WeakMap,_t=new WeakMap;function Ht(e,t,n){if(t===n)return!0;let l=_t.get(e);return A(l)&&(l=e.composedPath(),_t.set(e,l)),l.includes(n)}function Rt(e){if(!function(e){return P(e)||D(e)&&!_(e)&&P(e.handleEvent)}(e))return e;let t=At.get(e);return A(t)&&(t=function(t){const n=Ye.call(t),{composed:l}=t;let o;if(Lt.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)o=!(cl.has(t)&&R(l));else{o=Ht(t,xt(t),n)}if(o)return P(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},At.set(e,t)),t}const Pt=new WeakMap;function Dt(e,t){return!!(Q.call(e,t)&F)}const $t={composed:!1};function Bt(e,t){let n=e.getRootNode(t);return ll(n)&&(n=el(n)),n}const It=new WeakMap;function kt(e){let n=It.get(e);return A(n)&&(n=t(null),It.set(e,n)),n}function xt(e){var t;return null!==(t=cl.get(e))&&void 0!==t?t:Ve.call(e)}const Ft=new WeakMap;function Wt(e){if(!P(e))throw new TypeError;let t=Ft.get(e);return A(t)&&(t=function(t){let n,l=Ye.call(t);if(bt(l)||(l=tl(l)),Lt.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)n=function(e){const{composed:t}=e,n=Ve.call(e),l=Ye.call(e);if(n===l)return cl.get(e)===tl(n);if(H(t))return!0;if(H(cl.has(e)))return!1;const o=Bt(n,$t),r=l;return Dt(o,r)||o===r}(t);else{n=Ht(t,xt(t),l)}n&&e.call(l,t)},t.placement=1,Ft.set(e,t)),t}const Ut=new WeakMap;function jt(e){if(!P(e))throw new TypeError;let t=Ut.get(e);return A(t)&&(t=function(t){const n=Ye.call(t);let l;if(Lt.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)l=function(e){const{composed:t}=e;if(H(t))return!0;if(cl.has(e))return!1;const n=Ve.call(e),l=Ye.call(e);if(n===l)return!0;const o=Bt(n,$t);return Dt(o,l)}(t);else{l=Ht(t,xt(t),n)}l&&e.call(n,t)},t.placement=0,Ut.set(e,t)),t}function Kt(e){let t=!1,n=!1;const{type:o,stopImmediatePropagation:r,stopPropagation:i}=e,a=kt(Ye.call(e))[o];l(e,"stopImmediatePropagation",{value(){t=!0,r.call(e)},writable:!0,enumerable:!0,configurable:!0}),l(e,"stopPropagation",{value(){n=!0,i.call(e)},writable:!0,enumerable:!0,configurable:!0});const c=T.call(a);function u(n){L.call(c,(l=>{R(t)&&l.placement===n&&-1!==m.call(a,l)&&l.call(void 0,e)}))}Pt.set(e,1),u(1),R(t)&&R(n)&&(Pt.set(e,0),u(0)),Pt.set(e,2)}function Gt(e,t,n){const l=kt(e);let o=l[t];A(o)&&(o=l[t]=[]),-1===m.call(o,n)&&(0===o.length&&Ct.call(e,t,Kt),E.call(o,n))}function qt(e,t,n){let l,o;A(o=kt(e)[t])||-1===(l=m.call(o,n))||(v.call(o,l,1),0===o.length&&Ot.call(e,t,Kt))}function Xt(e,t,n){if(P(t)){Gt(this,e,jt(t))}}function Vt(e,t,n){if(P(t)){qt(this,e,jt(t))}}const Yt="$$HostElementKey$$",zt="$$ShadowedNodeKey$$";function Jt(e,t,n){const l=e;{const{value:e}=n;l[t]=e}}function Qt(e){return e[Yt]}function Zt(e){let t,n=e;for(;!_(n);){if(t=Qt(n),!A(t))return t;n=ae.call(n)}}function en(e){return e[zt]}function tn(e){return!A(Qt(e))}function nn(e){let t=ue.call(e);for(;!_(t)&&an(t);)e=t,t=ue.call(e);return e}function ln(e,t){const n=en(e);let l=t instanceof Element?t:ue.call(t);for(;!_(l)&&l!==e;){const t=Zt(l),o=ue.call(l);if(t===n)return an(l);if(o===e)return!1;if(_(o)||Zt(o)===t)l=o;else{if(!an(o))return!1;if(l=on(nn(o)),!_(l)){if(l===e)return!0;if(Zt(l)===n)return!0}}}return!1}function on(e){if(!(e instanceof k))return null;const t=Zt(e);if(A(t))return null;let n=e;for(;!_(n)&&en(n)!==t;)n=ae.call(n);return _(n)?null:n}function rn(e){return an(e)&&tn(e)}function an(e){return e instanceof HTMLSlotElement}function cn(e,t){const n=Zt(t);return A(n)||en(e)===n}function un(e){const t=el(e);return hn(t,Nt(fe.call(t)))}function sn(e,t){const n=[];for(let l=0,o=t.length;l<o;l+=1){const o=t[l];!cn(e,o)&&ln(e,o)&&E.call(n,o)}return n}function fn(e,t){for(let n=0,l=t.length;n<l;n+=1){const l=t[n];if(!cn(e,l)&&ln(e,l))return l}return null}function hn(e,t){const n=[];for(let l=0,o=t.length;l<o;l+=1){const o=t[l];cn(e,o)&&E.call(n,o)}return n}function pn(e,t){for(let n=0,l=t.length;n<l;n+=1)if(cn(e,t[n]))return t[n];return null}function gn(e){if(!nl(e)&&!an(e)){return Nt(fe.call(e))}if(nl(e)){const t=Nt(ye.call(e,"slot")),n=Jn(tl(e));return y.call(t,((e,t)=>(n===Jn(t)&&E.apply(e,mn(t)),e)),[])}{const t=Nt(fe.call(e)),n=Jn(e);return p.call(t,(e=>n===Jn(e)))}}function mn(e){const t=on(e);if(_(t))return[];const n=Nt(fe.call(e));return p.call(n,(e=>!tn(e)||!cn(t,e)))}function dn(e){if(e.nodeType===K){const t=gn(e);let n="";for(let e=0,l=t.length;e<l;e+=1){const l=t[e];l.nodeType!==V&&(n+=dn(l))}return n}return e.nodeValue}const bn=new WeakMap;function En(){throw new TypeError("Illegal constructor")}function yn(e){const n=t(En.prototype);return bn.set(n,e),L.call(e,((e,t)=>{l(n,t,{value:e,enumerable:!0,configurable:!0})})),n}En.prototype=t(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:En},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return bn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(e,t){L.call(bn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return b.call(bn.get(this),((e,t)=>[t,e]))}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return b.call(bn.get(this),((e,t)=>t))}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return bn.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let e=0;return{next:()=>{const t=bn.get(this);return e<t.length?{value:t[e++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get:()=>"NodeList"},toString:{writable:!0,configurable:!0,value:()=>"[object NodeList]"}}),h(En,NodeList);const wn=new WeakMap;function Tn(){throw new TypeError("Illegal constructor")}function vn(e){const n=t(Tn.prototype);return wn.set(n,e),L.call(e,((e,t)=>{l(n,t,{value:e,enumerable:!0,configurable:!0})})),n}Tn.prototype=t(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:Tn},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return wn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(e){if(""===e)return null;const t=wn.get(this);for(let n=0,l=t.length;n<l;n++){const n=t[l];if(e===pe.call(n,"id")||e===pe.call(n,"name"))return n}return null}},[Symbol.toStringTag]:{configurable:!0,get:()=>"HTMLCollection"},toString:{writable:!0,configurable:!0,value:()=>"[object HTMLCollection]"}}),h(Tn,HTMLCollection);const Nn=/[&\u00A0"]/g,Ln=/[&\u00A0<>]/g,{replace:Mn,toLowerCase:Cn}=String.prototype;function Sn(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function On(e){return Mn.call(e,Nn,Sn)}const An=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),_n=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Hn(e){switch(e.nodeType){case K:{const{attributes:t}=e,n=ke.call(e);let l="<"+Cn.call(n);for(let e,n=0;e=t[n];n++)l+=" "+e.name+'="'+On(e.value)+'"';return l+=">",An.has(n)?l:l+function(e){let t="";const n=gn(e);for(let e=0,l=n.length;e<l;e+=1)t+=Hn(n[e]);return t}(e)+"</"+Cn.call(n)+">"}case G:{const{data:n,parentNode:l}=e;return l instanceof Element&&_n.has(ke.call(l))?n:(t=n,Mn.call(t,Ln,Sn))}case q:return`<!CDATA[[${e.data}]]>`;case X:return`<?${e.target} ${e.data}?>`;case V:return`\x3c!--${e.data}--\x3e`;default:return""}var t}function Rn(e){return rn(e)||nl(e)}function Pn(e,t){const n=on(e);if(t===n)return tl(n);if(t instanceof Element){if(Zt(e)===Zt(t))return t;if(!_(n)&&an(t)){const e=on(t);if(!_(e)&&cn(n,e))return e}}return null}function Dn(){return qn(this).length>0}function $n(){return qn(this)[0]||null}function Bn(){const e=qn(this);return e[e.length-1]||null}function In(){return dn(this)}function kn(){const e=ae.call(this);return _(e)?e:Pn(this,e)}function xn(){const e=ae.call(this);if(_(e))return null;const t=Pn(this,e);return t instanceof Element?t:null}function Fn(e){return this.getRootNode()===e?10:Qt(this)!==Qt(e)?35:Q.call(this,e)}function Wn(e){return null!=e&&Qt(this)===Qt(e)&&0!=(Q.call(this,e)&F)}function Un(e){const t=J.call(this,!1);if(!e)return t;const n=qn(this);for(let e=0,l=n.length;e<l;e+=1)t.appendChild(n[e].cloneNode(!0));return t}function jn(){if(nl(this)){const e=on(this);return yn(_(e)?[]:hn(e,gn(this)))}return fe.call(this)}const Kn=k.prototype.getRootNode,Gn=A(Kn)?function(){let e,t=this;for(;!_(e=ae.call(t));)t=e;return t}:Kn;n(k.prototype,{firstChild:{get(){return Rn(this)?$n.call(this):oe.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return Rn(this)?Bn.call(this):re.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return Lt.ENABLE_NODE_PATCH?vt(this)?ie.call(this):In.call(this):tn(this)||nl(this)?In.call(this):ie.call(this)},set:function(e){se.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get(){if(tn(this))return kn.call(this);const e=ae.call(this);return!_(e)&&rn(e)?on(e):e},enumerable:!0,configurable:!0},parentElement:{get(){if(tn(this))return xn.call(this);const e=ue.call(this);return!_(e)&&rn(e)?on(e):e},enumerable:!0,configurable:!0},childNodes:{get(){return Rn(this)?jn.call(this):fe.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return Rn(this)?Dn.call(this):ne.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(e){return vt(this)?Q.call(this,e):Fn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value(e){return this===e||(Lt.ENABLE_NODE_PATCH?vt(this)?le.call(this,e):Wn.call(this,e):null!=e&&(tn(this)||nl(this)?Wn.call(this,e):le.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(e){return Lt.ENABLE_NODE_PATCH?H(e)?vt(this)?J.call(this,e):Un.call(this,e):J.call(this,e):tn(this)||nl(this)?Un.call(this,e):J.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){return H(!A(e)&&!!e.composed)?Gn.call(this,e):function(e){const t=on(e);return _(t)?Gn.call(e):tl(t)}(this)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return he.call(this)}}});const qn=function(e){return e.childNodes};function Xn(e,t,n,l){const o=et.call(t,n,l),r=[],i=function(e){var t;const n=[];let l=e.getRootNode();for(;!A(l);)n.push(l),l=null===(t=l.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!_(o))for(let e=0;e<o.length;e++){const t=o[e];-1===i.indexOf(t.getRootNode())||rn(t)||r.push(t)}return r}c.call(HTMLElement.prototype,"contains")&&l(HTMLElement.prototype,"contains",r(k.prototype,"contains")),c.call(HTMLElement.prototype,"parentElement")&&l(HTMLElement.prototype,"parentElement",r(k.prototype,"parentElement"));const Vn=new WeakMap,{createDocumentFragment:Yn}=document;function zn(e){const t=Vn.get(e);if(A(t))throw new TypeError;return t}function Jn(e){return e.$shadowResolver$}function Qn(e,t){e.$shadowResolver$=t}function Zn(e){return zn(e).delegatesFocus}function el(e){return zn(e).host}function tl(e){return zn(e).shadowRoot}function nl(e){const t=Vn.get(e);return!A(t)&&e===t.host}function ll(e){const t=Vn.get(e);return!A(t)&&e===t.shadowRoot}l(k.prototype,B,{set(e){var t,n;A(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,Jt(t,Yt,{value:n,configurable:!0}))},get(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),l($,"$isNativeShadowRootDefined$",{value:dt});let ol=0;function rl(e,t){if(Vn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");const{mode:n,delegatesFocus:l}=t,o=yt(e),r=Yn.call(o),i={mode:n,delegatesFocus:!!l,host:e,shadowRoot:r};Vn.set(r,i),Vn.set(e,i);const a=()=>r,c=a.nodeKey=ol++;return Jt(e,zt,{value:c}),Qn(r,a),h(r,sl.prototype),r}const il={constructor:{writable:!0,configurable:!0,value:sl},toString:{writable:!0,configurable:!0,value:()=>"[object ShadowRoot]"}},al={activeElement:{enumerable:!0,configurable:!0,get(){const e=el(this),t=yt(e),n=Qe.call(t);if(_(n))return n;if(0==(Q.call(e,n)&F))return null;let l=n;for(;!cn(e,l);)l=ue.call(l);return an(l)?null:l}},delegatesFocus:{configurable:!0,get(){return zn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return pl(this,yt(el(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return Xn(this,yt(el(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return el(this)}},mode:{configurable:!0,get(){return zn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},cl=new WeakMap,ul={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return Z.call(el(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return ee.call(el(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return z.call(el(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return te.call(el(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,t,n){!function(e,t,n,l){P(n)&&Gt(el(e),t,Wt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(e){return cl.set(e,this),St.apply(el(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,t,n){!function(e,t,n,l){P(n)&&qt(el(e),t,Wt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get(){return el(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return yn(un(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value(e){const t=el(this);return this===e?0:this.contains(e)?20:Q.call(t,e)&F?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(e){if(this===e)return!0;const t=el(this);return 0!=(Q.call(t,e)&F)&&cn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get(){return qn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const e=qn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return qn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return he.call(el(this))}},nextSibling:{enumerable:!0,configurable:!0,get:()=>null},previousSibling:{enumerable:!0,configurable:!0,get:()=>null},nodeName:{enumerable:!0,configurable:!0,get:()=>"#document-fragment"},nodeType:{enumerable:!0,configurable:!0,get:()=>11},nodeValue:{enumerable:!0,configurable:!0,get:()=>null},ownerDocument:{enumerable:!0,configurable:!0,get(){return el(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:()=>null},parentNode:{enumerable:!0,configurable:!0,get:()=>null},textContent:{enumerable:!0,configurable:!0,get(){const e=qn(this);let t="";for(let n=0,l=e.length;n<l;n+=1){const l=e[n];l.nodeType!==V&&(t+=dn(l))}return t},set(e){const t=el(this);se.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(e){return!A(e)&&H(e.composed)?el(this).getRootNode(e):this}}};function sl(){throw new TypeError("Illegal constructor")}function fl(e,t){const n=[];let l;if(e instanceof Window)l=e;else{if(!(e instanceof k))return n;l=e.getRootNode()}let o,r=e;for(;!_(r);)if(n.push(r),r instanceof Element||r instanceof Text){const e=r.assignedSlot;r=_(e)?r.parentNode:e}else r=!ll(r)&&!bt(r)||!t&&r===l?r instanceof k?r.parentNode:null:r.host;return o=e instanceof Window?e.document:yt(e),n[n.length-1]===o&&n.push(window),n}
|
|
1
|
+
!function(){"use strict";const{assign:e,create:t,defineProperties:n,defineProperty:l,freeze:o,getOwnPropertyDescriptor:r,getOwnPropertyNames:i,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:s,seal:f,setPrototypeOf:h}=Object,{filter:p,find:g,indexOf:m,join:d,map:b,push:E,reduce:y,reverse:w,slice:T,splice:v,unshift:N,forEach:L}=Array.prototype,{charCodeAt:M,replace:C,slice:S,toLowerCase:O}=String.prototype;function A(e){return void 0===e}function _(e){return null===e}function H(e){return!0===e}function R(e){return!1===e}function P(e){return"function"==typeof e}function D(e){return"object"==typeof e}const $=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),B="$shadowResolver$",I="$shadowToken$",k=Node,x=k.prototype,{DOCUMENT_POSITION_CONTAINED_BY:F,DOCUMENT_POSITION_CONTAINS:W,DOCUMENT_POSITION_PRECEDING:U,DOCUMENT_POSITION_FOLLOWING:j,ELEMENT_NODE:K,TEXT_NODE:G,CDATA_SECTION_NODE:q,PROCESSING_INSTRUCTION_NODE:X,COMMENT_NODE:V,DOCUMENT_FRAGMENT_NODE:Y}=k,{appendChild:z,cloneNode:J,compareDocumentPosition:Q,insertBefore:Z,removeChild:ee,replaceChild:te,hasChildNodes:ne}=x,{contains:le}=HTMLElement.prototype,oe=r(x,"firstChild").get,re=r(x,"lastChild").get,ie=r(x,"textContent").get,ae=r(x,"parentNode").get,ce=r(x,"ownerDocument").get,ue=c.call(x,"parentElement")?r(x,"parentElement").get:r(HTMLElement.prototype,"parentElement").get,se=r(x,"textContent").set,fe=c.call(x,"childNodes")?r(x,"childNodes").get:r(HTMLElement.prototype,"childNodes").get,he=c.call(x,"isConnected")?r(x,"isConnected").get:function(){const e=ce.call(this);return null===e||0!=(Q.call(e,this)&F)},{getAttribute:pe,getBoundingClientRect:ge,getElementsByTagName:me,getElementsByTagNameNS:de,hasAttribute:be,querySelector:Ee,querySelectorAll:ye,removeAttribute:we,setAttribute:Te}=Element.prototype,ve=c.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:()=>{throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ne=r(Element.prototype,"childElementCount").get,Le=r(Element.prototype,"firstElementChild").get,Me=r(Element.prototype,"lastElementChild").get,Ce=r(HTMLElement.prototype,"innerText"),Se=Ce?Ce.get:null,Oe=Ce?Ce.set:null,Ae=r(HTMLElement.prototype,"outerText"),_e=Ae?Ae.get:null,He=Ae?Ae.set:null,Re=c.call(Element.prototype,"innerHTML")?r(Element.prototype,"innerHTML"):r(HTMLElement.prototype,"innerHTML"),Pe=Re.get,De=Re.set,$e=c.call(Element.prototype,"outerHTML")?r(Element.prototype,"outerHTML"):r(HTMLElement.prototype,"outerHTML"),Be=$e.get,Ie=$e.set,ke=r(Element.prototype,"tagName").get,xe=r(HTMLElement.prototype,"tabIndex"),Fe=xe.get,We=xe.set,Ue=c.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,je=c.call(Element.prototype,"children")?r(Element.prototype,"children").get:r(HTMLElement.prototype,"children").get,{getElementsByClassName:Ke}=HTMLElement.prototype,Ge=c.call(Element.prototype,"shadowRoot")?r(Element.prototype,"shadowRoot").get:()=>null;let qe,Xe;"undefined"!=typeof HTMLSlotElement?(qe=HTMLSlotElement.prototype.assignedNodes,Xe=HTMLSlotElement.prototype.assignedElements):(qe=()=>{throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},Xe=()=>{throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});const Ve=r(Event.prototype,"target").get,Ye=r(Event.prototype,"currentTarget").get,ze=r(FocusEvent.prototype,"relatedTarget").get,Je=c.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],Qe=r(Document.prototype,"activeElement").get,Ze=c.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,et=c.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,tt=r(Document.prototype,"defaultView").get,{createComment:nt,querySelectorAll:lt,getElementById:ot,getElementsByClassName:rt,getElementsByTagName:it,getElementsByTagNameNS:at}=Document.prototype,{getElementsByName:ct}=HTMLDocument.prototype,{addEventListener:ut,removeEventListener:st,getComputedStyle:ft,getSelection:ht}=window,pt=MutationObserver,gt=pt.prototype.observe;let mt=null;"undefined"!=typeof ShadowRoot&&(mt=ShadowRoot);const dt=!_(mt),bt=_(mt)?()=>!1:e=>e instanceof mt;const{createElement:Et}=Document.prototype;function yt(e){const t=ce.call(e);return null===t?e:t}function wt(e){const t=yt(e),n=tt.call(t);if(null===n)throw new TypeError;return n}let Tt;function vt(e){if(A(Tt)){const t=yt(e);Tt=t.body&&"temporary-bypass"===pe.call(t.body,"data-global-patching-bypass")}return H(Tt)}function Nt(e){const t=e.length,n=[];if(t>0)for(let l=0;l<t;l++)n[l]=e[l];return n}"undefined"==typeof HTMLSlotElement&&function(){class e{}h(e,HTMLElement.constructor),h(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,l(Document.prototype,"createElement",{value:function(t,n){const l=Et.apply(this,T.call(arguments));return 4===t.length&&115===M.call(t,0)&&108===M.call(t,1)&&111===M.call(t,2)&&116===M.call(t,3)&&h(l,e.prototype),l}})}(),$.lwcRuntimeFlags||Object.defineProperty($,"lwcRuntimeFlags",{value:t(null)});const Lt=$.lwcRuntimeFlags,Mt="undefined"!=typeof EventTarget?EventTarget.prototype:k.prototype,{addEventListener:Ct,dispatchEvent:St,removeEventListener:Ot}=Mt,At=new WeakMap,_t=new WeakMap;function Ht(e,t,n){if(t===n)return!0;let l=_t.get(e);return A(l)&&(l=e.composedPath(),_t.set(e,l)),l.includes(n)}function Rt(e){if(!function(e){return P(e)||D(e)&&!_(e)&&P(e.handleEvent)}(e))return e;let t=At.get(e);return A(t)&&(t=function(t){const n=Ye.call(t),{composed:l}=t;let o;if(Lt.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)o=!(cl.has(t)&&R(l));else{o=Ht(t,xt(t),n)}if(o)return P(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},At.set(e,t)),t}const Pt=new WeakMap;function Dt(e,t){return!!(Q.call(e,t)&F)}const $t={composed:!1};function Bt(e,t){let n=e.getRootNode(t);return ll(n)&&(n=el(n)),n}const It=new WeakMap;function kt(e){let n=It.get(e);return A(n)&&(n=t(null),It.set(e,n)),n}function xt(e){var t;return null!==(t=cl.get(e))&&void 0!==t?t:Ve.call(e)}const Ft=new WeakMap;function Wt(e){if(!P(e))throw new TypeError;let t=Ft.get(e);return A(t)&&(t=function(t){let n,l=Ye.call(t);if(bt(l)||(l=tl(l)),Lt.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)n=function(e){const{composed:t}=e,n=Ve.call(e),l=Ye.call(e);if(n===l)return cl.get(e)===tl(n);if(H(t))return!0;if(H(cl.has(e)))return!1;const o=Bt(n,$t),r=l;return Dt(o,r)||o===r}(t);else{n=Ht(t,xt(t),l)}n&&e.call(l,t)},t.placement=1,Ft.set(e,t)),t}const Ut=new WeakMap;function jt(e){if(!P(e))throw new TypeError;let t=Ut.get(e);return A(t)&&(t=function(t){const n=Ye.call(t);let l;if(Lt.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)l=function(e){const{composed:t}=e;if(H(t))return!0;if(cl.has(e))return!1;const n=Ve.call(e),l=Ye.call(e);if(n===l)return!0;const o=Bt(n,$t);return Dt(o,l)}(t);else{l=Ht(t,xt(t),n)}l&&e.call(n,t)},t.placement=0,Ut.set(e,t)),t}function Kt(e){let t=!1,n=!1;const{type:o,stopImmediatePropagation:r,stopPropagation:i}=e,a=kt(Ye.call(e))[o];l(e,"stopImmediatePropagation",{value(){t=!0,r.call(e)},writable:!0,enumerable:!0,configurable:!0}),l(e,"stopPropagation",{value(){n=!0,i.call(e)},writable:!0,enumerable:!0,configurable:!0});const c=T.call(a);function u(n){L.call(c,(l=>{R(t)&&l.placement===n&&-1!==m.call(a,l)&&l.call(void 0,e)}))}Pt.set(e,1),u(1),R(t)&&R(n)&&(Pt.set(e,0),u(0)),Pt.set(e,2)}function Gt(e,t,n){const l=kt(e);let o=l[t];A(o)&&(o=l[t]=[]),-1===m.call(o,n)&&(0===o.length&&Ct.call(e,t,Kt),E.call(o,n))}function qt(e,t,n){let l,o;A(o=kt(e)[t])||-1===(l=m.call(o,n))||(v.call(o,l,1),0===o.length&&Ot.call(e,t,Kt))}function Xt(e,t,n){if(P(t)){Gt(this,e,jt(t))}}function Vt(e,t,n){if(P(t)){qt(this,e,jt(t))}}const Yt="$$HostElementKey$$",zt="$$ShadowedNodeKey$$";function Jt(e,t,n){const l=e;{const{value:e}=n;l[t]=e}}function Qt(e){return e[Yt]}function Zt(e){let t,n=e;for(;!_(n);){if(t=Qt(n),!A(t))return t;n=ae.call(n)}}function en(e){return e[zt]}function tn(e){return!A(Qt(e))}function nn(e){let t=ue.call(e);for(;!_(t)&&an(t);)e=t,t=ue.call(e);return e}function ln(e,t){const n=en(e);let l=t instanceof Element?t:ue.call(t);for(;!_(l)&&l!==e;){const t=Zt(l),o=ue.call(l);if(t===n)return an(l);if(o===e)return!1;if(_(o)||Zt(o)===t)l=o;else{if(!an(o))return!1;if(l=on(nn(o)),!_(l)){if(l===e)return!0;if(Zt(l)===n)return!0}}}return!1}function on(e){if(!(e instanceof k))return null;const t=Zt(e);if(A(t))return null;let n=e;for(;!_(n)&&en(n)!==t;)n=ae.call(n);return _(n)?null:n}function rn(e){return an(e)&&tn(e)}function an(e){return e instanceof HTMLSlotElement}function cn(e,t){const n=Zt(t);return A(n)||en(e)===n}function un(e){const t=el(e);return hn(t,Nt(fe.call(t)))}function sn(e,t){const n=[];for(let l=0,o=t.length;l<o;l+=1){const o=t[l];!cn(e,o)&&ln(e,o)&&E.call(n,o)}return n}function fn(e,t){for(let n=0,l=t.length;n<l;n+=1){const l=t[n];if(!cn(e,l)&&ln(e,l))return l}return null}function hn(e,t){const n=[];for(let l=0,o=t.length;l<o;l+=1){const o=t[l];cn(e,o)&&E.call(n,o)}return n}function pn(e,t){for(let n=0,l=t.length;n<l;n+=1)if(cn(e,t[n]))return t[n];return null}function gn(e){if(!nl(e)&&!an(e)){return Nt(fe.call(e))}if(nl(e)){const t=Nt(ye.call(e,"slot")),n=Jn(tl(e));return y.call(t,((e,t)=>(n===Jn(t)&&E.apply(e,mn(t)),e)),[])}{const t=Nt(fe.call(e)),n=Jn(e);return p.call(t,(e=>n===Jn(e)))}}function mn(e){const t=on(e);if(_(t))return[];const n=Nt(fe.call(e));return p.call(n,(e=>!tn(e)||!cn(t,e)))}function dn(e){switch(e.nodeType){case K:{const t=gn(e);let n="";for(let e=0,l=t.length;e<l;e+=1){const l=t[e];l.nodeType!==V&&(n+=dn(l))}return n}default:return e.nodeValue}}const bn=new WeakMap;function En(){throw new TypeError("Illegal constructor")}function yn(e){const n=t(En.prototype);return bn.set(n,e),L.call(e,((e,t)=>{l(n,t,{value:e,enumerable:!0,configurable:!0})})),n}En.prototype=t(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:En},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return bn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(e,t){L.call(bn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return b.call(bn.get(this),((e,t)=>[t,e]))}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return b.call(bn.get(this),((e,t)=>t))}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return bn.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let e=0;return{next:()=>{const t=bn.get(this);return e<t.length?{value:t[e++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get:()=>"NodeList"},toString:{writable:!0,configurable:!0,value:()=>"[object NodeList]"}}),h(En,NodeList);const wn=new WeakMap;function Tn(){throw new TypeError("Illegal constructor")}function vn(e){const n=t(Tn.prototype);return wn.set(n,e),L.call(e,((e,t)=>{l(n,t,{value:e,enumerable:!0,configurable:!0})})),n}Tn.prototype=t(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:Tn},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return wn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(e){if(""===e)return null;const t=wn.get(this);for(let n=0,l=t.length;n<l;n++){const n=t[l];if(e===pe.call(n,"id")||e===pe.call(n,"name"))return n}return null}},[Symbol.toStringTag]:{configurable:!0,get:()=>"HTMLCollection"},toString:{writable:!0,configurable:!0,value:()=>"[object HTMLCollection]"}}),h(Tn,HTMLCollection);const Nn=/[&\u00A0"]/g,Ln=/[&\u00A0<>]/g,{replace:Mn,toLowerCase:Cn}=String.prototype;function Sn(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function On(e){return Mn.call(e,Nn,Sn)}const An=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),_n=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Hn(e){switch(e.nodeType){case K:{const{attributes:t}=e,n=ke.call(e);let l="<"+Cn.call(n);for(let e,n=0;e=t[n];n++)l+=" "+e.name+'="'+On(e.value)+'"';return l+=">",An.has(n)?l:l+function(e){let t="";const n=gn(e);for(let e=0,l=n.length;e<l;e+=1)t+=Hn(n[e]);return t}(e)+"</"+Cn.call(n)+">"}case G:{const{data:n,parentNode:l}=e;return l instanceof Element&&_n.has(ke.call(l))?n:(t=n,Mn.call(t,Ln,Sn))}case q:return`<!CDATA[[${e.data}]]>`;case X:return`<?${e.target} ${e.data}?>`;case V:return`\x3c!--${e.data}--\x3e`;default:return""}var t}function Rn(e){return rn(e)||nl(e)}function Pn(e,t){const n=on(e);if(t===n)return tl(n);if(t instanceof Element){if(Zt(e)===Zt(t))return t;if(!_(n)&&an(t)){const e=on(t);if(!_(e)&&cn(n,e))return e}}return null}function Dn(){return qn(this).length>0}function $n(){return qn(this)[0]||null}function Bn(){const e=qn(this);return e[e.length-1]||null}function In(){return dn(this)}function kn(){const e=ae.call(this);return _(e)?e:Pn(this,e)}function xn(){const e=ae.call(this);if(_(e))return null;const t=Pn(this,e);return t instanceof Element?t:null}function Fn(e){return this.getRootNode()===e?10:Qt(this)!==Qt(e)?35:Q.call(this,e)}function Wn(e){return null!=e&&Qt(this)===Qt(e)&&0!=(Q.call(this,e)&F)}function Un(e){const t=J.call(this,!1);if(!e)return t;const n=qn(this);for(let e=0,l=n.length;e<l;e+=1)t.appendChild(n[e].cloneNode(!0));return t}function jn(){if(nl(this)){const e=on(this);return yn(_(e)?[]:hn(e,gn(this)))}return fe.call(this)}const Kn=k.prototype.getRootNode,Gn=A(Kn)?function(){let e,t=this;for(;!_(e=ae.call(t));)t=e;return t}:Kn;n(k.prototype,{firstChild:{get(){return Rn(this)?$n.call(this):oe.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return Rn(this)?Bn.call(this):re.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return Lt.ENABLE_NODE_PATCH?vt(this)?ie.call(this):In.call(this):tn(this)||nl(this)?In.call(this):ie.call(this)},set:function(e){se.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get(){if(tn(this))return kn.call(this);const e=ae.call(this);return!_(e)&&rn(e)?on(e):e},enumerable:!0,configurable:!0},parentElement:{get(){if(tn(this))return xn.call(this);const e=ue.call(this);return!_(e)&&rn(e)?on(e):e},enumerable:!0,configurable:!0},childNodes:{get(){return Rn(this)?jn.call(this):fe.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return Rn(this)?Dn.call(this):ne.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(e){return vt(this)?Q.call(this,e):Fn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value(e){return this===e||(Lt.ENABLE_NODE_PATCH?vt(this)?le.call(this,e):Wn.call(this,e):null!=e&&(tn(this)||nl(this)?Wn.call(this,e):le.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(e){return Lt.ENABLE_NODE_PATCH?H(e)?vt(this)?J.call(this,e):Un.call(this,e):J.call(this,e):tn(this)||nl(this)?Un.call(this,e):J.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){return H(!A(e)&&!!e.composed)?Gn.call(this,e):function(e){const t=on(e);return _(t)?Gn.call(e):tl(t)}(this)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return he.call(this)}}});const qn=function(e){return e.childNodes};function Xn(e,t,n,l){const o=et.call(t,n,l),r=[],i=function(e){var t;const n=[];let l=e.getRootNode();for(;!A(l);)n.push(l),l=null===(t=l.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!_(o))for(let e=0;e<o.length;e++){const t=o[e];-1===i.indexOf(t.getRootNode())||rn(t)||r.push(t)}return r}c.call(HTMLElement.prototype,"contains")&&l(HTMLElement.prototype,"contains",r(k.prototype,"contains")),c.call(HTMLElement.prototype,"parentElement")&&l(HTMLElement.prototype,"parentElement",r(k.prototype,"parentElement"));const Vn=new WeakMap,{createDocumentFragment:Yn}=document;function zn(e){const t=Vn.get(e);if(A(t))throw new TypeError;return t}function Jn(e){return e.$shadowResolver$}function Qn(e,t){e.$shadowResolver$=t}function Zn(e){return zn(e).delegatesFocus}function el(e){return zn(e).host}function tl(e){return zn(e).shadowRoot}function nl(e){const t=Vn.get(e);return!A(t)&&e===t.host}function ll(e){const t=Vn.get(e);return!A(t)&&e===t.shadowRoot}l(k.prototype,B,{set(e){var t,n;A(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,Jt(t,Yt,{value:n,configurable:!0}))},get(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),l($,"$isNativeShadowRootDefined$",{value:dt});let ol=0;function rl(e,t){if(Vn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");const{mode:n,delegatesFocus:l}=t,o=yt(e),r=Yn.call(o),i={mode:n,delegatesFocus:!!l,host:e,shadowRoot:r};Vn.set(r,i),Vn.set(e,i);const a=()=>r,c=a.nodeKey=ol++;return Jt(e,zt,{value:c}),Qn(r,a),h(r,ul.prototype),r}const il={constructor:{writable:!0,configurable:!0,value:ul},toString:{writable:!0,configurable:!0,value:()=>"[object ShadowRoot]"}},al={activeElement:{enumerable:!0,configurable:!0,get(){const e=el(this),t=yt(e),n=Qe.call(t);if(_(n))return n;if(0==(Q.call(e,n)&F))return null;let l=n;for(;!cn(e,l);)l=ue.call(l);return an(l)?null:l}},delegatesFocus:{configurable:!0,get(){return zn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return hl(this,yt(el(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return Xn(this,yt(el(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return el(this)}},mode:{configurable:!0,get(){return zn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},cl=new WeakMap;function ul(){throw new TypeError("Illegal constructor")}function sl(e,t){const n=[];let l;if(e instanceof Window)l=e;else{if(!(e instanceof k))return n;l=e.getRootNode()}let o,r=e;for(;!_(r);)if(n.push(r),r instanceof Element||r instanceof Text){const e=r.assignedSlot;r=_(e)?r.parentNode:e}else r=!ll(r)&&!bt(r)||!t&&r===l?r instanceof k?r.parentNode:null:r.host;return o=e instanceof Window?e.document:yt(e),n[n.length-1]===o&&n.push(window),n}
|
|
2
2
|
/**
|
|
3
3
|
@license
|
|
4
4
|
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
8
8
|
Code distributed by Google as part of the polymer project is also
|
|
9
9
|
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
10
|
-
*/function hl(e,t){if(_(e))return null;const n=fl(e,!0),l=t;for(let e,t,o,r,i=0;i<l.length;i++)if(e=l[i],o=e instanceof Window?e:e.getRootNode(),o!==t&&(r=n.indexOf(o),t=o),!ll(o)||!A(r)&&r>-1)return e;return null}function pl(e,t,n,l){const o=Ze.call(t,n,l);return _(o)?o:hl(e,fl(o,!0))}e(il,ul,{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return vn(p.call(un(this),(e=>e instanceof Element)))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:e}=this;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value(e){return function(e,t){const n=el(e);return pn(n,Nt(ye.call(n,t)))}(this,e)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(e){return yn(function(e,t){const n=el(e);return hn(n,Nt(ye.call(n,t)))}(this,e))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const e=qn(this);let t="";for(let n=0,l=e.length;n<l;n+=1)t+=Hn(e[n]);return t},set(e){const t=el(this);De.call(t,e)}}},al),sl.prototype=t(DocumentFragment.prototype,il),l(sl,Symbol.hasInstance,{value:function(e){return D(e)&&!_(e)&&(bt(e)||a(e)===sl.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return pl(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Xn(this,this,e,t)},l(Document.prototype,"activeElement",{get(){let e=Qe.call(this);if(_(e))return e;for(;!A(Qt(e));)if(e=ue.call(e),_(e))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),l(Document.prototype,"getElementById",{value(){const e=ot.apply(this,T.call(arguments));return _(e)?null:A(Qt(e))||vt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"querySelector",{value(){const e=Nt(lt.apply(this,T.call(arguments))),t=g.call(e,(e=>A(Qt(e))||vt(e)));return A(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"querySelectorAll",{value(){const e=Nt(lt.apply(this,T.call(arguments)));return yn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByClassName",{value(){const e=Nt(rt.apply(this,T.call(arguments)));return vn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByTagName",{value(){const e=Nt(it.apply(this,T.call(arguments)));return vn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByTagNameNS",{value(){const e=Nt(at.apply(this,T.call(arguments)));return vn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(r(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const e=Nt(ct.apply(this,T.call(arguments)));return yn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:sl,configurable:!0,writable:!0});const gl=Object.getOwnPropertyDescriptor(Event.prototype,"composed");const ml=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function dl(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:()=>!0})}(function(){if(!gl)return!1;let e=new Event("click");const t=document.createElement("button");return t.addEventListener("click",(t=>e=t)),t.click(),!gl.get.call(e)})()&&(HTMLElement.prototype.click=function(){Ct.call(this,"click",dl);try{ml.value.call(this)}finally{Ot.call(this,"click",dl)}}),!0!==new Event("test",{composed:!0}).composed&&function(){const n=e(t(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),l=Event;function o(e,t){const n=new l(e,t),o=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:()=>o,configurable:!0,enumerable:!0}}),n}o.prototype=l.prototype,o.AT_TARGET=l.AT_TARGET,o.BUBBLING_PHASE=l.BUBBLING_PHASE,o.CAPTURING_PHASE=l.CAPTURING_PHASE,o.NONE=l.NONE,window.Event=o,Object.defineProperties(Event.prototype,{composed:{get(){const{type:e}=this;return 1===n[e]},configurable:!0,enumerable:!0}})}();const bl=CustomEvent;function El(e,t){const n=new bl(e,t),l=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:()=>l,configurable:!0,enumerable:!0}}),n}if(El.prototype=bl.prototype,window.CustomEvent=El,"undefined"!=typeof ClipboardEvent){const l=e(t(null),{copy:1,cut:1,paste:1});n(ClipboardEvent.prototype,{composed:{get(){const{type:e}=this;return 1===l[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&function(){const e=r(HTMLIFrameElement.prototype,"contentWindow"),{get:t}=e;e.get=function(){const e=t.call(this);return _(e)||A(Qt(this))?e:(n=e,{addEventListener(){return n.addEventListener.apply(n,arguments)},blur(){return n.blur.apply(n,arguments)},close(){return n.close.apply(n,arguments)},focus(){return n.focus.apply(n,arguments)},postMessage(){return n.postMessage.apply(n,arguments)},removeEventListener(){return n.removeEventListener.apply(n,arguments)},get closed(){return n.closed},get frames(){return n.frames},get length(){return n.length},get location(){return n.location},set location(e){n.location=e},get opener(){return n.opener},get parent(){return n.parent},get self(){return n.self},get top(){return n.top},get window(){return n.window}});var n},l(HTMLIFrameElement.prototype,"contentWindow",e)}();const yl=MutationObserver,{disconnect:wl,observe:Tl,takeRecords:vl}=yl.prototype,Nl="$$lwcObserverCallbackWrapper$$",Ll=new WeakMap;function Ml(e){return e.$$lwcNodeObservers$$}function Cl(e){const{addedNodes:l,removedNodes:o,target:r,type:i}=e,a=t(MutationRecord.prototype);return n(a,{addedNodes:{get:()=>l,enumerable:!0,configurable:!0},removedNodes:{get:()=>o,enumerable:!0,configurable:!0},type:{get:()=>i,enumerable:!0,configurable:!0},target:{get:()=>r.shadowRoot,enumerable:!0,configurable:!0}}),a}function Sl(e,t){let n=t;for(;!_(n);){const t=Ml(n);if(!A(t)&&(t[0]===e||-1!==m.call(t,e)))return!0;n=n.parentNode}return!1}function Ol(e,t){return y.call(e,((e,n)=>{const{target:l,addedNodes:o,removedNodes:r,type:i}=n;if("childList"!==i||A(en(l)))Sl(t,l)&&E.call(e,n);else if(o.length>0){const r=o[0];if(Sl(t,r)){const o=Ml(l);!o||o[0]!==t&&-1===m.call(o,t)?E.call(e,Cl(n)):E.call(e,n)}}else{const o=l.shadowRoot,i=r[0];if(Zt(l)===Zt(i)&&Sl(t,l))E.call(e,n);else if(o){const l=Ml(o);!l||l[0]!==t&&-1===m.call(l,t)||E.call(e,Cl(n))}}return e}),[])}function Al(e){const t=function(e){let t=e[Nl];return A(t)&&(t=e[Nl]=(t,n)=>{const l=Ol(t,n);0!==l.length&&e.call(n,l,n)}),t}(e);return new yl(t)}function _l(e,t,n){if(arguments.length>1){const e=T.call(arguments);return e[1]=Rt(e[1]),ut.apply(this,e)}return ut.apply(this,arguments)}function Hl(e,t,n){if(arguments.length>1){const e=T.call(arguments);e[1]=Rt(e[1]),st.apply(this,e)}st.apply(this,arguments)}function Rl(){const e=Ve.call(this);if(!(e instanceof k))return e;const t=yt(e),n=fl(e,this.composed),l=Ye.call(this);if(!(l instanceof k))return _(l)&&A(Qt(e))?e:hl(t,n);if(l===t||l===t.body)return A(Qt(e))?e:hl(t,n);let o=l,r=n;if(nl(l)){1===Pt.get(this)&&(o=tl(l))}return nl(e)&&cl.has(this)&&(r=fl(tl(e),this.composed)),hl(o,r)}function Pl(){const e=Ve.call(this);if(!(e instanceof k))return[];const t=Boolean(e.shadowRoot),n=(l=e,Vn.has(l));var l;if(t&&!n)return Je.call(this);if(_(Ye.call(this)))return[];let o=e;return nl(e)&&cl.has(this)&&(o=tl(e)),fl(o,this.composed)}function Dl(e){const t=r(e.prototype,"relatedTarget").get;l(e.prototype,"relatedTarget",{get(){const e=t.call(this);if(_(e))return null;if(!(e instanceof k&&tn(e)))return e;let n=Ye.call(this);return _(n)&&(n=yt(e)),hl(n,fl(e,!0))},enumerable:!0,configurable:!0})}let $l;Al.prototype=yl.prototype,Al.prototype.disconnect=function(){wl.call(this);const e=Ll.get(this);A(e)||(L.call(e,(e=>{const t=e.$$lwcNodeObservers$$;if(!A(t)){const e=m.call(t,this);-1!==e&&v.call(t,e,1)}})),e.length=0)},Al.prototype.observe=function(e,t){let n=Ml(e);var l;if(A(n)&&(n=[],l=n,e.$$lwcNodeObservers$$=l),-1===m.call(n,this)&&E.call(n,this),ll(e)&&(e=e.host),Ll.has(this)){const t=Ll.get(this);-1===m.call(t,e)&&E.call(t,e)}else Ll.set(this,[e]);return Tl.call(this,e,t)},Al.prototype.takeRecords=function(){return Ol(vl.call(this),this)},l(window,"MutationObserver",{value:Al,configurable:!0,writable:!0}),n(Mt,{addEventListener:{value:function(e,t,n){if(nl(this))return Xt.apply(this,arguments);if(arguments.length<2){const e=T.call(arguments);return e.length>1&&(e[1]=Rt(e[1])),Ct.apply(this,e)}const l=Rt(t);return Ct.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(nl(this))return Vt.apply(this,arguments);const l=T.call(arguments);arguments.length>1&&(l[1]=Rt(l[1])),Ot.apply(this,l),Ot.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&n(Window.prototype,{addEventListener:{value:_l,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Hl,enumerable:!0,writable:!0,configurable:!0}}),n(Event.prototype,{target:{get:Rl,enumerable:!0,configurable:!0},currentTarget:{get:function(){const e=Ye.call(this);return _(e)?null:1===Pt.get(this)?tl(e):e},enumerable:!0,configurable:!0},composedPath:{value:Pl,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Rl,enumerable:!0,configurable:!0},path:{get:Pl,enumerable:!0,configurable:!0}}),Dl(FocusEvent),Dl(MouseEvent);const Bl={childList:!0},Il=new WeakMap;function kl(e){const t=Nt(fe.call(e));return y.call(t,((e,t)=>(t instanceof Element&&an(t)?E.apply(e,kl(t)):E.call(e,t),e)),[])}function xl(){const e=ae.call(this);return!_(e)&&an(e)&&Qt(e)!==Qt(this)?e:null}function Fl(e,t){let n;const l=Qt(e);if(A(l))n=e instanceof HTMLBodyElement?p.call(t,(t=>A(Qt(t))||vt(e))):T.call(t);else if(nl(e)){const l=on(e);n=_(l)?[]:en(e)?sn(e,t):hn(l,t)}else n=p.call(t,(e=>Zt(e)===l));return n}function Wl(){const e=qn(this);let t="";for(let n=0,l=e.length;n<l;n+=1)t+=Hn(e[n]);return t}function Ul(){return Hn(this)}function jl(){const e=on(this),t=_(e)?[]:hn(e,gn(this));return vn(p.call(t,(e=>e instanceof Element)))}function Kl(){return this.children.length}function Gl(){return this.children[0]||null}function ql(){const{children:e}=this;return e.item(e.length-1)||null}function Xl(e,t,n){let l;if(nl(e)){const n=on(e);l=_(n)?[]:en(e)?sn(e,t):hn(n,t)}else if(tn(e)){const o=Qt(e);if(A(o))if(1===n){const n=Zt(e);l=p.call(t,(e=>Zt(e)===n))}else l=T.call(t);else l=p.call(t,(e=>Zt(e)===o))}else l=e instanceof HTMLBodyElement||1===n?p.call(t,(t=>A(Qt(t))||vt(e))):T.call(t);return l}n(HTMLSlotElement.prototype,{addEventListener:{value(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Il.get(this)||(Il.set(this,!0),$l||($l=new pt((e=>{const t=[];L.call(e,(e=>{const{target:n}=e;-1===m.call(t,n)&&(E.call(t,n),St.call(n,new CustomEvent("slotchange")))}))}))),gt.call($l,this,Bl))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(e){if(tn(this)){const t=!A(e)&&H(e.flatten)?kl(this):mn(this);return p.call(t,(e=>e instanceof Element))}return Xe.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(e){if(tn(this)){return!A(e)&&H(e.flatten)?kl(this):mn(this)}return qe.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const e=pe.call(this,"name");return _(e)?"":e},set(e){Te.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get(){if(tn(this)){const e=on(this);return yn(_(e)?[]:hn(e,gn(this)))}return fe.call(this)},enumerable:!0,configurable:!0}}),n(Text.prototype,{assignedSlot:{get:xl,enumerable:!0,configurable:!0}}),n(Element.prototype,{innerHTML:{get(){return Lt.ENABLE_ELEMENT_PATCH?vt(this)?Pe.call(this):Wl.call(this):tn(this)||nl(this)?Wl.call(this):Pe.call(this)},set(e){De.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get(){return Lt.ENABLE_ELEMENT_PATCH?vt(this)?Be.call(this):Ul.call(this):tn(this)||nl(this)?Ul.call(this):Be.call(this)},set(e){Ie.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?rl(this,e):ve.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(nl(this)){const e=tl(this);if("open"===e.mode)return e}return Ge.call(this)},enumerable:!0,configurable:!0},children:{get(){return Rn(this)?jl.call(this):je.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return Rn(this)?Kl.call(this):Ne.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return Rn(this)?Gl.call(this):Le.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return Rn(this)?ql.call(this):Me.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:xl,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"innerHTML")&&l(HTMLElement.prototype,"innerHTML",r(Element.prototype,"innerHTML")),c.call(HTMLElement.prototype,"outerHTML")&&l(HTMLElement.prototype,"outerHTML",r(Element.prototype,"outerHTML")),c.call(HTMLElement.prototype,"children")&&l(HTMLElement.prototype,"children",r(Element.prototype,"children")),n(Element.prototype,{querySelector:{value:function(){const e=Nt(ye.apply(this,T.call(arguments)));if(nl(this)){const t=on(this);return _(t)?null:en(this)?fn(this,e):pn(t,e)}if(tn(this)){const t=Qt(this);if(A(t)){if(!Lt.ENABLE_NODE_LIST_PATCH)return 0===e.length?null:e[0];const t=Zt(this),n=g.call(e,(e=>Zt(e)===t));return A(n)?null:n}{const n=g.call(e,(e=>Zt(e)===t));return A(n)?null:n}}{if(!(Lt.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){const t=e[0];return A(t)?null:t}const t=g.call(e,(e=>A(Qt(e))||vt(this)));return A(t)?null:t}},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const e=Nt(ye.apply(this,T.call(arguments)));if(!Lt.ENABLE_NODE_LIST_PATCH){return yn(Xl(this,e,0))}return yn(Xl(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),n(Element.prototype,{getElementsByClassName:{value(){const e=Nt(Ke.apply(this,T.call(arguments)));if(!Lt.ENABLE_HTML_COLLECTIONS_PATCH)return vn(Fl(this,e));return vn(Xl(this,e,1))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const e=Nt(me.apply(this,T.call(arguments)));if(!Lt.ENABLE_HTML_COLLECTIONS_PATCH)return vn(Fl(this,e));return vn(Xl(this,e,1))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const e=Nt(de.apply(this,T.call(arguments)));if(!Lt.ENABLE_HTML_COLLECTIONS_PATCH)return vn(Fl(this,e));return vn(Xl(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"getElementsByClassName")&&l(HTMLElement.prototype,"getElementsByClassName",r(Element.prototype,"getElementsByClassName"));const Vl="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Yl=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function zl(e){return e.filter((e=>be.call(e,"tabindex")?"0"===pe.call(e,"tabindex"):!Yl.has(ke.call(e))||!be.call(e,"disabled")))}const Jl=new WeakMap;function Ql(e){return(!nl(e)||!Zn(e))&&(Ue.call(e,Vl)&&function(e){const{width:t,height:n}=ge.call(e),l=t>0||n>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Zl(){const e=this.getRootNode();if(e===this){const e=Ee.call(this,Vl);return void(_(e)||e.focus.apply(e,arguments))}const t=e;if(t.activeElement===this)return;const n=Nt(ye.call(this,Vl));let l=!1;for(;!l&&0!==n.length;){const e=n.shift();e.focus.apply(e,arguments);l=e.getRootNode().activeElement===e}}function eo(e){const t=yt(e),n=zl(Nt(lt.call(t,Vl))),l=zl(Nt(ye.call(e,Vl))),o=l[0],r=l[l.length-1],i=m.call(n,e),a=i>-1?i:m.call(n,o),c=0===l.length?a+1:m.call(n,r)+1;return{prev:T.call(n,0,a),inner:l,next:T.call(n,c)}}function to(e,t){const n=Q.call(e,t);return n&F?0:n&U?1:n&j?2:-1}function no(e){e.preventDefault(),e.stopPropagation()}function lo(e,t){ut.call(e,"focusin",no,!0),ut.call(e,"focusout",no,!0),t(),st.call(e,"focusin",no,!0),st.call(e,"focusout",no,!0)}function oo(e,t,n){const l=wt(n),o=function(e,t){const n=e.length;if(n>0)for(let l=0;l<n;l+=1){const n=e[l];if(fo(t.getRootNode(),n))return n}return null}(e,n);_(o)?lo(l,(()=>{t.blur()})):lo(l,(()=>{o.focus()}))}let ro=!1;function io(){ro=!0}function ao(){ro=!1}function co(){return!ro}function uo(e){if(ro)return;const t=Ye.call(e),n=Ve.call(e);if(t!==n)return;const l=ze.call(e);if(_(l))return;const o=eo(t);if(1===to(t,l)){const e=fo.bind(null,t.getRootNode()),r=g.call(o.inner,e);if(A(r))oo(o.next,n,l);else{lo(wt(r),(()=>{r.focus()}))}}else t===n&&oo(w.call(o.prev),n,l)}function so(e){if(ro)return;const t=ze.call(e);if(_(t))return;const n=Ye.call(e),l=eo(n);if(-1!==m.call(l.inner,t))return;const o=Ve.call(e),r=to(n,t);1===r&&oo(l.next,o,t),2===r&&oo(w.call(l.prev),o,t)}function fo(e,t){if(!Ql(t))return!1;const n=yt(t);let l=t.getRootNode();for(;l!==n&&l!==e;){const e=l.host;if("-1"===pe.call(e,"tabindex"))return!1;l=e&&e.getRootNode()}return!0}function ho(e){Ot.call(e,"focusin",uo,!0)}function po(e){const t=yt(e);Jl.get(t)||(Jl.set(t,!0),Ct.call(t,"mousedown",io,!0),Ct.call(t,"mouseup",(()=>{setTimeout(ao)}),!0),Ct.call(t,"dragstart",ao,!0))}function go(e){Ot.call(e,"focusin",so,!0)}function mo(e){const t=wt(e);return ft.call(t,e)}function bo(e){const t=wt(e);return ht.call(t)}function Eo(e){return"visible"===e.visibility&&"none"!==e.display}function yo(e){const t=[];if((e=>e.nodeType===K)(e)){const{tagName:n}=e,l=mo(e);if("OPTION"===n)return[1,Se.call(e),1];if("TEXTAREA"===n)return[];{const n=e.childNodes;for(let e=0,l=n.length;e<l;e++)E.apply(t,yo(n[e]))}if(!Eo(l))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");const{display:o}=l;"table-cell"===o&&t.push("\t"),"table-row"===o&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==o&&"table-caption"!==o&&"flex"!==o&&"table"!==o||(t.unshift(1),t.push(1))}else(e=>e.nodeType===G)(e)&&t.push(function(e){const t=bo(e);if(null===t)return e.textContent||"";const n=document.createRange();n.selectNodeContents(e);const l=n.getBoundingClientRect();if(l.height<=0||l.width<=0)return"";t.removeAllRanges(),t.addRange(n);return t.toString()||e.textContent||""}(e));return t}function wo(e){if(!Eo(mo(e)))return dn(e)||"";const t=function(e){const t=wt(e),n=bo(e);if(null===n)return null;const l=[];for(let e=0;e<n.rangeCount;e++)l.push(n.getRangeAt(e));const o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:l};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],l=e.childNodes;for(let e=0,t=l.length;e<t;e++)E.apply(n,yo(l[e]));!function(e){if(null===e)return;const{element:t,onselect:n,onselectstart:l,onselectionchange:o,ranges:r}=e,i=wt(t),a=bo(t);a.removeAllRanges();for(let e=0;e<r.length;e++)a.addRange(r[e]);i.onselect=n,i.onselectstart=l,i.onselectionchange=o}(t);let o="",r=0;for(let e=0,t=n.length;e<t;e++){const t=n[e];if("string"==typeof t){if(r>0){for(let e=0;e<r;e++)o+="\n";r=0}t.length>0&&(o+=t)}else{if(0==o.length)continue;t>r&&(r=t)}}return o}const{blur:To,focus:vo}=HTMLElement.prototype;function No(){return Zn(this)&&R(be.call(this,"tabindex"))?0:Fe.call(this)}function Lo(e){const t=Zn(this),n=Fe.call(this),l=be.call(this,"tabindex");We.call(this,e);const o=Fe.call(this),r=be.call(this,"tabindex"),i=n!==o;var a;(l&&(i||R(r))&&(-1===n&&go(this),0===n&&t&&ho(this)),R(r))||(l&&r&&R(i)||(-1===o&&(po(a=this),ho(a),Ct.call(a,"focusin",so,!0)),0===o&&t&&function(e){po(e),go(e),Ct.call(e,"focusin",uo,!0)}(this)))}function Mo(){if(Zn(this)){const e=function(e){const t=yt(e),n=Qe.call(t);return _(n)||0!=(Q.call(e,n)&F)?n:null}(this);if(!_(e))return void e.blur()}return To.call(this)}function Co(){const e=co();e&&io(),nl(this)&&Zn(this)?Zl.call(this):(vo.apply(this,arguments),e&&ao())}n(HTMLElement.prototype,{tabIndex:{get(){return nl(this)?No.call(this):Fe.call(this)},set(e){return nl(this)?Lo.call(this,e):We.call(this,e)},enumerable:!0,configurable:!0},blur:{value(){if(nl(this))return Mo.call(this);To.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){Co.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Se&&null!==Oe&&l(HTMLElement.prototype,"innerText",{get(){return Lt.ENABLE_INNER_OUTER_TEXT_PATCH?Lt.ENABLE_ELEMENT_PATCH?vt(this)?Se.call(this):wo(this):tn(this)||nl(this)?wo(this):Se.call(this):Se.call(this)},set(e){Oe.call(this,e)},enumerable:!0,configurable:!0}),null!==_e&&null!==He&&l(HTMLElement.prototype,"outerText",{get(){return Lt.ENABLE_INNER_OUTER_TEXT_PATCH?Lt.ENABLE_ELEMENT_PATCH?vt(this)?_e.call(this):wo(this):tn(this)||nl(this)?wo(this):_e.call(this):_e.call(this)},set(e){He.call(this,e)},enumerable:!0,configurable:!0}),l(Element.prototype,I,{set(e){const t=this.$$ShadowTokenKey$$;A(t)||t===e||we.call(this,t),A(e)||Te.call(this,e,""),this.$$ShadowTokenKey$$=e},get(){return this.$$ShadowTokenKey$$},configurable:!0});const So=function(){};let Oo;const Ao={childList:!0};function _o(e,t,n){const l=Jn(e);if(l!==t&&(Qn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),nl(e))return;A(l)&>.call(Oo,e,Ao);const o=fe.call(e);for(let e=0,l=o.length;e<l;e+=1)_o(o[e],t,n)}}function Ho(e){if(A(Oo)&&(Oo=new pt((e=>{L.call(e,(e=>{const{target:t,addedNodes:n,removedNodes:l}=e,o=Jn(t),r=t.$shadowToken$;for(let e=0,n=l.length;e<n;e+=1){const n=l[e];Q.call(t,n)&k.DOCUMENT_POSITION_CONTAINED_BY||_o(n,So,void 0)}for(let e=0,l=n.length;e<l;e+=1){const l=n[e];Q.call(t,l)&k.DOCUMENT_POSITION_CONTAINED_BY&&_o(l,o,r)}}))}))),A(Jn(e)))throw new Error("Invalid Element");gt.call(Oo,e,Ao)}l(Element.prototype,"$domManual$",{set(e){this.$$DomManualKey$$=e,H(e)&&Ho(this)},get(){return this.$$DomManualKey$$},configurable:!0})}();
|
|
10
|
+
*/function fl(e,t){if(_(e))return null;const n=sl(e,!0),l=t;for(let e,t,o,r,i=0;i<l.length;i++)if(e=l[i],o=e instanceof Window?e:e.getRootNode(),o!==t&&(r=n.indexOf(o),t=o),!ll(o)||!A(r)&&r>-1)return e;return null}function hl(e,t,n,l){const o=Ze.call(t,n,l);return _(o)?o:fl(e,sl(o,!0))}e(il,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return Z.call(el(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return ee.call(el(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return z.call(el(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return te.call(el(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,t,n){!function(e,t,n,l){P(n)&&Gt(el(e),t,Wt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(e){return cl.set(e,this),St.apply(el(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,t,n){!function(e,t,n,l){P(n)&&qt(el(e),t,Wt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get(){return el(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return yn(un(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value(e){const t=el(this);return this===e?0:this.contains(e)?20:Q.call(t,e)&F?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(e){if(this===e)return!0;const t=el(this);return 0!=(Q.call(t,e)&F)&&cn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get(){return qn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const e=qn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return qn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return he.call(el(this))}},nextSibling:{enumerable:!0,configurable:!0,get:()=>null},previousSibling:{enumerable:!0,configurable:!0,get:()=>null},nodeName:{enumerable:!0,configurable:!0,get:()=>"#document-fragment"},nodeType:{enumerable:!0,configurable:!0,get:()=>11},nodeValue:{enumerable:!0,configurable:!0,get:()=>null},ownerDocument:{enumerable:!0,configurable:!0,get(){return el(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:()=>null},parentNode:{enumerable:!0,configurable:!0,get:()=>null},textContent:{enumerable:!0,configurable:!0,get(){const e=qn(this);let t="";for(let n=0,l=e.length;n<l;n+=1){const l=e[n];l.nodeType!==V&&(t+=dn(l))}return t},set(e){const t=el(this);se.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(e){return!A(e)&&H(e.composed)?el(this).getRootNode(e):this}}},{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return vn(p.call(un(this),(e=>e instanceof Element)))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:e}=this;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value(e){return function(e,t){const n=el(e);return pn(n,Nt(ye.call(n,t)))}(this,e)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(e){return yn(function(e,t){const n=el(e);return hn(n,Nt(ye.call(n,t)))}(this,e))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const e=qn(this);let t="";for(let n=0,l=e.length;n<l;n+=1)t+=Hn(e[n]);return t},set(e){const t=el(this);De.call(t,e)}}},al),ul.prototype=t(DocumentFragment.prototype,il),l(ul,Symbol.hasInstance,{value:function(e){return D(e)&&!_(e)&&(bt(e)||a(e)===ul.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return hl(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Xn(this,this,e,t)},l(Document.prototype,"activeElement",{get(){let e=Qe.call(this);if(_(e))return e;for(;!A(Qt(e));)if(e=ue.call(e),_(e))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),l(Document.prototype,"getElementById",{value(){const e=ot.apply(this,T.call(arguments));return _(e)?null:A(Qt(e))||vt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"querySelector",{value(){const e=Nt(lt.apply(this,T.call(arguments))),t=g.call(e,(e=>A(Qt(e))||vt(e)));return A(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"querySelectorAll",{value(){const e=Nt(lt.apply(this,T.call(arguments)));return yn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByClassName",{value(){const e=Nt(rt.apply(this,T.call(arguments)));return vn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByTagName",{value(){const e=Nt(it.apply(this,T.call(arguments)));return vn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByTagNameNS",{value(){const e=Nt(at.apply(this,T.call(arguments)));return vn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),l(r(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const e=Nt(ct.apply(this,T.call(arguments)));return yn(p.call(e,(e=>A(Qt(e))||vt(e))))},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ul,configurable:!0,writable:!0});const pl=Object.getOwnPropertyDescriptor(Event.prototype,"composed");const gl=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function ml(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:()=>!0})}(function(){if(!pl)return!1;let e=new Event("click");const t=document.createElement("button");return t.addEventListener("click",(t=>e=t)),t.click(),!pl.get.call(e)})()&&(HTMLElement.prototype.click=function(){Ct.call(this,"click",ml);try{gl.value.call(this)}finally{Ot.call(this,"click",ml)}}),!0!==new Event("test",{composed:!0}).composed&&function(){const n=e(t(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),l=Event;function o(e,t){const n=new l(e,t),o=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:()=>o,configurable:!0,enumerable:!0}}),n}o.prototype=l.prototype,o.AT_TARGET=l.AT_TARGET,o.BUBBLING_PHASE=l.BUBBLING_PHASE,o.CAPTURING_PHASE=l.CAPTURING_PHASE,o.NONE=l.NONE,window.Event=o,Object.defineProperties(Event.prototype,{composed:{get(){const{type:e}=this;return 1===n[e]},configurable:!0,enumerable:!0}})}();const dl=CustomEvent;function bl(e,t){const n=new dl(e,t),l=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:()=>l,configurable:!0,enumerable:!0}}),n}if(bl.prototype=dl.prototype,window.CustomEvent=bl,"undefined"!=typeof ClipboardEvent){const l=e(t(null),{copy:1,cut:1,paste:1});n(ClipboardEvent.prototype,{composed:{get(){const{type:e}=this;return 1===l[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&function(){const e=r(HTMLIFrameElement.prototype,"contentWindow"),{get:t}=e;e.get=function(){const e=t.call(this);return _(e)||A(Qt(this))?e:(n=e,{addEventListener(){return n.addEventListener.apply(n,arguments)},blur(){return n.blur.apply(n,arguments)},close(){return n.close.apply(n,arguments)},focus(){return n.focus.apply(n,arguments)},postMessage(){return n.postMessage.apply(n,arguments)},removeEventListener(){return n.removeEventListener.apply(n,arguments)},get closed(){return n.closed},get frames(){return n.frames},get length(){return n.length},get location(){return n.location},set location(e){n.location=e},get opener(){return n.opener},get parent(){return n.parent},get self(){return n.self},get top(){return n.top},get window(){return n.window}});var n},l(HTMLIFrameElement.prototype,"contentWindow",e)}();const El=MutationObserver,{disconnect:yl,observe:wl,takeRecords:Tl}=El.prototype,vl="$$lwcObserverCallbackWrapper$$",Nl=new WeakMap;function Ll(e){return e.$$lwcNodeObservers$$}function Ml(e){const{addedNodes:l,removedNodes:o,target:r,type:i}=e,a=t(MutationRecord.prototype);return n(a,{addedNodes:{get:()=>l,enumerable:!0,configurable:!0},removedNodes:{get:()=>o,enumerable:!0,configurable:!0},type:{get:()=>i,enumerable:!0,configurable:!0},target:{get:()=>r.shadowRoot,enumerable:!0,configurable:!0}}),a}function Cl(e,t){let n=t;for(;!_(n);){const t=Ll(n);if(!A(t)&&(t[0]===e||-1!==m.call(t,e)))return!0;n=n.parentNode}return!1}function Sl(e,t){return y.call(e,((e,n)=>{const{target:l,addedNodes:o,removedNodes:r,type:i}=n;if("childList"!==i||A(en(l)))Cl(t,l)&&E.call(e,n);else if(o.length>0){const r=o[0];if(Cl(t,r)){const o=Ll(l);!o||o[0]!==t&&-1===m.call(o,t)?E.call(e,Ml(n)):E.call(e,n)}}else{const o=l.shadowRoot,i=r[0];if(Zt(l)===Zt(i)&&Cl(t,l))E.call(e,n);else if(o){const l=Ll(o);!l||l[0]!==t&&-1===m.call(l,t)||E.call(e,Ml(n))}}return e}),[])}function Ol(e){const t=function(e){let t=e[vl];return A(t)&&(t=e[vl]=(t,n)=>{const l=Sl(t,n);0!==l.length&&e.call(n,l,n)}),t}(e);return new El(t)}function Al(e,t,n){if(arguments.length>1){const e=T.call(arguments);return e[1]=Rt(e[1]),ut.apply(this,e)}return ut.apply(this,arguments)}function _l(e,t,n){if(arguments.length>1){const e=T.call(arguments);e[1]=Rt(e[1]),st.apply(this,e)}st.apply(this,arguments)}function Hl(){const e=Ve.call(this);if(!(e instanceof k))return e;const t=yt(e),n=sl(e,this.composed),l=Ye.call(this);if(!(l instanceof k))return _(l)&&A(Qt(e))?e:fl(t,n);if(l===t||l===t.body)return A(Qt(e))?e:fl(t,n);let o=l,r=n;if(nl(l)){1===Pt.get(this)&&(o=tl(l))}return nl(e)&&cl.has(this)&&(r=sl(tl(e),this.composed)),fl(o,r)}function Rl(){const e=Ve.call(this);if(!(e instanceof k))return[];const t=Boolean(e.shadowRoot),n=(l=e,Vn.has(l));var l;if(t&&!n)return Je.call(this);if(_(Ye.call(this)))return[];let o=e;return nl(e)&&cl.has(this)&&(o=tl(e)),sl(o,this.composed)}function Pl(e){const t=r(e.prototype,"relatedTarget").get;l(e.prototype,"relatedTarget",{get(){const e=t.call(this);if(_(e))return null;if(!(e instanceof k&&tn(e)))return e;let n=Ye.call(this);return _(n)&&(n=yt(e)),fl(n,sl(e,!0))},enumerable:!0,configurable:!0})}let Dl;Ol.prototype=El.prototype,Ol.prototype.disconnect=function(){yl.call(this);const e=Nl.get(this);A(e)||(L.call(e,(e=>{const t=e.$$lwcNodeObservers$$;if(!A(t)){const e=m.call(t,this);-1!==e&&v.call(t,e,1)}})),e.length=0)},Ol.prototype.observe=function(e,t){let n=Ll(e);var l;if(A(n)&&(n=[],l=n,e.$$lwcNodeObservers$$=l),-1===m.call(n,this)&&E.call(n,this),ll(e)&&(e=e.host),Nl.has(this)){const t=Nl.get(this);-1===m.call(t,e)&&E.call(t,e)}else Nl.set(this,[e]);return wl.call(this,e,t)},Ol.prototype.takeRecords=function(){return Sl(Tl.call(this),this)},l(window,"MutationObserver",{value:Ol,configurable:!0,writable:!0}),n(Mt,{addEventListener:{value:function(e,t,n){if(nl(this))return Xt.apply(this,arguments);if(arguments.length<2){const e=T.call(arguments);return e.length>1&&(e[1]=Rt(e[1])),Ct.apply(this,e)}const l=Rt(t);return Ct.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(nl(this))return Vt.apply(this,arguments);const l=T.call(arguments);arguments.length>1&&(l[1]=Rt(l[1])),Ot.apply(this,l),Ot.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&n(Window.prototype,{addEventListener:{value:Al,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:_l,enumerable:!0,writable:!0,configurable:!0}}),n(Event.prototype,{target:{get:Hl,enumerable:!0,configurable:!0},currentTarget:{get:function(){const e=Ye.call(this);return _(e)?null:1===Pt.get(this)?tl(e):e},enumerable:!0,configurable:!0},composedPath:{value:Rl,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Hl,enumerable:!0,configurable:!0},path:{get:Rl,enumerable:!0,configurable:!0}}),Pl(FocusEvent),Pl(MouseEvent);const $l={childList:!0},Bl=new WeakMap;function Il(e){const t=Nt(fe.call(e));return y.call(t,((e,t)=>(t instanceof Element&&an(t)?E.apply(e,Il(t)):E.call(e,t),e)),[])}function kl(){const e=ae.call(this);return!_(e)&&an(e)&&Qt(e)!==Qt(this)?e:null}function xl(e,t){let n;const l=Qt(e);if(A(l))n=e instanceof HTMLBodyElement?p.call(t,(t=>A(Qt(t))||vt(e))):T.call(t);else if(nl(e)){const l=on(e);n=_(l)?[]:en(e)?sn(e,t):hn(l,t)}else n=p.call(t,(e=>Zt(e)===l));return n}function Fl(){const e=qn(this);let t="";for(let n=0,l=e.length;n<l;n+=1)t+=Hn(e[n]);return t}function Wl(){return Hn(this)}function Ul(){const e=on(this),t=_(e)?[]:hn(e,gn(this));return vn(p.call(t,(e=>e instanceof Element)))}function jl(){return this.children.length}function Kl(){return this.children[0]||null}function Gl(){const{children:e}=this;return e.item(e.length-1)||null}function ql(e,t,n){let l;if(nl(e)){const n=on(e);l=_(n)?[]:en(e)?sn(e,t):hn(n,t)}else if(tn(e)){const o=Qt(e);if(A(o))if(1===n){const n=Zt(e);l=p.call(t,(e=>Zt(e)===n))}else l=T.call(t);else l=p.call(t,(e=>Zt(e)===o))}else l=e instanceof HTMLBodyElement||1===n?p.call(t,(t=>A(Qt(t))||vt(e))):T.call(t);return l}n(HTMLSlotElement.prototype,{addEventListener:{value(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Bl.get(this)||(Bl.set(this,!0),Dl||(Dl=new pt((e=>{const t=[];L.call(e,(e=>{const{target:n}=e;-1===m.call(t,n)&&(E.call(t,n),St.call(n,new CustomEvent("slotchange")))}))}))),gt.call(Dl,this,$l))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(e){if(tn(this)){const t=!A(e)&&H(e.flatten)?Il(this):mn(this);return p.call(t,(e=>e instanceof Element))}return Xe.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(e){if(tn(this)){return!A(e)&&H(e.flatten)?Il(this):mn(this)}return qe.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const e=pe.call(this,"name");return _(e)?"":e},set(e){Te.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get(){if(tn(this)){const e=on(this);return yn(_(e)?[]:hn(e,gn(this)))}return fe.call(this)},enumerable:!0,configurable:!0}}),n(Text.prototype,{assignedSlot:{get:kl,enumerable:!0,configurable:!0}}),n(Element.prototype,{innerHTML:{get(){return Lt.ENABLE_ELEMENT_PATCH?vt(this)?Pe.call(this):Fl.call(this):tn(this)||nl(this)?Fl.call(this):Pe.call(this)},set(e){De.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get(){return Lt.ENABLE_ELEMENT_PATCH?vt(this)?Be.call(this):Wl.call(this):tn(this)||nl(this)?Wl.call(this):Be.call(this)},set(e){Ie.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?rl(this,e):ve.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(nl(this)){const e=tl(this);if("open"===e.mode)return e}return Ge.call(this)},enumerable:!0,configurable:!0},children:{get(){return Rn(this)?Ul.call(this):je.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return Rn(this)?jl.call(this):Ne.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return Rn(this)?Kl.call(this):Le.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return Rn(this)?Gl.call(this):Me.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:kl,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"innerHTML")&&l(HTMLElement.prototype,"innerHTML",r(Element.prototype,"innerHTML")),c.call(HTMLElement.prototype,"outerHTML")&&l(HTMLElement.prototype,"outerHTML",r(Element.prototype,"outerHTML")),c.call(HTMLElement.prototype,"children")&&l(HTMLElement.prototype,"children",r(Element.prototype,"children")),n(Element.prototype,{querySelector:{value:function(){const e=Nt(ye.apply(this,T.call(arguments)));if(nl(this)){const t=on(this);return _(t)?null:en(this)?fn(this,e):pn(t,e)}if(tn(this)){const t=Qt(this);if(A(t)){if(!Lt.ENABLE_NODE_LIST_PATCH)return 0===e.length?null:e[0];const t=Zt(this),n=g.call(e,(e=>Zt(e)===t));return A(n)?null:n}{const n=g.call(e,(e=>Zt(e)===t));return A(n)?null:n}}{if(!(Lt.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){const t=e[0];return A(t)?null:t}const t=g.call(e,(e=>A(Qt(e))||vt(this)));return A(t)?null:t}},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const e=Nt(ye.apply(this,T.call(arguments)));if(!Lt.ENABLE_NODE_LIST_PATCH){return yn(ql(this,e,0))}return yn(ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),n(Element.prototype,{getElementsByClassName:{value(){const e=Nt(Ke.apply(this,T.call(arguments)));if(!Lt.ENABLE_HTML_COLLECTIONS_PATCH)return vn(xl(this,e));return vn(ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const e=Nt(me.apply(this,T.call(arguments)));if(!Lt.ENABLE_HTML_COLLECTIONS_PATCH)return vn(xl(this,e));return vn(ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const e=Nt(de.apply(this,T.call(arguments)));if(!Lt.ENABLE_HTML_COLLECTIONS_PATCH)return vn(xl(this,e));return vn(ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"getElementsByClassName")&&l(HTMLElement.prototype,"getElementsByClassName",r(Element.prototype,"getElementsByClassName"));const Xl="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Vl=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Yl(e){return e.filter((e=>be.call(e,"tabindex")?"0"===pe.call(e,"tabindex"):!Vl.has(ke.call(e))||!be.call(e,"disabled")))}const zl=new WeakMap;function Jl(e){return(!nl(e)||!Zn(e))&&(Ue.call(e,Xl)&&function(e){const{width:t,height:n}=ge.call(e),l=t>0||n>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Ql(){const e=this.getRootNode();if(e===this){const e=Ee.call(this,Xl);return void(_(e)||e.focus.apply(e,arguments))}const t=e;if(t.activeElement===this)return;const n=Nt(ye.call(this,Xl));let l=!1;for(;!l&&0!==n.length;){const e=n.shift();e.focus.apply(e,arguments);l=e.getRootNode().activeElement===e}}function Zl(e){const t=yt(e),n=Yl(Nt(lt.call(t,Xl))),l=Yl(Nt(ye.call(e,Xl))),o=l[0],r=l[l.length-1],i=m.call(n,e),a=i>-1?i:m.call(n,o),c=0===l.length?a+1:m.call(n,r)+1;return{prev:T.call(n,0,a),inner:l,next:T.call(n,c)}}function eo(e,t){const n=Q.call(e,t);return n&F?0:n&U?1:n&j?2:-1}function to(e){e.preventDefault(),e.stopPropagation()}function no(e,t){ut.call(e,"focusin",to,!0),ut.call(e,"focusout",to,!0),t(),st.call(e,"focusin",to,!0),st.call(e,"focusout",to,!0)}function lo(e,t,n){const l=wt(n),o=function(e,t){const n=e.length;if(n>0)for(let l=0;l<n;l+=1){const n=e[l];if(so(t.getRootNode(),n))return n}return null}(e,n);_(o)?no(l,(()=>{t.blur()})):no(l,(()=>{o.focus()}))}let oo=!1;function ro(){oo=!0}function io(){oo=!1}function ao(){return!oo}function co(e){if(oo)return;const t=Ye.call(e),n=Ve.call(e);if(t!==n)return;const l=ze.call(e);if(_(l))return;const o=Zl(t);if(1===eo(t,l)){const e=so.bind(null,t.getRootNode()),r=g.call(o.inner,e);if(A(r))lo(o.next,n,l);else{no(wt(r),(()=>{r.focus()}))}}else t===n&&lo(w.call(o.prev),n,l)}function uo(e){if(oo)return;const t=ze.call(e);if(_(t))return;const n=Ye.call(e),l=Zl(n);if(-1!==m.call(l.inner,t))return;const o=Ve.call(e),r=eo(n,t);1===r&&lo(l.next,o,t),2===r&&lo(w.call(l.prev),o,t)}function so(e,t){if(!Jl(t))return!1;const n=yt(t);let l=t.getRootNode();for(;l!==n&&l!==e;){const e=l.host;if("-1"===pe.call(e,"tabindex"))return!1;l=e&&e.getRootNode()}return!0}function fo(e){Ot.call(e,"focusin",co,!0)}function ho(e){const t=yt(e);zl.get(t)||(zl.set(t,!0),Ct.call(t,"mousedown",ro,!0),Ct.call(t,"mouseup",(()=>{setTimeout(io)}),!0),Ct.call(t,"dragstart",io,!0))}function po(e){Ot.call(e,"focusin",uo,!0)}function go(e){const t=wt(e);return ft.call(t,e)}function mo(e){const t=wt(e);return ht.call(t)}function bo(e){return"visible"===e.visibility&&"none"!==e.display}function Eo(e){const t=[];if((e=>e.nodeType===K)(e)){const{tagName:n}=e,l=go(e);if("OPTION"===n)return[1,Se.call(e),1];if("TEXTAREA"===n)return[];{const n=e.childNodes;for(let e=0,l=n.length;e<l;e++)E.apply(t,Eo(n[e]))}if(!bo(l))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");const{display:o}=l;"table-cell"===o&&t.push("\t"),"table-row"===o&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==o&&"table-caption"!==o&&"flex"!==o&&"table"!==o||(t.unshift(1),t.push(1))}else(e=>e.nodeType===G)(e)&&t.push(function(e){const t=mo(e);if(null===t)return e.textContent||"";const n=document.createRange();n.selectNodeContents(e);const l=n.getBoundingClientRect();if(l.height<=0||l.width<=0)return"";t.removeAllRanges(),t.addRange(n);return t.toString()||e.textContent||""}(e));return t}function yo(e){if(!bo(go(e)))return dn(e)||"";const t=function(e){const t=wt(e),n=mo(e);if(null===n)return null;const l=[];for(let e=0;e<n.rangeCount;e++)l.push(n.getRangeAt(e));const o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:l};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],l=e.childNodes;for(let e=0,t=l.length;e<t;e++)E.apply(n,Eo(l[e]));!function(e){if(null===e)return;const{element:t,onselect:n,onselectstart:l,onselectionchange:o,ranges:r}=e,i=wt(t),a=mo(t);a.removeAllRanges();for(let e=0;e<r.length;e++)a.addRange(r[e]);i.onselect=n,i.onselectstart=l,i.onselectionchange=o}(t);let o="",r=0;for(let e=0,t=n.length;e<t;e++){const t=n[e];if("string"==typeof t){if(r>0){for(let e=0;e<r;e++)o+="\n";r=0}t.length>0&&(o+=t)}else{if(0==o.length)continue;t>r&&(r=t)}}return o}const{blur:wo,focus:To}=HTMLElement.prototype;function vo(){return Zn(this)&&R(be.call(this,"tabindex"))?0:Fe.call(this)}function No(e){const t=Zn(this),n=Fe.call(this),l=be.call(this,"tabindex");We.call(this,e);const o=Fe.call(this),r=be.call(this,"tabindex"),i=n!==o;var a;(l&&(i||R(r))&&(-1===n&&po(this),0===n&&t&&fo(this)),R(r))||(l&&r&&R(i)||(-1===o&&(ho(a=this),fo(a),Ct.call(a,"focusin",uo,!0)),0===o&&t&&function(e){ho(e),po(e),Ct.call(e,"focusin",co,!0)}(this)))}function Lo(){if(Zn(this)){const e=function(e){const t=yt(e),n=Qe.call(t);return _(n)||0!=(Q.call(e,n)&F)?n:null}(this);if(!_(e))return void e.blur()}return wo.call(this)}function Mo(){const e=ao();e&&ro(),nl(this)&&Zn(this)?Ql.call(this):(To.apply(this,arguments),e&&io())}n(HTMLElement.prototype,{tabIndex:{get(){return nl(this)?vo.call(this):Fe.call(this)},set(e){return nl(this)?No.call(this,e):We.call(this,e)},enumerable:!0,configurable:!0},blur:{value(){if(nl(this))return Lo.call(this);wo.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){Mo.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Se&&null!==Oe&&l(HTMLElement.prototype,"innerText",{get(){return Lt.ENABLE_INNER_OUTER_TEXT_PATCH?Lt.ENABLE_ELEMENT_PATCH?vt(this)?Se.call(this):yo(this):tn(this)||nl(this)?yo(this):Se.call(this):Se.call(this)},set(e){Oe.call(this,e)},enumerable:!0,configurable:!0}),null!==_e&&null!==He&&l(HTMLElement.prototype,"outerText",{get(){return Lt.ENABLE_INNER_OUTER_TEXT_PATCH?Lt.ENABLE_ELEMENT_PATCH?vt(this)?_e.call(this):yo(this):tn(this)||nl(this)?yo(this):_e.call(this):_e.call(this)},set(e){He.call(this,e)},enumerable:!0,configurable:!0}),l(Element.prototype,I,{set(e){const t=this.$$ShadowTokenKey$$;A(t)||t===e||we.call(this,t),A(e)||Te.call(this,e,""),this.$$ShadowTokenKey$$=e},get(){return this.$$ShadowTokenKey$$},configurable:!0});const Co=function(){};let So;const Oo={childList:!0};function Ao(e,t,n){const l=Jn(e);if(l!==t&&(Qn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),nl(e))return;A(l)&>.call(So,e,Oo);const o=fe.call(e);for(let e=0,l=o.length;e<l;e+=1)Ao(o[e],t,n)}}function _o(e){if(A(So)&&(So=new pt((e=>{L.call(e,(e=>{const{target:t,addedNodes:n,removedNodes:l}=e,o=Jn(t),r=t.$shadowToken$;for(let e=0,n=l.length;e<n;e+=1){const n=l[e];Q.call(t,n)&k.DOCUMENT_POSITION_CONTAINED_BY||Ao(n,Co,void 0)}for(let e=0,l=n.length;e<l;e+=1){const l=n[e];Q.call(t,l)&k.DOCUMENT_POSITION_CONTAINED_BY&&Ao(l,o,r)}}))}))),A(Jn(e)))throw new Error("Invalid Element");gt.call(So,e,Oo)}l(Element.prototype,"$domManual$",{set(e){this.$$DomManualKey$$=e,H(e)&&_o(this)},get(){return this.$$DomManualKey$$},configurable:!0})}();
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
const KEY__SHADOW_TOKEN = '$shadowToken$';
|
|
126
126
|
const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
|
|
127
127
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
128
|
-
/** version: 2.5.
|
|
128
|
+
/** version: 2.5.10-alpha1 */
|
|
129
129
|
|
|
130
130
|
/*
|
|
131
131
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
}
|
|
465
465
|
|
|
466
466
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
467
|
-
/** version: 2.5.
|
|
467
|
+
/** version: 2.5.10-alpha1 */
|
|
468
468
|
|
|
469
469
|
/*
|
|
470
470
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5640,6 +5640,6 @@
|
|
|
5640
5640
|
|
|
5641
5641
|
configurable: true
|
|
5642
5642
|
});
|
|
5643
|
-
/** version: 2.5.
|
|
5643
|
+
/** version: 2.5.10-alpha1 */
|
|
5644
5644
|
|
|
5645
|
-
}
|
|
5645
|
+
}());
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
var hasNativeSymbolSupport = /*@__PURE__*/function () {
|
|
194
194
|
return Symbol('x').toString() === 'Symbol(x)';
|
|
195
195
|
}();
|
|
196
|
-
/** version: 2.5.
|
|
196
|
+
/** version: 2.5.10-alpha1 */
|
|
197
197
|
|
|
198
198
|
/*
|
|
199
199
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
}
|
|
527
527
|
|
|
528
528
|
var runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
529
|
-
/** version: 2.5.
|
|
529
|
+
/** version: 2.5.10-alpha1 */
|
|
530
530
|
|
|
531
531
|
/*
|
|
532
532
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5631,6 +5631,6 @@
|
|
|
5631
5631
|
},
|
|
5632
5632
|
configurable: true
|
|
5633
5633
|
});
|
|
5634
|
-
/** version: 2.5.
|
|
5634
|
+
/** version: 2.5.10-alpha1 */
|
|
5635
5635
|
|
|
5636
|
-
}
|
|
5636
|
+
}());
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
!function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}var l=Object.assign,o=Object.create,a=Object.defineProperties,i=Object.defineProperty,u=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,s=Object.hasOwnProperty,f=Object.setPrototypeOf,h=Array.prototype,p=h.filter,g=h.find,m=h.indexOf,v=h.map,b=h.push,d=h.reduce,E=h.reverse,y=h.slice,w=h.splice,T=h.forEach,N=String.prototype.charCodeAt;function L(e){return void 0===e}function M(e){return null===e}function C(e){return!0===e}function S(e){return!1===e}function O(e){return"function"==typeof e}function A(e){return"object"===r(e)}var H,_,R=function(){if("object"===("undefined"==typeof globalThis?"undefined":r(globalThis)))return globalThis;var e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),P="$shadowResolver$",D="$shadowToken$",$=Node,B=$.prototype,I=$.DOCUMENT_POSITION_CONTAINED_BY,k=$.DOCUMENT_POSITION_PRECEDING,x=$.DOCUMENT_POSITION_FOLLOWING,F=$.ELEMENT_NODE,W=$.TEXT_NODE,j=$.CDATA_SECTION_NODE,U=$.PROCESSING_INSTRUCTION_NODE,K=$.COMMENT_NODE,G=B.appendChild,q=B.cloneNode,X=B.compareDocumentPosition,V=B.insertBefore,Y=B.removeChild,z=B.replaceChild,J=B.hasChildNodes,Q=HTMLElement.prototype.contains,Z=u(B,"firstChild").get,ee=u(B,"lastChild").get,te=u(B,"textContent").get,ne=u(B,"parentNode").get,re=u(B,"ownerDocument").get,le=s.call(B,"parentElement")?u(B,"parentElement").get:u(HTMLElement.prototype,"parentElement").get,oe=u(B,"textContent").set,ae=s.call(B,"childNodes")?u(B,"childNodes").get:u(HTMLElement.prototype,"childNodes").get,ie=s.call(B,"isConnected")?u(B,"isConnected").get:function(){var e=re.call(this);return null===e||0!=(X.call(e,this)&I)},ue=Element.prototype,ce=ue.getAttribute,se=ue.getBoundingClientRect,fe=ue.getElementsByTagName,he=ue.getElementsByTagNameNS,pe=ue.hasAttribute,ge=ue.querySelector,me=ue.querySelectorAll,ve=ue.removeAttribute,be=ue.setAttribute,de=s.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ee=u(Element.prototype,"childElementCount").get,ye=u(Element.prototype,"firstElementChild").get,we=u(Element.prototype,"lastElementChild").get,Te=u(HTMLElement.prototype,"innerText"),Ne=Te?Te.get:null,Le=Te?Te.set:null,Me=u(HTMLElement.prototype,"outerText"),Ce=Me?Me.get:null,Se=Me?Me.set:null,Oe=s.call(Element.prototype,"innerHTML")?u(Element.prototype,"innerHTML"):u(HTMLElement.prototype,"innerHTML"),Ae=Oe.get,He=Oe.set,_e=s.call(Element.prototype,"outerHTML")?u(Element.prototype,"outerHTML"):u(HTMLElement.prototype,"outerHTML"),Re=_e.get,Pe=_e.set,De=u(Element.prototype,"tagName").get,$e=u(HTMLElement.prototype,"tabIndex"),Be=$e.get,Ie=$e.set,ke=s.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xe=s.call(Element.prototype,"children")?u(Element.prototype,"children").get:u(HTMLElement.prototype,"children").get,Fe=HTMLElement.prototype.getElementsByClassName,We=s.call(Element.prototype,"shadowRoot")?u(Element.prototype,"shadowRoot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(H=HTMLSlotElement.prototype.assignedNodes,_=HTMLSlotElement.prototype.assignedElements):(H=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},_=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var je=u(Event.prototype,"target").get,Ue=u(Event.prototype,"currentTarget").get,Ke=u(FocusEvent.prototype,"relatedTarget").get,Ge=s.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},qe=u(Document.prototype,"activeElement").get,Xe=s.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Ve=s.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Ye=u(Document.prototype,"defaultView").get,ze=Document.prototype,Je=ze.querySelectorAll,Qe=ze.getElementById,Ze=ze.getElementsByClassName,et=ze.getElementsByTagName,tt=ze.getElementsByTagNameNS,nt=HTMLDocument.prototype.getElementsByName,rt=window,lt=rt.addEventListener,ot=rt.removeEventListener,at=rt.getComputedStyle,it=rt.getSelection,ut=MutationObserver,ct=ut.prototype.observe,st=null;"undefined"!=typeof ShadowRoot&&(st=ShadowRoot);var ft=!M(st),ht=M(st)?function(){return!1}:function(e){return e instanceof st};var pt,gt=Document.prototype.createElement;function mt(e){var t=re.call(e);return null===t?e:t}function vt(e){var t=mt(e),n=Ye.call(t);if(null===n)throw new TypeError;return n}function bt(e){if(L(pt)){var t=mt(e);pt=t.body&&"temporary-bypass"===ce.call(t.body,"data-global-patching-bypass")}return C(pt)}function dt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)};f(e,HTMLElement.constructor),f(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,i(Document.prototype,"createElement",{value:function(t,n){var r=gt.apply(this,y.call(arguments));return 4===t.length&&115===N.call(t,0)&&108===N.call(t,1)&&111===N.call(t,2)&&116===N.call(t,3)&&f(r,e.prototype),r}})}(),R.lwcRuntimeFlags||Object.defineProperty(R,"lwcRuntimeFlags",{value:o(null)});var Et=R.lwcRuntimeFlags,yt="undefined"!=typeof EventTarget?EventTarget.prototype:$.prototype,wt=yt.addEventListener,Tt=yt.dispatchEvent,Nt=yt.removeEventListener,Lt=new WeakMap,Mt=new WeakMap;function Ct(e,t,n){if(t===n)return!0;var r=Mt.get(e);return L(r)&&(r=e.composedPath(),Mt.set(e,r)),r.includes(n)}function St(e){if(!function(e){return O(e)||A(e)&&!M(e)&&O(e.handleEvent)}(e))return e;var t=Lt.get(e);return L(t)&&(t=function(t){var n,r=Ue.call(t),l=t.composed;Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=!(lr.has(t)&&S(l)):n=Ct(t,Dt(t),r);if(n)return O(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Lt.set(e,t)),t}var Ot=new WeakMap;function At(e,t){return!!(X.call(e,t)&I)}var Ht={composed:!1};function _t(e,t){var n=e.getRootNode(t);return Zn(n)&&(n=zn(n)),n}var Rt=new WeakMap;function Pt(e){var t=Rt.get(e);return L(t)&&(t=o(null),Rt.set(e,t)),t}function Dt(e){var t;return null!==(t=lr.get(e))&&void 0!==t?t:je.call(e)}var $t=new WeakMap;function Bt(e){if(!O(e))throw new TypeError;var t=$t.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);(ht(r)||(r=Jn(r)),Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)?n=function(e){var t=e.composed,n=je.call(e),r=Ue.call(e);if(n===r)return lr.get(e)===Jn(n);if(C(t))return!0;if(C(lr.has(e)))return!1;var l=_t(n,Ht),o=r;return At(l,o)||l===o}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=1,$t.set(e,t)),t}var It=new WeakMap;function kt(e){if(!O(e))throw new TypeError;var t=It.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=function(e){if(C(e.composed))return!0;if(lr.has(e))return!1;var t=je.call(e),n=Ue.call(e);if(t===n)return!0;return At(_t(t,Ht),n)}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=0,It.set(e,t)),t}function xt(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Pt(Ue.call(e))[r];i(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),i(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var u=y.call(a);function c(n){T.call(u,(function(r){S(t)&&r.placement===n&&-1!==m.call(a,r)&&r.call(void 0,e)}))}Ot.set(e,1),c(1),S(t)&&S(n)&&(Ot.set(e,0),c(0)),Ot.set(e,2)}function Ft(e,t,n){var r=Pt(e),l=r[t];L(l)&&(l=r[t]=[]),-1===m.call(l,n)&&(0===l.length&&wt.call(e,t,xt),b.call(l,n))}function Wt(e,t,n){var r,l;L(l=Pt(e)[t])||-1===(r=m.call(l,n))||(w.call(l,r,1),0===l.length&&Nt.call(e,t,xt))}function jt(e,t,n){O(t)&&Ft(this,e,kt(t))}function Ut(e,t,n){O(t)&&Wt(this,e,kt(t))}var Kt="$$HostElementKey$$",Gt="$$ShadowedNodeKey$$";function qt(e,t,n){var r=e,l=n.value;r[t]=l}function Xt(e){return e[Kt]}function Vt(e){for(var t,n=e;!M(n);){if(!L(t=Xt(n)))return t;n=ne.call(n)}}function Yt(e){return e[Gt]}function zt(e){return!L(Xt(e))}function Jt(e){for(var t=le.call(e);!M(t)&&tn(t);)e=t,t=le.call(e);return e}function Qt(e,t){for(var n=Yt(e),r=t instanceof Element?t:le.call(t);!M(r)&&r!==e;){var l=Vt(r),o=le.call(r);if(l===n)return tn(r);if(o===e)return!1;if(M(o)||Vt(o)===l)r=o;else{if(!tn(o))return!1;if(!M(r=Zt(Jt(o)))){if(r===e)return!0;if(Vt(r)===n)return!0}}}return!1}function Zt(e){if(!(e instanceof $))return null;var t=Vt(e);if(L(t))return null;for(var n=e;!M(n)&&Yt(n)!==t;)n=ne.call(n);return M(n)?null:n}function en(e){return tn(e)&&zt(e)}function tn(e){return e instanceof HTMLSlotElement}function nn(e,t){var n=Vt(t);return L(n)||Yt(e)===n}function rn(e){var t=zn(e);return an(t,dt(ae.call(t)))}function ln(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!nn(e,o)&&Qt(e,o)&&b.call(n,o)}return n}function on(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!nn(e,l)&&Qt(e,l))return l}return null}function an(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];nn(e,o)&&b.call(n,o)}return n}function un(e,t){for(var n=0,r=t.length;n<r;n+=1)if(nn(e,t[n]))return t[n];return null}function cn(e){if(!Qn(e)&&!tn(e))return dt(ae.call(e));if(Qn(e)){var t=dt(me.call(e,"slot")),n=Xn(Jn(e));return d.call(t,(function(e,t){return n===Xn(t)&&b.apply(e,sn(t)),e}),[])}var r=dt(ae.call(e)),l=Xn(e);return p.call(r,(function(e){return l===Xn(e)}))}function sn(e){var t=Zt(e);if(M(t))return[];var n=dt(ae.call(e));return p.call(n,(function(e){return!zt(e)||!nn(t,e)}))}function fn(e){if(e.nodeType===F){for(var t=cn(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==K&&(n+=fn(o))}return n}return e.nodeValue}var hn=new WeakMap;function pn(){throw new TypeError("Illegal constructor")}function gn(e){var t=o(pn.prototype);return hn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}pn.prototype=o(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:pn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return hn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){T.call(hn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return hn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=hn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),f(pn,NodeList);var mn=new WeakMap;function vn(){throw new TypeError("Illegal constructor")}function bn(e){var t=o(vn.prototype);return mn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}vn.prototype=o(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:vn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return mn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=mn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===ce.call(l,"id")||e===ce.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),f(vn,HTMLCollection);var dn=/[&\u00A0"]/g,En=/[&\u00A0<>]/g,yn=String.prototype,wn=yn.replace,Tn=yn.toLowerCase;function Nn(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function Ln(e){return wn.call(e,dn,Nn)}var Mn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Cn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Sn(e){switch(e.nodeType){case F:for(var t,n=e.attributes,r=De.call(e),l="<"+Tn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Ln(t.value)+'"';return l+=">",Mn.has(r)?l:l+function(e){for(var t="",n=cn(e),r=0,l=n.length;r<l;r+=1)t+=Sn(n[r]);return t}(e)+"</"+Tn.call(r)+">";case W:var a=e.data,i=e.parentNode;return i instanceof Element&&Cn.has(De.call(i))?a:function(e){return wn.call(e,En,Nn)}(a);case j:return"<!CDATA[[".concat(e.data,"]]>");case U:return"<?".concat(e.target," ").concat(e.data,"?>");case K:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function On(e){return en(e)||Qn(e)}function An(e,t){var n=Zt(e);if(t===n)return Jn(n);if(t instanceof Element){if(Vt(e)===Vt(t))return t;if(!M(n)&&tn(t)){var r=Zt(t);if(!M(r)&&nn(n,r))return r}}return null}function Hn(){return jn(this).length>0}function _n(){return jn(this)[0]||null}function Rn(){var e=jn(this);return e[e.length-1]||null}function Pn(){return fn(this)}function Dn(){var e=ne.call(this);return M(e)?e:An(this,e)}function $n(){var e=ne.call(this);if(M(e))return null;var t=An(this,e);return t instanceof Element?t:null}function Bn(e){return this.getRootNode()===e?10:Xt(this)!==Xt(e)?35:X.call(this,e)}function In(e){return null!=e&&Xt(this)===Xt(e)&&0!=(X.call(this,e)&I)}function kn(e){var t=q.call(this,!1);if(!e)return t;for(var n=jn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function xn(){if(Qn(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)}var Fn=$.prototype.getRootNode,Wn=L(Fn)?function(){for(var e,t=this;!M(e=ne.call(t));)t=e;return t}:Fn;a($.prototype,{firstChild:{get:function(){return On(this)?_n.call(this):Z.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return On(this)?Rn.call(this):ee.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Et.ENABLE_NODE_PATCH?bt(this)?te.call(this):Pn.call(this):zt(this)||Qn(this)?Pn.call(this):te.call(this)},set:function(e){oe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(zt(this))return Dn.call(this);var e=ne.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(zt(this))return $n.call(this);var e=le.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return On(this)?xn.call(this):ae.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return On(this)?Hn.call(this):J.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return bt(this)?X.call(this,e):Bn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Et.ENABLE_NODE_PATCH?bt(this)?Q.call(this,e):In.call(this,e):null!=e&&(zt(this)||Qn(this)?In.call(this,e):Q.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Et.ENABLE_NODE_PATCH?C(e)?bt(this)?q.call(this,e):kn.call(this,e):q.call(this,e):zt(this)||Qn(this)?kn.call(this,e):q.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return C(!L(e)&&!!e.composed)?Wn.call(this,e):M(n=Zt(t=this))?Wn.call(t):Jn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(this)}}});var jn=function(e){return e.childNodes};function Un(e,t,n,r){var l=Ve.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!L(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!M(l))for(var i=0;i<l.length;i++){var u=l[i];-1===a.indexOf(u.getRootNode())||en(u)||o.push(u)}return o}s.call(HTMLElement.prototype,"contains")&&i(HTMLElement.prototype,"contains",u($.prototype,"contains")),s.call(HTMLElement.prototype,"parentElement")&&i(HTMLElement.prototype,"parentElement",u($.prototype,"parentElement"));var Kn=new WeakMap,Gn=document.createDocumentFragment;function qn(e){var t=Kn.get(e);if(L(t))throw new TypeError;return t}function Xn(e){return e.$shadowResolver$}function Vn(e,t){e.$shadowResolver$=t}function Yn(e){return qn(e).delegatesFocus}function zn(e){return qn(e).host}function Jn(e){return qn(e).shadowRoot}function Qn(e){var t=Kn.get(e);return!L(t)&&e===t.host}function Zn(e){var t=Kn.get(e);return!L(t)&&e===t.shadowRoot}i($.prototype,P,{set:function(e){var t,n;L(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,qt(t,Kt,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),i(R,"$isNativeShadowRootDefined$",{value:ft});var er=0;function tr(e,t){if(Kn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=mt(e),o=Gn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Kn.set(o,a),Kn.set(e,a);var i=function(){return o},u=i.nodeKey=er++;return qt(e,Gt,{value:u}),Vn(o,i),f(o,ar.prototype),o}var nr={constructor:{writable:!0,configurable:!0,value:ar},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},rr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=zn(this),t=mt(e),n=qe.call(t);if(M(n))return n;if(0==(X.call(e,n)&I))return null;for(var r=n;!nn(e,r);)r=le.call(r);return tn(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return qn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return cr(this,mt(zn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Un(this,mt(zn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return zn(this)}},mode:{configurable:!0,get:function(){return qn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},lr=new WeakMap,or={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return V.call(zn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Y.call(zn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return G.call(zn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(zn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Ft(zn(e),t,Bt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return lr.set(e,this),Tt.apply(zn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Wt(zn(e),t,Bt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return zn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return gn(rn(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=zn(this);return this===e?0:this.contains(e)?20:X.call(t,e)&I?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=zn(this);return 0!=(X.call(t,e)&I)&&nn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return jn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=jn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return jn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(zn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return zn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==K&&(t+=fn(l))}return t},set:function(e){var t=zn(this);oe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!L(e)&&C(e.composed)?zn(this).getRootNode(e):this}}};function ar(){throw new TypeError("Illegal constructor")}function ir(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof $))return r;n=e.getRootNode()}for(var l,o=e;!M(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=M(a)?o.parentNode:a}else o=!Zn(o)&&!ht(o)||!t&&o===n?o instanceof $?o.parentNode:null:o.host;return l=e instanceof Window?e.document:mt(e),r[r.length-1]===l&&r.push(window),r}
|
|
1
|
+
!function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var l=Object.assign,o=Object.create,a=Object.defineProperties,i=Object.defineProperty,u=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,s=Object.hasOwnProperty,f=Object.setPrototypeOf,h=Array.prototype,p=h.filter,g=h.find,m=h.indexOf,v=h.map,b=h.push,d=h.reduce,E=h.reverse,y=h.slice,w=h.splice,T=h.forEach,N=String.prototype.charCodeAt;function L(e){return void 0===e}function M(e){return null===e}function C(e){return!0===e}function S(e){return!1===e}function O(e){return"function"==typeof e}function A(e){return"object"===r(e)}var H,_,R=function(){if("object"===("undefined"==typeof globalThis?"undefined":r(globalThis)))return globalThis;var e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),P="$shadowResolver$",D="$shadowToken$",$=Node,B=$.prototype,I=$.DOCUMENT_POSITION_CONTAINED_BY,k=$.DOCUMENT_POSITION_PRECEDING,x=$.DOCUMENT_POSITION_FOLLOWING,F=$.ELEMENT_NODE,W=$.TEXT_NODE,j=$.CDATA_SECTION_NODE,U=$.PROCESSING_INSTRUCTION_NODE,K=$.COMMENT_NODE,G=B.appendChild,q=B.cloneNode,X=B.compareDocumentPosition,V=B.insertBefore,Y=B.removeChild,z=B.replaceChild,J=B.hasChildNodes,Q=HTMLElement.prototype.contains,Z=u(B,"firstChild").get,ee=u(B,"lastChild").get,te=u(B,"textContent").get,ne=u(B,"parentNode").get,re=u(B,"ownerDocument").get,le=s.call(B,"parentElement")?u(B,"parentElement").get:u(HTMLElement.prototype,"parentElement").get,oe=u(B,"textContent").set,ae=s.call(B,"childNodes")?u(B,"childNodes").get:u(HTMLElement.prototype,"childNodes").get,ie=s.call(B,"isConnected")?u(B,"isConnected").get:function(){var e=re.call(this);return null===e||0!=(X.call(e,this)&I)},ue=Element.prototype,ce=ue.getAttribute,se=ue.getBoundingClientRect,fe=ue.getElementsByTagName,he=ue.getElementsByTagNameNS,pe=ue.hasAttribute,ge=ue.querySelector,me=ue.querySelectorAll,ve=ue.removeAttribute,be=ue.setAttribute,de=s.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ee=u(Element.prototype,"childElementCount").get,ye=u(Element.prototype,"firstElementChild").get,we=u(Element.prototype,"lastElementChild").get,Te=u(HTMLElement.prototype,"innerText"),Ne=Te?Te.get:null,Le=Te?Te.set:null,Me=u(HTMLElement.prototype,"outerText"),Ce=Me?Me.get:null,Se=Me?Me.set:null,Oe=s.call(Element.prototype,"innerHTML")?u(Element.prototype,"innerHTML"):u(HTMLElement.prototype,"innerHTML"),Ae=Oe.get,He=Oe.set,_e=s.call(Element.prototype,"outerHTML")?u(Element.prototype,"outerHTML"):u(HTMLElement.prototype,"outerHTML"),Re=_e.get,Pe=_e.set,De=u(Element.prototype,"tagName").get,$e=u(HTMLElement.prototype,"tabIndex"),Be=$e.get,Ie=$e.set,ke=s.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xe=s.call(Element.prototype,"children")?u(Element.prototype,"children").get:u(HTMLElement.prototype,"children").get,Fe=HTMLElement.prototype.getElementsByClassName,We=s.call(Element.prototype,"shadowRoot")?u(Element.prototype,"shadowRoot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(H=HTMLSlotElement.prototype.assignedNodes,_=HTMLSlotElement.prototype.assignedElements):(H=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},_=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var je=u(Event.prototype,"target").get,Ue=u(Event.prototype,"currentTarget").get,Ke=u(FocusEvent.prototype,"relatedTarget").get,Ge=s.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},qe=u(Document.prototype,"activeElement").get,Xe=s.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Ve=s.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Ye=u(Document.prototype,"defaultView").get,ze=Document.prototype,Je=ze.querySelectorAll,Qe=ze.getElementById,Ze=ze.getElementsByClassName,et=ze.getElementsByTagName,tt=ze.getElementsByTagNameNS,nt=HTMLDocument.prototype.getElementsByName,rt=window,lt=rt.addEventListener,ot=rt.removeEventListener,at=rt.getComputedStyle,it=rt.getSelection,ut=MutationObserver,ct=ut.prototype.observe,st=null;"undefined"!=typeof ShadowRoot&&(st=ShadowRoot);var ft=!M(st),ht=M(st)?function(){return!1}:function(e){return e instanceof st};var pt,gt=Document.prototype.createElement;function mt(e){var t=re.call(e);return null===t?e:t}function vt(e){var t=mt(e),n=Ye.call(t);if(null===n)throw new TypeError;return n}function bt(e){if(L(pt)){var t=mt(e);pt=t.body&&"temporary-bypass"===ce.call(t.body,"data-global-patching-bypass")}return C(pt)}function dt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)};f(e,HTMLElement.constructor),f(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,i(Document.prototype,"createElement",{value:function(t,n){var r=gt.apply(this,y.call(arguments));return 4===t.length&&115===N.call(t,0)&&108===N.call(t,1)&&111===N.call(t,2)&&116===N.call(t,3)&&f(r,e.prototype),r}})}(),R.lwcRuntimeFlags||Object.defineProperty(R,"lwcRuntimeFlags",{value:o(null)});var Et=R.lwcRuntimeFlags,yt="undefined"!=typeof EventTarget?EventTarget.prototype:$.prototype,wt=yt.addEventListener,Tt=yt.dispatchEvent,Nt=yt.removeEventListener,Lt=new WeakMap,Mt=new WeakMap;function Ct(e,t,n){if(t===n)return!0;var r=Mt.get(e);return L(r)&&(r=e.composedPath(),Mt.set(e,r)),r.includes(n)}function St(e){if(!function(e){return O(e)||A(e)&&!M(e)&&O(e.handleEvent)}(e))return e;var t=Lt.get(e);return L(t)&&(t=function(t){var n,r=Ue.call(t),l=t.composed;Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=!(lr.has(t)&&S(l)):n=Ct(t,Dt(t),r);if(n)return O(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Lt.set(e,t)),t}var Ot=new WeakMap;function At(e,t){return!!(X.call(e,t)&I)}var Ht={composed:!1};function _t(e,t){var n=e.getRootNode(t);return Zn(n)&&(n=zn(n)),n}var Rt=new WeakMap;function Pt(e){var t=Rt.get(e);return L(t)&&(t=o(null),Rt.set(e,t)),t}function Dt(e){var t;return null!==(t=lr.get(e))&&void 0!==t?t:je.call(e)}var $t=new WeakMap;function Bt(e){if(!O(e))throw new TypeError;var t=$t.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);(ht(r)||(r=Jn(r)),Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)?n=function(e){var t=e.composed,n=je.call(e),r=Ue.call(e);if(n===r)return lr.get(e)===Jn(n);if(C(t))return!0;if(C(lr.has(e)))return!1;var l=_t(n,Ht),o=r;return At(l,o)||l===o}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=1,$t.set(e,t)),t}var It=new WeakMap;function kt(e){if(!O(e))throw new TypeError;var t=It.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=function(e){if(C(e.composed))return!0;if(lr.has(e))return!1;var t=je.call(e),n=Ue.call(e);if(t===n)return!0;return At(_t(t,Ht),n)}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=0,It.set(e,t)),t}function xt(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Pt(Ue.call(e))[r];i(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),i(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var u=y.call(a);function c(n){T.call(u,(function(r){S(t)&&r.placement===n&&-1!==m.call(a,r)&&r.call(void 0,e)}))}Ot.set(e,1),c(1),S(t)&&S(n)&&(Ot.set(e,0),c(0)),Ot.set(e,2)}function Ft(e,t,n){var r=Pt(e),l=r[t];L(l)&&(l=r[t]=[]),-1===m.call(l,n)&&(0===l.length&&wt.call(e,t,xt),b.call(l,n))}function Wt(e,t,n){var r,l;L(l=Pt(e)[t])||-1===(r=m.call(l,n))||(w.call(l,r,1),0===l.length&&Nt.call(e,t,xt))}function jt(e,t,n){O(t)&&Ft(this,e,kt(t))}function Ut(e,t,n){O(t)&&Wt(this,e,kt(t))}var Kt="$$HostElementKey$$",Gt="$$ShadowedNodeKey$$";function qt(e,t,n){var r=e,l=n.value;r[t]=l}function Xt(e){return e[Kt]}function Vt(e){for(var t,n=e;!M(n);){if(!L(t=Xt(n)))return t;n=ne.call(n)}}function Yt(e){return e[Gt]}function zt(e){return!L(Xt(e))}function Jt(e){for(var t=le.call(e);!M(t)&&tn(t);)e=t,t=le.call(e);return e}function Qt(e,t){for(var n=Yt(e),r=t instanceof Element?t:le.call(t);!M(r)&&r!==e;){var l=Vt(r),o=le.call(r);if(l===n)return tn(r);if(o===e)return!1;if(M(o)||Vt(o)===l)r=o;else{if(!tn(o))return!1;if(!M(r=Zt(Jt(o)))){if(r===e)return!0;if(Vt(r)===n)return!0}}}return!1}function Zt(e){if(!(e instanceof $))return null;var t=Vt(e);if(L(t))return null;for(var n=e;!M(n)&&Yt(n)!==t;)n=ne.call(n);return M(n)?null:n}function en(e){return tn(e)&&zt(e)}function tn(e){return e instanceof HTMLSlotElement}function nn(e,t){var n=Vt(t);return L(n)||Yt(e)===n}function rn(e){var t=zn(e);return an(t,dt(ae.call(t)))}function ln(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!nn(e,o)&&Qt(e,o)&&b.call(n,o)}return n}function on(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!nn(e,l)&&Qt(e,l))return l}return null}function an(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];nn(e,o)&&b.call(n,o)}return n}function un(e,t){for(var n=0,r=t.length;n<r;n+=1)if(nn(e,t[n]))return t[n];return null}function cn(e){if(!Qn(e)&&!tn(e))return dt(ae.call(e));if(Qn(e)){var t=dt(me.call(e,"slot")),n=Xn(Jn(e));return d.call(t,(function(e,t){return n===Xn(t)&&b.apply(e,sn(t)),e}),[])}var r=dt(ae.call(e)),l=Xn(e);return p.call(r,(function(e){return l===Xn(e)}))}function sn(e){var t=Zt(e);if(M(t))return[];var n=dt(ae.call(e));return p.call(n,(function(e){return!zt(e)||!nn(t,e)}))}function fn(e){switch(e.nodeType){case F:for(var t=cn(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==K&&(n+=fn(o))}return n;default:return e.nodeValue}}var hn=new WeakMap;function pn(){throw new TypeError("Illegal constructor")}function gn(e){var t=o(pn.prototype);return hn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}pn.prototype=o(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:pn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return hn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){T.call(hn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return hn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=hn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),f(pn,NodeList);var mn=new WeakMap;function vn(){throw new TypeError("Illegal constructor")}function bn(e){var t=o(vn.prototype);return mn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}vn.prototype=o(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:vn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return mn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=mn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===ce.call(l,"id")||e===ce.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),f(vn,HTMLCollection);var dn=/[&\u00A0"]/g,En=/[&\u00A0<>]/g,yn=String.prototype,wn=yn.replace,Tn=yn.toLowerCase;function Nn(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function Ln(e){return wn.call(e,dn,Nn)}var Mn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Cn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Sn(e){switch(e.nodeType){case F:for(var t,n=e.attributes,r=De.call(e),l="<"+Tn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Ln(t.value)+'"';return l+=">",Mn.has(r)?l:l+function(e){for(var t="",n=cn(e),r=0,l=n.length;r<l;r+=1)t+=Sn(n[r]);return t}(e)+"</"+Tn.call(r)+">";case W:var a=e.data,i=e.parentNode;return i instanceof Element&&Cn.has(De.call(i))?a:function(e){return wn.call(e,En,Nn)}(a);case j:return"<!CDATA[[".concat(e.data,"]]>");case U:return"<?".concat(e.target," ").concat(e.data,"?>");case K:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function On(e){return en(e)||Qn(e)}function An(e,t){var n=Zt(e);if(t===n)return Jn(n);if(t instanceof Element){if(Vt(e)===Vt(t))return t;if(!M(n)&&tn(t)){var r=Zt(t);if(!M(r)&&nn(n,r))return r}}return null}function Hn(){return jn(this).length>0}function _n(){return jn(this)[0]||null}function Rn(){var e=jn(this);return e[e.length-1]||null}function Pn(){return fn(this)}function Dn(){var e=ne.call(this);return M(e)?e:An(this,e)}function $n(){var e=ne.call(this);if(M(e))return null;var t=An(this,e);return t instanceof Element?t:null}function Bn(e){return this.getRootNode()===e?10:Xt(this)!==Xt(e)?35:X.call(this,e)}function In(e){return null!=e&&Xt(this)===Xt(e)&&0!=(X.call(this,e)&I)}function kn(e){var t=q.call(this,!1);if(!e)return t;for(var n=jn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function xn(){if(Qn(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)}var Fn=$.prototype.getRootNode,Wn=L(Fn)?function(){for(var e,t=this;!M(e=ne.call(t));)t=e;return t}:Fn;a($.prototype,{firstChild:{get:function(){return On(this)?_n.call(this):Z.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return On(this)?Rn.call(this):ee.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Et.ENABLE_NODE_PATCH?bt(this)?te.call(this):Pn.call(this):zt(this)||Qn(this)?Pn.call(this):te.call(this)},set:function(e){oe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(zt(this))return Dn.call(this);var e=ne.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(zt(this))return $n.call(this);var e=le.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return On(this)?xn.call(this):ae.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return On(this)?Hn.call(this):J.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return bt(this)?X.call(this,e):Bn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Et.ENABLE_NODE_PATCH?bt(this)?Q.call(this,e):In.call(this,e):null!=e&&(zt(this)||Qn(this)?In.call(this,e):Q.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Et.ENABLE_NODE_PATCH?C(e)?bt(this)?q.call(this,e):kn.call(this,e):q.call(this,e):zt(this)||Qn(this)?kn.call(this,e):q.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return C(!L(e)&&!!e.composed)?Wn.call(this,e):M(n=Zt(t=this))?Wn.call(t):Jn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(this)}}});var jn=function(e){return e.childNodes};function Un(e,t,n,r){var l=Ve.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!L(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!M(l))for(var i=0;i<l.length;i++){var u=l[i];-1===a.indexOf(u.getRootNode())||en(u)||o.push(u)}return o}s.call(HTMLElement.prototype,"contains")&&i(HTMLElement.prototype,"contains",u($.prototype,"contains")),s.call(HTMLElement.prototype,"parentElement")&&i(HTMLElement.prototype,"parentElement",u($.prototype,"parentElement"));var Kn=new WeakMap,Gn=document.createDocumentFragment;function qn(e){var t=Kn.get(e);if(L(t))throw new TypeError;return t}function Xn(e){return e.$shadowResolver$}function Vn(e,t){e.$shadowResolver$=t}function Yn(e){return qn(e).delegatesFocus}function zn(e){return qn(e).host}function Jn(e){return qn(e).shadowRoot}function Qn(e){var t=Kn.get(e);return!L(t)&&e===t.host}function Zn(e){var t=Kn.get(e);return!L(t)&&e===t.shadowRoot}i($.prototype,P,{set:function(e){var t,n;L(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,qt(t,Kt,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),i(R,"$isNativeShadowRootDefined$",{value:ft});var er=0;function tr(e,t){if(Kn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=mt(e),o=Gn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Kn.set(o,a),Kn.set(e,a);var i=function(){return o},u=i.nodeKey=er++;return qt(e,Gt,{value:u}),Vn(o,i),f(o,or.prototype),o}var nr={constructor:{writable:!0,configurable:!0,value:or},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},rr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=zn(this),t=mt(e),n=qe.call(t);if(M(n))return n;if(0==(X.call(e,n)&I))return null;for(var r=n;!nn(e,r);)r=le.call(r);return tn(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return qn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ur(this,mt(zn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Un(this,mt(zn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return zn(this)}},mode:{configurable:!0,get:function(){return qn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},lr=new WeakMap;function or(){throw new TypeError("Illegal constructor")}function ar(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof $))return r;n=e.getRootNode()}for(var l,o=e;!M(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=M(a)?o.parentNode:a}else o=!Zn(o)&&!ht(o)||!t&&o===n?o instanceof $?o.parentNode:null:o.host;return l=e instanceof Window?e.document:mt(e),r[r.length-1]===l&&r.push(window),r}
|
|
2
2
|
/**
|
|
3
3
|
@license
|
|
4
4
|
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
8
8
|
Code distributed by Google as part of the polymer project is also
|
|
9
9
|
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
10
|
-
*/function ur(e,t){if(M(e))return null;for(var n,r,l,o,a=ir(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!Zn(l)||!L(o)&&o>-1)return n;return null}function cr(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:ur(e,ir(l,!0))}l(nr,or,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return bn(p.call(rn(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,un(n=zn(this),dt(me.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return gn((t=e,an(n=zn(this),dt(me.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t},set:function(e){var t=zn(this);He.call(t,e)}}},rr),ar.prototype=o(DocumentFragment.prototype,nr),i(ar,Symbol.hasInstance,{value:function(e){return A(e)&&!M(e)&&(ht(e)||c(e)===ar.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return cr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Un(this,this,e,t)},i(Document.prototype,"activeElement",{get:function(){var e=qe.call(this);if(M(e))return e;for(;!L(Xt(e));)if(M(e=le.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),i(Document.prototype,"getElementById",{value:function(){var e=Qe.apply(this,y.call(arguments));return M(e)?null:L(Xt(e))||bt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=g.call(e,(function(e){return L(Xt(e))||bt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=dt(Ze.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=dt(et.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=dt(tt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=dt(nt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ar,configurable:!0,writable:!0});var sr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var fr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function hr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!sr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!sr.get.call(e)})()&&(HTMLElement.prototype.click=function(){wt.call(this,"click",hr);try{fr.value.call(this)}finally{Nt.call(this,"click",hr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=l(o(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var pr,gr,mr=CustomEvent;function vr(e,t){var n=new mr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(vr.prototype=mr.prototype,window.CustomEvent=vr,"undefined"!=typeof ClipboardEvent){var br=l(o(null),{copy:1,cut:1,paste:1});a(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===br[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(pr=u(HTMLIFrameElement.prototype,"contentWindow"),gr=pr.get,pr.get=function(){var e,t=gr.call(this);return M(t)||L(Xt(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},i(HTMLIFrameElement.prototype,"contentWindow",pr));var dr,Er=MutationObserver,yr=Er.prototype,wr=yr.disconnect,Tr=yr.observe,Nr=yr.takeRecords,Lr="$$lwcObserverCallbackWrapper$$",Mr=new WeakMap;function Cr(e){return e.$$lwcNodeObservers$$}function Sr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,i=o(MutationRecord.prototype);return a(i,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),i}function Or(e,t){for(var n=t;!M(n);){var r=Cr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Ar(e,t){return d.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Yt(r)))Or(t,r)&&b.call(e,n);else if(l.length>0){var a=l[0];if(Or(t,a)){var i=Cr(r);!i||i[0]!==t&&-1===m.call(i,t)?b.call(e,Sr(n)):b.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Vt(r)===Vt(c)&&Or(t,r))b.call(e,n);else if(u){var s=Cr(u);!s||s[0]!==t&&-1===m.call(s,t)||b.call(e,Sr(n))}}return e}),[])}function Hr(e){var t=function(e){var t=e[Lr];return L(t)&&(t=e[Lr]=function(t,n){var r=Ar(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new Er(t)}function _r(e,t,n){if(arguments.length>1){var r=y.call(arguments);return r[1]=St(r[1]),lt.apply(this,r)}return lt.apply(this,arguments)}function Rr(e,t,n){if(arguments.length>1){var r=y.call(arguments);r[1]=St(r[1]),ot.apply(this,r)}ot.apply(this,arguments)}function Pr(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=ir(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Xt(e))?e:ur(t,n);if(r===t||r===t.body)return L(Xt(e))?e:ur(t,n);var l=r,o=n;Qn(r)&&(1===Ot.get(this)&&(l=Jn(r)));return Qn(e)&&lr.has(this)&&(o=ir(Jn(e),this.composed)),ur(l,o)}function Dr(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Kn.has(t));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Qn(e)&&lr.has(this)&&(l=Jn(e)),ir(l,this.composed)}function $r(e){var t=u(e.prototype,"relatedTarget").get;i(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(M(e))return null;if(!(e instanceof $&&zt(e)))return e;var n=Ue.call(this);return M(n)&&(n=mt(e)),ur(n,ir(e,!0))},enumerable:!0,configurable:!0})}Hr.prototype=Er.prototype,Hr.prototype.disconnect=function(){var e=this;wr.call(this);var t=Mr.get(this);L(t)||(T.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!L(n)){var r=m.call(n,e);-1!==r&&w.call(n,r,1)}})),t.length=0)},Hr.prototype.observe=function(e,t){var n,r=Cr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&b.call(r,this),Zn(e)&&(e=e.host),Mr.has(this)){var l=Mr.get(this);-1===m.call(l,e)&&b.call(l,e)}else Mr.set(this,[e]);return Tr.call(this,e,t)},Hr.prototype.takeRecords=function(){return Ar(Nr.call(this),this)},i(window,"MutationObserver",{value:Hr,configurable:!0,writable:!0}),a(yt,{addEventListener:{value:function(e,t,n){if(Qn(this))return jt.apply(this,arguments);if(arguments.length<2){var r=y.call(arguments);return r.length>1&&(r[1]=St(r[1])),wt.apply(this,r)}var l=St(t);return wt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Qn(this))return Ut.apply(this,arguments);var r=y.call(arguments);arguments.length>1&&(r[1]=St(r[1])),Nt.apply(this,r),Nt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&a(Window.prototype,{addEventListener:{value:_r,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Rr,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:Pr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ue.call(this);return M(e)?null:1===Ot.get(this)?Jn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Dr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Pr,enumerable:!0,configurable:!0},path:{get:Dr,enumerable:!0,configurable:!0}}),$r(FocusEvent),$r(MouseEvent);var Br={childList:!0},Ir=new WeakMap;function kr(e){var t=dt(ae.call(e));return d.call(t,(function(e,t){return t instanceof Element&&tn(t)?b.apply(e,kr(t)):b.call(e,t),e}),[])}function xr(){var e=ne.call(this);return!M(e)&&tn(e)&&Xt(e)!==Xt(this)?e:null}function Fr(e,t){var n,r=Xt(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);else if(Qn(e)){var l=Zt(e);n=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else n=p.call(t,(function(e){return Vt(e)===r}));return n}function Wr(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t}function jr(){return Sn(this)}function Ur(){var e=Zt(this),t=M(e)?[]:an(e,cn(this));return bn(p.call(t,(function(e){return e instanceof Element})))}function Kr(){return this.children.length}function Gr(){return this.children[0]||null}function qr(){var e=this.children;return e.item(e.length-1)||null}function Xr(e,t,n){var r;if(Qn(e)){var l=Zt(e);r=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else if(zt(e)){var o=Xt(e);if(L(o))if(1===n){var a=Vt(e);r=p.call(t,(function(e){return Vt(e)===a}))}else r=y.call(t);else r=p.call(t,(function(e){return Vt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);return r}a(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Ir.get(this)||(Ir.set(this,!0),dr||(dr=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(b.call(t,n),Tt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(dr,this,Br))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten),n=t?kr(this):sn(this);return p.call(n,(function(e){return e instanceof Element}))}return _.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten);return t?kr(this):sn(this)}return H.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=ce.call(this,"name");return M(e)?"":e},set:function(e){be.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(zt(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)},enumerable:!0,configurable:!0}}),a(Text.prototype,{assignedSlot:{get:xr,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Ae.call(this):Wr.call(this):zt(this)||Qn(this)?Wr.call(this):Ae.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Re.call(this):jr.call(this):zt(this)||Qn(this)?jr.call(this):Re.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?tr(this,e):de.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Qn(this)){var e=Jn(this);if("open"===e.mode)return e}return We.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return On(this)?Ur.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return On(this)?Kr.call(this):Ee.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return On(this)?Gr.call(this):ye.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return On(this)?qr.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:xr,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"innerHTML")&&i(HTMLElement.prototype,"innerHTML",u(Element.prototype,"innerHTML")),s.call(HTMLElement.prototype,"outerHTML")&&i(HTMLElement.prototype,"outerHTML",u(Element.prototype,"outerHTML")),s.call(HTMLElement.prototype,"children")&&i(HTMLElement.prototype,"children",u(Element.prototype,"children")),a(Element.prototype,{querySelector:{value:function(){var e=this,t=dt(me.apply(this,y.call(arguments)));if(Qn(this)){var n=Zt(this);return M(n)?null:Yt(this)?on(this,t):un(n,t)}if(zt(this)){var r=Xt(this);if(L(r)){if(!Et.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=Vt(this),o=g.call(t,(function(e){return Vt(e)===l}));return L(o)?null:o}var a=g.call(t,(function(e){return Vt(e)===r}));return L(a)?null:a}if(!(Et.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return L(i)?null:i}var u=g.call(t,(function(t){return L(Xt(t))||bt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=dt(me.apply(this,y.call(arguments)));if(!Et.ENABLE_NODE_LIST_PATCH){var t=Xr(this,e,0);return gn(t)}return gn(Xr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=dt(Fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Fr(this,e));var t=Xr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=dt(fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Fr(this,e));var t=Xr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=dt(he.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Fr(this,e));var t=Xr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"getElementsByClassName")&&i(HTMLElement.prototype,"getElementsByClassName",u(Element.prototype,"getElementsByClassName"));var Vr="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Yr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function zr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!Yr.has(De.call(e))||!pe.call(e,"disabled")}))}var Jr=new WeakMap;function Qr(e){return(!Qn(e)||!Yn(e))&&(ke.call(e,Vr)&&function(e){var t=se.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Zr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=dt(me.call(this,Vr)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ge.call(this,Vr);M(a)||a.focus.apply(a,arguments)}}function el(e){var t=mt(e),n=zr(dt(Je.call(t,Vr))),r=zr(dt(me.call(e,Vr))),l=r[0],o=r[r.length-1],a=m.call(n,e),i=a>-1?a:m.call(n,l),u=0===r.length?i+1:m.call(n,o)+1;return{prev:y.call(n,0,i),inner:r,next:y.call(n,u)}}function tl(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function nl(e){e.preventDefault(),e.stopPropagation()}function rl(e,t){lt.call(e,"focusin",nl,!0),lt.call(e,"focusout",nl,!0),t(),ot.call(e,"focusin",nl,!0),ot.call(e,"focusout",nl,!0)}function ll(e,t,n){var r=vt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(fl(t.getRootNode(),l))return l}return null}(e,n);M(l)?rl(r,(function(){t.blur()})):rl(r,(function(){l.focus()}))}var ol=!1;function al(){ol=!0}function il(){ol=!1}function ul(){return!ol}function cl(e){if(!ol){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=el(t);if(1===tl(t,r)){var o=fl.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))ll(l.next,n,r);else rl(vt(a),(function(){a.focus()}))}else t===n&&ll(E.call(l.prev),n,r)}}}}function sl(e){if(!ol){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=el(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=tl(n,t);1===o&&ll(r.next,l,t),2===o&&ll(E.call(r.prev),l,t)}}}}function fl(e,t){if(!Qr(t))return!1;for(var n=mt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===ce.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function hl(e){Nt.call(e,"focusin",cl,!0)}function pl(e){var t=mt(e);Jr.get(t)||(Jr.set(t,!0),wt.call(t,"mousedown",al,!0),wt.call(t,"mouseup",(function(){setTimeout(il)}),!0),wt.call(t,"dragstart",il,!0))}function gl(e){Nt.call(e,"focusin",sl,!0)}function ml(e){var t=vt(e);return at.call(t,e)}function vl(e){var t=vt(e);return it.call(t)}function bl(e){return"visible"===e.visibility&&"none"!==e.display}function dl(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=ml(e);if("OPTION"===n)return[1,Ne.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)b.apply(t,dl(l[o]));if(!bl(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===W})(e)&&t.push(function(e){var t=vl(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function El(e){if(!bl(ml(e)))return fn(e)||"";for(var t=function(e){var t=vt(e),n=vl(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)b.apply(n,dl(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=vt(t),i=vl(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var yl=HTMLElement.prototype,wl=yl.blur,Tl=yl.focus;function Nl(){return Yn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function Ll(e){var t=Yn(this),n=Be.call(this),r=pe.call(this,"tabindex");Ie.call(this,e);var l,o=Be.call(this),a=pe.call(this,"tabindex"),i=n!==o;(r&&(i||S(a))&&(-1===n&&gl(this),0===n&&t&&hl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(pl(l=this),hl(l),wt.call(l,"focusin",sl,!0)),0===o&&t&&function(e){pl(e),gl(e),wt.call(e,"focusin",cl,!0)}(this)))}function Ml(){if(Yn(this)){var e=(n=mt(t=this),M(r=qe.call(n))||0!=(X.call(t,r)&I)?r:null);if(!M(e))return void e.blur()}var t,n,r;return wl.call(this)}function Cl(){var e=ul();e&&al(),Qn(this)&&Yn(this)?Zr.call(this):(Tl.apply(this,arguments),e&&il())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Qn(this)?Nl.call(this):Be.call(this)},set:function(e){return Qn(this)?Ll.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Qn(this))return Ml.call(this);wl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Cl.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Ne&&null!==Le&&i(HTMLElement.prototype,"innerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ne.call(this):El(this):zt(this)||Qn(this)?El(this):Ne.call(this):Ne.call(this)},set:function(e){Le.call(this,e)},enumerable:!0,configurable:!0}),null!==Ce&&null!==Se&&i(HTMLElement.prototype,"outerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ce.call(this):El(this):zt(this)||Qn(this)?El(this):Ce.call(this):Ce.call(this)},set:function(e){Se.call(this,e)},enumerable:!0,configurable:!0}),i(Element.prototype,D,{set:function(e){var t=this.$$ShadowTokenKey$$;L(t)||t===e||ve.call(this,t),L(e)||be.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Sl,Ol=function(){},Al={childList:!0};function Hl(e,t,n){var r=Xn(e);if(r!==t&&(Vn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Qn(e))return;L(r)&&ct.call(Sl,e,Al);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)Hl(l[o],t,n)}}function _l(e){if(L(Sl)&&(Sl=new ut((function(e){T.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Xn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];X.call(t,u)&$.DOCUMENT_POSITION_CONTAINED_BY||Hl(u,Ol,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];X.call(t,f)&$.DOCUMENT_POSITION_CONTAINED_BY&&Hl(f,l,o)}}))}))),L(Xn(e)))throw new Error("Invalid Element");ct.call(Sl,e,Al)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&_l(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}();
|
|
10
|
+
*/function ir(e,t){if(M(e))return null;for(var n,r,l,o,a=ar(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!Zn(l)||!L(o)&&o>-1)return n;return null}function ur(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:ir(e,ar(l,!0))}l(nr,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return V.call(zn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Y.call(zn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return G.call(zn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(zn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Ft(zn(e),t,Bt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return lr.set(e,this),Tt.apply(zn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Wt(zn(e),t,Bt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return zn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return gn(rn(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=zn(this);return this===e?0:this.contains(e)?20:X.call(t,e)&I?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=zn(this);return 0!=(X.call(t,e)&I)&&nn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return jn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=jn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return jn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(zn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return zn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==K&&(t+=fn(l))}return t},set:function(e){var t=zn(this);oe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!L(e)&&C(e.composed)?zn(this).getRootNode(e):this}}},{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return bn(p.call(rn(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,un(n=zn(this),dt(me.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return gn((t=e,an(n=zn(this),dt(me.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t},set:function(e){var t=zn(this);He.call(t,e)}}},rr),or.prototype=o(DocumentFragment.prototype,nr),i(or,Symbol.hasInstance,{value:function(e){return A(e)&&!M(e)&&(ht(e)||c(e)===or.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return ur(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Un(this,this,e,t)},i(Document.prototype,"activeElement",{get:function(){var e=qe.call(this);if(M(e))return e;for(;!L(Xt(e));)if(M(e=le.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),i(Document.prototype,"getElementById",{value:function(){var e=Qe.apply(this,y.call(arguments));return M(e)?null:L(Xt(e))||bt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=g.call(e,(function(e){return L(Xt(e))||bt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=dt(Ze.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=dt(et.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=dt(tt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=dt(nt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:or,configurable:!0,writable:!0});var cr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var sr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function fr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!cr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!cr.get.call(e)})()&&(HTMLElement.prototype.click=function(){wt.call(this,"click",fr);try{sr.value.call(this)}finally{Nt.call(this,"click",fr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=l(o(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var hr,pr,gr=CustomEvent;function mr(e,t){var n=new gr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(mr.prototype=gr.prototype,window.CustomEvent=mr,"undefined"!=typeof ClipboardEvent){var vr=l(o(null),{copy:1,cut:1,paste:1});a(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===vr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(hr=u(HTMLIFrameElement.prototype,"contentWindow"),pr=hr.get,hr.get=function(){var e,t=pr.call(this);return M(t)||L(Xt(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},i(HTMLIFrameElement.prototype,"contentWindow",hr));var br,dr=MutationObserver,Er=dr.prototype,yr=Er.disconnect,wr=Er.observe,Tr=Er.takeRecords,Nr="$$lwcObserverCallbackWrapper$$",Lr=new WeakMap;function Mr(e){return e.$$lwcNodeObservers$$}function Cr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,i=o(MutationRecord.prototype);return a(i,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),i}function Sr(e,t){for(var n=t;!M(n);){var r=Mr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Or(e,t){return d.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Yt(r)))Sr(t,r)&&b.call(e,n);else if(l.length>0){var a=l[0];if(Sr(t,a)){var i=Mr(r);!i||i[0]!==t&&-1===m.call(i,t)?b.call(e,Cr(n)):b.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Vt(r)===Vt(c)&&Sr(t,r))b.call(e,n);else if(u){var s=Mr(u);!s||s[0]!==t&&-1===m.call(s,t)||b.call(e,Cr(n))}}return e}),[])}function Ar(e){var t=function(e){var t=e[Nr];return L(t)&&(t=e[Nr]=function(t,n){var r=Or(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new dr(t)}function Hr(e,t,n){if(arguments.length>1){var r=y.call(arguments);return r[1]=St(r[1]),lt.apply(this,r)}return lt.apply(this,arguments)}function _r(e,t,n){if(arguments.length>1){var r=y.call(arguments);r[1]=St(r[1]),ot.apply(this,r)}ot.apply(this,arguments)}function Rr(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=ar(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Xt(e))?e:ir(t,n);if(r===t||r===t.body)return L(Xt(e))?e:ir(t,n);var l=r,o=n;Qn(r)&&(1===Ot.get(this)&&(l=Jn(r)));return Qn(e)&&lr.has(this)&&(o=ar(Jn(e),this.composed)),ir(l,o)}function Pr(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Kn.has(t));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Qn(e)&&lr.has(this)&&(l=Jn(e)),ar(l,this.composed)}function Dr(e){var t=u(e.prototype,"relatedTarget").get;i(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(M(e))return null;if(!(e instanceof $&&zt(e)))return e;var n=Ue.call(this);return M(n)&&(n=mt(e)),ir(n,ar(e,!0))},enumerable:!0,configurable:!0})}Ar.prototype=dr.prototype,Ar.prototype.disconnect=function(){var e=this;yr.call(this);var t=Lr.get(this);L(t)||(T.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!L(n)){var r=m.call(n,e);-1!==r&&w.call(n,r,1)}})),t.length=0)},Ar.prototype.observe=function(e,t){var n,r=Mr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&b.call(r,this),Zn(e)&&(e=e.host),Lr.has(this)){var l=Lr.get(this);-1===m.call(l,e)&&b.call(l,e)}else Lr.set(this,[e]);return wr.call(this,e,t)},Ar.prototype.takeRecords=function(){return Or(Tr.call(this),this)},i(window,"MutationObserver",{value:Ar,configurable:!0,writable:!0}),a(yt,{addEventListener:{value:function(e,t,n){if(Qn(this))return jt.apply(this,arguments);if(arguments.length<2){var r=y.call(arguments);return r.length>1&&(r[1]=St(r[1])),wt.apply(this,r)}var l=St(t);return wt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Qn(this))return Ut.apply(this,arguments);var r=y.call(arguments);arguments.length>1&&(r[1]=St(r[1])),Nt.apply(this,r),Nt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&a(Window.prototype,{addEventListener:{value:Hr,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:_r,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:Rr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ue.call(this);return M(e)?null:1===Ot.get(this)?Jn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Pr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Rr,enumerable:!0,configurable:!0},path:{get:Pr,enumerable:!0,configurable:!0}}),Dr(FocusEvent),Dr(MouseEvent);var $r={childList:!0},Br=new WeakMap;function Ir(e){var t=dt(ae.call(e));return d.call(t,(function(e,t){return t instanceof Element&&tn(t)?b.apply(e,Ir(t)):b.call(e,t),e}),[])}function kr(){var e=ne.call(this);return!M(e)&&tn(e)&&Xt(e)!==Xt(this)?e:null}function xr(e,t){var n,r=Xt(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);else if(Qn(e)){var l=Zt(e);n=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else n=p.call(t,(function(e){return Vt(e)===r}));return n}function Fr(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t}function Wr(){return Sn(this)}function jr(){var e=Zt(this),t=M(e)?[]:an(e,cn(this));return bn(p.call(t,(function(e){return e instanceof Element})))}function Ur(){return this.children.length}function Kr(){return this.children[0]||null}function Gr(){var e=this.children;return e.item(e.length-1)||null}function qr(e,t,n){var r;if(Qn(e)){var l=Zt(e);r=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else if(zt(e)){var o=Xt(e);if(L(o))if(1===n){var a=Vt(e);r=p.call(t,(function(e){return Vt(e)===a}))}else r=y.call(t);else r=p.call(t,(function(e){return Vt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);return r}a(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Br.get(this)||(Br.set(this,!0),br||(br=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(b.call(t,n),Tt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(br,this,$r))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten),n=t?Ir(this):sn(this);return p.call(n,(function(e){return e instanceof Element}))}return _.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten);return t?Ir(this):sn(this)}return H.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=ce.call(this,"name");return M(e)?"":e},set:function(e){be.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(zt(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)},enumerable:!0,configurable:!0}}),a(Text.prototype,{assignedSlot:{get:kr,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Ae.call(this):Fr.call(this):zt(this)||Qn(this)?Fr.call(this):Ae.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Re.call(this):Wr.call(this):zt(this)||Qn(this)?Wr.call(this):Re.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?tr(this,e):de.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Qn(this)){var e=Jn(this);if("open"===e.mode)return e}return We.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return On(this)?jr.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return On(this)?Ur.call(this):Ee.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return On(this)?Kr.call(this):ye.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return On(this)?Gr.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:kr,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"innerHTML")&&i(HTMLElement.prototype,"innerHTML",u(Element.prototype,"innerHTML")),s.call(HTMLElement.prototype,"outerHTML")&&i(HTMLElement.prototype,"outerHTML",u(Element.prototype,"outerHTML")),s.call(HTMLElement.prototype,"children")&&i(HTMLElement.prototype,"children",u(Element.prototype,"children")),a(Element.prototype,{querySelector:{value:function(){var e=this,t=dt(me.apply(this,y.call(arguments)));if(Qn(this)){var n=Zt(this);return M(n)?null:Yt(this)?on(this,t):un(n,t)}if(zt(this)){var r=Xt(this);if(L(r)){if(!Et.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=Vt(this),o=g.call(t,(function(e){return Vt(e)===l}));return L(o)?null:o}var a=g.call(t,(function(e){return Vt(e)===r}));return L(a)?null:a}if(!(Et.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return L(i)?null:i}var u=g.call(t,(function(t){return L(Xt(t))||bt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=dt(me.apply(this,y.call(arguments)));if(!Et.ENABLE_NODE_LIST_PATCH){var t=qr(this,e,0);return gn(t)}return gn(qr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=dt(Fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(xr(this,e));var t=qr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=dt(fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(xr(this,e));var t=qr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=dt(he.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(xr(this,e));var t=qr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"getElementsByClassName")&&i(HTMLElement.prototype,"getElementsByClassName",u(Element.prototype,"getElementsByClassName"));var Xr="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Vr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Yr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!Vr.has(De.call(e))||!pe.call(e,"disabled")}))}var zr=new WeakMap;function Jr(e){return(!Qn(e)||!Yn(e))&&(ke.call(e,Xr)&&function(e){var t=se.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Qr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=dt(me.call(this,Xr)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ge.call(this,Xr);M(a)||a.focus.apply(a,arguments)}}function Zr(e){var t=mt(e),n=Yr(dt(Je.call(t,Xr))),r=Yr(dt(me.call(e,Xr))),l=r[0],o=r[r.length-1],a=m.call(n,e),i=a>-1?a:m.call(n,l),u=0===r.length?i+1:m.call(n,o)+1;return{prev:y.call(n,0,i),inner:r,next:y.call(n,u)}}function el(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function tl(e){e.preventDefault(),e.stopPropagation()}function nl(e,t){lt.call(e,"focusin",tl,!0),lt.call(e,"focusout",tl,!0),t(),ot.call(e,"focusin",tl,!0),ot.call(e,"focusout",tl,!0)}function rl(e,t,n){var r=vt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(sl(t.getRootNode(),l))return l}return null}(e,n);M(l)?nl(r,(function(){t.blur()})):nl(r,(function(){l.focus()}))}var ll=!1;function ol(){ll=!0}function al(){ll=!1}function il(){return!ll}function ul(e){if(!ll){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=Zr(t);if(1===el(t,r)){var o=sl.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))rl(l.next,n,r);else nl(vt(a),(function(){a.focus()}))}else t===n&&rl(E.call(l.prev),n,r)}}}}function cl(e){if(!ll){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=Zr(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=el(n,t);1===o&&rl(r.next,l,t),2===o&&rl(E.call(r.prev),l,t)}}}}function sl(e,t){if(!Jr(t))return!1;for(var n=mt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===ce.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function fl(e){Nt.call(e,"focusin",ul,!0)}function hl(e){var t=mt(e);zr.get(t)||(zr.set(t,!0),wt.call(t,"mousedown",ol,!0),wt.call(t,"mouseup",(function(){setTimeout(al)}),!0),wt.call(t,"dragstart",al,!0))}function pl(e){Nt.call(e,"focusin",cl,!0)}function gl(e){var t=vt(e);return at.call(t,e)}function ml(e){var t=vt(e);return it.call(t)}function vl(e){return"visible"===e.visibility&&"none"!==e.display}function bl(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=gl(e);if("OPTION"===n)return[1,Ne.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)b.apply(t,bl(l[o]));if(!vl(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===W})(e)&&t.push(function(e){var t=ml(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function dl(e){if(!vl(gl(e)))return fn(e)||"";for(var t=function(e){var t=vt(e),n=ml(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)b.apply(n,bl(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=vt(t),i=ml(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var El=HTMLElement.prototype,yl=El.blur,wl=El.focus;function Tl(){return Yn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function Nl(e){var t=Yn(this),n=Be.call(this),r=pe.call(this,"tabindex");Ie.call(this,e);var l,o=Be.call(this),a=pe.call(this,"tabindex"),i=n!==o;(r&&(i||S(a))&&(-1===n&&pl(this),0===n&&t&&fl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(hl(l=this),fl(l),wt.call(l,"focusin",cl,!0)),0===o&&t&&function(e){hl(e),pl(e),wt.call(e,"focusin",ul,!0)}(this)))}function Ll(){if(Yn(this)){var e=(n=mt(t=this),M(r=qe.call(n))||0!=(X.call(t,r)&I)?r:null);if(!M(e))return void e.blur()}var t,n,r;return yl.call(this)}function Ml(){var e=il();e&&ol(),Qn(this)&&Yn(this)?Qr.call(this):(wl.apply(this,arguments),e&&al())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Qn(this)?Tl.call(this):Be.call(this)},set:function(e){return Qn(this)?Nl.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Qn(this))return Ll.call(this);yl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Ml.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Ne&&null!==Le&&i(HTMLElement.prototype,"innerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ne.call(this):dl(this):zt(this)||Qn(this)?dl(this):Ne.call(this):Ne.call(this)},set:function(e){Le.call(this,e)},enumerable:!0,configurable:!0}),null!==Ce&&null!==Se&&i(HTMLElement.prototype,"outerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ce.call(this):dl(this):zt(this)||Qn(this)?dl(this):Ce.call(this):Ce.call(this)},set:function(e){Se.call(this,e)},enumerable:!0,configurable:!0}),i(Element.prototype,D,{set:function(e){var t=this.$$ShadowTokenKey$$;L(t)||t===e||ve.call(this,t),L(e)||be.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Cl,Sl=function(){},Ol={childList:!0};function Al(e,t,n){var r=Xn(e);if(r!==t&&(Vn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Qn(e))return;L(r)&&ct.call(Cl,e,Ol);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)Al(l[o],t,n)}}function Hl(e){if(L(Cl)&&(Cl=new ut((function(e){T.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Xn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];X.call(t,u)&$.DOCUMENT_POSITION_CONTAINED_BY||Al(u,Sl,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];X.call(t,f)&$.DOCUMENT_POSITION_CONTAINED_BY&&Al(f,l,o)}}))}))),L(Xn(e)))throw new Error("Invalid Element");ct.call(Cl,e,Ol)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&Hl(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}();
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
var KEY__SHADOW_TOKEN = '$shadowToken$';
|
|
118
118
|
var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
|
|
119
119
|
var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
120
|
-
/** version: 2.5.
|
|
120
|
+
/** version: 2.5.10-alpha1 */
|
|
121
121
|
|
|
122
122
|
/*
|
|
123
123
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -448,7 +448,7 @@
|
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
var runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
451
|
-
/** version: 2.5.
|
|
451
|
+
/** version: 2.5.10-alpha1 */
|
|
452
452
|
|
|
453
453
|
/*
|
|
454
454
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5435,6 +5435,6 @@
|
|
|
5435
5435
|
},
|
|
5436
5436
|
configurable: true
|
|
5437
5437
|
});
|
|
5438
|
-
/** version: 2.5.
|
|
5438
|
+
/** version: 2.5.10-alpha1 */
|
|
5439
5439
|
|
|
5440
|
-
}
|
|
5440
|
+
}());
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(function (factory) {
|
|
2
2
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
3
3
|
factory();
|
|
4
|
-
}
|
|
4
|
+
}((function () { 'use strict';
|
|
5
5
|
|
|
6
6
|
/* proxy-compat-disable */
|
|
7
7
|
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
// we can't use typeof since it will fail when transpiling.
|
|
200
200
|
|
|
201
201
|
const hasNativeSymbolSupport = /*@__PURE__*/(() => Symbol('x').toString() === 'Symbol(x)')();
|
|
202
|
-
/** version: 2.5.
|
|
202
|
+
/** version: 2.5.10-alpha1 */
|
|
203
203
|
|
|
204
204
|
/*
|
|
205
205
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -538,7 +538,7 @@
|
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
541
|
-
/** version: 2.5.
|
|
541
|
+
/** version: 2.5.10-alpha1 */
|
|
542
542
|
|
|
543
543
|
/*
|
|
544
544
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5834,6 +5834,6 @@
|
|
|
5834
5834
|
|
|
5835
5835
|
configurable: true
|
|
5836
5836
|
});
|
|
5837
|
-
/** version: 2.5.
|
|
5837
|
+
/** version: 2.5.10-alpha1 */
|
|
5838
5838
|
|
|
5839
|
-
}));
|
|
5839
|
+
})));
|