lwc 2.8.0 → 2.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +73 -34
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +73 -34
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +73 -34
  5. package/dist/engine-dom/iife/es5/engine-dom.js +144 -100
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +137 -94
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +73 -34
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +73 -34
  11. package/dist/engine-dom/umd/es5/engine-dom.js +144 -100
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +137 -94
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +41 -19
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +41 -19
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
  20. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
  22. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
  23. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
  24. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
  25. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
  26. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  27. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  28. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  29. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  30. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  31. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  34. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  35. package/package.json +7 -7
@@ -343,7 +343,7 @@ function htmlPropertyToAttribute(propName) {
343
343
  const XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
344
344
  const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
345
345
  const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
346
- /** version: 2.8.0 */
346
+ /** version: 2.9.0 */
347
347
 
348
348
  /*
349
349
  * Copyright (c) 2020, salesforce.com, inc.
@@ -464,7 +464,7 @@ function setFeatureFlagForTest(name, value) {
464
464
  setFeatureFlag(name, value);
465
465
  }
466
466
  }
467
- /** version: 2.8.0 */
467
+ /** version: 2.9.0 */
468
468
 
469
469
  /* proxy-compat-disable */
470
470
 
@@ -4626,11 +4626,13 @@ function fallbackElmHook(elm, vnode) {
4626
4626
  ) {
4627
4627
  // this element will now accept any manual content inserted into it
4628
4628
  observeElementChildNodes(elm);
4629
- } // when running in synthetic shadow mode, we need to set the shadowToken value
4630
- // into each element from the template, so they can be styled accordingly.
4631
-
4629
+ }
4632
4630
 
4633
- setElementShadowToken(elm, stylesheetToken);
4631
+ if (!isUndefined$1(stylesheetToken)) {
4632
+ // when running in synthetic shadow mode, we need to set the shadowToken value
4633
+ // into each element from the template, so they can be styled accordingly.
4634
+ setElementShadowToken(elm, stylesheetToken);
4635
+ }
4634
4636
  }
4635
4637
 
4636
4638
  if (process.env.NODE_ENV !== 'production') {
@@ -4717,7 +4719,9 @@ function createViewModelHook(elm, vnode) {
4717
4719
  } = owner.context; // when running in synthetic shadow mode, we need to set the shadowToken value
4718
4720
  // into each element from the template, so they can be styled accordingly.
4719
4721
 
4720
- setElementShadowToken(elm, stylesheetToken);
4722
+ if (!isUndefined$1(stylesheetToken)) {
4723
+ setElementShadowToken(elm, stylesheetToken);
4724
+ }
4721
4725
  }
4722
4726
 
4723
4727
  vm = createVM(elm, ctor, {
@@ -4898,6 +4902,7 @@ function updateDynamicChildren(parentElm, oldCh, newCh) {
4898
4902
  let idxInOld;
4899
4903
  let elmToMove;
4900
4904
  let before;
4905
+ let clonedOldCh = false;
4901
4906
 
4902
4907
  while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {
4903
4908
  if (!isVNode(oldStartVnode)) {
@@ -4949,7 +4954,18 @@ function updateDynamicChildren(parentElm, oldCh, newCh) {
4949
4954
  newStartVnode.hook.create(newStartVnode);
4950
4955
  newStartVnode.hook.insert(newStartVnode, parentElm, oldStartVnode.elm);
4951
4956
  } else {
4952
- patchVnode(elmToMove, newStartVnode);
4957
+ patchVnode(elmToMove, newStartVnode); // Delete the old child, but copy the array since it is read-only.
4958
+ // The `oldCh` will be GC'ed after `updateDynamicChildren` is complete,
4959
+ // so we only care about the `oldCh` object inside this function.
4960
+ // To avoid cloning over and over again, we check `clonedOldCh`
4961
+ // and only clone once.
4962
+
4963
+ if (!clonedOldCh) {
4964
+ clonedOldCh = true;
4965
+ oldCh = [...oldCh];
4966
+ } // We've already cloned at least once, so it's no longer read-only
4967
+
4968
+
4953
4969
  oldCh[idxInOld] = undefined;
4954
4970
  newStartVnode.hook.move(elmToMove, parentElm, oldStartVnode.elm);
4955
4971
  }
@@ -5046,7 +5062,7 @@ function addVNodeToChildLWC(vnode) {
5046
5062
  } // [h]tml node
5047
5063
 
5048
5064
 
5049
- function h(sel, data, children) {
5065
+ function h(sel, data, children = EmptyArray) {
5050
5066
  const vmBeingRendered = getVMBeingRendered();
5051
5067
 
5052
5068
  if (process.env.NODE_ENV !== 'production') {
@@ -5444,7 +5460,7 @@ let dynamicImportedComponentCounter = 0;
5444
5460
  * create a dynamic component via `<x-foo lwc:dynamic={Ctor}>`
5445
5461
  */
5446
5462
 
5447
- function dc(sel, Ctor, data, children) {
5463
+ function dc(sel, Ctor, data, children = EmptyArray) {
5448
5464
  if (process.env.NODE_ENV !== 'production') {
5449
5465
  assert.isTrue(isString(sel), `dc() 1st argument sel must be a string.`);
5450
5466
  assert.isTrue(isObject(data), `dc() 3nd argument data must be an object.`);
@@ -5468,10 +5484,14 @@ function dc(sel, Ctor, data, children) {
5468
5484
  } // the new vnode key is a mix of idx and compiler key, this is required by the diffing algo
5469
5485
  // to identify different constructors as vnodes with different keys to avoid reusing the
5470
5486
  // element used for previous constructors.
5487
+ // Shallow clone is necessary here becuase VElementData may be shared across VNodes due to
5488
+ // hoisting optimization.
5471
5489
 
5472
5490
 
5473
- data.key = `dc:${idx}:${data.key}`;
5474
- return c(sel, Ctor, data, children);
5491
+ const newData = Object.assign(Object.assign({}, data), {
5492
+ key: `dc:${idx}:${data.key}`
5493
+ });
5494
+ return c(sel, Ctor, newData, children);
5475
5495
  }
5476
5496
  /**
5477
5497
  * slow children collection marking mechanism. this API allows the compiler to signal
@@ -5591,12 +5611,14 @@ function updateStylesheetToken(vm, template) {
5591
5611
  hasTokenInAttribute: oldHasTokenInAttribute
5592
5612
  } = context;
5593
5613
 
5594
- if (oldHasTokenInClass) {
5595
- getClassList$1(elm).remove(makeHostToken(oldToken));
5596
- }
5614
+ if (!isUndefined$1(oldToken)) {
5615
+ if (oldHasTokenInClass) {
5616
+ getClassList$1(elm).remove(makeHostToken(oldToken));
5617
+ }
5597
5618
 
5598
- if (oldHasTokenInAttribute) {
5599
- removeAttribute$1(elm, makeHostToken(oldToken));
5619
+ if (oldHasTokenInAttribute) {
5620
+ removeAttribute$1(elm, makeHostToken(oldToken));
5621
+ }
5600
5622
  } // Apply the new template styling token to the host element, if the new template has any
5601
5623
  // associated stylesheets. In the case of light DOM, also ensure there is at least one scoped stylesheet.
5602
5624
 
@@ -7287,7 +7309,7 @@ function setHooks(hooks) {
7287
7309
  hooksAreSet = true;
7288
7310
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
7289
7311
  }
7290
- /* version: 2.8.0 */
7312
+ /* version: 2.9.0 */
7291
7313
 
7292
7314
  /*
7293
7315
  * Copyright (c) 2020, salesforce.com, inc.
@@ -7827,7 +7849,7 @@ function renderComponent(tagName, Ctor, props = {}) {
7827
7849
 
7828
7850
  freeze(LightningElement);
7829
7851
  seal(LightningElement.prototype);
7830
- /* version: 2.8.0 */
7852
+ /* version: 2.9.0 */
7831
7853
 
7832
7854
  exports.LightningElement = LightningElement;
7833
7855
  exports.api = api$1;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:t,create:n,defineProperties:r,defineProperty:o,freeze:i,getOwnPropertyDescriptor:l,getOwnPropertyNames:s,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:p}=Object,{isArray:h}=Array,{filter:m,find:g,indexOf:w,join:y,map:b,push:v,reduce:k,reverse:C,slice:E,splice:x,unshift:M,forEach:S}=Array.prototype,{fromCharCode:T}=String,{charCodeAt:O,replace:$,slice:P,toLowerCase:A}=String.prototype;function N(e){return void 0===e}function R(e){return null===e}function _(e){return!0===e}function F(e){return!1===e}function L(e){return"function"==typeof e}function D(e){return"string"==typeof e}function I(){}const H={}.toString;function j(e){return e&&e.toString?h(e)?y.call(b.call(e,j),","):e.toString():"object"==typeof e?H.call(e):e+""}function B(e,t){do{const n=l(e,t);if(!N(n))return n;e=a(e)}while(null!==e)}const W=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:V,AriaPropNameToAttrNameMap:K}=(()=>{const e=n(null),t=n(null);return S.call(W,(n=>{const r=A.call($.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function G(e){return e in V}const z=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),q=new Set(["area","base","br","circle","col","ellipse","feBlend","feColorMatrix","feFuncR","feFuncG","feFuncB","feFuncA","feImage","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feGaussianBlur","feMerge","feMergeNode","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","fePointLight","embed","hr","img","input","keygen","line","link","menuitem","meta","param","rect","source","track","wbr"]);const U=new Map([["autofocus",new Set(["button","input","keygen","select","textarea"])],["autoplay",new Set(["audio","video"])],["checked",new Set(["command","input"])],["disabled",new Set(["button","command","fieldset","input","keygen","optgroup","select","textarea"])],["formnovalidate",new Set(["button"])],["hidden",new Set],["loop",new Set(["audio","bgsound","marquee","video"])],["multiple",new Set(["input","select"])],["muted",new Set(["audio","video"])],["novalidate",new Set(["form"])],["open",new Set(["details"])],["readonly",new Set(["input","textarea"])],["required",new Set(["input","select","textarea"])],["reversed",new Set(["ol"])],["selected",new Set(["option"])]]);function Y(e,t){const n=U.get(e);return void 0!==n&&(0===n.size||n.has(t))}const X=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title"]);function J(e){return X.has(e)}const Q=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),Z=new Map;function ee(e){const t=K[e];if(!N(t))return t;const n=Q.get(e);if(!N(n))return n;const r=Z.get(e);if(!N(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=O.call(e,t);o+=n>=65&&n<=90?"-"+T(n+32):T(n)}return Z.set(e,o),o}if("function"!=typeof Event){class e{}o(z,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(z,"CustomEvent",{value:e,configurable:!0,writable:!0})}const te={ENABLE_REACTIVE_SETTER:null,ENABLE_HMR:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_WIRE_SYNC_EMIT:null};z.lwcRuntimeFlags||Object.defineProperty(z,"lwcRuntimeFlags",{value:n(null)});const ne=z.lwcRuntimeFlags;let re=[];const oe=f(n(null)),ie=f([]);function le(){const e=re;re=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function se(e){0===re.length&&Promise.resolve().then(le),v.call(re,e)}let ae,ce,ue,de,fe,pe,he,me,ge,we,ye,be,ve,ke,Ce,Ee,xe,Me,Se,Te,Oe,$e,Pe,Ae,Ne,Re,_e,Fe,Le,De,Ie,He,je,Be,We,Ve,Ke,Ge,ze;const qe=new WeakMap;let Ue=null;function Ye(e,t){const n=qe.get(e);if(!N(n)){const e=n[t];if(!N(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Xe(e,t){if(null===Ue)return;const r=Ue,o=function(e){let t=qe.get(e);if(N(t)){const r=n(null);t=r,qe.set(e,r)}return t}(e);let i=o[t];if(N(i))i=[],o[t]=i;else if(i[0]===r)return;-1===w.call(i,r)&&r.link(i)}class Je{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=Ue;let n;Ue=this;try{e()}catch(e){n=Object(e)}finally{if(Ue=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=w.call(e[n],this);x.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){v.call(e,this),v.call(this.listeners,e)}}function Qe(e,t){Ye(e.component,t)}function Ze(e,t){Xe(e.component,t)}function et(e){return`<${A.call(e.tagName)}>`}function tt(e,t){if(!u(t)&&N(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!R(n);)v.call(t,et(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}const nt="undefined"!=typeof HTMLElement?HTMLElement:function(){},rt=nt.prototype;function ot(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}t(n(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:ot("offsetHeight")},offsetLeft:{readOnly:!0,error:ot("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:ot("offsetTop")},offsetWidth:{readOnly:!0,error:ot("offsetWidth")},role:{attribute:"role"}});let it,lt=null;function st(e,t){return e!==lt||t!==it}function at(e,t){lt=null,it=void 0}function ct(e,t){lt=e,it=t}const ut=n(null);S.call(d(K),(e=>{const t=B(rt,e);N(t)||(ut[e]=t)})),S.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=B(rt,e);N(t)||(ut[e]=t)}));const{isArray:dt}=Array,{prototype:ft,getPrototypeOf:pt,create:ht,defineProperty:mt,isExtensible:gt,getOwnPropertyDescriptor:wt,getOwnPropertyNames:yt,getOwnPropertySymbols:bt,preventExtensions:vt,hasOwnProperty:kt}=Object,{push:Ct,concat:Et}=Array.prototype;function xt(e){return void 0===e}function Mt(e){return"function"==typeof e}const St=new WeakMap;function Tt(e,t){St.set(e,t)}const Ot=e=>St.get(e)||e;class $t{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(kt.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;xt(n)||(e.get=this.wrapGetter(n)),xt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=wt(n,t);if(!xt(r)){const n=this.wrapDescriptor(r);mt(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;Et.call(yt(t),bt(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;xt(n)||kt.call(e,n)||mt(e,n,ht(null)),vt(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=xt(n)||kt.call(t,n)?[]:[n];return Ct.apply(r,yt(t)),Ct.apply(r,bt(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!gt(e)&&(!!gt(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return pt(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=wt(n,t);if(xt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},mt(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const Pt=new WeakMap,At=new WeakMap,Nt=new WeakMap,Rt=new WeakMap;class _t extends $t{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=Pt.get(e);if(!xt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ot(this)))};return Pt.set(e,r),Nt.set(r,e),r}wrapSetter(e){const t=At.get(e);if(!xt(t))return t;const n=function(t){e.call(Ot(this),Ot(t))};return At.set(e,n),Rt.set(n,e),n}unwrapDescriptor(e){if(kt.call(e,"value"))e.value=Ot(e.value);else{const{set:t,get:n}=e;xt(n)||(e.get=this.unwrapGetter(n)),xt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=Nt.get(e);if(!xt(t))return t;const n=this,r=function(){return Ot(e.call(n.wrapValue(this)))};return Pt.set(r,e),Nt.set(e,r),r}unwrapSetter(e){const t=Rt.get(e);if(!xt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return At.set(r,e),Rt.set(e,r),r}set(e,t,n){const{originalTarget:r,membrane:{valueMutated:o}}=this;return r[t]!==n?(r[t]=n,o(r,t)):"length"===t&&dt(r)&&o(r,t),!0}deleteProperty(e,t){const{originalTarget:n,membrane:{valueMutated:r}}=this;return delete n[t],r(n,t),!0}setPrototypeOf(e,t){}preventExtensions(e){if(gt(e)){const{originalTarget:t}=this;if(vt(t),gt(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!kt.call(r,t)||(mt(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const Ft=new WeakMap,Lt=new WeakMap;class Dt extends $t{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=Ft.get(e);if(!xt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ot(this)))};return Ft.set(e,r),r}wrapSetter(e){const t=Lt.get(e);if(!xt(t))return t;const n=function(e){};return Lt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function It(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(dt(e))return!0;const t=pt(e);return t===ft||null===t||null===pt(t)}const Ht=(e,t)=>{},jt=(e,t)=>{};function Bt(e){return dt(e)?[]:{}}const Wt=Symbol.for("@@lockerLiveValue"),Vt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Mt(t)?t:jt,this.valueObserved=Mt(n)?n:Ht,this.valueIsObservable=Mt(r)?r:It,this.tagPropertyKey=o}getProxy(e){const t=Ot(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ot(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ot(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(xt(t)){const n=new _t(this,e);t=new Proxy(Bt(e),n),Tt(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(xt(t)){const n=new Dt(this,e);t=new Proxy(Bt(e),n),Tt(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Xe,valueMutated:Ye,tagPropertyKey:Wt});function Kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!L(n))throw new TypeError;if(!L(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=Dr(this);if(!mr(t))return Ze(t,e),n.call(t.elm)},set(t){const n=Dr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,Qe(n,e)),r.call(n.elm,t)}}}const Gt=function(){if(R(hr))throw new ReferenceError("Illegal constructor");const e=hr,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[Wt]=void 0,Lr(o,e),Lr(n,e),1===e.renderMode?e.renderRoot=zt(e):e.renderRoot=n,this};function zt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o}}=e,i=be(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=i,Lr(i,e),i}Gt.prototype={constructor:Gt,dispatchEvent(e){const{elm:t}=Dr(this);return Oe(t,e)},addEventListener(e,t,n){const r=Dr(this),{elm:o}=r,i=Er(r,t);Se(o,e,i,n)},removeEventListener(e,t,n){const r=Dr(this),{elm:o}=r,i=Er(r,t);Te(o,e,i,n)},hasAttribute(e){const{elm:t}=Dr(this);return!R(Ee(t,e))},hasAttributeNS(e,t){const{elm:n}=Dr(this);return!R(Ee(n,t,e))},removeAttribute(e){const{elm:t}=Dr(this);ct(t,e),Me(t,e),at()},removeAttributeNS(e,t){const{elm:n}=Dr(this);ct(n,t),Me(n,t,e),at()},getAttribute(e){const{elm:t}=Dr(this);return Ee(t,e)},getAttributeNS(e,t){const{elm:n}=Dr(this);return Ee(n,t,e)},setAttribute(e,t){const n=Dr(this),{elm:r}=n;ct(r,e),xe(r,e,t),at()},setAttributeNS(e,t,n){const r=Dr(this),{elm:o}=r;ct(o,t),xe(o,t,n,e),at()},getBoundingClientRect(){const e=Dr(this),{elm:t}=e;return Ae(t)},get isConnected(){const{elm:e}=Dr(this);return We(e)},get classList(){const e=Dr(this),{elm:t}=e;return $e(t)},get template(){return Dr(this).shadowRoot},get shadowRoot(){return null},render(){return Dr(this).def.template},toString(){return`[object ${Dr(this).def.name}]`}};const qt=n(null),Ut=["children","childNodes","firstChild","firstElementChild","lastChild","lastElementChild"];function Yt(e){switch(e){case"children":return Le;case"childNodes":return De;case"firstChild":return Ie;case"firstElementChild":return He;case"lastChild":return je;case"lastElementChild":return Be}}for(const e of Ut)qt[e]={get(){const t=Dr(this),{elm:n}=t;return Yt(e)(n)},configurable:!0,enumerable:!0};const Xt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];function Jt(e){switch(e){case"getElementsByClassName":return Fe;case"getElementsByTagName":return _e;case"querySelector":return Ne;case"querySelectorAll":return Re}}for(const e of Xt)qt[e]={value(t){const n=Dr(this),{elm:r}=n;return Jt(e)(r,t)},configurable:!0,enumerable:!0,writable:!0};r(Gt.prototype,qt);const Qt=n(null);for(const e in ut)Qt[e]=Kt(e,ut[e]);function Zt(e){return{get(){const t=Dr(this);return Ze(t,e),t.cmpFields[e]},set(t){const n=Dr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Qe(n,e))},enumerable:!0,configurable:!0}}function en(e){return{get(){const t=Dr(this);return Ze(t,e),t.cmpFields[e]},set(t){const n=Dr(this),r=Vt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,Qe(n,e))},enumerable:!0,configurable:!0}}function tn(e){return{get(){const t=Dr(this);if(!mr(t))return Ze(t,e),t.cmpProps[e]},set(t){const n=Dr(this);n.cmpProps[e]=t,Qe(n,e)},enumerable:!0,configurable:!0}}r(Gt.prototype,Qt),o(Gt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class nn extends Je{constructor(e,t){super((()=>{F(this.debouncing)&&(this.debouncing=!0,se((()=>{if(_(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,_(e.isDirty)&&F(r)&&i>0&&Nr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function rn(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!L(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Dr(this);if(r)if(ne.ENABLE_REACTIVE_SETTER){let o=n.oar[e];N(o)&&(o=n.oar[e]=new nn(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function on(e){return{get(){const t=Dr(this);return Ze(t,e),t.cmpFields[e]},set(t){const n=Dr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Qe(n,e))},enumerable:!0,configurable:!0}}const ln=new Map;const sn={apiMethods:oe,apiFields:oe,apiFieldsConfig:oe,wiredMethods:oe,wiredFields:oe,observedFields:oe};const an=new Set;function cn(){return[]}an.add(cn);const un=n(null),dn=n(null);function fn(e){let t=un[e];return N(t)&&(t=un[e]=function(){const t=Dr(this),{getHook:n}=t;return n(t.component,e)}),t}function pn(e){let t=dn[e];return N(t)&&(t=dn[e]=function(t){const n=Dr(this),{setHook:r}=n;t=Vt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function hn(e){return function(){const t=Dr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,E.call(arguments))}}function mn(e,t){return function(n,r,o){if(r===o)return;const i=e[n];N(i)?N(t)||t.apply(this,arguments):st(this,n)&&(this[i]=o)}}function gn(e,t,i){let l;L(e)?l=class extends e{}:(l=function(){throw new TypeError("Illegal constructor")},p(l,e),p(l.prototype,e.prototype),o(l.prototype,"constructor",{writable:!0,configurable:!0,value:l}));const s=n(null),{attributeChangedCallback:a}=e.prototype,{observedAttributes:c=[]}=e,u=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];s[ee(n)]=n,u[n]={get:fn(n),set:pn(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:hn(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:mn(s,a)},o(l,"observedAttributes",{get:()=>[...c,...d(s)]}),r(l.prototype,u),l}const wn=gn(nt,s(ut),[]);function yn(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function bn(e){return L(e)&&c.call(e,"__circular__")}i(wn),f(wn.prototype);const vn=new WeakMap;function kn(e){const{shadowSupportMode:o,renderMode:i}=e,l=function(e){const t=ln.get(e);return N(t)?sn:t}(e),{apiFields:s,apiFieldsConfig:c,apiMethods:u,wiredFields:f,wiredMethods:p,observedFields:h}=l,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const k=function(e){let t=a(e);if(R(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(bn(t)){const e=yn(t);t=e===t?Gt:e}return t}(e),C=k!==Gt?En(k):xn,E=gn(C.bridge,d(s),d(u)),x=t(n(null),C.props,s),M=t(n(null),C.propsConfig,c),S=t(n(null),C.methods,u),T=t(n(null),C.wire,f,p);g=g||C.connectedCallback,w=w||C.disconnectedCallback,y=y||C.renderedCallback,b=b||C.errorCallback,v=v||C.render;let O=C.shadowSupportMode;N(o)||(O=o);let $=C.renderMode;N(i)||($="light"===i?0:1);const P=function(e){return yr.get(e)}(e)||C.template,A=e.name||C.name;r(m,h);return{ctor:e,name:A,wire:T,props:x,propsConfig:M,methods:S,bridge:E,template:P,renderMode:$,shadowSupportMode:O,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Cn(e){if(!L(e))return!1;if(e.prototype instanceof Gt)return!0;let t=e;do{if(bn(t)){const e=yn(t);if(e===t)return!0;t=e}if(t===Gt)return!0}while(!R(t)&&(t=a(t)));return!1}function En(e){let t=vn.get(e);if(N(t)){if(bn(e)){return t=En(yn(e)),vn.set(e,t),t}if(!Cn(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=kn(e),vn.set(e,t)}return t}const xn={ctor:Gt,name:Gt.name,props:Qt,propsConfig:oe,methods:oe,renderMode:1,shadowSupportMode:"reset",wire:oe,bridge:wn,template:cn,render:Gt.prototype.render};function Mn(e){const{type:t}=e;return 2===t||3===t}function Sn(e,t){return e.key===t.key&&e.sel===t.sel}function Tn(e,t){return"input"===e&&("value"===t||"checked"===t)}const On=n(null);function $n(e){if(null==e)return oe;e=D(e)?e:e+"";let t=On[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===O.call(e,r)&&(r>o&&(t[P.call(e,o,r)]=!0),o=r+1);return r>o&&(t[P.call(e,o,r)]=!0),On[e]=t,t}const Pn={create:e=>{const{owner:t}=e,n=ge(e.text);Dn(n,t),e.elm=n},update:In,insert:Hn,move:Hn,remove:jn},An={create:e=>{const{owner:t,text:n}=e,r=we(n);Dn(r,t),e.elm=r},update:In,insert:Hn,move:Hn,remove:jn},Nn={create:e=>{const{sel:t,owner:n,data:{svg:r}}=e,o=_(r)?"http://www.w3.org/2000/svg":void 0,i=me(t,o);Dn(i,n),function(e,t){const{owner:n}=t;if(Ln(e,n),1===n.shadowMode){const{data:{context:r}}=t,{stylesheetToken:o}=n.context;N(r)||N(r.lwc)||"manual"!==r.lwc.dom||function(e){e.$domManual$=!0}(e),Fn(e,o)}}(i,e),e.elm=i,Bn(null,e)},update:(e,t)=>{Bn(e,t),Wn(t.elm,e.children,t.children)},insert:(e,t,n)=>{Hn(e,t,n),Kn(e)},move:Hn,remove:(e,t)=>{jn(e,t),function(e){const{children:t,elm:n}=e;for(let e=0,r=t.length;e<r;++e){const r=t[e];R(r)||r.hook.remove(r,n)}}(e)}},Rn={create:e=>{const{sel:t,owner:n}=e,r=function(e){e=e.toLowerCase();let t=ze(e);return N(t)?(t=class extends de{constructor(e){super(),L(e)&&e(this)}},Ge(e,t),t):t}(t);let o;const i=new r((t=>{o=function(e,t){let n=Ir(e);if(!N(n))return n;const{sel:r,mode:o,ctor:i,owner:l}=t;if(Ln(e,l),1===l.shadowMode){const{stylesheetToken:t}=l.context;Fn(e,t)}return n=Fr(e,i,{mode:o,owner:l,tagName:r}),n}(t,e)}));if(Dn(i,n),e.elm=i,o)Vn(e,o);else if(e.ctor!==r)throw new TypeError("Incorrect Component Constructor");Bn(null,e)},update:(e,t)=>{Bn(e,t);const n=Ir(t.elm);n&&Vn(t,n),Wn(t.elm,e.children,t.children),n&&Nr(n)},insert:(e,t,n)=>{Hn(e,t,n);const r=Ir(e.elm);r&&Wr(r),Kn(e),r&&function(e){Hr(e)}(r)},move:Hn,remove:(e,t)=>{jn(e,t);const n=Ir(e.elm);n&&function(e){_r(e)}(n)}};function _n(e){return null!=e}function Fn(e,t){e.$shadowToken$=t}function Ln(e,t){const{cmpTemplate:n,context:r}=t,o=null==n?void 0:n.stylesheetToken;!N(o)&&r.hasScopedStyles&&$e(e).add(o)}function Dn(e,t){const{renderRoot:n,renderMode:r,shadowMode:o}=t;ue&&(1!==o&&0!==r||(e.$shadowResolver$=n.$shadowResolver$))}function In(e,t){const{elm:n,text:r}=t;e.text!==r&&Ce(n,r)}function Hn(e,t,n){pe(e.elm,t,n)}function jn(e,t){he(e.elm,t)}function Bn(e,t){R(e)&&(function(e){const{elm:t,data:{on:n}}=e;if(!N(n))for(const e in n){const r=n[e];Se(t,e,r)}}(t),function(e){const{elm:t,data:{classMap:n}}=e;if(N(n))return;const r=$e(t);for(const e in n)r.add(e)}(t),function(e){const{elm:t,data:{styleDecls:n}}=e;if(!N(n))for(let e=0;e<n.length;e++){const[r,o,i]=n[e];Pe(t,r,o,i)}}(t)),function(e,t){const{elm:n,data:{className:r}}=t,o=R(e)?void 0:e.data.className;if(o===r)return;const i=$e(n),l=$n(r),s=$n(o);let a;for(a in s)N(l[a])&&i.remove(a);for(a in l)N(s[a])&&i.add(a)}(e,t),function(e,t){const{elm:n,data:{style:r}}=t;(R(e)?void 0:e.data.style)!==r&&(D(r)&&""!==r?xe(n,"style",r):Me(n,"style"))}(e,t),function(e,t){const{attrs:n}=t.data;if(N(n))return;const r=R(e)?oe:e.data.attrs;if(r===n)return;const{elm:o}=t;for(const e in n){const t=n[e];r[e]!==t&&(ct(o,e),58===O.call(e,3)?xe(o,e,t,"http://www.w3.org/XML/1998/namespace"):58===O.call(e,5)?xe(o,e,t,"http://www.w3.org/1999/xlink"):R(t)||N(t)?Me(o,e):xe(o,e,t),at())}}(e,t),function(e,t){const{props:n}=t.data;if(N(n))return;const r=R(e)?oe:e.data.props;if(r===n)return;const o=R(e),{elm:i,sel:l}=t;for(const e in n){const t=n[e];(o||t!==(Tn(l,e)?ve(i,e):r[e]))&&ke(i,e,t)}}(e,t)}function Wn(e,t,n){var r;r=n,Gn.has(r)?function(e,t,n){let r=0,o=0,i=t.length-1,l=t[0],s=t[i];const a=n.length-1;let c,u,d,f,p=a,h=n[0],m=n[p];for(;r<=i&&o<=p;)_n(l)?_n(s)?_n(h)?_n(m)?Sn(l,h)?(Yn(l,h),l=t[++r],h=n[++o]):Sn(s,m)?(Yn(s,m),s=t[--i],m=n[--p]):Sn(l,m)?(Yn(l,m),m.hook.move(l,e,ye(s.elm)),l=t[++r],m=n[--p]):Sn(s,h)?(Yn(s,h),h.hook.move(s,e,l.elm),s=t[--i],h=n[++o]):(void 0===c&&(c=zn(t,r,i)),u=c[h.key],N(u)?(h.hook.create(h),h.hook.insert(h,e,l.elm),h=n[++o]):(d=t[u],_n(d)&&(d.sel!==h.sel?(h.hook.create(h),h.hook.insert(h,e,l.elm)):(Yn(d,h),t[u]=void 0,h.hook.move(d,e,l.elm))),h=n[++o])):m=n[--p]:h=n[++o]:s=t[--i]:l=t[++r];if(r<=i||o<=p)if(r>i){let t,r=p;do{t=n[++r]}while(!_n(t)&&r<a);f=_n(t)?t.elm:null,qn(e,f,n,o,p)}else Un(e,t,r,i)}(e,t,n):function(e,t,n){const r=t.length,o=n.length;if(0===r)return void qn(e,null,n,0,o);if(0===o)return void Un(e,t,0,r);let i=null;for(let r=o-1;r>=0;r-=1){const o=n[r],l=t[r];o!==l&&(_n(l)?_n(o)?(Yn(l,o),i=o.elm):l.hook.remove(l,e):_n(o)&&(o.hook.create(o),o.hook.insert(o,e,i),i=o.elm))}}(e,t,n)}function Vn(e,t){const r=e.aChildren||e.children;t.aChildren=r;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var r;const{cmpSlots:o}=e,i=e.cmpSlots=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];if(R(n))continue;let o="";Mn(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const l=i[o]=i[o]||[];N(n.key)||(n.key=`@${o}:${n.key}`),v.call(l,n)}if(F(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void kr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(N(i[r])||o[r].length!==i[r].length)return void kr(e);const l=o[r],s=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(l[t]!==s[t])return void kr(e)}}}(t,r),e.aChildren=r,e.children=ie)}function Kn(e){const{elm:t,children:n}=e;for(let e=0;e<n.length;++e){const r=n[e];null!=r&&(r.hook.create(r),r.hook.insert(r,t,null))}}const Gn=new WeakMap;function zn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(_n(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function qn(e,t,n,r,o){for(;r<=o;++r){const o=n[r];_n(o)&&(o.hook.create(o),o.hook.insert(o,e,t))}}function Un(e,t,n,r){for(;n<=r;++n){const r=t[n];_n(r)&&r.hook.remove(r,e)}}function Yn(e,t){e!==t&&(t.elm=e.elm,t.hook.update(e,t))}const Xn=Symbol.iterator;function Jn(e,t,n){const r=dr();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,hook:Nn,owner:r}}function Qn(e,t,n,r=ie){const o=dr(),{key:i}=n;const l={type:3,sel:e,data:n,children:r,elm:undefined,key:i,hook:Rn,ctor:t,owner:o,mode:"open"};return function(e){v.call(dr().velements,e)}(l),l}const Zn=new Map;let er=0;function tr(e){var t;return t=e,Gn.set(t,1),e}let nr=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const rr=i({s:function(e,t,n,r){N(r)||N(r[e])||0===r[e].length||(n=r[e]);const o=dr(),{renderMode:i,shadowMode:l}=o;return 0===i?(tr(n),n):(1===l&&tr(n),Jn("slot",t,n))},h:Jn,c:Qn,i:function(e,t){const n=[];if(tr(n),N(e)||null===e)return n;const r=e[Xn]();let o=r.next(),i=0,{value:l,done:s}=o;for(;!1===s;){o=r.next(),s=o.done;const e=t(l,i,0===i,!0===s);h(e)?v.apply(n,e):v.call(n,e),i+=1,l=o.value}return n},f:function(e){const t=e.length,n=[];tr(n);for(let r=0;r<t;r+=1){const t=e[r];h(t)?v.apply(n,t):v.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,hook:Pn,owner:dr()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=dr();if(R(t))throw new Error;const n=t;return function(t){wr(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:undefined,hook:An,owner:dr()}},dc:function(e,t,n,r){if(null==t)return null;if(!Cn(t))throw new Error(`Invalid LWC Constructor ${j(t)} for custom element <${e}>.`);let o=Zn.get(t);return N(o)&&(o=er++,Zn.set(t,o)),n.key=`dc:${o}:${n.key}`,Qn(e,t,n,r)},ti:function(e){return e>0&&!(_(e)||F(e))?0:e},gid:function(e){const t=dr();if(N(e)||""===e)return e;if(R(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?$.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=dr();if(N(e)||""===e)return e;if(R(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return nr(e)}});function or(e){return`${e}-host`}function ir(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let l=e[i];if(h(l))v.apply(r,ir(l,t,n));else{const e=l.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,s=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(N(o)&&(o=sr(n)),a=R(o)||0===o.shadowMode),v.call(r,l(i,s,a))}}return r}function lr(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return N(n)||0===n.length||(o=ir(n,r,e)),o}function sr(e){let t=e;for(;!R(t);){if(1===t.renderMode)return t;t=t.owner}return t}function ar(e,t){const{renderMode:n,shadowMode:r}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)Ve(t[e]);else{if(ae||fe()){const e=y.call(t,"\n");return o=e,rr.h("style",{key:"style",attrs:{type:"text/css"}},[rr.t(o)])}{const n=function(e){const t=sr(e);return R(t)||1!==t.shadowMode?t:null}(e),r=R(n);for(let e=0;e<t.length;e++)r?Ve(t[e]):Ke(t[e],n.shadowRoot)}}var o;return null}let cr=!1,ur=null;function dr(){return ur}function fr(e){ur=e}function pr(e,t){const r=cr,o=ur;let i=[];return qr(e,e.owner,(()=>{ur=e}),(()=>{const{component:r,context:o,cmpSlots:l,cmpTemplate:s,tro:a}=e;a.observe((()=>{if(t!==s){if(R(s)||zr(e),a=t,!an.has(a))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${j(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!N(t))for(let e=0;e<t.length;e++)if(_(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i}=e,{stylesheets:l,stylesheetToken:s}=t,a=1===o&&1===i,{hasScopedStyles:c}=r;let u,d,f;const{stylesheetToken:p,hasTokenInClass:h,hasTokenInAttribute:m}=r;h&&$e(n).remove(or(p)),m&&Me(n,or(p)),N(l)||0===l.length||(u=s),N(u)||(c&&($e(n).add(or(u)),d=!0),a&&(xe(n,or(u),""),f=!0)),r.stylesheetToken=u,r.hasTokenInClass=d,r.hasTokenInAttribute=f}(e,t);const r=lr(e,t);o.styleVNode=0===r.length?null:ar(e,r)}var a;e.velements=[],cr=!0,i=t.call(void 0,rr,r,l,o.tplCache);const{styleVNode:c}=o;R(c)||M.call(i,c)}))}),(()=>{cr=r,ur=o})),i}let hr=null;function mr(e){return hr===e}function gr(e,t,n){const{component:r,callHook:o,owner:i}=e;qr(e,i,I,(()=>{o(r,t,n)}),I)}function wr(e,t,n,r){const{callHook:o,owner:i}=e;qr(e,i,I,(()=>{o(n,t,[r])}),I)}const yr=new Map;function br(e){return new Je((()=>{const{isDirty:t}=e;F(t)&&(kr(e),function(e){if(_(ae)||_(e.isScheduled))return;e.isScheduled=!0,0===jr.length&&se(Br);v.call(jr,e)}(e))}))}function vr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=dr();let l,s=!1;return qr(e,o,(()=>{fr(e)}),(()=>{e.tro.observe((()=>{l=n(r,t),s=!0}))}),(()=>{fr(i)})),s?pr(e,l):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function kr(e){e.isDirty=!0}const Cr=new WeakMap;function Er(e,t){if(!L(t))throw new TypeError;let n=Cr.get(t);return N(n)&&(n=function(n){wr(e,t,void 0,n)},Cr.set(t,n)),n}const xr=n(null),Mr=["rendered","connected","disconnected"];function Sr(e,t){const{component:n,def:r,context:o}=e;for(let e=0,i=t.length;e<i;++e)t[e].call(void 0,n,{},r,o)}let Tr=0;const Or=new WeakMap;function $r(e,t,n=[]){return t.apply(e,n)}function Pr(e,t,n){e[t]=n}function Ar(e,t){return e[t]}function Nr(e){Hr(e)}function Rr(e){const t=Dr(e);1===t.state&&function(e){_r(Dr(e))}(e),Wr(t),Hr(t)}function _r(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){F(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=xr;t&&Sr(e,t);Vr(e)&&function(e){const{wiredDisconnecting:t}=e.context;qr(e,e,I,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),I)}(e);const{disconnectedCallback:n}=e.def;N(n)||gr(e,n)}(e),Kr(e),function(e){const{aChildren:t}=e;Gr(t)}(e)}}function Fr(e,t,r){const{mode:o,owner:i,tagName:l}=r,s=En(t),a={elm:e,def:s,idx:Tr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:o,owner:i,children:ie,aChildren:ie,velements:ie,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,renderMode:s.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNode:null,tplCache:oe,wiredConnecting:ie,wiredDisconnecting:ie},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:$r,setHook:Pr,getHook:Ar};return a.shadowMode=function(e){const{def:t}=e;let n;if(ue)if(0===t.renderMode)n=0;else if(ce)if("any"===t.shadowSupportMode)n=0;else{const t=function(e){let t=e.owner;for(;!R(t)&&0===t.renderMode;)t=t.owner;return t}(e);n=R(t)||0!==t.shadowMode?1:0}else n=1;else n=0;return n}(a),a.tro=br(a),function(e,t){const n=hr;let r;hr=e;try{const o=new t;if(hr.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(hr=n,!N(r))throw tt(e,r),r}}(a,s.ctor),Vr(a)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],l=Ur.get(i);if(!N(l)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:s}=Xr(e,t,l),a=l.dynamic.length>0;v.call(r,(()=>{n.connect(),ne.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),v.call(o,(()=>{n.disconnect(),s()}))}}}(a),a}function Lr(e,t){Or.set(e,t)}function Dr(e){return Or.get(e)}function Ir(e){return Or.get(e)}function Hr(e){if(_(e.isDirty)){!function(e,t){const{renderRoot:n,children:r}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&qr(e,e,(()=>{}),(()=>{Wn(n,r,t)}),(()=>{}));1===e.state&&function(e){const{def:{renderedCallback:t}}=e;if(_(ae))return;const{rendered:n}=xr;n&&Sr(e,n);N(t)||gr(e,t)}(e)}(e,vr(e))}}let jr=[];function Br(){const e=jr.sort(((e,t)=>e.idx-t.idx));jr=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{Hr(r)}catch(r){throw t+1<n&&(0===jr.length&&se(Br),M.apply(jr,E.call(e,t+1))),r}}}function Wr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=xr;n&&Sr(e,n),Vr(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;N(r)||gr(e,r)}function Vr(e){return s(e.def.wire).length>0}function Kr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!N(n)){const e=Ir(n);N(e)||_r(e)}}}function Gr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!R(n)&&!N(n.elm))switch(n.type){case 2:Gr(n.children);break;case 3:_r(Dr(n.elm));break}}}function zr(e){const{children:t,renderRoot:n}=e;for(let e=0,r=t.length;e<r;e++){const r=t[e];R(r)||N(r.elm)||he(r.elm,n)}e.children=ie,Kr(e),e.velements=ie}function qr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!N(i)){tt(e,i);const n=R(t)?void 0:function(e){let t=e;for(;!R(t);){if(!N(t.def.errorCallback))return t;t=t.owner}}(t);if(N(n))throw i;zr(e);gr(n,n.def.errorCallback,[i,i.wcStack])}}}const Ur=new Map;class Yr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Xr(e,t,n){const{method:r,adapter:i,configCallback:l,dynamic:s}=n,a=N(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,Qe(e,t))}}(e,t):function(e,t){return n=>{qr(e,e.owner,I,(()=>{t.call(e.component,n)}),I)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:s}),qr(e,e,I,(()=>{u=new i(a)}),I);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new Je((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,l,(t=>{qr(e,e,I,(()=>{u.update(t,c)}),I)}));return N(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=Qr(r);if(N(o))return;const{elm:i,context:{wiredConnecting:l,wiredDisconnecting:s}}=e;v.call(l,(()=>{const e=new Yr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){v.call(s,e)}});Oe(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const Jr=new Map;function Qr(e){return Jr.get(e)}function Zr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Ur.set(e,o)}function eo(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Ur.set(e,o)}let to=!1;var no;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(no||(no={}));const ro=/\s+/g;function oo(e){return new Set(e.split(ro).filter((e=>e.length)))}function io(e){return Array.from(e).join(" ")}function lo(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function so(e){return{type:no.Element,name:e,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}}}const ao=n(null),co=new WeakMap;function uo(e,t,n=null){const r=e.attributes.find((e=>e.name===t&&e.namespace===n));return r?r.value:null}function fo(e,t,n,r=null){const o=e.attributes.find((e=>e.name===t&&e.namespace===r));N(r)&&(r=null),N(o)?e.attributes.push({name:t,namespace:r,value:String(n)}):o.value=n}function po(e,t,n){e.attributes=e.attributes.filter((e=>e.name!==t&&e.namespace!==n))}const ho=I,mo=I,go=I,wo=I,yo=lo("dispatchEvent"),bo=lo("getBoundingClientRect"),vo=lo("querySelector"),ko=lo("querySelectorAll"),Co=lo("getElementsByTagName"),Eo=lo("getElementsByClassName"),xo=lo("getChildren"),Mo=lo("getChildNodes"),So=lo("getFirstChild"),To=lo("getFirstElementChild"),Oo=lo("getLastChild"),$o=lo("getLastElementChild");const Po=class{constructor(){const{constructor:e}=this,t=co.get(e);if(!t)throw new TypeError("Invalid Construction");return so(t)}};be=function(e,t){return e.shadowRoot={type:no.ShadowRoot,children:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e.shadowRoot},we=function(e){return{type:no.Comment,value:e,parent:null}},me=so,ge=function(e){return{type:no.Text,value:String(e),parent:null}},Ge=function(e,t,n){!function(e,t){if(e!==A.call(e)||ao[e])throw new TypeError("Invalid Registration");ao[e]=t,co.set(t,e)}(e,t)},Oe=yo,Ee=uo,Ae=bo,De=Mo,Le=xo,$e=function(e){function t(){let t=e.attributes.find((e=>"class"===e.name&&R(e.namespace)));return N(t)&&(t={name:"class",namespace:null,value:""},e.attributes.push(t)),t}return{add(...e){const n=t(),r=oo(n.value);e.forEach((e=>r.add(e))),n.value=io(r)},remove(...e){const n=t(),r=oo(n.value);e.forEach((e=>r.delete(e))),n.value=io(r)}}},ze=function(e){return ao[e]},Fe=Eo,_e=Co,Ie=So,He=To,je=Oo,Be=$o,ve=function(e,t){var n,r;if(t in e)return e[t];if(e.type===no.Element){const o=ee(t);if(Y(o,e.name))return null!==(n=uo(e,o))&&void 0!==n&&n;if(J(o)||G(o))return uo(e,o);if("input"===e.name&&"value"===t)return null!==(r=uo(e,"value"))&&void 0!==r?r:""}},function(e){de=e}(Po),pe=function(e,t,n){if(null!==e.parent&&e.parent!==t){const t=e.parent.children.indexOf(e);e.parent.children.splice(t,1)}e.parent=t;const r=R(n)?-1:t.children.indexOf(n);-1===r?t.children.push(e):t.children.splice(r,0,e)},Ve=ho,Ke=mo,We=function(e){return!R(e.parent)},fe=function(){return!1},ce=!1,ue=!1,ye=function(e){const{parent:t}=e;if(R(t))return null;const n=t.children.indexOf(e);return t.children[n+1]||null},Ne=vo,Re=ko,he=function(e,t){const n=t.children.indexOf(e);t.children.splice(n,1)},Me=po,Te=wo,xe=fo,Pe=function(e,t,n,r){const o=e.attributes.find((e=>"style"===e.name&&R(e.namespace))),i=`${t}: ${n}${r?" !important":""}`;N(o)?e.attributes.push({name:"style",namespace:null,value:i}):o.value+=`; ${i}`},ke=function(e,t,n){if(t in e)return e[t]=n;if(e.type===no.Element){const r=ee(t);if("innerHTML"===t)return void(e.children=[{type:no.Raw,parent:e,value:n}]);if(Y(r,e.name))return!0===n?fo(e,r,""):po(e,r);if(J(r)||G(r))return fo(e,r,n);if("input"===e.name&&"value"===r)return R(n)||N(n)?po(e,"value"):fo(e,"value",n)}},Ce=function(e,t){e.type===no.Text?e.value=t:e.type===no.Element&&(e.children=[{type:no.Text,parent:e,value:t}])},ae=!0,Se=go;const Ao={'"':"&quot;","'":"&#x27;","<":"&lt;",">":"&gt;","&":"&amp;"};function No(e){return e.replace(/["'<>&]/g,(e=>Ao[e]))}function Ro(e){return e.map((e=>{switch(e.type){case no.Text:return""===e.value?"‍":No(e.value);case no.Comment:return`\x3c!--${No(e.value)}--\x3e`;case no.Raw:return e.value;case no.Element:return _o(e)}})).join("")}function _o(e){let t="";const{name:n}=e,r=e.attributes.length?` ${o=e.attributes,o.map((e=>e.value.length?`${e.name}=${JSON.stringify(No(e.value))}`:e.name)).join(" ")}`:"";var o;const i=Ro(e.children);return t+=`<${n}${r}>`,e.shadowRoot&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${Ro(e.children)}</template>`}(e.shadowRoot)),t+=i,function(e){return q.has(e)}(n)||(t+=`</${n}>`),t}const Fo={type:no.Element,name:"fake-root-element",parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}};i(Gt),f(Gt.prototype),exports.LightningElement=Gt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=Qr(e);if(!N(t))throw new Error("Adapter already has a context provider.");t=function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}(),function(e,t){Jr.set(e,t)}(e,t);const n=new WeakSet;return(e,r)=>{if(n.has(e))throw new Error(`Adapter was already installed on ${e}.`);n.add(e);const{consumerConnectedCallback:o,consumerDisconnectedCallback:i}=r;e.addEventListener(t,(e=>{const{setNewContext:t,setDisconnectedCallback:n}=e,r={provide(e){t(e)}};n((()=>{N(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.getComponentDef=function(e){const t=En(e),{ctor:n,name:r,props:o,propsConfig:i,methods:l}=t,s={};for(const e in o)s[e]={config:i[e]||0,type:"any",attr:ee(e)};const a={};for(const e in l)a[e]=l[e].value;return{ctor:n,name:r,props:s,methods:a}},exports.isComponentConstructor=Cn,exports.readonly=function(e){return Vt.getReadOnlyProxy(e)},exports.register=function(e){for(let t=0;t<Mr.length;++t){const n=Mr[t];if(n in e){let t=xr[n];N(t)&&(xr[n]=t=[]),v.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return yr.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:s,wire:a,track:c,fields:u}=t,d=n(null),f=n(null),p=n(null),h=n(null),m=n(null),g=n(null);let w;if(!N(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=l(r,e),t.config>0){if(N(w))throw new Error;w=rn(e,w)}else w=N(w)||N(w.get)?tn(e):rn(e,w);f[e]=w,o(r,e,w)}if(N(s)||S.call(s,(e=>{if(w=l(r,e),N(w))throw new Error;d[e]=w})),!N(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:s=[]}=a[e];if(w=l(r,e),1===n){if(N(w))throw new Error;p[e]=w,Zr(w,t,i,s)}else w=Zt(e),h[e]=w,eo(w,t,i,s),o(r,e,w)}if(!N(c))for(const e in c)w=l(r,e),w=en(e),o(r,e,w);if(!N(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(r,t);const n=!N(i)&&t in i,o=!N(c)&&t in c;n||o||(m[t]=on(t))}return function(e,t){ln.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:p,wiredFields:h,observedFields:m}),e},exports.registerTemplate=function(e){return an.add(e),e},exports.renderComponent=function(e,t,n={}){if(!D(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!L(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||R(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=so(e);Fr(r,t,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r.parent=Fo,Rr(r),_o(r)},exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(N(te[e])){const n=d(te).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ne[e];if(!N(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);o(ne,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},exports.setFeatureFlagForTest=function(e,t){},exports.setHooks=function(t){var n;e.isFalse(to,"Hooks are already overridden, only one definition is allowed."),to=!0,n=t.sanitizeHtmlContent,nr=n},exports.track=function(e){if(1===arguments.length)return Vt.getProxy(e);throw new Error},exports.unwrap=function(e){return Vt.unwrapProxy(e)},exports.wire=function(e,t){throw new Error};
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:t,create:n,defineProperties:r,defineProperty:o,freeze:i,getOwnPropertyDescriptor:l,getOwnPropertyNames:s,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:p}=Object,{isArray:h}=Array,{filter:m,find:g,indexOf:w,join:y,map:b,push:v,reduce:k,reverse:C,slice:E,splice:x,unshift:M,forEach:S}=Array.prototype,{fromCharCode:T}=String,{charCodeAt:O,replace:$,slice:P,toLowerCase:A}=String.prototype;function N(e){return void 0===e}function R(e){return null===e}function _(e){return!0===e}function F(e){return!1===e}function L(e){return"function"==typeof e}function D(e){return"string"==typeof e}function I(){}const H={}.toString;function j(e){return e&&e.toString?h(e)?y.call(b.call(e,j),","):e.toString():"object"==typeof e?H.call(e):e+""}function B(e,t){do{const n=l(e,t);if(!N(n))return n;e=a(e)}while(null!==e)}const W=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:V,AriaPropNameToAttrNameMap:K}=(()=>{const e=n(null),t=n(null);return S.call(W,(n=>{const r=A.call($.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function G(e){return e in V}const z=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),q=new Set(["area","base","br","circle","col","ellipse","feBlend","feColorMatrix","feFuncR","feFuncG","feFuncB","feFuncA","feImage","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feGaussianBlur","feMerge","feMergeNode","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","fePointLight","embed","hr","img","input","keygen","line","link","menuitem","meta","param","rect","source","track","wbr"]);const U=new Map([["autofocus",new Set(["button","input","keygen","select","textarea"])],["autoplay",new Set(["audio","video"])],["checked",new Set(["command","input"])],["disabled",new Set(["button","command","fieldset","input","keygen","optgroup","select","textarea"])],["formnovalidate",new Set(["button"])],["hidden",new Set],["loop",new Set(["audio","bgsound","marquee","video"])],["multiple",new Set(["input","select"])],["muted",new Set(["audio","video"])],["novalidate",new Set(["form"])],["open",new Set(["details"])],["readonly",new Set(["input","textarea"])],["required",new Set(["input","select","textarea"])],["reversed",new Set(["ol"])],["selected",new Set(["option"])]]);function Y(e,t){const n=U.get(e);return void 0!==n&&(0===n.size||n.has(t))}const X=new Set(["role","accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","itemprop","lang","slot","spellcheck","style","tabindex","title"]);function J(e){return X.has(e)}const Q=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),Z=new Map;function ee(e){const t=K[e];if(!N(t))return t;const n=Q.get(e);if(!N(n))return n;const r=Z.get(e);if(!N(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=O.call(e,t);o+=n>=65&&n<=90?"-"+T(n+32):T(n)}return Z.set(e,o),o}if("function"!=typeof Event){class e{}o(z,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(z,"CustomEvent",{value:e,configurable:!0,writable:!0})}const te={ENABLE_REACTIVE_SETTER:null,ENABLE_HMR:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_WIRE_SYNC_EMIT:null};z.lwcRuntimeFlags||Object.defineProperty(z,"lwcRuntimeFlags",{value:n(null)});const ne=z.lwcRuntimeFlags;let re=[];const oe=f(n(null)),ie=f([]);function le(){const e=re;re=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function se(e){0===re.length&&Promise.resolve().then(le),v.call(re,e)}let ae,ce,ue,de,fe,pe,he,me,ge,we,ye,be,ve,ke,Ce,Ee,xe,Me,Se,Te,Oe,$e,Pe,Ae,Ne,Re,_e,Fe,Le,De,Ie,He,je,Be,We,Ve,Ke,Ge,ze;const qe=new WeakMap;let Ue=null;function Ye(e,t){const n=qe.get(e);if(!N(n)){const e=n[t];if(!N(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Xe(e,t){if(null===Ue)return;const r=Ue,o=function(e){let t=qe.get(e);if(N(t)){const r=n(null);t=r,qe.set(e,r)}return t}(e);let i=o[t];if(N(i))i=[],o[t]=i;else if(i[0]===r)return;-1===w.call(i,r)&&r.link(i)}class Je{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=Ue;let n;Ue=this;try{e()}catch(e){n=Object(e)}finally{if(Ue=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=w.call(e[n],this);x.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){v.call(e,this),v.call(this.listeners,e)}}function Qe(e,t){Ye(e.component,t)}function Ze(e,t){Xe(e.component,t)}function et(e){return`<${A.call(e.tagName)}>`}function tt(e,t){if(!u(t)&&N(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!R(n);)v.call(t,et(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}const nt="undefined"!=typeof HTMLElement?HTMLElement:function(){},rt=nt.prototype;function ot(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}t(n(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:ot("offsetHeight")},offsetLeft:{readOnly:!0,error:ot("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:ot("offsetTop")},offsetWidth:{readOnly:!0,error:ot("offsetWidth")},role:{attribute:"role"}});let it,lt=null;function st(e,t){return e!==lt||t!==it}function at(e,t){lt=null,it=void 0}function ct(e,t){lt=e,it=t}const ut=n(null);S.call(d(K),(e=>{const t=B(rt,e);N(t)||(ut[e]=t)})),S.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=B(rt,e);N(t)||(ut[e]=t)}));const{isArray:dt}=Array,{prototype:ft,getPrototypeOf:pt,create:ht,defineProperty:mt,isExtensible:gt,getOwnPropertyDescriptor:wt,getOwnPropertyNames:yt,getOwnPropertySymbols:bt,preventExtensions:vt,hasOwnProperty:kt}=Object,{push:Ct,concat:Et}=Array.prototype;function xt(e){return void 0===e}function Mt(e){return"function"==typeof e}const St=new WeakMap;function Tt(e,t){St.set(e,t)}const Ot=e=>St.get(e)||e;class $t{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(kt.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;xt(n)||(e.get=this.wrapGetter(n)),xt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=wt(n,t);if(!xt(r)){const n=this.wrapDescriptor(r);mt(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;Et.call(yt(t),bt(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;xt(n)||kt.call(e,n)||mt(e,n,ht(null)),vt(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=xt(n)||kt.call(t,n)?[]:[n];return Ct.apply(r,yt(t)),Ct.apply(r,bt(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!gt(e)&&(!!gt(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return pt(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=wt(n,t);if(xt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},mt(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const Pt=new WeakMap,At=new WeakMap,Nt=new WeakMap,Rt=new WeakMap;class _t extends $t{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=Pt.get(e);if(!xt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ot(this)))};return Pt.set(e,r),Nt.set(r,e),r}wrapSetter(e){const t=At.get(e);if(!xt(t))return t;const n=function(t){e.call(Ot(this),Ot(t))};return At.set(e,n),Rt.set(n,e),n}unwrapDescriptor(e){if(kt.call(e,"value"))e.value=Ot(e.value);else{const{set:t,get:n}=e;xt(n)||(e.get=this.unwrapGetter(n)),xt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=Nt.get(e);if(!xt(t))return t;const n=this,r=function(){return Ot(e.call(n.wrapValue(this)))};return Pt.set(r,e),Nt.set(e,r),r}unwrapSetter(e){const t=Rt.get(e);if(!xt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return At.set(r,e),Rt.set(e,r),r}set(e,t,n){const{originalTarget:r,membrane:{valueMutated:o}}=this;return r[t]!==n?(r[t]=n,o(r,t)):"length"===t&&dt(r)&&o(r,t),!0}deleteProperty(e,t){const{originalTarget:n,membrane:{valueMutated:r}}=this;return delete n[t],r(n,t),!0}setPrototypeOf(e,t){}preventExtensions(e){if(gt(e)){const{originalTarget:t}=this;if(vt(t),gt(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!kt.call(r,t)||(mt(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const Ft=new WeakMap,Lt=new WeakMap;class Dt extends $t{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=Ft.get(e);if(!xt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ot(this)))};return Ft.set(e,r),r}wrapSetter(e){const t=Lt.get(e);if(!xt(t))return t;const n=function(e){};return Lt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function It(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(dt(e))return!0;const t=pt(e);return t===ft||null===t||null===pt(t)}const Ht=(e,t)=>{},jt=(e,t)=>{};function Bt(e){return dt(e)?[]:{}}const Wt=Symbol.for("@@lockerLiveValue"),Vt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Mt(t)?t:jt,this.valueObserved=Mt(n)?n:Ht,this.valueIsObservable=Mt(r)?r:It,this.tagPropertyKey=o}getProxy(e){const t=Ot(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ot(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ot(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(xt(t)){const n=new _t(this,e);t=new Proxy(Bt(e),n),Tt(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(xt(t)){const n=new Dt(this,e);t=new Proxy(Bt(e),n),Tt(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Xe,valueMutated:Ye,tagPropertyKey:Wt});function Kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!L(n))throw new TypeError;if(!L(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=Dr(this);if(!mr(t))return Ze(t,e),n.call(t.elm)},set(t){const n=Dr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,Qe(n,e)),r.call(n.elm,t)}}}const Gt=function(){if(R(hr))throw new ReferenceError("Illegal constructor");const e=hr,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[Wt]=void 0,Lr(o,e),Lr(n,e),1===e.renderMode?e.renderRoot=zt(e):e.renderRoot=n,this};function zt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o}}=e,i=be(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=i,Lr(i,e),i}Gt.prototype={constructor:Gt,dispatchEvent(e){const{elm:t}=Dr(this);return Oe(t,e)},addEventListener(e,t,n){const r=Dr(this),{elm:o}=r,i=Er(r,t);Se(o,e,i,n)},removeEventListener(e,t,n){const r=Dr(this),{elm:o}=r,i=Er(r,t);Te(o,e,i,n)},hasAttribute(e){const{elm:t}=Dr(this);return!R(Ee(t,e))},hasAttributeNS(e,t){const{elm:n}=Dr(this);return!R(Ee(n,t,e))},removeAttribute(e){const{elm:t}=Dr(this);ct(t,e),Me(t,e),at()},removeAttributeNS(e,t){const{elm:n}=Dr(this);ct(n,t),Me(n,t,e),at()},getAttribute(e){const{elm:t}=Dr(this);return Ee(t,e)},getAttributeNS(e,t){const{elm:n}=Dr(this);return Ee(n,t,e)},setAttribute(e,t){const n=Dr(this),{elm:r}=n;ct(r,e),xe(r,e,t),at()},setAttributeNS(e,t,n){const r=Dr(this),{elm:o}=r;ct(o,t),xe(o,t,n,e),at()},getBoundingClientRect(){const e=Dr(this),{elm:t}=e;return Ae(t)},get isConnected(){const{elm:e}=Dr(this);return We(e)},get classList(){const e=Dr(this),{elm:t}=e;return $e(t)},get template(){return Dr(this).shadowRoot},get shadowRoot(){return null},render(){return Dr(this).def.template},toString(){return`[object ${Dr(this).def.name}]`}};const qt=n(null),Ut=["children","childNodes","firstChild","firstElementChild","lastChild","lastElementChild"];function Yt(e){switch(e){case"children":return Le;case"childNodes":return De;case"firstChild":return Ie;case"firstElementChild":return He;case"lastChild":return je;case"lastElementChild":return Be}}for(const e of Ut)qt[e]={get(){const t=Dr(this),{elm:n}=t;return Yt(e)(n)},configurable:!0,enumerable:!0};const Xt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];function Jt(e){switch(e){case"getElementsByClassName":return Fe;case"getElementsByTagName":return _e;case"querySelector":return Ne;case"querySelectorAll":return Re}}for(const e of Xt)qt[e]={value(t){const n=Dr(this),{elm:r}=n;return Jt(e)(r,t)},configurable:!0,enumerable:!0,writable:!0};r(Gt.prototype,qt);const Qt=n(null);for(const e in ut)Qt[e]=Kt(e,ut[e]);function Zt(e){return{get(){const t=Dr(this);return Ze(t,e),t.cmpFields[e]},set(t){const n=Dr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Qe(n,e))},enumerable:!0,configurable:!0}}function en(e){return{get(){const t=Dr(this);return Ze(t,e),t.cmpFields[e]},set(t){const n=Dr(this),r=Vt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,Qe(n,e))},enumerable:!0,configurable:!0}}function tn(e){return{get(){const t=Dr(this);if(!mr(t))return Ze(t,e),t.cmpProps[e]},set(t){const n=Dr(this);n.cmpProps[e]=t,Qe(n,e)},enumerable:!0,configurable:!0}}r(Gt.prototype,Qt),o(Gt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class nn extends Je{constructor(e,t){super((()=>{F(this.debouncing)&&(this.debouncing=!0,se((()=>{if(_(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,_(e.isDirty)&&F(r)&&i>0&&Nr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function rn(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!L(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Dr(this);if(r)if(ne.ENABLE_REACTIVE_SETTER){let o=n.oar[e];N(o)&&(o=n.oar[e]=new nn(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function on(e){return{get(){const t=Dr(this);return Ze(t,e),t.cmpFields[e]},set(t){const n=Dr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,Qe(n,e))},enumerable:!0,configurable:!0}}const ln=new Map;const sn={apiMethods:oe,apiFields:oe,apiFieldsConfig:oe,wiredMethods:oe,wiredFields:oe,observedFields:oe};const an=new Set;function cn(){return[]}an.add(cn);const un=n(null),dn=n(null);function fn(e){let t=un[e];return N(t)&&(t=un[e]=function(){const t=Dr(this),{getHook:n}=t;return n(t.component,e)}),t}function pn(e){let t=dn[e];return N(t)&&(t=dn[e]=function(t){const n=Dr(this),{setHook:r}=n;t=Vt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function hn(e){return function(){const t=Dr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,E.call(arguments))}}function mn(e,t){return function(n,r,o){if(r===o)return;const i=e[n];N(i)?N(t)||t.apply(this,arguments):st(this,n)&&(this[i]=o)}}function gn(e,t,i){let l;L(e)?l=class extends e{}:(l=function(){throw new TypeError("Illegal constructor")},p(l,e),p(l.prototype,e.prototype),o(l.prototype,"constructor",{writable:!0,configurable:!0,value:l}));const s=n(null),{attributeChangedCallback:a}=e.prototype,{observedAttributes:c=[]}=e,u=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];s[ee(n)]=n,u[n]={get:fn(n),set:pn(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:hn(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:mn(s,a)},o(l,"observedAttributes",{get:()=>[...c,...d(s)]}),r(l.prototype,u),l}const wn=gn(nt,s(ut),[]);function yn(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function bn(e){return L(e)&&c.call(e,"__circular__")}i(wn),f(wn.prototype);const vn=new WeakMap;function kn(e){const{shadowSupportMode:o,renderMode:i}=e,l=function(e){const t=ln.get(e);return N(t)?sn:t}(e),{apiFields:s,apiFieldsConfig:c,apiMethods:u,wiredFields:f,wiredMethods:p,observedFields:h}=l,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const k=function(e){let t=a(e);if(R(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(bn(t)){const e=yn(t);t=e===t?Gt:e}return t}(e),C=k!==Gt?En(k):xn,E=gn(C.bridge,d(s),d(u)),x=t(n(null),C.props,s),M=t(n(null),C.propsConfig,c),S=t(n(null),C.methods,u),T=t(n(null),C.wire,f,p);g=g||C.connectedCallback,w=w||C.disconnectedCallback,y=y||C.renderedCallback,b=b||C.errorCallback,v=v||C.render;let O=C.shadowSupportMode;N(o)||(O=o);let $=C.renderMode;N(i)||($="light"===i?0:1);const P=function(e){return yr.get(e)}(e)||C.template,A=e.name||C.name;r(m,h);return{ctor:e,name:A,wire:T,props:x,propsConfig:M,methods:S,bridge:E,template:P,renderMode:$,shadowSupportMode:O,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Cn(e){if(!L(e))return!1;if(e.prototype instanceof Gt)return!0;let t=e;do{if(bn(t)){const e=yn(t);if(e===t)return!0;t=e}if(t===Gt)return!0}while(!R(t)&&(t=a(t)));return!1}function En(e){let t=vn.get(e);if(N(t)){if(bn(e)){return t=En(yn(e)),vn.set(e,t),t}if(!Cn(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=kn(e),vn.set(e,t)}return t}const xn={ctor:Gt,name:Gt.name,props:Qt,propsConfig:oe,methods:oe,renderMode:1,shadowSupportMode:"reset",wire:oe,bridge:wn,template:cn,render:Gt.prototype.render};function Mn(e){const{type:t}=e;return 2===t||3===t}function Sn(e,t){return e.key===t.key&&e.sel===t.sel}function Tn(e,t){return"input"===e&&("value"===t||"checked"===t)}const On=n(null);function $n(e){if(null==e)return oe;e=D(e)?e:e+"";let t=On[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===O.call(e,r)&&(r>o&&(t[P.call(e,o,r)]=!0),o=r+1);return r>o&&(t[P.call(e,o,r)]=!0),On[e]=t,t}const Pn={create:e=>{const{owner:t}=e,n=ge(e.text);Dn(n,t),e.elm=n},update:In,insert:Hn,move:Hn,remove:jn},An={create:e=>{const{owner:t,text:n}=e,r=we(n);Dn(r,t),e.elm=r},update:In,insert:Hn,move:Hn,remove:jn},Nn={create:e=>{const{sel:t,owner:n,data:{svg:r}}=e,o=_(r)?"http://www.w3.org/2000/svg":void 0,i=me(t,o);Dn(i,n),function(e,t){const{owner:n}=t;if(Ln(e,n),1===n.shadowMode){const{data:{context:r}}=t,{stylesheetToken:o}=n.context;N(r)||N(r.lwc)||"manual"!==r.lwc.dom||function(e){e.$domManual$=!0}(e),N(o)||Fn(e,o)}}(i,e),e.elm=i,Bn(null,e)},update:(e,t)=>{Bn(e,t),Wn(t.elm,e.children,t.children)},insert:(e,t,n)=>{Hn(e,t,n),Kn(e)},move:Hn,remove:(e,t)=>{jn(e,t),function(e){const{children:t,elm:n}=e;for(let e=0,r=t.length;e<r;++e){const r=t[e];R(r)||r.hook.remove(r,n)}}(e)}},Rn={create:e=>{const{sel:t,owner:n}=e,r=function(e){e=e.toLowerCase();let t=ze(e);return N(t)?(t=class extends de{constructor(e){super(),L(e)&&e(this)}},Ge(e,t),t):t}(t);let o;const i=new r((t=>{o=function(e,t){let n=Ir(e);if(!N(n))return n;const{sel:r,mode:o,ctor:i,owner:l}=t;if(Ln(e,l),1===l.shadowMode){const{stylesheetToken:t}=l.context;N(t)||Fn(e,t)}return n=Fr(e,i,{mode:o,owner:l,tagName:r}),n}(t,e)}));if(Dn(i,n),e.elm=i,o)Vn(e,o);else if(e.ctor!==r)throw new TypeError("Incorrect Component Constructor");Bn(null,e)},update:(e,t)=>{Bn(e,t);const n=Ir(t.elm);n&&Vn(t,n),Wn(t.elm,e.children,t.children),n&&Nr(n)},insert:(e,t,n)=>{Hn(e,t,n);const r=Ir(e.elm);r&&Wr(r),Kn(e),r&&function(e){Hr(e)}(r)},move:Hn,remove:(e,t)=>{jn(e,t);const n=Ir(e.elm);n&&function(e){_r(e)}(n)}};function _n(e){return null!=e}function Fn(e,t){e.$shadowToken$=t}function Ln(e,t){const{cmpTemplate:n,context:r}=t,o=null==n?void 0:n.stylesheetToken;!N(o)&&r.hasScopedStyles&&$e(e).add(o)}function Dn(e,t){const{renderRoot:n,renderMode:r,shadowMode:o}=t;ue&&(1!==o&&0!==r||(e.$shadowResolver$=n.$shadowResolver$))}function In(e,t){const{elm:n,text:r}=t;e.text!==r&&Ce(n,r)}function Hn(e,t,n){pe(e.elm,t,n)}function jn(e,t){he(e.elm,t)}function Bn(e,t){R(e)&&(function(e){const{elm:t,data:{on:n}}=e;if(!N(n))for(const e in n){const r=n[e];Se(t,e,r)}}(t),function(e){const{elm:t,data:{classMap:n}}=e;if(N(n))return;const r=$e(t);for(const e in n)r.add(e)}(t),function(e){const{elm:t,data:{styleDecls:n}}=e;if(!N(n))for(let e=0;e<n.length;e++){const[r,o,i]=n[e];Pe(t,r,o,i)}}(t)),function(e,t){const{elm:n,data:{className:r}}=t,o=R(e)?void 0:e.data.className;if(o===r)return;const i=$e(n),l=$n(r),s=$n(o);let a;for(a in s)N(l[a])&&i.remove(a);for(a in l)N(s[a])&&i.add(a)}(e,t),function(e,t){const{elm:n,data:{style:r}}=t;(R(e)?void 0:e.data.style)!==r&&(D(r)&&""!==r?xe(n,"style",r):Me(n,"style"))}(e,t),function(e,t){const{attrs:n}=t.data;if(N(n))return;const r=R(e)?oe:e.data.attrs;if(r===n)return;const{elm:o}=t;for(const e in n){const t=n[e];r[e]!==t&&(ct(o,e),58===O.call(e,3)?xe(o,e,t,"http://www.w3.org/XML/1998/namespace"):58===O.call(e,5)?xe(o,e,t,"http://www.w3.org/1999/xlink"):R(t)||N(t)?Me(o,e):xe(o,e,t),at())}}(e,t),function(e,t){const{props:n}=t.data;if(N(n))return;const r=R(e)?oe:e.data.props;if(r===n)return;const o=R(e),{elm:i,sel:l}=t;for(const e in n){const t=n[e];(o||t!==(Tn(l,e)?ve(i,e):r[e]))&&ke(i,e,t)}}(e,t)}function Wn(e,t,n){var r;r=n,Gn.has(r)?function(e,t,n){let r=0,o=0,i=t.length-1,l=t[0],s=t[i];const a=n.length-1;let c,u,d,f,p=a,h=n[0],m=n[p],g=!1;for(;r<=i&&o<=p;)_n(l)?_n(s)?_n(h)?_n(m)?Sn(l,h)?(Yn(l,h),l=t[++r],h=n[++o]):Sn(s,m)?(Yn(s,m),s=t[--i],m=n[--p]):Sn(l,m)?(Yn(l,m),m.hook.move(l,e,ye(s.elm)),l=t[++r],m=n[--p]):Sn(s,h)?(Yn(s,h),h.hook.move(s,e,l.elm),s=t[--i],h=n[++o]):(void 0===c&&(c=zn(t,r,i)),u=c[h.key],N(u)?(h.hook.create(h),h.hook.insert(h,e,l.elm),h=n[++o]):(d=t[u],_n(d)&&(d.sel!==h.sel?(h.hook.create(h),h.hook.insert(h,e,l.elm)):(Yn(d,h),g||(g=!0,t=[...t]),t[u]=void 0,h.hook.move(d,e,l.elm))),h=n[++o])):m=n[--p]:h=n[++o]:s=t[--i]:l=t[++r];if(r<=i||o<=p)if(r>i){let t,r=p;do{t=n[++r]}while(!_n(t)&&r<a);f=_n(t)?t.elm:null,qn(e,f,n,o,p)}else Un(e,t,r,i)}(e,t,n):function(e,t,n){const r=t.length,o=n.length;if(0===r)return void qn(e,null,n,0,o);if(0===o)return void Un(e,t,0,r);let i=null;for(let r=o-1;r>=0;r-=1){const o=n[r],l=t[r];o!==l&&(_n(l)?_n(o)?(Yn(l,o),i=o.elm):l.hook.remove(l,e):_n(o)&&(o.hook.create(o),o.hook.insert(o,e,i),i=o.elm))}}(e,t,n)}function Vn(e,t){const r=e.aChildren||e.children;t.aChildren=r;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var r;const{cmpSlots:o}=e,i=e.cmpSlots=n(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];if(R(n))continue;let o="";Mn(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const l=i[o]=i[o]||[];N(n.key)||(n.key=`@${o}:${n.key}`),v.call(l,n)}if(F(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void kr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(N(i[r])||o[r].length!==i[r].length)return void kr(e);const l=o[r],s=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(l[t]!==s[t])return void kr(e)}}}(t,r),e.aChildren=r,e.children=ie)}function Kn(e){const{elm:t,children:n}=e;for(let e=0;e<n.length;++e){const r=n[e];null!=r&&(r.hook.create(r),r.hook.insert(r,t,null))}}const Gn=new WeakMap;function zn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(_n(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function qn(e,t,n,r,o){for(;r<=o;++r){const o=n[r];_n(o)&&(o.hook.create(o),o.hook.insert(o,e,t))}}function Un(e,t,n,r){for(;n<=r;++n){const r=t[n];_n(r)&&r.hook.remove(r,e)}}function Yn(e,t){e!==t&&(t.elm=e.elm,t.hook.update(e,t))}const Xn=Symbol.iterator;function Jn(e,t,n=ie){const r=dr();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,hook:Nn,owner:r}}function Qn(e,t,n,r=ie){const o=dr(),{key:i}=n;const l={type:3,sel:e,data:n,children:r,elm:undefined,key:i,hook:Rn,ctor:t,owner:o,mode:"open"};return function(e){v.call(dr().velements,e)}(l),l}const Zn=new Map;let er=0;function tr(e){var t;return t=e,Gn.set(t,1),e}let nr=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const rr=i({s:function(e,t,n,r){N(r)||N(r[e])||0===r[e].length||(n=r[e]);const o=dr(),{renderMode:i,shadowMode:l}=o;return 0===i?(tr(n),n):(1===l&&tr(n),Jn("slot",t,n))},h:Jn,c:Qn,i:function(e,t){const n=[];if(tr(n),N(e)||null===e)return n;const r=e[Xn]();let o=r.next(),i=0,{value:l,done:s}=o;for(;!1===s;){o=r.next(),s=o.done;const e=t(l,i,0===i,!0===s);h(e)?v.apply(n,e):v.call(n,e),i+=1,l=o.value}return n},f:function(e){const t=e.length,n=[];tr(n);for(let r=0;r<t;r+=1){const t=e[r];h(t)?v.apply(n,t):v.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,hook:Pn,owner:dr()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=dr();if(R(t))throw new Error;const n=t;return function(t){wr(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:undefined,hook:An,owner:dr()}},dc:function(e,t,n,r=ie){if(null==t)return null;if(!Cn(t))throw new Error(`Invalid LWC Constructor ${j(t)} for custom element <${e}>.`);let o=Zn.get(t);return N(o)&&(o=er++,Zn.set(t,o)),Qn(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(_(e)||F(e))?0:e},gid:function(e){const t=dr();if(N(e)||""===e)return e;if(R(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?$.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=dr();if(N(e)||""===e)return e;if(R(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return nr(e)}});function or(e){return`${e}-host`}function ir(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let l=e[i];if(h(l))v.apply(r,ir(l,t,n));else{const e=l.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,s=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(N(o)&&(o=sr(n)),a=R(o)||0===o.shadowMode),v.call(r,l(i,s,a))}}return r}function lr(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return N(n)||0===n.length||(o=ir(n,r,e)),o}function sr(e){let t=e;for(;!R(t);){if(1===t.renderMode)return t;t=t.owner}return t}function ar(e,t){const{renderMode:n,shadowMode:r}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)Ve(t[e]);else{if(ae||fe()){const e=y.call(t,"\n");return o=e,rr.h("style",{key:"style",attrs:{type:"text/css"}},[rr.t(o)])}{const n=function(e){const t=sr(e);return R(t)||1!==t.shadowMode?t:null}(e),r=R(n);for(let e=0;e<t.length;e++)r?Ve(t[e]):Ke(t[e],n.shadowRoot)}}var o;return null}let cr=!1,ur=null;function dr(){return ur}function fr(e){ur=e}function pr(e,t){const r=cr,o=ur;let i=[];return qr(e,e.owner,(()=>{ur=e}),(()=>{const{component:r,context:o,cmpSlots:l,cmpTemplate:s,tro:a}=e;a.observe((()=>{if(t!==s){if(R(s)||zr(e),a=t,!an.has(a))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${j(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!N(t))for(let e=0;e<t.length;e++)if(_(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i}=e,{stylesheets:l,stylesheetToken:s}=t,a=1===o&&1===i,{hasScopedStyles:c}=r;let u,d,f;const{stylesheetToken:p,hasTokenInClass:h,hasTokenInAttribute:m}=r;N(p)||(h&&$e(n).remove(or(p)),m&&Me(n,or(p))),N(l)||0===l.length||(u=s),N(u)||(c&&($e(n).add(or(u)),d=!0),a&&(xe(n,or(u),""),f=!0)),r.stylesheetToken=u,r.hasTokenInClass=d,r.hasTokenInAttribute=f}(e,t);const r=lr(e,t);o.styleVNode=0===r.length?null:ar(e,r)}var a;e.velements=[],cr=!0,i=t.call(void 0,rr,r,l,o.tplCache);const{styleVNode:c}=o;R(c)||M.call(i,c)}))}),(()=>{cr=r,ur=o})),i}let hr=null;function mr(e){return hr===e}function gr(e,t,n){const{component:r,callHook:o,owner:i}=e;qr(e,i,I,(()=>{o(r,t,n)}),I)}function wr(e,t,n,r){const{callHook:o,owner:i}=e;qr(e,i,I,(()=>{o(n,t,[r])}),I)}const yr=new Map;function br(e){return new Je((()=>{const{isDirty:t}=e;F(t)&&(kr(e),function(e){if(_(ae)||_(e.isScheduled))return;e.isScheduled=!0,0===jr.length&&se(Br);v.call(jr,e)}(e))}))}function vr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=dr();let l,s=!1;return qr(e,o,(()=>{fr(e)}),(()=>{e.tro.observe((()=>{l=n(r,t),s=!0}))}),(()=>{fr(i)})),s?pr(e,l):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function kr(e){e.isDirty=!0}const Cr=new WeakMap;function Er(e,t){if(!L(t))throw new TypeError;let n=Cr.get(t);return N(n)&&(n=function(n){wr(e,t,void 0,n)},Cr.set(t,n)),n}const xr=n(null),Mr=["rendered","connected","disconnected"];function Sr(e,t){const{component:n,def:r,context:o}=e;for(let e=0,i=t.length;e<i;++e)t[e].call(void 0,n,{},r,o)}let Tr=0;const Or=new WeakMap;function $r(e,t,n=[]){return t.apply(e,n)}function Pr(e,t,n){e[t]=n}function Ar(e,t){return e[t]}function Nr(e){Hr(e)}function Rr(e){const t=Dr(e);1===t.state&&function(e){_r(Dr(e))}(e),Wr(t),Hr(t)}function _r(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){F(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=xr;t&&Sr(e,t);Vr(e)&&function(e){const{wiredDisconnecting:t}=e.context;qr(e,e,I,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),I)}(e);const{disconnectedCallback:n}=e.def;N(n)||gr(e,n)}(e),Kr(e),function(e){const{aChildren:t}=e;Gr(t)}(e)}}function Fr(e,t,r){const{mode:o,owner:i,tagName:l}=r,s=En(t),a={elm:e,def:s,idx:Tr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:o,owner:i,children:ie,aChildren:ie,velements:ie,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,renderMode:s.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNode:null,tplCache:oe,wiredConnecting:ie,wiredDisconnecting:ie},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:$r,setHook:Pr,getHook:Ar};return a.shadowMode=function(e){const{def:t}=e;let n;if(ue)if(0===t.renderMode)n=0;else if(ce)if("any"===t.shadowSupportMode)n=0;else{const t=function(e){let t=e.owner;for(;!R(t)&&0===t.renderMode;)t=t.owner;return t}(e);n=R(t)||0!==t.shadowMode?1:0}else n=1;else n=0;return n}(a),a.tro=br(a),function(e,t){const n=hr;let r;hr=e;try{const o=new t;if(hr.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(hr=n,!N(r))throw tt(e,r),r}}(a,s.ctor),Vr(a)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],l=Ur.get(i);if(!N(l)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:s}=Xr(e,t,l),a=l.dynamic.length>0;v.call(r,(()=>{n.connect(),ne.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),v.call(o,(()=>{n.disconnect(),s()}))}}}(a),a}function Lr(e,t){Or.set(e,t)}function Dr(e){return Or.get(e)}function Ir(e){return Or.get(e)}function Hr(e){if(_(e.isDirty)){!function(e,t){const{renderRoot:n,children:r}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&qr(e,e,(()=>{}),(()=>{Wn(n,r,t)}),(()=>{}));1===e.state&&function(e){const{def:{renderedCallback:t}}=e;if(_(ae))return;const{rendered:n}=xr;n&&Sr(e,n);N(t)||gr(e,t)}(e)}(e,vr(e))}}let jr=[];function Br(){const e=jr.sort(((e,t)=>e.idx-t.idx));jr=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{Hr(r)}catch(r){throw t+1<n&&(0===jr.length&&se(Br),M.apply(jr,E.call(e,t+1))),r}}}function Wr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=xr;n&&Sr(e,n),Vr(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;N(r)||gr(e,r)}function Vr(e){return s(e.def.wire).length>0}function Kr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!N(n)){const e=Ir(n);N(e)||_r(e)}}}function Gr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!R(n)&&!N(n.elm))switch(n.type){case 2:Gr(n.children);break;case 3:_r(Dr(n.elm));break}}}function zr(e){const{children:t,renderRoot:n}=e;for(let e=0,r=t.length;e<r;e++){const r=t[e];R(r)||N(r.elm)||he(r.elm,n)}e.children=ie,Kr(e),e.velements=ie}function qr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!N(i)){tt(e,i);const n=R(t)?void 0:function(e){let t=e;for(;!R(t);){if(!N(t.def.errorCallback))return t;t=t.owner}}(t);if(N(n))throw i;zr(e);gr(n,n.def.errorCallback,[i,i.wcStack])}}}const Ur=new Map;class Yr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Xr(e,t,n){const{method:r,adapter:i,configCallback:l,dynamic:s}=n,a=N(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,Qe(e,t))}}(e,t):function(e,t){return n=>{qr(e,e.owner,I,(()=>{t.call(e.component,n)}),I)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:s}),qr(e,e,I,(()=>{u=new i(a)}),I);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new Je((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,l,(t=>{qr(e,e,I,(()=>{u.update(t,c)}),I)}));return N(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=Qr(r);if(N(o))return;const{elm:i,context:{wiredConnecting:l,wiredDisconnecting:s}}=e;v.call(l,(()=>{const e=new Yr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){v.call(s,e)}});Oe(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const Jr=new Map;function Qr(e){return Jr.get(e)}function Zr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Ur.set(e,o)}function eo(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Ur.set(e,o)}let to=!1;var no;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(no||(no={}));const ro=/\s+/g;function oo(e){return new Set(e.split(ro).filter((e=>e.length)))}function io(e){return Array.from(e).join(" ")}function lo(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function so(e){return{type:no.Element,name:e,parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}}}const ao=n(null),co=new WeakMap;function uo(e,t,n=null){const r=e.attributes.find((e=>e.name===t&&e.namespace===n));return r?r.value:null}function fo(e,t,n,r=null){const o=e.attributes.find((e=>e.name===t&&e.namespace===r));N(r)&&(r=null),N(o)?e.attributes.push({name:t,namespace:r,value:String(n)}):o.value=n}function po(e,t,n){e.attributes=e.attributes.filter((e=>e.name!==t&&e.namespace!==n))}const ho=I,mo=I,go=I,wo=I,yo=lo("dispatchEvent"),bo=lo("getBoundingClientRect"),vo=lo("querySelector"),ko=lo("querySelectorAll"),Co=lo("getElementsByTagName"),Eo=lo("getElementsByClassName"),xo=lo("getChildren"),Mo=lo("getChildNodes"),So=lo("getFirstChild"),To=lo("getFirstElementChild"),Oo=lo("getLastChild"),$o=lo("getLastElementChild");const Po=class{constructor(){const{constructor:e}=this,t=co.get(e);if(!t)throw new TypeError("Invalid Construction");return so(t)}};be=function(e,t){return e.shadowRoot={type:no.ShadowRoot,children:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e.shadowRoot},we=function(e){return{type:no.Comment,value:e,parent:null}},me=so,ge=function(e){return{type:no.Text,value:String(e),parent:null}},Ge=function(e,t,n){!function(e,t){if(e!==A.call(e)||ao[e])throw new TypeError("Invalid Registration");ao[e]=t,co.set(t,e)}(e,t)},Oe=yo,Ee=uo,Ae=bo,De=Mo,Le=xo,$e=function(e){function t(){let t=e.attributes.find((e=>"class"===e.name&&R(e.namespace)));return N(t)&&(t={name:"class",namespace:null,value:""},e.attributes.push(t)),t}return{add(...e){const n=t(),r=oo(n.value);e.forEach((e=>r.add(e))),n.value=io(r)},remove(...e){const n=t(),r=oo(n.value);e.forEach((e=>r.delete(e))),n.value=io(r)}}},ze=function(e){return ao[e]},Fe=Eo,_e=Co,Ie=So,He=To,je=Oo,Be=$o,ve=function(e,t){var n,r;if(t in e)return e[t];if(e.type===no.Element){const o=ee(t);if(Y(o,e.name))return null!==(n=uo(e,o))&&void 0!==n&&n;if(J(o)||G(o))return uo(e,o);if("input"===e.name&&"value"===t)return null!==(r=uo(e,"value"))&&void 0!==r?r:""}},function(e){de=e}(Po),pe=function(e,t,n){if(null!==e.parent&&e.parent!==t){const t=e.parent.children.indexOf(e);e.parent.children.splice(t,1)}e.parent=t;const r=R(n)?-1:t.children.indexOf(n);-1===r?t.children.push(e):t.children.splice(r,0,e)},Ve=ho,Ke=mo,We=function(e){return!R(e.parent)},fe=function(){return!1},ce=!1,ue=!1,ye=function(e){const{parent:t}=e;if(R(t))return null;const n=t.children.indexOf(e);return t.children[n+1]||null},Ne=vo,Re=ko,he=function(e,t){const n=t.children.indexOf(e);t.children.splice(n,1)},Me=po,Te=wo,xe=fo,Pe=function(e,t,n,r){const o=e.attributes.find((e=>"style"===e.name&&R(e.namespace))),i=`${t}: ${n}${r?" !important":""}`;N(o)?e.attributes.push({name:"style",namespace:null,value:i}):o.value+=`; ${i}`},ke=function(e,t,n){if(t in e)return e[t]=n;if(e.type===no.Element){const r=ee(t);if("innerHTML"===t)return void(e.children=[{type:no.Raw,parent:e,value:n}]);if(Y(r,e.name))return!0===n?fo(e,r,""):po(e,r);if(J(r)||G(r))return fo(e,r,n);if("input"===e.name&&"value"===r)return R(n)||N(n)?po(e,"value"):fo(e,"value",n)}},Ce=function(e,t){e.type===no.Text?e.value=t:e.type===no.Element&&(e.children=[{type:no.Text,parent:e,value:t}])},ae=!0,Se=go;const Ao={'"':"&quot;","'":"&#x27;","<":"&lt;",">":"&gt;","&":"&amp;"};function No(e){return e.replace(/["'<>&]/g,(e=>Ao[e]))}function Ro(e){return e.map((e=>{switch(e.type){case no.Text:return""===e.value?"‍":No(e.value);case no.Comment:return`\x3c!--${No(e.value)}--\x3e`;case no.Raw:return e.value;case no.Element:return _o(e)}})).join("")}function _o(e){let t="";const{name:n}=e,r=e.attributes.length?` ${o=e.attributes,o.map((e=>e.value.length?`${e.name}=${JSON.stringify(No(e.value))}`:e.name)).join(" ")}`:"";var o;const i=Ro(e.children);return t+=`<${n}${r}>`,e.shadowRoot&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${Ro(e.children)}</template>`}(e.shadowRoot)),t+=i,function(e){return q.has(e)}(n)||(t+=`</${n}>`),t}const Fo={type:no.Element,name:"fake-root-element",parent:null,shadowRoot:null,children:[],attributes:[],eventListeners:{}};i(Gt),f(Gt.prototype),exports.LightningElement=Gt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=Qr(e);if(!N(t))throw new Error("Adapter already has a context provider.");t=function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}(),function(e,t){Jr.set(e,t)}(e,t);const n=new WeakSet;return(e,r)=>{if(n.has(e))throw new Error(`Adapter was already installed on ${e}.`);n.add(e);const{consumerConnectedCallback:o,consumerDisconnectedCallback:i}=r;e.addEventListener(t,(e=>{const{setNewContext:t,setDisconnectedCallback:n}=e,r={provide(e){t(e)}};n((()=>{N(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.getComponentDef=function(e){const t=En(e),{ctor:n,name:r,props:o,propsConfig:i,methods:l}=t,s={};for(const e in o)s[e]={config:i[e]||0,type:"any",attr:ee(e)};const a={};for(const e in l)a[e]=l[e].value;return{ctor:n,name:r,props:s,methods:a}},exports.isComponentConstructor=Cn,exports.readonly=function(e){return Vt.getReadOnlyProxy(e)},exports.register=function(e){for(let t=0;t<Mr.length;++t){const n=Mr[t];if(n in e){let t=xr[n];N(t)&&(xr[n]=t=[]),v.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return yr.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:s,wire:a,track:c,fields:u}=t,d=n(null),f=n(null),p=n(null),h=n(null),m=n(null),g=n(null);let w;if(!N(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=l(r,e),t.config>0){if(N(w))throw new Error;w=rn(e,w)}else w=N(w)||N(w.get)?tn(e):rn(e,w);f[e]=w,o(r,e,w)}if(N(s)||S.call(s,(e=>{if(w=l(r,e),N(w))throw new Error;d[e]=w})),!N(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:s=[]}=a[e];if(w=l(r,e),1===n){if(N(w))throw new Error;p[e]=w,Zr(w,t,i,s)}else w=Zt(e),h[e]=w,eo(w,t,i,s),o(r,e,w)}if(!N(c))for(const e in c)w=l(r,e),w=en(e),o(r,e,w);if(!N(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(r,t);const n=!N(i)&&t in i,o=!N(c)&&t in c;n||o||(m[t]=on(t))}return function(e,t){ln.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:p,wiredFields:h,observedFields:m}),e},exports.registerTemplate=function(e){return an.add(e),e},exports.renderComponent=function(e,t,n={}){if(!D(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!L(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||R(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=so(e);Fr(r,t,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r.parent=Fo,Rr(r),_o(r)},exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(N(te[e])){const n=d(te).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ne[e];if(!N(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);o(ne,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},exports.setFeatureFlagForTest=function(e,t){},exports.setHooks=function(t){var n;e.isFalse(to,"Hooks are already overridden, only one definition is allowed."),to=!0,n=t.sanitizeHtmlContent,nr=n},exports.track=function(e){if(1===arguments.length)return Vt.getProxy(e);throw new Error},exports.unwrap=function(e){return Vt.unwrapProxy(e)},exports.wire=function(e,t){throw new Error};
@@ -339,7 +339,7 @@ function htmlPropertyToAttribute(propName) {
339
339
  const XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
340
340
  const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
341
341
  const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
342
- /** version: 2.8.0 */
342
+ /** version: 2.9.0 */
343
343
 
344
344
  /*
345
345
  * Copyright (c) 2020, salesforce.com, inc.
@@ -460,7 +460,7 @@ function setFeatureFlagForTest(name, value) {
460
460
  setFeatureFlag(name, value);
461
461
  }
462
462
  }
463
- /** version: 2.8.0 */
463
+ /** version: 2.9.0 */
464
464
 
465
465
  /* proxy-compat-disable */
466
466
 
@@ -4622,11 +4622,13 @@ function fallbackElmHook(elm, vnode) {
4622
4622
  ) {
4623
4623
  // this element will now accept any manual content inserted into it
4624
4624
  observeElementChildNodes(elm);
4625
- } // when running in synthetic shadow mode, we need to set the shadowToken value
4626
- // into each element from the template, so they can be styled accordingly.
4627
-
4625
+ }
4628
4626
 
4629
- setElementShadowToken(elm, stylesheetToken);
4627
+ if (!isUndefined$1(stylesheetToken)) {
4628
+ // when running in synthetic shadow mode, we need to set the shadowToken value
4629
+ // into each element from the template, so they can be styled accordingly.
4630
+ setElementShadowToken(elm, stylesheetToken);
4631
+ }
4630
4632
  }
4631
4633
 
4632
4634
  if (process.env.NODE_ENV !== 'production') {
@@ -4713,7 +4715,9 @@ function createViewModelHook(elm, vnode) {
4713
4715
  } = owner.context; // when running in synthetic shadow mode, we need to set the shadowToken value
4714
4716
  // into each element from the template, so they can be styled accordingly.
4715
4717
 
4716
- setElementShadowToken(elm, stylesheetToken);
4718
+ if (!isUndefined$1(stylesheetToken)) {
4719
+ setElementShadowToken(elm, stylesheetToken);
4720
+ }
4717
4721
  }
4718
4722
 
4719
4723
  vm = createVM(elm, ctor, {
@@ -4894,6 +4898,7 @@ function updateDynamicChildren(parentElm, oldCh, newCh) {
4894
4898
  let idxInOld;
4895
4899
  let elmToMove;
4896
4900
  let before;
4901
+ let clonedOldCh = false;
4897
4902
 
4898
4903
  while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {
4899
4904
  if (!isVNode(oldStartVnode)) {
@@ -4945,7 +4950,18 @@ function updateDynamicChildren(parentElm, oldCh, newCh) {
4945
4950
  newStartVnode.hook.create(newStartVnode);
4946
4951
  newStartVnode.hook.insert(newStartVnode, parentElm, oldStartVnode.elm);
4947
4952
  } else {
4948
- patchVnode(elmToMove, newStartVnode);
4953
+ patchVnode(elmToMove, newStartVnode); // Delete the old child, but copy the array since it is read-only.
4954
+ // The `oldCh` will be GC'ed after `updateDynamicChildren` is complete,
4955
+ // so we only care about the `oldCh` object inside this function.
4956
+ // To avoid cloning over and over again, we check `clonedOldCh`
4957
+ // and only clone once.
4958
+
4959
+ if (!clonedOldCh) {
4960
+ clonedOldCh = true;
4961
+ oldCh = [...oldCh];
4962
+ } // We've already cloned at least once, so it's no longer read-only
4963
+
4964
+
4949
4965
  oldCh[idxInOld] = undefined;
4950
4966
  newStartVnode.hook.move(elmToMove, parentElm, oldStartVnode.elm);
4951
4967
  }
@@ -5042,7 +5058,7 @@ function addVNodeToChildLWC(vnode) {
5042
5058
  } // [h]tml node
5043
5059
 
5044
5060
 
5045
- function h(sel, data, children) {
5061
+ function h(sel, data, children = EmptyArray) {
5046
5062
  const vmBeingRendered = getVMBeingRendered();
5047
5063
 
5048
5064
  if (process.env.NODE_ENV !== 'production') {
@@ -5440,7 +5456,7 @@ let dynamicImportedComponentCounter = 0;
5440
5456
  * create a dynamic component via `<x-foo lwc:dynamic={Ctor}>`
5441
5457
  */
5442
5458
 
5443
- function dc(sel, Ctor, data, children) {
5459
+ function dc(sel, Ctor, data, children = EmptyArray) {
5444
5460
  if (process.env.NODE_ENV !== 'production') {
5445
5461
  assert.isTrue(isString(sel), `dc() 1st argument sel must be a string.`);
5446
5462
  assert.isTrue(isObject(data), `dc() 3nd argument data must be an object.`);
@@ -5464,10 +5480,14 @@ function dc(sel, Ctor, data, children) {
5464
5480
  } // the new vnode key is a mix of idx and compiler key, this is required by the diffing algo
5465
5481
  // to identify different constructors as vnodes with different keys to avoid reusing the
5466
5482
  // element used for previous constructors.
5483
+ // Shallow clone is necessary here becuase VElementData may be shared across VNodes due to
5484
+ // hoisting optimization.
5467
5485
 
5468
5486
 
5469
- data.key = `dc:${idx}:${data.key}`;
5470
- return c(sel, Ctor, data, children);
5487
+ const newData = Object.assign(Object.assign({}, data), {
5488
+ key: `dc:${idx}:${data.key}`
5489
+ });
5490
+ return c(sel, Ctor, newData, children);
5471
5491
  }
5472
5492
  /**
5473
5493
  * slow children collection marking mechanism. this API allows the compiler to signal
@@ -5587,12 +5607,14 @@ function updateStylesheetToken(vm, template) {
5587
5607
  hasTokenInAttribute: oldHasTokenInAttribute
5588
5608
  } = context;
5589
5609
 
5590
- if (oldHasTokenInClass) {
5591
- getClassList$1(elm).remove(makeHostToken(oldToken));
5592
- }
5610
+ if (!isUndefined$1(oldToken)) {
5611
+ if (oldHasTokenInClass) {
5612
+ getClassList$1(elm).remove(makeHostToken(oldToken));
5613
+ }
5593
5614
 
5594
- if (oldHasTokenInAttribute) {
5595
- removeAttribute$1(elm, makeHostToken(oldToken));
5615
+ if (oldHasTokenInAttribute) {
5616
+ removeAttribute$1(elm, makeHostToken(oldToken));
5617
+ }
5596
5618
  } // Apply the new template styling token to the host element, if the new template has any
5597
5619
  // associated stylesheets. In the case of light DOM, also ensure there is at least one scoped stylesheet.
5598
5620
 
@@ -7283,7 +7305,7 @@ function setHooks(hooks) {
7283
7305
  hooksAreSet = true;
7284
7306
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
7285
7307
  }
7286
- /* version: 2.8.0 */
7308
+ /* version: 2.9.0 */
7287
7309
 
7288
7310
  /*
7289
7311
  * Copyright (c) 2020, salesforce.com, inc.
@@ -7823,6 +7845,6 @@ function renderComponent(tagName, Ctor, props = {}) {
7823
7845
 
7824
7846
  freeze(LightningElement);
7825
7847
  seal(LightningElement.prototype);
7826
- /* version: 2.8.0 */
7848
+ /* version: 2.9.0 */
7827
7849
 
7828
7850
  export { LightningElement, api$1 as api, createContextProvider, getComponentDef, isComponentConstructor, readonly, register, registerComponent, registerDecorators, registerTemplate, renderComponent, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, track, unwrap, wire };
@@ -194,7 +194,7 @@ const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
194
194
  // we can't use typeof since it will fail when transpiling.
195
195
 
196
196
  const hasNativeSymbolSupport = /*@__PURE__*/(() => Symbol('x').toString() === 'Symbol(x)')();
197
- /** version: 2.8.0 */
197
+ /** version: 2.9.0 */
198
198
 
199
199
  /*
200
200
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1562,7 +1562,7 @@ if (!_globalThis.lwcRuntimeFlags) {
1562
1562
  }
1563
1563
 
1564
1564
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1565
- /** version: 2.8.0 */
1565
+ /** version: 2.9.0 */
1566
1566
 
1567
1567
  /*
1568
1568
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5787,4 +5787,4 @@ defineProperty(Element.prototype, '$domManual$', {
5787
5787
 
5788
5788
  configurable: true
5789
5789
  });
5790
- /** version: 2.8.0 */
5790
+ /** version: 2.9.0 */
@@ -197,7 +197,7 @@
197
197
  // we can't use typeof since it will fail when transpiling.
198
198
 
199
199
  const hasNativeSymbolSupport = /*@__PURE__*/(() => Symbol('x').toString() === 'Symbol(x)')();
200
- /** version: 2.8.0 */
200
+ /** version: 2.9.0 */
201
201
 
202
202
  /*
203
203
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1565,7 +1565,7 @@
1565
1565
  }
1566
1566
 
1567
1567
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1568
- /** version: 2.8.0 */
1568
+ /** version: 2.9.0 */
1569
1569
 
1570
1570
  /*
1571
1571
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5790,6 +5790,6 @@
5790
5790
 
5791
5791
  configurable: true
5792
5792
  });
5793
- /** version: 2.8.0 */
5793
+ /** version: 2.9.0 */
5794
5794
 
5795
5795
  })();
@@ -125,7 +125,7 @@
125
125
  const KEY__SHADOW_TOKEN = '$shadowToken$';
126
126
  const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
127
127
  const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
128
- /** version: 2.8.0 */
128
+ /** version: 2.9.0 */
129
129
 
130
130
  /*
131
131
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1466,7 +1466,7 @@
1466
1466
  }
1467
1467
 
1468
1468
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1469
- /** version: 2.8.0 */
1469
+ /** version: 2.9.0 */
1470
1470
 
1471
1471
  /*
1472
1472
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5598,6 +5598,6 @@
5598
5598
 
5599
5599
  configurable: true
5600
5600
  });
5601
- /** version: 2.8.0 */
5601
+ /** version: 2.9.0 */
5602
5602
 
5603
5603
  })();
@@ -197,7 +197,7 @@
197
197
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
198
198
  return Symbol('x').toString() === 'Symbol(x)';
199
199
  }();
200
- /** version: 2.8.0 */
200
+ /** version: 2.9.0 */
201
201
 
202
202
  /*
203
203
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1523,7 +1523,7 @@
1523
1523
  }
1524
1524
 
1525
1525
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1526
- /** version: 2.8.0 */
1526
+ /** version: 2.9.0 */
1527
1527
 
1528
1528
  /*
1529
1529
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5603,6 +5603,6 @@
5603
5603
  },
5604
5604
  configurable: true
5605
5605
  });
5606
- /** version: 2.8.0 */
5606
+ /** version: 2.9.0 */
5607
5607
 
5608
5608
  })();