lwc 2.34.0 → 2.35.0

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 +742 -493
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +742 -492
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +777 -641
  5. package/dist/engine-dom/iife/es5/engine-dom.js +882 -618
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +732 -579
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +742 -492
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +777 -641
  11. package/dist/engine-dom/umd/es5/engine-dom.js +882 -618
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +732 -579
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +635 -603
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +635 -603
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +15 -4
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +15 -4
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +15 -4
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +18 -3
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +18 -3
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +15 -4
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +15 -4
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +18 -3
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +18 -3
  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
@@ -166,6 +166,8 @@
166
166
  var KEY__SHADOW_TOKEN = '$shadowToken$';
167
167
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
168
168
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
169
+ var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
170
+ var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
169
171
 
170
172
  /*
171
173
  * Copyright (c) 2018, salesforce.com, inc.
@@ -178,7 +180,7 @@
178
180
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
179
181
  return Symbol('x').toString() === 'Symbol(x)';
180
182
  }();
181
- /** version: 2.34.0 */
183
+ /** version: 2.35.0 */
182
184
 
183
185
  /*
184
186
  * Copyright (c) 2018, salesforce.com, inc.
@@ -494,7 +496,7 @@
494
496
  });
495
497
  }
496
498
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
497
- /** version: 2.34.0 */
499
+ /** version: 2.35.0 */
498
500
 
499
501
  /*
500
502
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1801,6 +1803,19 @@
1801
1803
  defineProperty(_globalThis, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, {
1802
1804
  value: isNativeShadowRootDefined
1803
1805
  });
1806
+ // The isUndefined check is because two copies of synthetic shadow may be loaded on the same page, and this
1807
+ // would throw an error if we tried to redefine it. Plus the whole point is to expose the native method.
1808
+ if (isUndefined(_globalThis[KEY__NATIVE_GET_ELEMENT_BY_ID])) {
1809
+ defineProperty(_globalThis, KEY__NATIVE_GET_ELEMENT_BY_ID, {
1810
+ value: getElementById
1811
+ });
1812
+ }
1813
+ // See note above.
1814
+ if (isUndefined(_globalThis[KEY__NATIVE_QUERY_SELECTOR_ALL])) {
1815
+ defineProperty(_globalThis, KEY__NATIVE_QUERY_SELECTOR_ALL, {
1816
+ value: querySelectorAll
1817
+ });
1818
+ }
1804
1819
  function getShadowRootResolver(node) {
1805
1820
  return node[KEY__SHADOW_RESOLVER];
1806
1821
  }
@@ -4692,6 +4707,6 @@
4692
4707
  }));
4693
4708
  });
4694
4709
  }
4695
- /** version: 2.34.0 */
4710
+ /** version: 2.35.0 */
4696
4711
 
4697
4712
  }));
@@ -1,4 +1,4 @@
1
- !function(e){"function"==typeof define&&define.amd?define(e):e()}((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(e){"function"==typeof define&&define.amd?define(e):e()}((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 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="$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"),Pe=Re?Re.get:null,De=Re?Re.set:null,Ie=f(HTMLElement.prototype,"outerText"),Ae=Ie?Ie.get:null,_e=Ie?Ie.set:null,Be=h.call(Element.prototype,"innerHTML")?f(Element.prototype,"innerHTML"):f(HTMLElement.prototype,"innerHTML"),$e=Be.get,xe=Be.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;_.lwcRuntimeFlags||Object.defineProperty(_,"lwcRuntimeFlags",{value:u(null)});var Rt=_.lwcRuntimeFlags,Pt="$$HostElementKey$$",Dt="$$ShadowedNodeKey$$";function It(e,t,n){var r=e,l=n.value;r[t]=l}function At(e){return e[Pt]}function _t(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 Bt(e){return e[Dt]}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=Bt(e),r=t instanceof Element?t:pe.call(t);!O(r)&&r!==e;){var l=_t(r),o=pe.call(r);if(l===n)return Wt(r);if(o===e)return!1;if(O(o)||_t(o)===l)r=o;else{if(!Wt(o))return!1;if(!O(r=Ft(xt(o)))){if(r===e)return!0;if(_t(r)===n)return!0}}}return!1}function Ft(e){if(!(e instanceof G))return null;var t=_t(e);if(C(t))return null;for(var n=e;!O(n)&&Bt(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=_t(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 Bt(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(_t(e)===_t(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 Pn(this).length>0}function En(){return Pn(this)[0]||null}function wn(){var e=Pn(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=Pn(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 Pn=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 Dn=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 _n(e){if(!function(e){return P(e)||D(e)&&!O(e)&&P(e.handleEvent)}(e))return e;var t=Dn.get(e);return C(t)&&(t=function(t){var n=Je.call(t);if(An(t,kn(t),n))return P(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Dn.set(e,t)),t}var Bn=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(!P(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(!P(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)}))}Bn.set(e,1),u(1),R(t)&&R(n)&&(Bn.set(e,0),u(0)),Bn.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){P(t)&&Kn(this,e,Gn(t))}function Xn(e,t,n){P(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[B]}function Zn(e,t){e[B]=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,B,{set:function(e){var t,n;C(e)||(this[$]=e,t=this,n=e.nodeKey,It(t,Pt,{value:n,configurable:!0}))},get:function(){return this[$]},configurable:!0,enumerable:!0}),s(_,"$isNativeShadowRootDefined$",{value:dt}),C(_[j])&&s(_,j,{value:it}),C(_[W])&&s(_,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,Dt,{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){P(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){P(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 Pn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=Pn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return Pn(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=Pn(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=Pn(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 D(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$$",Pr="$$lwcNodeObservers$$",Dr=new WeakMap;function Ir(e){return e[Pr]}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 _r(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 Br(e,t){return w.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C(Bt(r)))_r(t,r)&&E.call(e,n);else if(l.length>0){var a=l[0];if(_r(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(_t(r)===_t(c)&&_r(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=Br(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]=_n(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]=_n(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===Bn.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=Dr.get(this);C(t)||(M.call(t,(function(t){var n=t[Pr];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[Pr]=n),-1===d.call(r,this)&&E.call(r,this),lr(e)&&(e=e.host),Dr.has(this)){var l=Dr.get(this);-1===d.call(l,e)&&E.call(l,e)}else Dr.set(this,[e]);return Or.call(this,e,t)},$r.prototype.takeRecords=function(){return Br(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]=_n(r[1])),Ct.apply(this,r)}var l=_n(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]=_n(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===Bn.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)?[]:Bt(e)?Kt(e,t):Yt(l,t)}else n=v.call(t,(function(e){return _t(e)===r}));return n}function Qr(){for(var e=Pn(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(Bt(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 _t(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(Bt(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 _t(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 Pl(e,t){e[B]=t;for(var n=ge.call(e),r=0,l=n.length;r<l;r++)Pl(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!==Pe&&null!==De&&s(HTMLElement.prototype,"innerText",{get:function(){return Pe.call(this)},set:function(e){De.call(this,e)},enumerable:!0,configurable:!0}),null!==Ae&&null!==_e&&s(HTMLElement.prototype,"outerText",{get:function(){return Ae.call(this)},set:function(e){_e.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&&Pl(this,this[B]);this[x]=e},get:function(){return this[x]},configurable:!0});var Dl,Il="$$DomManualKey$$",Al=function(){},_l={childList:!0};function Bl(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(Dl,e,_l);for(var l=ge.call(e),o=0,a=l.length;o<a;o+=1)Bl(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||Bl(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&&Bl(f,l,o)}}))}))}s(Element.prototype,"$domManual$",{set:function(e){this[Il]=e,H(e)&&function(e){if(C(Dl)&&(Dl=$l()),C(Jn(e)))throw new Error("Invalid Element");vt.call(Dl,e,_l)}(this)},get:function(){return this[Il]},configurable:!0})}));
@@ -112,7 +112,9 @@
112
112
  var KEY__SHADOW_TOKEN = '$shadowToken$';
113
113
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
114
114
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
115
- /** version: 2.34.0 */
115
+ var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
116
+ var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
117
+ /** version: 2.35.0 */
116
118
 
117
119
  /*
118
120
  * Copyright (c) 2018, salesforce.com, inc.
@@ -426,7 +428,7 @@
426
428
  });
427
429
  }
428
430
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
429
- /** version: 2.34.0 */
431
+ /** version: 2.35.0 */
430
432
 
431
433
  /*
432
434
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1672,6 +1674,19 @@
1672
1674
  defineProperty(_globalThis, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, {
1673
1675
  value: isNativeShadowRootDefined
1674
1676
  });
1677
+ // The isUndefined check is because two copies of synthetic shadow may be loaded on the same page, and this
1678
+ // would throw an error if we tried to redefine it. Plus the whole point is to expose the native method.
1679
+ if (isUndefined(_globalThis[KEY__NATIVE_GET_ELEMENT_BY_ID])) {
1680
+ defineProperty(_globalThis, KEY__NATIVE_GET_ELEMENT_BY_ID, {
1681
+ value: getElementById
1682
+ });
1683
+ }
1684
+ // See note above.
1685
+ if (isUndefined(_globalThis[KEY__NATIVE_QUERY_SELECTOR_ALL])) {
1686
+ defineProperty(_globalThis, KEY__NATIVE_QUERY_SELECTOR_ALL, {
1687
+ value: querySelectorAll
1688
+ });
1689
+ }
1675
1690
  function getShadowRootResolver(node) {
1676
1691
  return node[KEY__SHADOW_RESOLVER];
1677
1692
  }
@@ -4492,6 +4507,6 @@
4492
4507
  },
4493
4508
  configurable: true
4494
4509
  });
4495
- /** version: 2.34.0 */
4510
+ /** version: 2.35.0 */
4496
4511
 
4497
4512
  }));
@@ -7,7 +7,7 @@
7
7
  function isUndefined(obj) {
8
8
  return obj === undefined;
9
9
  }
10
- /** version: 2.34.0 */
10
+ /** version: 2.35.0 */
11
11
 
12
12
  /*
13
13
  * Copyright (c) 2018, salesforce.com, inc.
@@ -181,6 +181,6 @@ class LegacyWireAdapterBridge {
181
181
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
182
182
  }
183
183
  }
184
- /** version: 2.34.0 */
184
+ /** version: 2.35.0 */
185
185
 
186
186
  export { ValueChangedEvent, register, registerWireService };
@@ -10,7 +10,7 @@ var WireService = (function (exports) {
10
10
  function isUndefined(obj) {
11
11
  return obj === undefined;
12
12
  }
13
- /** version: 2.34.0 */
13
+ /** version: 2.35.0 */
14
14
 
15
15
  /*
16
16
  * Copyright (c) 2018, salesforce.com, inc.
@@ -184,7 +184,7 @@ var WireService = (function (exports) {
184
184
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
185
185
  }
186
186
  }
187
- /** version: 2.34.0 */
187
+ /** version: 2.35.0 */
188
188
 
189
189
  exports.ValueChangedEvent = ValueChangedEvent;
190
190
  exports.register = register;
@@ -10,7 +10,7 @@ var WireService = (function (exports) {
10
10
  function isUndefined(obj) {
11
11
  return obj === undefined;
12
12
  }
13
- /** version: 2.34.0 */
13
+ /** version: 2.35.0 */
14
14
 
15
15
  /*
16
16
  * Copyright (c) 2018, salesforce.com, inc.
@@ -184,7 +184,7 @@ var WireService = (function (exports) {
184
184
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
185
185
  }
186
186
  }
187
- /** version: 2.34.0 */
187
+ /** version: 2.35.0 */
188
188
 
189
189
  exports.ValueChangedEvent = ValueChangedEvent;
190
190
  exports.register = register;
@@ -23,7 +23,7 @@ var WireService = (function (exports) {
23
23
  function isUndefined(obj) {
24
24
  return obj === undefined;
25
25
  }
26
- /** version: 2.34.0 */
26
+ /** version: 2.35.0 */
27
27
 
28
28
  /*
29
29
  * Copyright (c) 2018, salesforce.com, inc.
@@ -227,7 +227,7 @@ var WireService = (function (exports) {
227
227
  }]);
228
228
  return LegacyWireAdapterBridge;
229
229
  }();
230
- /** version: 2.34.0 */
230
+ /** version: 2.35.0 */
231
231
 
232
232
  exports.ValueChangedEvent = ValueChangedEvent;
233
233
  exports.register = register;
@@ -23,7 +23,7 @@ var WireService = (function (exports) {
23
23
  function isUndefined(obj) {
24
24
  return obj === undefined;
25
25
  }
26
- /** version: 2.34.0 */
26
+ /** version: 2.35.0 */
27
27
 
28
28
  /*
29
29
  * Copyright (c) 2018, salesforce.com, inc.
@@ -227,7 +227,7 @@ var WireService = (function (exports) {
227
227
  }]);
228
228
  return LegacyWireAdapterBridge;
229
229
  }();
230
- /** version: 2.34.0 */
230
+ /** version: 2.35.0 */
231
231
 
232
232
  exports.ValueChangedEvent = ValueChangedEvent;
233
233
  exports.register = register;
@@ -13,7 +13,7 @@
13
13
  function isUndefined(obj) {
14
14
  return obj === undefined;
15
15
  }
16
- /** version: 2.34.0 */
16
+ /** version: 2.35.0 */
17
17
 
18
18
  /*
19
19
  * Copyright (c) 2018, salesforce.com, inc.
@@ -187,7 +187,7 @@
187
187
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
188
188
  }
189
189
  }
190
- /** version: 2.34.0 */
190
+ /** version: 2.35.0 */
191
191
 
192
192
  exports.ValueChangedEvent = ValueChangedEvent;
193
193
  exports.register = register;
@@ -13,7 +13,7 @@
13
13
  function isUndefined(obj) {
14
14
  return obj === undefined;
15
15
  }
16
- /** version: 2.34.0 */
16
+ /** version: 2.35.0 */
17
17
 
18
18
  /*
19
19
  * Copyright (c) 2018, salesforce.com, inc.
@@ -187,7 +187,7 @@
187
187
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
188
188
  }
189
189
  }
190
- /** version: 2.34.0 */
190
+ /** version: 2.35.0 */
191
191
 
192
192
  exports.ValueChangedEvent = ValueChangedEvent;
193
193
  exports.register = register;
@@ -26,7 +26,7 @@
26
26
  function isUndefined(obj) {
27
27
  return obj === undefined;
28
28
  }
29
- /** version: 2.34.0 */
29
+ /** version: 2.35.0 */
30
30
 
31
31
  /*
32
32
  * Copyright (c) 2018, salesforce.com, inc.
@@ -230,7 +230,7 @@
230
230
  }]);
231
231
  return LegacyWireAdapterBridge;
232
232
  }();
233
- /** version: 2.34.0 */
233
+ /** version: 2.35.0 */
234
234
 
235
235
  exports.ValueChangedEvent = ValueChangedEvent;
236
236
  exports.register = register;
@@ -26,7 +26,7 @@
26
26
  function isUndefined(obj) {
27
27
  return obj === undefined;
28
28
  }
29
- /** version: 2.34.0 */
29
+ /** version: 2.35.0 */
30
30
 
31
31
  /*
32
32
  * Copyright (c) 2018, salesforce.com, inc.
@@ -230,7 +230,7 @@
230
230
  }]);
231
231
  return LegacyWireAdapterBridge;
232
232
  }();
233
- /** version: 2.34.0 */
233
+ /** version: 2.35.0 */
234
234
 
235
235
  exports.ValueChangedEvent = ValueChangedEvent;
236
236
  exports.register = register;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lwc",
3
- "version": "2.34.0",
3
+ "version": "2.35.0",
4
4
  "description": "Lightning Web Components (LWC)",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -41,12 +41,12 @@
41
41
  ]
42
42
  },
43
43
  "dependencies": {
44
- "@lwc/compiler": "2.34.0",
45
- "@lwc/engine-dom": "2.34.0",
46
- "@lwc/engine-server": "2.34.0",
47
- "@lwc/features": "2.34.0",
48
- "@lwc/synthetic-shadow": "2.34.0",
49
- "@lwc/wire-service": "2.34.0"
44
+ "@lwc/compiler": "2.35.0",
45
+ "@lwc/engine-dom": "2.35.0",
46
+ "@lwc/engine-server": "2.35.0",
47
+ "@lwc/features": "2.35.0",
48
+ "@lwc/synthetic-shadow": "2.35.0",
49
+ "@lwc/wire-service": "2.35.0"
50
50
  },
51
51
  "nx": {
52
52
  "targets": {