lwc 2.23.4 → 2.23.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +168 -63
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +168 -63
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +166 -61
  5. package/dist/engine-dom/iife/es5/engine-dom.js +405 -294
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +403 -292
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +168 -63
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +166 -61
  11. package/dist/engine-dom/umd/es5/engine-dom.js +405 -294
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +403 -292
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +67 -10
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +67 -10
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +55 -36
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +55 -36
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +52 -32
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +24 -18
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +24 -18
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +55 -36
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +52 -32
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +24 -18
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +24 -18
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  34. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  35. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  36. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  37. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  38. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  39. package/package.json +7 -7
@@ -436,9 +436,9 @@ function htmlEscape(str, attrMode = false) {
436
436
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
437
437
  */
438
438
  // Increment whenever the LWC template compiler changes
439
- const LWC_VERSION = "2.23.4";
439
+ const LWC_VERSION = "2.23.6";
440
440
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
441
- /** version: 2.23.4 */
441
+ /** version: 2.23.6 */
442
442
 
443
443
  /*
444
444
  * Copyright (c) 2020, salesforce.com, inc.
@@ -495,6 +495,7 @@ const features = {
495
495
  ENABLE_NODE_PATCH: null,
496
496
  ENABLE_REACTIVE_SETTER: null,
497
497
  ENABLE_WIRE_SYNC_EMIT: null,
498
+ ENABLE_LIGHT_GET_ROOT_NODE_PATCH: null,
498
499
  };
499
500
  if (!_globalThis.lwcRuntimeFlags) {
500
501
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
@@ -548,7 +549,7 @@ function setFeatureFlagForTest(name, value) {
548
549
  setFeatureFlag(name, value);
549
550
  }
550
551
  }
551
- /** version: 2.23.4 */
552
+ /** version: 2.23.6 */
552
553
 
553
554
  /* proxy-compat-disable */
554
555
 
@@ -3655,6 +3656,12 @@ function patch(n1, n2, parent, renderer) {
3655
3656
  n2.elm = n1.elm;
3656
3657
  break;
3657
3658
 
3659
+ case 5
3660
+ /* VNodeType.Fragment */
3661
+ :
3662
+ patchFragment(n1, n2, parent, renderer);
3663
+ break;
3664
+
3658
3665
  case 2
3659
3666
  /* VNodeType.Element */
3660
3667
  :
@@ -3694,6 +3701,12 @@ function mount(node, parent, renderer, anchor) {
3694
3701
  mountStatic(node, parent, anchor, renderer);
3695
3702
  break;
3696
3703
 
3704
+ case 5
3705
+ /* VNodeType.Fragment */
3706
+ :
3707
+ mountFragment(node, parent, anchor, renderer);
3708
+ break;
3709
+
3697
3710
  case 2
3698
3711
  /* VNodeType.Element */
3699
3712
  :
@@ -3751,6 +3764,31 @@ function mountComment(vnode, parent, anchor, renderer) {
3751
3764
  insertNode(commentNode, parent, anchor, renderer);
3752
3765
  }
3753
3766
 
3767
+ function mountFragment(vnode, parent, anchor, renderer) {
3768
+ const {
3769
+ children
3770
+ } = vnode;
3771
+ mountVNodes(children, parent, renderer, anchor); // children of a fragment will always have at least the two delimiters.
3772
+
3773
+ vnode.elm = children[children.length - 1].elm;
3774
+ }
3775
+
3776
+ function patchFragment(n1, n2, parent, renderer) {
3777
+ const {
3778
+ children,
3779
+ stable
3780
+ } = n2;
3781
+
3782
+ if (stable) {
3783
+ updateStaticChildren(n1.children, children, parent, renderer);
3784
+ } else {
3785
+ updateDynamicChildren(n1.children, children, parent, renderer);
3786
+ } // Note: not reusing n1.elm, because during patching, it may be patched with another text node.
3787
+
3788
+
3789
+ n2.elm = children[children.length - 1].elm;
3790
+ }
3791
+
3754
3792
  function mountElement(vnode, parent, anchor, renderer) {
3755
3793
  const {
3756
3794
  sel,
@@ -3906,9 +3944,15 @@ function unmount(vnode, parent, renderer, doRemove = false) {
3906
3944
  // subtree root, is the only element worth unmounting from the subtree.
3907
3945
 
3908
3946
  if (doRemove) {
3909
- // The vnode might or might not have a data.renderer associated to it
3910
- // but the removal used here is from the owner instead.
3911
- removeNode(elm, parent, renderer);
3947
+ if (type === 5
3948
+ /* VNodeType.Fragment */
3949
+ ) {
3950
+ unmountVNodes(vnode.children, parent, renderer, doRemove);
3951
+ } else {
3952
+ // The vnode might or might not have a data.renderer associated to it
3953
+ // but the removal used here is from the owner instead.
3954
+ removeNode(elm, parent, renderer);
3955
+ }
3912
3956
  }
3913
3957
 
3914
3958
  switch (type) {
@@ -4415,6 +4459,18 @@ function st(fragment, key) {
4415
4459
  owner: getVMBeingRendered(),
4416
4460
  };
4417
4461
  }
4462
+ // [fr]agment node
4463
+ function fr(key, children, stable) {
4464
+ return {
4465
+ type: 5 /* VNodeType.Fragment */,
4466
+ sel: undefined,
4467
+ key,
4468
+ elm: undefined,
4469
+ children: [t(''), ...children, t('')],
4470
+ stable,
4471
+ owner: getVMBeingRendered(),
4472
+ };
4473
+ }
4418
4474
  // [h]tml node
4419
4475
  function h(sel, data, children = EmptyArray) {
4420
4476
  const vmBeingRendered = getVMBeingRendered();
@@ -4634,13 +4690,13 @@ function t(text) {
4634
4690
  }
4635
4691
  // [co]mment node
4636
4692
  function co(text) {
4637
- let sel, key, elm;
4693
+ let sel, elm;
4638
4694
  return {
4639
4695
  type: 1 /* VNodeType.Comment */,
4640
4696
  sel,
4641
4697
  text,
4642
4698
  elm,
4643
- key,
4699
+ key: 'c',
4644
4700
  owner: getVMBeingRendered(),
4645
4701
  };
4646
4702
  }
@@ -4785,6 +4841,7 @@ const api = freeze({
4785
4841
  k,
4786
4842
  co,
4787
4843
  dc,
4844
+ fr,
4788
4845
  ti,
4789
4846
  st,
4790
4847
  gid,
@@ -6246,7 +6303,7 @@ function freezeTemplate(tmpl) {
6246
6303
  });
6247
6304
  }
6248
6305
  }
6249
- /* version: 2.23.4 */
6306
+ /* version: 2.23.6 */
6250
6307
 
6251
6308
  /*
6252
6309
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6716,7 +6773,7 @@ function renderComponent(tagName, Ctor, props = {}) {
6716
6773
  */
6717
6774
  freeze(LightningElement);
6718
6775
  seal(LightningElement.prototype);
6719
- /* version: 2.23.4 */
6776
+ /* version: 2.23.6 */
6720
6777
 
6721
6778
  exports.LightningElement = LightningElement;
6722
6779
  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:s,getOwnPropertyNames:l,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:p}=Object,{isArray:h}=Array,{copyWithin:m,fill:g,filter:w,find:y,indexOf:b,join:v,map:E,pop:C,push:S,reduce:k,reverse:x,shift:M,slice:T,sort:A,splice:O,unshift:N,forEach:L}=Array.prototype,{fromCharCode:$}=String,{charCodeAt:_,replace:P,slice:R,toLowerCase:D}=String.prototype;function F(e){return void 0===e}function I(e){return null===e}function H(e){return!0===e}function j(e){return!1===e}function B(e){return"function"==typeof e}function W(e){return"string"==typeof e}function V(){}const K={}.toString;function z(e){return e&&e.toString?h(e)?v.call(E.call(e,z),","):e.toString():"object"==typeof e?K.call(e):e+""}function G(e,t){do{const n=s(e,t);if(!F(n))return n;e=a(e)}while(null!==e)}const U=["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:q,AriaPropNameToAttrNameMap:Y}=(()=>{const e=n(null),t=n(null);return L.call(U,(n=>{const r=D.call(P.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function X(e){return e in q}const J=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="http://www.w3.org/1999/xhtml",Z=new Set(["area","base","br","col","embed","hr","img","input","link","meta","source","track","wbr","param","keygen","menuitem"]);const ee=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 te(e,t){const n=ee.get(e);return void 0!==n&&(0===n.size||n.has(t))}const ne=new Set(["accesskey","autocapitalize","autofocus","class","contenteditable","contextmenu","dir","draggable","enterkeyhint","exportparts","hidden","id","inputmode","is","itemid","itemprop","itemref","itemscope","itemtype","lang","nonce","part","slot","spellcheck","style","tabindex","title","translate"]);function re(e){return ne.has(e)}const oe=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"]]),ie=new Map;function se(e){const t=Y[e];if(!F(t))return t;const n=oe.get(e);if(!F(n))return n;const r=ie.get(e);if(!F(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=_.call(e,t);o+=n>=65&&n<=90?"-"+$(n+32):$(n)}return ie.set(e,o),o}const le={'"':"&quot;","'":"&#x27;","<":"&lt;",">":"&gt;","&":"&amp;"};function ae(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,(e=>le[e]))}if("function"!=typeof Event){class e{}o(J,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(J,"CustomEvent",{value:e,configurable:!0,writable:!0})}const ce={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};J.lwcRuntimeFlags||Object.defineProperty(J,"lwcRuntimeFlags",{value:n(null)});const ue=J.lwcRuntimeFlags;const de=f(n(null)),fe=f([]);const pe=new WeakMap;const he={observe(e){e()},reset(){},link(){}};function me(e){return he}function ge(e){return`<${D.call(e.tagName)}>`}function we(e,t){if(!u(t)&&F(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)S.call(t,ge(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}function ye(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function be(e){return B(e)&&c.call(e,"__circular__")}const ve="undefined"!=typeof HTMLElement?HTMLElement:function(){},Ee=ve.prototype;function Ce(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:Ce("offsetHeight")},offsetLeft:{readOnly:!0,error:Ce("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Ce("offsetTop")},offsetWidth:{readOnly:!0,error:Ce("offsetWidth")},role:{attribute:"role"}});let Se,ke=null;function xe(e,t){return e!==ke||t!==Se}function Me(e,t){ke=null,Se=void 0}function Te(e,t){ke=e,Se=t}const Ae=n(null);function Oe(e,t,n){const{cmpFields:r}=e;n!==r[t]&&(r[t]=n)}L.call(d(Y),(e=>{const t=G(Ee,e);F(t)||(Ae[e]=t)})),L.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=G(Ee,e);F(t)||(Ae[e]=t)}));const{isArray:Ne}=Array,{prototype:Le,getPrototypeOf:$e,create:_e,defineProperty:Pe,isExtensible:Re,getOwnPropertyDescriptor:De,getOwnPropertyNames:Fe,getOwnPropertySymbols:Ie,preventExtensions:He,hasOwnProperty:je}=Object,{push:Be,concat:We}=Array.prototype;function Ve(e){return void 0===e}function Ke(e){return"function"==typeof e}const ze=new WeakMap;function Ge(e,t){ze.set(e,t)}const Ue=e=>ze.get(e)||e;class qe{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(je.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;Ve(n)||(e.get=this.wrapGetter(n)),Ve(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=De(n,t);if(!Ve(r)){const n=this.wrapDescriptor(r);Pe(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;We.call(Fe(t),Ie(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;Ve(n)||je.call(e,n)||Pe(e,n,_e(null)),He(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=Ve(n)||je.call(t,n)?[]:[n];return Be.apply(r,Fe(t)),Be.apply(r,Ie(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!Re(e)&&(!!Re(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return $e(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=De(n,t);if(Ve(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Pe(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const Ye=new WeakMap,Xe=new WeakMap,Je=new WeakMap,Qe=new WeakMap;class Ze extends qe{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=Ye.get(e);if(!Ve(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ue(this)))};return Ye.set(e,r),Je.set(r,e),r}wrapSetter(e){const t=Xe.get(e);if(!Ve(t))return t;const n=function(t){e.call(Ue(this),Ue(t))};return Xe.set(e,n),Qe.set(n,e),n}unwrapDescriptor(e){if(je.call(e,"value"))e.value=Ue(e.value);else{const{set:t,get:n}=e;Ve(n)||(e.get=this.unwrapGetter(n)),Ve(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=Je.get(e);if(!Ve(t))return t;const n=this,r=function(){return Ue(e.call(n.wrapValue(this)))};return Ye.set(r,e),Je.set(e,r),r}unwrapSetter(e){const t=Qe.get(e);if(!Ve(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return Xe.set(r,e),Qe.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&&Ne(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(Re(e)){const{originalTarget:t}=this;if(He(t),Re(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!je.call(r,t)||(Pe(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const et=new WeakMap,tt=new WeakMap;class nt extends qe{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=et.get(e);if(!Ve(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ue(this)))};return et.set(e,r),r}wrapSetter(e){const t=tt.get(e);if(!Ve(t))return t;const n=function(e){};return tt.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 rt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Ne(e))return!0;const t=$e(e);return t===Le||null===t||null===$e(t)}const ot=(e,t)=>{},it=(e,t)=>{};function st(e){return Ne(e)?[]:{}}const lt=Symbol.for("@@lockerLiveValue"),at=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Ke(t)?t:it,this.valueObserved=Ke(n)?n:ot,this.valueIsObservable=Ke(r)?r:rt,this.tagPropertyKey=o}getProxy(e){const t=Ue(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ue(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ue(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(Ve(t)){const n=new Ze(this,e);t=new Proxy(st(e),n),Ge(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(Ve(t)){const n=new nt(this,e);t=new Proxy(st(e),n),Ge(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:function(e,t){},valueMutated:function(e,t){const n=pe.get(e);if(!F(n)){const e=n[t];if(!F(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}},tagPropertyKey:lt});function ct(e){return at.getReadOnlyProxy(e)}function ut(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new TypeError;if(!B(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const e=qn(this);if(!Tn(e))return n.call(e.elm)},set(t){const n=qn(this);return Oe(n,e,t),r.call(n.elm,t)}}}const dt=function(){if(I(Mn))throw new ReferenceError("Illegal constructor");const e=Mn,{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 Un(o,e),Un(n,e),1===e.renderMode?e.renderRoot=ft(e):e.renderRoot=n,this};function ft(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,Un(s,e),s}dt.prototype={constructor:dt,dispatchEvent(e){const t=qn(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=qn(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,Pn(r,t),n)},removeEventListener(e,t,n){const r=qn(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,Pn(r,t),n)},hasAttribute(e){const t=qn(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=qn(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=qn(this),{elm:n,renderer:{removeAttribute:r}}=t;Te(n,e),r(n,e),Me()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=qn(this);Te(n,t),r(n,t,e),Me()},getAttribute(e){const t=qn(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=qn(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=qn(this),{elm:r,renderer:{setAttribute:o}}=n;Te(r,e),o(r,e,t),Me()},setAttributeNS(e,t,n){const r=qn(this),{elm:o,renderer:{setAttribute:i}}=r;Te(o,t),i(o,t,n,e),Me()},getBoundingClientRect(){const e=qn(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=qn(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=qn(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return qn(this).shadowRoot},get shadowRoot(){return null},get children(){const e=qn(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=qn(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=qn(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=qn(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=qn(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=qn(this);return e.renderer.getLastElementChild(e.elm)},render(){return qn(this).def.template},toString(){return`[object ${qn(this).def.name}]`}};const pt=n(null),ht=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of ht)pt[e]={value(t){const n=qn(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};r(dt.prototype,pt);const mt=n(null);for(const e in Ae)mt[e]=ut(e,Ae[e]);function gt(e){return{get(){return qn(this).cmpFields[e]},set(t){Oe(qn(this),e,t)},enumerable:!0,configurable:!0}}r(dt.prototype,mt),o(dt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});const wt={observe(e){e()},reset(){},link(){}};function yt(e){return{get(){const t=qn(this);if(!Tn(t))return t.cmpProps[e]},set(t){qn(this).cmpProps[e]=t},enumerable:!0,configurable:!0}}function bt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!B(n))throw new Error;return{get(){return n.call(this)},set(t){const n=qn(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];F(o)&&(o=n.oar[e]=wt),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function vt(e){return{get(){return qn(this).cmpFields[e]},set(t){Oe(qn(this),e,t)},enumerable:!0,configurable:!0}}function Et(e){return{get(){return qn(this).cmpFields[e]},set(t){Oe(qn(this),e,t)},enumerable:!0,configurable:!0}}const Ct=new Map;const St={apiMethods:de,apiFields:de,apiFieldsConfig:de,wiredMethods:de,wiredFields:de,observedFields:de};const kt=new Set;function xt(){return[]}kt.add(xt);const Mt=n(null),Tt=n(null);function At(e){let t=Mt[e];return F(t)&&(t=Mt[e]=function(){const t=qn(this),{getHook:n}=t;return n(t.component,e)}),t}function Ot(e){let t=Tt[e];return F(t)&&(t=Tt[e]=function(t){const n=qn(this),{setHook:r}=n;t=ct(t),r(n.component,e,t)}),t}function Nt(e){return function(){const t=qn(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,T.call(arguments))}}function Lt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];F(i)?F(t)||t.apply(this,arguments):xe(this,n)&&(this[i]=o)}}function $t(e,t,i){let s;B(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),o(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=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];l[se(n)]=n,u[n]={get:At(n),set:Ot(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:Nt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Lt(l,a)},o(s,"observedAttributes",{get:()=>[...c,...d(l)]}),r(s.prototype,u),s}const _t=$t(ve,l(Ae),[]);i(_t),f(_t.prototype);const Pt=new WeakMap;function Rt(e){const{shadowSupportMode:o,renderMode:i}=e,s=function(e){const t=Ct.get(e);return F(t)?St:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:f,wiredMethods:p,observedFields:h}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const E=function(e){let t=a(e);if(I(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(be(t)){const e=ye(t);t=e===t?dt:e}return t}(e),C=E!==dt?Ft(E):It,S=$t(C.bridge,d(l),d(u)),k=t(n(null),C.props,l),x=t(n(null),C.propsConfig,c),M=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 A=C.shadowSupportMode;F(o)||(A=o);let O=C.renderMode;F(i)||(O="light"===i?0:1);const N=function(e){return Nn.get(e)}(e)||C.template,L=e.name||C.name;r(m,h);return{ctor:e,name:L,wire:T,props:k,propsConfig:x,methods:M,bridge:S,template:N,renderMode:O,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Dt(e){if(!B(e))return!1;if(e.prototype instanceof dt)return!0;let t=e;do{if(be(t)){const e=ye(t);if(e===t)return!0;t=e}if(t===dt)return!0}while(!I(t)&&(t=a(t)));return!1}function Ft(e){let t=Pt.get(e);if(F(t)){if(be(e)){return t=Ft(ye(e)),Pt.set(e,t),t}if(!Dt(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=Rt(e),Pt.set(e,t)}return t}const It={ctor:dt,name:dt.name,props:mt,propsConfig:de,methods:de,renderMode:1,shadowSupportMode:"reset",wire:de,bridge:_t,template:xt,render:dt.prototype.render};function Ht(e){return`${e}-host`}function jt(e){return yn.h("style",{key:"style",attrs:{type:"text/css"}},[yn.t(e)])}function Bt(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(h(s))S.apply(r,Bt(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(F(o)&&(o=Vt(n)),a=I(o)||0===o.shadowMode),S.call(r,s(i,l,a))}}return r}function Wt(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return F(n)||0===n.length||(o=Bt(n,r,e)),o}function Vt(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function Kt(e){return!F(Yn(e))}function zt(e){const{type:t}=e;return 2===t||3===t}function Gt(e,t){return e.key===t.key&&e.sel===t.sel}function Ut(e,t){return"input"===e&&("value"===t||"checked"===t)}const qt=n(null);function Yt(e){if(null==e)return de;e=W(e)?e:e+"";let t=qt[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===_.call(e,r)&&(r>o&&(t[R.call(e,o,r)]=!0),o=r+1);return r>o&&(t[R.call(e,o,r)]=!0),qt[e]=t,t}function Xt(e,t,n,r){var o;o=t,dn.has(o)?function(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],a=e[s];const c=t.length-1;let u,d,f,p,h=c,m=t[0],g=t[h],w=!1;for(;o<=s&&i<=h;)rn(l)?rn(a)?rn(m)?rn(g)?Gt(l,m)?(Jt(l,m,n,r),l=e[++o],m=t[++i]):Gt(a,g)?(Jt(a,g,n,r),a=e[--s],g=t[--h]):Gt(l,g)?(Jt(l,g,n,r),ln(l.elm,n,r.nextSibling(a.elm),r),l=e[++o],g=t[--h]):Gt(a,m)?(Jt(a,m,n,r),ln(m.elm,n,l.elm,r),a=e[--s],m=t[++i]):(void 0===u&&(u=fn(e,o,s)),d=u[m.key],F(d)?(Qt(m,n,r,l.elm),m=t[++i]):(f=e[d],rn(f)&&(f.sel!==m.sel?Qt(m,n,r,l.elm):(Jt(f,m,n,r),w||(w=!0,e=[...e]),e[d]=void 0,ln(f.elm,n,l.elm,r))),m=t[++i])):g=t[--h]:m=t[++i]:a=e[--s]:l=e[++o];if(o<=s||i<=h)if(o>s){let e,o=h;do{e=t[++o]}while(!rn(e)&&o<c);p=rn(e)?e.elm:null,en(t,n,r,p,i,h+1)}else nn(e,n,r,!0,o,s+1)}(e,t,n,r):function(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void en(t,n,r,null);if(0===i)return void nn(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(rn(i)?rn(l)?(Jt(i,l,n,r),s=l.elm):tn(i,n,r,!0):rn(l)&&(Qt(l,n,r,s),s=l.elm))}}(e,t,n,r)}function Jt(e,t,n,r){var o,i;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&sn(t,n)}(e,t,r);break;case 4:t.elm=e.elm;break;case 2:!function(e,t,n){const r=t.elm=e.elm;an(e,t,n),Xt(e.children,t.children,r,n)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:r);break;case 3:!function(e,t,n,r){if(e.ctor!==t.ctor){const o=r.nextSibling(e.elm);tn(e,n,r,!0),Zt(t,n,o,r)}else{const n=t.elm=e.elm,o=t.vm=e.vm;an(e,t,r),F(o)||un(t,o),Xt(e.children,t.children,n,r),F(o)||function(e){Xn(e)}(o)}}(e,t,n,null!==(i=t.data.renderer)&&void 0!==i?i:r)}}function Qt(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);on(s,o,r),ln(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);on(s,o,r),ln(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);on(l,o,r);const{renderMode:a,shadowMode:c}=o;s&&(1!==c&&0!==a||(l.$shadowStaticNode$=!0));ln(l,t,n,r)}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,a=H(s)?"http://www.w3.org/2000/svg":void 0,c=e.elm=l(o,a);on(c,i,r),cn(c,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(c,e),an(null,e,r),ln(c,t,n,r),en(e.children,c,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:Zt(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function Zt(e,t,n,r){const{sel:o,owner:i}=e,s=function(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return F(i)?(i=class extends r{constructor(e){super(),B(e)&&e(this)}},ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&(i.prototype.connectedCallback=function(){Kt(this)&&Vn(this)},i.prototype.disconnectedCallback=function(){Kt(this)&&Kn(this)}),o(e,i),i):i}(o,r);let l;const a=new s((t=>{l=function(e,t,n){let r=Yn(e);if(!F(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Gn(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(e.elm=a,e.vm=l,on(a,i,r),cn(a,i,r),l)un(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");an(null,e,r),ln(a,t,n,r),l&&Jn(l),en(e.children,a,r,null),l&&function(e){Xn(e)}(l)}function en(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];rn(i)&&Qt(i,t,n,r)}}function tn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&function(e,t,n){n.remove(e,t)}(i,t,n),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;nn(e.children,i,n,t);break}case 3:{const{vm:t}=e;F(t)||function(e){zn(e)}(t)}}}function nn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];rn(i)&&tn(i,t,n,r)}}function rn(e){return null!=e}function on(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function sn(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function ln(e,t,n,r){r.insert(e,t,n)}function an(e,t,n){I(e)&&(function(e,t){const{elm:n,data:{on:r}}=e;if(F(r))return;const{addEventListener:o}=t;for(const e in r)o(n,e,r[e])}(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(F(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(F(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),a=Yt(o),c=Yt(i);let u;for(u in c)F(a[u])&&l.remove(u);for(u in a)F(c[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;W(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(F(r))return;const o=I(e)?de:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Te(i,e),58===_.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===_.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||F(t)?l(i,e):s(i,e,t),Me())}}(e,t,n),function(e,t,n){const{props:r}=t.data;if(F(r))return;const o=I(e)?de:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:a,setProperty:c}=n;for(const e in r){const t=r[e];(i||t!==(Ut(l,e)?a(s,e):o[e]))&&c(s,e,t)}}(e,t,n)}function cn(e,t,n){const r=function(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}(t);if(!I(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||F(o)||(e.$shadowToken$=o)}function un(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(I(n))continue;let o="";zt(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const s=i[o]=i[o]||[];S.call(s,n)}if(j(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void $n(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(F(i[r])||o[r].length!==i[r].length)return void $n(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void $n(e)}}}(t,r),e.aChildren=r,e.children=fe)}const dn=new WeakMap;function fn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(rn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const pn=Symbol.iterator;function hn(e,t,n=fe){const r=En();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function mn(e,t,n,r=fe){const o=En(),{key:i}=n;const s={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){S.call(En().velements,e)}(s),s}function gn(e){var t;return t=e,dn.set(t,1),e}let wn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const yn=i({s:function(e,t,n,r){F(r)||F(r[e])||0===r[e].length||(n=r[e]);const o=En(),{renderMode:i,shadowMode:s}=o;return 0===i?(gn(n),n):(1===s&&gn(n),hn("slot",t,n))},h:hn,c:mn,i:function(e,t){const n=[];if(gn(n),F(e)||null===e)return n;const r=e[pn]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);h(e)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];gn(n);for(let r=0;r<t;r+=1){const t=e[r];h(t)?S.apply(n,t):S.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:En()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=En();if(I(t))throw new Error;const n=t;return function(t){On(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,owner:En()}},dc:function(e,t,n,r=fe){if(null==t)return null;if(!Dt(t))throw new Error(`Invalid LWC Constructor ${z(t)} for custom element <${e}>.`);return mn(e,t,n,r)},ti:function(e){return e>0&&!(H(e)||j(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:En()}},gid:function(e){const t=En();if(F(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?P.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=En();if(F(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return wn(e)}});let bn=!1,vn=null;function En(){return vn}function Cn(e){vn=e}const Sn=(kn=(e,t)=>{const{createFragment:n}=t;return n(e)},(e,...t)=>{const r=n(null);return function(){const{context:{hasScopedStyles:n,stylesheetToken:o},shadowMode:i,renderer:s}=En(),l=!F(o),a=1===i;let c=0;if(l&&n&&(c|=1),l&&a&&(c|=2),!F(r[c]))return r[c];const u=n&&l?" "+o:"",d=n&&l?` class="${o}"`:"",f=l&&a?" "+o:"";let p="";for(let n=0,r=t.length;n<r;n++)switch(t[n]){case 0:p+=e[n]+u;break;case 1:p+=e[n]+d;break;case 2:p+=e[n]+f;break;case 3:p+=e[n]+d+f}return p+=e[e.length-1],r[c]=kn(p,s),r[c]}});var kn;function xn(e,t){const r=bn,o=vn;let i=[];return nr(e,e.owner,(()=>{vn=e}),(()=>{const{component:r,context:o,cmpSlots:s,cmpTemplate:l,tro:a}=e;a.observe((()=>{if(t!==l){if(I(l)||tr(e),a=t,!kt.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: ${z(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!F(t))for(let e=0;e<t.length;e++)if(H(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:a}}=e,{stylesheets:c,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let p,h,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;F(g)||(w&&s(n).remove(Ht(g)),y&&l(n,Ht(g))),F(c)||0===c.length||(p=u),F(p)||(f&&(s(n).add(Ht(p)),h=!0),d&&(a(n,Ht(p),""),m=!0)),r.stylesheetToken=p,r.hasTokenInClass=h,r.hasTokenInAttribute=m}(e,t);const r=Wt(e,t);o.styleVNodes=0===r.length?null:function(e,t){const{renderMode:n,shadowMode:r,renderer:{insertStylesheet:o}}=e;if(1!==n||1!==r)return E.call(t,jt);for(let e=0;e<t.length;e++)o(t[e]);return null}(e,r)}var a;e.velements=[],bn=!0,i=t.call(void 0,yn,r,s,o.tplCache);const{styleVNodes:c}=o;I(c)||N.apply(i,c)}))}),(()=>{bn=r,vn=o})),i}let Mn=null;function Tn(e){return Mn===e}function An(e,t,n){const{component:r,callHook:o,owner:i}=e;nr(e,i,V,(()=>{o(r,t,n)}),V)}function On(e,t,n,r){const{callHook:o,owner:i}=e;nr(e,i,V,(()=>{o(n,t,[r])}),V)}const Nn=new Map;function Ln(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=En();let s,l=!1;return nr(e,o,(()=>{Cn(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{Cn(i)})),l?xn(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function $n(e){e.isDirty=!0}const _n=new WeakMap;function Pn(e,t){if(!B(t))throw new TypeError;let n=_n.get(t);return F(n)&&(n=function(n){On(e,t,void 0,n)},_n.set(t,n)),n}const Rn=n(null),Dn=["rendered","connected","disconnected"];function Fn(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 In=0;const Hn=new WeakMap;function jn(e,t,n=[]){return t.apply(e,n)}function Bn(e,t,n){e[t]=n}function Wn(e,t){return e[t]}function Vn(e){const t=qn(e);1===t.state&&Kn(e),Jn(t),Xn(t)}function Kn(e){zn(qn(e))}function zn(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){j(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=Rn;t&&Fn(e,t);Qn(e)&&function(e){const{wiredDisconnecting:t}=e.context;nr(e,e,V,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),V)}(e);const{disconnectedCallback:n}=e.def;F(n)||An(e,n)}(e),Zn(e),function(e){const{aChildren:t}=e;er(t)}(e)}}function Gn(e,t,r,o){const{mode:i,owner:s,tagName:l,hydrated:a}=o,c=Ft(t),u={elm:e,def:c,idx:In++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,children:fe,aChildren:fe,velements:fe,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,hydrated:Boolean(a),renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:de,wiredConnecting:fe,wiredDisconnecting:fe},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:jn,setHook:Bn,getHook:Wn,renderer:r};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,r),u.tro=me(),function(e,t){const n=Mn;let r;Mn=e;try{const o=new t;if(Mn.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Mn=n,!F(r))throw we(e,r),r}}(u,c.ctor),Qn(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=rr.get(i);if(!F(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=ir(e,t,s),a=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function Un(e,t){Hn.set(e,t)}function qn(e){return Hn.get(e)}function Yn(e){return Hn.get(e)}function Xn(e){if(H(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&nr(e,e,(()=>{}),(()=>{Xt(r,t,n,o)}),(()=>{}));e.state}(e,Ln(e))}}function Jn(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=Rn;n&&Fn(e,n),Qn(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;F(r)||An(e,r)}function Qn(e){return l(e.def.wire).length>0}function Zn(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!F(n)){const e=Yn(n);F(e)||zn(e)}}}function er(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!F(n.elm))switch(n.type){case 2:er(n.children);break;case 3:zn(qn(n.elm));break}}}function tr(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];I(o)||F(o.elm)||r(o.elm,n)}e.children=fe,Zn(e),e.velements=fe}function nr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!F(i)){we(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!F(t.def.errorCallback))return t;t=t.owner}}(t);if(F(n))throw i;tr(e);An(n,n.def.errorCallback,[i,i.wcStack])}}}const rr=new Map;class or extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function ir(e,t,n){const{method:r,adapter:i,configCallback:s,dynamic:l}=n,a=F(r)?function(e,t){return n=>{Oe(e,t,n)}}(e,t):function(e,t){return n=>{nr(e,e.owner,V,(()=>{t.call(e.component,n)}),V)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),nr(e,e,V,(()=>{u=new i(a)}),V);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){const r=me();return{computeConfigAndUpdate:()=>{let o;r.observe((()=>o=t(e))),n(o)},ro:r}}(e.component,s,(t=>{nr(e,e,V,(()=>{u.update(t,c)}),V)}));return F(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=lr(r);if(F(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:a}}=e;S.call(s,(()=>{const e=new or(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.call(l,e)}});a(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const sr=new Map;function lr(e){return sr.get(e)}function ar(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};rr.set(e,o)}function cr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};rr.set(e,o)}let ur=!1;const dr=Symbol("namespace"),fr=Symbol("type"),pr=Symbol("parent"),hr=Symbol("shadow-root"),mr=Symbol("children"),gr=Symbol("attributes"),wr=Symbol("event-listeners"),yr=Symbol("value");var br;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(br||(br={}));const vr=/\s+/g;function Er(e){return new Set(e.split(vr).filter((e=>e.length)))}function Cr(e){return Array.from(e).join(" ")}function Sr(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function kr(e,t){return{[fr]:br.Element,tagName:e,[dr]:null!=t?t:Q,[pr]:null,[hr]:null,[mr]:[],[gr]:[],[wr]:{}}}const xr=n(null),Mr=new WeakMap;function Tr(e,t,n=null){const r=e[gr].find((e=>e.name===t&&e[dr]===n));return r?r.value:null}function Ar(e,t,n,r=null){const o=e[gr].find((e=>e.name===t&&e[dr]===r));F(r)&&(r=null),F(o)?e[gr].push({name:t,[dr]:r,value:String(n)}):o.value=n}function Or(e,t,n){e[gr]=e[gr].filter((e=>e.name!==t&&e[dr]!==n))}const Nr=V,Lr=V,$r=V,_r=Sr("dispatchEvent"),Pr=Sr("getBoundingClientRect"),Rr=Sr("querySelector"),Dr=Sr("querySelectorAll"),Fr=Sr("getElementsByTagName"),Ir=Sr("getElementsByClassName"),Hr=Sr("getChildren"),jr=Sr("getChildNodes"),Br=Sr("getFirstChild"),Wr=Sr("getFirstElementChild"),Vr=Sr("getLastChild"),Kr=Sr("getLastElementChild");const zr={isNativeShadowDefined:!1,isSyntheticShadowDefined:!1,HTMLElementExported:class{constructor(){const{constructor:e}=this,t=Mr.get(e);if(!t)throw new TypeError("Invalid Construction");return kr(t)}},insert:function(e,t,n){const r=e[pr];if(null!==r&&r!==t){const t=r[mr].indexOf(e);r[mr].splice(t,1)}e[pr]=t;const o=I(n)?-1:t[mr].indexOf(n);-1===o?t[mr].push(e):t[mr].splice(o,0,e)},remove:function(e,t){const n=t[mr].indexOf(e);t[mr].splice(n,1)},cloneNode:function(e){return e},createFragment:function(e){return{[fr]:br.Raw,[pr]:null,[yr]:e}},createElement:kr,createText:function(e){return{[fr]:br.Text,[yr]:String(e),[pr]:null}},createComment:function(e){return{[fr]:br.Comment,[yr]:e,[pr]:null}},nextSibling:function(e){const t=e[pr];if(I(t))return null;const n=t[mr].indexOf(e);return t[mr][n+1]||null},attachShadow:function(e,t){return e[hr]={[fr]:br.ShadowRoot,[mr]:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e[hr]},getProperty:function(e,t){var n,r;if(t in e)return e[t];if(e[fr]===br.Element){const o=se(t);if(te(o,e.tagName))return null!==(n=Tr(e,o))&&void 0!==n&&n;if(re(o)||X(o))return Tr(e,o);if("input"===e.tagName&&"value"===t)return null!==(r=Tr(e,"value"))&&void 0!==r?r:""}},setProperty:function(e,t,n){if(t in e)return e[t]=n;if(e[fr]===br.Element){const r=se(t);if("innerHTML"===t)return void(e[mr]=[{[fr]:br.Raw,[pr]:e,[yr]:n}]);if(te(r,e.tagName))return!0===n?Ar(e,r,""):Or(e,r);if(re(r)||X(r))return Ar(e,r,n);if("input"===e.tagName&&"value"===r)return I(n)||F(n)?Or(e,"value"):Ar(e,"value",n)}},setText:function(e,t){e[fr]===br.Text?e[yr]=t:e[fr]===br.Element&&(e[mr]=[{[fr]:br.Text,[pr]:e,[yr]:t}])},getAttribute:Tr,setAttribute:Ar,removeAttribute:Or,addEventListener:Lr,removeEventListener:$r,dispatchEvent:_r,getClassList:function(e){function t(){let t=e[gr].find((e=>"class"===e.name&&I(e[dr])));return F(t)&&(t={name:"class",[dr]:null,value:""},e[gr].push(t)),t}return{add(...e){const n=t(),r=Er(n.value);e.forEach((e=>r.add(e))),n.value=Cr(r)},remove(...e){const n=t(),r=Er(n.value);e.forEach((e=>r.delete(e))),n.value=Cr(r)}}},setCSSStyleProperty:function(e,t,n,r){const o=e[gr].find((e=>"style"===e.name&&I(e[dr]))),i=`${t}: ${n}${r?" !important":""}`;F(o)?e[gr].push({name:"style",[dr]:null,value:i}):o.value+=`; ${i}`},getBoundingClientRect:Pr,querySelector:Rr,querySelectorAll:Dr,getElementsByTagName:Fr,getElementsByClassName:Ir,getChildren:Hr,getChildNodes:jr,getFirstChild:Br,getFirstElementChild:Wr,getLastChild:Vr,getLastElementChild:Kr,isConnected:function(e){return!I(e[pr])},insertStylesheet:Nr,assertInstanceOfHTMLElement:V,defineCustomElement:function(e,t,n){!function(e,t){if(e!==D.call(e)||xr[e])throw new TypeError("Invalid Registration");xr[e]=t,Mr.set(t,e)}(e,t)},getCustomElement:function(e){return xr[e]}};function Gr(e){return e.map((e=>{switch(e[fr]){case br.Text:return""===e[yr]?"‍":ae(e[yr]);case br.Comment:return`\x3c!--${ae(e[yr])}--\x3e`;case br.Raw:return e[yr];case br.Element:return Ur(e)}})).join("")}function Ur(e){let t="";const n=e.tagName,r=e[dr],o=r!==Q,i=e[mr].length>0;var s;return t+=`<${n}${e[gr].length?` ${s=e[gr],s.map((e=>e.value.length?`${e.name}=${JSON.stringify(ae(e.value))}`:e.name)).join(" ")}`:""}`,o&&!i?(t+="/>",t):(t+=">",e[hr]&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${Gr(e[mr])}</template>`}(e[hr])),t+=Gr(e[mr]),function(e,t){return t===Q&&Z.has(e.toLowerCase())}(n,r)&&!i||(t+=`</${n}>`),t)}const qr={[fr]:br.Element,tagName:"fake-root-element",[dr]:Q,[pr]:null,[hr]:null,[mr]:[],[gr]:[],[wr]:{}};i(dt),f(dt.prototype),exports.LightningElement=dt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=lr(e);if(!F(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){sr.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((()=>{F(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.freezeTemplate=function(e){},exports.getComponentDef=function(e){const t=Ft(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:se(e)};const a={};for(const e in s)a[e]=s[e].value;return{ctor:n,name:r,props:l,methods:a}},exports.isComponentConstructor=Dt,exports.parseFragment=Sn,exports.parseSVGFragment=Sn,exports.readonly=function(e){return ct(e)},exports.register=function(e){for(let t=0;t<Dn.length;++t){const n=Dn[t];if(n in e){let t=Rn[n];F(t)&&(Rn[n]=t=[]),S.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return B(e)&&Nn.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:l,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(!F(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=s(r,e),t.config>0){if(F(w))throw new Error;w=bt(e,w)}else w=F(w)||F(w.get)?yt(e):bt(e,w);f[e]=w,o(r,e,w)}if(F(l)||L.call(l,(e=>{if(w=s(r,e),F(w))throw new Error;d[e]=w})),!F(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:l=[]}=a[e];if(w=s(r,e),1===n){if(F(w))throw new Error;p[e]=w,ar(w,t,i,l)}else w=Et(e),h[e]=w,cr(w,t,i,l),o(r,e,w)}if(!F(c))for(const e in c)w=s(r,e),w=vt(e),o(r,e,w);if(!F(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(r,t);const n=!F(i)&&t in i,o=!F(c)&&t in c;n||o||(m[t]=gt(t))}return function(e,t){Ct.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:p,wiredFields:h,observedFields:m}),e},exports.registerTemplate=function(e){return kt.add(e),o(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return F(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=F(e)?void 0:e.shadowAttribute}}),e},exports.renderComponent=function(e,t,n={}){if(!W(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!B(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||I(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=zr.createElement(e);Gn(r,t,zr,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r[pr]=qr,Vn(r),Ur(r)},exports.renderer=zr,exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(F(ce[e])){const n=d(ce).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=ue[e];if(!F(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(ue,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(ur,"Hooks are already overridden, only one definition is allowed."),ur=!0,n=t.sanitizeHtmlContent,wn=n},exports.track=function(e){if(1===arguments.length)return e;throw new Error},exports.unwrap=function(e){return 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:s,getOwnPropertyNames:l,getPrototypeOf:a,hasOwnProperty:c,isFrozen:u,keys:d,seal:f,setPrototypeOf:p}=Object,{isArray:h}=Array,{copyWithin:m,fill:g,filter:w,find:y,indexOf:b,join:v,map:E,pop:C,push:S,reduce:k,reverse:x,shift:T,slice:M,sort:A,splice:O,unshift:N,forEach:L}=Array.prototype,{fromCharCode:_}=String,{charCodeAt:$,replace:P,slice:R,toLowerCase:D}=String.prototype;function F(e){return void 0===e}function I(e){return null===e}function H(e){return!0===e}function B(e){return!1===e}function j(e){return"function"==typeof e}function W(e){return"string"==typeof e}function V(){}const G={}.toString;function K(e){return e&&e.toString?h(e)?v.call(E.call(e,K),","):e.toString():"object"==typeof e?G.call(e):e+""}function z(e,t){do{const n=s(e,t);if(!F(n))return n;e=a(e)}while(null!==e)}const U=["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:q,AriaPropNameToAttrNameMap:Y}=(()=>{const e=n(null),t=n(null);return L.call(U,(n=>{const r=D.call(P.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})();function X(e){return e in q}const J=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="http://www.w3.org/1999/xhtml",Z=new Set(["area","base","br","col","embed","hr","img","input","link","meta","source","track","wbr","param","keygen","menuitem"]);const ee=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 te(e,t){const n=ee.get(e);return void 0!==n&&(0===n.size||n.has(t))}const ne=new Set(["accesskey","autocapitalize","autofocus","class","contenteditable","contextmenu","dir","draggable","enterkeyhint","exportparts","hidden","id","inputmode","is","itemid","itemprop","itemref","itemscope","itemtype","lang","nonce","part","slot","spellcheck","style","tabindex","title","translate"]);function re(e){return ne.has(e)}const oe=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"]]),ie=new Map;function se(e){const t=Y[e];if(!F(t))return t;const n=oe.get(e);if(!F(n))return n;const r=ie.get(e);if(!F(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=$.call(e,t);o+=n>=65&&n<=90?"-"+_(n+32):_(n)}return ie.set(e,o),o}const le={'"':"&quot;","'":"&#x27;","<":"&lt;",">":"&gt;","&":"&amp;"};function ae(e,t=!1){const n=t?/["&]/g:/["'<>&]/g;return e.replace(n,(e=>le[e]))}if("function"!=typeof Event){class e{}o(J,"Event",{value:e,configurable:!0,writable:!0})}if("function"!=typeof CustomEvent){class e extends Event{}o(J,"CustomEvent",{value:e,configurable:!0,writable:!0})}const ce={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HMR:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null,ENABLE_LIGHT_GET_ROOT_NODE_PATCH:null};J.lwcRuntimeFlags||Object.defineProperty(J,"lwcRuntimeFlags",{value:n(null)});const ue=J.lwcRuntimeFlags;const de=f(n(null)),fe=f([]);const pe=new WeakMap;const he={observe(e){e()},reset(){},link(){}};function me(e){return he}function ge(e){return`<${D.call(e.tagName)}>`}function we(e,t){if(!u(t)&&F(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!I(n);)S.call(t,ge(n)),n=n.owner;return t.reverse().join("\n\t")}(e);o(t,"wcStack",{get:()=>n})}}function ye(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function be(e){return j(e)&&c.call(e,"__circular__")}const ve="undefined"!=typeof HTMLElement?HTMLElement:function(){},Ee=ve.prototype;function Ce(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:Ce("offsetHeight")},offsetLeft:{readOnly:!0,error:Ce("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Ce("offsetTop")},offsetWidth:{readOnly:!0,error:Ce("offsetWidth")},role:{attribute:"role"}});let Se,ke=null;function xe(e,t){return e!==ke||t!==Se}function Te(e,t){ke=null,Se=void 0}function Me(e,t){ke=e,Se=t}const Ae=n(null);function Oe(e,t,n){const{cmpFields:r}=e;n!==r[t]&&(r[t]=n)}L.call(d(Y),(e=>{const t=z(Ee,e);F(t)||(Ae[e]=t)})),L.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=z(Ee,e);F(t)||(Ae[e]=t)}));const{isArray:Ne}=Array,{prototype:Le,getPrototypeOf:_e,create:$e,defineProperty:Pe,isExtensible:Re,getOwnPropertyDescriptor:De,getOwnPropertyNames:Fe,getOwnPropertySymbols:Ie,preventExtensions:He,hasOwnProperty:Be}=Object,{push:je,concat:We}=Array.prototype;function Ve(e){return void 0===e}function Ge(e){return"function"==typeof e}const Ke=new WeakMap;function ze(e,t){Ke.set(e,t)}const Ue=e=>Ke.get(e)||e;class qe{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Be.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;Ve(n)||(e.get=this.wrapGetter(n)),Ve(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=De(n,t);if(!Ve(r)){const n=this.wrapDescriptor(r);Pe(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;We.call(Fe(t),Ie(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;Ve(n)||Be.call(e,n)||Pe(e,n,$e(null)),He(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=Ve(n)||Be.call(t,n)?[]:[n];return je.apply(r,Fe(t)),je.apply(r,Ie(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!Re(e)&&(!!Re(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return _e(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=De(n,t);if(Ve(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Pe(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const Ye=new WeakMap,Xe=new WeakMap,Je=new WeakMap,Qe=new WeakMap;class Ze extends qe{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=Ye.get(e);if(!Ve(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ue(this)))};return Ye.set(e,r),Je.set(r,e),r}wrapSetter(e){const t=Xe.get(e);if(!Ve(t))return t;const n=function(t){e.call(Ue(this),Ue(t))};return Xe.set(e,n),Qe.set(n,e),n}unwrapDescriptor(e){if(Be.call(e,"value"))e.value=Ue(e.value);else{const{set:t,get:n}=e;Ve(n)||(e.get=this.unwrapGetter(n)),Ve(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=Je.get(e);if(!Ve(t))return t;const n=this,r=function(){return Ue(e.call(n.wrapValue(this)))};return Ye.set(r,e),Je.set(e,r),r}unwrapSetter(e){const t=Qe.get(e);if(!Ve(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return Xe.set(r,e),Qe.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&&Ne(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(Re(e)){const{originalTarget:t}=this;if(He(t),Re(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Be.call(r,t)||(Pe(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const et=new WeakMap,tt=new WeakMap;class nt extends qe{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=et.get(e);if(!Ve(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Ue(this)))};return et.set(e,r),r}wrapSetter(e){const t=tt.get(e);if(!Ve(t))return t;const n=function(e){};return tt.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 rt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Ne(e))return!0;const t=_e(e);return t===Le||null===t||null===_e(t)}const ot=(e,t)=>{},it=(e,t)=>{};function st(e){return Ne(e)?[]:{}}const lt=Symbol.for("@@lockerLiveValue"),at=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=Ge(t)?t:it,this.valueObserved=Ge(n)?n:ot,this.valueIsObservable=Ge(r)?r:rt,this.tagPropertyKey=o}getProxy(e){const t=Ue(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Ue(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Ue(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(Ve(t)){const n=new Ze(this,e);t=new Proxy(st(e),n),ze(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(Ve(t)){const n=new nt(this,e);t=new Proxy(st(e),n),ze(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:function(e,t){},valueMutated:function(e,t){const n=pe.get(e);if(!F(n)){const e=n[t];if(!F(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}},tagPropertyKey:lt});function ct(e){return at.getReadOnlyProxy(e)}function ut(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!j(n))throw new TypeError;if(!j(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const e=Jn(this);if(!Nn(e))return n.call(e.elm)},set(t){const n=Jn(this);return Oe(n,e,t),r.call(n.elm,t)}}}const dt=function(){if(I(On))throw new ReferenceError("Illegal constructor");const e=On,{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 Xn(o,e),Xn(n,e),1===e.renderMode?e.renderRoot=ft(e):e.renderRoot=n,this};function ft(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,Xn(s,e),s}dt.prototype={constructor:dt,dispatchEvent(e){const t=Jn(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=Jn(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,Fn(r,t),n)},removeEventListener(e,t,n){const r=Jn(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,Fn(r,t),n)},hasAttribute(e){const t=Jn(this),{elm:n,renderer:{getAttribute:r}}=t;return!I(r(n,e))},hasAttributeNS(e,t){const n=Jn(this),{elm:r,renderer:{getAttribute:o}}=n;return!I(o(r,t,e))},removeAttribute(e){const t=Jn(this),{elm:n,renderer:{removeAttribute:r}}=t;Me(n,e),r(n,e),Te()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=Jn(this);Me(n,t),r(n,t,e),Te()},getAttribute(e){const t=Jn(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=Jn(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=Jn(this),{elm:r,renderer:{setAttribute:o}}=n;Me(r,e),o(r,e,t),Te()},setAttributeNS(e,t,n){const r=Jn(this),{elm:o,renderer:{setAttribute:i}}=r;Me(o,t),i(o,t,n,e),Te()},getBoundingClientRect(){const e=Jn(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=Jn(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=Jn(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return Jn(this).shadowRoot},get shadowRoot(){return null},get children(){const e=Jn(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=Jn(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=Jn(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=Jn(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=Jn(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=Jn(this);return e.renderer.getLastElementChild(e.elm)},render(){return Jn(this).def.template},toString(){return`[object ${Jn(this).def.name}]`}};const pt=n(null),ht=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of ht)pt[e]={value(t){const n=Jn(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};r(dt.prototype,pt);const mt=n(null);for(const e in Ae)mt[e]=ut(e,Ae[e]);function gt(e){return{get(){return Jn(this).cmpFields[e]},set(t){Oe(Jn(this),e,t)},enumerable:!0,configurable:!0}}r(dt.prototype,mt),o(dt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});const wt={observe(e){e()},reset(){},link(){}};function yt(e){return{get(){const t=Jn(this);if(!Nn(t))return t.cmpProps[e]},set(t){Jn(this).cmpProps[e]=t},enumerable:!0,configurable:!0}}function bt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!j(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Jn(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];F(o)&&(o=n.oar[e]=wt),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function vt(e){return{get(){return Jn(this).cmpFields[e]},set(t){Oe(Jn(this),e,t)},enumerable:!0,configurable:!0}}function Et(e){return{get(){return Jn(this).cmpFields[e]},set(t){Oe(Jn(this),e,t)},enumerable:!0,configurable:!0}}const Ct=new Map;const St={apiMethods:de,apiFields:de,apiFieldsConfig:de,wiredMethods:de,wiredFields:de,observedFields:de};const kt=new Set;function xt(){return[]}kt.add(xt);const Tt=n(null),Mt=n(null);function At(e){let t=Tt[e];return F(t)&&(t=Tt[e]=function(){const t=Jn(this),{getHook:n}=t;return n(t.component,e)}),t}function Ot(e){let t=Mt[e];return F(t)&&(t=Mt[e]=function(t){const n=Jn(this),{setHook:r}=n;t=ct(t),r(n.component,e,t)}),t}function Nt(e){return function(){const t=Jn(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,M.call(arguments))}}function Lt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];F(i)?F(t)||t.apply(this,arguments):xe(this,n)&&(this[i]=o)}}function _t(e,t,i){let s;j(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),o(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=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];l[se(n)]=n,u[n]={get:At(n),set:Ot(n),enumerable:!0,configurable:!0}}for(let e=0,t=i.length;e<t;e+=1){const t=i[e];u[t]={value:Nt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:Lt(l,a)},o(s,"observedAttributes",{get:()=>[...c,...d(l)]}),r(s.prototype,u),s}const $t=_t(ve,l(Ae),[]);i($t),f($t.prototype);const Pt=new WeakMap;function Rt(e){const{shadowSupportMode:o,renderMode:i}=e,s=function(e){const t=Ct.get(e);return F(t)?St:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:f,wiredMethods:p,observedFields:h}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const E=function(e){let t=a(e);if(I(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(be(t)){const e=ye(t);t=e===t?dt:e}return t}(e),C=E!==dt?Ft(E):It,S=_t(C.bridge,d(l),d(u)),k=t(n(null),C.props,l),x=t(n(null),C.propsConfig,c),T=t(n(null),C.methods,u),M=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 A=C.shadowSupportMode;F(o)||(A=o);let O=C.renderMode;F(i)||(O="light"===i?0:1);const N=function(e){return $n.get(e)}(e)||C.template,L=e.name||C.name;r(m,h);return{ctor:e,name:L,wire:M,props:k,propsConfig:x,methods:T,bridge:S,template:N,renderMode:O,shadowSupportMode:A,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Dt(e){if(!j(e))return!1;if(e.prototype instanceof dt)return!0;let t=e;do{if(be(t)){const e=ye(t);if(e===t)return!0;t=e}if(t===dt)return!0}while(!I(t)&&(t=a(t)));return!1}function Ft(e){let t=Pt.get(e);if(F(t)){if(be(e)){return t=Ft(ye(e)),Pt.set(e,t),t}if(!Dt(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=Rt(e),Pt.set(e,t)}return t}const It={ctor:dt,name:dt.name,props:mt,propsConfig:de,methods:de,renderMode:1,shadowSupportMode:"reset",wire:de,bridge:$t,template:xt,render:dt.prototype.render};function Ht(e){return`${e}-host`}function Bt(e){return En.h("style",{key:"style",attrs:{type:"text/css"}},[En.t(e)])}function jt(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(h(s))S.apply(r,jt(s,t,n));else{const e=s.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let a;1===n.renderMode?a=0===n.shadowMode:(F(o)&&(o=Vt(n)),a=I(o)||0===o.shadowMode),S.call(r,s(i,l,a))}}return r}function Wt(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return F(n)||0===n.length||(o=jt(n,r,e)),o}function Vt(e){let t=e;for(;!I(t);){if(1===t.renderMode)return t;t=t.owner}return t}function Gt(e){return!F(Qn(e))}function Kt(e){const{type:t}=e;return 2===t||3===t}function zt(e,t){return e.key===t.key&&e.sel===t.sel}function Ut(e,t){return"input"===e&&("value"===t||"checked"===t)}const qt=n(null);function Yt(e){if(null==e)return de;e=W(e)?e:e+"";let t=qt[e];if(t)return t;t=n(null);let r,o=0;const i=e.length;for(r=0;r<i;r++)32===$.call(e,r)&&(r>o&&(t[R.call(e,o,r)]=!0),o=r+1);return r>o&&(t[R.call(e,o,r)]=!0),qt[e]=t,t}function Xt(e,t,n,r){var o;o=t,dn.has(o)?pn(e,t,n,r):hn(e,t,n,r)}function Jt(e,t,n,r){var o,i;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&sn(t,n)}(e,t,r);break;case 4:t.elm=e.elm;break;case 5:!function(e,t,n,r){const{children:o,stable:i}=t;i?hn(e.children,o,n,r):pn(e.children,o,n,r);t.elm=o[o.length-1].elm}(e,t,n,r);break;case 2:!function(e,t,n){const r=t.elm=e.elm;an(e,t,n),Xt(e.children,t.children,r,n)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:r);break;case 3:!function(e,t,n,r){if(e.ctor!==t.ctor){const o=r.nextSibling(e.elm);tn(e,n,r,!0),Zt(t,n,o,r)}else{const n=t.elm=e.elm,o=t.vm=e.vm;an(e,t,r),F(o)||un(t,o),Xt(e.children,t.children,n,r),F(o)||function(e){Zn(e)}(o)}}(e,t,n,null!==(i=t.data.renderer)&&void 0!==i?i:r)}}function Qt(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);on(s,o,r),ln(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);on(s,o,r),ln(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);on(l,o,r);const{renderMode:a,shadowMode:c}=o;s&&(1!==c&&0!==a||(l.$shadowStaticNode$=!0));ln(l,t,n,r)}(e,t,r,n);break;case 5:!function(e,t,n,r){const{children:o}=e;en(o,t,r,n),e.elm=o[o.length-1].elm}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,a=H(s)?"http://www.w3.org/2000/svg":void 0,c=e.elm=l(o,a);on(c,i,r),cn(c,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(c,e),an(null,e,r),ln(c,t,n,r),en(e.children,c,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:Zt(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function Zt(e,t,n,r){const{sel:o,owner:i}=e,s=function(e,t){const{getCustomElement:n,HTMLElementExported:r,defineCustomElement:o}=t;let i=n(e=e.toLowerCase());return F(i)?(i=class extends r{constructor(e){super(),j(e)&&e(this)}},ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&(i.prototype.connectedCallback=function(){Gt(this)&&zn(this)},i.prototype.disconnectedCallback=function(){Gt(this)&&Un(this)}),o(e,i),i):i}(o,r);let l;const a=new s((t=>{l=function(e,t,n){let r=Qn(e);if(!F(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Yn(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}));if(e.elm=a,e.vm=l,on(a,i,r),cn(a,i,r),l)un(e,l);else if(e.ctor!==s)throw new TypeError("Incorrect Component Constructor");an(null,e,r),ln(a,t,n,r),l&&er(l),en(e.children,a,r,null),l&&function(e){Zn(e)}(l)}function en(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];rn(i)&&Qt(i,t,n,r)}}function tn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&(5===o?nn(e.children,t,n,r):function(e,t,n){n.remove(e,t)}(i,t,n)),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;nn(e.children,i,n,t);break}case 3:{const{vm:t}=e;F(t)||function(e){qn(e)}(t)}}}function nn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];rn(i)&&tn(i,t,n,r)}}function rn(e){return null!=e}function on(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function sn(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function ln(e,t,n,r){r.insert(e,t,n)}function an(e,t,n){I(e)&&(function(e,t){const{elm:n,data:{on:r}}=e;if(F(r))return;const{addEventListener:o}=t;for(const e in r)o(n,e,r[e])}(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(F(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(F(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=I(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),a=Yt(o),c=Yt(i);let u;for(u in c)F(a[u])&&l.remove(u);for(u in a)F(c[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((I(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;W(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(F(r))return;const o=I(e)?de:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Me(i,e),58===$.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===$.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):I(t)||F(t)?l(i,e):s(i,e,t),Te())}}(e,t,n),function(e,t,n){const{props:r}=t.data;if(F(r))return;const o=I(e)?de:e.data.props;if(o===r)return;const i=I(e),{elm:s,sel:l}=t,{getProperty:a,setProperty:c}=n;for(const e in r){const t=r[e];(i||t!==(Ut(l,e)?a(s,e):o[e]))&&c(s,e,t)}}(e,t,n)}function cn(e,t,n){const r=function(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}(t);if(!I(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||F(o)||(e.$shadowToken$=o)}function un(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(I(n))continue;let o="";Kt(n)&&(o=(null===(r=n.data.attrs)||void 0===r?void 0:r.slot)||"");const s=i[o]=i[o]||[];S.call(s,n)}if(B(e.isDirty)){const t=d(o);if(t.length!==d(i).length)return void Rn(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(F(i[r])||o[r].length!==i[r].length)return void Rn(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void Rn(e)}}}(t,r),e.aChildren=r,e.children=fe)}const dn=new WeakMap;function fn(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(rn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function pn(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],a=e[s];const c=t.length-1;let u,d,f,p,h=c,m=t[0],g=t[h],w=!1;for(;o<=s&&i<=h;)rn(l)?rn(a)?rn(m)?rn(g)?zt(l,m)?(Jt(l,m,n,r),l=e[++o],m=t[++i]):zt(a,g)?(Jt(a,g,n,r),a=e[--s],g=t[--h]):zt(l,g)?(Jt(l,g,n,r),ln(l.elm,n,r.nextSibling(a.elm),r),l=e[++o],g=t[--h]):zt(a,m)?(Jt(a,m,n,r),ln(m.elm,n,l.elm,r),a=e[--s],m=t[++i]):(void 0===u&&(u=fn(e,o,s)),d=u[m.key],F(d)?(Qt(m,n,r,l.elm),m=t[++i]):(f=e[d],rn(f)&&(f.sel!==m.sel?Qt(m,n,r,l.elm):(Jt(f,m,n,r),w||(w=!0,e=[...e]),e[d]=void 0,ln(f.elm,n,l.elm,r))),m=t[++i])):g=t[--h]:m=t[++i]:a=e[--s]:l=e[++o];if(o<=s||i<=h)if(o>s){let e,o=h;do{e=t[++o]}while(!rn(e)&&o<c);p=rn(e)?e.elm:null,en(t,n,r,p,i,h+1)}else nn(e,n,r,!0,o,s+1)}function hn(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void en(t,n,r,null);if(0===i)return void nn(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(rn(i)?rn(l)?(Jt(i,l,n,r),s=l.elm):tn(i,n,r,!0):rn(l)&&(Qt(l,n,r,s),s=l.elm))}}const mn=Symbol.iterator;function gn(e,t,n=fe){const r=kn();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function wn(e,t,n,r=fe){const o=kn(),{key:i}=n;const s={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){S.call(kn().velements,e)}(s),s}function yn(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:kn()}}function bn(e){var t;return t=e,dn.set(t,1),e}let vn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const En=i({s:function(e,t,n,r){F(r)||F(r[e])||0===r[e].length||(n=r[e]);const o=kn(),{renderMode:i,shadowMode:s}=o;return 0===i?(bn(n),n):(1===s&&bn(n),gn("slot",t,n))},h:gn,c:wn,i:function(e,t){const n=[];if(bn(n),F(e)||null===e)return n;const r=e[mn]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);h(e)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];bn(n);for(let r=0;r<t;r+=1){const t=e[r];h(t)?S.apply(n,t):S.call(n,t)}return n},t:yn,d:function(e){return null==e?"":String(e)},b:function(e){const t=kn();if(I(t))throw new Error;const n=t;return function(t){_n(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:"c",owner:kn()}},dc:function(e,t,n,r=fe){if(null==t)return null;if(!Dt(t))throw new Error(`Invalid LWC Constructor ${K(t)} for custom element <${e}>.`);return wn(e,t,n,r)},fr:function(e,t,n){return{type:5,sel:void 0,key:e,elm:void 0,children:[yn(""),...t,yn("")],stable:n,owner:kn()}},ti:function(e){return e>0&&!(H(e)||B(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:kn()}},gid:function(e){const t=kn();if(F(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?P.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=kn();if(F(e)||""===e)return e;if(I(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return vn(e)}});let Cn=!1,Sn=null;function kn(){return Sn}function xn(e){Sn=e}const Tn=(Mn=(e,t)=>{const{createFragment:n}=t;return n(e)},(e,...t)=>{const r=n(null);return function(){const{context:{hasScopedStyles:n,stylesheetToken:o},shadowMode:i,renderer:s}=kn(),l=!F(o),a=1===i;let c=0;if(l&&n&&(c|=1),l&&a&&(c|=2),!F(r[c]))return r[c];const u=n&&l?" "+o:"",d=n&&l?` class="${o}"`:"",f=l&&a?" "+o:"";let p="";for(let n=0,r=t.length;n<r;n++)switch(t[n]){case 0:p+=e[n]+u;break;case 1:p+=e[n]+d;break;case 2:p+=e[n]+f;break;case 3:p+=e[n]+d+f}return p+=e[e.length-1],r[c]=Mn(p,s),r[c]}});var Mn;function An(e,t){const r=Cn,o=Sn;let i=[];return ir(e,e.owner,(()=>{Sn=e}),(()=>{const{component:r,context:o,cmpSlots:s,cmpTemplate:l,tro:a}=e;a.observe((()=>{if(t!==l){if(I(l)||or(e),a=t,!kt.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: ${K(t)}.`);e.cmpTemplate=t,o.tplCache=n(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!F(t))for(let e=0;e<t.length;e++)if(H(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:a}}=e,{stylesheets:c,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let p,h,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:y}=r;F(g)||(w&&s(n).remove(Ht(g)),y&&l(n,Ht(g))),F(c)||0===c.length||(p=u),F(p)||(f&&(s(n).add(Ht(p)),h=!0),d&&(a(n,Ht(p),""),m=!0)),r.stylesheetToken=p,r.hasTokenInClass=h,r.hasTokenInAttribute=m}(e,t);const r=Wt(e,t);o.styleVNodes=0===r.length?null:function(e,t){const{renderMode:n,shadowMode:r,renderer:{insertStylesheet:o}}=e;if(1!==n||1!==r)return E.call(t,Bt);for(let e=0;e<t.length;e++)o(t[e]);return null}(e,r)}var a;e.velements=[],Cn=!0,i=t.call(void 0,En,r,s,o.tplCache);const{styleVNodes:c}=o;I(c)||N.apply(i,c)}))}),(()=>{Cn=r,Sn=o})),i}let On=null;function Nn(e){return On===e}function Ln(e,t,n){const{component:r,callHook:o,owner:i}=e;ir(e,i,V,(()=>{o(r,t,n)}),V)}function _n(e,t,n,r){const{callHook:o,owner:i}=e;ir(e,i,V,(()=>{o(n,t,[r])}),V)}const $n=new Map;function Pn(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=kn();let s,l=!1;return ir(e,o,(()=>{xn(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{xn(i)})),l?An(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function Rn(e){e.isDirty=!0}const Dn=new WeakMap;function Fn(e,t){if(!j(t))throw new TypeError;let n=Dn.get(t);return F(n)&&(n=function(n){_n(e,t,void 0,n)},Dn.set(t,n)),n}const In=n(null),Hn=["rendered","connected","disconnected"];function Bn(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 jn=0;const Wn=new WeakMap;function Vn(e,t,n=[]){return t.apply(e,n)}function Gn(e,t,n){e[t]=n}function Kn(e,t){return e[t]}function zn(e){const t=Jn(e);1===t.state&&Un(e),er(t),Zn(t)}function Un(e){qn(Jn(e))}function qn(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){B(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=In;t&&Bn(e,t);tr(e)&&function(e){const{wiredDisconnecting:t}=e.context;ir(e,e,V,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),V)}(e);const{disconnectedCallback:n}=e.def;F(n)||Ln(e,n)}(e),nr(e),function(e){const{aChildren:t}=e;rr(t)}(e)}}function Yn(e,t,r,o){const{mode:i,owner:s,tagName:l,hydrated:a}=o,c=Ft(t),u={elm:e,def:c,idx:jn++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,children:fe,aChildren:fe,velements:fe,cmpProps:n(null),cmpFields:n(null),cmpSlots:n(null),oar:n(null),cmpTemplate:null,hydrated:Boolean(a),renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:de,wiredConnecting:fe,wiredDisconnecting:fe},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Vn,setHook:Gn,getHook:Kn,renderer:r};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!I(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=I(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,r),u.tro=me(),function(e,t){const n=On;let r;On=e;try{const o=new t;if(On.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(On=n,!F(r))throw we(e,r),r}}(u,c.ctor),tr(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=sr.get(i);if(!F(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=ar(e,t,s),a=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!a?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function Xn(e,t){Wn.set(e,t)}function Jn(e){return Wn.get(e)}function Qn(e){return Wn.get(e)}function Zn(e){if(H(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&ir(e,e,(()=>{}),(()=>{Xt(r,t,n,o)}),(()=>{}));e.state}(e,Pn(e))}}function er(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=In;n&&Bn(e,n),tr(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;F(r)||Ln(e,r)}function tr(e){return l(e.def.wire).length>0}function nr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!F(n)){const e=Qn(n);F(e)||qn(e)}}}function rr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!I(n)&&!F(n.elm))switch(n.type){case 2:rr(n.children);break;case 3:qn(Jn(n.elm));break}}}function or(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];I(o)||F(o.elm)||r(o.elm,n)}e.children=fe,nr(e),e.velements=fe}function ir(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!F(i)){we(e,i);const n=I(t)?void 0:function(e){let t=e;for(;!I(t);){if(!F(t.def.errorCallback))return t;t=t.owner}}(t);if(F(n))throw i;or(e);Ln(n,n.def.errorCallback,[i,i.wcStack])}}}const sr=new Map;class lr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),r(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function ar(e,t,n){const{method:r,adapter:i,configCallback:s,dynamic:l}=n,a=F(r)?function(e,t){return n=>{Oe(e,t,n)}}(e,t):function(e,t){return n=>{ir(e,e.owner,V,(()=>{t.call(e.component,n)}),V)}}(e,r);let c,u;o(a,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),o(a,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),ir(e,e,V,(()=>{u=new i(a)}),V);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){const r=me();return{computeConfigAndUpdate:()=>{let o;r.observe((()=>o=t(e))),n(o)},ro:r}}(e.component,s,(t=>{ir(e,e,V,(()=>{u.update(t,c)}),V)}));return F(i.contextSchema)||function(e,t,n){const{adapter:r}=t,o=ur(r);if(F(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:a}}=e;S.call(s,(()=>{const e=new lr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.call(l,e)}});a(i,e)}))}(e,n,(t=>{c!==t&&(c=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const cr=new Map;function ur(e){return cr.get(e)}function dr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};sr.set(e,o)}function fr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};sr.set(e,o)}let pr=!1;const hr=Symbol("namespace"),mr=Symbol("type"),gr=Symbol("parent"),wr=Symbol("shadow-root"),yr=Symbol("children"),br=Symbol("attributes"),vr=Symbol("event-listeners"),Er=Symbol("value");var Cr;!function(e){e.Text="text",e.Comment="comment",e.Raw="raw",e.Element="element",e.ShadowRoot="shadow-root"}(Cr||(Cr={}));const Sr=/\s+/g;function kr(e){return new Set(e.split(Sr).filter((e=>e.length)))}function xr(e){return Array.from(e).join(" ")}function Tr(e){return function(){throw new TypeError(`"${e}" is not supported in this environment`)}}function Mr(e,t){return{[mr]:Cr.Element,tagName:e,[hr]:null!=t?t:Q,[gr]:null,[wr]:null,[yr]:[],[br]:[],[vr]:{}}}const Ar=n(null),Or=new WeakMap;function Nr(e,t,n=null){const r=e[br].find((e=>e.name===t&&e[hr]===n));return r?r.value:null}function Lr(e,t,n,r=null){const o=e[br].find((e=>e.name===t&&e[hr]===r));F(r)&&(r=null),F(o)?e[br].push({name:t,[hr]:r,value:String(n)}):o.value=n}function _r(e,t,n){e[br]=e[br].filter((e=>e.name!==t&&e[hr]!==n))}const $r=V,Pr=V,Rr=V,Dr=Tr("dispatchEvent"),Fr=Tr("getBoundingClientRect"),Ir=Tr("querySelector"),Hr=Tr("querySelectorAll"),Br=Tr("getElementsByTagName"),jr=Tr("getElementsByClassName"),Wr=Tr("getChildren"),Vr=Tr("getChildNodes"),Gr=Tr("getFirstChild"),Kr=Tr("getFirstElementChild"),zr=Tr("getLastChild"),Ur=Tr("getLastElementChild");const qr={isNativeShadowDefined:!1,isSyntheticShadowDefined:!1,HTMLElementExported:class{constructor(){const{constructor:e}=this,t=Or.get(e);if(!t)throw new TypeError("Invalid Construction");return Mr(t)}},insert:function(e,t,n){const r=e[gr];if(null!==r&&r!==t){const t=r[yr].indexOf(e);r[yr].splice(t,1)}e[gr]=t;const o=I(n)?-1:t[yr].indexOf(n);-1===o?t[yr].push(e):t[yr].splice(o,0,e)},remove:function(e,t){const n=t[yr].indexOf(e);t[yr].splice(n,1)},cloneNode:function(e){return e},createFragment:function(e){return{[mr]:Cr.Raw,[gr]:null,[Er]:e}},createElement:Mr,createText:function(e){return{[mr]:Cr.Text,[Er]:String(e),[gr]:null}},createComment:function(e){return{[mr]:Cr.Comment,[Er]:e,[gr]:null}},nextSibling:function(e){const t=e[gr];if(I(t))return null;const n=t[yr].indexOf(e);return t[yr][n+1]||null},attachShadow:function(e,t){return e[wr]={[mr]:Cr.ShadowRoot,[yr]:[],mode:t.mode,delegatesFocus:!!t.delegatesFocus},e[wr]},getProperty:function(e,t){var n,r;if(t in e)return e[t];if(e[mr]===Cr.Element){const o=se(t);if(te(o,e.tagName))return null!==(n=Nr(e,o))&&void 0!==n&&n;if(re(o)||X(o))return Nr(e,o);if("input"===e.tagName&&"value"===t)return null!==(r=Nr(e,"value"))&&void 0!==r?r:""}},setProperty:function(e,t,n){if(t in e)return e[t]=n;if(e[mr]===Cr.Element){const r=se(t);if("innerHTML"===t)return void(e[yr]=[{[mr]:Cr.Raw,[gr]:e,[Er]:n}]);if(te(r,e.tagName))return!0===n?Lr(e,r,""):_r(e,r);if(re(r)||X(r))return Lr(e,r,n);if("input"===e.tagName&&"value"===r)return I(n)||F(n)?_r(e,"value"):Lr(e,"value",n)}},setText:function(e,t){e[mr]===Cr.Text?e[Er]=t:e[mr]===Cr.Element&&(e[yr]=[{[mr]:Cr.Text,[gr]:e,[Er]:t}])},getAttribute:Nr,setAttribute:Lr,removeAttribute:_r,addEventListener:Pr,removeEventListener:Rr,dispatchEvent:Dr,getClassList:function(e){function t(){let t=e[br].find((e=>"class"===e.name&&I(e[hr])));return F(t)&&(t={name:"class",[hr]:null,value:""},e[br].push(t)),t}return{add(...e){const n=t(),r=kr(n.value);e.forEach((e=>r.add(e))),n.value=xr(r)},remove(...e){const n=t(),r=kr(n.value);e.forEach((e=>r.delete(e))),n.value=xr(r)}}},setCSSStyleProperty:function(e,t,n,r){const o=e[br].find((e=>"style"===e.name&&I(e[hr]))),i=`${t}: ${n}${r?" !important":""}`;F(o)?e[br].push({name:"style",[hr]:null,value:i}):o.value+=`; ${i}`},getBoundingClientRect:Fr,querySelector:Ir,querySelectorAll:Hr,getElementsByTagName:Br,getElementsByClassName:jr,getChildren:Wr,getChildNodes:Vr,getFirstChild:Gr,getFirstElementChild:Kr,getLastChild:zr,getLastElementChild:Ur,isConnected:function(e){return!I(e[gr])},insertStylesheet:$r,assertInstanceOfHTMLElement:V,defineCustomElement:function(e,t,n){!function(e,t){if(e!==D.call(e)||Ar[e])throw new TypeError("Invalid Registration");Ar[e]=t,Or.set(t,e)}(e,t)},getCustomElement:function(e){return Ar[e]}};function Yr(e){return e.map((e=>{switch(e[mr]){case Cr.Text:return""===e[Er]?"‍":ae(e[Er]);case Cr.Comment:return`\x3c!--${ae(e[Er])}--\x3e`;case Cr.Raw:return e[Er];case Cr.Element:return Xr(e)}})).join("")}function Xr(e){let t="";const n=e.tagName,r=e[hr],o=r!==Q,i=e[yr].length>0;var s;return t+=`<${n}${e[br].length?` ${s=e[br],s.map((e=>e.value.length?`${e.name}=${JSON.stringify(ae(e.value))}`:e.name)).join(" ")}`:""}`,o&&!i?(t+="/>",t):(t+=">",e[wr]&&(t+=function(e){const t=[`shadowroot="${e.mode}"`];return e.delegatesFocus&&t.push("shadowrootdelegatesfocus"),`<template ${t.join(" ")}>${Yr(e[yr])}</template>`}(e[wr])),t+=Yr(e[yr]),function(e,t){return t===Q&&Z.has(e.toLowerCase())}(n,r)&&!i||(t+=`</${n}>`),t)}const Jr={[mr]:Cr.Element,tagName:"fake-root-element",[hr]:Q,[gr]:null,[wr]:null,[yr]:[],[br]:[],[vr]:{}};i(dt),f(dt.prototype),exports.LightningElement=dt,exports.api=function(){throw new Error},exports.createContextProvider=function(e){let t=ur(e);if(!F(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){cr.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((()=>{F(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},exports.freezeTemplate=function(e){},exports.getComponentDef=function(e){const t=Ft(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:se(e)};const a={};for(const e in s)a[e]=s[e].value;return{ctor:n,name:r,props:l,methods:a}},exports.isComponentConstructor=Dt,exports.parseFragment=Tn,exports.parseSVGFragment=Tn,exports.readonly=function(e){return ct(e)},exports.register=function(e){for(let t=0;t<Hn.length;++t){const n=Hn[t];if(n in e){let t=In[n];F(t)&&(In[n]=t=[]),S.call(t,e[n])}}},exports.registerComponent=function(e,{tmpl:t}){return j(e)&&$n.set(e,t),e},exports.registerDecorators=function(e,t){const r=e.prototype,{publicProps:i,publicMethods:l,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(!F(i))for(const e in i){const t=i[e];if(g[e]=t.config,w=s(r,e),t.config>0){if(F(w))throw new Error;w=bt(e,w)}else w=F(w)||F(w.get)?yt(e):bt(e,w);f[e]=w,o(r,e,w)}if(F(l)||L.call(l,(e=>{if(w=s(r,e),F(w))throw new Error;d[e]=w})),!F(a))for(const e in a){const{adapter:t,method:n,config:i,dynamic:l=[]}=a[e];if(w=s(r,e),1===n){if(F(w))throw new Error;p[e]=w,dr(w,t,i,l)}else w=Et(e),h[e]=w,fr(w,t,i,l),o(r,e,w)}if(!F(c))for(const e in c)w=s(r,e),w=vt(e),o(r,e,w);if(!F(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(r,t);const n=!F(i)&&t in i,o=!F(c)&&t in c;n||o||(m[t]=gt(t))}return function(e,t){Ct.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:p,wiredFields:h,observedFields:m}),e},exports.registerTemplate=function(e){return kt.add(e),o(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return F(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=F(e)?void 0:e.shadowAttribute}}),e},exports.renderComponent=function(e,t,n={}){if(!W(e))throw new TypeError(`"renderComponent" expects a string as the first parameter but instead received ${e}.`);if(!j(t))throw new TypeError(`"renderComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if("object"!=typeof n||I(n))throw new TypeError(`"renderComponent" expects an object as the third parameter but instead received ${n}.`);const r=qr.createElement(e);Yn(r,t,qr,{mode:"open",owner:null,tagName:e});for(const[e,t]of Object.entries(n))r[e]=t;return r[gr]=Jr,zn(r),Xr(r)},exports.renderer=qr,exports.sanitizeAttribute=function(e,t,n,r){return r},exports.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(F(ce[e])){const n=d(ce).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=ue[e];if(!F(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(ue,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(pr,"Hooks are already overridden, only one definition is allowed."),pr=!0,n=t.sanitizeHtmlContent,vn=n},exports.track=function(e){if(1===arguments.length)return e;throw new Error},exports.unwrap=function(e){return e},exports.wire=function(e,t){throw new Error};
@@ -432,9 +432,9 @@ function htmlEscape(str, attrMode = false) {
432
432
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
433
433
  */
434
434
  // Increment whenever the LWC template compiler changes
435
- const LWC_VERSION = "2.23.4";
435
+ const LWC_VERSION = "2.23.6";
436
436
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
437
- /** version: 2.23.4 */
437
+ /** version: 2.23.6 */
438
438
 
439
439
  /*
440
440
  * Copyright (c) 2020, salesforce.com, inc.
@@ -491,6 +491,7 @@ const features = {
491
491
  ENABLE_NODE_PATCH: null,
492
492
  ENABLE_REACTIVE_SETTER: null,
493
493
  ENABLE_WIRE_SYNC_EMIT: null,
494
+ ENABLE_LIGHT_GET_ROOT_NODE_PATCH: null,
494
495
  };
495
496
  if (!_globalThis.lwcRuntimeFlags) {
496
497
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
@@ -544,7 +545,7 @@ function setFeatureFlagForTest(name, value) {
544
545
  setFeatureFlag(name, value);
545
546
  }
546
547
  }
547
- /** version: 2.23.4 */
548
+ /** version: 2.23.6 */
548
549
 
549
550
  /* proxy-compat-disable */
550
551
 
@@ -3651,6 +3652,12 @@ function patch(n1, n2, parent, renderer) {
3651
3652
  n2.elm = n1.elm;
3652
3653
  break;
3653
3654
 
3655
+ case 5
3656
+ /* VNodeType.Fragment */
3657
+ :
3658
+ patchFragment(n1, n2, parent, renderer);
3659
+ break;
3660
+
3654
3661
  case 2
3655
3662
  /* VNodeType.Element */
3656
3663
  :
@@ -3690,6 +3697,12 @@ function mount(node, parent, renderer, anchor) {
3690
3697
  mountStatic(node, parent, anchor, renderer);
3691
3698
  break;
3692
3699
 
3700
+ case 5
3701
+ /* VNodeType.Fragment */
3702
+ :
3703
+ mountFragment(node, parent, anchor, renderer);
3704
+ break;
3705
+
3693
3706
  case 2
3694
3707
  /* VNodeType.Element */
3695
3708
  :
@@ -3747,6 +3760,31 @@ function mountComment(vnode, parent, anchor, renderer) {
3747
3760
  insertNode(commentNode, parent, anchor, renderer);
3748
3761
  }
3749
3762
 
3763
+ function mountFragment(vnode, parent, anchor, renderer) {
3764
+ const {
3765
+ children
3766
+ } = vnode;
3767
+ mountVNodes(children, parent, renderer, anchor); // children of a fragment will always have at least the two delimiters.
3768
+
3769
+ vnode.elm = children[children.length - 1].elm;
3770
+ }
3771
+
3772
+ function patchFragment(n1, n2, parent, renderer) {
3773
+ const {
3774
+ children,
3775
+ stable
3776
+ } = n2;
3777
+
3778
+ if (stable) {
3779
+ updateStaticChildren(n1.children, children, parent, renderer);
3780
+ } else {
3781
+ updateDynamicChildren(n1.children, children, parent, renderer);
3782
+ } // Note: not reusing n1.elm, because during patching, it may be patched with another text node.
3783
+
3784
+
3785
+ n2.elm = children[children.length - 1].elm;
3786
+ }
3787
+
3750
3788
  function mountElement(vnode, parent, anchor, renderer) {
3751
3789
  const {
3752
3790
  sel,
@@ -3902,9 +3940,15 @@ function unmount(vnode, parent, renderer, doRemove = false) {
3902
3940
  // subtree root, is the only element worth unmounting from the subtree.
3903
3941
 
3904
3942
  if (doRemove) {
3905
- // The vnode might or might not have a data.renderer associated to it
3906
- // but the removal used here is from the owner instead.
3907
- removeNode(elm, parent, renderer);
3943
+ if (type === 5
3944
+ /* VNodeType.Fragment */
3945
+ ) {
3946
+ unmountVNodes(vnode.children, parent, renderer, doRemove);
3947
+ } else {
3948
+ // The vnode might or might not have a data.renderer associated to it
3949
+ // but the removal used here is from the owner instead.
3950
+ removeNode(elm, parent, renderer);
3951
+ }
3908
3952
  }
3909
3953
 
3910
3954
  switch (type) {
@@ -4411,6 +4455,18 @@ function st(fragment, key) {
4411
4455
  owner: getVMBeingRendered(),
4412
4456
  };
4413
4457
  }
4458
+ // [fr]agment node
4459
+ function fr(key, children, stable) {
4460
+ return {
4461
+ type: 5 /* VNodeType.Fragment */,
4462
+ sel: undefined,
4463
+ key,
4464
+ elm: undefined,
4465
+ children: [t(''), ...children, t('')],
4466
+ stable,
4467
+ owner: getVMBeingRendered(),
4468
+ };
4469
+ }
4414
4470
  // [h]tml node
4415
4471
  function h(sel, data, children = EmptyArray) {
4416
4472
  const vmBeingRendered = getVMBeingRendered();
@@ -4630,13 +4686,13 @@ function t(text) {
4630
4686
  }
4631
4687
  // [co]mment node
4632
4688
  function co(text) {
4633
- let sel, key, elm;
4689
+ let sel, elm;
4634
4690
  return {
4635
4691
  type: 1 /* VNodeType.Comment */,
4636
4692
  sel,
4637
4693
  text,
4638
4694
  elm,
4639
- key,
4695
+ key: 'c',
4640
4696
  owner: getVMBeingRendered(),
4641
4697
  };
4642
4698
  }
@@ -4781,6 +4837,7 @@ const api = freeze({
4781
4837
  k,
4782
4838
  co,
4783
4839
  dc,
4840
+ fr,
4784
4841
  ti,
4785
4842
  st,
4786
4843
  gid,
@@ -6242,7 +6299,7 @@ function freezeTemplate(tmpl) {
6242
6299
  });
6243
6300
  }
6244
6301
  }
6245
- /* version: 2.23.4 */
6302
+ /* version: 2.23.6 */
6246
6303
 
6247
6304
  /*
6248
6305
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6712,6 +6769,6 @@ function renderComponent(tagName, Ctor, props = {}) {
6712
6769
  */
6713
6770
  freeze(LightningElement);
6714
6771
  seal(LightningElement.prototype);
6715
- /* version: 2.23.4 */
6772
+ /* version: 2.23.6 */
6716
6773
 
6717
6774
  export { LightningElement, api$1 as api, createContextProvider, freezeTemplate, getComponentDef, isComponentConstructor, parseFragment, parseFragment as parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, renderComponent, renderer, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, track, unwrap, wire };