lwc 2.13.1 → 2.13.4
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-dom/esm/es2017/engine-dom.js +376 -170
- package/dist/engine-dom/iife/es2017/engine-dom.js +376 -169
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -2
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +222 -164
- package/dist/engine-dom/iife/es5/engine-dom.js +7562 -5758
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +5947 -4586
- package/dist/engine-dom/umd/es2017/engine-dom.js +376 -169
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -2
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +222 -164
- package/dist/engine-dom/umd/es5/engine-dom.js +7562 -5758
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +5947 -4586
- package/dist/engine-server/commonjs/es2017/engine-server.js +190 -72
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +190 -73
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +29 -4
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +29 -4
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +10 -13
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +4 -4
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +4601 -3603
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +10 -1
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +4424 -3481
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +29 -4
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +10 -13
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +4 -4
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +4601 -3603
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +10 -1
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +4424 -3481
- package/dist/wire-service/esm/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.min.js +1 -1
- package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/iife/es5/wire-service.js +243 -258
- package/dist/wire-service/iife/es5/wire-service.min.js +1 -1
- package/dist/wire-service/iife/es5/wire-service_debug.js +243 -258
- package/dist/wire-service/umd/es2017/wire-service.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service.min.js +1 -1
- package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es5/wire-service.js +243 -258
- package/dist/wire-service/umd/es5/wire-service.min.js +1 -1
- package/dist/wire-service/umd/es5/wire-service_debug.js +243 -258
- package/package.json +7 -7
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
*/
|
|
49
49
|
const { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;
|
|
50
50
|
const { isArray } = Array;
|
|
51
|
-
const { filter: ArrayFilter, find: ArrayFind, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, slice: ArraySlice, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;
|
|
51
|
+
const { copyWithin: ArrayCopyWithin, fill: ArrayFill, filter: ArrayFilter, find: ArrayFind, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, pop: ArrayPop, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, shift: ArrayShift, slice: ArraySlice, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;
|
|
52
52
|
const { charCodeAt: StringCharCodeAt, replace: StringReplace, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;
|
|
53
53
|
function isUndefined(obj) {
|
|
54
54
|
return obj === undefined;
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
|
|
152
152
|
// we can't use typeof since it will fail when transpiling.
|
|
153
153
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
|
154
|
-
/** version: 2.13.
|
|
154
|
+
/** version: 2.13.4 */
|
|
155
155
|
|
|
156
156
|
/*
|
|
157
157
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1127,7 +1127,7 @@
|
|
|
1127
1127
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
1128
1128
|
}
|
|
1129
1129
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1130
|
-
/** version: 2.13.
|
|
1130
|
+
/** version: 2.13.4 */
|
|
1131
1131
|
|
|
1132
1132
|
/*
|
|
1133
1133
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5071,6 +5071,31 @@
|
|
|
5071
5071
|
},
|
|
5072
5072
|
configurable: true,
|
|
5073
5073
|
});
|
|
5074
|
-
|
|
5074
|
+
|
|
5075
|
+
/*
|
|
5076
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
5077
|
+
* All rights reserved.
|
|
5078
|
+
* SPDX-License-Identifier: MIT
|
|
5079
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
5080
|
+
*/
|
|
5081
|
+
// @ts-ignore
|
|
5082
|
+
|
|
5083
|
+
if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
|
|
5084
|
+
window.addEventListener('test-dummy-flag', () => {
|
|
5085
|
+
let hasFlag = false;
|
|
5086
|
+
|
|
5087
|
+
if (runtimeFlags.DUMMY_TEST_FLAG) {
|
|
5088
|
+
hasFlag = true;
|
|
5089
|
+
}
|
|
5090
|
+
|
|
5091
|
+
window.dispatchEvent(new CustomEvent('has-dummy-flag', {
|
|
5092
|
+
detail: {
|
|
5093
|
+
package: '@lwc/synthetic-shadow',
|
|
5094
|
+
hasFlag
|
|
5095
|
+
}
|
|
5096
|
+
}));
|
|
5097
|
+
});
|
|
5098
|
+
}
|
|
5099
|
+
/** version: 2.13.4 */
|
|
5075
5100
|
|
|
5076
5101
|
}));
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
!function(a){"function"==typeof define&&define.amd?define(a):a()}(function(){"use strict";const{assign:p,create:g,defineProperties:e,defineProperty:b,freeze:S,getOwnPropertyDescriptor:a,getOwnPropertyNames:T,getPrototypeOf:U,hasOwnProperty:c,isFrozen:V,keys:W,seal:X,setPrototypeOf:q}=Object,{filter:Y,find:Z,indexOf:$,join:_,map:aa,push:ab,reduce:ac,reverse:ad,slice:ae,splice:af,unshift:ag,forEach:ah}=Array.prototype,{charCodeAt:ai,replace:aj,slice:ak,toLowerCase:al}=String.prototype;function F(a){return void 0===a}function am(a){return!0===a}function an(a){return!1===a}function ao(a){return"function"==typeof a}function ap(a){return"object"==typeof a}const i=function(){if("object"==typeof globalThis)return globalThis;let a;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),a=__magic__,delete Object.prototype.__magic__}catch(b){}finally{void 0===a&&(a=window)}return a}(),G="$shadowResolver$",aq="$$ShadowResolverKey$$",H="$shadowToken$",ar="$$ShadowTokenKey$$",f=Node,d=f.prototype,{DOCUMENT_POSITION_CONTAINED_BY:as,DOCUMENT_POSITION_CONTAINS:at,DOCUMENT_POSITION_PRECEDING:au,DOCUMENT_POSITION_FOLLOWING:av,ELEMENT_NODE:aw,TEXT_NODE:ax,CDATA_SECTION_NODE:ay,PROCESSING_INSTRUCTION_NODE:az,COMMENT_NODE:aA,DOCUMENT_FRAGMENT_NODE:aB}=f,{appendChild:aC,cloneNode:aD,compareDocumentPosition:aE,insertBefore:aF,removeChild:aG,replaceChild:aH,hasChildNodes:aI}=d,{contains:aJ}=HTMLElement.prototype,aK=a(d,"firstChild").get,aL=a(d,"lastChild").get,aM=a(d,"textContent").get,aN=a(d,"parentNode").get,aO=a(d,"ownerDocument").get,aP=c.call(d,"parentElement")?a(d,"parentElement").get:a(HTMLElement.prototype,"parentElement").get,aQ=a(d,"textContent").set,aR=c.call(d,"childNodes")?a(d,"childNodes").get:a(HTMLElement.prototype,"childNodes").get,aS=c.call(d,"isConnected")?a(d,"isConnected").get:function(){const a=aO.call(this);return null===a||(aE.call(a,this)&as)!=0},{getAttribute:aT,getBoundingClientRect:aU,getElementsByTagName:aV,getElementsByTagNameNS:aW,hasAttribute:aX,querySelector:aY,querySelectorAll:aZ,removeAttribute:a$,setAttribute:a_}=Element.prototype,a0=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")},a1=a(Element.prototype,"childElementCount").get,a2=a(Element.prototype,"firstElementChild").get,a3=a(Element.prototype,"lastElementChild").get,j=a(HTMLElement.prototype,"innerText"),I=j?j.get:null,J=j?j.set:null,k=a(HTMLElement.prototype,"outerText"),K=k?k.get:null,L=k?k.set:null,r=c.call(Element.prototype,"innerHTML")?a(Element.prototype,"innerHTML"):a(HTMLElement.prototype,"innerHTML"),a4=r.get,a5=r.set,s=c.call(Element.prototype,"outerHTML")?a(Element.prototype,"outerHTML"):a(HTMLElement.prototype,"outerHTML"),a6=s.get,a7=s.set,a8=a(Element.prototype,"tagName").get,t=a(HTMLElement.prototype,"tabIndex"),a9=t.get,ba=t.set,bb=c.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,bc=c.call(Element.prototype,"children")?a(Element.prototype,"children").get:a(HTMLElement.prototype,"children").get,{getElementsByClassName:bd}=HTMLElement.prototype,be=c.call(Element.prototype,"shadowRoot")?a(Element.prototype,"shadowRoot").get:()=>null,bf=c.call(Element.prototype,"assignedSlot")?a(Element.prototype,"assignedSlot").get:()=>null;let u,v;"undefined"!=typeof HTMLSlotElement?(u=HTMLSlotElement.prototype.assignedNodes,v=HTMLSlotElement.prototype.assignedElements):(u=()=>{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")},v=()=>{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 bg=a(Event.prototype,"target").get,bh=a(Event.prototype,"currentTarget").get,bi=a(FocusEvent.prototype,"relatedTarget").get,bj=c.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],bk=a(Document.prototype,"activeElement").get,bl=c.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,bm=c.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,bn=a(Document.prototype,"defaultView").get,{createComment:bo,querySelectorAll:bp,getElementById:bq,getElementsByClassName:br,getElementsByTagName:bs,getElementsByTagNameNS:bt}=Document.prototype,{getElementsByName:bu}=HTMLDocument.prototype,{addEventListener:bv,removeEventListener:bw,getComputedStyle:bx,getSelection:by}=window,M=MutationObserver,bz=M.prototype.observe;let l=null;"undefined"!=typeof ShadowRoot&&(l=ShadowRoot);const bA=null===l?()=>!1:a=>a instanceof l,{createElement:bB}=Document.prototype;function bC(a){const b=aO.call(a);return null===b?a:b}function bD(b){const c=bC(b),a=bn.call(c);if(null===a)throw new TypeError;return a}"undefined"==typeof HTMLSlotElement&&function(){class a{}q(a,HTMLElement.constructor),q(a.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=a,b(Document.prototype,"createElement",{value:function(b,d){const c=bB.apply(this,ae.call(arguments));return 4===b.length&&115===ai.call(b,0)&&108===ai.call(b,1)&&111===ai.call(b,2)&&116===ai.call(b,3)&&q(c,a.prototype),c}})}();let bE;function bF(b){if(F(bE)){const a=bC(b);bE=a.body&&"temporary-bypass"===aT.call(a.body,"data-global-patching-bypass")}return am(bE)}function bG(b){const c=b.length,d=[];if(c>0)for(let a=0;a<c;a++)d[a]=b[a];return d}const w="undefined"!=typeof EventTarget?EventTarget.prototype:f.prototype,{addEventListener:bH,dispatchEvent:bI,removeEventListener:bJ}=w,bK="$$HostElementKey$$",bL="$$ShadowedNodeKey$$";function bM(a,b,c){const d=a;{const{value:e}=c;d[b]=e}}function bN(a){return a[bK]}function bO(c){let a=c,b;for(;null!==a;){if(!F(b=bN(a)))return b;a=aN.call(a)}}function bP(a){return a[bL]}function bQ(a){return!F(bN(a))}function bR(a){let b=aP.call(a);for(;null!==b&&bV(b);)a=b,b=aP.call(a);return a}function bS(c,d){const e=bP(c);let a=d instanceof Element?d:aP.call(d);for(;null!==a&&a!==c;){const f=bO(a),b=aP.call(a);if(f===e)return bV(a);if(b===c)return!1;if(null===b||bO(b)===f)a=b;else{if(!bV(b))return!1;if(null!==(a=bT(bR(b)))){if(a===c)return!0;if(bO(a)===e)return!0}}}return!1}function bT(b){if(!(b instanceof f))return null;const c=bO(b);if(F(c))return null;let a=b;for(;null!==a&&bP(a)!==c;)a=aN.call(a);return null===a?null:a}function bU(a){return bV(a)&&bQ(a)}function bV(a){return a instanceof HTMLSlotElement}function bW(b,c){const a=bO(c);return F(a)||bP(b)===a}function bX(b){const a=cT(b);return bZ(a,bG(aR.call(a)))}function bY(c,d){const e=[];for(let a=0,f=d.length;a<f;a+=1){const b=d[a];!bW(c,b)&&bS(c,b)&&ab.call(e,b)}return e}function bZ(e,b){const c=[];for(let a=0,f=b.length;a<f;a+=1){const d=b[a],g=bW(e,d);g&&ab.call(c,d)}return c}function b$(c,b){for(let a=0,d=b.length;a<d;a+=1)if(bW(c,b[a]))return b[a];return null}function b_(a){if(!cV(a)&&!bV(a)){const b=aR.call(a);return bG(b)}if(cV(a)){const c=bG(aZ.call(a,"slot")),e=cQ(cU(a));return ac.call(c,(a,b)=>(e===cQ(b)&&ab.apply(a,b0(b)),a),[])}{const d=bG(aR.call(a)),f=cQ(a);return Y.call(d,a=>f===cQ(a))}}function b0(a){const b=bT(a);if(null===b)return[];const c=bG(aR.call(a));return Y.call(c,a=>!bQ(a)||!bW(b,a))}const b1=/[&\u00A0"]/g,b2=/[&\u00A0<>]/g,{replace:b3,toLowerCase:b4}=String.prototype;function b5(a){switch(a){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"\xa0":return" ";default:return""}}function b6(a){return b3.call(a,b1,b5)}const b7=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR",]),b8=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT",]);function b9(a){switch(a.nodeType){case aw:{const{attributes:i}=a,c=a8.call(a);let b="<"+b4.call(c);for(let e=0,d;d=i[e];e++)b+=" "+d.name+'="'+b6(d.value)+'"';if(b+=">",b7.has(c))return b;return b+function(d){let b="";const c=b_(d);for(let a=0,e=c.length;a<e;a+=1)b+=b9(c[a]);return b}(a)+"</"+b4.call(c)+">"}case ax:{var f;const{data:g,parentNode:h}=a;if(h instanceof Element&&b8.has(a8.call(h)))return g;return f=g,b3.call(f,b2,b5)}case ay:return`<!CDATA[[${a.data}]]>`;case az:return`<?${a.target} ${a.data}?>`;case aA:return`<!--${a.data}-->`;default:return""}}function ca(a){switch(a.nodeType){case aw:{const c=b_(a);let d="";for(let b=0,f=c.length;b<f;b+=1){const e=c[b];e.nodeType!==aA&&(d+=ca(e))}return d}default:return a.nodeValue}}const cb=new WeakMap;function m(){throw new TypeError("Illegal constructor")}function cc(a){const c=g(m.prototype);return cb.set(c,a),ah.call(a,(a,d)=>{b(c,d,{value:a,enumerable:!0,configurable:!0})}),c}m.prototype=g(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:m},item:{writable:!0,enumerable:!0,configurable:!0,value(a){return this[a]}},length:{enumerable:!0,configurable:!0,get(){return cb.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(a,b){ah.call(cb.get(this),a,b)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return aa.call(cb.get(this),(a,b)=>[b,a])}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return aa.call(cb.get(this),(b,a)=>a)}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return cb.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let a=0;return{next:()=>{const b=cb.get(this);return a<b.length?{value:b[a++],done:!1}:{done:!0}}}}},[Symbol.toStringTag]:{configurable:!0,get:()=>"NodeList"},toString:{writable:!0,configurable:!0,value:()=>"[object NodeList]"}}),q(m,NodeList);const cd=(b,d)=>{let a;for(;!F(a=b.host);){const c=a.getRootNode();if(c===d)return a;b=c}};function ce(h,i,j,k){const a=bm.call(i,j,k),b=[],f=function(d){var b;const c=[];let a=d.getRootNode();for(;!F(a);)c.push(a),a=null===(b=a.host)|| void 0===b?void 0:b.getRootNode();return c}(h);if(null!==a)for(let d=0;d<a.length;d++){const e=a[d];if(bU(e))continue;const g=e.getRootNode();if(-1!==$.call(f,g)){ab.call(b,e);continue}const c=cd(g,f[0]);F(c)|| -1!==$.call(a,c)|| -1!==$.call(b,c)||ab.call(b,c)}return b}const cf=new WeakMap;function n(){throw new TypeError("Illegal constructor")}function cg(a){const c=g(n.prototype);return cf.set(c,a),ah.call(a,(a,d)=>{b(c,d,{value:a,enumerable:!0,configurable:!0})}),c}n.prototype=g(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:n},item:{writable:!0,enumerable:!0,configurable:!0,value(a){return this[a]}},length:{enumerable:!0,configurable:!0,get(){return cf.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(a){if(""===a)return null;const c=cf.get(this);for(let d=0,e=c.length;d<e;d++){const b=c[e];if(a===aT.call(b,"id")||a===aT.call(b,"name"))return b}return null}},[Symbol.toStringTag]:{configurable:!0,get:()=>"HTMLCollection"},toString:{writable:!0,configurable:!0,value:()=>"[object HTMLCollection]"}}),q(n,HTMLCollection),i.lwcRuntimeFlags||Object.defineProperty(i,"lwcRuntimeFlags",{value:g(null)});const ch=i.lwcRuntimeFlags;function ci(a){return bU(a)||cV(a)}function cj(d,a){const b=bT(d);if(a===b)return cU(b);if(a instanceof Element){if(bO(d)===bO(a))return a;if(null!==b&&bV(a)){const c=bT(a);if(null!==c&&bW(b,c))return c}}return null}function ck(){return cv(this).length>0}function cl(){const a=cv(this);return a[0]||null}function cm(){const a=cv(this);return a[a.length-1]||null}function cn(){return ca(this)}function co(){const a=aN.call(this);return null===a?a:cj(this,a)}function cp(){const a=aN.call(this);if(null===a)return null;const b=cj(this,a);return b instanceof Element?b:null}function cq(a){return this===a?0:this.getRootNode()===a?10:bN(this)!==bN(a)?35:aE.call(this,a)}function cr(a){return null!=a&&bN(this)===bN(a)&&(aE.call(this,a)&as)!=0}function cs(d){const a=aD.call(this,!1);if(!d)return a;const c=cv(this);for(let b=0,e=c.length;b<e;b+=1)a.appendChild(c[b].cloneNode(!0));return a}function ct(){if(cV(this)){const a=bT(this),b=null===a?[]:bZ(a,b_(this));return cc(b)}return aR.call(this)}const x=f.prototype.getRootNode,cu=F(x)?function(){let a=this,b;for(;null!==(b=aN.call(a));)a=b;return a}:x;e(f.prototype,{firstChild:{get(){return ci(this)?cl.call(this):aK.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return ci(this)?cm.call(this):aL.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return ch.ENABLE_NODE_PATCH?bF(this)?aM.call(this):cn.call(this):bQ(this)||cV(this)?cn.call(this):aM.call(this)},set:function(a){aQ.call(this,a)},enumerable:!0,configurable:!0},parentNode:{get(){if(bQ(this))return co.call(this);const a=aN.call(this);return null!==a&&bU(a)?bT(a):a},enumerable:!0,configurable:!0},parentElement:{get(){if(bQ(this))return cp.call(this);const a=aP.call(this);return null!==a&&bU(a)?bT(a):a},enumerable:!0,configurable:!0},childNodes:{get(){return ci(this)?ct.call(this):aR.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return ci(this)?ck.call(this):aI.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(a){return bF(this)?aE.call(this,a):cq.call(this,a)},enumerable:!0,writable:!0,configurable:!0},contains:{value(a){return this===a||(ch.ENABLE_NODE_PATCH?bF(this)?aJ.call(this,a):cr.call(this,a):null!=a&&(bQ(this)||cV(this)?cr.call(this,a):aJ.call(this,a)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(a){return ch.ENABLE_NODE_PATCH?am(a)?bF(this)?aD.call(this,a):cs.call(this,a):aD.call(this,a):bQ(this)||cV(this)?cs.call(this,a):aD.call(this,a)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(a){const b=!F(a)&&!!a.composed;return am(b)?cu.call(this,a):function(a){const b=bT(a);return null===b?cu.call(a):cU(b)}(this)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return aS.call(this)}}});const cv=function(a){return a.childNodes};c.call(HTMLElement.prototype,"contains")&&b(HTMLElement.prototype,"contains",a(f.prototype,"contains")),c.call(HTMLElement.prototype,"parentElement")&&b(HTMLElement.prototype,"parentElement",a(f.prototype,"parentElement"));const cw=new WeakMap,cx=new WeakMap;function cy(b,d,c){if(d===c)return!0;let a=cx.get(b);return F(a)&&(a=b.composedPath(),cx.set(b,a)),a.includes(c)}function cz(a){var b;if(!(ao(b=a)||ap(b)&&null!==b&&ao(b.handleEvent)))return a;let c=cw.get(a);return F(c)&&(c=function(b){const c=bh.call(b),d=cD(b);if(cy(b,d,c))return ao(a)?a.call(this,b):a.handleEvent&&a.handleEvent(b)},cw.set(a,c)),c}const cA=new WeakMap,cB=new WeakMap;function cC(b){let a=cB.get(b);return F(a)&&(a=g(null),cB.set(b,a)),a}function cD(b){var a;return null!==(a=cY.get(b))&& void 0!==a?a:bg.call(b)}const cE=new WeakMap;function cF(b){if(!ao(b))throw new TypeError;let a=cE.get(b);return F(a)&&((a=function(c){let a=bh.call(c);bA(a)||(a=cU(a));const d=cD(c);cy(c,d,a)&&b.call(a,c)}).placement=1,cE.set(b,a)),a}const cG=new WeakMap;function cH(b){if(!ao(b))throw new TypeError;let a=cG.get(b);return F(a)&&((a=function(a){const c=bh.call(a),d=cD(a);cy(a,d,c)&&b.call(c,a)}).placement=0,cG.set(b,a)),a}function cI(a){let d=!1,e=!1;const{type:f,stopImmediatePropagation:j,stopPropagation:k}=a,g=bh.call(a),h=cC(g),i=h[f];b(a,"stopImmediatePropagation",{value(){d=!0,j.call(a)},writable:!0,enumerable:!0,configurable:!0}),b(a,"stopPropagation",{value(){e=!0,k.call(a)},writable:!0,enumerable:!0,configurable:!0});const l=ae.call(i);function c(b){ah.call(l,c=>{an(d)&&c.placement===b&& -1!==$.call(i,c)&&c.call(void 0,a)})}cA.set(a,1),c(1),an(d)&&an(e)&&(cA.set(a,0),c(0)),cA.set(a,2)}function cJ(c,b,d){const e=cC(c);let a=e[b];F(a)&&(a=e[b]=[]),-1===$.call(a,d)&&(0===a.length&&bH.call(c,b,cI),ab.call(a,d))}function cK(b,c,e){const f=cC(b);let d,a;F(a=f[c])|| -1===(d=$.call(a,e))||(af.call(a,d,1),0===a.length&&bJ.call(b,c,cI))}function cL(b,a,d){if(ao(a)){const c=cH(a);cJ(this,b,c)}}function cM(b,a,d){if(ao(a)){const c=cH(a);cK(this,b,c)}}const cN=new WeakMap,{createDocumentFragment:cO}=document;function cP(b){const a=cN.get(b);if(F(a))throw new TypeError;return a}function cQ(a){return a[G]}function cR(a,b){a[G]=b}function cS(a){return cP(a).delegatesFocus}function cT(a){return cP(a).host}function cU(a){return cP(a).shadowRoot}function cV(a){const b=cN.get(a);return!F(b)&&a===b.host}function cW(a){const b=cN.get(a);return!F(b)&&a===b.shadowRoot}b(f.prototype,G,{set(a){if(!F(a)){var b,c;this[aq]=a,b=this,c=a.nodeKey,bM(b,bK,{value:c,configurable:!0})}},get(){return this[aq]},configurable:!0,enumerable:!0}),b(i,"$isNativeShadowRootDefined$",{value:null!==l});let cX=0;const y={constructor:{writable:!0,configurable:!0,value:o},toString:{writable:!0,configurable:!0,value:()=>"[object ShadowRoot]"},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},N={activeElement:{enumerable:!0,configurable:!0,get(){const c=cT(this),d=bC(c),b=bk.call(d);if(null===b)return b;if((aE.call(c,b)&as)==0)return null;let a=b;for(;!bW(c,a);)a=aP.call(a);return bV(a)?null:a}},delegatesFocus:{configurable:!0,get(){return cP(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(a,b){const c=cT(this),d=bC(c);return c_(this,d,a,b)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(a,b){const c=cT(this),d=bC(c);return ce(this,d,a,b)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get(){return cT(this)}},mode:{configurable:!0,get(){return cP(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},cY=new WeakMap,O={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(a,b){return aF.call(cT(this),a,b),a}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(a){return aG.call(cT(this),a),a}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(a){return aC.call(cT(this),a),a}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(b,a){return aH.call(cT(this),b,a),a}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(a,b,c){!function(b,c,a,f){if(ao(a)){const d=cT(b),e=cF(a);cJ(d,c,e)}}(this,a,b)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(a){return cY.set(a,this),bI.apply(cT(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(a,b,c){!function(b,c,a,f){if(ao(a)){const d=cT(b),e=cF(a);cK(d,c,e)}}(this,a,b)}},baseURI:{enumerable:!0,configurable:!0,get(){return cT(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return cc(bX(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(a){const b=cT(this);return this===a?0:this.contains(a)?20:aE.call(b,a)&as?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(a){if(this===a)return!0;const b=cT(this);return(aE.call(b,a)&as)!=0&&bW(b,a)}},firstChild:{enumerable:!0,configurable:!0,get(){const a=cv(this);return a[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const a=cv(this);return a[a.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){const a=cv(this);return a.length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return aS.call(cT(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 cT(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:()=>null},parentNode:{enumerable:!0,configurable:!0,get:()=>null},textContent:{enumerable:!0,configurable:!0,get(){const b=cv(this);let c="";for(let a=0,e=b.length;a<e;a+=1){const d=b[a];d.nodeType!==aA&&(c+=ca(d))}return c},set(a){const b=cT(this);aQ.call(b,a)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(a){return!F(a)&&am(a.composed)?cT(this).getRootNode(a):this}}},P={innerHTML:{enumerable:!0,configurable:!0,get(){const b=cv(this);let c="";for(let a=0,d=b.length;a<d;a+=1)c+=b9(b[a]);return c},set(a){const b=cT(this);a5.call(b,a)}}},Q={childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return cg(Y.call(bX(this),a=>a instanceof Element))}},firstElementChild:{enumerable:!0,configurable:!0,get(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get(){const{children:a}=this;return a.item(a.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(a){return function(b,c){const a=cT(b),d=bG(aZ.call(a,c));return b$(a,d)}(this,a)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(a){return cc(function(b,c){const a=cT(b),d=aZ.call(a,c);return bZ(a,bG(d))}(this,a))}}};function o(){throw new TypeError("Illegal constructor")}function cZ(b,h){const c=[];let d;if(b instanceof Window)d=b;else{if(!(b instanceof f))return c;d=b.getRootNode()}let a=b;for(;null!==a;)if(c.push(a),a instanceof Element||a instanceof Text){const e=a.assignedSlot;a=null===e?a.parentNode:e}else a=(cW(a)||bA(a))&&(h||a!==d)?a.host:a instanceof f?a.parentNode:null;let g;return g=b instanceof Window?b.document:bC(b),c[c.length-1]===g&&c.push(window),c}function c$(e,h){if(null===e)return null;const i=cZ(e,!0),f=h;for(let c=0,a,g,b,d;c<f.length;c++)if((b=(a=f[c])instanceof Window?a:a.getRootNode())!==g&&(d=i.indexOf(b),g=b),!cW(b)|| !F(d)&&d> -1)return a;return null}function c_(b,c,d,e){const a=bl.call(c,d,e);return null===a?a:c$(b,cZ(a,!0))}p(y,O,Q,P,N),o.prototype=g(DocumentFragment.prototype,y),b(o,Symbol.hasInstance,{value:function(a){return ap(a)&&null!==a&&(bA(a)||U(a)===o.prototype)}}),Document.prototype.elementFromPoint=function(a,b){return c_(this,this,a,b)},Document.prototype.elementsFromPoint=function(a,b){return ce(this,this,a,b)},b(Document.prototype,"activeElement",{get(){let a=bk.call(this);if(null===a)return a;for(;!F(bN(a));)if(null===(a=aP.call(a)))return null;return"HTML"===a.tagName&&(a=this.body),a},enumerable:!0,configurable:!0}),b(Document.prototype,"getElementById",{value(){const a=bq.apply(this,ae.call(arguments));return null===a?null:F(bN(a))||bF(a)?a:null},writable:!0,enumerable:!0,configurable:!0}),b(Document.prototype,"querySelector",{value(){const b=bG(bp.apply(this,ae.call(arguments))),a=Z.call(b,a=>F(bN(a))||bF(a));return F(a)?null:a},writable:!0,enumerable:!0,configurable:!0}),b(Document.prototype,"querySelectorAll",{value(){const a=bG(bp.apply(this,ae.call(arguments))),b=Y.call(a,a=>F(bN(a))||bF(a));return cc(b)},writable:!0,enumerable:!0,configurable:!0}),b(Document.prototype,"getElementsByClassName",{value(){const a=bG(br.apply(this,ae.call(arguments))),b=Y.call(a,a=>F(bN(a))||bF(a));return cg(b)},writable:!0,enumerable:!0,configurable:!0}),b(Document.prototype,"getElementsByTagName",{value(){const a=bG(bs.apply(this,ae.call(arguments))),b=Y.call(a,a=>F(bN(a))||bF(a));return cg(b)},writable:!0,enumerable:!0,configurable:!0}),b(Document.prototype,"getElementsByTagNameNS",{value(){const a=bG(bt.apply(this,ae.call(arguments))),b=Y.call(a,a=>F(bN(a))||bF(a));return cg(b)},writable:!0,enumerable:!0,configurable:!0}),b(a(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const a=bG(bu.apply(this,ae.call(arguments))),b=Y.call(a,a=>F(bN(a))||bF(a));return cc(b)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:o,configurable:!0,writable:!0});const c0=Object.getOwnPropertyDescriptor(Event.prototype,"composed"),c1=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function c2(a){Object.defineProperty(a,"composed",{configurable:!0,enumerable:!0,get:()=>!0})}(function(){if(!c0)return!1;let b=new Event("click");const a=document.createElement("button");return a.addEventListener("click",a=>b=a),a.click(),!c0.get.call(b)})()&&(HTMLElement.prototype.click=function(){bH.call(this,"click",c2);try{c1.value.call(this)}finally{bJ.call(this,"click",c2)}}),!0!==new Event("test",{composed:!0}).composed&&function(){const c=p(g(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}),b=Event;function a(d,a){const c=new b(d,a),e=!!(a&&a.composed);return Object.defineProperties(c,{composed:{get:()=>e,configurable:!0,enumerable:!0}}),c}a.prototype=b.prototype,a.AT_TARGET=b.AT_TARGET,a.BUBBLING_PHASE=b.BUBBLING_PHASE,a.CAPTURING_PHASE=b.CAPTURING_PHASE,a.NONE=b.NONE,window.Event=a,Object.defineProperties(Event.prototype,{composed:{get(){const{type:a}=this;return 1===c[a]},configurable:!0,enumerable:!0}})}();const R=CustomEvent;function z(c,a){const b=new R(c,a),d=!!(a&&a.composed);return Object.defineProperties(b,{composed:{get:()=>d,configurable:!0,enumerable:!0}}),b}if(z.prototype=R.prototype,window.CustomEvent=z,"undefined"!=typeof ClipboardEvent){const c3=p(g(null),{copy:1,cut:1,paste:1});e(ClipboardEvent.prototype,{composed:{get(){const{type:a}=this;return 1===c3[a]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&function(){const c=a(HTMLIFrameElement.prototype,"contentWindow"),{get:d}=c;c.get=function(){var a;const b=d.call(this);return null===b||F(bN(this))?b:(a=b,{addEventListener(){return a.addEventListener.apply(a,arguments)},blur(){return a.blur.apply(a,arguments)},close(){return a.close.apply(a,arguments)},focus(){return a.focus.apply(a,arguments)},postMessage(){return a.postMessage.apply(a,arguments)},removeEventListener(){return a.removeEventListener.apply(a,arguments)},get closed(){return a.closed},get frames(){return a.frames},get length(){return a.length},get location(){return a.location},set location(value){a.location=value},get opener(){return a.opener},get parent(){return a.parent},get self(){return a.self},get top(){return a.top},get window(){return a.window}})},b(HTMLIFrameElement.prototype,"contentWindow",c)}();const A=MutationObserver,{disconnect:c4,observe:c5,takeRecords:c6}=A.prototype,c7="$$lwcObserverCallbackWrapper$$",c8="$$lwcNodeObservers$$",c9=new WeakMap;function da(a){return a[c8]}function db(b){const{addedNodes:c,removedNodes:d,target:f,type:h}=b,a=g(MutationRecord.prototype);return e(a,{addedNodes:{get:()=>c,enumerable:!0,configurable:!0},removedNodes:{get:()=>d,enumerable:!0,configurable:!0},type:{get:()=>h,enumerable:!0,configurable:!0},target:{get:()=>f.shadowRoot,enumerable:!0,configurable:!0}}),a}function dc(c,d){let a=d;for(;null!==a;){const b=da(a);if(!F(b)&&(b[0]===c|| -1!==$.call(b,c)))return!0;a=a.parentNode}return!1}function dd(a,b){return ac.call(a,(a,c)=>{const{target:d,addedNodes:g,removedNodes:i,type:j}=c;if("childList"!==j||F(bP(d)))dc(b,d)&&ab.call(a,c);else if(g.length>0){const k=g[0];if(dc(b,k)){const e=da(d);e&&(e[0]===b|| -1!==$.call(e,b))?ab.call(a,c):ab.call(a,db(c))}}else{const h=d.shadowRoot,l=i[0];if(bO(d)===bO(l)&&dc(b,d))ab.call(a,c);else if(h){const f=da(h);f&&(f[0]===b|| -1!==$.call(f,b))&&ab.call(a,db(c))}}return a},[])}function h(c){var b;let a;const d=(F(a=(b=c)[c7])&&(a=b[c7]=(d,a)=>{const c=dd(d,a);0!==c.length&&b.call(a,c,a)}),a),e=new A(d);return e}function B(){const a=bg.call(this);if(!(a instanceof f))return a;const c=bC(a),d=cZ(a,this.composed),b=bh.call(this);if(!(b instanceof f))return null===b&&F(bN(a))?a:c$(c,d);if(b===c||b===c.body)return F(bN(a))?a:c$(c,d);let e=b,g=d;if(cV(b)){const h=cA.get(this);1===h&&(e=cU(b))}return cV(a)&&cY.has(this)&&(g=cZ(cU(a),this.composed)),c$(e,g)}function C(){var b;const a=bg.call(this);if(!(a instanceof f))return[];const d=Boolean(a.shadowRoot),e=(b=a,cN.has(b));if(d&&!e)return bj.call(this);const g=bh.call(this);if(null===g)return[];let c=a;return cV(a)&&cY.has(this)&&(c=cU(a)),cZ(c,this.composed)}function D(c){const d=a(c.prototype,"relatedTarget").get;b(c.prototype,"relatedTarget",{get(){const a=d.call(this);if(null===a)return null;if(!(a instanceof f)||!bQ(a))return a;let b=bh.call(this);return null===b&&(b=bC(a)),c$(b,cZ(a,!0))},enumerable:!0,configurable:!0})}h.prototype=A.prototype,h.prototype.disconnect=function(){c4.call(this);const a=c9.get(this);F(a)||(ah.call(a,c=>{const a=c[c8];if(!F(a)){const b=$.call(a,this);-1!==b&&af.call(a,b,1)}}),a.length=0)},h.prototype.observe=function(a,f){let b=da(a);if(F(b)){var c,d;b=[],c=a,d=b,c[c8]=d}if(-1===$.call(b,this)&&ab.call(b,this),cW(a)&&(a=a.host),c9.has(this)){const e=c9.get(this);-1===$.call(e,a)&&ab.call(e,a)}else c9.set(this,[a]);return c5.call(this,a,f)},h.prototype.takeRecords=function(){return dd(c6.call(this),this)},b(window,"MutationObserver",{value:h,configurable:!0,writable:!0}),e(w,{addEventListener:{value:function(b,c,d){if(cV(this))return cL.apply(this,arguments);if(arguments.length<2){const a=ae.call(arguments);return a.length>1&&(a[1]=cz(a[1])),bH.apply(this,a)}const e=cz(c);return bH.call(this,b,e,d)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(b,c,d){if(cV(this))return cM.apply(this,arguments);const a=ae.call(arguments);arguments.length>1&&(a[1]=cz(a[1])),bJ.apply(this,a),bJ.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&e(Window.prototype,{addEventListener:{value:function(b,c,d){if(arguments.length>1){const a=ae.call(arguments);return a[1]=cz(a[1]),bv.apply(this,a)}return bv.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(b,c,d){if(arguments.length>1){const a=ae.call(arguments);a[1]=cz(a[1]),bw.apply(this,a)}bw.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),e(Event.prototype,{target:{get:B,enumerable:!0,configurable:!0},currentTarget:{get:function(){const a=bh.call(this);return null===a?null:1===cA.get(this)?cU(a):a},enumerable:!0,configurable:!0},composedPath:{value:C,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:B,enumerable:!0,configurable:!0},path:{get:C,enumerable:!0,configurable:!0}}),D(FocusEvent),D(MouseEvent);const de=c.call(Text.prototype,"assignedSlot")?a(Text.prototype,"assignedSlot").get:()=>null;let df;const dg={childList:!0},dh=new WeakMap;function di(a){const b=bG(aR.call(a));return ac.call(b,(b,a)=>(a instanceof Element&&bV(a)?ab.apply(b,di(a)):ab.call(b,a),b),[])}function E(){const a=aN.call(this);if(a instanceof Element){const b=be.call(a);if(bA(b))return this instanceof Text?de.call(this):bf.call(this)}return null!==a&&bV(a)&&bN(a)!==bN(this)?a:null}function dj(a,b){let c;const e=bN(a);if(F(e))c=a instanceof HTMLBodyElement?Y.call(b,b=>F(bN(b))||bF(a)):ae.call(b);else if(cV(a)){const d=bT(a);c=null===d?[]:bP(a)?bY(a,b):bZ(d,b)}else c=Y.call(b,a=>bO(a)===e);return c}function dk(){const b=cv(this);let c="";for(let a=0,d=b.length;a<d;a+=1)c+=b9(b[a]);return c}function dl(){return b9(this)}function dm(){const a=bT(this),b=null===a?[]:bZ(a,b_(this));return cg(Y.call(b,a=>a instanceof Element))}function dn(){return this.children.length}function dp(){return this.children[0]||null}function dq(){const{children:a}=this;return a.item(a.length-1)||null}function dr(a,b,d){let c;if(cV(a)){const e=bT(a);c=null===e?[]:bP(a)?bY(a,b):bZ(e,b)}else if(bQ(a)){const f=bN(a);if(F(f))if(1===d){const g=bO(a);c=Y.call(b,a=>bO(a)===g)}else c=ae.call(b);else c=Y.call(b,a=>bO(a)===f)}else c=a instanceof HTMLBodyElement||1===d?Y.call(b,b=>F(bN(b))||bF(a)):ae.call(b);return c}function ds(a){const b=bD(a);return bx.call(b,a)}function dt(a){const b=bD(a);return by.call(b)}function du(a){return"visible"===a.visibility&&"none"!==a.display}e(HTMLSlotElement.prototype,{addEventListener:{value(a,b,c){HTMLElement.prototype.addEventListener.call(this,a,b,c),"slotchange"!==a||dh.get(this)||(dh.set(this,!0),df||(df=new M(a=>{const b=[];ah.call(a,c=>{const{target:a}=c;-1===$.call(b,a)&&(ab.call(b,a),bI.call(a,new CustomEvent("slotchange")))})})),bz.call(df,this,dg))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(a){if(!bQ(this))return v.apply(this,ae.call(arguments));{const b=!F(a)&&am(a.flatten),c=b?di(this):b0(this);return Y.call(c,a=>a instanceof Element)}},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(a){if(!bQ(this))return u.apply(this,ae.call(arguments));{const b=!F(a)&&am(a.flatten);return b?di(this):b0(this)}},writable:!0,enumerable:!0,configurable:!0},name:{get(){const a=aT.call(this,"name");return null===a?"":a},set(a){a_.call(this,"name",a)},enumerable:!0,configurable:!0},childNodes:{get(){if(bQ(this)){const a=bT(this),b=null===a?[]:bZ(a,b_(this));return cc(b)}return aR.call(this)},enumerable:!0,configurable:!0}}),e(Text.prototype,{assignedSlot:{get:E,enumerable:!0,configurable:!0}}),e(Element.prototype,{innerHTML:{get(){return ch.ENABLE_ELEMENT_PATCH?bF(this)?a4.call(this):dk.call(this):bQ(this)||cV(this)?dk.call(this):a4.call(this)},set(a){a5.call(this,a)},enumerable:!0,configurable:!0},outerHTML:{get(){return ch.ENABLE_ELEMENT_PATCH?bF(this)?a6.call(this):dl.call(this):bQ(this)||cV(this)?dl.call(this):a6.call(this)},set(a){a7.call(this,a)},enumerable:!0,configurable:!0},attachShadow:{value:function(a){return a["$$lwc-synthetic-mode"]?function(a,g){var c,d;if(cN.has(a))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:h,delegatesFocus:i}=g,j=bC(a),b=cO.call(j),e={mode:h,delegatesFocus:!!i,host:a,shadowRoot:b};cN.set(b,e),cN.set(a,e);const f=()=>b,k=f.nodeKey=cX++;return c=a,d=k,bM(c,bL,{value:d}),cR(b,f),q(b,o.prototype),b}(this,a):a0.call(this,a)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(cV(this)){const a=cU(this);if("open"===a.mode)return a}return be.call(this)},enumerable:!0,configurable:!0},children:{get(){return ci(this)?dm.call(this):bc.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return ci(this)?dn.call(this):a1.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return ci(this)?dp.call(this):a2.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return ci(this)?dq.call(this):a3.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:E,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"innerHTML")&&b(HTMLElement.prototype,"innerHTML",a(Element.prototype,"innerHTML")),c.call(HTMLElement.prototype,"outerHTML")&&b(HTMLElement.prototype,"outerHTML",a(Element.prototype,"outerHTML")),c.call(HTMLElement.prototype,"children")&&b(HTMLElement.prototype,"children",a(Element.prototype,"children")),e(Element.prototype,{querySelector:{value:function(){const a=bG(aZ.apply(this,ae.call(arguments)));if(cV(this)){const b=bT(this);return null===b?null:bP(this)?function(c,d){for(let a=0,e=d.length;a<e;a+=1){const b=d[a];if(!bW(c,b)&&bS(c,b))return b}return null}(this,a):b$(b,a)}if(bQ(this)){const g=bN(this);if(F(g)){if(!ch.ENABLE_NODE_LIST_PATCH)return 0===a.length?null:a[0];const h=bO(this),c=Z.call(a,a=>bO(a)===h);return F(c)?null:c}{const d=Z.call(a,a=>bO(a)===g);return F(d)?null:d}}{if(!ch.ENABLE_NODE_LIST_PATCH&&!(this instanceof HTMLBodyElement)){const e=a[0];return F(e)?null:e}const f=Z.call(a,a=>F(bN(a))||bF(this));return F(f)?null:f}},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const a=bG(aZ.apply(this,ae.call(arguments)));if(!ch.ENABLE_NODE_LIST_PATCH){const b=dr(this,a,0);return cc(b)}return cc(dr(this,a,1))},writable:!0,enumerable:!0,configurable:!0}}),e(Element.prototype,{getElementsByClassName:{value(){const a=bG(bd.apply(this,ae.call(arguments)));if(!ch.ENABLE_HTML_COLLECTIONS_PATCH)return cg(dj(this,a));const b=dr(this,a,1);return cg(b)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const a=bG(aV.apply(this,ae.call(arguments)));if(!ch.ENABLE_HTML_COLLECTIONS_PATCH)return cg(dj(this,a));const b=dr(this,a,1);return cg(b)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const a=bG(aW.apply(this,ae.call(arguments)));if(!ch.ENABLE_HTML_COLLECTIONS_PATCH)return cg(dj(this,a));const b=dr(this,a,1);return cg(b)},writable:!0,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"getElementsByClassName")&&b(HTMLElement.prototype,"getElementsByClassName",a(Element.prototype,"getElementsByClassName"));const dv=a=>a.nodeType===aw,dw=a=>a.nodeType===ax;function dx(b){const a=[];if(dv(b)){const{tagName:c}=b,f=ds(b);if("OPTION"===c)return[1,I.call(b),1];{if("TEXTAREA"===c)return[];const g=b.childNodes;for(let e=0,h=g.length;e<h;e++)ab.apply(a,dx(g[e]))}if(!du(f))return"SELECT"===c||"DATALIST"===c?[]:a;"BR"===c&&a.push("\n");const{display:d}=f;"table-cell"===d&&a.push(" "),"table-row"===d&&a.push("\n"),"P"===c&&(a.unshift(2),a.push(2)),("block"===d||"table-caption"===d||"flex"===d||"table"===d)&&(a.unshift(1),a.push(1))}else dw(b)&&a.push(function(a){const b=dt(a);if(null===b)return a.textContent||"";const c=document.createRange();c.selectNodeContents(a);const d=c.getBoundingClientRect();if(d.height<=0||d.width<=0)return"";b.removeAllRanges(),b.addRange(c);const e=b.toString();return e||a.textContent||""}(b));return a}function dy(c){const j=ds(c);if(!du(j))return ca(c)||"";const k=function(b){const a=bD(b),c=dt(b);if(null===c)return null;const e=[];for(let d=0;d<c.rangeCount;d++)e.push(c.getRangeAt(d));const f={element:b,onselect:a.onselect,onselectstart:a.onselectstart,onselectionchange:a.onselectionchange,ranges:e};return a.onselect=null,a.onselectstart=null,a.onselectionchange=null,f}(c),e=[],h=c.childNodes;for(let f=0,l=h.length;f<l;f++)ab.apply(e,dx(h[f]));!function(c){if(null===c)return;const{element:d,onselect:g,onselectstart:h,onselectionchange:i,ranges:e}=c,a=bD(d),f=dt(d);f.removeAllRanges();for(let b=0;b<e.length;b++)f.addRange(e[b]);a.onselect=g,a.onselectstart=h,a.onselectionchange=i}(k);let d="",a=0;for(let g=0,m=e.length;g<m;g++){const b=e[g];if("string"==typeof b){if(a>0){for(let i=0;i<a;i++)d+="\n";a=0}b.length>0&&(d+=b)}else{if(0==d.length)continue;b>a&&(a=b)}}return d}const dz=`
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
select,
|
|
11
|
-
textarea,
|
|
12
|
-
video[controls]
|
|
13
|
-
`,dA=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function dB(a){return a.filter(a=>aX.call(a,"tabindex")?"0"===aT.call(a,"tabindex"):!dA.has(a8.call(a))||!aX.call(a,"disabled"))}const dC=new WeakMap;function dD(){const c=this.getRootNode();if(c===this){const b=aY.call(this,dz);null!==b&&b.focus.apply(b,arguments);return}if(c.activeElement===this)return;const d=bG(aZ.call(this,dz));let e=!1;for(;!e&&0!==d.length;){const a=d.shift();a.focus.apply(a,arguments);const f=a.getRootNode();e=f.activeElement===a}}function dE(c){const f=bC(c),a=dB(bG(bp.call(f,dz))),b=dB(bG(aZ.call(c,dz))),g=b[0],h=b[b.length-1],d=$.call(a,c),e=d> -1?d:$.call(a,g),i=0===b.length?e+1:$.call(a,h)+1,j=ae.call(a,0,e),k=ae.call(a,i);return{prev:j,inner:b,next:k}}function dF(b,c){const a=aE.call(b,c);return a&as?0:a&au?1:a&av?2:-1}function dG(a){a.preventDefault(),a.stopPropagation()}function dH(a,b){bv.call(a,"focusin",dG,!0),bv.call(a,"focusout",dG,!0),b(),bw.call(a,"focusin",dG,!0),bw.call(a,"focusout",dG,!0)}function dI(c,e,a){const b=bD(a),d=dP(c,a);null===d?dH(b,()=>{e.blur()}):dH(b,()=>{d.focus()})}let dJ=!1;function dK(){dJ=!0}function dL(){dJ=!1}function dM(d){if(dJ)return;const a=bh.call(d),b=bg.call(d);if(a!==b)return;const c=bi.call(d);if(null===c)return;const e=dE(a),g=dF(a,c);if(1===g){const h=dO.bind(null,a.getRootNode()),f=Z.call(e.inner,h);if(F(f))dI(e.next,b,c);else{const i=bD(f);dH(i,()=>{f.focus()})}}else a===b&&dI(ad.call(e.prev),b,c)}function dN(b){if(dJ)return;const a=bi.call(b);if(null===a)return;const d=bh.call(b),c=dE(d);if(-1!==$.call(c.inner,a))return;const e=bg.call(b),f=dF(d,a);1===f&&dI(c.next,e,a),2===f&&dI(ad.call(c.prev),e,a)}function dO(e,c){var a;if(!(!(cV(a=c)&&cS(a))&&bb.call(a,dz)&&function(a){const{width:b,height:c}=aU.call(a),d="AREA"===a.tagName;return(b>0||c>0||d)&&"hidden"!==getComputedStyle(a).visibility}(a)))return!1;const f=bC(c);let b=c.getRootNode();for(;b!==f&&b!==e;){const g=b,d=g.host;if("-1"===aT.call(d,"tabindex"))return!1;b=d&&d.getRootNode()}return!0}function dP(b,e){const c=b.length;if(c>0)for(let a=0;a<c;a+=1){const d=b[a];if(dO(e.getRootNode(),d))return d}return null}function dQ(a){bJ.call(a,"focusin",dM,!0)}function dR(b){const a=bC(b);dC.get(a)||(dC.set(a,!0),bH.call(a,"mousedown",dK,!0),bH.call(a,"mouseup",()=>{setTimeout(dL)},!0),bH.call(a,"dragstart",dL,!0))}function dS(a){bJ.call(a,"focusin",dN,!0)}const{blur:dT,focus:dU}=HTMLElement.prototype;function dV(){return cS(this)&&an(aX.call(this,"tabindex"))?0:a9.call(this)}function dW(i){var a,b;const f=cS(this),c=a9.call(this),g=aX.call(this,"tabindex");ba.call(this,i);const d=a9.call(this),e=aX.call(this,"tabindex"),h=c!==d;g&&(h||an(e))&&(-1===c&&dS(this),0===c&&f&&dQ(this)),an(e)|| !(g&&e&&an(h))&&(-1===d&&(a=this,dR(a),dQ(a),bH.call(a,"focusin",dN,!0)),0===d&&f&&(b=this,dR(b),dS(b),bH.call(b,"focusin",dM,!0)))}function dX(){if(cS(this)){const a=function(b){const c=bC(b),a=bk.call(c);return null===a?a:(aE.call(b,a)&as)!=0?a:null}(this);if(null!==a){a.blur();return}}return dT.call(this)}function dY(){const a=!dJ;if(a&&dK(),cV(this)&&cS(this)){dD.call(this);return}dU.apply(this,arguments),a&&dL()}e(HTMLElement.prototype,{tabIndex:{get(){return cV(this)?dV.call(this):a9.call(this)},set(a){return cV(this)?dW.call(this,a):ba.call(this,a)},enumerable:!0,configurable:!0},blur:{value(){if(cV(this))return dX.call(this);dT.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){dY.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==I&&null!==J&&b(HTMLElement.prototype,"innerText",{get(){return ch.ENABLE_INNER_OUTER_TEXT_PATCH?ch.ENABLE_ELEMENT_PATCH?bF(this)?I.call(this):dy(this):bQ(this)||cV(this)?dy(this):I.call(this):I.call(this)},set(a){J.call(this,a)},enumerable:!0,configurable:!0}),null!==K&&null!==L&&b(HTMLElement.prototype,"outerText",{get(){return ch.ENABLE_INNER_OUTER_TEXT_PATCH?ch.ENABLE_ELEMENT_PATCH?bF(this)?K.call(this):dy(this):bQ(this)||cV(this)?dy(this):K.call(this):K.call(this)},set(a){L.call(this,a)},enumerable:!0,configurable:!0}),b(Element.prototype,H,{set(a){const b=this[ar];F(b)||b===a||a$.call(this,b),F(a)||a_.call(this,a,""),this[ar]=a},get(){return this[ar]},configurable:!0});const dZ="$$DomManualKey$$",d$=function(){};let d_;const d0={childList:!0};function d1(a,b,d){const e=cQ(a);if(e!==b&&(cR(a,b),a instanceof Element)){var f,g;if(f=a,g=d,f[H]=g,cV(a))return;F(e)&&bz.call(d_,a,d0);const h=aR.call(a);for(let c=0,i=h.length;c<i;c+=1)d1(h[c],b,d)}}b(Element.prototype,"$domManual$",{set(a){this[dZ]=a,am(a)&&function(a){if(F(d_)&&(d_=new M(a=>{ah.call(a,i=>{const{target:a,addedNodes:d,removedNodes:e}=i,j=cQ(a),k=a[H];for(let b=0,l=e.length;b<l;b+=1){const g=e[b];aE.call(a,g)&f.DOCUMENT_POSITION_CONTAINED_BY||d1(g,d$,void 0)}for(let c=0,m=d.length;c<m;c+=1){const h=d[c];aE.call(a,h)&f.DOCUMENT_POSITION_CONTAINED_BY&&d1(h,j,k)}})})),F(cQ(a)))throw new Error("Invalid Element");bz.call(d_,a,d0)}(this)},get(){return this[dZ]},configurable:!0})})
|
|
1
|
+
!function(e){"function"==typeof define&&define.amd?define(e):e()}((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,{copyWithin:p,fill:g,filter:m,find:d,indexOf:b,join:E,map:y,pop:w,push:T,reduce:v,reverse:N,shift:L,slice:M,sort:C,splice:S,unshift:O,forEach:H}=Array.prototype,{charCodeAt:A,replace:R,slice:_,toLowerCase:P}=String.prototype;function D(e){return void 0===e}function $(e){return null===e}function I(e){return!0===e}function B(e){return!1===e}function k(e){return"function"==typeof e}function x(e){return"object"==typeof e}const F=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}(),W="$shadowResolver$",U="$shadowToken$",j=Node,K=j.prototype,{DOCUMENT_POSITION_CONTAINED_BY:G,DOCUMENT_POSITION_CONTAINS:q,DOCUMENT_POSITION_PRECEDING:X,DOCUMENT_POSITION_FOLLOWING:Y,ELEMENT_NODE:V,TEXT_NODE:z,CDATA_SECTION_NODE:J,PROCESSING_INSTRUCTION_NODE:Q,COMMENT_NODE:Z,DOCUMENT_FRAGMENT_NODE:ee}=j,{appendChild:te,cloneNode:ne,compareDocumentPosition:le,insertBefore:oe,removeChild:re,replaceChild:ie,hasChildNodes:ae}=K,{contains:ce}=HTMLElement.prototype,ue=r(K,"firstChild").get,se=r(K,"lastChild").get,fe=r(K,"textContent").get,he=r(K,"parentNode").get,pe=r(K,"ownerDocument").get,ge=c.call(K,"parentElement")?r(K,"parentElement").get:r(HTMLElement.prototype,"parentElement").get,me=r(K,"textContent").set,de=c.call(K,"childNodes")?r(K,"childNodes").get:r(HTMLElement.prototype,"childNodes").get,be=c.call(K,"isConnected")?r(K,"isConnected").get:function(){const e=pe.call(this);return null===e||0!=(le.call(e,this)&G)},{getAttribute:Ee,getBoundingClientRect:ye,getElementsByTagName:we,getElementsByTagNameNS:Te,hasAttribute:ve,querySelector:Ne,querySelectorAll:Le,removeAttribute:Me,setAttribute:Ce}=Element.prototype,Se=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")},Oe=r(Element.prototype,"childElementCount").get,He=r(Element.prototype,"firstElementChild").get,Ae=r(Element.prototype,"lastElementChild").get,Re=r(HTMLElement.prototype,"innerText"),_e=Re?Re.get:null,Pe=Re?Re.set:null,De=r(HTMLElement.prototype,"outerText"),$e=De?De.get:null,Ie=De?De.set:null,Be=c.call(Element.prototype,"innerHTML")?r(Element.prototype,"innerHTML"):r(HTMLElement.prototype,"innerHTML"),ke=Be.get,xe=Be.set,Fe=c.call(Element.prototype,"outerHTML")?r(Element.prototype,"outerHTML"):r(HTMLElement.prototype,"outerHTML"),We=Fe.get,Ue=Fe.set,je=r(Element.prototype,"tagName").get,Ke=r(HTMLElement.prototype,"tabIndex"),Ge=Ke.get,qe=Ke.set,Xe=c.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,Ye=c.call(Element.prototype,"children")?r(Element.prototype,"children").get:r(HTMLElement.prototype,"children").get,{getElementsByClassName:Ve}=HTMLElement.prototype,ze=c.call(Element.prototype,"shadowRoot")?r(Element.prototype,"shadowRoot").get:()=>null,Je=c.call(Element.prototype,"assignedSlot")?r(Element.prototype,"assignedSlot").get:()=>null;let Qe,Ze;"undefined"!=typeof HTMLSlotElement?(Qe=HTMLSlotElement.prototype.assignedNodes,Ze=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")},Ze=()=>{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 et=r(Event.prototype,"target").get,tt=r(Event.prototype,"currentTarget").get,nt=r(FocusEvent.prototype,"relatedTarget").get,lt=c.call(Event.prototype,"composedPath")?Event.prototype.composedPath:()=>[],ot=r(Document.prototype,"activeElement").get,rt=c.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,it=c.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,at=r(Document.prototype,"defaultView").get,{createComment:ct,querySelectorAll:ut,getElementById:st,getElementsByClassName:ft,getElementsByTagName:ht,getElementsByTagNameNS:pt}=Document.prototype,{getElementsByName:gt}=HTMLDocument.prototype,{addEventListener:mt,removeEventListener:dt,getComputedStyle:bt,getSelection:Et}=window,yt=MutationObserver,wt=yt.prototype.observe;let Tt=null;"undefined"!=typeof ShadowRoot&&(Tt=ShadowRoot);const vt=!$(Tt),Nt=$(Tt)?()=>!1:e=>e instanceof Tt;const{createElement:Lt}=Document.prototype;function Mt(e){const t=pe.call(e);return null===t?e:t}function Ct(e){const t=Mt(e),n=at.call(t);if(null===n)throw new TypeError;return n}let St;function Ot(e){if(D(St)){const t=Mt(e);St=t.body&&"temporary-bypass"===Ee.call(t.body,"data-global-patching-bypass")}return I(St)}function Ht(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=Lt.apply(this,M.call(arguments));return 4===t.length&&115===A.call(t,0)&&108===A.call(t,1)&&111===A.call(t,2)&&116===A.call(t,3)&&h(l,e.prototype),l}})}();const At="undefined"!=typeof EventTarget?EventTarget.prototype:j.prototype,{addEventListener:Rt,dispatchEvent:_t,removeEventListener:Pt}=At,Dt="$$HostElementKey$$",$t="$$ShadowedNodeKey$$";function It(e,t,n){const l=e;{const{value:e}=n;l[t]=e}}function Bt(e){return e[Dt]}function kt(e){let t,n=e;for(;!$(n);){if(t=Bt(n),!D(t))return t;n=he.call(n)}}function xt(e){return e[$t]}function Ft(e){return!D(Bt(e))}function Wt(e){let t=ge.call(e);for(;!$(t)&&Gt(t);)e=t,t=ge.call(e);return e}function Ut(e,t){const n=xt(e);let l=t instanceof Element?t:ge.call(t);for(;!$(l)&&l!==e;){const t=kt(l),o=ge.call(l);if(t===n)return Gt(l);if(o===e)return!1;if($(o)||kt(o)===t)l=o;else{if(!Gt(o))return!1;if(l=jt(Wt(o)),!$(l)){if(l===e)return!0;if(kt(l)===n)return!0}}}return!1}function jt(e){if(!(e instanceof j))return null;const t=kt(e);if(D(t))return null;let n=e;for(;!$(n)&&xt(n)!==t;)n=he.call(n);return $(n)?null:n}function Kt(e){return Gt(e)&&Ft(e)}function Gt(e){return e instanceof HTMLSlotElement}function qt(e,t){const n=kt(t);return D(n)||xt(e)===n}function Xt(e){const t=ol(e);return zt(t,Ht(de.call(t)))}function Yt(e,t){const n=[];for(let l=0,o=t.length;l<o;l+=1){const o=t[l];!qt(e,o)&&Ut(e,o)&&T.call(n,o)}return n}function Vt(e,t){for(let n=0,l=t.length;n<l;n+=1){const l=t[n];if(!qt(e,l)&&Ut(e,l))return l}return null}function zt(e,t){const n=[];for(let l=0,o=t.length;l<o;l+=1){const o=t[l];qt(e,o)&&T.call(n,o)}return n}function Jt(e,t){for(let n=0,l=t.length;n<l;n+=1)if(qt(e,t[n]))return t[n];return null}function Qt(e){if(!il(e)&&!Gt(e)){return Ht(de.call(e))}if(il(e)){const t=Ht(Le.call(e,"slot")),n=tl(rl(e));return v.call(t,((e,t)=>(n===tl(t)&&T.apply(e,Zt(t)),e)),[])}{const t=Ht(de.call(e)),n=tl(e);return m.call(t,(e=>n===tl(e)))}}function Zt(e){const t=jt(e);if($(t))return[];const n=Ht(de.call(e));return m.call(n,(e=>!Ft(e)||!qt(t,e)))}const en=/[&\u00A0"]/g,tn=/[&\u00A0<>]/g,{replace:nn,toLowerCase:ln}=String.prototype;function on(e){switch(e){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case" ":return" ";default:return""}}function rn(e){return nn.call(e,en,on)}const an=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 un(e){switch(e.nodeType){case V:{const{attributes:t}=e,n=je.call(e);let l="<"+ln.call(n);for(let e,n=0;e=t[n];n++)l+=" "+e.name+'="'+rn(e.value)+'"';return l+=">",an.has(n)?l:l+function(e){let t="";const n=Qt(e);for(let e=0,l=n.length;e<l;e+=1)t+=un(n[e]);return t}(e)+"</"+ln.call(n)+">"}case z:{const{data:n,parentNode:l}=e;return l instanceof Element&&cn.has(je.call(l))?n:(t=n,nn.call(t,tn,on))}case J:return`<!CDATA[[${e.data}]]>`;case Q:return`<?${e.target} ${e.data}?>`;case Z:return`\x3c!--${e.data}--\x3e`;default:return""}var t}function sn(e){if(e.nodeType===V){const t=Qt(e);let n="";for(let e=0,l=t.length;e<l;e+=1){const l=t[e];l.nodeType!==Z&&(n+=sn(l))}return n}return e.nodeValue}const fn=new WeakMap;function hn(){throw new TypeError("Illegal constructor")}function pn(e){const n=t(hn.prototype);return fn.set(n,e),H.call(e,((e,t)=>{l(n,t,{value:e,enumerable:!0,configurable:!0})})),n}hn.prototype=t(NodeList.prototype,{constructor:{writable:!0,configurable:!0,value:hn},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return fn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value(e,t){H.call(fn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value(){return y.call(fn.get(this),((e,t)=>[t,e]))}},keys:{writable:!0,enumerable:!0,configurable:!0,value(){return y.call(fn.get(this),((e,t)=>t))}},values:{writable:!0,enumerable:!0,configurable:!0,value(){return fn.get(this)}},[Symbol.iterator]:{writable:!0,configurable:!0,value(){let e=0;return{next:()=>{const t=fn.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(hn,NodeList);const gn=(e,t)=>{let n;for(;!D(n=e.host);){const l=n.getRootNode();if(l===t)return n;e=l}};function mn(e,t,n,l){const o=it.call(t,n,l),r=[],i=function(e){var t;const n=[];let l=e.getRootNode();for(;!D(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];if(Kt(t))continue;const n=t.getRootNode();if(-1!==b.call(i,n)){T.call(r,t);continue}const l=gn(n,i[0]);D(l)||-1!==b.call(o,l)||-1!==b.call(r,l)||T.call(r,l)}return r}const dn=new WeakMap;function bn(){throw new TypeError("Illegal constructor")}function En(e){const n=t(bn.prototype);return dn.set(n,e),H.call(e,((e,t)=>{l(n,t,{value:e,enumerable:!0,configurable:!0})})),n}bn.prototype=t(HTMLCollection.prototype,{constructor:{writable:!0,configurable:!0,value:bn},item:{writable:!0,enumerable:!0,configurable:!0,value(e){return this[e]}},length:{enumerable:!0,configurable:!0,get(){return dn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value(e){if(""===e)return null;const t=dn.get(this);for(let n=0,l=t.length;n<l;n++){const n=t[l];if(e===Ee.call(n,"id")||e===Ee.call(n,"name"))return n}return null}},[Symbol.toStringTag]:{configurable:!0,get:()=>"HTMLCollection"},toString:{writable:!0,configurable:!0,value:()=>"[object HTMLCollection]"}}),h(bn,HTMLCollection),F.lwcRuntimeFlags||Object.defineProperty(F,"lwcRuntimeFlags",{value:t(null)});const yn=F.lwcRuntimeFlags;function wn(e){return Kt(e)||il(e)}function Tn(e,t){const n=jt(e);if(t===n)return rl(n);if(t instanceof Element){if(kt(e)===kt(t))return t;if(!$(n)&&Gt(t)){const e=jt(t);if(!$(e)&&qt(n,e))return e}}return null}function vn(){return Dn(this).length>0}function Nn(){return Dn(this)[0]||null}function Ln(){const e=Dn(this);return e[e.length-1]||null}function Mn(){return sn(this)}function Cn(){const e=he.call(this);return $(e)?e:Tn(this,e)}function Sn(){const e=he.call(this);if($(e))return null;const t=Tn(this,e);return t instanceof Element?t:null}function On(e){return this===e?0:this.getRootNode()===e?10:Bt(this)!==Bt(e)?35:le.call(this,e)}function Hn(e){return null!=e&&Bt(this)===Bt(e)&&0!=(le.call(this,e)&G)}function An(e){const t=ne.call(this,!1);if(!e)return t;const n=Dn(this);for(let e=0,l=n.length;e<l;e+=1)t.appendChild(n[e].cloneNode(!0));return t}function Rn(){if(il(this)){const e=jt(this);return pn($(e)?[]:zt(e,Qt(this)))}return de.call(this)}const _n=j.prototype.getRootNode,Pn=D(_n)?function(){let e,t=this;for(;!$(e=he.call(t));)t=e;return t}:_n;n(j.prototype,{firstChild:{get(){return wn(this)?Nn.call(this):ue.call(this)},enumerable:!0,configurable:!0},lastChild:{get(){return wn(this)?Ln.call(this):se.call(this)},enumerable:!0,configurable:!0},textContent:{get(){return yn.ENABLE_NODE_PATCH?Ot(this)?fe.call(this):Mn.call(this):Ft(this)||il(this)?Mn.call(this):fe.call(this)},set:function(e){me.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get(){if(Ft(this))return Cn.call(this);const e=he.call(this);return!$(e)&&Kt(e)?jt(e):e},enumerable:!0,configurable:!0},parentElement:{get(){if(Ft(this))return Sn.call(this);const e=ge.call(this);return!$(e)&&Kt(e)?jt(e):e},enumerable:!0,configurable:!0},childNodes:{get(){return wn(this)?Rn.call(this):de.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value(){return wn(this)?vn.call(this):ae.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value(e){return Ot(this)?le.call(this,e):On.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value(e){return this===e||(yn.ENABLE_NODE_PATCH?Ot(this)?ce.call(this,e):Hn.call(this,e):null!=e&&(Ft(this)||il(this)?Hn.call(this,e):ce.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value(e){return yn.ENABLE_NODE_PATCH?I(e)?Ot(this)?ne.call(this,e):An.call(this,e):ne.call(this,e):Ft(this)||il(this)?An.call(this,e):ne.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){return I(!D(e)&&!!e.composed)?Pn.call(this,e):function(e){const t=jt(e);return $(t)?Pn.call(e):rl(t)}(this)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get(){return be.call(this)}}});const Dn=function(e){return e.childNodes};c.call(HTMLElement.prototype,"contains")&&l(HTMLElement.prototype,"contains",r(j.prototype,"contains")),c.call(HTMLElement.prototype,"parentElement")&&l(HTMLElement.prototype,"parentElement",r(j.prototype,"parentElement"));const $n=new WeakMap,In=new WeakMap;function Bn(e,t,n){if(t===n)return!0;let l=In.get(e);return D(l)&&(l=e.composedPath(),In.set(e,l)),l.includes(n)}function kn(e){if(!function(e){return k(e)||x(e)&&!$(e)&&k(e.handleEvent)}(e))return e;let t=$n.get(e);return D(t)&&(t=function(t){const n=tt.call(t);if(Bn(t,Un(t),n))return k(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},$n.set(e,t)),t}const xn=new WeakMap,Fn=new WeakMap;function Wn(e){let n=Fn.get(e);return D(n)&&(n=t(null),Fn.set(e,n)),n}function Un(e){var t;return null!==(t=hl.get(e))&&void 0!==t?t:et.call(e)}const jn=new WeakMap;function Kn(e){if(!k(e))throw new TypeError;let t=jn.get(e);return D(t)&&(t=function(t){let n=tt.call(t);Nt(n)||(n=rl(n));Bn(t,Un(t),n)&&e.call(n,t)},t.placement=1,jn.set(e,t)),t}const Gn=new WeakMap;function qn(e){if(!k(e))throw new TypeError;let t=Gn.get(e);return D(t)&&(t=function(t){const n=tt.call(t);Bn(t,Un(t),n)&&e.call(n,t)},t.placement=0,Gn.set(e,t)),t}function Xn(e){let t=!1,n=!1;const{type:o,stopImmediatePropagation:r,stopPropagation:i}=e,a=Wn(tt.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=M.call(a);function u(n){H.call(c,(l=>{B(t)&&l.placement===n&&-1!==b.call(a,l)&&l.call(void 0,e)}))}xn.set(e,1),u(1),B(t)&&B(n)&&(xn.set(e,0),u(0)),xn.set(e,2)}function Yn(e,t,n){const l=Wn(e);let o=l[t];D(o)&&(o=l[t]=[]),-1===b.call(o,n)&&(0===o.length&&Rt.call(e,t,Xn),T.call(o,n))}function Vn(e,t,n){let l,o;D(o=Wn(e)[t])||-1===(l=b.call(o,n))||(S.call(o,l,1),0===o.length&&Pt.call(e,t,Xn))}function zn(e,t,n){if(k(t)){Yn(this,e,qn(t))}}function Jn(e,t,n){if(k(t)){Vn(this,e,qn(t))}}const Qn=new WeakMap,{createDocumentFragment:Zn}=document;function el(e){const t=Qn.get(e);if(D(t))throw new TypeError;return t}function tl(e){return e.$shadowResolver$}function nl(e,t){e.$shadowResolver$=t}function ll(e){return el(e).delegatesFocus}function ol(e){return el(e).host}function rl(e){return el(e).shadowRoot}function il(e){const t=Qn.get(e);return!D(t)&&e===t.host}function al(e){const t=Qn.get(e);return!D(t)&&e===t.shadowRoot}l(j.prototype,W,{set(e){var t,n;D(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,It(t,Dt,{value:n,configurable:!0}))},get(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),l(F,"$isNativeShadowRootDefined$",{value:vt});let cl=0;function ul(e,t){if(Qn.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=Mt(e),r=Zn.call(o),i={mode:n,delegatesFocus:!!l,host:e,shadowRoot:r};Qn.set(r,i),Qn.set(e,i);const a=()=>r,c=a.nodeKey=cl++;return It(e,$t,{value:c}),nl(r,a),h(r,gl.prototype),r}const sl={constructor:{writable:!0,configurable:!0,value:gl},toString:{writable:!0,configurable:!0,value:()=>"[object ShadowRoot]"},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},fl={activeElement:{enumerable:!0,configurable:!0,get(){const e=ol(this),t=Mt(e),n=ot.call(t);if($(n))return n;if(0==(le.call(e,n)&G))return null;let l=n;for(;!qt(e,l);)l=ge.call(l);return Gt(l)?null:l}},delegatesFocus:{configurable:!0,get(){return el(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return bl(this,Mt(ol(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return mn(this,Mt(ol(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 ol(this)}},mode:{configurable:!0,get(){return el(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get(){throw new Error}}},hl=new WeakMap,pl={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return oe.call(ol(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return re.call(ol(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value(e){return te.call(ol(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value(e,t){return ie.call(ol(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,t,n){!function(e,t,n,l){k(n)&&Yn(ol(e),t,Kn(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value(e){return hl.set(e,this),_t.apply(ol(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value(e,t,n){!function(e,t,n,l){k(n)&&Vn(ol(e),t,Kn(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get(){return ol(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get(){return pn(Xt(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=ol(this);return this===e?0:this.contains(e)?20:le.call(t,e)&G?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value(e){if(this===e)return!0;const t=ol(this);return 0!=(le.call(t,e)&G)&&qt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get(){return Dn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get(){const e=Dn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value(){return Dn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get(){return be.call(ol(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 ol(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:()=>null},parentNode:{enumerable:!0,configurable:!0,get:()=>null},textContent:{enumerable:!0,configurable:!0,get(){const e=Dn(this);let t="";for(let n=0,l=e.length;n<l;n+=1){const l=e[n];l.nodeType!==Z&&(t+=sn(l))}return t},set(e){const t=ol(this);me.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value(e){return!D(e)&&I(e.composed)?ol(this).getRootNode(e):this}}};function gl(){throw new TypeError("Illegal constructor")}function ml(e,t){const n=[];let l;if(e instanceof Window)l=e;else{if(!(e instanceof j))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=!al(r)&&!Nt(r)||!t&&r===l?r instanceof j?r.parentNode:null:r.host;return o=e instanceof Window?e.document:Mt(e),n[n.length-1]===o&&n.push(window),n}
|
|
2
|
+
/**
|
|
3
|
+
@license
|
|
4
|
+
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
|
5
|
+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
6
|
+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
7
|
+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
8
|
+
Code distributed by Google as part of the polymer project is also
|
|
9
|
+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
10
|
+
*/function dl(e,t){if($(e))return null;const n=ml(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),!al(o)||!D(r)&&r>-1)return e;return null}function bl(e,t,n,l){const o=rt.call(t,n,l);return $(o)?o:dl(e,ml(o,!0))}e(sl,pl,{childElementCount:{enumerable:!0,configurable:!0,get(){return this.children.length}},children:{enumerable:!0,configurable:!0,get(){return En(m.call(Xt(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=ol(e);return Jt(n,Ht(Le.call(n,t)))}(this,e)}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value(e){return pn(function(e,t){const n=ol(e);return zt(n,Ht(Le.call(n,t)))}(this,e))}}},{innerHTML:{enumerable:!0,configurable:!0,get(){const e=Dn(this);let t="";for(let n=0,l=e.length;n<l;n+=1)t+=un(e[n]);return t},set(e){const t=ol(this);xe.call(t,e)}}},fl),gl.prototype=t(DocumentFragment.prototype,sl),l(gl,Symbol.hasInstance,{value:function(e){return x(e)&&!$(e)&&(Nt(e)||a(e)===gl.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return bl(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return mn(this,this,e,t)},l(Document.prototype,"activeElement",{get(){let e=ot.call(this);if($(e))return e;for(;!D(Bt(e));)if(e=ge.call(e),$(e))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),l(Document.prototype,"getElementById",{value(){const e=st.apply(this,M.call(arguments));return $(e)?null:D(Bt(e))||Ot(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"querySelector",{value(){const e=Ht(ut.apply(this,M.call(arguments))),t=d.call(e,(e=>D(Bt(e))||Ot(e)));return D(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"querySelectorAll",{value(){const e=Ht(ut.apply(this,M.call(arguments)));return pn(m.call(e,(e=>D(Bt(e))||Ot(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByClassName",{value(){const e=Ht(ft.apply(this,M.call(arguments)));return En(m.call(e,(e=>D(Bt(e))||Ot(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByTagName",{value(){const e=Ht(ht.apply(this,M.call(arguments)));return En(m.call(e,(e=>D(Bt(e))||Ot(e))))},writable:!0,enumerable:!0,configurable:!0}),l(Document.prototype,"getElementsByTagNameNS",{value(){const e=Ht(pt.apply(this,M.call(arguments)));return En(m.call(e,(e=>D(Bt(e))||Ot(e))))},writable:!0,enumerable:!0,configurable:!0}),l(r(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value(){const e=Ht(gt.apply(this,M.call(arguments)));return pn(m.call(e,(e=>D(Bt(e))||Ot(e))))},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:gl,configurable:!0,writable:!0});const El=Object.getOwnPropertyDescriptor(Event.prototype,"composed");const yl=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function wl(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:()=>!0})}(function(){if(!El)return!1;let e=new Event("click");const t=document.createElement("button");return t.addEventListener("click",(t=>e=t)),t.click(),!El.get.call(e)})()&&(HTMLElement.prototype.click=function(){Rt.call(this,"click",wl);try{yl.value.call(this)}finally{Pt.call(this,"click",wl)}}),!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 Tl=CustomEvent;function vl(e,t){const n=new Tl(e,t),l=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:()=>l,configurable:!0,enumerable:!0}}),n}if(vl.prototype=Tl.prototype,window.CustomEvent=vl,"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)||D(Bt(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 Nl=MutationObserver,{disconnect:Ll,observe:Ml,takeRecords:Cl}=Nl.prototype,Sl="$$lwcObserverCallbackWrapper$$",Ol=new WeakMap;function Hl(e){return e.$$lwcNodeObservers$$}function Al(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 Rl(e,t){let n=t;for(;!$(n);){const t=Hl(n);if(!D(t)&&(t[0]===e||-1!==b.call(t,e)))return!0;n=n.parentNode}return!1}function _l(e,t){return v.call(e,((e,n)=>{const{target:l,addedNodes:o,removedNodes:r,type:i}=n;if("childList"!==i||D(xt(l)))Rl(t,l)&&T.call(e,n);else if(o.length>0){const r=o[0];if(Rl(t,r)){const o=Hl(l);!o||o[0]!==t&&-1===b.call(o,t)?T.call(e,Al(n)):T.call(e,n)}}else{const o=l.shadowRoot,i=r[0];if(kt(l)===kt(i)&&Rl(t,l))T.call(e,n);else if(o){const l=Hl(o);!l||l[0]!==t&&-1===b.call(l,t)||T.call(e,Al(n))}}return e}),[])}function Pl(e){const t=function(e){let t=e[Sl];return D(t)&&(t=e[Sl]=(t,n)=>{const l=_l(t,n);0!==l.length&&e.call(n,l,n)}),t}(e);return new Nl(t)}function Dl(e,t,n){if(arguments.length>1){const e=M.call(arguments);return e[1]=kn(e[1]),mt.apply(this,e)}return mt.apply(this,arguments)}function $l(e,t,n){if(arguments.length>1){const e=M.call(arguments);e[1]=kn(e[1]),dt.apply(this,e)}dt.apply(this,arguments)}function Il(){const e=et.call(this);if(!(e instanceof j))return e;const t=Mt(e),n=ml(e,this.composed),l=tt.call(this);if(!(l instanceof j))return $(l)&&D(Bt(e))?e:dl(t,n);if(l===t||l===t.body)return D(Bt(e))?e:dl(t,n);let o=l,r=n;if(il(l)){1===xn.get(this)&&(o=rl(l))}return il(e)&&hl.has(this)&&(r=ml(rl(e),this.composed)),dl(o,r)}function Bl(){const e=et.call(this);if(!(e instanceof j))return[];const t=Boolean(e.shadowRoot),n=(l=e,Qn.has(l));var l;if(t&&!n)return lt.call(this);if($(tt.call(this)))return[];let o=e;return il(e)&&hl.has(this)&&(o=rl(e)),ml(o,this.composed)}function kl(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 j&&Ft(e)))return e;let n=tt.call(this);return $(n)&&(n=Mt(e)),dl(n,ml(e,!0))},enumerable:!0,configurable:!0})}Pl.prototype=Nl.prototype,Pl.prototype.disconnect=function(){Ll.call(this);const e=Ol.get(this);D(e)||(H.call(e,(e=>{const t=e.$$lwcNodeObservers$$;if(!D(t)){const e=b.call(t,this);-1!==e&&S.call(t,e,1)}})),e.length=0)},Pl.prototype.observe=function(e,t){let n=Hl(e);var l;if(D(n)&&(n=[],l=n,e.$$lwcNodeObservers$$=l),-1===b.call(n,this)&&T.call(n,this),al(e)&&(e=e.host),Ol.has(this)){const t=Ol.get(this);-1===b.call(t,e)&&T.call(t,e)}else Ol.set(this,[e]);return Ml.call(this,e,t)},Pl.prototype.takeRecords=function(){return _l(Cl.call(this),this)},l(window,"MutationObserver",{value:Pl,configurable:!0,writable:!0}),n(At,{addEventListener:{value:function(e,t,n){if(il(this))return zn.apply(this,arguments);if(arguments.length<2){const e=M.call(arguments);return e.length>1&&(e[1]=kn(e[1])),Rt.apply(this,e)}const l=kn(t);return Rt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(il(this))return Jn.apply(this,arguments);const l=M.call(arguments);arguments.length>1&&(l[1]=kn(l[1])),Pt.apply(this,l),Pt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&n(Window.prototype,{addEventListener:{value:Dl,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:$l,enumerable:!0,writable:!0,configurable:!0}}),n(Event.prototype,{target:{get:Il,enumerable:!0,configurable:!0},currentTarget:{get:function(){const e=tt.call(this);return $(e)?null:1===xn.get(this)?rl(e):e},enumerable:!0,configurable:!0},composedPath:{value:Bl,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Il,enumerable:!0,configurable:!0},path:{get:Bl,enumerable:!0,configurable:!0}}),kl(FocusEvent),kl(MouseEvent);const xl=c.call(Text.prototype,"assignedSlot")?r(Text.prototype,"assignedSlot").get:()=>null;let Fl;const Wl={childList:!0},Ul=new WeakMap;function jl(e){const t=Ht(de.call(e));return v.call(t,((e,t)=>(t instanceof Element&&Gt(t)?T.apply(e,jl(t)):T.call(e,t),e)),[])}function Kl(){const e=he.call(this);if(e instanceof Element){const t=ze.call(e);if(Nt(t))return this instanceof Text?xl.call(this):Je.call(this)}return!$(e)&&Gt(e)&&Bt(e)!==Bt(this)?e:null}function Gl(e,t){let n;const l=Bt(e);if(D(l))n=e instanceof HTMLBodyElement?m.call(t,(t=>D(Bt(t))||Ot(e))):M.call(t);else if(il(e)){const l=jt(e);n=$(l)?[]:xt(e)?Yt(e,t):zt(l,t)}else n=m.call(t,(e=>kt(e)===l));return n}function ql(){const e=Dn(this);let t="";for(let n=0,l=e.length;n<l;n+=1)t+=un(e[n]);return t}function Xl(){return un(this)}function Yl(){const e=jt(this),t=$(e)?[]:zt(e,Qt(this));return En(m.call(t,(e=>e instanceof Element)))}function Vl(){return this.children.length}function zl(){return this.children[0]||null}function Jl(){const{children:e}=this;return e.item(e.length-1)||null}function Ql(e,t,n){let l;if(il(e)){const n=jt(e);l=$(n)?[]:xt(e)?Yt(e,t):zt(n,t)}else if(Ft(e)){const o=Bt(e);if(D(o))if(1===n){const n=kt(e);l=m.call(t,(e=>kt(e)===n))}else l=M.call(t);else l=m.call(t,(e=>kt(e)===o))}else l=e instanceof HTMLBodyElement||1===n?m.call(t,(t=>D(Bt(t))||Ot(e))):M.call(t);return l}function Zl(e){const t=Ct(e);return bt.call(t,e)}function eo(e){const t=Ct(e);return Et.call(t)}function to(e){return"visible"===e.visibility&&"none"!==e.display}n(HTMLSlotElement.prototype,{addEventListener:{value(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Ul.get(this)||(Ul.set(this,!0),Fl||(Fl=new yt((e=>{const t=[];H.call(e,(e=>{const{target:n}=e;-1===b.call(t,n)&&(T.call(t,n),_t.call(n,new CustomEvent("slotchange")))}))}))),wt.call(Fl,this,Wl))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value(e){if(Ft(this)){const t=!D(e)&&I(e.flatten)?jl(this):Zt(this);return m.call(t,(e=>e instanceof Element))}return Ze.apply(this,M.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value(e){if(Ft(this)){return!D(e)&&I(e.flatten)?jl(this):Zt(this)}return Qe.apply(this,M.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get(){const e=Ee.call(this,"name");return $(e)?"":e},set(e){Ce.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get(){if(Ft(this)){const e=jt(this);return pn($(e)?[]:zt(e,Qt(this)))}return de.call(this)},enumerable:!0,configurable:!0}}),n(Text.prototype,{assignedSlot:{get:Kl,enumerable:!0,configurable:!0}}),n(Element.prototype,{innerHTML:{get(){return yn.ENABLE_ELEMENT_PATCH?Ot(this)?ke.call(this):ql.call(this):Ft(this)||il(this)?ql.call(this):ke.call(this)},set(e){xe.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get(){return yn.ENABLE_ELEMENT_PATCH?Ot(this)?We.call(this):Xl.call(this):Ft(this)||il(this)?Xl.call(this):We.call(this)},set(e){Ue.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?ul(this,e):Se.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(il(this)){const e=rl(this);if("open"===e.mode)return e}return ze.call(this)},enumerable:!0,configurable:!0},children:{get(){return wn(this)?Yl.call(this):Ye.call(this)},enumerable:!0,configurable:!0},childElementCount:{get(){return wn(this)?Vl.call(this):Oe.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get(){return wn(this)?zl.call(this):He.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get(){return wn(this)?Jl.call(this):Ae.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=Ht(Le.apply(this,M.call(arguments)));if(il(this)){const t=jt(this);return $(t)?null:xt(this)?Vt(this,e):Jt(t,e)}if(Ft(this)){const t=Bt(this);if(D(t)){if(!yn.ENABLE_NODE_LIST_PATCH)return 0===e.length?null:e[0];const t=kt(this),n=d.call(e,(e=>kt(e)===t));return D(n)?null:n}{const n=d.call(e,(e=>kt(e)===t));return D(n)?null:n}}{if(!(yn.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){const t=e[0];return D(t)?null:t}const t=d.call(e,(e=>D(Bt(e))||Ot(this)));return D(t)?null:t}},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value(){const e=Ht(Le.apply(this,M.call(arguments)));if(!yn.ENABLE_NODE_LIST_PATCH){return pn(Ql(this,e,0))}return pn(Ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),n(Element.prototype,{getElementsByClassName:{value(){const e=Ht(Ve.apply(this,M.call(arguments)));if(!yn.ENABLE_HTML_COLLECTIONS_PATCH)return En(Gl(this,e));return En(Ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value(){const e=Ht(we.apply(this,M.call(arguments)));if(!yn.ENABLE_HTML_COLLECTIONS_PATCH)return En(Gl(this,e));return En(Ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value(){const e=Ht(Te.apply(this,M.call(arguments)));if(!yn.ENABLE_HTML_COLLECTIONS_PATCH)return En(Gl(this,e));return En(Ql(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),c.call(HTMLElement.prototype,"getElementsByClassName")&&l(HTMLElement.prototype,"getElementsByClassName",r(Element.prototype,"getElementsByClassName"));function no(e){const t=[];if((e=>e.nodeType===V)(e)){const{tagName:n}=e,l=Zl(e);if("OPTION"===n)return[1,_e.call(e),1];if("TEXTAREA"===n)return[];{const n=e.childNodes;for(let e=0,l=n.length;e<l;e++)T.apply(t,no(n[e]))}if(!to(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===z)(e)&&t.push(function(e){const t=eo(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 lo(e){if(!to(Zl(e)))return sn(e)||"";const t=function(e){const t=Ct(e),n=eo(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++)T.apply(n,no(l[e]));!function(e){if(null===e)return;const{element:t,onselect:n,onselectstart:l,onselectionchange:o,ranges:r}=e,i=Ct(t),a=eo(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 oo="\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",ro=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function io(e){return e.filter((e=>ve.call(e,"tabindex")?"0"===Ee.call(e,"tabindex"):!ro.has(je.call(e))||!ve.call(e,"disabled")))}const ao=new WeakMap;function co(e){return(!il(e)||!ll(e))&&(Xe.call(e,oo)&&function(e){const{width:t,height:n}=ye.call(e),l=t>0||n>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function uo(){const e=this.getRootNode();if(e===this){const e=Ne.call(this,oo);return void($(e)||e.focus.apply(e,arguments))}const t=e;if(t.activeElement===this)return;const n=Ht(Le.call(this,oo));let l=!1;for(;!l&&0!==n.length;){const e=n.shift();e.focus.apply(e,arguments);l=e.getRootNode().activeElement===e}}function so(e){const t=Mt(e),n=io(Ht(ut.call(t,oo))),l=io(Ht(Le.call(e,oo))),o=l[0],r=l[l.length-1],i=b.call(n,e),a=i>-1?i:b.call(n,o),c=0===l.length?a+1:b.call(n,r)+1;return{prev:M.call(n,0,a),inner:l,next:M.call(n,c)}}function fo(e,t){const n=le.call(e,t);return n&G?0:n&X?1:n&Y?2:-1}function ho(e){e.preventDefault(),e.stopPropagation()}function po(e,t){mt.call(e,"focusin",ho,!0),mt.call(e,"focusout",ho,!0),t(),dt.call(e,"focusin",ho,!0),dt.call(e,"focusout",ho,!0)}function go(e,t,n){const l=Ct(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(vo(t.getRootNode(),n))return n}return null}(e,n);$(o)?po(l,(()=>{t.blur()})):po(l,(()=>{o.focus()}))}let mo=!1;function bo(){mo=!0}function Eo(){mo=!1}function yo(){return!mo}function wo(e){if(mo)return;const t=tt.call(e),n=et.call(e);if(t!==n)return;const l=nt.call(e);if($(l))return;const o=so(t);if(1===fo(t,l)){const e=vo.bind(null,t.getRootNode()),r=d.call(o.inner,e);if(D(r))go(o.next,n,l);else{po(Ct(r),(()=>{r.focus()}))}}else t===n&&go(N.call(o.prev),n,l)}function To(e){if(mo)return;const t=nt.call(e);if($(t))return;const n=tt.call(e),l=so(n);if(-1!==b.call(l.inner,t))return;const o=et.call(e),r=fo(n,t);1===r&&go(l.next,o,t),2===r&&go(N.call(l.prev),o,t)}function vo(e,t){if(!co(t))return!1;const n=Mt(t);let l=t.getRootNode();for(;l!==n&&l!==e;){const e=l.host;if("-1"===Ee.call(e,"tabindex"))return!1;l=e&&e.getRootNode()}return!0}function No(e){Pt.call(e,"focusin",wo,!0)}function Lo(e){const t=Mt(e);ao.get(t)||(ao.set(t,!0),Rt.call(t,"mousedown",bo,!0),Rt.call(t,"mouseup",(()=>{setTimeout(Eo)}),!0),Rt.call(t,"dragstart",Eo,!0))}function Mo(e){Pt.call(e,"focusin",To,!0)}const{blur:Co,focus:So}=HTMLElement.prototype;function Oo(){return ll(this)&&B(ve.call(this,"tabindex"))?0:Ge.call(this)}function Ho(e){const t=ll(this),n=Ge.call(this),l=ve.call(this,"tabindex");qe.call(this,e);const o=Ge.call(this),r=ve.call(this,"tabindex"),i=n!==o;var a;(l&&(i||B(r))&&(-1===n&&Mo(this),0===n&&t&&No(this)),B(r))||(l&&r&&B(i)||(-1===o&&(Lo(a=this),No(a),Rt.call(a,"focusin",To,!0)),0===o&&t&&function(e){Lo(e),Mo(e),Rt.call(e,"focusin",wo,!0)}(this)))}function Ao(){if(ll(this)){const e=function(e){const t=Mt(e),n=ot.call(t);return $(n)||0!=(le.call(e,n)&G)?n:null}(this);if(!$(e))return void e.blur()}return Co.call(this)}function Ro(){const e=yo();e&&bo(),il(this)&&ll(this)?uo.call(this):(So.apply(this,arguments),e&&Eo())}n(HTMLElement.prototype,{tabIndex:{get(){return il(this)?Oo.call(this):Ge.call(this)},set(e){return il(this)?Ho.call(this,e):qe.call(this,e)},enumerable:!0,configurable:!0},blur:{value(){if(il(this))return Ao.call(this);Co.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value(){Ro.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==_e&&null!==Pe&&l(HTMLElement.prototype,"innerText",{get(){return yn.ENABLE_INNER_OUTER_TEXT_PATCH?yn.ENABLE_ELEMENT_PATCH?Ot(this)?_e.call(this):lo(this):Ft(this)||il(this)?lo(this):_e.call(this):_e.call(this)},set(e){Pe.call(this,e)},enumerable:!0,configurable:!0}),null!==$e&&null!==Ie&&l(HTMLElement.prototype,"outerText",{get(){return yn.ENABLE_INNER_OUTER_TEXT_PATCH?yn.ENABLE_ELEMENT_PATCH?Ot(this)?$e.call(this):lo(this):Ft(this)||il(this)?lo(this):$e.call(this):$e.call(this)},set(e){Ie.call(this,e)},enumerable:!0,configurable:!0}),l(Element.prototype,U,{set(e){const t=this.$$ShadowTokenKey$$;D(t)||t===e||Me.call(this,t),D(e)||Ce.call(this,e,""),this.$$ShadowTokenKey$$=e},get(){return this.$$ShadowTokenKey$$},configurable:!0});const _o=function(){};let Po;const Do={childList:!0};function $o(e,t,n){const l=tl(e);if(l!==t&&(nl(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),il(e))return;D(l)&&wt.call(Po,e,Do);const o=de.call(e);for(let e=0,l=o.length;e<l;e+=1)$o(o[e],t,n)}}function Io(e){if(D(Po)&&(Po=new yt((e=>{H.call(e,(e=>{const{target:t,addedNodes:n,removedNodes:l}=e,o=tl(t),r=t.$shadowToken$;for(let e=0,n=l.length;e<n;e+=1){const n=l[e];le.call(t,n)&j.DOCUMENT_POSITION_CONTAINED_BY||$o(n,_o,void 0)}for(let e=0,l=n.length;e<l;e+=1){const l=n[e];le.call(t,l)&j.DOCUMENT_POSITION_CONTAINED_BY&&$o(l,o,r)}}))}))),D(tl(e)))throw new Error("Invalid Element");wt.call(Po,e,Do)}l(Element.prototype,"$domManual$",{set(e){this.$$DomManualKey$$=e,I(e)&&Io(this)},get(){return this.$$DomManualKey$$},configurable:!0})}));
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
13
13
|
*/
|
|
14
14
|
const { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;
|
|
15
|
-
const { filter: ArrayFilter, find: ArrayFind, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, slice: ArraySlice, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;
|
|
15
|
+
const { copyWithin: ArrayCopyWithin, fill: ArrayFill, filter: ArrayFilter, find: ArrayFind, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, pop: ArrayPop, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, shift: ArrayShift, slice: ArraySlice, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;
|
|
16
16
|
const { charCodeAt: StringCharCodeAt, replace: StringReplace, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;
|
|
17
17
|
function isUndefined(obj) {
|
|
18
18
|
return obj === undefined;
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
const KEY__SHADOW_TOKEN = '$shadowToken$';
|
|
88
88
|
const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
|
|
89
89
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
90
|
-
/** version: 2.13.
|
|
90
|
+
/** version: 2.13.4 */
|
|
91
91
|
|
|
92
92
|
/*
|
|
93
93
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1049,7 +1049,7 @@
|
|
|
1049
1049
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
1050
1050
|
}
|
|
1051
1051
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1052
|
-
/** version: 2.13.
|
|
1052
|
+
/** version: 2.13.4 */
|
|
1053
1053
|
|
|
1054
1054
|
/*
|
|
1055
1055
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4893,6 +4893,6 @@
|
|
|
4893
4893
|
},
|
|
4894
4894
|
configurable: true,
|
|
4895
4895
|
});
|
|
4896
|
-
/** version: 2.13.
|
|
4896
|
+
/** version: 2.13.4 */
|
|
4897
4897
|
|
|
4898
4898
|
}));
|