lwc 2.35.0 → 2.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +48 -121
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +48 -121
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +87 -61
  5. package/dist/engine-dom/iife/es5/engine-dom.js +48 -119
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +89 -60
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +48 -121
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +87 -61
  11. package/dist/engine-dom/umd/es5/engine-dom.js +48 -119
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +89 -60
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +45 -134
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +45 -134
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +9 -40
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +9 -40
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +8 -38
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +9 -38
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +8 -36
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +9 -40
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +8 -38
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +9 -38
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +8 -36
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  34. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  35. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  36. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  37. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  38. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  39. package/package.json +7 -7
@@ -39,41 +39,11 @@
39
39
  * SPDX-License-Identifier: MIT
40
40
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
41
41
  */
42
- // Inspired from: https://mathiasbynens.be/notes/globalthis
43
- const _globalThis = /*@__PURE__*/ (function () {
44
- // On recent browsers, `globalThis` is already defined. In this case return it directly.
45
- if (typeof globalThis === 'object') {
46
- return globalThis;
47
- }
48
- let _globalThis;
49
- try {
50
- // eslint-disable-next-line no-extend-native
51
- Object.defineProperty(Object.prototype, '__magic__', {
52
- get: function () {
53
- return this;
54
- },
55
- configurable: true,
56
- });
57
- // __magic__ is undefined in Safari 10 and IE10 and older.
58
- // @ts-ignore
59
- // eslint-disable-next-line no-undef
60
- _globalThis = __magic__;
61
- // @ts-ignore
62
- delete Object.prototype.__magic__;
63
- }
64
- catch (ex) {
65
- // In IE8, Object.defineProperty only works on DOM objects.
66
- }
67
- finally {
68
- // If the magic above fails for some reason we assume that we are in a legacy browser.
69
- // Assume `window` exists in this case.
70
- if (typeof _globalThis === 'undefined') {
71
- // @ts-ignore
72
- _globalThis = window;
73
- }
74
- }
75
- return _globalThis;
76
- })();
42
+ // See browser support for globalThis:
43
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility
44
+ /* istanbul ignore next */
45
+ // @ts-ignore
46
+ const _globalThis = typeof globalThis === 'object' ? globalThis : window;
77
47
 
78
48
  /*
79
49
  * Copyright (c) 2018, salesforce.com, inc.
@@ -91,7 +61,7 @@
91
61
  const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
92
62
  const KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
93
63
  const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
94
- /** version: 2.35.0 */
64
+ /** version: 2.35.1 */
95
65
 
96
66
  /*
97
67
  * Copyright (c) 2018, salesforce.com, inc.
@@ -406,7 +376,7 @@
406
376
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
407
377
  }
408
378
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
409
- /** version: 2.35.0 */
379
+ /** version: 2.35.1 */
410
380
 
411
381
  /*
412
382
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4531,6 +4501,6 @@
4531
4501
  },
4532
4502
  configurable: true,
4533
4503
  });
4534
- /** version: 2.35.0 */
4504
+ /** version: 2.35.1 */
4535
4505
 
4536
4506
  }));
@@ -118,39 +118,11 @@
118
118
  * SPDX-License-Identifier: MIT
119
119
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
120
120
  */
121
- // Inspired from: https://mathiasbynens.be/notes/globalthis
122
- var _globalThis = /*@__PURE__*/function () {
123
- // On recent browsers, `globalThis` is already defined. In this case return it directly.
124
- if ((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object') {
125
- return globalThis;
126
- }
127
- var _globalThis;
128
- try {
129
- // eslint-disable-next-line no-extend-native
130
- Object.defineProperty(Object.prototype, '__magic__', {
131
- get: function get() {
132
- return this;
133
- },
134
- configurable: true
135
- });
136
- // __magic__ is undefined in Safari 10 and IE10 and older.
137
- // @ts-ignore
138
- // eslint-disable-next-line no-undef
139
- _globalThis = __magic__;
140
- // @ts-ignore
141
- delete Object.prototype.__magic__;
142
- } catch (ex) {
143
- // In IE8, Object.defineProperty only works on DOM objects.
144
- } finally {
145
- // If the magic above fails for some reason we assume that we are in a legacy browser.
146
- // Assume `window` exists in this case.
147
- if (typeof _globalThis === 'undefined') {
148
- // @ts-ignore
149
- _globalThis = window;
150
- }
151
- }
152
- return _globalThis;
153
- }();
121
+ // See browser support for globalThis:
122
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility
123
+ /* istanbul ignore next */
124
+ // @ts-ignore
125
+ var _globalThis = (typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object' ? globalThis : window;
154
126
 
155
127
  /*
156
128
  * Copyright (c) 2018, salesforce.com, inc.
@@ -180,7 +152,7 @@
180
152
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
181
153
  return Symbol('x').toString() === 'Symbol(x)';
182
154
  }();
183
- /** version: 2.35.0 */
155
+ /** version: 2.35.1 */
184
156
 
185
157
  /*
186
158
  * Copyright (c) 2018, salesforce.com, inc.
@@ -496,7 +468,7 @@
496
468
  });
497
469
  }
498
470
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
499
- /** version: 2.35.0 */
471
+ /** version: 2.35.1 */
500
472
 
501
473
  /*
502
474
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4692,8 +4664,7 @@
4692
4664
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
4693
4665
  */
4694
4666
  // Only used in LWC's Karma tests
4695
- // @ts-ignore
4696
- if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
4667
+ if (process.env.NODE_ENV === 'test-karma-lwc') {
4697
4668
  window.addEventListener('test-dummy-flag', function () {
4698
4669
  var hasFlag = false;
4699
4670
  if (lwcRuntimeFlags.DUMMY_TEST_FLAG) {
@@ -4707,6 +4678,6 @@
4707
4678
  }));
4708
4679
  });
4709
4680
  }
4710
- /** version: 2.35.0 */
4681
+ /** version: 2.35.1 */
4711
4682
 
4712
4683
  }));
@@ -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,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}
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 D(e){return"function"==typeof e}function P(e){return"object"===a(e)}var I,A,B="object"===("undefined"==typeof globalThis?"undefined":a(globalThis))?globalThis:window,$="$shadowResolver$",_="$$ShadowResolverKey$$",x="$shadowStaticNodeKey$",k="$shadowToken$",F="$$ShadowTokenKey$$",j="$nativeGetElementById$",W="$nativeQuerySelectorAll$",G=Node,U=G.prototype,K=G.DOCUMENT_POSITION_CONTAINED_BY,q=G.DOCUMENT_POSITION_PRECEDING,Y=G.DOCUMENT_POSITION_FOLLOWING,X=G.ELEMENT_NODE,V=G.TEXT_NODE,Q=G.CDATA_SECTION_NODE,z=G.PROCESSING_INSTRUCTION_NODE,J=G.COMMENT_NODE,Z=U.appendChild,ee=U.cloneNode,te=U.compareDocumentPosition,ne=U.insertBefore,re=U.removeChild,le=U.replaceChild,oe=U.hasChildNodes,ae=HTMLElement.prototype.contains,ie=f(U,"firstChild").get,ue=f(U,"lastChild").get,ce=f(U,"textContent").get,se=f(U,"parentNode").get,fe=f(U,"ownerDocument").get,pe=h.call(U,"parentElement")?f(U,"parentElement").get:f(HTMLElement.prototype,"parentElement").get,he=f(U,"textContent").set,ge=h.call(U,"childNodes")?f(U,"childNodes").get:f(HTMLElement.prototype,"childNodes").get,me=h.call(U,"isConnected")?f(U,"isConnected").get:function(){var e=fe.call(this);return null===e||0!=(te.call(e,this)&K)},ve=Element.prototype,be=ve.getAttribute,de=ve.getBoundingClientRect,ye=ve.getElementsByTagName,Ee=ve.getElementsByTagNameNS,we=ve.hasAttribute,Te=ve.querySelector,Ne=ve.querySelectorAll,Le=ve.removeAttribute,Me=ve.setAttribute,Se=h.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ce=f(Element.prototype,"childElementCount").get,Oe=f(Element.prototype,"firstElementChild").get,He=f(Element.prototype,"lastElementChild").get,Re=f(HTMLElement.prototype,"innerText"),De=Re?Re.get:null,Pe=Re?Re.set:null,Ie=f(HTMLElement.prototype,"outerText"),Ae=Ie?Ie.get:null,Be=Ie?Ie.set:null,$e=h.call(Element.prototype,"innerHTML")?f(Element.prototype,"innerHTML"):f(HTMLElement.prototype,"innerHTML"),_e=$e.get,xe=$e.set,ke=h.call(Element.prototype,"outerHTML")?f(Element.prototype,"outerHTML"):f(HTMLElement.prototype,"outerHTML"),Fe=ke.get,je=ke.set,We=f(Element.prototype,"tagName").get,Ge=f(HTMLElement.prototype,"tabIndex"),Ue=Ge.get,Ke=Ge.set,qe=h.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,Ye=h.call(Element.prototype,"children")?f(Element.prototype,"children").get:f(HTMLElement.prototype,"children").get,Xe=HTMLElement.prototype.getElementsByClassName,Ve=h.call(Element.prototype,"shadowRoot")?f(Element.prototype,"shadowRoot").get:function(){return null},Qe=h.call(Element.prototype,"assignedSlot")?f(Element.prototype,"assignedSlot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(I=HTMLSlotElement.prototype.assignedNodes,A=HTMLSlotElement.prototype.assignedElements):(I=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},A=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var ze=f(Event.prototype,"target").get,Je=f(Event.prototype,"currentTarget").get,Ze=f(FocusEvent.prototype,"relatedTarget").get,et=h.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},tt=f(Document.prototype,"activeElement").get,nt=h.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,rt=h.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,lt=f(Document.prototype,"defaultView").get,ot=Document.prototype,at=ot.querySelectorAll,it=ot.getElementById,ut=ot.getElementsByClassName,ct=ot.getElementsByTagName,st=ot.getElementsByTagNameNS,ft=HTMLDocument.prototype.getElementsByName,pt=window,ht=pt.addEventListener,gt=pt.removeEventListener,mt=MutationObserver,vt=mt.prototype.observe,bt=null;"undefined"!=typeof ShadowRoot&&(bt=ShadowRoot);var dt=!O(bt),yt=O(bt)?function(){return!1}:function(e){return e instanceof bt};var Et,wt=Document.prototype.createElement;function Tt(e){var t=fe.call(e);return null===t?e:t}function Nt(e){var t=Tt(e),n=lt.call(t);if(null===n)throw new TypeError;return n}function Lt(e){if(C(Et)){var t=Tt(e);Et=t.body&&"temporary-bypass"===be.call(t.body,"data-global-patching-bypass")}return H(Et)}function Mt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=l((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));g(e,HTMLElement.constructor),g(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,s(Document.prototype,"createElement",{value:function(t,n){var r=wt.apply(this,N.call(arguments));return 4===t.length&&115===S.call(t,0)&&108===S.call(t,1)&&111===S.call(t,2)&&116===S.call(t,3)&&g(r,e.prototype),r}})}();var St="undefined"!=typeof EventTarget?EventTarget.prototype:G.prototype,Ct=St.addEventListener,Ot=St.dispatchEvent,Ht=St.removeEventListener;B.lwcRuntimeFlags||Object.defineProperty(B,"lwcRuntimeFlags",{value:u(null)});var Rt=B.lwcRuntimeFlags,Dt="$$HostElementKey$$",Pt="$$ShadowedNodeKey$$";function It(e,t,n){var r=e,l=n.value;r[t]=l}function At(e){return e[Dt]}function Bt(e){for(var t,n=e;!O(n);){if(!C(t=At(n)))return t;if(n=se.call(n),Rt.ENABLE_LIGHT_GET_ROOT_NODE_PATCH&&!O(n)&&jt(n))return}}function $t(e){return e[Pt]}function _t(e){return!C(At(e))}function xt(e){for(var t=pe.call(e);!O(t)&&Wt(t);)e=t,t=pe.call(e);return e}function kt(e,t){for(var n=$t(e),r=t instanceof Element?t:pe.call(t);!O(r)&&r!==e;){var l=Bt(r),o=pe.call(r);if(l===n)return Wt(r);if(o===e)return!1;if(O(o)||Bt(o)===l)r=o;else{if(!Wt(o))return!1;if(!O(r=Ft(xt(o)))){if(r===e)return!0;if(Bt(r)===n)return!0}}}return!1}function Ft(e){if(!(e instanceof G))return null;var t=Bt(e);if(C(t))return null;for(var n=e;!O(n)&&$t(n)!==t;)n=se.call(n);return O(n)?null:n}function jt(e){return Wt(e)&&_t(e)}function Wt(e){return e instanceof HTMLSlotElement}function Gt(e,t){var n=Bt(t);if(C(n)){if(Rt.ENABLE_LIGHT_GET_ROOT_NODE_PATCH){var r=se.call(t);if(!O(r)&&jt(r))return!1}return!0}return $t(e)===n}function Ut(e){var t=tr(e);return Yt(t,Mt(ge.call(t)))}function Kt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!Gt(e,o)&&kt(e,o)&&E.call(n,o)}return n}function qt(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!Gt(e,l)&&kt(e,l))return l}return null}function Yt(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];Gt(e,o)&&E.call(n,o)}return n}function Xt(e,t){for(var n=0,r=t.length;n<r;n+=1)if(Gt(e,t[n]))return t[n];return null}function Vt(e){if(!rr(e)&&!Wt(e))return Mt(ge.call(e));if(rr(e)){var t=Mt(Ne.call(e,"slot")),n=Jn(nr(e));return w.call(t,(function(e,t){return n===Jn(t)&&E.apply(e,Qt(t)),e}),[])}var r=Mt(ge.call(e)),l=Jn(e);return v.call(r,(function(e){return l===Jn(e)}))}function Qt(e){var t=Ft(e);if(O(t))return[];var n=Mt(ge.call(e));return v.call(n,(function(e){return!_t(e)||!Gt(t,e)}))}var zt=/[&\u00A0"]/g,Jt=/[&\u00A0<>]/g,Zt=String.prototype,en=Zt.replace,tn=Zt.toLowerCase;function nn(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function rn(e){return en.call(e,zt,nn)}var ln=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),on=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function an(e){switch(e.nodeType){case X:for(var t,n=e.attributes,r=We.call(e),l="<"+tn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+rn(t.value)+'"';return l+=">",ln.has(r)?l:l+function(e){for(var t="",n=Vt(e),r=0,l=n.length;r<l;r+=1)t+=an(n[r]);return t}(e)+"</"+tn.call(r)+">";case V:var a=e.data,i=e.parentNode;return i instanceof Element&&on.has(We.call(i))?a:function(e){return en.call(e,Jt,nn)}(a);case Q:return"<!CDATA[[".concat(e.data,"]]>");case z:return"<?".concat(e.target," ").concat(e.data,"?>");case J:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function un(e){if(e.nodeType===X){for(var t=Vt(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==J&&(n+=un(o))}return n}return e.nodeValue}var cn=new WeakMap;function sn(){throw new TypeError("Illegal constructor")}function fn(e){var t=u(sn.prototype);return cn.set(t,e),M.call(e,(function(e,n){s(t,n,{value:e,enumerable:!0,configurable:!0})})),t}sn.prototype=u(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:sn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return cn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){M.call(cn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return y.call(cn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return y.call(cn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return cn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=cn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),g(sn,NodeList);var pn=function(e,t){for(var n;!C(n=e.host);){var r=n.getRootNode();if(r===t)return n;e=r}};function hn(e,t,n,r){var l=rt.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!C(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!O(l))for(var i=0;i<l.length;i++){var u=l[i];if(!jt(u)){var c=u.getRootNode();if(-1===d.call(a,c)){var s=pn(c,a[0]);C(s)||-1!==d.call(l,s)||-1!==d.call(o,s)||E.call(o,s)}else E.call(o,u)}}return o}var gn=new WeakMap;function mn(){throw new TypeError("Illegal constructor")}function vn(e){var t=u(mn.prototype);return gn.set(t,e),M.call(e,(function(e,n){s(t,n,{value:e,enumerable:!0,configurable:!0})})),t}function bn(e){return jt(e)||rr(e)}function dn(e,t){var n=Ft(e);if(t===n)return nr(n);if(t instanceof Element){if(Bt(e)===Bt(t))return t;if(!O(n)&&Wt(t)){var r=Ft(t);if(!O(r)&&Gt(n,r))return r}}return null}function yn(){return Dn(this).length>0}function En(){return Dn(this)[0]||null}function wn(){var e=Dn(this);return e[e.length-1]||null}function Tn(){return un(this)}function Nn(){var e=se.call(this);return O(e)?e:dn(this,e)}function Ln(){var e=se.call(this);if(O(e))return null;var t=dn(this,e);return t instanceof Element?t:null}function Mn(e){return this===e?0:this.getRootNode()===e?10:At(this)!==At(e)?35:te.call(this,e)}function Sn(e){return null!=e&&At(this)===At(e)&&0!=(te.call(this,e)&K)}function Cn(e){var t=ee.call(this,!1);if(!e)return t;for(var n=Dn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function On(){if(rr(this)){var e=Ft(this);return fn(O(e)?[]:Yt(e,Vt(this)))}return ge.call(this)}mn.prototype=u(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:mn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return gn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=gn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===be.call(l,"id")||e===be.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),g(mn,HTMLCollection);var Hn=G.prototype.getRootNode,Rn=C(Hn)?function(){for(var e,t=this;!O(e=se.call(t));)t=e;return t}:Hn;c(G.prototype,{firstChild:{get:function(){return bn(this)?En.call(this):ie.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return bn(this)?wn.call(this):ue.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return _t(this)||rr(this)?Tn.call(this):ce.call(this)},set:function(e){he.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(_t(this))return Nn.call(this);var e=se.call(this);return!O(e)&&jt(e)?Ft(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(_t(this))return Ln.call(this);var e=pe.call(this);return!O(e)&&jt(e)?Ft(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return bn(this)?On.call(this):ge.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return bn(this)?yn.call(this):oe.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return Lt(this)?te.call(this,e):Mn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||null!=e&&(_t(this)||rr(this)?Sn.call(this,e):ae.call(this,e))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return _t(this)||rr(this)?Cn.call(this,e):ee.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return H(!C(e)&&!!e.composed)?Rn.call(this,e):O(n=Ft(t=this))?Rn.call(t):nr(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return me.call(this)}}});var Dn=function(e){return e.childNodes};h.call(HTMLElement.prototype,"contains")&&s(HTMLElement.prototype,"contains",f(G.prototype,"contains")),h.call(HTMLElement.prototype,"parentElement")&&s(HTMLElement.prototype,"parentElement",f(G.prototype,"parentElement"));var Pn=new WeakMap,In=new WeakMap;function An(e,t,n){if(t===n)return!0;var r=In.get(e);return C(r)&&(r=e.composedPath(),In.set(e,r)),r.includes(n)}function Bn(e){if(!function(e){return D(e)||P(e)&&!O(e)&&D(e.handleEvent)}(e))return e;var t=Pn.get(e);return C(t)&&(t=function(t){var n=Je.call(t);if(An(t,kn(t),n))return D(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Pn.set(e,t)),t}var $n=new WeakMap,_n=new WeakMap;function xn(e){var t=_n.get(e);return C(t)&&(t=u(null),_n.set(e,t)),t}function kn(e){var t;return null!==(t=cr.get(e))&&void 0!==t?t:ze.call(e)}var Fn=new WeakMap;function jn(e){if(!D(e))throw new TypeError;var t=Fn.get(e);return C(t)&&((t=function(t){var n=Je.call(t);yt(n)||(n=nr(n)),An(t,kn(t),n)&&e.call(n,t)}).placement=1,Fn.set(e,t)),t}var Wn=new WeakMap;function Gn(e){if(!D(e))throw new TypeError;var t=Wn.get(e);return C(t)&&((t=function(t){var n=Je.call(t);An(t,kn(t),n)&&e.call(n,t)}).placement=0,Wn.set(e,t)),t}function Un(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=xn(Je.call(e))[r];s(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),s(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var i=N.call(a);function u(n){M.call(i,(function(r){R(t)&&r.placement===n&&-1!==d.call(a,r)&&r.call(void 0,e)}))}$n.set(e,1),u(1),R(t)&&R(n)&&($n.set(e,0),u(0)),$n.set(e,2)}function Kn(e,t,n){var r=xn(e),l=r[t];C(l)&&(l=r[t]=[]),-1===d.call(l,n)&&(0===l.length&&Ct.call(e,t,Un),E.call(l,n))}function qn(e,t,n){var r,l;C(l=xn(e)[t])||-1===(r=d.call(l,n))||(L.call(l,r,1),0===l.length&&Ht.call(e,t,Un))}function Yn(e,t,n){D(t)&&Kn(this,e,Gn(t))}function Xn(e,t,n){D(t)&&qn(this,e,Gn(t))}var Vn=new WeakMap,Qn=document.createDocumentFragment;function zn(e){var t=Vn.get(e);if(C(t))throw new TypeError;return t}function Jn(e){return e[$]}function Zn(e,t){e[$]=t}function er(e){return zn(e).delegatesFocus}function tr(e){return zn(e).host}function nr(e){return zn(e).shadowRoot}function rr(e){var t=Vn.get(e);return!C(t)&&e===t.host}function lr(e){var t=Vn.get(e);return!C(t)&&e===t.shadowRoot}s(G.prototype,$,{set:function(e){var t,n;C(e)||(this[_]=e,t=this,n=e.nodeKey,It(t,Dt,{value:n,configurable:!0}))},get:function(){return this[_]},configurable:!0,enumerable:!0}),s(B,"$isNativeShadowRootDefined$",{value:dt}),C(B[j])&&s(B,j,{value:it}),C(B[W])&&s(B,W,{value:at});var or=0;function ar(e,t){if(Vn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=Tt(e),o=Qn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Vn.set(o,a),Vn.set(e,a);var i=function(){return o},u=i.nodeKey=or++;return It(e,Pt,{value:u}),Zn(o,i),g(o,fr.prototype),o}var ir={constructor:{writable:!0,configurable:!0,value:fr},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},ur={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=tr(this),t=Tt(e),n=tt.call(t);if(O(n))return n;if(0==(te.call(e,n)&K))return null;for(var r=n;!Gt(e,r);)r=pe.call(r);return Wt(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return zn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return gr(this,Tt(tr(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return hn(this,Tt(tr(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return tr(this)}},mode:{configurable:!0,get:function(){return zn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},cr=new WeakMap,sr={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ne.call(tr(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return re.call(tr(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Z.call(tr(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return le.call(tr(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){D(n)&&Kn(tr(e),t,jn(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return cr.set(e,this),Ot.apply(tr(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){D(n)&&qn(tr(e),t,jn(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return tr(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return fn(Ut(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=tr(this);return this===e?0:this.contains(e)?20:te.call(t,e)&K?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=tr(this);return 0!=(te.call(t,e)&K)&&Gt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return Dn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=Dn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return Dn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return me.call(tr(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return tr(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=Dn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==J&&(t+=un(l))}return t},set:function(e){var t=tr(this);he.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!C(e)&&H(e.composed)?tr(this).getRootNode(e):this}}};function fr(){throw new TypeError("Illegal constructor")}function pr(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof G))return r;n=e.getRootNode()}for(var l,o=e;!O(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=O(a)?o.parentNode:a}else o=!lr(o)&&!yt(o)||!t&&o===n?o instanceof G?o.parentNode:null:o.host;return l=e instanceof Window?e.document:Tt(e),r[r.length-1]===l&&r.push(window),r}
2
2
  /**
3
3
  @license
4
4
  Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
@@ -7,4 +7,4 @@
7
7
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
8
8
  Code distributed by Google as part of the polymer project is also
9
9
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
10
- */function 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})}));
10
+ */function hr(e,t){if(O(e))return null;for(var n,r,l,o,a=pr(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!lr(l)||!C(o)&&o>-1)return n;return null}function gr(e,t,n,r){var l=nt.call(t,n,r);return O(l)?l:hr(e,pr(l,!0))}i(ir,sr,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return vn(v.call(Ut(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,Xt(n=tr(this),Mt(Ne.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return fn((t=e,Yt(n=tr(this),Mt(Ne.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=Dn(this),t="",n=0,r=e.length;n<r;n+=1)t+=an(e[n]);return t},set:function(e){var t=tr(this);xe.call(t,e)}}},ur),fr.prototype=u(DocumentFragment.prototype,ir),s(fr,Symbol.hasInstance,{value:function(e){return P(e)&&!O(e)&&(yt(e)||p(e)===fr.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return gr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return hn(this,this,e,t)},s(Document.prototype,"activeElement",{get:function(){var e=tt.call(this);if(O(e))return e;for(;!C(At(e));)if(O(e=pe.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),s(Document.prototype,"getElementById",{value:function(){var e=it.apply(this,N.call(arguments));return O(e)?null:C(At(e))||Lt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"querySelector",{value:function(){var e=Mt(at.apply(this,N.call(arguments))),t=b.call(e,(function(e){return C(At(e))||Lt(e)}));return C(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"querySelectorAll",{value:function(){var e=Mt(at.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByClassName",{value:function(){var e=Mt(ut.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return vn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByTagName",{value:function(){var e=Mt(ct.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return vn(t)},writable:!0,enumerable:!0,configurable:!0}),s(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=Mt(st.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return vn(t)},writable:!0,enumerable:!0,configurable:!0}),s(f(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=Mt(ft.apply(this,N.call(arguments))),t=v.call(e,(function(e){return C(At(e))||Lt(e)}));return fn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:fr,configurable:!0,writable:!0});var mr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var vr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function br(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!mr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!mr.get.call(e)})()&&(HTMLElement.prototype.click=function(){Ct.call(this,"click",br);try{vr.value.call(this)}finally{Ht.call(this,"click",br)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=i(u(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var dr,yr,Er,wr,Tr=CustomEvent;function Nr(e,t){var n=new Tr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(Nr.prototype=Tr.prototype,window.CustomEvent=Nr,"undefined"!=typeof ClipboardEvent){var Lr=i(u(null),{copy:1,cut:1,paste:1});c(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===Lr[e]},configurable:!0,enumerable:!0}})}Er="undefined"!=typeof HTMLIFrameElement,wr="undefined"!=typeof Proxy&&H(Proxy.isCompat),Er&&wr&&(dr=f(HTMLIFrameElement.prototype,"contentWindow"),yr=dr.get,dr.get=function(){var e,t=yr.call(this);return O(t)||C(At(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},s(HTMLIFrameElement.prototype,"contentWindow",dr));var Mr=MutationObserver,Sr=Mr.prototype,Cr=Sr.disconnect,Or=Sr.observe,Hr=Sr.takeRecords,Rr="$$lwcObserverCallbackWrapper$$",Dr="$$lwcNodeObservers$$",Pr=new WeakMap;function Ir(e){return e[Dr]}function Ar(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,o=u(MutationRecord.prototype);return c(o,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),o}function Br(e,t){for(var n=t;!O(n);){var r=Ir(n);if(!C(r)&&(r[0]===e||-1!==d.call(r,e)))return!0;n=n.parentNode}return!1}function $r(e,t){return w.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C($t(r)))Br(t,r)&&E.call(e,n);else if(l.length>0){var a=l[0];if(Br(t,a)){var i=Ir(r);!i||i[0]!==t&&-1===d.call(i,t)?E.call(e,Ar(n)):E.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Bt(r)===Bt(c)&&Br(t,r))E.call(e,n);else if(u){var s=Ir(u);!s||s[0]!==t&&-1===d.call(s,t)||E.call(e,Ar(n))}}return e}),[])}function _r(e){var t=function(e){var t=e[Rr];return C(t)&&(t=e[Rr]=function(t,n){var r=$r(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new Mr(t)}function xr(e,t,n){if(arguments.length>1){var r=N.call(arguments);return r[1]=Bn(r[1]),ht.apply(this,r)}return ht.apply(this,arguments)}function kr(e,t,n){if(arguments.length>1){var r=N.call(arguments);r[1]=Bn(r[1]),gt.apply(this,r)}gt.apply(this,arguments)}function Fr(){var e=ze.call(this);if(!(e instanceof G))return e;var t=Tt(e),n=pr(e,this.composed),r=Je.call(this);if(!(r instanceof G))return O(r)&&C(At(e))?e:hr(t,n);if(r===t||r===t.body)return C(At(e))?e:hr(t,n);var l=r,o=n;rr(r)&&(1===$n.get(this)&&(l=nr(r)));return rr(e)&&cr.has(this)&&(o=pr(nr(e),this.composed)),hr(l,o)}function jr(){var e=ze.call(this);if(!(e instanceof G))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Vn.has(t));if(n&&!r)return et.call(this);if(O(Je.call(this)))return[];var l=e;return rr(e)&&cr.has(this)&&(l=nr(e)),pr(l,this.composed)}function Wr(e){var t=f(e.prototype,"relatedTarget").get;s(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(O(e))return null;if(!(e instanceof G&&_t(e)))return e;var n=Je.call(this);return O(n)&&(n=Tt(e)),hr(n,pr(e,!0))},enumerable:!0,configurable:!0})}_r.prototype=Mr.prototype,_r.prototype.disconnect=function(){var e=this;Cr.call(this);var t=Pr.get(this);C(t)||(M.call(t,(function(t){var n=t[Dr];if(!C(n)){var r=d.call(n,e);-1!==r&&L.call(n,r,1)}})),t.length=0)},_r.prototype.observe=function(e,t){var n,r=Ir(e);if(C(r)&&(n=r=[],e[Dr]=n),-1===d.call(r,this)&&E.call(r,this),lr(e)&&(e=e.host),Pr.has(this)){var l=Pr.get(this);-1===d.call(l,e)&&E.call(l,e)}else Pr.set(this,[e]);return Or.call(this,e,t)},_r.prototype.takeRecords=function(){return $r(Hr.call(this),this)},s(window,"MutationObserver",{value:_r,configurable:!0,writable:!0}),c(St,{addEventListener:{value:function(e,t,n){if(rr(this))return Yn.apply(this,arguments);if(arguments.length<2){var r=N.call(arguments);return r.length>1&&(r[1]=Bn(r[1])),Ct.apply(this,r)}var l=Bn(t);return Ct.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(rr(this))return Xn.apply(this,arguments);var r=N.call(arguments);arguments.length>1&&(r[1]=Bn(r[1])),Ht.apply(this,r),Ht.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&c(Window.prototype,{addEventListener:{value:xr,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:kr,enumerable:!0,writable:!0,configurable:!0}}),c(Event.prototype,{target:{get:Fr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Je.call(this);return O(e)?null:1===$n.get(this)?nr(e):e},enumerable:!0,configurable:!0},composedPath:{value:jr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Fr,enumerable:!0,configurable:!0},path:{get:jr,enumerable:!0,configurable:!0}}),Wr(FocusEvent),Wr(MouseEvent);var Gr,Ur=h.call(Text.prototype,"assignedSlot")?f(Text.prototype,"assignedSlot").get:function(){return null},Kr={childList:!0},qr=new WeakMap;function Yr(e){var t=Mt(ge.call(e));return w.call(t,(function(e,t){return t instanceof Element&&Wt(t)?E.apply(e,Yr(t)):E.call(e,t),e}),[])}function Xr(){var e=se.call(this);if(e instanceof Element){var t=Ve.call(e);if(yt(t))return this instanceof Text?Ur.call(this):Qe.call(this)}return!O(e)&&Wt(e)&&At(e)!==At(this)?e:null}function Vr(e,t){var n,r=At(e);if(C(r))n=e instanceof HTMLBodyElement?v.call(t,(function(t){return C(At(t))||Lt(e)})):N.call(t);else if(rr(e)){var l=Ft(e);n=O(l)?[]:$t(e)?Kt(e,t):Yt(l,t)}else n=v.call(t,(function(e){return Bt(e)===r}));return n}function Qr(){for(var e=Dn(this),t="",n=0,r=e.length;n<r;n+=1)t+=an(e[n]);return t}function zr(){return an(this)}function Jr(){var e=Ft(this),t=O(e)?[]:Yt(e,Vt(this));return vn(v.call(t,(function(e){return e instanceof Element})))}function Zr(){return this.children.length}function el(){return this.children[0]||null}function tl(){var e=this.children;return e.item(e.length-1)||null}function nl(e,t){var n;if(rr(e)){var r=Ft(e);n=C($t(e))?O(r)?[]:Yt(r,t):Kt(e,t)}else if(_t(e)){var l=At(e);n=C(l)?N.call(t):v.call(t,(function(e){return Bt(e)===l}))}else n=e instanceof HTMLBodyElement?v.call(t,(function(t){return C(At(t))||Lt(e)})):N.call(t);return n}c(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||qr.get(this)||(qr.set(this,!0),Gr||(Gr=new mt((function(e){var t=[];M.call(e,(function(e){var n=e.target;-1===d.call(t,n)&&(E.call(t,n),Ot.call(n,new CustomEvent("slotchange")))}))}))),vt.call(Gr,this,Kr))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(_t(this)){var t=!C(e)&&H(e.flatten),n=t?Yr(this):Qt(this);return v.call(n,(function(e){return e instanceof Element}))}return A.apply(this,N.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(_t(this)){var t=!C(e)&&H(e.flatten);return t?Yr(this):Qt(this)}return I.apply(this,N.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=be.call(this,"name");return O(e)?"":e},set:function(e){Me.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(_t(this)){var e=Ft(this);return fn(O(e)?[]:Yt(e,Vt(this)))}return ge.call(this)},enumerable:!0,configurable:!0}}),c(Text.prototype,{assignedSlot:{get:Xr,enumerable:!0,configurable:!0}}),c(Element.prototype,{innerHTML:{get:function(){return _t(this)||rr(this)?Qr.call(this):_e.call(this)},set:function(e){xe.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return _t(this)||rr(this)?zr.call(this):Fe.call(this)},set:function(e){je.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?ar(this,e):Se.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(rr(this)){var e=nr(this);if("open"===e.mode)return e}return Ve.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return bn(this)?Jr.call(this):Ye.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return bn(this)?Zr.call(this):Ce.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return bn(this)?el.call(this):Oe.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return bn(this)?tl.call(this):He.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Xr,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"innerHTML")&&s(HTMLElement.prototype,"innerHTML",f(Element.prototype,"innerHTML")),h.call(HTMLElement.prototype,"outerHTML")&&s(HTMLElement.prototype,"outerHTML",f(Element.prototype,"outerHTML")),h.call(HTMLElement.prototype,"children")&&s(HTMLElement.prototype,"children",f(Element.prototype,"children")),c(Element.prototype,{querySelector:{value:function(){var e=this,t=Mt(Ne.apply(this,N.call(arguments)));if(rr(this)){var n=Ft(this);return C($t(this))?O(n)?null:Xt(n,t):qt(this,t)}if(_t(this)){var r=At(this);if(C(r))return 0===t.length?null:t[0];var l=b.call(t,(function(e){return Bt(e)===r}));return C(l)?null:l}if(!(this instanceof HTMLBodyElement)){var o=t[0];return C(o)?null:o}var a=b.call(t,(function(t){return C(At(t))||Lt(e)}));return C(a)?null:a},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=Mt(Ne.apply(this,N.call(arguments))),t=nl(this,e);return fn(t)},writable:!0,enumerable:!0,configurable:!0}}),c(Element.prototype,{getElementsByClassName:{value:function(){var e=Mt(Xe.apply(this,N.call(arguments)));return vn(Vr(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=Mt(ye.apply(this,N.call(arguments)));return vn(Vr(this,e))},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=Mt(Ee.apply(this,N.call(arguments)));return vn(Vr(this,e))},writable:!0,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"getElementsByClassName")&&s(HTMLElement.prototype,"getElementsByClassName",f(Element.prototype,"getElementsByClassName"));var rl="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",ll=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function ol(e){return e.filter((function(e){return we.call(e,"tabindex")?"0"===be.call(e,"tabindex"):!ll.has(We.call(e))||!we.call(e,"disabled")}))}var al=new WeakMap;function il(e){return(!rr(e)||!er(e))&&(qe.call(e,rl)&&function(e){var t=de.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function ul(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=Mt(Ne.call(this,rl)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=Te.call(this,rl);O(a)||a.focus.apply(a,arguments)}}function cl(e){var t=Tt(e),n=ol(Mt(at.call(t,rl))),r=ol(Mt(Ne.call(e,rl))),l=r[0],o=r[r.length-1],a=d.call(n,e),i=a>-1?a:d.call(n,l),u=0===r.length?i+1:d.call(n,o)+1;return{prev:N.call(n,0,i),inner:r,next:N.call(n,u)}}function sl(e,t){var n=te.call(e,t);return n&K?0:n&q?1:n&Y?2:-1}function fl(e){e.preventDefault(),e.stopPropagation()}function pl(e,t){ht.call(e,"focusin",fl,!0),ht.call(e,"focusout",fl,!0),t(),gt.call(e,"focusin",fl,!0),gt.call(e,"focusout",fl,!0)}function hl(e,t,n){var r=Nt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(El(t.getRootNode(),l))return l}return null}(e,n);O(l)?pl(r,(function(){t.blur()})):pl(r,(function(){l.focus()}))}var gl=!1;function ml(){gl=!0}function vl(){gl=!1}function bl(){return!gl}function dl(e){if(!gl){var t=Je.call(e),n=ze.call(e);if(t===n){var r=Ze.call(e);if(!O(r)){var l=cl(t);if(1===sl(t,r)){var o=El.bind(null,t.getRootNode()),a=b.call(l.inner,o);if(C(a))hl(l.next,n,r);else pl(Nt(a),(function(){a.focus()}))}else t===n&&hl(T.call(l.prev),n,r)}}}}function yl(e){if(!gl){var t=Ze.call(e);if(!O(t)){var n=Je.call(e),r=cl(n);if(-1===d.call(r.inner,t)){var l=ze.call(e),o=sl(n,t);1===o&&hl(r.next,l,t),2===o&&hl(T.call(r.prev),l,t)}}}}function El(e,t){if(!il(t))return!1;for(var n=Tt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===be.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function wl(e){Ht.call(e,"focusin",dl,!0)}function Tl(e){var t=Tt(e);al.get(t)||(al.set(t,!0),Ct.call(t,"mousedown",ml,!0),Ct.call(t,"mouseup",(function(){setTimeout(vl)}),!0),Ct.call(t,"dragstart",vl,!0))}function Nl(e){Ht.call(e,"focusin",yl,!0)}var Ll=HTMLElement.prototype,Ml=Ll.blur,Sl=Ll.focus;function Cl(){return er(this)&&R(we.call(this,"tabindex"))?0:Ue.call(this)}function Ol(e){var t=er(this),n=Ue.call(this),r=we.call(this,"tabindex");Ke.call(this,e);var l,o=Ue.call(this),a=we.call(this,"tabindex"),i=n!==o;(r&&(i||R(a))&&(-1===n&&Nl(this),0===n&&t&&wl(this)),R(a))||(r&&a&&R(i)||(-1===o&&(Tl(l=this),wl(l),Ct.call(l,"focusin",yl,!0)),0===o&&t&&function(e){Tl(e),Nl(e),Ct.call(e,"focusin",dl,!0)}(this)))}function Hl(){if(er(this)){var e=(n=Tt(t=this),O(r=tt.call(n))||0!=(te.call(t,r)&K)?r:null);if(!O(e))return void e.blur()}var t,n,r;return Ml.call(this)}function Rl(){var e=bl();e&&ml(),rr(this)&&er(this)?ul.call(this):(Sl.apply(this,arguments),e&&vl())}function Dl(e,t){e[$]=t;for(var n=ge.call(e),r=0,l=n.length;r<l;r++)Dl(n[r],t)}c(HTMLElement.prototype,{tabIndex:{get:function(){return rr(this)?Cl.call(this):Ue.call(this)},set:function(e){return rr(this)?Ol.call(this,e):Ke.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(rr(this))return Hl.call(this);Ml.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Rl.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==De&&null!==Pe&&s(HTMLElement.prototype,"innerText",{get:function(){return De.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0}),null!==Ae&&null!==Be&&s(HTMLElement.prototype,"outerText",{get:function(){return Ae.call(this)},set:function(e){Be.call(this,e)},enumerable:!0,configurable:!0}),s(Element.prototype,k,{set:function(e){var t=this[F];C(t)||t===e||Le.call(this,t),C(e)||Me.call(this,e,""),this[F]=e},get:function(){return this[F]},configurable:!0}),s(Element.prototype,"$shadowStaticNode$",{set:function(e){e&&Dl(this,this[$]);this[x]=e},get:function(){return this[x]},configurable:!0});var Pl,Il="$$DomManualKey$$",Al=function(){},Bl={childList:!0};function $l(e,t,n){var r=Jn(e);if(r!==t&&(Zn(e,t),e instanceof Element)){if(function(e,t){e[k]=t}(e,n),rr(e))return;C(r)&&vt.call(Pl,e,Bl);for(var l=ge.call(e),o=0,a=l.length;o<a;o+=1)$l(l[o],t,n)}}function _l(){return new mt((function(e){M.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Jn(t),o=function(e){return e[k]}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];te.call(t,u)&G.DOCUMENT_POSITION_CONTAINED_BY||$l(u,Al,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];te.call(t,f)&G.DOCUMENT_POSITION_CONTAINED_BY&&$l(f,l,o)}}))}))}s(Element.prototype,"$domManual$",{set:function(e){this[Il]=e,H(e)&&function(e){if(C(Pl)&&(Pl=_l()),C(Jn(e)))throw new Error("Invalid Element");vt.call(Pl,e,Bl)}(this)},get:function(){return this[Il]},configurable:!0})}));
@@ -64,39 +64,11 @@
64
64
  * SPDX-License-Identifier: MIT
65
65
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
66
66
  */
67
- // Inspired from: https://mathiasbynens.be/notes/globalthis
68
- var _globalThis = /*@__PURE__*/function () {
69
- // On recent browsers, `globalThis` is already defined. In this case return it directly.
70
- if ((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object') {
71
- return globalThis;
72
- }
73
- var _globalThis;
74
- try {
75
- // eslint-disable-next-line no-extend-native
76
- Object.defineProperty(Object.prototype, '__magic__', {
77
- get: function get() {
78
- return this;
79
- },
80
- configurable: true
81
- });
82
- // __magic__ is undefined in Safari 10 and IE10 and older.
83
- // @ts-ignore
84
- // eslint-disable-next-line no-undef
85
- _globalThis = __magic__;
86
- // @ts-ignore
87
- delete Object.prototype.__magic__;
88
- } catch (ex) {
89
- // In IE8, Object.defineProperty only works on DOM objects.
90
- } finally {
91
- // If the magic above fails for some reason we assume that we are in a legacy browser.
92
- // Assume `window` exists in this case.
93
- if (typeof _globalThis === 'undefined') {
94
- // @ts-ignore
95
- _globalThis = window;
96
- }
97
- }
98
- return _globalThis;
99
- }();
67
+ // See browser support for globalThis:
68
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility
69
+ /* istanbul ignore next */
70
+ // @ts-ignore
71
+ var _globalThis = (typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === 'object' ? globalThis : window;
100
72
 
101
73
  /*
102
74
  * Copyright (c) 2018, salesforce.com, inc.
@@ -114,7 +86,7 @@
114
86
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
115
87
  var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
116
88
  var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
117
- /** version: 2.35.0 */
89
+ /** version: 2.35.1 */
118
90
 
119
91
  /*
120
92
  * Copyright (c) 2018, salesforce.com, inc.
@@ -428,7 +400,7 @@
428
400
  });
429
401
  }
430
402
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
431
- /** version: 2.35.0 */
403
+ /** version: 2.35.1 */
432
404
 
433
405
  /*
434
406
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4507,6 +4479,6 @@
4507
4479
  },
4508
4480
  configurable: true
4509
4481
  });
4510
- /** version: 2.35.0 */
4482
+ /** version: 2.35.1 */
4511
4483
 
4512
4484
  }));
@@ -7,7 +7,7 @@
7
7
  function isUndefined(obj) {
8
8
  return obj === undefined;
9
9
  }
10
- /** version: 2.35.0 */
10
+ /** version: 2.35.1 */
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.35.0 */
184
+ /** version: 2.35.1 */
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.35.0 */
13
+ /** version: 2.35.1 */
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.35.0 */
187
+ /** version: 2.35.1 */
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.35.0 */
13
+ /** version: 2.35.1 */
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.35.0 */
187
+ /** version: 2.35.1 */
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.35.0 */
26
+ /** version: 2.35.1 */
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.35.0 */
230
+ /** version: 2.35.1 */
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.35.0 */
26
+ /** version: 2.35.1 */
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.35.0 */
230
+ /** version: 2.35.1 */
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.35.0 */
16
+ /** version: 2.35.1 */
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.35.0 */
190
+ /** version: 2.35.1 */
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.35.0 */
16
+ /** version: 2.35.1 */
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.35.0 */
190
+ /** version: 2.35.1 */
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.35.0 */
29
+ /** version: 2.35.1 */
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.35.0 */
233
+ /** version: 2.35.1 */
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.35.0 */
29
+ /** version: 2.35.1 */
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.35.0 */
233
+ /** version: 2.35.1 */
234
234
 
235
235
  exports.ValueChangedEvent = ValueChangedEvent;
236
236
  exports.register = register;