lwc 2.11.3 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +5 -12
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +5 -12
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +2 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +4 -11
  5. package/dist/engine-dom/iife/es5/engine-dom.js +5741 -7303
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +4542 -5843
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +5 -12
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +2 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +4 -11
  11. package/dist/engine-dom/umd/es5/engine-dom.js +5741 -7303
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +4542 -5843
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +5 -12
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +5 -12
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +13 -10
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3594 -4568
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +1 -10
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3470 -4413
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +13 -10
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3594 -4568
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +1 -10
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3470 -4413
  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.min.js +1 -1
  33. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  34. package/dist/wire-service/iife/es5/wire-service.js +258 -243
  35. package/dist/wire-service/iife/es5/wire-service.min.js +1 -1
  36. package/dist/wire-service/iife/es5/wire-service_debug.js +258 -243
  37. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  38. package/dist/wire-service/umd/es2017/wire-service.min.js +1 -1
  39. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  40. package/dist/wire-service/umd/es5/wire-service.js +258 -243
  41. package/dist/wire-service/umd/es5/wire-service.min.js +1 -1
  42. package/dist/wire-service/umd/es5/wire-service_debug.js +258 -243
  43. package/package.json +9 -8
@@ -298,9 +298,9 @@ const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
298
298
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
299
299
  */
300
300
  // Increment whenever the LWC template compiler changes
301
- const LWC_VERSION = "2.11.3";
301
+ const LWC_VERSION = "2.13.0";
302
302
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
303
- /** version: 2.11.3 */
303
+ /** version: 2.13.0 */
304
304
 
305
305
  /*
306
306
  * Copyright (c) 2018, salesforce.com, inc.
@@ -453,7 +453,7 @@ function setFeatureFlagForTest(name, value) {
453
453
  setFeatureFlag(name, value);
454
454
  }
455
455
  }
456
- /** version: 2.11.3 */
456
+ /** version: 2.13.0 */
457
457
 
458
458
  /* proxy-compat-disable */
459
459
 
@@ -4040,13 +4040,6 @@ function allocateInSlot(vm, children) {
4040
4040
  slotName = ((_a = vnode.data.attrs) === null || _a === void 0 ? void 0 : _a.slot) || '';
4041
4041
  }
4042
4042
  const vnodes = (cmpSlots[slotName] = cmpSlots[slotName] || []);
4043
- // re-keying the vnodes is necessary to avoid conflicts with default content for the slot
4044
- // which might have similar keys. Each vnode will always have a key that
4045
- // starts with a numeric character from compiler. In this case, we add a unique
4046
- // notation for slotted vnodes keys, e.g.: `@foo:1:1`
4047
- if (!isUndefined$1(vnode.key)) {
4048
- vnode.key = `@${slotName}:${vnode.key}`;
4049
- }
4050
4043
  ArrayPush$1.call(vnodes, vnode);
4051
4044
  }
4052
4045
  if (isFalse(vm.isDirty)) {
@@ -6568,7 +6561,7 @@ function setHooks(hooks) {
6568
6561
  hooksAreSet = true;
6569
6562
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
6570
6563
  }
6571
- /* version: 2.11.3 */
6564
+ /* version: 2.13.0 */
6572
6565
 
6573
6566
  /*
6574
6567
  * Copyright (c) 2018, salesforce.com, inc.
@@ -7208,6 +7201,6 @@ defineProperty(LightningElement, 'CustomElementConstructor', {
7208
7201
  });
7209
7202
  freeze(LightningElement);
7210
7203
  seal(LightningElement.prototype);
7211
- /* version: 2.11.3 */
7204
+ /* version: 2.13.0 */
7212
7205
 
7213
7206
  export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, deprecatedBuildCustomElementConstructor as buildCustomElementConstructor, createContextProvider, createElement, getComponentConstructor, getComponentDef, hydrateComponent, isComponentConstructor, isNodeShadowed as isNodeFromTemplate, readonly, register, registerComponent, registerDecorators, registerTemplate, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
@@ -301,9 +301,9 @@ var LWC = (function (exports) {
301
301
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
302
302
  */
303
303
  // Increment whenever the LWC template compiler changes
304
- const LWC_VERSION = "2.11.3";
304
+ const LWC_VERSION = "2.13.0";
305
305
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
306
- /** version: 2.11.3 */
306
+ /** version: 2.13.0 */
307
307
 
308
308
  /*
309
309
  * Copyright (c) 2018, salesforce.com, inc.
@@ -456,7 +456,7 @@ var LWC = (function (exports) {
456
456
  setFeatureFlag(name, value);
457
457
  }
458
458
  }
459
- /** version: 2.11.3 */
459
+ /** version: 2.13.0 */
460
460
 
461
461
  /* proxy-compat-disable */
462
462
 
@@ -4043,13 +4043,6 @@ var LWC = (function (exports) {
4043
4043
  slotName = ((_a = vnode.data.attrs) === null || _a === void 0 ? void 0 : _a.slot) || '';
4044
4044
  }
4045
4045
  const vnodes = (cmpSlots[slotName] = cmpSlots[slotName] || []);
4046
- // re-keying the vnodes is necessary to avoid conflicts with default content for the slot
4047
- // which might have similar keys. Each vnode will always have a key that
4048
- // starts with a numeric character from compiler. In this case, we add a unique
4049
- // notation for slotted vnodes keys, e.g.: `@foo:1:1`
4050
- if (!isUndefined$1(vnode.key)) {
4051
- vnode.key = `@${slotName}:${vnode.key}`;
4052
- }
4053
4046
  ArrayPush$1.call(vnodes, vnode);
4054
4047
  }
4055
4048
  if (isFalse(vm.isDirty)) {
@@ -6571,7 +6564,7 @@ var LWC = (function (exports) {
6571
6564
  hooksAreSet = true;
6572
6565
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
6573
6566
  }
6574
- /* version: 2.11.3 */
6567
+ /* version: 2.13.0 */
6575
6568
 
6576
6569
  /*
6577
6570
  * Copyright (c) 2018, salesforce.com, inc.
@@ -7211,7 +7204,7 @@ var LWC = (function (exports) {
7211
7204
  });
7212
7205
  freeze(LightningElement);
7213
7206
  seal(LightningElement.prototype);
7214
- /* version: 2.11.3 */
7207
+ /* version: 2.13.0 */
7215
7208
 
7216
7209
  exports.LightningElement = LightningElement;
7217
7210
  exports.__unstable__ProfilerControl = profilerControl;
@@ -1 +1,2 @@
1
- var LWC=function(e){"use strict";var t=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:n,create:r,defineProperties:o,defineProperty:i,freeze:l,getOwnPropertyDescriptor:s,getOwnPropertyNames:c,getPrototypeOf:a,hasOwnProperty:u,isFrozen:d,keys:f,seal:h,setPrototypeOf:p}=Object,{isArray:m}=Array,{filter:g,find:w,indexOf:y,join:b,map:v,push:C,reduce:E,reverse:M,slice:k,splice:S,unshift:T,forEach:x}=Array.prototype,{fromCharCode:O}=String,{charCodeAt:N,replace:A,slice:P,toLowerCase:$}=String.prototype;function _(e){return void 0===e}function R(e){return null===e}function L(e){return!0===e}function D(e){return!1===e}function H(e){return"function"==typeof e}function I(e){return"object"==typeof e}function F(e){return"string"==typeof e}function W(){}const j={}.toString;function B(e){return e&&e.toString?m(e)?b.call(v.call(e,B),","):e.toString():"object"==typeof e?j.call(e):e+""}function V(e,t){do{const n=s(e,t);if(!_(n))return n;e=a(e)}while(null!==e)}const K=["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:G,AriaPropNameToAttrNameMap:z}=(()=>{const e=r(null),t=r(null);return x.call(K,(n=>{const r=$.call(A.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),U=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),q=new 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"]]),X=new Map;function Y(e){const t=z[e];if(!_(t))return t;const n=q.get(e);if(!_(n))return n;const r=X.get(e);if(!_(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=N.call(e,t);o+=n>=65&&n<=90?"-"+O(n+32):O(n)}return X.set(e,o),o}const J="http://www.w3.org/2000/svg";function Q(e){return void 0===Object.getOwnPropertyDescriptor(Element.prototype,e)}const Z=new WeakMap;function ee(e){let t=Z.get(e);return void 0===t&&(t={},Z.set(e,t)),t}function te(e,t){return{get(){const n=ee(this);return u.call(n,e)?n[e]:this.hasAttribute(t)?this.getAttribute(t):null},set(n){const r=null==(o=n)?null:String(o);var o;ee(this)[e]=r,null===n?this.removeAttribute(t):this.setAttribute(t,n)},configurable:!0,enumerable:!0}}function ne(e){const t=te(e,z[e]);Object.defineProperty(Element.prototype,e,t)}const re=f(z);for(let e=0,t=re.length;e<t;e+=1){const t=re[e];Q(t)&&ne(t)}const oe={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_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};U.lwcRuntimeFlags||Object.defineProperty(U,"lwcRuntimeFlags",{value:r(null)});const ie=U.lwcRuntimeFlags;let le=[];const se=h(r(null)),ce=h([]);function ae(){const e=le;le=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function ue(e){0===le.length&&Promise.resolve().then(ae),C.call(le,e)}const de=/;(?![^(]*\))/g,fe=/:(.+)/;function he(e,t){const n={};for(const r of Object.keys(e))r!==t&&(n[r]=e[r]);return n}let pe,me,ge,we,ye,be,ve,Ce,Ee,Me,ke,Se,Te,xe,Oe,Ne,Ae,Pe,$e,_e,Re,Le,De,He,Ie,Fe,We,je,Be,Ve,Ke,Ge,ze,Ue,qe,Xe,Ye,Je,Qe;const Ze=new WeakMap;let et=null;function tt(e,t){const n=Ze.get(e);if(!_(n)){const e=n[t];if(!_(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function nt(e,t){if(null===et)return;const n=et,o=function(e){let t=Ze.get(e);if(_(t)){const n=r(null);t=n,Ze.set(e,n)}return t}(e);let i=o[t];if(_(i))i=[],o[t]=i;else if(i[0]===n)return;-1===y.call(i,n)&&n.link(i)}class rt{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=et;let n;et=this;try{e()}catch(e){n=Object(e)}finally{if(et=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=y.call(e[n],this);S.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){C.call(e,this),C.call(this.listeners,e)}}function ot(e,t){tt(e.component,t)}function it(e,t){nt(e.component,t)}function lt(e){return`<${$.call(e.tagName)}>`}function st(e,t){if(!d(t)&&_(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!R(n);)C.call(t,lt(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function ct(e,t,n){let r=`[LWC ${e}]: ${t}`;_(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!R(e.owner);)C.call(t,n+lt(e)),e=e.owner,n+="\t";return b.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}const at="undefined"!=typeof HTMLElement?HTMLElement:function(){},ut=at.prototype;function dt(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.`}n(r(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:dt("offsetHeight")},offsetLeft:{readOnly:!0,error:dt("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:dt("offsetTop")},offsetWidth:{readOnly:!0,error:dt("offsetWidth")},role:{attribute:"role"}});let ft,ht=null;function pt(e,t){return e!==ht||t!==ft}function mt(e,t){ht=null,ft=void 0}function gt(e,t){ht=e,ft=t}const wt=r(null);x.call(f(z),(e=>{const t=V(ut,e);_(t)||(wt[e]=t)})),x.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=V(ut,e);_(t)||(wt[e]=t)}));const{isArray:yt}=Array,{prototype:bt,getPrototypeOf:vt,create:Ct,defineProperty:Et,isExtensible:Mt,getOwnPropertyDescriptor:kt,getOwnPropertyNames:St,getOwnPropertySymbols:Tt,preventExtensions:xt,hasOwnProperty:Ot}=Object,{push:Nt,concat:At}=Array.prototype;function Pt(e){return void 0===e}function $t(e){return"function"==typeof e}const _t=new WeakMap;function Rt(e,t){_t.set(e,t)}const Lt=e=>_t.get(e)||e;class Dt{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(Ot.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;Pt(n)||(e.get=this.wrapGetter(n)),Pt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=kt(n,t);if(!Pt(r)){const n=this.wrapDescriptor(r);Et(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;At.call(St(t),Tt(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;Pt(n)||Ot.call(e,n)||Et(e,n,Ct(null)),xt(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=Pt(n)||Ot.call(t,n)?[]:[n];return Nt.apply(r,St(t)),Nt.apply(r,Tt(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!Mt(e)&&(!!Mt(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return vt(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=kt(n,t);if(Pt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Et(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const Ht=new WeakMap,It=new WeakMap,Ft=new WeakMap,Wt=new WeakMap;class jt extends Dt{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=Ht.get(e);if(!Pt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Lt(this)))};return Ht.set(e,r),Ft.set(r,e),r}wrapSetter(e){const t=It.get(e);if(!Pt(t))return t;const n=function(t){e.call(Lt(this),Lt(t))};return It.set(e,n),Wt.set(n,e),n}unwrapDescriptor(e){if(Ot.call(e,"value"))e.value=Lt(e.value);else{const{set:t,get:n}=e;Pt(n)||(e.get=this.unwrapGetter(n)),Pt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=Ft.get(e);if(!Pt(t))return t;const n=this,r=function(){return Lt(e.call(n.wrapValue(this)))};return Ht.set(r,e),Ft.set(e,r),r}unwrapSetter(e){const t=Wt.get(e);if(!Pt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return It.set(r,e),Wt.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&&yt(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(Mt(e)){const{originalTarget:t}=this;if(xt(t),Mt(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!Ot.call(r,t)||(Et(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const Bt=new WeakMap,Vt=new WeakMap;class Kt extends Dt{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=Bt.get(e);if(!Pt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(Lt(this)))};return Bt.set(e,r),r}wrapSetter(e){const t=Vt.get(e);if(!Pt(t))return t;const n=function(e){};return Vt.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 Gt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(yt(e))return!0;const t=vt(e);return t===bt||null===t||null===vt(t)}const zt=(e,t)=>{},Ut=(e,t)=>{};function qt(e){return yt(e)?[]:{}}const Xt=Symbol.for("@@lockerLiveValue"),Yt=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=$t(t)?t:Ut,this.valueObserved=$t(n)?n:zt,this.valueIsObservable=$t(r)?r:Gt,this.tagPropertyKey=o}getProxy(e){const t=Lt(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=Lt(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return Lt(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(Pt(t)){const n=new jt(this,e);t=new Proxy(qt(e),n),Rt(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(Pt(t)){const n=new Kt(this,e);t=new Proxy(qt(e),n),Rt(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:nt,valueMutated:tt,tagPropertyKey:Xt});function Jt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!H(n))throw new TypeError;if(!H(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=Qr(this);if(!Nr(t))return it(t,e),n.call(t.elm)},set(t){const n=Qr(this);return t!==n.cmpProps[e]&&(n.cmpProps[e]=t,ot(n,e)),r.call(n.elm,t)}}}const Qt=function(){if(R(Or))throw new ReferenceError("Illegal constructor");const e=Or,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return this[Xt]=void 0,Jr(o,e),Jr(n,e),1===e.renderMode?e.renderRoot=Zt(e):e.renderRoot=n,this};function Zt(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o}}=e,i=Se(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=i,Jr(i,e),i}Qt.prototype={constructor:Qt,dispatchEvent(e){const{elm:t}=Qr(this);return Re(t,e)},addEventListener(e,t,n){const r=Qr(this),{elm:o}=r,i=Hr(r,t);$e(o,e,i,n)},removeEventListener(e,t,n){const r=Qr(this),{elm:o}=r,i=Hr(r,t);_e(o,e,i,n)},hasAttribute(e){const{elm:t}=Qr(this);return!R(Ne(t,e))},hasAttributeNS(e,t){const{elm:n}=Qr(this);return!R(Ne(n,t,e))},removeAttribute(e){const{elm:t}=Qr(this);gt(t,e),Pe(t,e),mt()},removeAttributeNS(e,t){const{elm:n}=Qr(this);gt(n,t),Pe(n,t,e),mt()},getAttribute(e){const{elm:t}=Qr(this);return Ne(t,e)},getAttributeNS(e,t){const{elm:n}=Qr(this);return Ne(n,t,e)},setAttribute(e,t){const n=Qr(this),{elm:r}=n;gt(r,e),Ae(r,e,t),mt()},setAttributeNS(e,t,n){const r=Qr(this),{elm:o}=r;gt(o,t),Ae(o,t,n,e),mt()},getBoundingClientRect(){const e=Qr(this),{elm:t}=e;return He(t)},get isConnected(){const{elm:e}=Qr(this);return qe(e)},get classList(){const e=Qr(this),{elm:t}=e;return Le(t)},get template(){return Qr(this).shadowRoot},get shadowRoot(){return null},render(){return Qr(this).def.template},toString(){return`[object ${Qr(this).def.name}]`}};const en=r(null),tn=["children","childNodes","firstChild","firstElementChild","lastChild","lastElementChild"];function nn(e){switch(e){case"children":return Be;case"childNodes":return Ve;case"firstChild":return Ke;case"firstElementChild":return Ge;case"lastChild":return ze;case"lastElementChild":return Ue}}for(const e of tn)en[e]={get(){const t=Qr(this),{elm:n}=t;return nn(e)(n)},configurable:!0,enumerable:!0};const rn=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];function on(e){switch(e){case"getElementsByClassName":return je;case"getElementsByTagName":return We;case"querySelector":return Ie;case"querySelectorAll":return Fe}}for(const e of rn)en[e]={value(t){const n=Qr(this),{elm:r}=n;return on(e)(r,t)},configurable:!0,enumerable:!0,writable:!0};o(Qt.prototype,en);const ln=r(null);for(const e in wt)ln[e]=Jt(e,wt[e]);function sn(e){return{get(){const t=Qr(this);return it(t,e),t.cmpFields[e]},set(t){const n=Qr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,ot(n,e))},enumerable:!0,configurable:!0}}function cn(e){return{get(){const t=Qr(this);return it(t,e),t.cmpFields[e]},set(t){const n=Qr(this),r=Yt.getProxy(t);r!==n.cmpFields[e]&&(n.cmpFields[e]=r,ot(n,e))},enumerable:!0,configurable:!0}}function an(e){return{get(){const t=Qr(this);if(!Nr(t))return it(t,e),t.cmpProps[e]},set(t){const n=Qr(this);n.cmpProps[e]=t,ot(n,e)},enumerable:!0,configurable:!0}}o(Qt.prototype,ln),i(Qt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class un extends rt{constructor(e,t){super((()=>{D(this.debouncing)&&(this.debouncing=!0,ue((()=>{if(L(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,L(e.isDirty)&&D(r)&&i>0&&zr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function dn(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!H(n))throw new Error;return{get(){return n.call(this)},set(t){const n=Qr(this);if(r)if(ie.ENABLE_REACTIVE_SETTER){let o=n.oar[e];_(o)&&(o=n.oar[e]=new un(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function fn(e){return{get(){const t=Qr(this);return it(t,e),t.cmpFields[e]},set(t){const n=Qr(this);t!==n.cmpFields[e]&&(n.cmpFields[e]=t,ot(n,e))},enumerable:!0,configurable:!0}}const hn=new Map;const pn={apiMethods:se,apiFields:se,apiFieldsConfig:se,wiredMethods:se,wiredFields:se,observedFields:se};const mn=new Set;function gn(){return[]}mn.add(gn);const wn=r(null),yn=r(null);function bn(e){let t=wn[e];return _(t)&&(t=wn[e]=function(){const t=Qr(this),{getHook:n}=t;return n(t.component,e)}),t}function vn(e){let t=yn[e];return _(t)&&(t=yn[e]=function(t){const n=Qr(this),{setHook:r}=n;t=Yt.getReadOnlyProxy(t),r(n.component,e,t)}),t}function Cn(e){return function(){const t=Qr(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,k.call(arguments))}}function En(e,t){return function(n,r,o){if(r===o)return;const i=e[n];_(i)?_(t)||t.apply(this,arguments):pt(this,n)&&(this[i]=o)}}function Mn(e,t,n){let l;H(e)?l=class extends e{}:(l=function(){throw new TypeError("Illegal constructor")},p(l,e),p(l.prototype,e.prototype),i(l.prototype,"constructor",{writable:!0,configurable:!0,value:l}));const s=r(null),{attributeChangedCallback:c}=e.prototype,{observedAttributes:a=[]}=e,u=r(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];s[Y(n)]=n,u[n]={get:bn(n),set:vn(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:Cn(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:En(s,c)},i(l,"observedAttributes",{get:()=>[...a,...f(s)]}),o(l.prototype,u),l}const kn=Mn(at,c(wt),[]);function Sn(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Tn(e){return H(e)&&u.call(e,"__circular__")}l(kn),h(kn.prototype);const xn=new WeakMap;function On(e){const{shadowSupportMode:t,renderMode:i}=e,l=function(e){const t=hn.get(e);return _(t)?pn:t}(e),{apiFields:s,apiFieldsConfig:c,apiMethods:u,wiredFields:d,wiredMethods:h,observedFields:p}=l,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}=m;const C=function(e){let t=a(e);if(R(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Tn(t)){const e=Sn(t);t=e===t?Qt:e}return t}(e),E=C!==Qt?An(C):Pn,M=Mn(E.bridge,f(s),f(u)),k=n(r(null),E.props,s),S=n(r(null),E.propsConfig,c),T=n(r(null),E.methods,u),x=n(r(null),E.wire,d,h);g=g||E.connectedCallback,w=w||E.disconnectedCallback,y=y||E.renderedCallback,b=b||E.errorCallback,v=v||E.render;let O=E.shadowSupportMode;_(t)||(O=t);let N=E.renderMode;_(i)||(N="light"===i?0:1);const A=function(e){return $r.get(e)}(e)||E.template,P=e.name||E.name;o(m,p);return{ctor:e,name:P,wire:x,props:k,propsConfig:S,methods:T,bridge:M,template:A,renderMode:N,shadowSupportMode:O,connectedCallback:g,disconnectedCallback:w,renderedCallback:y,errorCallback:b,render:v}}function Nn(e){if(!H(e))return!1;if(e.prototype instanceof Qt)return!0;let t=e;do{if(Tn(t)){const e=Sn(t);if(e===t)return!0;t=e}if(t===Qt)return!0}while(!R(t)&&(t=a(t)));return!1}function An(e){let t=xn.get(e);if(_(t)){if(Tn(e)){return t=An(Sn(e)),xn.set(e,t),t}if(!Nn(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=On(e),xn.set(e,t)}return t}const Pn={ctor:Qt,name:Qt.name,props:ln,propsConfig:se,methods:se,renderMode:1,shadowSupportMode:"reset",wire:se,bridge:kn,template:gn,render:Qt.prototype.render};function $n(e){e=e.toLowerCase();let t=Qe(e);return _(t)?(t=class extends we{constructor(e){super(),H(e)&&e(this)}},Je(e,t),t):t}function _n(e){const{type:t}=e;return 2===t||3===t}function Rn(e,t){return e.key===t.key&&e.sel===t.sel}function Ln(e,t){return"input"===e&&("value"===t||"checked"===t)}function Dn(e,t){const{props:n}=t.data;if(_(n))return;const r=R(e)?se:e.data.props;if(r===n)return;const o=R(e),{elm:i,sel:l}=t;for(const e in n){const t=n[e];(o||t!==(Ln(l,e)?Te(i,e):r[e]))&&xe(i,e,t)}}const Hn=r(null);function In(e){if(null==e)return se;e=F(e)?e:e+"";let t=Hn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===N.call(e,n)&&(n>o&&(t[P.call(e,o,n)]=!0),o=n+1);return n>o&&(t[P.call(e,o,n)]=!0),Hn[e]=t,t}function Fn(e){const{elm:t,data:{on:n}}=e;if(!_(n))for(const e in n){const r=n[e];$e(t,e,r)}}function Wn(e,t,n){var r;r=t,tr.has(r)?function(e,t,n){let r=0,o=0,i=e.length-1,l=e[0],s=e[i];const c=t.length-1;let a,u,d,f,h=c,p=t[0],m=t[h],g=!1;for(;r<=i&&o<=h;)zn(l)?zn(s)?zn(p)?zn(m)?Rn(l,p)?(jn(l,p),l=e[++r],p=t[++o]):Rn(s,m)?(jn(s,m),s=e[--i],m=t[--h]):Rn(l,m)?(jn(l,m),Jn(l.elm,n,ke(s.elm)),l=e[++r],m=t[--h]):Rn(s,p)?(jn(s,p),Jn(p.elm,n,l.elm),s=e[--i],p=t[++o]):(void 0===a&&(a=nr(e,r,i)),u=a[p.key],_(u)?(Bn(p,n,l.elm),p=t[++o]):(d=e[u],zn(d)&&(d.sel!==p.sel?Bn(p,n,l.elm):(jn(d,p),g||(g=!0,e=[...e]),e[u]=void 0,Jn(d.elm,n,l.elm))),p=t[++o])):m=t[--h]:p=t[++o]:s=e[--i]:l=e[++r];if(r<=i||o<=h)if(r>i){let e,r=h;do{e=t[++r]}while(!zn(e)&&r<c);f=zn(e)?e.elm:null,Vn(t,n,f,o,h+1)}else Gn(e,n,!0,r,i+1)}(e,t,n):function(e,t,n){const r=e.length,o=t.length;if(0===r)return void Vn(t,n,null);if(0===o)return void Gn(e,n,!0);let i=null;for(let r=o-1;r>=0;r-=1){const o=e[r],l=t[r];l!==o&&(zn(o)?zn(l)?(jn(o,l),i=l.elm):Kn(o,n,!0):zn(l)&&(Bn(l,n,i),i=l.elm))}}(e,t,n)}function jn(e,t){if(e!==t)switch(t.type){case 0:case 1:!function(e,t){t.elm=e.elm,t.text!==e.text&&Yn(t)}(e,t);break;case 2:!function(e,t){const n=t.elm=e.elm;Zn(e,t),Wn(e.children,t.children,n)}(e,t);break;case 3:!function(e,t){const n=t.elm=e.elm,r=t.vm=e.vm;Zn(e,t),_(r)||er(t,r);Wn(e.children,t.children,n),_(r)||zr(r)}(e,t)}}function Bn(e,t,n){switch(e.type){case 0:!function(e,t,n){const{owner:r}=e,o=e.elm=Ee(e.text);Xn(o,r),Jn(o,t,n)}(e,t,n);break;case 1:!function(e,t,n){const{owner:r}=e,o=e.elm=Me(e.text);Xn(o,r),Jn(o,t,n)}(e,t,n);break;case 2:!function(e,t,n){const{sel:r,owner:o,data:{svg:i}}=e,l=L(i)?J:void 0,s=Ce(r,l);Xn(s,o),function(e,t){const{owner:n}=t;if(qn(e,n),1===n.shadowMode){const{data:{context:r}}=t,{stylesheetToken:o}=n.context;_(r)||_(r.lwc)||"manual"!==r.lwc.dom||function(e){e.$domManual$=!0}(e),_(o)||Un(e,o)}}(s,e),e.elm=s,Zn(null,e),Jn(s,t,n),Vn(e.children,s,null)}(e,t,n);break;case 3:!function(e,t,n){const{sel:r,owner:o}=e,i=$n(r);let l;const s=new i((t=>{l=function(e,t){let n=Zr(e);if(!_(n))return n;const{sel:r,mode:o,ctor:i,owner:l}=t;if(qn(e,l),1===l.shadowMode){const{stylesheetToken:t}=l.context;_(t)||Un(e,t)}return n=Yr(e,i,{mode:o,owner:l,tagName:r}),n}(t,e)}));if(Xn(s,o),e.elm=s,e.vm=l,l)er(e,l);else if(e.ctor!==i)throw new TypeError("Incorrect Component Constructor");Zn(null,e),Jn(s,t,n),l&&oo(l);Vn(e.children,s,null),l&&function(e){eo(e)}(l)}(e,t,n)}}function Vn(e,t,n,r=0,o=e.length){for(;r<o;++r){const o=e[r];zn(o)&&Bn(o,t,n)}}function Kn(e,t,n=!1){const{type:r,elm:o}=e;switch(n&&Qn(o,t),r){case 2:Gn(e.children,o);break;case 3:{const{vm:t}=e;_(t)||function(e){Xr(e)}(t)}}}function Gn(e,t,n=!1,r=0,o=e.length){for(;r<o;++r){const o=e[r];zn(o)&&Kn(o,t,n)}}function zn(e){return null!=e}function Un(e,t){e.$shadowToken$=t}function qn(e,t){const{cmpTemplate:n,context:r}=t,o=null==n?void 0:n.stylesheetToken;!_(o)&&r.hasScopedStyles&&Le(e).add(o)}function Xn(e,t){const{renderRoot:n,renderMode:r,shadowMode:o}=t;ge&&(1!==o&&0!==r||(e.$shadowResolver$=n.$shadowResolver$))}function Yn(e){const{elm:t,text:n}=e;Oe(t,n)}function Jn(e,t,n){be(e,t,n)}function Qn(e,t){ve(e,t)}function Zn(e,t){R(e)&&(Fn(t),function(e){const{elm:t,data:{classMap:n}}=e;if(_(n))return;const r=Le(t);for(const e in n)r.add(e)}(t),function(e){const{elm:t,data:{styleDecls:n}}=e;if(!_(n))for(let e=0;e<n.length;e++){const[r,o,i]=n[e];De(t,r,o,i)}}(t)),function(e,t){const{elm:n,data:{className:r}}=t,o=R(e)?void 0:e.data.className;if(o===r)return;const i=Le(n),l=In(r),s=In(o);let c;for(c in s)_(l[c])&&i.remove(c);for(c in l)_(s[c])&&i.add(c)}(e,t),function(e,t){const{elm:n,data:{style:r}}=t;(R(e)?void 0:e.data.style)!==r&&(F(r)&&""!==r?Ae(n,"style",r):Pe(n,"style"))}(e,t),function(e,t){const{attrs:n}=t.data;if(_(n))return;const r=R(e)?se:e.data.attrs;if(r===n)return;const{elm:o}=t;for(const e in n){const t=n[e];r[e]!==t&&(gt(o,e),58===N.call(e,3)?Ae(o,e,t,"http://www.w3.org/XML/1998/namespace"):58===N.call(e,5)?Ae(o,e,t,"http://www.w3.org/1999/xlink"):R(t)||_(t)?Pe(o,e):Ae(o,e,t),mt())}}(e,t),Dn(e,t)}function er(e,t){const n=e.aChildren||e.children;t.aChildren=n;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var n;const{cmpSlots:o}=e,i=e.cmpSlots=r(null);for(let e=0,r=t.length;e<r;e+=1){const r=t[e];if(R(r))continue;let o="";_n(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const l=i[o]=i[o]||[];_(r.key)||(r.key=`@${o}:${r.key}`),C.call(l,r)}if(D(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void Lr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(_(i[r])||o[r].length!==i[r].length)return void Lr(e);const l=o[r],s=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(l[t]!==s[t])return void Lr(e)}}}(t,n),e.aChildren=n,e.children=ce)}const tr=new WeakMap;function nr(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(zn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}const rr=Symbol.iterator;function or(e,t,n=ce){const r=Sr();const{key:o}=t;return{type:2,sel:e,data:t,children:n,elm:undefined,key:o,owner:r}}function ir(e,t,n,r=ce){const o=Sr(),{key:i}=n;const l={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){C.call(Sr().velements,e)}(l),l}const lr=new Map;let sr=0;function cr(e){var t;return t=e,tr.set(t,1),e}let ar=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const ur=l({s:function(e,t,n,r){_(r)||_(r[e])||0===r[e].length||(n=r[e]);const o=Sr(),{renderMode:i,shadowMode:l}=o;return 0===i?(cr(n),n):(1===l&&cr(n),or("slot",t,n))},h:or,c:ir,i:function(e,t){const n=[];if(cr(n),_(e)||null===e)return n;const r=e[rr]();let o=r.next(),i=0,{value:l,done:s}=o;for(;!1===s;){o=r.next(),s=o.done;const e=t(l,i,0===i,!0===s);m(e)?C.apply(n,e):C.call(n,e),i+=1,l=o.value}return n},f:function(e){const t=e.length,n=[];cr(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?C.apply(n,t):C.call(n,t)}return n},t:function(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:Sr()}},d:function(e){return null==e?"":String(e)},b:function(e){const t=Sr();if(R(t))throw new Error;const n=t;return function(t){Pr(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:Sr()}},dc:function(e,t,n,r=ce){if(null==t)return null;if(!Nn(t))throw new Error(`Invalid LWC Constructor ${B(t)} for custom element <${e}>.`);let o=lr.get(t);return _(o)&&(o=sr++,lr.set(t,o)),ir(e,t,Object.assign(Object.assign({},n),{key:`dc:${o}:${n.key}`}),r)},ti:function(e){return e>0&&!(L(e)||D(e))?0:e},gid:function(e){const t=Sr();if(_(e)||""===e)return e;if(R(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?A.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=Sr();if(_(e)||""===e)return e;if(R(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return ar(e)}});function dr(e){return`${e}-host`}function fr(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let l=e[i];if(m(l))C.apply(r,fr(l,t,n));else{const e=l.$scoped$,i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,s=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(_(o)&&(o=pr(n)),c=R(o)||0===o.shadowMode),C.call(r,l(i,s,c))}}return r}function hr(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return _(n)||0===n.length||(o=fr(n,r,e)),o}function pr(e){let t=e;for(;!R(t);){if(1===t.renderMode)return t;t=t.owner}return t}function mr(e,t){const{renderMode:n,shadowMode:r}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)Xe(t[e]);else{if(pe||ye()){const e=b.call(t,"\n");return o=e,ur.h("style",{key:"style",attrs:{type:"text/css"}},[ur.t(o)])}{const n=function(e){const t=pr(e);return R(t)||1!==t.shadowMode?t:null}(e),r=R(n);for(let e=0;e<t.length;e++)r?Xe(t[e]):Ye(t[e],n.shadowRoot)}}var o;return null}let gr=!1,wr=W;const yr={enableProfiler(){gr=!0},disableProfiler(){gr=!1},attachDispatcher(e){wr=e,this.enableProfiler()},detachDispatcher(){const e=wr;return wr=W,this.disableProfiler(),e}};function br(e,t){gr&&wr(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function vr(e,t){gr&&wr(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Cr(e,t){gr&&wr(e,0,null==t?void 0:t.tagName,null==t?void 0:t.idx,null==t?void 0:t.renderMode,null==t?void 0:t.shadowMode)}function Er(e,t){gr&&wr(e,1,null==t?void 0:t.tagName,null==t?void 0:t.idx,null==t?void 0:t.renderMode,null==t?void 0:t.shadowMode)}let Mr=!1,kr=null;function Sr(){return kr}function Tr(e){kr=e}function xr(e,t){const n=Mr,o=kr;let i=[];return ao(e,e.owner,(()=>{kr=e,br(1,e)}),(()=>{const{component:n,context:o,cmpSlots:l,cmpTemplate:s,tro:c}=e;c.observe((()=>{if(t!==s){if(R(s)||co(e),c=t,!mn.has(c))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: ${B(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=function(e){const{stylesheets:t}=e;if(!_(t))for(let e=0;e<t.length;e++)if(L(t[e].$scoped$))return!0;return!1}(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i}=e,{stylesheets:l,stylesheetToken:s}=t,c=1===o&&1===i,{hasScopedStyles:a}=r;let u,d,f;const{stylesheetToken:h,hasTokenInClass:p,hasTokenInAttribute:m}=r;_(h)||(p&&Le(n).remove(dr(h)),m&&Pe(n,dr(h))),_(l)||0===l.length||(u=s),_(u)||(a&&(Le(n).add(dr(u)),d=!0),c&&(Ae(n,dr(u),""),f=!0)),r.stylesheetToken=u,r.hasTokenInClass=d,r.hasTokenInAttribute=f}(e,t);const n=hr(e,t);o.styleVNode=0===n.length?null:mr(e,n)}var c;e.velements=[],Mr=!0,i=t.call(void 0,ur,n,l,o.tplCache);const{styleVNode:a}=o;R(a)||T.call(i,a)}))}),(()=>{Mr=n,kr=o,vr(1,e)})),i}let Or=null;function Nr(e){return Or===e}function Ar(e,t,n){const{component:r,callHook:o,owner:i}=e;ao(e,i,W,(()=>{o(r,t,n)}),W)}function Pr(e,t,n,r){const{callHook:o,owner:i}=e;ao(e,i,W,(()=>{o(n,t,[r])}),W)}const $r=new Map;function _r(e){return new rt((()=>{const{isDirty:t}=e;D(t)&&(Lr(e),function(e){if(L(pe)||L(e.isScheduled))return;e.isScheduled=!0,0===no.length&&ue(ro);C.call(no,e)}(e))}))}function Rr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Sr();let l,s=!1;return ao(e,o,(()=>{Tr(e)}),(()=>{e.tro.observe((()=>{l=n(r,t),s=!0}))}),(()=>{Tr(i)})),s?xr(e,l):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function Lr(e){e.isDirty=!0}const Dr=new WeakMap;function Hr(e,t){if(!H(t))throw new TypeError;let n=Dr.get(t);return _(n)&&(n=function(n){Pr(e,t,void 0,n)},Dr.set(t,n)),n}const Ir=r(null),Fr=["rendered","connected","disconnected"];function Wr(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 jr=0;const Br=new WeakMap;function Vr(e,t,n=[]){return t.apply(e,n)}function Kr(e,t,n){e[t]=n}function Gr(e,t){return e[t]}function zr(e){eo(e)}function Ur(e){const t=Qr(e);Cr(7,t),1===t.state&&qr(e),oo(t),eo(t),Er(7,t)}function qr(e){Xr(Qr(e))}function Xr(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){D(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=Ir;t&&Wr(e,t);io(e)&&function(e){const{wiredDisconnecting:t}=e.context;ao(e,e,W,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),W)}(e);const{disconnectedCallback:n}=e.def;_(n)||(br(5,e),Ar(e,n),vr(5,e))}(e),lo(e),function(e){const{aChildren:t}=e;so(t)}(e)}}function Yr(e,t,n){const{mode:o,owner:i,tagName:l}=n,s=An(t),c={elm:e,def:s,idx:jr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:o,owner:i,children:ce,aChildren:ce,velements:ce,cmpProps:r(null),cmpFields:r(null),cmpSlots:r(null),oar:r(null),cmpTemplate:null,renderMode:s.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNode:null,tplCache:se,wiredConnecting:ce,wiredDisconnecting:ce},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Vr,setHook:Kr,getHook:Gr};return c.shadowMode=function(e){const{def:t}=e;let n;if(ge)if(0===t.renderMode)n=0;else if(me)if(ie.ENABLE_MIXED_SHADOW_MODE)if("any"===t.shadowSupportMode)n=0;else{const t=function(e){let t=e.owner;for(;!R(t)&&0===t.renderMode;)t=t.owner;return t}(e);n=R(t)||0!==t.shadowMode?1:0}else n=1;else n=1;else n=0;return n}(c),c.tro=_r(c),function(e,t){const n=Or;let r;br(0,e),Or=e;try{const o=new t;if(Or.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(vr(0,e),Or=n,!_(r))throw st(e,r),r}}(c,s.ctor),io(c)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],l=uo.get(i);if(!_(l)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:s}=ho(e,t,l),c=l.dynamic.length>0;C.call(r,(()=>{n.connect(),ie.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),C.call(o,(()=>{n.disconnect(),s()}))}}}(c),c}function Jr(e,t){Br.set(e,t)}function Qr(e){return Br.get(e)}function Zr(e){return Br.get(e)}function eo(e){if(L(e.isDirty)){!function(e,t){const{renderRoot:n,children:r}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&ao(e,e,(()=>{br(2,e)}),(()=>{Wn(r,t,n)}),(()=>{vr(2,e)}));1===e.state&&to(e)}(e,Rr(e))}}function to(e){const{def:{renderedCallback:t}}=e;if(L(pe))return;const{rendered:n}=Ir;n&&Wr(e,n),_(t)||(br(4,e),Ar(e,t),vr(4,e))}let no=[];function ro(){Cr(8);const e=no.sort(((e,t)=>e.idx-t.idx));no=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{eo(r)}catch(r){throw t+1<n&&(0===no.length&&ue(ro),T.apply(no,k.call(e,t+1))),Er(8),r}}Er(8)}function oo(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=Ir;n&&Wr(e,n),io(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;_(r)||(br(3,e),Ar(e,r),vr(3,e))}function io(e){return c(e.def.wire).length>0}function lo(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!_(n)){const e=Zr(n);_(e)||Xr(e)}}}function so(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!R(n)&&!_(n.elm))switch(n.type){case 2:so(n.children);break;case 3:Xr(Qr(n.elm));break}}}function co(e){const{children:t,renderRoot:n}=e;for(let e=0,r=t.length;e<r;e++){const r=t[e];R(r)||_(r.elm)||ve(r.elm,n)}e.children=ce,lo(e),e.velements=ce}function ao(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!_(i)){st(e,i);const n=R(t)?void 0:function(e){let t=e;for(;!R(t);){if(!_(t.def.errorCallback))return t;t=t.owner}}(t);if(_(n))throw i;co(e),br(6,e);Ar(n,n.def.errorCallback,[i,i.wcStack]),vr(6,e)}}}const uo=new Map;class fo extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function ho(e,t,n){const{method:r,adapter:o,configCallback:l,dynamic:s}=n,c=_(r)?function(e,t){const{cmpFields:n}=e;return r=>{r!==e.cmpFields[t]&&(n[t]=r,ot(e,t))}}(e,t):function(e,t){return n=>{ao(e,e.owner,W,(()=>{t.call(e.component,n)}),W)}}(e,r);let a,u;i(c,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),i(c,"$$DeprecatedWiredParamsMetaKey$$",{value:s}),ao(e,e,W,(()=>{u=new o(c)}),W);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=new rt((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,l,(t=>{ao(e,e,W,(()=>{u.update(t,a)}),W)}));return _(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=mo(r);if(_(o))return;const{elm:i,context:{wiredConnecting:l,wiredDisconnecting:s}}=e;C.call(l,(()=>{const e=new fo(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){C.call(s,e)}});Re(i,e)}))}(e,n,(t=>{a!==t&&(a=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const po=new Map;function mo(e){return po.get(e)}function go(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};uo.set(e,o)}function wo(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};uo.set(e,o)}let yo=!1;function bo(e){yo=!1,oo(e),vo(e),yo&&function(e,t){ct("error",e,t)}("Hydration completed with errors.",e)}function vo(e){const t=Rr(e);e.children=t;const n=e.renderRoot;Eo(Ke(n),t,n),to(e)}function Co(e,t){let n;switch(t.type){case 0:n=function(e,t){var n;if(!So(t,e,3))return Mo(e,t);return Oe(e,null!==(n=t.text)&&void 0!==n?n:null),t.elm=e,e}(e,t);break;case 1:n=function(e,t){var n;if(!So(t,e,8))return Mo(e,t);return xe(e,"nodeValue",null!==(n=t.text)&&void 0!==n?n:null),t.elm=e,e}(e,t);break;case 2:n=function(e,t){if(!So(t,e,1)||!To(t,e))return Mo(e,t);t.elm=e;const{context:n}=t.data,r=Boolean(!_(n)&&!_(n.lwc)&&"manual"===n.lwc.dom);if(r){const{props:n}=t.data;_(n)||_(n.innerHTML)||Te(e,"innerHTML")===n.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:he(n,"innerHTML")}))}ko(t),r||Eo(Ke(e),t.children,e,t.owner);return e}(e,t);break;case 3:n=function(e,t){if(!So(t,e,1)||!To(t,e))return Mo(e,t);const{sel:n,mode:r,ctor:o,owner:i}=t,l=Yr(e,o,{mode:r,owner:i,tagName:n});t.elm=e,t.vm=l,er(t,l),ko(t),oo(l),0!==l.renderMode&&Eo(Ke(e),t.children,e);return vo(l),e}(e,t)}return ke(n)}function Eo(e,t,n,r){let o=e,i=null;for(let e=0;e<t.length;e++){const r=t[e];R(r)||(o?(o=Co(o,r),i=r.elm):(yo=!0,Bn(r,n,i),i=r.elm))}if(o){yo=!0;do{const e=o;o=ke(o),Qn(e,n)}while(o)}}function Mo(e,t,n){yo=!0;const r=Te(e,"parentNode");return Bn(t,r,e),Qn(e,r),t.elm}function ko(e){Fn(e),Dn(null,e)}function So(e,t,n){return Te(t,"nodeType")===n}function To(e,t){if(e.sel.toLowerCase()!==Te(t,"tagName").toLowerCase())return!1;const n=function(e,t){const{data:{attrs:n={}}}=e;let r=!0;for(const[e,o]of Object.entries(n)){const n=Ne(t,e);String(o)!==n&&(r=!1)}return r}(e,t),r=function(e,t){const{data:{className:n,classMap:r}}=e;let o=!0;if(_(n)||String(n)===Te(t,"className")){if(!_(r)){const e=Le(t);let n="";for(const t in r)n+=" "+t,e.contains(t)||(o=!1);n.trim(),e.length>f(r).length&&(o=!1)}}else o=!1;return o}(e,t),o=function(e,t){const{data:{style:n,styleDecls:r}}=e,o=Ne(t,"style")||"";let i=!0;if(_(n)||n===o){if(!_(r)){const e=function(e){const t={},n=e.split(de);for(const e of n)if(e){const[n,r]=e.split(fe);void 0!==n&&void 0!==r&&(t[n.trim()]=r.trim())}return t}(o),t=[];for(let n=0,o=r.length;n<o;n++){const[o,l,s]=r[n];t.push(`${o}: ${l+(s?" important!":"")}`);const c=e[o];_(c)?i=!1:c.startsWith(l)?s&&!c.endsWith("!important")&&(i=!1):i=!1}f(e).length>r.length&&(i=!1),b.call(t,";")}}else i=!1;return i}(e,t);return n&&r&&o}let xo=!1;const Oo=r(null),No=document.head||document.body||document,Ao=H(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),Po=Ao&&s(document.adoptedStyleSheets,"length").writable,$o=r(null),_o=r(null),Ro=new WeakMap;let Lo,Do,Ho;if(function(){if("undefined"==typeof customElements)return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(1e6*Math.random()),t),new t,!0}catch(e){return!1}}())Lo=customElements.get.bind(customElements),Do=customElements.define.bind(customElements),Ho=HTMLElement;else{const e=r(null),t=new WeakMap;Do=function(n,r){if(n!==$.call(n)||e[n])throw new TypeError("Invalid Registration");e[n]=r,t.set(r,n)},Lo=function(t){return e[t]},Ho=function e(){if(!(this instanceof e))throw new TypeError("Invalid Invocation");const{constructor:n}=this,r=t.get(n);if(!r)throw new TypeError("Invalid Construction");const o=document.createElement(r);return p(o,n.prototype),o},Ho.prototype=HTMLElement.prototype}let Io=!1;function Fo(e){Io=e}const Wo=U.$isNativeShadowRootDefined$,jo=u.call(Element.prototype,"$shadowToken$");function Bo(e,t,n){const r=Yr(e,t,{mode:"open",owner:null,tagName:e.tagName.toLowerCase()});for(const[t,r]of Object.entries(n))e[t]=r;return r}function Vo(e,t,n={}){if(!(e instanceof Element))throw new TypeError(`"hydrateComponent" expects a valid DOM element as the first parameter but instead received ${e}.`);if(!H(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!I(n)||R(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(Zr(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{Fo(!0);bo(Bo(e,t,n)),Fo(!1)}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!R(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!R(e.firstChild);)e.removeChild(e.firstChild)}(e,t),Bo(e,t,n),Fo(!1),Ur(e)}finally{Fo(!1)}}Se=function(e,t){return Io?e.shadowRoot:e.attachShadow(t)},Me=function(e){return document.createComment(e)},Ce=function(e,t){return _(t)?document.createElement(e):document.createElementNS(t,e)},Ee=function(e){return document.createTextNode(e)},Je=Do,Re=function(e,t){return e.dispatchEvent(t)},Ne=function(e,t,n){return _(n)?e.getAttribute(t):e.getAttributeNS(n,t)},He=function(e){return e.getBoundingClientRect()},Ve=function(e){return e.childNodes},Be=function(e){return e.children},Le=function(e){return e.classList},Qe=Lo,je=function(e,t){return e.getElementsByClassName(t)},We=function(e,t){return e.getElementsByTagName(t)},Ke=function(e){return e.firstChild},Ge=function(e){return e.firstElementChild},ze=function(e){return e.lastChild},Ue=function(e){return e.lastElementChild},Te=function(e,t){return e[t]},we=Ho,be=function(e,t,n){t.insertBefore(e,n)},Xe=function(e){if(!_(Oo[e]))return;Oo[e]=!0;const t=document.createElement("style");t.type="text/css",t.textContent=e,No.appendChild(t)},Ye=function(e,t){Ao?function(e,t){let n=_o[e];_(n)&&(n=new CSSStyleSheet,n.replaceSync(e),_o[e]=n);const{adoptedStyleSheets:r}=t;r.includes(n)||(Po?r.push(n):t.adoptedStyleSheets=[...r,n])}(e,t):function(e,t){let n=Ro.get(t);if(_(n)&&(n=r(null),Ro.set(t,n)),n[e])return;n[e]=!0;let o=$o[e];_(o)?(o=document.createElement("style"),o.type="text/css",o.textContent=e,$o[e]=o):o=o.cloneNode(!0),t.appendChild(o)}(e,t)},qe=function(e){return e.isConnected},ye=function(){return Io},me=Wo,ge=jo,ke=function(e){return e.nextSibling},Ie=function(e,t){return e.querySelector(t)},Fe=function(e,t){return e.querySelectorAll(t)},ve=function(e,t){t.removeChild(e)},Pe=function(e,t,n){_(n)?e.removeAttribute(t):e.removeAttributeNS(n,t)},_e=function(e,t,n,r){e.removeEventListener(t,n,r)},Ae=function(e,t,n,r){return _(r)?e.setAttribute(t,n):e.setAttributeNS(r,t,n)},De=function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},xe=function(e,t,n){e[t]=n},Oe=function(e,t){e.nodeValue=t},pe=!1,$e=function(e,t,n,r){e.addEventListener(t,n,r)};const Ko=new WeakSet;function Go(e){const t=function(e){return An(e).bridge}(e);return class extends t{constructor(){super(),this.isConnected?(Vo(this,e,{}),Ko.add(this)):Yr(this,e,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){Ko.has(this)?Ko.delete(this):Ur(this)}disconnectedCallback(){qr(this)}}}const zo=Node,Uo=new WeakMap,qo=new WeakMap;function Xo(e,t){const n=t.get(e);return _(n)||n(e),e}const{appendChild:Yo,insertBefore:Jo,removeChild:Qo,replaceChild:Zo}=zo.prototype;n(zo.prototype,{appendChild(e){return Xo(Yo.call(this,e),Uo)},insertBefore(e,t){return Xo(Jo.call(this,e,t),Uo)},removeChild(e){return Xo(Qo.call(this,e),qo)},replaceChild(e,t){const n=Zo.call(this,e,t);return Xo(n,qo),Xo(e,Uo),n}});const ei=Node;const ti=new Map;return i(Qt,"CustomElementConstructor",{get(){return function(e){if(e===Qt)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=ti.get(e);return _(t)&&(t=Go(e),ti.set(e,t)),t}(this)}}),l(Qt),h(Qt.prototype),e.LightningElement=Qt,e.__unstable__ProfilerControl=yr,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=mo(e);if(!_(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){po.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((()=>{_(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!I(t)||R(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${B(t)}".`);const n=t.is;if(!H(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const r=$n(e);let o=!1;const i=new r((r=>{Yr(r,n,{tagName:e,mode:"closed"!==t.mode?"open":"closed",owner:null}),Uo.set(r,Ur),qo.set(r,qr),o=!0}));return o||console.error(`Unexpected tag name "${e}". This name is a registered custom element, preventing LWC to upgrade the element.`),i},e.getComponentConstructor=function(e){let t=null;if(e instanceof HTMLElement){const n=Zr(e);_(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=An(e),{ctor:n,name:r,props:o,propsConfig:i,methods:l}=t,s={};for(const e in o)s[e]={config:i[e]||0,type:"any",attr:Y(e)};const c={};for(const e in l)c[e]=l[e].value;return{ctor:n,name:r,props:s,methods:c}},e.hydrateComponent=Vo,e.isComponentConstructor=Nn,e.isNodeFromTemplate=function(e){if(D(e instanceof ei))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&D(u.call(a(t),"synthetic")))||jo&&!_(e.$shadowResolver$)},e.readonly=function(e){return Yt.getReadOnlyProxy(e)},e.register=function(e){for(let t=0;t<Fr.length;++t){const n=Fr[t];if(n in e){let t=Ir[n];_(t)&&(Ir[n]=t=[]),C.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return H(e)&&$r.set(e,t),e},e.registerDecorators=function(e,t){const n=e.prototype,{publicProps:o,publicMethods:l,wire:c,track:a,fields:u}=t,d=r(null),f=r(null),h=r(null),p=r(null),m=r(null),g=r(null);let w;if(!_(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=s(n,e),t.config>0){if(_(w))throw new Error;w=dn(e,w)}else w=_(w)||_(w.get)?an(e):dn(e,w);f[e]=w,i(n,e,w)}if(_(l)||x.call(l,(e=>{if(w=s(n,e),_(w))throw new Error;d[e]=w})),!_(c))for(const e in c){const{adapter:t,method:r,config:o,dynamic:l=[]}=c[e];if(w=s(n,e),1===r){if(_(w))throw new Error;h[e]=w,go(w,t,o,l)}else w=sn(e),p[e]=w,wo(w,t,o,l),i(n,e,w)}if(!_(a))for(const e in a)w=s(n,e),w=cn(e),i(n,e,w);if(!_(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=s(n,t);const r=!_(o)&&t in o,i=!_(a)&&t in a;r||i||(m[t]=fn(t))}return function(e,t){hn.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return mn.add(e),e},e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(_(oe[e])){const n=f(oe).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=ie[e];if(!_(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}".`);i(ie,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)}},e.setFeatureFlagForTest=function(e,t){},e.setHooks=function(e){var n;t.isFalse(xo,"Hooks are already overridden, only one definition is allowed."),xo=!0,n=e.sanitizeHtmlContent,ar=n},e.swapComponent=function(e,t){if(!ie.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.swapStyle=function(e,t){if(!ie.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.swapTemplate=function(e,t){if(!ie.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},e.track=function(e){if(1===arguments.length)return Yt.getProxy(e);throw new Error},e.unwrap=function(e){return Yt.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
1
+ var LWC=function(a){"use strict";var ao=Object.freeze({__proto__:null,invariant:function(a,b){if(!a)throw new Error(`Invariant Violation: ${b}`)},isTrue:function(a,b){if(!a)throw new Error(`Assert Violation: ${b}`)},isFalse:function(a,b){if(a)throw new Error(`Assert Violation: ${b}`)},fail:function(a){throw new Error(a)}});const{assign:r,create:b,defineProperties:s,defineProperty:t,freeze:h,getOwnPropertyDescriptor:D,getOwnPropertyNames:E,getPrototypeOf:ap,hasOwnProperty:F,isFrozen:aq,keys:u,seal:e,setPrototypeOf:ar}=Object,{isArray:G}=Array,{filter:as,find:at,indexOf:au,join:av,map:aw,push:ax,reduce:ay,reverse:az,slice:aA,splice:aB,unshift:aC,forEach:v}=Array.prototype,{fromCharCode:aD}=String,{charCodeAt:aE,replace:aF,slice:aG,toLowerCase:aH}=String.prototype;function aI(a){return void 0===a}function aJ(a){return null===a}function aK(a){return!0===a}function aL(a){return!1===a}function H(a){return"function"==typeof a}function aM(a){return"object"==typeof a}function aN(a){return"string"==typeof a}function I(){}const aO={}.toString;function aP(a){return a&&a.toString?G(a)?av.call(aw.call(a,aP),","):a.toString():"object"==typeof a?aO.call(a):a+""}function aQ(a,c){do{const b=D(a,c);if(!aI(b))return b;a=ap(a)}while(null!==a)}const aR=["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:aS,AriaPropNameToAttrNameMap:w}=(()=>{const a=b(null),c=b(null);return v.call(aR,b=>{const d=aH.call(aF.call(b,/^aria/,()=>"aria-"));a[d]=b,c[b]=d}),{AriaAttrNameToPropNameMap:a,AriaPropNameToAttrNameMap:c}})(),f=function(){if("object"==typeof globalThis)return globalThis;let a;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),a=__magic__,delete Object.prototype.__magic__}catch(b){}finally{void 0===a&&(a=window)}return a}(),aT="$shadowResolver$",aU="$scoped$",aV=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"],]),aW=new Map;function aX(a){const e=w[a];if(!aI(e))return e;const f=aV.get(a);if(!aI(f))return f;const g=aW.get(a);if(!aI(g))return g;let b="";for(let d=0,h=a.length;d<h;d++){const c=aE.call(a,d);c>=65&&c<=90?b+="-"+aD(c+32):b+=aD(c)}return aW.set(a,b),b}function J(a){return void 0===Object.getOwnPropertyDescriptor(Element.prototype,a)}const aY=new WeakMap;function aZ(b){let a=aY.get(b);return void 0===a&&(a={},aY.set(b,a)),a}function K(a){var b,c;const d=w[a],e=(b=a,c=d,{get(){const a=aZ(this);return F.call(a,b)?a[b]:this.hasAttribute(c)?this.getAttribute(c):null},set(a){var d;const e=null==(d=a)?null:String(d),f=aZ(this);f[b]=e,null===a?this.removeAttribute(c):this.setAttribute(c,a)},configurable:!0,enumerable:!0});Object.defineProperty(Element.prototype,a,e)}const x=u(w);for(let i=0,L=x.length;i<L;i+=1){const y=x[i];J(y)&&K(y)}const a$={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_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null};f.lwcRuntimeFlags||Object.defineProperty(f,"lwcRuntimeFlags",{value:b(null)});const a_=f.lwcRuntimeFlags;let a0=[];const d=e(b(null)),a1=e([]);function a2(){const b=a0;a0=[];for(let a=0,c=b.length;a<c;a+=1)b[a]()}function a3(a){0===a0.length&&Promise.resolve().then(a2),ax.call(a0,a)}const a4=/;(?![^(]*\))/g,a5=/:(.+)/;let M,N,O,P,a6,a7,a8,a9,ba,bb,bc,bd,be,bf,bg,bh,bi,bj,bk,bl,bm,Q,bn,bo,bp,bq,br,bs,bt,bu,bv,bw,bx,by,R,bz,bA,S,T;const bB=new WeakMap;let bC=null;function U(d,e){const c=bB.get(d);if(!aI(c)){const a=c[e];if(!aI(a))for(let b=0,f=a.length;b<f;b+=1){const g=a[b];g.notify()}}}function V(f,d){if(null===bC)return;const c=bC,e=function(c){let a=bB.get(c);if(aI(a)){const d=b(null);a=d,bB.set(c,d)}return a}(f);let a=e[d];if(aI(a))a=[],e[d]=a;else if(a[0]===c)return;-1===au.call(a,c)&&c.link(a)}class W{constructor(a){this.listeners=[],this.callback=a}observe(b){const c=bC;bC=this;let a;try{b()}catch(d){a=Object(d)}finally{if(bC=c,void 0!==a)throw a}}reset(){const{listeners:a}=this,c=a.length;if(c>0){for(let b=0;b<c;b+=1){const d=a[b],e=au.call(a[b],this);aB.call(d,e,1)}a.length=0}}notify(){this.callback.call(void 0,this)}link(a){ax.call(a,this),ax.call(this.listeners,a)}}function bD(a,b){U(a.component,b)}function bE(a,b){V(a.component,b)}function bF(a){return`<${aH.call(a.tagName)}>`}function bG(b,a){if(!aq(a)&&aI(a.wcStack)){const c=function(c){const b=[];let a=c;for(;!aJ(a);)ax.call(b,bF(a)),a=a.owner;return b.reverse().join("\n ")}(b);t(a,"wcStack",{get:()=>c})}}const z="undefined"!=typeof HTMLElement?HTMLElement:function(){},bH=z.prototype;function g(a){return`Using the \`${a}\` 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.`}r(b(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:g("offsetHeight")},offsetLeft:{readOnly:!0,error:g("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:g("offsetTop")},offsetWidth:{readOnly:!0,error:g("offsetWidth")},role:{attribute:"role"}});let bI=null,bJ;function bK(a,b){bI=null,bJ=void 0}function bL(a,b){bI=a,bJ=b}const j=b(null);v.call(u(w),a=>{const b=aQ(bH,a);aI(b)||(j[a]=b)}),v.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title",],a=>{const b=aQ(bH,a);aI(b)||(j[a]=b)});const{isArray:bM}=Array,{prototype:bN,getPrototypeOf:bO,create:bP,defineProperty:bQ,isExtensible:bR,getOwnPropertyDescriptor:bS,getOwnPropertyNames:bT,getOwnPropertySymbols:bU,preventExtensions:bV,hasOwnProperty:bW}=Object,{push:bX,concat:bY}=Array.prototype;function bZ(a){return void 0===a}function b$(a){return"function"==typeof a}const b_=new WeakMap;function b0(a,b){b_.set(a,b)}const b1=a=>b_.get(a)||a;class A{constructor(a,b){this.originalTarget=b,this.membrane=a}wrapDescriptor(a){if(bW.call(a,"value"))a.value=this.wrapValue(a.value);else{const{set:b,get:c}=a;bZ(c)||(a.get=this.wrapGetter(c)),bZ(b)||(a.set=this.wrapSetter(b))}return a}copyDescriptorIntoShadowTarget(c,a){const{originalTarget:d}=this,b=bS(d,a);if(!bZ(b)){const e=this.wrapDescriptor(b);bQ(c,a,e)}}lockShadowTarget(a){const{originalTarget:c}=this,d=bY.call(bT(c),bU(c));d.forEach(b=>{this.copyDescriptorIntoShadowTarget(a,b)});const{membrane:{tagPropertyKey:b}}=this;bZ(b)||bW.call(a,b)||bQ(a,b,bP(null)),bV(a)}apply(a,b,c){}construct(a,b,c){}get(e,a){const{originalTarget:b,membrane:{valueObserved:c}}=this,d=b[a];return c(b,a),this.wrapValue(d)}has(e,a){const{originalTarget:b,membrane:{tagPropertyKey:c,valueObserved:d}}=this;return d(b,a),a in b||a===c}ownKeys(d){const{originalTarget:a,membrane:{tagPropertyKey:b}}=this,c=bZ(b)||bW.call(a,b)?[]:[b];return bX.apply(c,bT(a)),bX.apply(c,bU(a)),c}isExtensible(a){const{originalTarget:b}=this;return!!bR(a)&&(!!bR(b)||(this.lockShadowTarget(a),!1))}getPrototypeOf(b){const{originalTarget:a}=this;return bO(a)}getOwnPropertyDescriptor(c,b){const{originalTarget:d,membrane:{valueObserved:f,tagPropertyKey:e}}=this;f(d,b);let a=bS(d,b);if(bZ(a)){if(b!==e)return;return bQ(c,e,a={value:void 0,writable:!1,configurable:!1,enumerable:!1}),a}return!1===a.configurable&&this.copyDescriptorIntoShadowTarget(c,b),this.wrapDescriptor(a)}}const b2=new WeakMap,b3=new WeakMap,b4=new WeakMap,b5=new WeakMap;class b6 extends A{wrapValue(a){return this.membrane.getProxy(a)}wrapGetter(a){const c=b2.get(a);if(!bZ(c))return c;const d=this,b=function(){return d.wrapValue(a.call(b1(this)))};return b2.set(a,b),b4.set(b,a),b}wrapSetter(a){const c=b3.get(a);if(!bZ(c))return c;const b=function(b){a.call(b1(this),b1(b))};return b3.set(a,b),b5.set(b,a),b}unwrapDescriptor(a){if(bW.call(a,"value"))a.value=b1(a.value);else{const{set:b,get:c}=a;bZ(c)||(a.get=this.unwrapGetter(c)),bZ(b)||(a.set=this.unwrapSetter(b))}return a}unwrapGetter(a){const c=b4.get(a);if(!bZ(c))return c;const d=this,b=function(){return b1(a.call(d.wrapValue(this)))};return b2.set(b,a),b4.set(a,b),b}unwrapSetter(a){const c=b5.get(a);if(!bZ(c))return c;const d=this,b=function(b){a.call(d.wrapValue(this),d.wrapValue(b))};return b3.set(b,a),b5.set(a,b),b}set(f,a,c){const{originalTarget:b,membrane:{valueMutated:d}}=this,e=b[a];return e!==c?(b[a]=c,d(b,a)):"length"===a&&bM(b)&&d(b,a),!0}deleteProperty(d,a){const{originalTarget:b,membrane:{valueMutated:c}}=this;return delete b[a],c(b,a),!0}setPrototypeOf(a,b){}preventExtensions(a){if(bR(a)){const{originalTarget:b}=this;if(bV(b),bR(b))return!1;this.lockShadowTarget(a)}return!0}defineProperty(d,a,c){const{originalTarget:b,membrane:{valueMutated:e,tagPropertyKey:f}}=this;return!(a!==f||bW.call(b,a))||(bQ(b,a,this.unwrapDescriptor(c)),!1===c.configurable&&this.copyDescriptorIntoShadowTarget(d,a),e(b,a),!0)}}const b7=new WeakMap,b8=new WeakMap;class b9 extends A{wrapValue(a){return this.membrane.getReadOnlyProxy(a)}wrapGetter(a){const b=b7.get(a);if(!bZ(b))return b;const d=this,c=function(){return d.wrapValue(a.call(b1(this)))};return b7.set(a,c),c}wrapSetter(a){const b=b8.get(a);if(!bZ(b))return b;const c=function(a){};return b8.set(a,c),c}set(a,b,c){return!1}deleteProperty(a,b){return!1}setPrototypeOf(a,b){}preventExtensions(a){return!1}defineProperty(a,b,c){return!1}}function ca(a){return bM(a)?[]:{}}const X=Symbol.for("@@lockerLiveValue"),cb=new class{constructor(d={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:a,valueObserved:b,valueIsObservable:c,tagPropertyKey:e}=d;this.valueMutated=b$(a)?a:(a,b)=>{},this.valueObserved=b$(b)?b:(a,b)=>{},this.valueIsObservable=b$(c)?c:function(a){if(null===a)return!1;if("object"!=typeof a)return!1;if(bM(a))return!0;const b=bO(a);return b===bN||null===b||null===bO(b)},this.tagPropertyKey=e}getProxy(b){const a=b1(b);return this.valueIsObservable(a)?this.readOnlyObjectGraph.get(a)===b?b:this.getReactiveHandler(a):a}getReadOnlyProxy(a){return(a=b1(a),this.valueIsObservable(a))?this.getReadOnlyHandler(a):a}unwrapProxy(a){return b1(a)}getReactiveHandler(a){let b=this.reactiveObjectGraph.get(a);if(bZ(b)){const c=new b6(this,a);b0(b=new Proxy(ca(a),c),a),this.reactiveObjectGraph.set(a,b)}return b}getReadOnlyHandler(a){let b=this.readOnlyObjectGraph.get(a);if(bZ(b)){const c=new b9(this,a);b0(b=new Proxy(ca(a),c),a),this.readOnlyObjectGraph.set(a,b)}return b}}({valueObserved:V,valueMutated:U,tagPropertyKey:X});function Y(f,a){const{get:b,set:c,enumerable:d,configurable:e}=a;if(!H(b))throw new TypeError;if(!H(c))throw new TypeError;return{enumerable:d,configurable:e,get(){const a=dT(this);if(!dt(a))return bE(a,f),b.call(a.elm)},set(b){const a=dT(this);return b!==a.cmpProps[f]&&(a.cmpProps[f]=b,bD(a,f)),c.call(a.elm,b)}}}const c=function(){if(aJ(ds))throw new ReferenceError("Illegal constructor");const a=ds,{def:c,elm:b}=a,{bridge:d}=c;if(ar(b,d.prototype),a.component=this,1===arguments.length){const{callHook:e,setHook:f,getHook:g}=arguments[0];a.callHook=e,a.setHook=f,a.getHook=g}return this[X]=void 0,dS(this,a),dS(b,a),1===a.renderMode?a.renderRoot=cc(a):a.renderRoot=b,this};function cc(a){const{elm:c,mode:d,shadowMode:e,def:{ctor:f}}=a,b=bd(c,{["$$lwc-synthetic-mode"]:1===e,delegatesFocus:Boolean(f.delegatesFocus),mode:d});return a.shadowRoot=b,dS(b,a),b}c.prototype={constructor:c,dispatchEvent(a){const{elm:b}=dT(this);return bm(b,a)},addEventListener(b,c,d){const a=dT(this),{elm:e}=a,f=dB(a,c);bk(e,b,f,d)},removeEventListener(b,c,d){const a=dT(this),{elm:e}=a,f=dB(a,c);bl(e,b,f,d)},hasAttribute(a){const{elm:b}=dT(this);return!aJ(bh(b,a))},hasAttributeNS(a,b){const{elm:c}=dT(this);return!aJ(bh(c,b,a))},removeAttribute(a){const{elm:b}=dT(this);bL(b,a),bj(b,a),bK()},removeAttributeNS(c,a){const{elm:b}=dT(this);bL(b,a),bj(b,a,c),bK()},getAttribute(a){const{elm:b}=dT(this);return bh(b,a)},getAttributeNS(a,b){const{elm:c}=dT(this);return bh(c,b,a)},setAttribute(a,c){const d=dT(this),{elm:b}=d;bL(b,a),bi(b,a,c),bK()},setAttributeNS(c,a,d){const e=dT(this),{elm:b}=e;bL(b,a),bi(b,a,d,c),bK()},getBoundingClientRect(){const a=dT(this),{elm:b}=a;return bo(b)},get isConnected(){const{elm:Z}=dT(this);return R(Z)},get classList(){const $=dT(this),{elm:_}=$;return Q(_)},get template(){const aa=dT(this);return aa.shadowRoot},get shadowRoot(){return null},render(){const a=dT(this);return a.def.template},toString(){const a=dT(this);return`[object ${a.def.name}]`}};const k=b(null);function cd(a){switch(a){case"children":return bt;case"childNodes":return bu;case"firstChild":return bv;case"firstElementChild":return bw;case"lastChild":return bx;case"lastElementChild":return by}}for(const ab of["children","childNodes","firstChild","firstElementChild","lastChild","lastElementChild",])k[ab]={get(){const a=dT(this),{elm:b}=a;return cd(ab)(b)},configurable:!0,enumerable:!0};function ce(a){switch(a){case"getElementsByClassName":return bs;case"getElementsByTagName":return br;case"querySelector":return bp;case"querySelectorAll":return bq}}for(const ac of["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll",])k[ac]={value(a){const b=dT(this),{elm:c}=b;return ce(ac)(c,a)},configurable:!0,enumerable:!0,writable:!0};s(c.prototype,k);const l=b(null);for(const m in j)l[m]=Y(m,j[m]);function cf(a){return{get(){const b=dT(this);return bE(b,a),b.cmpFields[a]},set(c){const b=dT(this);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,bD(b,a))},enumerable:!0,configurable:!0}}function cg(a){return{get(){const b=dT(this);return bE(b,a),b.cmpFields[a]},set(d){const b=dT(this),c=cb.getProxy(d);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,bD(b,a))},enumerable:!0,configurable:!0}}function ch(a){return{get(){const b=dT(this);if(!dt(b))return bE(b,a),b.cmpProps[a]},set(c){const b=dT(this);b.cmpProps[a]=c,bD(b,a)},enumerable:!0,configurable:!0}}s(c.prototype,l),t(c,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class ci extends W{constructor(a,b){super(()=>{aL(this.debouncing)&&(this.debouncing=!0,a3(()=>{if(aK(this.debouncing)){const{value:c}=this,{isDirty:d,component:e,idx:f}=a;b.call(e,c),this.debouncing=!1,aK(a.isDirty)&&aL(d)&&f>0&&dK(a)}}))}),this.debouncing=!1}reset(a){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=a)}}function cj(e,a){const{get:b,set:f,enumerable:c,configurable:d}=a;if(!H(b))throw new Error;return{get(){return b.call(this)},set(c){const b=dT(this);if(f)if(a_.ENABLE_REACTIVE_SETTER){let a=b.oar[e];aI(a)&&(a=b.oar[e]=new ci(b,f)),a.reset(c),a.observe(()=>{f.call(this,c)})}else f.call(this,c)},enumerable:c,configurable:d}}function ck(a){return{get(){const b=dT(this);return bE(b,a),b.cmpFields[a]},set(c){const b=dT(this);c!==b.cmpFields[a]&&(b.cmpFields[a]=c,bD(b,a))},enumerable:!0,configurable:!0}}const cl=new Map,cm={apiMethods:d,apiFields:d,apiFieldsConfig:d,wiredMethods:d,wiredFields:d,observedFields:d},ad=new Set;function B(){return[]}ad.add(B);const cn=b(null),co=b(null);function cp(b){let a=cn[b];return aI(a)&&(a=cn[b]=function(){const a=dT(this),{getHook:c}=a;return c(a.component,b)}),a}function cq(b){let a=co[b];return aI(a)&&(a=co[b]=function(a){const c=dT(this),{setHook:d}=c;a=cb.getReadOnlyProxy(a),d(c.component,b,a)}),a}function cr(a){return function(){const b=dT(this),{callHook:c,component:d}=b,e=d[a];return c(b.component,e,aA.call(arguments))}}function ae(c,h,i){var l,m;let a;H(c)?a=class extends c{}:(ar(a=function(){throw new TypeError("Illegal constructor")},c),ar(a.prototype,c.prototype),t(a.prototype,"constructor",{writable:!0,configurable:!0,value:a}));const j=b(null),{attributeChangedCallback:n}=c.prototype,{observedAttributes:q=[]}=c,e=b(null);for(let f=0,o=h.length;f<o;f+=1){const d=h[f];j[aX(d)]=d,e[d]={get:cp(d),set:cq(d),enumerable:!0,configurable:!0}}for(let g=0,p=i.length;g<p;g+=1){const k=i[g];e[k]={value:cr(k),writable:!0,configurable:!0}}return e.attributeChangedCallback={value:(l=j,m=n,function(a,f,b){var c,d;if(f===b)return;const e=l[a];if(aI(e)){aI(m)||m.apply(this,arguments);return}c=this,d=a,(c!==bI||d!==bJ)&&(this[e]=b)})},t(a,"observedAttributes",{get:()=>[...q,...u(j)]}),s(a.prototype,e),a}const n=ae(z,E(j),[]);function cs(b){const a=b();return(null==a?void 0:a.__esModule)?a.default:a}function ct(a){return H(a)&&F.call(a,"__circular__")}h(n),e(n.prototype);const cu=new WeakMap;function af(b){if(!H(b))return!1;if(b.prototype instanceof c)return!0;let a=b;do{if(ct(a)){const d=cs(a);if(d===a)return!0;a=d}if(a===c)return!0}while(!aJ(a)&&(a=ap(a)))return!1}function cv(a){let d=cu.get(a);if(aI(d)){if(ct(a)){const e=cs(a);return d=cv(e),cu.set(a,d),d}if(!af(a))throw new TypeError(`${a} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);d=function(d){const{shadowSupportMode:j,renderMode:k}=d,t=function(b){const a=cl.get(b);return aI(a)?cm:a}(d),{apiFields:l,apiFieldsConfig:v,apiMethods:m,wiredFields:w,wiredMethods:x,observedFields:y}=t,n=d.prototype;let{connectedCallback:e,disconnectedCallback:f,renderedCallback:g,errorCallback:h,render:i}=n;const o=function(b){let a=ap(b);if(aJ(a))throw new ReferenceError(`Invalid prototype chain for ${b.name}, you must extend LightningElement.`);if(ct(a)){const d=cs(a);a=d===a?c:d}return a}(d),a=o!==c?cv(o):cw,z=ae(a.bridge,u(l),u(m)),A=r(b(null),a.props,l),B=r(b(null),a.propsConfig,v),C=r(b(null),a.methods,m),D=r(b(null),a.wire,w,x);e=e||a.connectedCallback,f=f||a.disconnectedCallback,g=g||a.renderedCallback,h=h||a.errorCallback,i=i||a.render;let p=a.shadowSupportMode;aI(j)||(p=j);let q=a.renderMode;aI(k)||(q="light"===k?0:1);const E=dx(d)||a.template,F=d.name||a.name;return s(n,y),{ctor:d,name:F,wire:D,props:A,propsConfig:B,methods:C,bridge:z,template:E,renderMode:q,shadowSupportMode:p,connectedCallback:e,disconnectedCallback:f,renderedCallback:g,errorCallback:h,render:i}}(a),cu.set(a,d)}return d}const cw={ctor:c,name:c.name,props:l,propsConfig:d,methods:d,renderMode:1,shadowSupportMode:"reset",wire:d,bridge:n,template:B,render:c.prototype.render};function cx(a){let b=T(a=a.toLowerCase());return aI(b)&&S(a,b=class extends P{constructor(a){super(),H(a)&&a(this)}}),b}function cy(b){const{type:a}=b;return 2===a||3===a}function cz(a,b){return a.key===b.key&&a.sel===b.sel}function cA(b,a){return"input"===b&&("value"===a||"checked"===a)}function cB(c,e){const{props:b}=e.data;if(aI(b))return;const f=aJ(c)?d:c.data.props;if(f===b)return;const i=aJ(c),{elm:g,sel:j}=e;for(const a in b){const h=b[a];(i||h!==(cA(j,a)?be(g,a):f[a]))&&bf(g,a,h)}}const cC=b(null);function cD(a){if(null==a)return d;let e=cC[a=aN(a)?a:a+""];if(e)return e;e=b(null);let f=0,c;const g=a.length;for(c=0;c<g;c++)32===aE.call(a,c)&&(c>f&&(e[aG.call(a,f,c)]=!0),f=c+1);return c>f&&(e[aG.call(a,f,c)]=!0),cC[a]=e,e}function cE(c){const{elm:d,data:{on:a}}=c;if(!aI(a))for(const b in a){const e=a[b];bk(d,b,e)}}function cF(b,a,c){c4(a)?c6(b,a,c):c7(b,a,c)}function cG(b,a){if(b!==a)switch(a.type){case 0:cI(b,a);break;case 1:cK(b,a);break;case 2:cN(b,a);break;case 3:cP(b,a);break}}function cH(a,b,c){switch(a.type){case 0:cJ(a,b,c);break;case 1:cL(a,b,c);break;case 2:cM(a,b,c);break;case 3:cO(a,b,c);break}}function cI(b,a){a.elm=b.elm,a.text!==b.text&&cX(a)}function cJ(a,c,d){const{owner:e}=a,b=a.elm=ba(a.text);cW(b,e),cY(b,c,d)}function cK(b,a){a.elm=b.elm,a.text!==b.text&&cX(a)}function cL(a,c,d){const{owner:e}=a,b=a.elm=bb(a.text);cW(b,e),cY(b,c,d)}function cM(a,c,d){const{sel:e,owner:f,data:{svg:g}}=a,h=aK(g)?"http://www.w3.org/2000/svg":void 0,b=a9(e,h);cW(b,f),c_(b,a),a.elm=b,c$(null,a),cY(b,c,d),cQ(a.children,b,null)}function cN(a,b){const c=b.elm=a.elm;c$(a,b),cF(a.children,b.children,c)}function cO(a,e,f){const{sel:g,owner:h}=a,d=cx(g);let b;const c=new d(c=>{b=c1(c,a)});if(cW(c,h),a.elm=c,a.vm=b,b)c0(a,b);else if(a.ctor!==d)throw new TypeError("Incorrect Component Constructor");c$(null,a),cY(c,e,f),b&&d$(b),cQ(a.children,c,null),b&&dN(b)}function cP(b,a){const d=a.elm=b.elm,c=a.vm=b.vm;c$(b,a),aI(c)||c0(a,c),cF(b.children,a.children,d),aI(c)||dK(c)}function cQ(b,d,e,a=0,f=b.length){for(;a<f;++a){const c=b[a];cT(c)&&cH(c,d,e)}}function cR(a,d,e=!1){const{type:f,elm:b}=a;switch(e&&cZ(b,d),f){case 2:cS(a.children,b);break;case 3:{const{vm:c}=a;aI(c)||dP(c)}}}function cS(b,d,e=!1,a=0,f=b.length){for(;a<f;++a){const c=b[a];cT(c)&&cR(c,d,e)}}function cT(a){return null!=a}function cU(a,b){a.$shadowToken$=b}function cV(c,d){const{cmpTemplate:a,context:e}=d,b=null==a?void 0:a.stylesheetToken;!aI(b)&&e.hasScopedStyles&&Q(c).add(b)}function cW(a,b){const{renderRoot:c,renderMode:d,shadowMode:e}=b;O&&(1===e||0===d)&&(a[aT]=c[aT])}function cX(a){const{elm:b,text:c}=a;bg(b,c)}function cY(a,b,c){a7(a,b,c)}function cZ(a,b){a8(a,b)}function c$(b,a){aJ(b)&&(cE(a),function(b){const{elm:c,data:{classMap:a}}=b;if(aI(a))return;const d=Q(c);for(const e in a)d.add(e)}(a),function(c){const{elm:d,data:{styleDecls:a}}=c;if(!aI(a))for(let b=0;b<a.length;b++){const[e,f,g]=a[b];bn(d,e,f,g)}}(a)),function(b,h){const{elm:i,data:{className:c}}=h,d=aJ(b)?void 0:b.data.className;if(d===c)return;const e=Q(i),f=cD(c),g=cD(d);let a;for(a in g)aI(f[a])&&e.remove(a);for(a in f)aI(g[a])&&e.add(a)}(b,a),function(b,d){const{elm:c,data:{style:a}}=d,e=aJ(b)?void 0:b.data.style;e!==a&&(aN(a)&&""!==a?bi(c,"style",a):bj(c,"style"))}(b,a),function(f,g){const{attrs:e}=g.data;if(aI(e))return;const h=aJ(f)?d:f.data.attrs;if(h===e)return;const{elm:c}=g;for(const a in e){const b=e[a],i=h[a];i!==b&&(bL(c,a),58===aE.call(a,3)?bi(c,a,b,"http://www.w3.org/XML/1998/namespace"):58===aE.call(a,5)?bi(c,a,b,"http://www.w3.org/1999/xlink"):aJ(b)||aI(b)?bj(c,a):bi(c,a,b),bK())}}(b,a),cB(b,a)}function c_(a,d){const{owner:b}=d;if(cV(a,b),1===b.shadowMode){const{data:{context:c}}=d,{stylesheetToken:e}=b.context;aI(c)||aI(c.lwc)||"manual"!==c.lwc.dom||(a.$domManual$=!0),aI(e)||cU(a,e)}}function c0(a,b){const c=a.aChildren||a.children;b.aChildren=c;const{renderMode:d,shadowMode:e}=b;(1===e||0===d)&&(c2(b,c),a.aChildren=c,a.children=a1)}function c1(a,e){let c=dU(a);if(!aI(c))return c;const{sel:f,mode:g,ctor:h,owner:b}=e;if(cV(a,b),1===b.shadowMode){const{stylesheetToken:d}=b.context;aI(d)||cU(a,d)}return c=dQ(a,h,{mode:g,owner:b,tagName:f})}function c2(c,m){var g;const{cmpSlots:h}=c,a=c.cmpSlots=b(null);for(let i=0,n=m.length;i<n;i+=1){const e=m[i];if(aJ(e))continue;let j="";cy(e)&&(j=(null===(g=e.data.attrs)|| void 0===g?void 0:g.slot)||"");const o=a[j]=a[j]||[];ax.call(o,e)}if(aL(c.isDirty)){const k=u(h);if(k.length!==u(a).length){dz(c);return}for(let l=0,p=k.length;l<p;l+=1){const d=k[l];if(aI(a[d])||h[d].length!==a[d].length){dz(c);return}const q=h[d],r=a[d];for(let f=0,s=a[d].length;f<s;f+=1)if(q[f]!==r[f]){dz(c);return}}}}const c3=new WeakMap;function c4(a){return c3.has(a)}function c5(e,f,g){const b={};for(let a=f;a<=g;++a){const c=e[a];if(cT(c)){const{key:d}=c;void 0!==d&&(b[d]=a)}}return b}function c6(b,c,k){let g=0,h=0,e=b.length-1,d=b[0],f=b[e];const p=c.length-1;let i=p,a=c[0],j=c[i],n,o,l,q=!1;for(;g<=e&&h<=i;)cT(d)?cT(f)?cT(a)?cT(j)?cz(d,a)?(cG(d,a),d=b[++g],a=c[++h]):cz(f,j)?(cG(f,j),f=b[--e],j=c[--i]):cz(d,j)?(cG(d,j),cY(d.elm,k,bc(f.elm)),d=b[++g],j=c[--i]):cz(f,a)?(cG(f,a),cY(a.elm,k,d.elm),f=b[--e],a=c[++h]):(void 0===n&&(n=c5(b,g,e)),aI(o=n[a.key])?(cH(a,k,d.elm),a=c[++h]):(cT(l=b[o])&&(l.sel!==a.sel?cH(a,k,d.elm):(cG(l,a),q||(q=!0,b=[...b]),b[o]=void 0,cY(l.elm,k,d.elm))),a=c[++h])):j=c[--i]:a=c[++h]:f=b[--e]:d=b[++g];if(g<=e||h<=i)if(g>e){let r=i,m;do m=c[++r];while(!cT(m)&&r<p)cQ(c,k,cT(m)?m.elm:null,h,i+1)}else cS(b,k,!0,g,e+1)}function c7(e,f,b){const i=e.length,h=f.length;if(0===i){cQ(f,b,null);return}if(0===h){cS(e,b,!0);return}let g=null;for(let c=h-1;c>=0;c-=1){const d=e[c],a=f[c];a!==d&&(cT(d)?cT(a)?(cG(d,a),g=a.elm):cR(d,b,!0):cT(a)&&(cH(a,b,g),g=a.elm))}}const c8=Symbol.iterator;function ag(b,a,c=a1){const d=dq();let e;const{key:f}=a;return{type:2,sel:b,data:a,children:c,elm:e,key:f,owner:d}}function ah(d,e,a,f=a1){var b;const g=dq(),{key:h}=a;let i,j,k;const c={type:3,sel:d,data:a,children:f,elm:i,key:h,ctor:e,owner:g,mode:"open",aChildren:j,vm:k};return b=c,ax.call(dq().velements,b),c}const c9=new Map;let da=0;function db(a){var b;return b=a,c3.set(b,1),a}let dc=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const dd=h({s:function(c,d,a,b){aI(b)||aI(b[c])||0===b[c].length||(a=b[c]);const e=dq(),{renderMode:f,shadowMode:g}=e;return 0===f?(db(a),a):(1===g&&db(a),ag("slot",d,a))},h:ag,c:ah,i:function(b,i){const a=[];if(db(a),aI(b)||null===b)return a;const g=b[c8]();let c=g.next(),d=0,{value:h,done:e}=c;for(;!1===e;){e=(c=g.next()).done;const f=i(h,d,0===d,!0===e);G(f)?ax.apply(a,f):ax.call(a,f),d+=1,h=c.value}return a},f:function(d){const e=d.length,a=[];db(a);for(let b=0;b<e;b+=1){const c=d[b];G(c)?ax.apply(a,c):ax.call(a,c)}return a},t:function(a){let b,c,d;return{type:0,sel:b,text:a,elm:d,key:c,owner:dq()}},d:function(a){return null==a?"":String(a)},b:function(b){const a=dq();if(aJ(a))throw new Error;const c=a;return function(a){dv(c,b,c.component,a)}},k:function(b,a){switch(typeof a){case"number":case"string":return b+":"+a}},co:function(a){let b,c,d;return{type:1,sel:b,text:a,elm:d,key:c,owner:dq()}},dc:function(c,a,d,e=a1){if(null==a)return null;if(!af(a))throw new Error(`Invalid LWC Constructor ${aP(a)} for custom element <${c}>.`);let b=c9.get(a);aI(b)&&(b=da++,c9.set(a,b));const f=Object.assign(Object.assign({},d),{key:`dc:${b}:${d.key}`});return ah(c,a,f,e)},ti:function(a){const b=a>0&&!(aK(a)||aL(a));return b?0:a},gid:function(a){const b=dq();if(aI(a)||""===a)return a;if(aJ(a))return null;const{idx:d,shadowMode:c}=b;return 1===c?aF.call(a,/\S+/g,a=>`${a}-${d}`):a},fid:function(a){const b=dq();if(aI(a)||""===a)return a;if(aJ(a))return null;const{idx:c,shadowMode:d}=b;return 1===d&&/^#/.test(a)?`${a}-${c}`:a},shc:function(a){return dc(a)}});function de(a){return`${a}-host`}function df(g,h,a){const d=[];let b;for(let e=0;e<g.length;e++){let c=g[e];if(G(c))ax.apply(d,df(c,h,a));else{const i=c[aU],j=i||1===a.shadowMode&&1===a.renderMode?h:void 0,k=0===a.renderMode?!i:0===a.shadowMode;let f;1===a.renderMode?f=0===a.shadowMode:(aI(b)&&(b=dg(a)),f=aJ(b)||0===b.shadowMode),ax.call(d,c(j,k,f))}}return d}function dg(b){let a=b;for(;!aJ(a);){if(1===a.renderMode)return a;a=a.owner}return a}let dh=!1,di=I;const ai={enableProfiler(){dh=!0},disableProfiler(){dh=!1},attachDispatcher(a){di=a,this.enableProfiler()},detachDispatcher(){const a=di;return di=I,this.disableProfiler(),a}};function dj(b,a){dh&&di(b,0,a.tagName,a.idx,a.renderMode,a.shadowMode)}function dk(b,a){dh&&di(b,1,a.tagName,a.idx,a.renderMode,a.shadowMode)}function dl(b,a){dh&&di(b,0,null==a?void 0:a.tagName,null==a?void 0:a.idx,null==a?void 0:a.renderMode,null==a?void 0:a.shadowMode)}function dm(b,a){dh&&di(b,1,null==a?void 0:a.tagName,null==a?void 0:a.idx,null==a?void 0:a.renderMode,null==a?void 0:a.shadowMode)}let dn=!1,dp=null;function dq(){return dp}function dr(a){dp=a}let ds=null;function dt(a){return ds===a}function du(a,c,d){const{component:e,callHook:f,owner:b}=a;d6(a,b,I,()=>{f(e,c,d)},I)}function dv(a,c,d,e){const{callHook:f,owner:b}=a;d6(a,b,I,()=>{f(d,c,[e])},I)}const dw=new Map;function dx(a){return dw.get(a)}function dy(a){a.tro.reset();const c=function(a){const{def:{render:f},callHook:g,component:h,owner:c}=a,i=dq();let d,e=!1;return d6(a,c,()=>{dr(a)},()=>{a.tro.observe(()=>{d=g(h,f),e=!0})},()=>{dr(i)}),e?function(a,d){const e=dn,f=dp;let c=[];return d6(a,a.owner,()=>{dp=a,dj(1,a)},()=>{const{component:f,context:g,cmpSlots:h,cmpTemplate:i,tro:e}=a;e.observe(()=>{if(d!==i){var e;if(aJ(i)||d4(a),e=d,!ad.has(e))throw new TypeError(`Invalid template returned by the render() method on ${a}. It must return an imported template (e.g.: \`import html from "./${a.def.name}.html"\`), instead, it has returned: ${aP(d)}.`);a.cmpTemplate=d,g.tplCache=b(null),g.hasScopedStyles=function(c){const{stylesheets:a}=c;if(!aI(a)){for(let b=0;b<a.length;b++)if(aK(a[b][aU]))return!0}return!1}(d),function(h,i){const{elm:c,context:a,renderMode:j,shadowMode:k}=h,{stylesheets:e,stylesheetToken:l}=i,{hasScopedStyles:m}=a;let b,f,g;const{stylesheetToken:d,hasTokenInClass:n,hasTokenInAttribute:o}=a;!aI(d)&&(n&&Q(c).remove(de(d)),o&&bj(c,de(d))),aI(e)||0===e.length||(b=l),aI(b)||(m&&(Q(c).add(de(b)),f=!0),1!==j||1!==k||(bi(c,de(b),""),g=!0)),a.stylesheetToken=b,a.hasTokenInClass=f,a.hasTokenInAttribute=g}(a,d);const j=function(c,d){const{stylesheets:a,stylesheetToken:e}=d;let b=[];return aI(a)||0===a.length||(b=df(a,e,c)),b}(a,d);g.styleVNode=0===j.length?null:function(d,a){const{renderMode:g,shadowMode:h}=d;if(1===g&&1===h)for(let c=0;c<a.length;c++)bz(a[c]);else if(M||a6()){var e;const i=av.call(a,"\n");return e=i,dd.h("style",{key:"style",attrs:{type:"text/css"}},[dd.t(e)])}else{const f=function(b){const a=dg(b);return aJ(a)||1!==a.shadowMode?a:null}(d),j=aJ(f);for(let b=0;b<a.length;b++)j?bz(a[b]):bA(a[b],f.shadowRoot)}return null}(a,j)}a.velements=[],dn=!0,c=d.call(void 0,dd,f,h,g.tplCache);const{styleVNode:k}=g;aJ(k)||aC.call(c,k)})},()=>{dn=e,dp=f,dk(1,a)}),c}(a,d):[]}(a);return a.isDirty=!1,a.isScheduled=!1,c}function dz(a){a.isDirty=!0}const dA=new WeakMap;function dB(c,b){if(!H(b))throw new TypeError;let a=dA.get(b);return aI(a)&&(a=function(a){dv(c,b,void 0,a)},dA.set(b,a)),a}const dC=b(null),dD=["rendered","connected","disconnected"];function dE(c,b){const{component:d,def:e,context:f}=c;for(let a=0,g=b.length;a<g;++a)b[a].call(void 0,d,{},e,f)}let dF=0;const dG=new WeakMap;function dH(a,b,c=[]){return b.apply(a,c)}function dI(a,b,c){a[b]=c}function dJ(a,b){return a[b]}function dK(a){dV(a)}function dL(b){const a=dT(b);dl(7,a),1===a.state&&dM(b),d$(a),dV(a),dm(7,a)}function dM(a){const b=dT(a);dO(b)}function dN(a){dV(a)}function dO(a){const{state:c}=a;if(2!==c){const{oar:b,tro:d}=a;for(const e in d.reset(),b)b[e].reset();d0(a),d1(a),d2(a)}}function dP(a){dO(a)}function dQ(e,f,g){var h;const{mode:i,owner:j,tagName:k}=g,c=cv(f),a={elm:e,def:c,idx:dF++,state:0,isScheduled:!1,isDirty:!0,tagName:k,mode:i,owner:j,children:a1,aChildren:a1,velements:a1,cmpProps:b(null),cmpFields:b(null),cmpSlots:b(null),oar:b(null),cmpTemplate:null,renderMode:c.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNode:null,tplCache:d,wiredConnecting:a1,wiredDisconnecting:a1},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:dH,setHook:dI,getHook:dJ};return a.shadowMode=dR(a),a.tro=(h=a,new W(()=>{const{isDirty:a}=h;aL(a)&&(dz(h),d5(h))})),!function(a,c){const d=ds;let b;dj(0,a),ds=a;try{const e=new c;if(ds.component!==e)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(f){b=Object(f)}finally{if(dk(0,a),ds=d,!aI(b))throw bG(a,b),b}}(a,c.ctor),d_(a)&&ee(a),a}function dR(b){const{def:c}=b;let a;if(O)if(0===c.renderMode)a=0;else if(N)if(a_.ENABLE_MIXED_SHADOW_MODE)if("any"===c.shadowSupportMode)a=0;else{const d=function(b){let a=b.owner;for(;!aJ(a)&&0===a.renderMode;)a=a.owner;return a}(b);a=aJ(d)||0!==d.shadowMode?1:0}else a=1;else a=1;else a=0;return a}function dS(a,b){dG.set(a,b)}function dT(a){const b=dG.get(a);return b}function dU(a){const b=dG.get(a);return b}function dV(a){if(aK(a.isDirty)){const b=dy(a);dW(a,b)}}function dW(a,b){const{renderRoot:d,children:c}=a;a.children=b,(b.length>0||c.length>0)&&c!==b&&d6(a,a,()=>{dj(2,a)},()=>{cF(c,b,d)},()=>{dk(2,a)}),1===a.state&&dX(a)}function dX(a){const{def:{renderedCallback:b}}=a;if(aK(M))return;const{rendered:c}=dC;c&&dE(a,c),aI(b)||(dj(4,a),du(a,b),dk(4,a))}let dY=[];function dZ(){dl(8);const b=dY.sort((a,b)=>a.idx-b.idx);dY=[];for(let a=0,c=b.length;a<c;a+=1){const d=b[a];try{dV(d)}catch(e){throw a+1<c&&(0===dY.length&&a3(dZ),aC.apply(dY,aA.call(b,a+1))),dm(8),e}}dm(8)}function d$(a){const{state:d}=a;if(1===d)return;a.state=1;const{connected:b}=dC;b&&dE(a,b),d_(a)&&ef(a);const{connectedCallback:c}=a.def;aI(c)||(dj(3,a),du(a,c),dk(3,a))}function d_(a){return E(a.def.wire).length>0}function d0(a){aL(a.isDirty)&&(a.isDirty=!0),a.state=2;const{disconnected:b}=dC;b&&dE(a,b),d_(a)&&eg(a);const{disconnectedCallback:c}=a.def;aI(c)||(dj(5,a),du(a,c),dk(5,a))}function d1(e){const{velements:b}=e;for(let a=b.length-1;a>=0;a-=1){const{elm:c}=b[a];if(!aI(c)){const d=dU(c);aI(d)||dO(d)}}}function d2(a){const{aChildren:b}=a;d3(b)}function d3(c){for(let b=0,d=c.length;b<d;b+=1){const a=c[b];if(!aJ(a)&&!aI(a.elm))switch(a.type){case 2:d3(a.children);break;case 3:{const e=dT(a.elm);dO(e);break}}}}function d4(a){const{children:d,renderRoot:e}=a;for(let b=0,f=d.length;b<f;b++){const c=d[b];aJ(c)||aI(c.elm)||a8(c.elm,e)}a.children=a1,d1(a),a.velements=a1}function d5(a){aK(M)||aK(a.isScheduled)||(a.isScheduled=!0,0===dY.length&&a3(dZ),ax.call(dY,a))}function d6(b,d,e,f,g){let a;e();try{f()}catch(h){a=Object(h)}finally{if(g(),!aI(a)){bG(b,a);const c=aJ(d)?void 0:function(b){let a=b;for(;!aJ(a);){if(!aI(a.def.errorCallback))return a;a=a.owner}}(d);if(aI(c))throw a;d4(b),dj(6,b);const i=c.def.errorCallback;du(c,i,[a,a.wcStack]),dk(6,b)}}}const d7=new Map;class d8 extends CustomEvent{constructor(a,{setNewContext:b,setDisconnectedCallback:c}){super(a,{bubbles:!0,composed:!0}),s(this,{setNewContext:{value:b},setDisconnectedCallback:{value:c}})}}function d9(a,e,b){var f,g;const{method:c,adapter:h,configCallback:i,dynamic:j}=b,d=aI(c)?function(a,b){const{cmpFields:c}=a;return d=>{d!==a.cmpFields[b]&&(c[b]=d,bD(a,b))}}(a,e):(f=a,g=c,a=>{d6(f,f.owner,I,()=>{g.call(f.component,a)},I)});let m,k;t(d,"$$DeprecatedWiredElementHostKey$$",{value:a.elm}),t(d,"$$DeprecatedWiredParamsMetaKey$$",{value:j}),d6(a,a,I,()=>{k=new h(d)},I);const{computeConfigAndUpdate:l,ro:n}=function(c,d,e){let f=!1;const a=new W(()=>{!1===f&&(f=!0,Promise.resolve().then(()=>{f=!1,a.reset(),b()}))}),b=()=>{let b;a.observe(()=>b=d(c)),e(b)};return{computeConfigAndUpdate:b,ro:a}}(a.component,i,b=>{d6(a,a,I,()=>{k.update(b,m)},I)});return aI(h.contextSchema)||function(a,b,f){const{adapter:c}=b,d=eb(c);if(aI(d))return;const{elm:g,context:{wiredConnecting:e,wiredDisconnecting:h}}=a;ax.call(e,()=>{const a=new d8(d,{setNewContext(a){f(a)},setDisconnectedCallback(a){ax.call(h,a)}});bm(g,a)})}(a,b,b=>{m!==b&&(m=b,1===a.state&&l())}),{connector:k,computeConfigAndUpdate:l,resetConfigWatcher:()=>n.reset()}}const ea=new Map;function eb(a){return ea.get(a)}function ec(b,a,c,d){a.adapter&&(a=a.adapter);const e=b.value;d7.set(b,{adapter:a,method:e,configCallback:c,dynamic:d})}function ed(b,a,c,d){a.adapter&&(a=a.adapter),d7.set(b,{adapter:a,configCallback:c,dynamic:d})}function ee(b){const{context:c,def:{wire:d}}=b,f=c.wiredConnecting=[],g=c.wiredDisconnecting=[];for(const e in d){const h=d[e],a=d7.get(h);if(!aI(a)){const{connector:i,computeConfigAndUpdate:j,resetConfigWatcher:k}=d9(b,e,a),l=a.dynamic.length>0;ax.call(f,()=>{if(i.connect(),!a_.ENABLE_WIRE_SYNC_EMIT&&l){Promise.resolve().then(j);return}j()}),ax.call(g,()=>{i.disconnect(),k()})}}}function ef(c){const{wiredConnecting:b}=c.context;for(let a=0,d=b.length;a<d;a+=1)b[a]()}function eg(a){const{wiredDisconnecting:b}=a.context;d6(a,a,I,()=>{for(let a=0,c=b.length;a<c;a+=1)b[a]()},I)}let eh=!1;function ei(a){const b=dy(a);a.children=b;const c=a.renderRoot;eo(bv(c),b,c),dX(a)}function ej(c,a){let b;switch(a.type){case 0:b=ek(c,a);break;case 1:b=el(c,a);break;case 2:b=em(c,a);break;case 3:b=en(c,a);break}return bc(b)}function ek(a,b){var c;return er(b,a,3)?(bg(a,null!==(c=b.text)&& void 0!==c?c:null),b.elm=a,a):ep(a,b)}function el(a,b){var c;return er(b,a,8)?(bf(a,"nodeValue",null!==(c=b.text)&& void 0!==c?c:null),b.elm=a,a):ep(a,b)}function em(b,a){if(!er(a,b,1)||!es(a,b))return ep(b,a);a.elm=b;const{context:d}=a.data,e=Boolean(!aI(d)&&!aI(d.lwc)&&"manual"===d.lwc.dom);if(e){const{props:c}=a.data;aI(c)||aI(c.innerHTML)||be(b,"innerHTML")===c.innerHTML&&(a.data=Object.assign(Object.assign({},a.data),{props:function(b,d){const c={};for(const a of Object.keys(b))a!==d&&(c[a]=b[a]);return c}(c,"innerHTML")}))}return eq(a),e||eo(bv(b),a.children,b,a.owner),b}function en(b,a){if(!er(a,b,1)||!es(a,b))return ep(b,a);const{sel:d,mode:e,ctor:f,owner:g}=a,c=dQ(b,f,{mode:e,owner:g,tagName:d});return a.elm=b,a.vm=c,c0(a,c),eq(a),d$(c),0!==c.renderMode&&eo(bv(b),a.children,b),ei(c),b}function eo(g,e,f,i){let a=g,c=null;for(let d=0;d<e.length;d++){const b=e[d];aJ(b)||(a?(a=ej(a,b),c=b.elm):(eh=!0,cH(b,f,c),c=b.elm))}if(a){eh=!0;do{const h=a;a=bc(a),cZ(h,f)}while(a)}}function ep(a,b,d){eh=!0;const c=be(a,"parentNode");return cH(b,c,a),cZ(a,c),b.elm}function eq(a){cE(a),cB(null,a)}function er(c,a,b){return be(a,"nodeType")===b}function es(a,b){if(a.sel.toLowerCase()!==be(b,"tagName").toLowerCase())return!1;const c=et(a,b),d=eu(a,b),e=ev(a,b);return c&&d&&e}function et(b,c){const{data:{attrs:d={}}}=b;let a=!0;for(const[e,f]of Object.entries(d)){const g=bh(c,e);String(f)!==g&&(a=!1)}return a}function eu(h,c){const{data:{className:d,classMap:b}}=h;let a=!0;if(aI(d)||String(d)===be(c,"className")){if(!aI(b)){const e=Q(c);let f="";for(const g in b)f+=" "+g,e.contains(g)||(a=!1);f.trim(),e.length>u(b).length&&(a=!1)}}else a=!1;return a}function ev(l,m){const{data:{style:e,styleDecls:b}}=l,f=bh(m,"style")||"";let a=!0;if(aI(e)||e===f){if(!aI(b)){const g=function(e){const a={},f=e.split(a4);for(const b of f)if(b){const[c,d]=b.split(a5);void 0!==c&& void 0!==d&&(a[c.trim()]=d.trim())}return a}(f),h=[];for(let c=0,n=b.length;c<n;c++){const[i,j,k]=b[c];h.push(`${i}: ${j+(k?" important!":"")}`);const d=g[i];aI(d)?a=!1:d.startsWith(j)?k&&!d.endsWith("!important")&&(a=!1):a=!1}u(g).length>b.length&&(a=!1),av.call(h,";")}}else a=!1;return a}let ew=!1;const ex=b(null),ey=document.head||document.body||document,aj=H(CSSStyleSheet.prototype.replaceSync)&&G(document.adoptedStyleSheets),ez=aj&&D(document.adoptedStyleSheets,"length").writable,eA=b(null),eB=b(null),eC=new WeakMap;let o,p,q;if(function(){if("undefined"==typeof customElements)return!1;try{const b=HTMLElement;class a extends b{}return customElements.define("lwc-test-"+Math.floor(1e6*Math.random()),a),new a,!0}catch(c){return!1}}())o=customElements.get.bind(customElements),p=customElements.define.bind(customElements),q=HTMLElement;else{const eD=b(null),eE=new WeakMap;p=function(a,b){if(a!==aH.call(a)||eD[a])throw new TypeError("Invalid Registration");eD[a]=b,eE.set(b,a)},o=function(a){return eD[a]},(q=function d(){if(!(this instanceof d))throw new TypeError("Invalid Invocation");const{constructor:a}=this,b=eE.get(a);if(!b)throw new TypeError("Invalid Construction");const c=document.createElement(b);return ar(c,a.prototype),c}).prototype=HTMLElement.prototype}let eF=!1;function eG(a){eF=a}const ak=f.$isNativeShadowRootDefined$,al=F.call(Element.prototype,"$shadowToken$"),am=q;function eH(a,b,c){const d=dQ(a,b,{mode:"open",owner:null,tagName:a.tagName.toLowerCase()});for(const[e,f]of Object.entries(c))a[e]=f;return d}function an(a,b,c={}){if(!(a instanceof Element))throw new TypeError(`"hydrateComponent" expects a valid DOM element as the first parameter but instead received ${a}.`);if(!H(b))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${b}.`);if(!aM(c)||aJ(c))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${c}.`);if(dU(a)){console.warn('"hydrateComponent" expects an element that is not hydrated.',a);return}try{eG(!0);const d=eH(a,b,c);!function(a){if(eh=!1,d$(a),ei(a),eh){var b,c;b="Hydration completed with errors.",c=a,function(b,d,c){let a=`[LWC ${b}]: ${d}`;aI(c)||(a=`${a}
2
+ ${function(a){const b=[];let c="";for(;!aJ(a.owner);)ax.call(b,c+bF(a)),a=a.owner,c+=" ";return av.call(b,"\n")}(c)}`);try{throw new Error(a)}catch(e){console[b](e)}}("error",b,c)}}(d),eG(!1)}catch(e){console.error("Recovering from error while hydrating: ",e),function(a,c){if(a.shadowRoot){const b=a.shadowRoot;for(;!aJ(b.firstChild);)b.removeChild(b.firstChild)}if("light"===c.renderMode)for(;!aJ(a.firstChild);)a.removeChild(a.firstChild)}(a,b),eH(a,b,c),eG(!1),dL(a)}finally{eG(!1)}}!function(a){bd=a}(function(a,b){return eF?a.shadowRoot:a.attachShadow(b)}),function(a){bb=a}(function(a){return document.createComment(a)}),function(a){a9=a}(function(a,b){return aI(b)?document.createElement(a):document.createElementNS(b,a)}),function(a){ba=a}(function(a){return document.createTextNode(a)}),S=p,function(a){bm=a}(function(a,b){return a.dispatchEvent(b)}),function(a){bh=a}(function(a,b,c){return aI(c)?a.getAttribute(b):a.getAttributeNS(c,b)}),function(a){bo=a}(function(a){return a.getBoundingClientRect()}),function(a){bu=a}(function(a){return a.childNodes}),function(a){bt=a}(function(a){return a.children}),function(a){Q=a}(function(a){return a.classList}),T=o,function(a){bs=a}(function(a,b){return a.getElementsByClassName(b)}),function(a){br=a}(function(a,b){return a.getElementsByTagName(b)}),function(a){bv=a}(function(a){return a.firstChild}),function(a){bw=a}(function(a){return a.firstElementChild}),function(a){bx=a}(function(a){return a.lastChild}),function(a){by=a}(function(a){return a.lastElementChild}),function(a){be=a}(function(a,b){return a[b]}),P=am,function(a){a7=a}(function(a,b,c){b.insertBefore(a,c)}),function(a){bz=a}(function(a){if(!aI(ex[a]))return;ex[a]=!0;const b=document.createElement("style");b.type="text/css",b.textContent=a,ey.appendChild(b)}),function(a){bA=a}(function(a,c){aj?function(b,d){let a=eB[b];aI(a)&&((a=new CSSStyleSheet).replaceSync(b),eB[b]=a);const{adoptedStyleSheets:c}=d;c.includes(a)||(ez?c.push(a):d.adoptedStyleSheets=[...c,a])}(a,c):function(c,e){let d=eC.get(e);if(aI(d)&&(d=b(null),eC.set(e,d)),d[c])return;d[c]=!0;let a=eA[c];aI(a)?((a=document.createElement("style")).type="text/css",a.textContent=c,eA[c]=a):a=a.cloneNode(!0),e.appendChild(a)}(a,c)}),function(a){R=a}(function(a){return a.isConnected}),function(a){a6=a}(function(){return eF}),N=ak,O=al,function(a){bc=a}(function(a){return a.nextSibling}),function(a){bp=a}(function(a,b){return a.querySelector(b)}),function(a){bq=a}(function(a,b){return a.querySelectorAll(b)}),function(a){a8=a}(function(a,b){b.removeChild(a)}),function(a){bj=a}(function(a,b,c){aI(c)?a.removeAttribute(b):a.removeAttributeNS(c,b)}),function(a){bl=a}(function(a,b,c,d){a.removeEventListener(b,c,d)}),function(a){bi=a}(function(a,b,c,d){return aI(d)?a.setAttribute(b,c):a.setAttributeNS(d,b,c)}),function(a){bn=a}(function(a,b,c,d){a.style.setProperty(b,c,d?"important":"")}),function(a){bf=a}(function(a,b,c){a[b]=c}),function(a){bg=a}(function(a,b){a.nodeValue=b}),M=!1,function(a){bk=a}(function(a,b,c,d){a.addEventListener(b,c,d)});const eI=new WeakSet,C=Node,eJ=new WeakMap,eK=new WeakMap;function eL(a,c){const b=c.get(a);return aI(b)||b(a),a}const{appendChild:eM,insertBefore:eN,removeChild:eO,replaceChild:eP}=C.prototype;r(C.prototype,{appendChild(a){const b=eM.call(this,a);return eL(b,eJ)},insertBefore(a,b){const c=eN.call(this,a,b);return eL(c,eJ)},removeChild(a){const b=eO.call(this,a);return eL(b,eK)},replaceChild(a,c){const b=eP.call(this,a,c);return eL(b,eK),eL(a,eJ),b}});const eQ=Node,eR=new Map;return t(c,"CustomElementConstructor",{get(){return function(a){if(a===c)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let b=eR.get(a);return aI(b)&&(b=function(a){const b=function(a){const b=cv(a);return b.bridge}(a);return class extends b{constructor(){super(),this.isConnected?(an(this,a,{}),eI.add(this)):dQ(this,a,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){eI.has(this)?eI.delete(this):dL(this)}disconnectedCallback(){dM(this)}}}(a),eR.set(a,b)),b}(this)}}),h(c),e(c.prototype),a.LightningElement=c,a.__unstable__ProfilerControl=ai,a.api=function(){throw new Error},a.buildCustomElementConstructor=function(a){return a.CustomElementConstructor},a.createContextProvider=function(b){var c,d;let a=eb(b);if(!aI(a))throw new Error("Adapter already has a context provider.");a=function(){function a(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return a()+a()+"-"+a()+"-"+a()+"-"+a()+"-"+a()+a()+a()}(),c=b,d=a,ea.set(c,d);const e=new WeakSet;return(b,c)=>{if(e.has(b))throw new Error(`Adapter was already installed on ${b}.`);e.add(b);const{consumerConnectedCallback:d,consumerDisconnectedCallback:f}=c;b.addEventListener(a,a=>{const{setNewContext:e,setDisconnectedCallback:b}=a,c={provide(a){e(a)}};b(()=>{aI(f)||f(c)}),d(c),a.stopImmediatePropagation()})}},a.createElement=function(b,a){if(!aM(a)||aJ(a))throw new TypeError(`"createElement" function expects an object as second parameter but received "${aP(a)}".`);const c=a.is;if(!H(c))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const d=cx(b);let e=!1;const f=new d(d=>{dQ(d,c,{tagName:b,mode:"closed"!==a.mode?"open":"closed",owner:null}),eJ.set(d,dL),eK.set(d,dM),e=!0});return e||console.error(`Unexpected tag name "${b}". This name is a registered custom element, preventing LWC to upgrade the element.`),f},a.getComponentConstructor=function(a){let b=null;if(a instanceof HTMLElement){const c=dU(a);aI(c)||(b=c.def.ctor)}return b},a.getComponentDef=function(f){const g=cv(f),{ctor:h,name:i,props:j,propsConfig:k,methods:b}=g,c={};for(const a in j)c[a]={config:k[a]||0,type:"any",attr:aX(a)};const d={};for(const e in b)d[e]=b[e].value;return{ctor:h,name:i,props:c,methods:d}},a.hydrateComponent=an,a.isComponentConstructor=af,a.isNodeFromTemplate=function(a){if(aL(a instanceof eQ))return!1;if(a instanceof ShadowRoot)return!1;const b=a.getRootNode();return!!(b instanceof ShadowRoot&&aL(F.call(ap(b),"synthetic")))||al&&!aI(a[aT])},a.readonly=function(a){return cb.getReadOnlyProxy(a)},a.register=function(d){for(let b=0;b<dD.length;++b){const a=dD[b];if(a in d){let c=dC[a];aI(c)&&(dC[a]=c=[]),ax.call(c,d[a])}}},a.registerComponent=function(a,{tmpl:b}){return H(a)&&dw.set(a,b),a},a.registerDecorators=function(i,B){var n,o;const d=i.prototype,{publicProps:f,publicMethods:p,wire:j,track:h,fields:k}=B,C=b(null),q=b(null),r=b(null),s=b(null),u=b(null),w=b(null);let a;if(!aI(f))for(const c in f){const x=f[c];if(w[c]=x.config,a=D(d,c),x.config>0){if(aI(a))throw new Error;a=cj(c,a)}else a=aI(a)||aI(a.get)?ch(c):cj(c,a);q[c]=a,t(d,c,a)}if(aI(p)||v.call(p,b=>{if(aI(a=D(d,b)))throw new Error;C[b]=a}),!aI(j))for(const e in j){const{adapter:y,method:E,config:z,dynamic:A=[]}=j[e];if(a=D(d,e),1===E){if(aI(a))throw new Error;r[e]=a,ec(a,y,z,A)}else a=cf(e),s[e]=a,ed(a,y,z,A),t(d,e,a)}if(!aI(h))for(const l in h)a=D(d,l),a=cg(l),t(d,l,a);if(!aI(k))for(let m=0,F=k.length;m<F;m++){const g=k[m];a=D(d,g);const G=!aI(f)&&g in f,H=!aI(h)&&g in h;G||H||(u[g]=ck(g))}return n=i,o={apiMethods:C,apiFields:q,apiFieldsConfig:w,wiredMethods:r,wiredFields:s,observedFields:u},cl.set(n,o),i},a.registerTemplate=function(a){return ad.add(a),a},a.sanitizeAttribute=function(b,c,d,a){return a},a.setFeatureFlag=function(a,b){if("boolean"!=typeof b){const d=`Failed to set the value "${b}" for the runtime feature flag "${a}". Runtime feature flags can only be set to a boolean value.`;console.error(d);return}if(aI(a$[a])){const e=u(a$).map(a=>`"${a}"`).join(", ");console.warn(`Failed to set the value "${b}" for the runtime feature flag "${a}" because it is undefined. Available flags: ${e}.`);return}{const c=a_[a];if(!aI(c)){console.error(`Failed to set the value "${b}" for the runtime feature flag "${a}". "${a}" has already been set with the value "${c}".`);return}t(a_,a,{value:b})}},a.setFeatureFlagForTest=function(a,b){},a.setHooks=function(a){ao.isFalse(ew,"Hooks are already overridden, only one definition is allowed."),ew=!0,dc=a.sanitizeHtmlContent},a.swapComponent=function(a,b){if(!a_.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},a.swapStyle=function(a,b){if(!a_.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},a.swapTemplate=function(a,b){if(!a_.ENABLE_HMR)throw new Error("HMR is not enabled");return!1},a.track=function(a){if(1===arguments.length)return cb.getProxy(a);throw new Error},a.unwrap=function(a){return cb.unwrapProxy(a)},a.wire=function(a,b){throw new Error},Object.defineProperty(a,"__esModule",{value:!0}),a}({})
@@ -290,7 +290,7 @@ var LWC = (function (exports) {
290
290
  const XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';
291
291
  const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';
292
292
  const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
293
- /** version: 2.11.3 */
293
+ /** version: 2.13.0 */
294
294
 
295
295
  /*
296
296
  * Copyright (c) 2018, salesforce.com, inc.
@@ -433,7 +433,7 @@ var LWC = (function (exports) {
433
433
  */
434
434
  function setFeatureFlagForTest(name, value) {
435
435
  }
436
- /** version: 2.11.3 */
436
+ /** version: 2.13.0 */
437
437
 
438
438
  /* proxy-compat-disable */
439
439
 
@@ -2996,13 +2996,6 @@ var LWC = (function (exports) {
2996
2996
  slotName = ((_a = vnode.data.attrs) === null || _a === void 0 ? void 0 : _a.slot) || '';
2997
2997
  }
2998
2998
  const vnodes = (cmpSlots[slotName] = cmpSlots[slotName] || []);
2999
- // re-keying the vnodes is necessary to avoid conflicts with default content for the slot
3000
- // which might have similar keys. Each vnode will always have a key that
3001
- // starts with a numeric character from compiler. In this case, we add a unique
3002
- // notation for slotted vnodes keys, e.g.: `@foo:1:1`
3003
- if (!isUndefined$1(vnode.key)) {
3004
- vnode.key = `@${slotName}:${vnode.key}`;
3005
- }
3006
2999
  ArrayPush$1.call(vnodes, vnode);
3007
3000
  }
3008
3001
  if (isFalse(vm.isDirty)) {
@@ -5135,7 +5128,7 @@ var LWC = (function (exports) {
5135
5128
  hooksAreSet = true;
5136
5129
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
5137
5130
  }
5138
- /* version: 2.11.3 */
5131
+ /* version: 2.13.0 */
5139
5132
 
5140
5133
  /*
5141
5134
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5742,7 +5735,7 @@ var LWC = (function (exports) {
5742
5735
  });
5743
5736
  freeze(LightningElement);
5744
5737
  seal(LightningElement.prototype);
5745
- /* version: 2.11.3 */
5738
+ /* version: 2.13.0 */
5746
5739
 
5747
5740
  exports.LightningElement = LightningElement;
5748
5741
  exports.__unstable__ProfilerControl = profilerControl;