lwc 2.34.0 → 2.35.1

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.
Files changed (39) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +939 -763
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +939 -762
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +846 -684
  5. package/dist/engine-dom/iife/es5/engine-dom.js +1115 -922
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +801 -619
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +939 -762
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +846 -684
  11. package/dist/engine-dom/umd/es5/engine-dom.js +1115 -922
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +801 -619
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +1025 -1082
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +1025 -1082
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +21 -41
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +21 -41
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +20 -39
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +24 -38
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +23 -36
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +21 -41
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +20 -39
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +24 -38
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +23 -36
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  34. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  35. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  36. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  37. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  38. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  39. package/package.json +7 -7
@@ -116,39 +116,11 @@
116
116
  * SPDX-License-Identifier: MIT
117
117
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
118
118
  */
119
- // Inspired from: https://mathiasbynens.be/notes/globalthis
120
- var _globalThis = /*@__PURE__*/function () {
121
- // On recent browsers, `globalThis` is already defined. In this case return it directly.
122
- if ((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object') {
123
- return globalThis;
124
- }
125
- var _globalThis;
126
- try {
127
- // eslint-disable-next-line no-extend-native
128
- Object.defineProperty(Object.prototype, '__magic__', {
129
- get: function get() {
130
- return this;
131
- },
132
- configurable: true
133
- });
134
- // __magic__ is undefined in Safari 10 and IE10 and older.
135
- // @ts-ignore
136
- // eslint-disable-next-line no-undef
137
- _globalThis = __magic__;
138
- // @ts-ignore
139
- delete Object.prototype.__magic__;
140
- } catch (ex) {
141
- // In IE8, Object.defineProperty only works on DOM objects.
142
- } finally {
143
- // If the magic above fails for some reason we assume that we are in a legacy browser.
144
- // Assume `window` exists in this case.
145
- if (typeof _globalThis === 'undefined') {
146
- // @ts-ignore
147
- _globalThis = window;
148
- }
149
- }
150
- return _globalThis;
151
- }();
119
+ // See browser support for globalThis:
120
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility
121
+ /* istanbul ignore next */
122
+ // @ts-ignore
123
+ var _globalThis = (typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object' ? globalThis : window;
152
124
 
153
125
  /*
154
126
  * Copyright (c) 2018, salesforce.com, inc.
@@ -164,6 +136,8 @@
164
136
  var KEY__SHADOW_TOKEN = '$shadowToken$';
165
137
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
166
138
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
139
+ var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
140
+ var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
167
141
 
168
142
  /*
169
143
  * Copyright (c) 2018, salesforce.com, inc.
@@ -176,7 +150,7 @@
176
150
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
177
151
  return Symbol('x').toString() === 'Symbol(x)';
178
152
  }();
179
- /** version: 2.34.0 */
153
+ /** version: 2.35.1 */
180
154
 
181
155
  /*
182
156
  * Copyright (c) 2018, salesforce.com, inc.
@@ -492,7 +466,7 @@
492
466
  });
493
467
  }
494
468
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
495
- /** version: 2.34.0 */
469
+ /** version: 2.35.1 */
496
470
 
497
471
  /*
498
472
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1799,6 +1773,19 @@
1799
1773
  defineProperty(_globalThis, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, {
1800
1774
  value: isNativeShadowRootDefined
1801
1775
  });
1776
+ // The isUndefined check is because two copies of synthetic shadow may be loaded on the same page, and this
1777
+ // would throw an error if we tried to redefine it. Plus the whole point is to expose the native method.
1778
+ if (isUndefined(_globalThis[KEY__NATIVE_GET_ELEMENT_BY_ID])) {
1779
+ defineProperty(_globalThis, KEY__NATIVE_GET_ELEMENT_BY_ID, {
1780
+ value: getElementById
1781
+ });
1782
+ }
1783
+ // See note above.
1784
+ if (isUndefined(_globalThis[KEY__NATIVE_QUERY_SELECTOR_ALL])) {
1785
+ defineProperty(_globalThis, KEY__NATIVE_QUERY_SELECTOR_ALL, {
1786
+ value: querySelectorAll
1787
+ });
1788
+ }
1802
1789
  function getShadowRootResolver(node) {
1803
1790
  return node[KEY__SHADOW_RESOLVER];
1804
1791
  }
@@ -4675,8 +4662,7 @@
4675
4662
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
4676
4663
  */
4677
4664
  // Only used in LWC's Karma tests
4678
- // @ts-ignore
4679
- if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
4665
+ if (process.env.NODE_ENV === 'test-karma-lwc') {
4680
4666
  window.addEventListener('test-dummy-flag', function () {
4681
4667
  var hasFlag = false;
4682
4668
  if (lwcRuntimeFlags.DUMMY_TEST_FLAG) {
@@ -4690,6 +4676,6 @@
4690
4676
  }));
4691
4677
  });
4692
4678
  }
4693
- /** version: 2.34.0 */
4679
+ /** version: 2.35.1 */
4694
4680
 
4695
4681
  })();
@@ -1,4 +1,4 @@
1
- !function(){"use strict";var e,t;function n(e,t,n){return(t=o(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,o(r.key),r)}}function l(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function o(e){var t=function(e,t){if("object"!==a(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===a(t)?t:String(t)}function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}var i=Object.assign,u=Object.create,c=Object.defineProperties,s=Object.defineProperty,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,h=Object.hasOwnProperty,g=Object.setPrototypeOf,m=Array.prototype,b=m.filter,v=m.find,d=m.indexOf,y=m.map,E=m.push,w=m.reduce,T=m.reverse,N=m.slice,L=m.splice,M=m.forEach,S=String.prototype.charCodeAt;function C(e){return void 0===e}function O(e){return null===e}function H(e){return!0===e}function R(e){return!1===e}function P(e){return"function"==typeof e}function D(e){return"object"===a(e)}var I,A,_=function(){if("object"===("undefined"==typeof globalThis?"undefined":a(globalThis)))return globalThis;var e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),B="$shadowResolver$",$="$$ShadowResolverKey$$",x="$shadowStaticNodeKey$",k="$shadowToken$",F="$$ShadowTokenKey$$",j=Node,W=j.prototype,U=j.DOCUMENT_POSITION_CONTAINED_BY,G=j.DOCUMENT_POSITION_PRECEDING,K=j.DOCUMENT_POSITION_FOLLOWING,q=j.ELEMENT_NODE,Y=j.TEXT_NODE,X=j.CDATA_SECTION_NODE,V=j.PROCESSING_INSTRUCTION_NODE,z=j.COMMENT_NODE,J=W.appendChild,Q=W.cloneNode,Z=W.compareDocumentPosition,ee=W.insertBefore,te=W.removeChild,ne=W.replaceChild,re=W.hasChildNodes,le=HTMLElement.prototype.contains,oe=f(W,"firstChild").get,ae=f(W,"lastChild").get,ie=f(W,"textContent").get,ue=f(W,"parentNode").get,ce=f(W,"ownerDocument").get,se=h.call(W,"parentElement")?f(W,"parentElement").get:f(HTMLElement.prototype,"parentElement").get,fe=f(W,"textContent").set,pe=h.call(W,"childNodes")?f(W,"childNodes").get:f(HTMLElement.prototype,"childNodes").get,he=h.call(W,"isConnected")?f(W,"isConnected").get:function(){var e=ce.call(this);return null===e||0!=(Z.call(e,this)&U)},ge=Element.prototype,me=ge.getAttribute,be=ge.getBoundingClientRect,ve=ge.getElementsByTagName,de=ge.getElementsByTagNameNS,ye=ge.hasAttribute,Ee=ge.querySelector,we=ge.querySelectorAll,Te=ge.removeAttribute,Ne=ge.setAttribute,Le=h.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Me=f(Element.prototype,"childElementCount").get,Se=f(Element.prototype,"firstElementChild").get,Ce=f(Element.prototype,"lastElementChild").get,Oe=f(HTMLElement.prototype,"innerText"),He=Oe?Oe.get:null,Re=Oe?Oe.set:null,Pe=f(HTMLElement.prototype,"outerText"),De=Pe?Pe.get:null,Ie=Pe?Pe.set:null,Ae=h.call(Element.prototype,"innerHTML")?f(Element.prototype,"innerHTML"):f(HTMLElement.prototype,"innerHTML"),_e=Ae.get,Be=Ae.set,$e=h.call(Element.prototype,"outerHTML")?f(Element.prototype,"outerHTML"):f(HTMLElement.prototype,"outerHTML"),xe=$e.get,ke=$e.set,Fe=f(Element.prototype,"tagName").get,je=f(HTMLElement.prototype,"tabIndex"),We=je.get,Ue=je.set,Ge=h.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,Ke=h.call(Element.prototype,"children")?f(Element.prototype,"children").get:f(HTMLElement.prototype,"children").get,qe=HTMLElement.prototype.getElementsByClassName,Ye=h.call(Element.prototype,"shadowRoot")?f(Element.prototype,"shadowRoot").get:function(){return null},Xe=h.call(Element.prototype,"assignedSlot")?f(Element.prototype,"assignedSlot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(I=HTMLSlotElement.prototype.assignedNodes,A=HTMLSlotElement.prototype.assignedElements):(I=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},A=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var Ve=f(Event.prototype,"target").get,ze=f(Event.prototype,"currentTarget").get,Je=f(FocusEvent.prototype,"relatedTarget").get,Qe=h.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},Ze=f(Document.prototype,"activeElement").get,et=h.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,tt=h.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,nt=f(Document.prototype,"defaultView").get,rt=Document.prototype,lt=rt.querySelectorAll,ot=rt.getElementById,at=rt.getElementsByClassName,it=rt.getElementsByTagName,ut=rt.getElementsByTagNameNS,ct=HTMLDocument.prototype.getElementsByName,st=window,ft=st.addEventListener,pt=st.removeEventListener,ht=MutationObserver,gt=ht.prototype.observe,mt=null;"undefined"!=typeof ShadowRoot&&(mt=ShadowRoot);var bt=!O(mt),vt=O(mt)?function(){return!1}:function(e){return e instanceof mt};var dt,yt=Document.prototype.createElement;function Et(e){var t=ce.call(e);return null===t?e:t}function wt(e){var t=Et(e),n=nt.call(t);if(null===n)throw new TypeError;return n}function Tt(e){if(C(dt)){var t=Et(e);dt=t.body&&"temporary-bypass"===me.call(t.body,"data-global-patching-bypass")}return H(dt)}function Nt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=l((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));g(e,HTMLElement.constructor),g(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,s(Document.prototype,"createElement",{value:function(t,n){var r=yt.apply(this,N.call(arguments));return 4===t.length&&115===S.call(t,0)&&108===S.call(t,1)&&111===S.call(t,2)&&116===S.call(t,3)&&g(r,e.prototype),r}})}();var Lt="undefined"!=typeof EventTarget?EventTarget.prototype:j.prototype,Mt=Lt.addEventListener,St=Lt.dispatchEvent,Ct=Lt.removeEventListener;_.lwcRuntimeFlags||Object.defineProperty(_,"lwcRuntimeFlags",{value:u(null)});var Ot=_.lwcRuntimeFlags,Ht="$$HostElementKey$$",Rt="$$ShadowedNodeKey$$";function Pt(e,t,n){var r=e,l=n.value;r[t]=l}function Dt(e){return e[Ht]}function It(e){for(var t,n=e;!O(n);){if(!C(t=Dt(n)))return t;if(n=ue.call(n),Ot.ENABLE_LIGHT_GET_ROOT_NODE_PATCH&&!O(n)&&kt(n))return}}function At(e){return e[Rt]}function _t(e){return!C(Dt(e))}function Bt(e){for(var t=se.call(e);!O(t)&&Ft(t);)e=t,t=se.call(e);return e}function $t(e,t){for(var n=At(e),r=t instanceof Element?t:se.call(t);!O(r)&&r!==e;){var l=It(r),o=se.call(r);if(l===n)return Ft(r);if(o===e)return!1;if(O(o)||It(o)===l)r=o;else{if(!Ft(o))return!1;if(!O(r=xt(Bt(o)))){if(r===e)return!0;if(It(r)===n)return!0}}}return!1}function xt(e){if(!(e instanceof j))return null;var t=It(e);if(C(t))return null;for(var n=e;!O(n)&&At(n)!==t;)n=ue.call(n);return O(n)?null:n}function kt(e){return Ft(e)&&_t(e)}function Ft(e){return e instanceof HTMLSlotElement}function jt(e,t){var n=It(t);if(C(n)){if(Ot.ENABLE_LIGHT_GET_ROOT_NODE_PATCH){var r=ue.call(t);if(!O(r)&&kt(r))return!1}return!0}return At(e)===n}function Wt(e){var t=Zn(e);return Kt(t,Nt(pe.call(t)))}function Ut(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!jt(e,o)&&$t(e,o)&&E.call(n,o)}return n}function Gt(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!jt(e,l)&&$t(e,l))return l}return null}function Kt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];jt(e,o)&&E.call(n,o)}return n}function qt(e,t){for(var n=0,r=t.length;n<r;n+=1)if(jt(e,t[n]))return t[n];return null}function Yt(e){if(!tr(e)&&!Ft(e))return Nt(pe.call(e));if(tr(e)){var t=Nt(we.call(e,"slot")),n=zn(er(e));return w.call(t,(function(e,t){return n===zn(t)&&E.apply(e,Xt(t)),e}),[])}var r=Nt(pe.call(e)),l=zn(e);return b.call(r,(function(e){return l===zn(e)}))}function Xt(e){var t=xt(e);if(O(t))return[];var n=Nt(pe.call(e));return b.call(n,(function(e){return!_t(e)||!jt(t,e)}))}var Vt=/[&\u00A0"]/g,zt=/[&\u00A0<>]/g,Jt=String.prototype,Qt=Jt.replace,Zt=Jt.toLowerCase;function en(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function tn(e){return Qt.call(e,Vt,en)}var nn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),rn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function ln(e){switch(e.nodeType){case q:for(var t,n=e.attributes,r=Fe.call(e),l="<"+Zt.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+tn(t.value)+'"';return l+=">",nn.has(r)?l:l+function(e){for(var t="",n=Yt(e),r=0,l=n.length;r<l;r+=1)t+=ln(n[r]);return t}(e)+"</"+Zt.call(r)+">";case Y:var a=e.data,i=e.parentNode;return i instanceof Element&&rn.has(Fe.call(i))?a:function(e){return Qt.call(e,zt,en)}(a);case X:return"<!CDATA[[".concat(e.data,"]]>");case V:return"<?".concat(e.target," ").concat(e.data,"?>");case z:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function on(e){if(e.nodeType===q){for(var t=Yt(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==z&&(n+=on(o))}return n}return e.nodeValue}var an=new WeakMap;function un(){throw new TypeError("Illegal constructor")}function cn(e){var t=u(un.prototype);return an.set(t,e),M.call(e,(function(e,n){s(t,n,{value:e,enumerable:!0,configurable:!0})})),t}un.prototype=u(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:un},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return an.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){M.call(an.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return y.call(an.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return y.call(an.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return an.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=an.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),g(un,NodeList);var sn=function(e,t){for(var n;!C(n=e.host);){var r=n.getRootNode();if(r===t)return n;e=r}};function fn(e,t,n,r){var l=tt.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!C(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!O(l))for(var i=0;i<l.length;i++){var u=l[i];if(!kt(u)){var c=u.getRootNode();if(-1===d.call(a,c)){var s=sn(c,a[0]);C(s)||-1!==d.call(l,s)||-1!==d.call(o,s)||E.call(o,s)}else E.call(o,u)}}return o}var pn=new WeakMap;function hn(){throw new TypeError("Illegal constructor")}function gn(e){var t=u(hn.prototype);return pn.set(t,e),M.call(e,(function(e,n){s(t,n,{value:e,enumerable:!0,configurable:!0})})),t}function mn(e){return kt(e)||tr(e)}function bn(e,t){var n=xt(e);if(t===n)return er(n);if(t instanceof Element){if(It(e)===It(t))return t;if(!O(n)&&Ft(t)){var r=xt(t);if(!O(r)&&jt(n,r))return r}}return null}function vn(){return Hn(this).length>0}function dn(){return Hn(this)[0]||null}function yn(){var e=Hn(this);return e[e.length-1]||null}function En(){return on(this)}function wn(){var e=ue.call(this);return O(e)?e:bn(this,e)}function Tn(){var e=ue.call(this);if(O(e))return null;var t=bn(this,e);return t instanceof Element?t:null}function Nn(e){return this===e?0:this.getRootNode()===e?10:Dt(this)!==Dt(e)?35:Z.call(this,e)}function Ln(e){return null!=e&&Dt(this)===Dt(e)&&0!=(Z.call(this,e)&U)}function Mn(e){var t=Q.call(this,!1);if(!e)return t;for(var n=Hn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function Sn(){if(tr(this)){var e=xt(this);return cn(O(e)?[]:Kt(e,Yt(this)))}return pe.call(this)}hn.prototype=u(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:hn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return pn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=pn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===me.call(l,"id")||e===me.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),g(hn,HTMLCollection);var Cn=j.prototype.getRootNode,On=C(Cn)?function(){for(var e,t=this;!O(e=ue.call(t));)t=e;return t}:Cn;c(j.prototype,{firstChild:{get:function(){return mn(this)?dn.call(this):oe.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return mn(this)?yn.call(this):ae.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return _t(this)||tr(this)?En.call(this):ie.call(this)},set:function(e){fe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(_t(this))return wn.call(this);var e=ue.call(this);return!O(e)&&kt(e)?xt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(_t(this))return Tn.call(this);var e=se.call(this);return!O(e)&&kt(e)?xt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return mn(this)?Sn.call(this):pe.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return mn(this)?vn.call(this):re.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return Tt(this)?Z.call(this,e):Nn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||null!=e&&(_t(this)||tr(this)?Ln.call(this,e):le.call(this,e))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return _t(this)||tr(this)?Mn.call(this,e):Q.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return H(!C(e)&&!!e.composed)?On.call(this,e):O(n=xt(t=this))?On.call(t):er(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return he.call(this)}}});var Hn=function(e){return e.childNodes};h.call(HTMLElement.prototype,"contains")&&s(HTMLElement.prototype,"contains",f(j.prototype,"contains")),h.call(HTMLElement.prototype,"parentElement")&&s(HTMLElement.prototype,"parentElement",f(j.prototype,"parentElement"));var Rn=new WeakMap,Pn=new WeakMap;function Dn(e,t,n){if(t===n)return!0;var r=Pn.get(e);return C(r)&&(r=e.composedPath(),Pn.set(e,r)),r.includes(n)}function In(e){if(!function(e){return P(e)||D(e)&&!O(e)&&P(e.handleEvent)}(e))return e;var t=Rn.get(e);return C(t)&&(t=function(t){var n=ze.call(t);if(Dn(t,$n(t),n))return P(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Rn.set(e,t)),t}var An=new WeakMap,_n=new WeakMap;function Bn(e){var t=_n.get(e);return C(t)&&(t=u(null),_n.set(e,t)),t}function $n(e){var t;return null!==(t=ir.get(e))&&void 0!==t?t:Ve.call(e)}var xn=new WeakMap;function kn(e){if(!P(e))throw new TypeError;var t=xn.get(e);return C(t)&&((t=function(t){var n=ze.call(t);vt(n)||(n=er(n)),Dn(t,$n(t),n)&&e.call(n,t)}).placement=1,xn.set(e,t)),t}var Fn=new WeakMap;function jn(e){if(!P(e))throw new TypeError;var t=Fn.get(e);return C(t)&&((t=function(t){var n=ze.call(t);Dn(t,$n(t),n)&&e.call(n,t)}).placement=0,Fn.set(e,t)),t}function Wn(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Bn(ze.call(e))[r];s(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),s(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var i=N.call(a);function u(n){M.call(i,(function(r){R(t)&&r.placement===n&&-1!==d.call(a,r)&&r.call(void 0,e)}))}An.set(e,1),u(1),R(t)&&R(n)&&(An.set(e,0),u(0)),An.set(e,2)}function Un(e,t,n){var r=Bn(e),l=r[t];C(l)&&(l=r[t]=[]),-1===d.call(l,n)&&(0===l.length&&Mt.call(e,t,Wn),E.call(l,n))}function Gn(e,t,n){var r,l;C(l=Bn(e)[t])||-1===(r=d.call(l,n))||(L.call(l,r,1),0===l.length&&Ct.call(e,t,Wn))}function Kn(e,t,n){P(t)&&Un(this,e,jn(t))}function qn(e,t,n){P(t)&&Gn(this,e,jn(t))}var Yn=new WeakMap,Xn=document.createDocumentFragment;function Vn(e){var t=Yn.get(e);if(C(t))throw new TypeError;return t}function zn(e){return e[B]}function Jn(e,t){e[B]=t}function Qn(e){return Vn(e).delegatesFocus}function Zn(e){return Vn(e).host}function er(e){return Vn(e).shadowRoot}function tr(e){var t=Yn.get(e);return!C(t)&&e===t.host}function nr(e){var t=Yn.get(e);return!C(t)&&e===t.shadowRoot}s(j.prototype,B,{set:function(e){var t,n;C(e)||(this[$]=e,t=this,n=e.nodeKey,Pt(t,Ht,{value:n,configurable:!0}))},get:function(){return this[$]},configurable:!0,enumerable:!0}),s(_,"$isNativeShadowRootDefined$",{value:bt});var rr=0;function lr(e,t){if(Yn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=Et(e),o=Xn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Yn.set(o,a),Yn.set(e,a);var i=function(){return o},u=i.nodeKey=rr++;return Pt(e,Rt,{value:u}),Jn(o,i),g(o,cr.prototype),o}var or={constructor:{writable:!0,configurable:!0,value:cr},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},ar={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=Zn(this),t=Et(e),n=Ze.call(t);if(O(n))return n;if(0==(Z.call(e,n)&U))return null;for(var r=n;!jt(e,r);)r=se.call(r);return Ft(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return Vn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return pr(this,Et(Zn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return fn(this,Et(Zn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return Zn(this)}},mode:{configurable:!0,get:function(){return Vn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},ir=new WeakMap,ur={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ee.call(Zn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return te.call(Zn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return J.call(Zn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ne.call(Zn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){P(n)&&Un(Zn(e),t,kn(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return ir.set(e,this),St.apply(Zn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){P(n)&&Gn(Zn(e),t,kn(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return Zn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return cn(Wt(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=Zn(this);return this===e?0:this.contains(e)?20:Z.call(t,e)&U?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=Zn(this);return 0!=(Z.call(t,e)&U)&&jt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return Hn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=Hn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return Hn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return he.call(Zn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return Zn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=Hn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==z&&(t+=on(l))}return t},set:function(e){var t=Zn(this);fe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!C(e)&&H(e.composed)?Zn(this).getRootNode(e):this}}};function cr(){throw new TypeError("Illegal constructor")}function sr(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof j))return r;n=e.getRootNode()}for(var l,o=e;!O(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=O(a)?o.parentNode:a}else o=!nr(o)&&!vt(o)||!t&&o===n?o instanceof j?o.parentNode:null:o.host;return l=e instanceof Window?e.document:Et(e),r[r.length-1]===l&&r.push(window),r}
1
+ !function(){"use strict";var e,t;function n(e,t,n){return(t=o(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,o(r.key),r)}}function l(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function o(e){var t=function(e,t){if("object"!==a(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===a(t)?t:String(t)}function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}var i=Object.assign,u=Object.create,c=Object.defineProperties,s=Object.defineProperty,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,h=Object.hasOwnProperty,g=Object.setPrototypeOf,m=Array.prototype,v=m.filter,b=m.find,d=m.indexOf,y=m.map,E=m.push,w=m.reduce,T=m.reverse,N=m.slice,L=m.splice,M=m.forEach,S=String.prototype.charCodeAt;function C(e){return void 0===e}function O(e){return null===e}function H(e){return!0===e}function R(e){return!1===e}function D(e){return"function"==typeof e}function P(e){return"object"===a(e)}var I,A,B="object"===("undefined"==typeof globalThis?"undefined":a(globalThis))?globalThis:window,$="$shadowResolver$",_="$$ShadowResolverKey$$",x="$shadowStaticNodeKey$",k="$shadowToken$",F="$$ShadowTokenKey$$",j="$nativeGetElementById$",W="$nativeQuerySelectorAll$",G=Node,U=G.prototype,K=G.DOCUMENT_POSITION_CONTAINED_BY,q=G.DOCUMENT_POSITION_PRECEDING,Y=G.DOCUMENT_POSITION_FOLLOWING,X=G.ELEMENT_NODE,V=G.TEXT_NODE,Q=G.CDATA_SECTION_NODE,z=G.PROCESSING_INSTRUCTION_NODE,J=G.COMMENT_NODE,Z=U.appendChild,ee=U.cloneNode,te=U.compareDocumentPosition,ne=U.insertBefore,re=U.removeChild,le=U.replaceChild,oe=U.hasChildNodes,ae=HTMLElement.prototype.contains,ie=f(U,"firstChild").get,ue=f(U,"lastChild").get,ce=f(U,"textContent").get,se=f(U,"parentNode").get,fe=f(U,"ownerDocument").get,pe=h.call(U,"parentElement")?f(U,"parentElement").get:f(HTMLElement.prototype,"parentElement").get,he=f(U,"textContent").set,ge=h.call(U,"childNodes")?f(U,"childNodes").get:f(HTMLElement.prototype,"childNodes").get,me=h.call(U,"isConnected")?f(U,"isConnected").get:function(){var e=fe.call(this);return null===e||0!=(te.call(e,this)&K)},ve=Element.prototype,be=ve.getAttribute,de=ve.getBoundingClientRect,ye=ve.getElementsByTagName,Ee=ve.getElementsByTagNameNS,we=ve.hasAttribute,Te=ve.querySelector,Ne=ve.querySelectorAll,Le=ve.removeAttribute,Me=ve.setAttribute,Se=h.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ce=f(Element.prototype,"childElementCount").get,Oe=f(Element.prototype,"firstElementChild").get,He=f(Element.prototype,"lastElementChild").get,Re=f(HTMLElement.prototype,"innerText"),De=Re?Re.get:null,Pe=Re?Re.set:null,Ie=f(HTMLElement.prototype,"outerText"),Ae=Ie?Ie.get:null,Be=Ie?Ie.set:null,$e=h.call(Element.prototype,"innerHTML")?f(Element.prototype,"innerHTML"):f(HTMLElement.prototype,"innerHTML"),_e=$e.get,xe=$e.set,ke=h.call(Element.prototype,"outerHTML")?f(Element.prototype,"outerHTML"):f(HTMLElement.prototype,"outerHTML"),Fe=ke.get,je=ke.set,We=f(Element.prototype,"tagName").get,Ge=f(HTMLElement.prototype,"tabIndex"),Ue=Ge.get,Ke=Ge.set,qe=h.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,Ye=h.call(Element.prototype,"children")?f(Element.prototype,"children").get:f(HTMLElement.prototype,"children").get,Xe=HTMLElement.prototype.getElementsByClassName,Ve=h.call(Element.prototype,"shadowRoot")?f(Element.prototype,"shadowRoot").get:function(){return null},Qe=h.call(Element.prototype,"assignedSlot")?f(Element.prototype,"assignedSlot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(I=HTMLSlotElement.prototype.assignedNodes,A=HTMLSlotElement.prototype.assignedElements):(I=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},A=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var ze=f(Event.prototype,"target").get,Je=f(Event.prototype,"currentTarget").get,Ze=f(FocusEvent.prototype,"relatedTarget").get,et=h.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},tt=f(Document.prototype,"activeElement").get,nt=h.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,rt=h.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,lt=f(Document.prototype,"defaultView").get,ot=Document.prototype,at=ot.querySelectorAll,it=ot.getElementById,ut=ot.getElementsByClassName,ct=ot.getElementsByTagName,st=ot.getElementsByTagNameNS,ft=HTMLDocument.prototype.getElementsByName,pt=window,ht=pt.addEventListener,gt=pt.removeEventListener,mt=MutationObserver,vt=mt.prototype.observe,bt=null;"undefined"!=typeof ShadowRoot&&(bt=ShadowRoot);var dt=!O(bt),yt=O(bt)?function(){return!1}:function(e){return e instanceof bt};var Et,wt=Document.prototype.createElement;function Tt(e){var t=fe.call(e);return null===t?e:t}function Nt(e){var t=Tt(e),n=lt.call(t);if(null===n)throw new TypeError;return n}function Lt(e){if(C(Et)){var t=Tt(e);Et=t.body&&"temporary-bypass"===be.call(t.body,"data-global-patching-bypass")}return H(Et)}function Mt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=l((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));g(e,HTMLElement.constructor),g(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,s(Document.prototype,"createElement",{value:function(t,n){var r=wt.apply(this,N.call(arguments));return 4===t.length&&115===S.call(t,0)&&108===S.call(t,1)&&111===S.call(t,2)&&116===S.call(t,3)&&g(r,e.prototype),r}})}();var St="undefined"!=typeof EventTarget?EventTarget.prototype:G.prototype,Ct=St.addEventListener,Ot=St.dispatchEvent,Ht=St.removeEventListener;B.lwcRuntimeFlags||Object.defineProperty(B,"lwcRuntimeFlags",{value:u(null)});var Rt=B.lwcRuntimeFlags,Dt="$$HostElementKey$$",Pt="$$ShadowedNodeKey$$";function It(e,t,n){var r=e,l=n.value;r[t]=l}function At(e){return e[Dt]}function Bt(e){for(var t,n=e;!O(n);){if(!C(t=At(n)))return t;if(n=se.call(n),Rt.ENABLE_LIGHT_GET_ROOT_NODE_PATCH&&!O(n)&&jt(n))return}}function $t(e){return e[Pt]}function _t(e){return!C(At(e))}function xt(e){for(var t=pe.call(e);!O(t)&&Wt(t);)e=t,t=pe.call(e);return e}function kt(e,t){for(var n=$t(e),r=t instanceof Element?t:pe.call(t);!O(r)&&r!==e;){var l=Bt(r),o=pe.call(r);if(l===n)return Wt(r);if(o===e)return!1;if(O(o)||Bt(o)===l)r=o;else{if(!Wt(o))return!1;if(!O(r=Ft(xt(o)))){if(r===e)return!0;if(Bt(r)===n)return!0}}}return!1}function Ft(e){if(!(e instanceof G))return null;var t=Bt(e);if(C(t))return null;for(var n=e;!O(n)&&$t(n)!==t;)n=se.call(n);return O(n)?null:n}function jt(e){return Wt(e)&&_t(e)}function Wt(e){return e instanceof HTMLSlotElement}function Gt(e,t){var n=Bt(t);if(C(n)){if(Rt.ENABLE_LIGHT_GET_ROOT_NODE_PATCH){var r=se.call(t);if(!O(r)&&jt(r))return!1}return!0}return $t(e)===n}function Ut(e){var t=tr(e);return Yt(t,Mt(ge.call(t)))}function Kt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!Gt(e,o)&&kt(e,o)&&E.call(n,o)}return n}function qt(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!Gt(e,l)&&kt(e,l))return l}return null}function Yt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];Gt(e,o)&&E.call(n,o)}return n}function Xt(e,t){for(var n=0,r=t.length;n<r;n+=1)if(Gt(e,t[n]))return t[n];return null}function Vt(e){if(!rr(e)&&!Wt(e))return Mt(ge.call(e));if(rr(e)){var t=Mt(Ne.call(e,"slot")),n=Jn(nr(e));return w.call(t,(function(e,t){return n===Jn(t)&&E.apply(e,Qt(t)),e}),[])}var r=Mt(ge.call(e)),l=Jn(e);return v.call(r,(function(e){return l===Jn(e)}))}function Qt(e){var t=Ft(e);if(O(t))return[];var n=Mt(ge.call(e));return v.call(n,(function(e){return!_t(e)||!Gt(t,e)}))}var zt=/[&\u00A0"]/g,Jt=/[&\u00A0<>]/g,Zt=String.prototype,en=Zt.replace,tn=Zt.toLowerCase;function nn(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function rn(e){return en.call(e,zt,nn)}var ln=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),on=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function an(e){switch(e.nodeType){case X:for(var t,n=e.attributes,r=We.call(e),l="<"+tn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+rn(t.value)+'"';return l+=">",ln.has(r)?l:l+function(e){for(var t="",n=Vt(e),r=0,l=n.length;r<l;r+=1)t+=an(n[r]);return t}(e)+"</"+tn.call(r)+">";case V:var a=e.data,i=e.parentNode;return i instanceof Element&&on.has(We.call(i))?a:function(e){return en.call(e,Jt,nn)}(a);case Q:return"<!CDATA[[".concat(e.data,"]]>");case z:return"<?".concat(e.target," ").concat(e.data,"?>");case J:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function un(e){if(e.nodeType===X){for(var t=Vt(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==J&&(n+=un(o))}return n}return e.nodeValue}var cn=new WeakMap;function sn(){throw new TypeError("Illegal constructor")}function fn(e){var t=u(sn.prototype);return cn.set(t,e),M.call(e,(function(e,n){s(t,n,{value:e,enumerable:!0,configurable:!0})})),t}sn.prototype=u(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:sn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return cn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){M.call(cn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return y.call(cn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return y.call(cn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return cn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=cn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),g(sn,NodeList);var pn=function(e,t){for(var n;!C(n=e.host);){var r=n.getRootNode();if(r===t)return n;e=r}};function hn(e,t,n,r){var l=rt.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!C(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!O(l))for(var i=0;i<l.length;i++){var u=l[i];if(!jt(u)){var c=u.getRootNode();if(-1===d.call(a,c)){var s=pn(c,a[0]);C(s)||-1!==d.call(l,s)||-1!==d.call(o,s)||E.call(o,s)}else E.call(o,u)}}return o}var gn=new WeakMap;function mn(){throw new TypeError("Illegal constructor")}function vn(e){var t=u(mn.prototype);return gn.set(t,e),M.call(e,(function(e,n){s(t,n,{value:e,enumerable:!0,configurable:!0})})),t}function bn(e){return jt(e)||rr(e)}function dn(e,t){var n=Ft(e);if(t===n)return nr(n);if(t instanceof Element){if(Bt(e)===Bt(t))return t;if(!O(n)&&Wt(t)){var r=Ft(t);if(!O(r)&&Gt(n,r))return r}}return null}function yn(){return Dn(this).length>0}function En(){return Dn(this)[0]||null}function wn(){var e=Dn(this);return e[e.length-1]||null}function Tn(){return un(this)}function Nn(){var e=se.call(this);return O(e)?e:dn(this,e)}function Ln(){var e=se.call(this);if(O(e))return null;var t=dn(this,e);return t instanceof Element?t:null}function Mn(e){return this===e?0:this.getRootNode()===e?10:At(this)!==At(e)?35:te.call(this,e)}function Sn(e){return null!=e&&At(this)===At(e)&&0!=(te.call(this,e)&K)}function Cn(e){var t=ee.call(this,!1);if(!e)return t;for(var n=Dn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function On(){if(rr(this)){var e=Ft(this);return fn(O(e)?[]:Yt(e,Vt(this)))}return ge.call(this)}mn.prototype=u(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:mn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return gn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=gn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===be.call(l,"id")||e===be.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),g(mn,HTMLCollection);var Hn=G.prototype.getRootNode,Rn=C(Hn)?function(){for(var e,t=this;!O(e=se.call(t));)t=e;return t}:Hn;c(G.prototype,{firstChild:{get:function(){return bn(this)?En.call(this):ie.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return bn(this)?wn.call(this):ue.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return _t(this)||rr(this)?Tn.call(this):ce.call(this)},set:function(e){he.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(_t(this))return Nn.call(this);var e=se.call(this);return!O(e)&&jt(e)?Ft(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(_t(this))return Ln.call(this);var e=pe.call(this);return!O(e)&&jt(e)?Ft(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return bn(this)?On.call(this):ge.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return bn(this)?yn.call(this):oe.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return Lt(this)?te.call(this,e):Mn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||null!=e&&(_t(this)||rr(this)?Sn.call(this,e):ae.call(this,e))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return _t(this)||rr(this)?Cn.call(this,e):ee.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return H(!C(e)&&!!e.composed)?Rn.call(this,e):O(n=Ft(t=this))?Rn.call(t):nr(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return me.call(this)}}});var Dn=function(e){return e.childNodes};h.call(HTMLElement.prototype,"contains")&&s(HTMLElement.prototype,"contains",f(G.prototype,"contains")),h.call(HTMLElement.prototype,"parentElement")&&s(HTMLElement.prototype,"parentElement",f(G.prototype,"parentElement"));var Pn=new WeakMap,In=new WeakMap;function An(e,t,n){if(t===n)return!0;var r=In.get(e);return C(r)&&(r=e.composedPath(),In.set(e,r)),r.includes(n)}function Bn(e){if(!function(e){return D(e)||P(e)&&!O(e)&&D(e.handleEvent)}(e))return e;var t=Pn.get(e);return C(t)&&(t=function(t){var n=Je.call(t);if(An(t,kn(t),n))return D(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Pn.set(e,t)),t}var $n=new WeakMap,_n=new WeakMap;function xn(e){var t=_n.get(e);return C(t)&&(t=u(null),_n.set(e,t)),t}function kn(e){var t;return null!==(t=cr.get(e))&&void 0!==t?t:ze.call(e)}var Fn=new WeakMap;function jn(e){if(!D(e))throw new TypeError;var t=Fn.get(e);return C(t)&&((t=function(t){var n=Je.call(t);yt(n)||(n=nr(n)),An(t,kn(t),n)&&e.call(n,t)}).placement=1,Fn.set(e,t)),t}var Wn=new WeakMap;function Gn(e){if(!D(e))throw new TypeError;var t=Wn.get(e);return C(t)&&((t=function(t){var n=Je.call(t);An(t,kn(t),n)&&e.call(n,t)}).placement=0,Wn.set(e,t)),t}function Un(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=xn(Je.call(e))[r];s(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),s(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var i=N.call(a);function u(n){M.call(i,(function(r){R(t)&&r.placement===n&&-1!==d.call(a,r)&&r.call(void 0,e)}))}$n.set(e,1),u(1),R(t)&&R(n)&&($n.set(e,0),u(0)),$n.set(e,2)}function Kn(e,t,n){var r=xn(e),l=r[t];C(l)&&(l=r[t]=[]),-1===d.call(l,n)&&(0===l.length&&Ct.call(e,t,Un),E.call(l,n))}function qn(e,t,n){var r,l;C(l=xn(e)[t])||-1===(r=d.call(l,n))||(L.call(l,r,1),0===l.length&&Ht.call(e,t,Un))}function Yn(e,t,n){D(t)&&Kn(this,e,Gn(t))}function Xn(e,t,n){D(t)&&qn(this,e,Gn(t))}var Vn=new WeakMap,Qn=document.createDocumentFragment;function zn(e){var t=Vn.get(e);if(C(t))throw new TypeError;return t}function Jn(e){return e[$]}function Zn(e,t){e[$]=t}function er(e){return zn(e).delegatesFocus}function tr(e){return zn(e).host}function nr(e){return zn(e).shadowRoot}function rr(e){var t=Vn.get(e);return!C(t)&&e===t.host}function lr(e){var t=Vn.get(e);return!C(t)&&e===t.shadowRoot}s(G.prototype,$,{set:function(e){var t,n;C(e)||(this[_]=e,t=this,n=e.nodeKey,It(t,Dt,{value:n,configurable:!0}))},get:function(){return this[_]},configurable:!0,enumerable:!0}),s(B,"$isNativeShadowRootDefined$",{value:dt}),C(B[j])&&s(B,j,{value:it}),C(B[W])&&s(B,W,{value:at});var or=0;function ar(e,t){if(Vn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=Tt(e),o=Qn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Vn.set(o,a),Vn.set(e,a);var i=function(){return o},u=i.nodeKey=or++;return It(e,Pt,{value:u}),Zn(o,i),g(o,fr.prototype),o}var ir={constructor:{writable:!0,configurable:!0,value:fr},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},ur={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=tr(this),t=Tt(e),n=tt.call(t);if(O(n))return n;if(0==(te.call(e,n)&K))return null;for(var r=n;!Gt(e,r);)r=pe.call(r);return Wt(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return zn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return gr(this,Tt(tr(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return hn(this,Tt(tr(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return tr(this)}},mode:{configurable:!0,get:function(){return zn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},cr=new WeakMap,sr={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ne.call(tr(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return re.call(tr(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Z.call(tr(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return le.call(tr(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){D(n)&&Kn(tr(e),t,jn(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return cr.set(e,this),Ot.apply(tr(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){D(n)&&qn(tr(e),t,jn(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return tr(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return fn(Ut(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=tr(this);return this===e?0:this.contains(e)?20:te.call(t,e)&K?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=tr(this);return 0!=(te.call(t,e)&K)&&Gt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return Dn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=Dn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return Dn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return me.call(tr(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return tr(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=Dn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==J&&(t+=un(l))}return t},set:function(e){var t=tr(this);he.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!C(e)&&H(e.composed)?tr(this).getRootNode(e):this}}};function fr(){throw new TypeError("Illegal constructor")}function pr(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof G))return r;n=e.getRootNode()}for(var l,o=e;!O(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=O(a)?o.parentNode:a}else o=!lr(o)&&!yt(o)||!t&&o===n?o instanceof G?o.parentNode:null:o.host;return l=e instanceof Window?e.document:Tt(e),r[r.length-1]===l&&r.push(window),r}
2
2
  /**
3
3
  @license
4
4
  Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
@@ -7,4 +7,4 @@
7
7
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
8
8
  Code distributed by Google as part of the polymer project is also
9
9
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
10
- */function fr(e,t){if(O(e))return null;for(var n,r,l,o,a=sr(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!nr(l)||!C(o)&&o>-1)return n;return null}function pr(e,t,n,r){var l=et.call(t,n,r);return O(l)?l:fr(e,sr(l,!0))}i(or,ur,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return gn(b.call(Wt(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,qt(n=Zn(this),Nt(we.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return cn((t=e,Kt(n=Zn(this),Nt(we.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=Hn(this),t="",n=0,r=e.length;n<r;n+=1)t+=ln(e[n]);return t},set:function(e){var t=Zn(this);Be.call(t,e)}}},ar),cr.prototype=u(DocumentFragment.prototype,or),s(cr,Symbol.hasInstance,{value:function(e){return D(e)&&!O(e)&&(vt(e)||p(e)===cr.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return pr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return fn(this,this,e,t)},s(Document.prototype,"activeElement",{get:function(){var e=Ze.call(this);if(O(e))return e;for(;!C(Dt(e));)if(O(e=se.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),s(Document.prototype,"getElementById",{value:function(){var e=ot.apply(this,N.call(arguments));return O(e)?null:C(Dt(e))||Tt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"querySelector",{value:function(){var e=Nt(lt.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(Dt(e))||Tt(e)}));return C(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"querySelectorAll",{value:function(){var e=Nt(lt.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(Dt(e))||Tt(e)}));return cn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByClassName",{value:function(){var e=Nt(at.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(Dt(e))||Tt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByTagName",{value:function(){var e=Nt(it.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(Dt(e))||Tt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=Nt(ut.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(Dt(e))||Tt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),s(f(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=Nt(ct.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(Dt(e))||Tt(e)}));return cn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:cr,configurable:!0,writable:!0});var hr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var gr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function mr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!hr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!hr.get.call(e)})()&&(HTMLElement.prototype.click=function(){Mt.call(this,"click",mr);try{gr.value.call(this)}finally{Ct.call(this,"click",mr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=i(u(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var br,vr,dr,yr,Er=CustomEvent;function wr(e,t){var n=new Er(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(wr.prototype=Er.prototype,window.CustomEvent=wr,"undefined"!=typeof ClipboardEvent){var Tr=i(u(null),{copy:1,cut:1,paste:1});c(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===Tr[e]},configurable:!0,enumerable:!0}})}dr="undefined"!=typeof HTMLIFrameElement,yr="undefined"!=typeof Proxy&&H(Proxy.isCompat),dr&&yr&&(br=f(HTMLIFrameElement.prototype,"contentWindow"),vr=br.get,br.get=function(){var e,t=vr.call(this);return O(t)||C(Dt(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},s(HTMLIFrameElement.prototype,"contentWindow",br));var Nr=MutationObserver,Lr=Nr.prototype,Mr=Lr.disconnect,Sr=Lr.observe,Cr=Lr.takeRecords,Or="$$lwcObserverCallbackWrapper$$",Hr="$$lwcNodeObservers$$",Rr=new WeakMap;function Pr(e){return e[Hr]}function Dr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,o=u(MutationRecord.prototype);return c(o,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),o}function Ir(e,t){for(var n=t;!O(n);){var r=Pr(n);if(!C(r)&&(r[0]===e||-1!==d.call(r,e)))return!0;n=n.parentNode}return!1}function Ar(e,t){return w.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C(At(r)))Ir(t,r)&&E.call(e,n);else if(l.length>0){var a=l[0];if(Ir(t,a)){var i=Pr(r);!i||i[0]!==t&&-1===d.call(i,t)?E.call(e,Dr(n)):E.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(It(r)===It(c)&&Ir(t,r))E.call(e,n);else if(u){var s=Pr(u);!s||s[0]!==t&&-1===d.call(s,t)||E.call(e,Dr(n))}}return e}),[])}function _r(e){var t=function(e){var t=e[Or];return C(t)&&(t=e[Or]=function(t,n){var r=Ar(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new Nr(t)}function Br(e,t,n){if(arguments.length>1){var r=N.call(arguments);return r[1]=In(r[1]),ft.apply(this,r)}return ft.apply(this,arguments)}function $r(e,t,n){if(arguments.length>1){var r=N.call(arguments);r[1]=In(r[1]),pt.apply(this,r)}pt.apply(this,arguments)}function xr(){var e=Ve.call(this);if(!(e instanceof j))return e;var t=Et(e),n=sr(e,this.composed),r=ze.call(this);if(!(r instanceof j))return O(r)&&C(Dt(e))?e:fr(t,n);if(r===t||r===t.body)return C(Dt(e))?e:fr(t,n);var l=r,o=n;tr(r)&&(1===An.get(this)&&(l=er(r)));return tr(e)&&ir.has(this)&&(o=sr(er(e),this.composed)),fr(l,o)}function kr(){var e=Ve.call(this);if(!(e instanceof j))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Yn.has(t));if(n&&!r)return Qe.call(this);if(O(ze.call(this)))return[];var l=e;return tr(e)&&ir.has(this)&&(l=er(e)),sr(l,this.composed)}function Fr(e){var t=f(e.prototype,"relatedTarget").get;s(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(O(e))return null;if(!(e instanceof j&&_t(e)))return e;var n=ze.call(this);return O(n)&&(n=Et(e)),fr(n,sr(e,!0))},enumerable:!0,configurable:!0})}_r.prototype=Nr.prototype,_r.prototype.disconnect=function(){var e=this;Mr.call(this);var t=Rr.get(this);C(t)||(M.call(t,(function(t){var n=t[Hr];if(!C(n)){var r=d.call(n,e);-1!==r&&L.call(n,r,1)}})),t.length=0)},_r.prototype.observe=function(e,t){var n,r=Pr(e);if(C(r)&&(n=r=[],e[Hr]=n),-1===d.call(r,this)&&E.call(r,this),nr(e)&&(e=e.host),Rr.has(this)){var l=Rr.get(this);-1===d.call(l,e)&&E.call(l,e)}else Rr.set(this,[e]);return Sr.call(this,e,t)},_r.prototype.takeRecords=function(){return Ar(Cr.call(this),this)},s(window,"MutationObserver",{value:_r,configurable:!0,writable:!0}),c(Lt,{addEventListener:{value:function(e,t,n){if(tr(this))return Kn.apply(this,arguments);if(arguments.length<2){var r=N.call(arguments);return r.length>1&&(r[1]=In(r[1])),Mt.apply(this,r)}var l=In(t);return Mt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(tr(this))return qn.apply(this,arguments);var r=N.call(arguments);arguments.length>1&&(r[1]=In(r[1])),Ct.apply(this,r),Ct.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&c(Window.prototype,{addEventListener:{value:Br,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:$r,enumerable:!0,writable:!0,configurable:!0}}),c(Event.prototype,{target:{get:xr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=ze.call(this);return O(e)?null:1===An.get(this)?er(e):e},enumerable:!0,configurable:!0},composedPath:{value:kr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:xr,enumerable:!0,configurable:!0},path:{get:kr,enumerable:!0,configurable:!0}}),Fr(FocusEvent),Fr(MouseEvent);var jr,Wr=h.call(Text.prototype,"assignedSlot")?f(Text.prototype,"assignedSlot").get:function(){return null},Ur={childList:!0},Gr=new WeakMap;function Kr(e){var t=Nt(pe.call(e));return w.call(t,(function(e,t){return t instanceof Element&&Ft(t)?E.apply(e,Kr(t)):E.call(e,t),e}),[])}function qr(){var e=ue.call(this);if(e instanceof Element){var t=Ye.call(e);if(vt(t))return this instanceof Text?Wr.call(this):Xe.call(this)}return!O(e)&&Ft(e)&&Dt(e)!==Dt(this)?e:null}function Yr(e,t){var n,r=Dt(e);if(C(r))n=e instanceof HTMLBodyElement?b.call(t,(function(t){return C(Dt(t))||Tt(e)})):N.call(t);else if(tr(e)){var l=xt(e);n=O(l)?[]:At(e)?Ut(e,t):Kt(l,t)}else n=b.call(t,(function(e){return It(e)===r}));return n}function Xr(){for(var e=Hn(this),t="",n=0,r=e.length;n<r;n+=1)t+=ln(e[n]);return t}function Vr(){return ln(this)}function zr(){var e=xt(this),t=O(e)?[]:Kt(e,Yt(this));return gn(b.call(t,(function(e){return e instanceof Element})))}function Jr(){return this.children.length}function Qr(){return this.children[0]||null}function Zr(){var e=this.children;return e.item(e.length-1)||null}function el(e,t){var n;if(tr(e)){var r=xt(e);n=C(At(e))?O(r)?[]:Kt(r,t):Ut(e,t)}else if(_t(e)){var l=Dt(e);n=C(l)?N.call(t):b.call(t,(function(e){return It(e)===l}))}else n=e instanceof HTMLBodyElement?b.call(t,(function(t){return C(Dt(t))||Tt(e)})):N.call(t);return n}c(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Gr.get(this)||(Gr.set(this,!0),jr||(jr=new ht((function(e){var t=[];M.call(e,(function(e){var n=e.target;-1===d.call(t,n)&&(E.call(t,n),St.call(n,new CustomEvent("slotchange")))}))}))),gt.call(jr,this,Ur))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(_t(this)){var t=!C(e)&&H(e.flatten),n=t?Kr(this):Xt(this);return b.call(n,(function(e){return e instanceof Element}))}return A.apply(this,N.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(_t(this)){var t=!C(e)&&H(e.flatten);return t?Kr(this):Xt(this)}return I.apply(this,N.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=me.call(this,"name");return O(e)?"":e},set:function(e){Ne.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(_t(this)){var e=xt(this);return cn(O(e)?[]:Kt(e,Yt(this)))}return pe.call(this)},enumerable:!0,configurable:!0}}),c(Text.prototype,{assignedSlot:{get:qr,enumerable:!0,configurable:!0}}),c(Element.prototype,{innerHTML:{get:function(){return _t(this)||tr(this)?Xr.call(this):_e.call(this)},set:function(e){Be.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return _t(this)||tr(this)?Vr.call(this):xe.call(this)},set:function(e){ke.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?lr(this,e):Le.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(tr(this)){var e=er(this);if("open"===e.mode)return e}return Ye.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return mn(this)?zr.call(this):Ke.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return mn(this)?Jr.call(this):Me.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return mn(this)?Qr.call(this):Se.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return mn(this)?Zr.call(this):Ce.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:qr,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"innerHTML")&&s(HTMLElement.prototype,"innerHTML",f(Element.prototype,"innerHTML")),h.call(HTMLElement.prototype,"outerHTML")&&s(HTMLElement.prototype,"outerHTML",f(Element.prototype,"outerHTML")),h.call(HTMLElement.prototype,"children")&&s(HTMLElement.prototype,"children",f(Element.prototype,"children")),c(Element.prototype,{querySelector:{value:function(){var e=this,t=Nt(we.apply(this,N.call(arguments)));if(tr(this)){var n=xt(this);return C(At(this))?O(n)?null:qt(n,t):Gt(this,t)}if(_t(this)){var r=Dt(this);if(C(r))return 0===t.length?null:t[0];var l=v.call(t,(function(e){return It(e)===r}));return C(l)?null:l}if(!(this instanceof HTMLBodyElement)){var o=t[0];return C(o)?null:o}var a=v.call(t,(function(t){return C(Dt(t))||Tt(e)}));return C(a)?null:a},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=Nt(we.apply(this,N.call(arguments))),t=el(this,e);return cn(t)},writable:!0,enumerable:!0,configurable:!0}}),c(Element.prototype,{getElementsByClassName:{value:function(){var e=Nt(qe.apply(this,N.call(arguments)));return gn(Yr(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=Nt(ve.apply(this,N.call(arguments)));return gn(Yr(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=Nt(de.apply(this,N.call(arguments)));return gn(Yr(this,e))},writable:!0,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"getElementsByClassName")&&s(HTMLElement.prototype,"getElementsByClassName",f(Element.prototype,"getElementsByClassName"));var tl="\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",nl=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function rl(e){return e.filter((function(e){return ye.call(e,"tabindex")?"0"===me.call(e,"tabindex"):!nl.has(Fe.call(e))||!ye.call(e,"disabled")}))}var ll=new WeakMap;function ol(e){return(!tr(e)||!Qn(e))&&(Ge.call(e,tl)&&function(e){var t=be.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function al(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=Nt(we.call(this,tl)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=Ee.call(this,tl);O(a)||a.focus.apply(a,arguments)}}function il(e){var t=Et(e),n=rl(Nt(lt.call(t,tl))),r=rl(Nt(we.call(e,tl))),l=r[0],o=r[r.length-1],a=d.call(n,e),i=a>-1?a:d.call(n,l),u=0===r.length?i+1:d.call(n,o)+1;return{prev:N.call(n,0,i),inner:r,next:N.call(n,u)}}function ul(e,t){var n=Z.call(e,t);return n&U?0:n&G?1:n&K?2:-1}function cl(e){e.preventDefault(),e.stopPropagation()}function sl(e,t){ft.call(e,"focusin",cl,!0),ft.call(e,"focusout",cl,!0),t(),pt.call(e,"focusin",cl,!0),pt.call(e,"focusout",cl,!0)}function fl(e,t,n){var r=wt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(dl(t.getRootNode(),l))return l}return null}(e,n);O(l)?sl(r,(function(){t.blur()})):sl(r,(function(){l.focus()}))}var pl=!1;function hl(){pl=!0}function gl(){pl=!1}function ml(){return!pl}function bl(e){if(!pl){var t=ze.call(e),n=Ve.call(e);if(t===n){var r=Je.call(e);if(!O(r)){var l=il(t);if(1===ul(t,r)){var o=dl.bind(null,t.getRootNode()),a=v.call(l.inner,o);if(C(a))fl(l.next,n,r);else sl(wt(a),(function(){a.focus()}))}else t===n&&fl(T.call(l.prev),n,r)}}}}function vl(e){if(!pl){var t=Je.call(e);if(!O(t)){var n=ze.call(e),r=il(n);if(-1===d.call(r.inner,t)){var l=Ve.call(e),o=ul(n,t);1===o&&fl(r.next,l,t),2===o&&fl(T.call(r.prev),l,t)}}}}function dl(e,t){if(!ol(t))return!1;for(var n=Et(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===me.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function yl(e){Ct.call(e,"focusin",bl,!0)}function El(e){var t=Et(e);ll.get(t)||(ll.set(t,!0),Mt.call(t,"mousedown",hl,!0),Mt.call(t,"mouseup",(function(){setTimeout(gl)}),!0),Mt.call(t,"dragstart",gl,!0))}function wl(e){Ct.call(e,"focusin",vl,!0)}var Tl=HTMLElement.prototype,Nl=Tl.blur,Ll=Tl.focus;function Ml(){return Qn(this)&&R(ye.call(this,"tabindex"))?0:We.call(this)}function Sl(e){var t=Qn(this),n=We.call(this),r=ye.call(this,"tabindex");Ue.call(this,e);var l,o=We.call(this),a=ye.call(this,"tabindex"),i=n!==o;(r&&(i||R(a))&&(-1===n&&wl(this),0===n&&t&&yl(this)),R(a))||(r&&a&&R(i)||(-1===o&&(El(l=this),yl(l),Mt.call(l,"focusin",vl,!0)),0===o&&t&&function(e){El(e),wl(e),Mt.call(e,"focusin",bl,!0)}(this)))}function Cl(){if(Qn(this)){var e=(n=Et(t=this),O(r=Ze.call(n))||0!=(Z.call(t,r)&U)?r:null);if(!O(e))return void e.blur()}var t,n,r;return Nl.call(this)}function Ol(){var e=ml();e&&hl(),tr(this)&&Qn(this)?al.call(this):(Ll.apply(this,arguments),e&&gl())}function Hl(e,t){e[B]=t;for(var n=pe.call(e),r=0,l=n.length;r<l;r++)Hl(n[r],t)}c(HTMLElement.prototype,{tabIndex:{get:function(){return tr(this)?Ml.call(this):We.call(this)},set:function(e){return tr(this)?Sl.call(this,e):Ue.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(tr(this))return Cl.call(this);Nl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Ol.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==He&&null!==Re&&s(HTMLElement.prototype,"innerText",{get:function(){return He.call(this)},set:function(e){Re.call(this,e)},enumerable:!0,configurable:!0}),null!==De&&null!==Ie&&s(HTMLElement.prototype,"outerText",{get:function(){return De.call(this)},set:function(e){Ie.call(this,e)},enumerable:!0,configurable:!0}),s(Element.prototype,k,{set:function(e){var t=this[F];C(t)||t===e||Te.call(this,t),C(e)||Ne.call(this,e,""),this[F]=e},get:function(){return this[F]},configurable:!0}),s(Element.prototype,"$shadowStaticNode$",{set:function(e){e&&Hl(this,this[B]);this[x]=e},get:function(){return this[x]},configurable:!0});var Rl,Pl="$$DomManualKey$$",Dl=function(){},Il={childList:!0};function Al(e,t,n){var r=zn(e);if(r!==t&&(Jn(e,t),e instanceof Element)){if(function(e,t){e[k]=t}(e,n),tr(e))return;C(r)&&gt.call(Rl,e,Il);for(var l=pe.call(e),o=0,a=l.length;o<a;o+=1)Al(l[o],t,n)}}function _l(){return new ht((function(e){M.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=zn(t),o=function(e){return e[k]}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];Z.call(t,u)&j.DOCUMENT_POSITION_CONTAINED_BY||Al(u,Dl,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];Z.call(t,f)&j.DOCUMENT_POSITION_CONTAINED_BY&&Al(f,l,o)}}))}))}s(Element.prototype,"$domManual$",{set:function(e){this[Pl]=e,H(e)&&function(e){if(C(Rl)&&(Rl=_l()),C(zn(e)))throw new Error("Invalid Element");gt.call(Rl,e,Il)}(this)},get:function(){return this[Pl]},configurable:!0})}();
10
+ */function hr(e,t){if(O(e))return null;for(var n,r,l,o,a=pr(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!lr(l)||!C(o)&&o>-1)return n;return null}function gr(e,t,n,r){var l=nt.call(t,n,r);return O(l)?l:hr(e,pr(l,!0))}i(ir,sr,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return vn(v.call(Ut(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,Xt(n=tr(this),Mt(Ne.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return fn((t=e,Yt(n=tr(this),Mt(Ne.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=Dn(this),t="",n=0,r=e.length;n<r;n+=1)t+=an(e[n]);return t},set:function(e){var t=tr(this);xe.call(t,e)}}},ur),fr.prototype=u(DocumentFragment.prototype,ir),s(fr,Symbol.hasInstance,{value:function(e){return P(e)&&!O(e)&&(yt(e)||p(e)===fr.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return gr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return hn(this,this,e,t)},s(Document.prototype,"activeElement",{get:function(){var e=tt.call(this);if(O(e))return e;for(;!C(At(e));)if(O(e=pe.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),s(Document.prototype,"getElementById",{value:function(){var e=it.apply(this,N.call(arguments));return O(e)?null:C(At(e))||Lt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"querySelector",{value:function(){var e=Mt(at.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(At(e))||Lt(e)}));return C(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"querySelectorAll",{value:function(){var e=Mt(at.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByClassName",{value:function(){var e=Mt(ut.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return vn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByTagName",{value:function(){var e=Mt(ct.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return vn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=Mt(st.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return vn(t)},writable:!0,enumerable:!0,configurable:!0}),s(f(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=Mt(ft.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:fr,configurable:!0,writable:!0});var mr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var vr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function br(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!mr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!mr.get.call(e)})()&&(HTMLElement.prototype.click=function(){Ct.call(this,"click",br);try{vr.value.call(this)}finally{Ht.call(this,"click",br)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=i(u(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var dr,yr,Er,wr,Tr=CustomEvent;function Nr(e,t){var n=new Tr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(Nr.prototype=Tr.prototype,window.CustomEvent=Nr,"undefined"!=typeof ClipboardEvent){var Lr=i(u(null),{copy:1,cut:1,paste:1});c(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===Lr[e]},configurable:!0,enumerable:!0}})}Er="undefined"!=typeof HTMLIFrameElement,wr="undefined"!=typeof Proxy&&H(Proxy.isCompat),Er&&wr&&(dr=f(HTMLIFrameElement.prototype,"contentWindow"),yr=dr.get,dr.get=function(){var e,t=yr.call(this);return O(t)||C(At(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},s(HTMLIFrameElement.prototype,"contentWindow",dr));var Mr=MutationObserver,Sr=Mr.prototype,Cr=Sr.disconnect,Or=Sr.observe,Hr=Sr.takeRecords,Rr="$$lwcObserverCallbackWrapper$$",Dr="$$lwcNodeObservers$$",Pr=new WeakMap;function Ir(e){return e[Dr]}function Ar(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,o=u(MutationRecord.prototype);return c(o,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),o}function Br(e,t){for(var n=t;!O(n);){var r=Ir(n);if(!C(r)&&(r[0]===e||-1!==d.call(r,e)))return!0;n=n.parentNode}return!1}function $r(e,t){return w.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C($t(r)))Br(t,r)&&E.call(e,n);else if(l.length>0){var a=l[0];if(Br(t,a)){var i=Ir(r);!i||i[0]!==t&&-1===d.call(i,t)?E.call(e,Ar(n)):E.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Bt(r)===Bt(c)&&Br(t,r))E.call(e,n);else if(u){var s=Ir(u);!s||s[0]!==t&&-1===d.call(s,t)||E.call(e,Ar(n))}}return e}),[])}function _r(e){var t=function(e){var t=e[Rr];return C(t)&&(t=e[Rr]=function(t,n){var r=$r(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new Mr(t)}function xr(e,t,n){if(arguments.length>1){var r=N.call(arguments);return r[1]=Bn(r[1]),ht.apply(this,r)}return ht.apply(this,arguments)}function kr(e,t,n){if(arguments.length>1){var r=N.call(arguments);r[1]=Bn(r[1]),gt.apply(this,r)}gt.apply(this,arguments)}function Fr(){var e=ze.call(this);if(!(e instanceof G))return e;var t=Tt(e),n=pr(e,this.composed),r=Je.call(this);if(!(r instanceof G))return O(r)&&C(At(e))?e:hr(t,n);if(r===t||r===t.body)return C(At(e))?e:hr(t,n);var l=r,o=n;rr(r)&&(1===$n.get(this)&&(l=nr(r)));return rr(e)&&cr.has(this)&&(o=pr(nr(e),this.composed)),hr(l,o)}function jr(){var e=ze.call(this);if(!(e instanceof G))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Vn.has(t));if(n&&!r)return et.call(this);if(O(Je.call(this)))return[];var l=e;return rr(e)&&cr.has(this)&&(l=nr(e)),pr(l,this.composed)}function Wr(e){var t=f(e.prototype,"relatedTarget").get;s(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(O(e))return null;if(!(e instanceof G&&_t(e)))return e;var n=Je.call(this);return O(n)&&(n=Tt(e)),hr(n,pr(e,!0))},enumerable:!0,configurable:!0})}_r.prototype=Mr.prototype,_r.prototype.disconnect=function(){var e=this;Cr.call(this);var t=Pr.get(this);C(t)||(M.call(t,(function(t){var n=t[Dr];if(!C(n)){var r=d.call(n,e);-1!==r&&L.call(n,r,1)}})),t.length=0)},_r.prototype.observe=function(e,t){var n,r=Ir(e);if(C(r)&&(n=r=[],e[Dr]=n),-1===d.call(r,this)&&E.call(r,this),lr(e)&&(e=e.host),Pr.has(this)){var l=Pr.get(this);-1===d.call(l,e)&&E.call(l,e)}else Pr.set(this,[e]);return Or.call(this,e,t)},_r.prototype.takeRecords=function(){return $r(Hr.call(this),this)},s(window,"MutationObserver",{value:_r,configurable:!0,writable:!0}),c(St,{addEventListener:{value:function(e,t,n){if(rr(this))return Yn.apply(this,arguments);if(arguments.length<2){var r=N.call(arguments);return r.length>1&&(r[1]=Bn(r[1])),Ct.apply(this,r)}var l=Bn(t);return Ct.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(rr(this))return Xn.apply(this,arguments);var r=N.call(arguments);arguments.length>1&&(r[1]=Bn(r[1])),Ht.apply(this,r),Ht.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&c(Window.prototype,{addEventListener:{value:xr,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:kr,enumerable:!0,writable:!0,configurable:!0}}),c(Event.prototype,{target:{get:Fr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Je.call(this);return O(e)?null:1===$n.get(this)?nr(e):e},enumerable:!0,configurable:!0},composedPath:{value:jr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Fr,enumerable:!0,configurable:!0},path:{get:jr,enumerable:!0,configurable:!0}}),Wr(FocusEvent),Wr(MouseEvent);var Gr,Ur=h.call(Text.prototype,"assignedSlot")?f(Text.prototype,"assignedSlot").get:function(){return null},Kr={childList:!0},qr=new WeakMap;function Yr(e){var t=Mt(ge.call(e));return w.call(t,(function(e,t){return t instanceof Element&&Wt(t)?E.apply(e,Yr(t)):E.call(e,t),e}),[])}function Xr(){var e=se.call(this);if(e instanceof Element){var t=Ve.call(e);if(yt(t))return this instanceof Text?Ur.call(this):Qe.call(this)}return!O(e)&&Wt(e)&&At(e)!==At(this)?e:null}function Vr(e,t){var n,r=At(e);if(C(r))n=e instanceof HTMLBodyElement?v.call(t,(function(t){return C(At(t))||Lt(e)})):N.call(t);else if(rr(e)){var l=Ft(e);n=O(l)?[]:$t(e)?Kt(e,t):Yt(l,t)}else n=v.call(t,(function(e){return Bt(e)===r}));return n}function Qr(){for(var e=Dn(this),t="",n=0,r=e.length;n<r;n+=1)t+=an(e[n]);return t}function zr(){return an(this)}function Jr(){var e=Ft(this),t=O(e)?[]:Yt(e,Vt(this));return vn(v.call(t,(function(e){return e instanceof Element})))}function Zr(){return this.children.length}function el(){return this.children[0]||null}function tl(){var e=this.children;return e.item(e.length-1)||null}function nl(e,t){var n;if(rr(e)){var r=Ft(e);n=C($t(e))?O(r)?[]:Yt(r,t):Kt(e,t)}else if(_t(e)){var l=At(e);n=C(l)?N.call(t):v.call(t,(function(e){return Bt(e)===l}))}else n=e instanceof HTMLBodyElement?v.call(t,(function(t){return C(At(t))||Lt(e)})):N.call(t);return n}c(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||qr.get(this)||(qr.set(this,!0),Gr||(Gr=new mt((function(e){var t=[];M.call(e,(function(e){var n=e.target;-1===d.call(t,n)&&(E.call(t,n),Ot.call(n,new CustomEvent("slotchange")))}))}))),vt.call(Gr,this,Kr))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(_t(this)){var t=!C(e)&&H(e.flatten),n=t?Yr(this):Qt(this);return v.call(n,(function(e){return e instanceof Element}))}return A.apply(this,N.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(_t(this)){var t=!C(e)&&H(e.flatten);return t?Yr(this):Qt(this)}return I.apply(this,N.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=be.call(this,"name");return O(e)?"":e},set:function(e){Me.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(_t(this)){var e=Ft(this);return fn(O(e)?[]:Yt(e,Vt(this)))}return ge.call(this)},enumerable:!0,configurable:!0}}),c(Text.prototype,{assignedSlot:{get:Xr,enumerable:!0,configurable:!0}}),c(Element.prototype,{innerHTML:{get:function(){return _t(this)||rr(this)?Qr.call(this):_e.call(this)},set:function(e){xe.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return _t(this)||rr(this)?zr.call(this):Fe.call(this)},set:function(e){je.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?ar(this,e):Se.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(rr(this)){var e=nr(this);if("open"===e.mode)return e}return Ve.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return bn(this)?Jr.call(this):Ye.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return bn(this)?Zr.call(this):Ce.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return bn(this)?el.call(this):Oe.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return bn(this)?tl.call(this):He.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Xr,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"innerHTML")&&s(HTMLElement.prototype,"innerHTML",f(Element.prototype,"innerHTML")),h.call(HTMLElement.prototype,"outerHTML")&&s(HTMLElement.prototype,"outerHTML",f(Element.prototype,"outerHTML")),h.call(HTMLElement.prototype,"children")&&s(HTMLElement.prototype,"children",f(Element.prototype,"children")),c(Element.prototype,{querySelector:{value:function(){var e=this,t=Mt(Ne.apply(this,N.call(arguments)));if(rr(this)){var n=Ft(this);return C($t(this))?O(n)?null:Xt(n,t):qt(this,t)}if(_t(this)){var r=At(this);if(C(r))return 0===t.length?null:t[0];var l=b.call(t,(function(e){return Bt(e)===r}));return C(l)?null:l}if(!(this instanceof HTMLBodyElement)){var o=t[0];return C(o)?null:o}var a=b.call(t,(function(t){return C(At(t))||Lt(e)}));return C(a)?null:a},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=Mt(Ne.apply(this,N.call(arguments))),t=nl(this,e);return fn(t)},writable:!0,enumerable:!0,configurable:!0}}),c(Element.prototype,{getElementsByClassName:{value:function(){var e=Mt(Xe.apply(this,N.call(arguments)));return vn(Vr(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=Mt(ye.apply(this,N.call(arguments)));return vn(Vr(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=Mt(Ee.apply(this,N.call(arguments)));return vn(Vr(this,e))},writable:!0,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"getElementsByClassName")&&s(HTMLElement.prototype,"getElementsByClassName",f(Element.prototype,"getElementsByClassName"));var rl="\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",ll=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function ol(e){return e.filter((function(e){return we.call(e,"tabindex")?"0"===be.call(e,"tabindex"):!ll.has(We.call(e))||!we.call(e,"disabled")}))}var al=new WeakMap;function il(e){return(!rr(e)||!er(e))&&(qe.call(e,rl)&&function(e){var t=de.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function ul(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=Mt(Ne.call(this,rl)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=Te.call(this,rl);O(a)||a.focus.apply(a,arguments)}}function cl(e){var t=Tt(e),n=ol(Mt(at.call(t,rl))),r=ol(Mt(Ne.call(e,rl))),l=r[0],o=r[r.length-1],a=d.call(n,e),i=a>-1?a:d.call(n,l),u=0===r.length?i+1:d.call(n,o)+1;return{prev:N.call(n,0,i),inner:r,next:N.call(n,u)}}function sl(e,t){var n=te.call(e,t);return n&K?0:n&q?1:n&Y?2:-1}function fl(e){e.preventDefault(),e.stopPropagation()}function pl(e,t){ht.call(e,"focusin",fl,!0),ht.call(e,"focusout",fl,!0),t(),gt.call(e,"focusin",fl,!0),gt.call(e,"focusout",fl,!0)}function hl(e,t,n){var r=Nt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(El(t.getRootNode(),l))return l}return null}(e,n);O(l)?pl(r,(function(){t.blur()})):pl(r,(function(){l.focus()}))}var gl=!1;function ml(){gl=!0}function vl(){gl=!1}function bl(){return!gl}function dl(e){if(!gl){var t=Je.call(e),n=ze.call(e);if(t===n){var r=Ze.call(e);if(!O(r)){var l=cl(t);if(1===sl(t,r)){var o=El.bind(null,t.getRootNode()),a=b.call(l.inner,o);if(C(a))hl(l.next,n,r);else pl(Nt(a),(function(){a.focus()}))}else t===n&&hl(T.call(l.prev),n,r)}}}}function yl(e){if(!gl){var t=Ze.call(e);if(!O(t)){var n=Je.call(e),r=cl(n);if(-1===d.call(r.inner,t)){var l=ze.call(e),o=sl(n,t);1===o&&hl(r.next,l,t),2===o&&hl(T.call(r.prev),l,t)}}}}function El(e,t){if(!il(t))return!1;for(var n=Tt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===be.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function wl(e){Ht.call(e,"focusin",dl,!0)}function Tl(e){var t=Tt(e);al.get(t)||(al.set(t,!0),Ct.call(t,"mousedown",ml,!0),Ct.call(t,"mouseup",(function(){setTimeout(vl)}),!0),Ct.call(t,"dragstart",vl,!0))}function Nl(e){Ht.call(e,"focusin",yl,!0)}var Ll=HTMLElement.prototype,Ml=Ll.blur,Sl=Ll.focus;function Cl(){return er(this)&&R(we.call(this,"tabindex"))?0:Ue.call(this)}function Ol(e){var t=er(this),n=Ue.call(this),r=we.call(this,"tabindex");Ke.call(this,e);var l,o=Ue.call(this),a=we.call(this,"tabindex"),i=n!==o;(r&&(i||R(a))&&(-1===n&&Nl(this),0===n&&t&&wl(this)),R(a))||(r&&a&&R(i)||(-1===o&&(Tl(l=this),wl(l),Ct.call(l,"focusin",yl,!0)),0===o&&t&&function(e){Tl(e),Nl(e),Ct.call(e,"focusin",dl,!0)}(this)))}function Hl(){if(er(this)){var e=(n=Tt(t=this),O(r=tt.call(n))||0!=(te.call(t,r)&K)?r:null);if(!O(e))return void e.blur()}var t,n,r;return Ml.call(this)}function Rl(){var e=bl();e&&ml(),rr(this)&&er(this)?ul.call(this):(Sl.apply(this,arguments),e&&vl())}function Dl(e,t){e[$]=t;for(var n=ge.call(e),r=0,l=n.length;r<l;r++)Dl(n[r],t)}c(HTMLElement.prototype,{tabIndex:{get:function(){return rr(this)?Cl.call(this):Ue.call(this)},set:function(e){return rr(this)?Ol.call(this,e):Ke.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(rr(this))return Hl.call(this);Ml.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Rl.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==De&&null!==Pe&&s(HTMLElement.prototype,"innerText",{get:function(){return De.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0}),null!==Ae&&null!==Be&&s(HTMLElement.prototype,"outerText",{get:function(){return Ae.call(this)},set:function(e){Be.call(this,e)},enumerable:!0,configurable:!0}),s(Element.prototype,k,{set:function(e){var t=this[F];C(t)||t===e||Le.call(this,t),C(e)||Me.call(this,e,""),this[F]=e},get:function(){return this[F]},configurable:!0}),s(Element.prototype,"$shadowStaticNode$",{set:function(e){e&&Dl(this,this[$]);this[x]=e},get:function(){return this[x]},configurable:!0});var Pl,Il="$$DomManualKey$$",Al=function(){},Bl={childList:!0};function $l(e,t,n){var r=Jn(e);if(r!==t&&(Zn(e,t),e instanceof Element)){if(function(e,t){e[k]=t}(e,n),rr(e))return;C(r)&&vt.call(Pl,e,Bl);for(var l=ge.call(e),o=0,a=l.length;o<a;o+=1)$l(l[o],t,n)}}function _l(){return new mt((function(e){M.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Jn(t),o=function(e){return e[k]}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];te.call(t,u)&G.DOCUMENT_POSITION_CONTAINED_BY||$l(u,Al,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];te.call(t,f)&G.DOCUMENT_POSITION_CONTAINED_BY&&$l(f,l,o)}}))}))}s(Element.prototype,"$domManual$",{set:function(e){this[Il]=e,H(e)&&function(e){if(C(Pl)&&(Pl=_l()),C(Jn(e)))throw new Error("Invalid Element");vt.call(Pl,e,Bl)}(this)},get:function(){return this[Il]},configurable:!0})}();
@@ -62,39 +62,11 @@
62
62
  * SPDX-License-Identifier: MIT
63
63
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
64
64
  */
65
- // Inspired from: https://mathiasbynens.be/notes/globalthis
66
- var _globalThis = /*@__PURE__*/function () {
67
- // On recent browsers, `globalThis` is already defined. In this case return it directly.
68
- if ((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object') {
69
- return globalThis;
70
- }
71
- var _globalThis;
72
- try {
73
- // eslint-disable-next-line no-extend-native
74
- Object.defineProperty(Object.prototype, '__magic__', {
75
- get: function get() {
76
- return this;
77
- },
78
- configurable: true
79
- });
80
- // __magic__ is undefined in Safari 10 and IE10 and older.
81
- // @ts-ignore
82
- // eslint-disable-next-line no-undef
83
- _globalThis = __magic__;
84
- // @ts-ignore
85
- delete Object.prototype.__magic__;
86
- } catch (ex) {
87
- // In IE8, Object.defineProperty only works on DOM objects.
88
- } finally {
89
- // If the magic above fails for some reason we assume that we are in a legacy browser.
90
- // Assume `window` exists in this case.
91
- if (typeof _globalThis === 'undefined') {
92
- // @ts-ignore
93
- _globalThis = window;
94
- }
95
- }
96
- return _globalThis;
97
- }();
65
+ // See browser support for globalThis:
66
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility
67
+ /* istanbul ignore next */
68
+ // @ts-ignore
69
+ var _globalThis = (typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object' ? globalThis : window;
98
70
 
99
71
  /*
100
72
  * Copyright (c) 2018, salesforce.com, inc.
@@ -110,7 +82,9 @@
110
82
  var KEY__SHADOW_TOKEN = '$shadowToken$';
111
83
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
112
84
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
113
- /** version: 2.34.0 */
85
+ var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
86
+ var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
87
+ /** version: 2.35.1 */
114
88
 
115
89
  /*
116
90
  * Copyright (c) 2018, salesforce.com, inc.
@@ -424,7 +398,7 @@
424
398
  });
425
399
  }
426
400
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
427
- /** version: 2.34.0 */
401
+ /** version: 2.35.1 */
428
402
 
429
403
  /*
430
404
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1670,6 +1644,19 @@
1670
1644
  defineProperty(_globalThis, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, {
1671
1645
  value: isNativeShadowRootDefined
1672
1646
  });
1647
+ // The isUndefined check is because two copies of synthetic shadow may be loaded on the same page, and this
1648
+ // would throw an error if we tried to redefine it. Plus the whole point is to expose the native method.
1649
+ if (isUndefined(_globalThis[KEY__NATIVE_GET_ELEMENT_BY_ID])) {
1650
+ defineProperty(_globalThis, KEY__NATIVE_GET_ELEMENT_BY_ID, {
1651
+ value: getElementById
1652
+ });
1653
+ }
1654
+ // See note above.
1655
+ if (isUndefined(_globalThis[KEY__NATIVE_QUERY_SELECTOR_ALL])) {
1656
+ defineProperty(_globalThis, KEY__NATIVE_QUERY_SELECTOR_ALL, {
1657
+ value: querySelectorAll
1658
+ });
1659
+ }
1673
1660
  function getShadowRootResolver(node) {
1674
1661
  return node[KEY__SHADOW_RESOLVER];
1675
1662
  }
@@ -4490,6 +4477,6 @@
4490
4477
  },
4491
4478
  configurable: true
4492
4479
  });
4493
- /** version: 2.34.0 */
4480
+ /** version: 2.35.1 */
4494
4481
 
4495
4482
  })();
@@ -49,7 +49,7 @@
49
49
  const { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;
50
50
  const { isArray } = Array;
51
51
  const { concat: ArrayConcat, 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, some: ArraySome, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;
52
- const { charCodeAt: StringCharCodeAt, replace: StringReplace, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;
52
+ const { charCodeAt: StringCharCodeAt, replace: StringReplace, split: StringSplit, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;
53
53
  function isUndefined(obj) {
54
54
  return obj === undefined;
55
55
  }
@@ -93,41 +93,11 @@
93
93
  * SPDX-License-Identifier: MIT
94
94
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
95
95
  */
96
- // Inspired from: https://mathiasbynens.be/notes/globalthis
97
- const _globalThis = /*@__PURE__*/ (function () {
98
- // On recent browsers, `globalThis` is already defined. In this case return it directly.
99
- if (typeof globalThis === 'object') {
100
- return globalThis;
101
- }
102
- let _globalThis;
103
- try {
104
- // eslint-disable-next-line no-extend-native
105
- Object.defineProperty(Object.prototype, '__magic__', {
106
- get: function () {
107
- return this;
108
- },
109
- configurable: true,
110
- });
111
- // __magic__ is undefined in Safari 10 and IE10 and older.
112
- // @ts-ignore
113
- // eslint-disable-next-line no-undef
114
- _globalThis = __magic__;
115
- // @ts-ignore
116
- delete Object.prototype.__magic__;
117
- }
118
- catch (ex) {
119
- // In IE8, Object.defineProperty only works on DOM objects.
120
- }
121
- finally {
122
- // If the magic above fails for some reason we assume that we are in a legacy browser.
123
- // Assume `window` exists in this case.
124
- if (typeof _globalThis === 'undefined') {
125
- // @ts-ignore
126
- _globalThis = window;
127
- }
128
- }
129
- return _globalThis;
130
- })();
96
+ // See browser support for globalThis:
97
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility
98
+ /* istanbul ignore next */
99
+ // @ts-ignore
100
+ const _globalThis = typeof globalThis === 'object' ? globalThis : window;
131
101
 
132
102
  /*
133
103
  * Copyright (c) 2018, salesforce.com, inc.
@@ -143,6 +113,8 @@
143
113
  const KEY__SHADOW_TOKEN = '$shadowToken$';
144
114
  const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
145
115
  const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
116
+ const KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
117
+ const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
146
118
 
147
119
  /*
148
120
  * Copyright (c) 2018, salesforce.com, inc.
@@ -153,7 +125,7 @@
153
125
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
154
126
  // we can't use typeof since it will fail when transpiling.
155
127
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
156
- /** version: 2.34.0 */
128
+ /** version: 2.35.1 */
157
129
 
158
130
  /*
159
131
  * Copyright (c) 2018, salesforce.com, inc.
@@ -468,7 +440,7 @@
468
440
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
469
441
  }
470
442
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
471
- /** version: 2.34.0 */
443
+ /** version: 2.35.1 */
472
444
 
473
445
  /*
474
446
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1810,6 +1782,15 @@
1810
1782
  defineProperty(_globalThis, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, {
1811
1783
  value: isNativeShadowRootDefined,
1812
1784
  });
1785
+ // The isUndefined check is because two copies of synthetic shadow may be loaded on the same page, and this
1786
+ // would throw an error if we tried to redefine it. Plus the whole point is to expose the native method.
1787
+ if (isUndefined(_globalThis[KEY__NATIVE_GET_ELEMENT_BY_ID])) {
1788
+ defineProperty(_globalThis, KEY__NATIVE_GET_ELEMENT_BY_ID, { value: getElementById });
1789
+ }
1790
+ // See note above.
1791
+ if (isUndefined(_globalThis[KEY__NATIVE_QUERY_SELECTOR_ALL])) {
1792
+ defineProperty(_globalThis, KEY__NATIVE_QUERY_SELECTOR_ALL, { value: querySelectorAll });
1793
+ }
1813
1794
  function getShadowRootResolver(node) {
1814
1795
  return node[KEY__SHADOW_RESOLVER];
1815
1796
  }
@@ -4706,8 +4687,7 @@
4706
4687
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
4707
4688
  */
4708
4689
  // Only used in LWC's Karma tests
4709
- // @ts-ignore
4710
- if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
4690
+ if (process.env.NODE_ENV === 'test-karma-lwc') {
4711
4691
  window.addEventListener('test-dummy-flag', () => {
4712
4692
  let hasFlag = false;
4713
4693
  if (lwcRuntimeFlags.DUMMY_TEST_FLAG) {
@@ -4721,6 +4701,6 @@
4721
4701
  }));
4722
4702
  });
4723
4703
  }
4724
- /** version: 2.34.0 */
4704
+ /** version: 2.35.1 */
4725
4705
 
4726
4706
  }));